[ovirt-users] Re: Python-SDK4- Issue following links

2019-02-25 Thread Don Dupuis
Thanks again. I will check it out in more detail. I have looked at it, but some things wasn't that clear Most stuff in the SDK I have working, but I get stumped sometimes. Regards, Don On Mon, Feb 25, 2019 at 11:21 PM Joey Ma wrote: > Hi Don, > > So glad to see it worked. If you want to know m

[ovirt-users] Re: Python-SDK4- Issue following links

2019-02-25 Thread Joey Ma
Hi Don, So glad to see it worked. If you want to know more about how to use the Python SDK, the official documentation http://ovirt.github.io/ovirt-engine-sdk/ would introduce you the detailed guidance. If you have any other questions, please feel free to post here. Regards, Joey On Tue, Feb 26

[ovirt-users] Re: Python-SDK4- Issue following links

2019-02-25 Thread Don Dupuis
Joey That WORKED just great. I am still trying to understand the services/service stuff. I was trying something similar earlier, but I was using connection.system_service().vnic_profiles_service().vnic_profile_service(), I understand now from your code on what is going on and why was going down th

[ovirt-users] Re: Python-SDK4- Issue following links

2019-02-25 Thread Joey Ma
On Tue, Feb 26, 2019 at 1:00 AM Don Dupuis wrote: > Joey > I am still not quite getting it. I am trying the below code and where it > is commented out, I have tried different things, but I am no table to > update the name of the object that I have found. > > networks_service = connection.system_s

[ovirt-users] Re: Python-SDK4- Issue following links

2019-02-25 Thread Don Dupuis
Joey I am still not quite getting it. I am trying the below code and where it is commented out, I have tried different things, but I am no table to update the name of the object that I have found. networks_service = connection.system_service().networks_service() network = networks_service.list(

[ovirt-users] Re: Python-SDK4- Issue following links

2019-02-25 Thread Don Dupuis
Thanks for the clarification Joey. Don On Mon, Feb 25, 2019 at 12:06 AM Joey Ma wrote: > Hi Don, > > Please using `network.vnic_profiles` instead of `network.vnicprofiles` as > the parameter of `connection.follow_link`. > > Regards, > Joey > > > On Mon, Feb 25, 2019 at 9:22 AM Don Dupuis wrot

[ovirt-users] Re: Python-SDK4- Issue following links

2019-02-24 Thread Joey Ma
Hi Don, Please using `network.vnic_profiles` instead of `network.vnicprofiles` as the parameter of `connection.follow_link`. Regards, Joey On Mon, Feb 25, 2019 at 9:22 AM Don Dupuis wrote: > Hi > > I am trying to write some code to update the names of existing > vnicprofiles in ovirt-4.2. Th