Class: OvirtSDK4::VnicProfilesService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#add(profile, opts = {}) ⇒ VnicProfile
Add a vNIC profile.
-
#list(opts = {}) ⇒ Array<VnicProfile>
List all vNIC profiles.
-
#profile_service(id) ⇒ VnicProfileService
Locates the
profile
service. -
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#add(profile, opts = {}) ⇒ VnicProfile
Add a vNIC profile.
For example to add vNIC profile 123
to network 456
send a request to:
POST /ovirt-engine/api/networks/456/vnicprofiles
With the following body:
<vnic_profile id="123">
<name>new_vNIC_name</name>
<pass_through>
<mode>disabled</mode>
</pass_through>
<port_mirroring>false</port_mirroring>
</vnic_profile>
Please note that there is a default network filter to each VNIC profile. For more details of how the default network filter is calculated please refer to the documentation in NetworkFilters.
The output of creating a new VNIC profile depends in the body arguments that were given. In case no network filter was given, the default network filter will be configured. For example:
<vnic_profile href="/ovirt-engine/api/vnicprofiles/123" id="123">
<name>new_vNIC_name</name>
<link href="/ovirt-engine/api/vnicprofiles/123/permissions" rel="permissions"/>
<pass_through>
<mode>disabled</mode>
</pass_through>
<port_mirroring>false</port_mirroring>
<network href="/ovirt-engine/api/networks/456" id="456"/>
<network_filter href="/ovirt-engine/api/networkfilters/789" id="789"/>
</vnic_profile>
In case an empty network filter was given, no network filter will be configured for the specific VNIC profile regardless of the VNIC profile’s default network filter. For example:
<vnic_profile>
<name>no_network_filter</name>
<network_filter/>
</vnic_profile>
In case that a specific valid network filter id was given, the VNIC profile will be configured with the given network filter regardless of the VNIC profiles’s default network filter. For example:
<vnic_profile>
<name>user_choice_network_filter</name>
<network_filter id= "0000001b-001b-001b-001b-0000000001d5"/>
</vnic_profile>
33078 33079 33080 |
# File 'lib/ovirtsdk4/services.rb', line 33078 def add(profile, opts = {}) internal_add(profile, VnicProfile, ADD, opts) end |
#list(opts = {}) ⇒ Array<VnicProfile>
List all vNIC profiles.
The order of the returned list of vNIC profiles isn’t guaranteed.
33112 33113 33114 |
# File 'lib/ovirtsdk4/services.rb', line 33112 def list(opts = {}) internal_get(LIST, opts) end |
#profile_service(id) ⇒ VnicProfileService
Locates the profile
service.
33123 33124 33125 |
# File 'lib/ovirtsdk4/services.rb', line 33123 def profile_service(id) VnicProfileService.new(self, id) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
33134 33135 33136 33137 33138 33139 33140 33141 33142 33143 |
# File 'lib/ovirtsdk4/services.rb', line 33134 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return profile_service(path) end return profile_service(path[0..(index - 1)]).service(path[(index +1)..-1]) end |