Class: OvirtSDK4::OpenstackImageProviderService
- Inherits:
-
ExternalProviderService
- Object
- Service
- ExternalProviderService
- OvirtSDK4::OpenstackImageProviderService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#certificates_service ⇒ ExternalProviderCertificatesService
A service to view certificates for this external provider.
-
#get(opts = {}) ⇒ OpenStackImageProvider
Returns the representation of the object managed by this service.
-
#images_service ⇒ OpenstackImagesService
Locates the
imagesservice. -
#import_certificates(opts = {}) ⇒ Object
Import the SSL certificates of the external host provider.
-
#remove(opts = {}) ⇒ Object
Deletes the object managed by this service.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
-
#test_connectivity(opts = {}) ⇒ Object
In order to test connectivity for external provider we need to run following request where 123 is an id of a provider.
-
#update(provider, opts = {}) ⇒ OpenStackImageProvider
Update the specified OpenStack image provider in the system.
Methods inherited from Service
Instance Method Details
#certificates_service ⇒ ExternalProviderCertificatesService
A service to view certificates for this external provider.
17026 17027 17028 |
# File 'lib/ovirtsdk4/services.rb', line 17026 def certificates_service @certificates_service ||= ExternalProviderCertificatesService.new(self, 'certificates') end |
#get(opts = {}) ⇒ OpenStackImageProvider
Returns the representation of the object managed by this service.
16906 16907 16908 |
# File 'lib/ovirtsdk4/services.rb', line 16906 def get(opts = {}) internal_get(GET, opts) end |
#images_service ⇒ OpenstackImagesService
Locates the images service.
17035 17036 17037 |
# File 'lib/ovirtsdk4/services.rb', line 17035 def images_service @images_service ||= OpenstackImagesService.new(self, 'images') end |
#import_certificates(opts = {}) ⇒ Object
Import the SSL certificates of the external host provider.
16932 16933 16934 |
# File 'lib/ovirtsdk4/services.rb', line 16932 def import_certificates(opts = {}) internal_action(:importcertificates, nil, IMPORT_CERTIFICATES, opts) end |
#remove(opts = {}) ⇒ Object
Deletes the object managed by this service.
16957 16958 16959 |
# File 'lib/ovirtsdk4/services.rb', line 16957 def remove(opts = {}) internal_remove(REMOVE, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 |
# File 'lib/ovirtsdk4/services.rb', line 17046 def service(path) if path.nil? || path == '' return self end if path == 'certificates' return certificates_service end if path.start_with?('certificates/') return certificates_service.service(path[13..-1]) end if path == 'images' return images_service end if path.start_with?('images/') return images_service.service(path[7..-1]) end raise Error.new("The path \"#{path}\" doesn't correspond to any service") end |
#test_connectivity(opts = {}) ⇒ Object
In order to test connectivity for external provider we need to run following request where 123 is an id of a provider.
POST /ovirt-engine/api/externalhostproviders/123/testconnectivity HTTP/1.1
16988 16989 16990 |
# File 'lib/ovirtsdk4/services.rb', line 16988 def test_connectivity(opts = {}) internal_action(:testconnectivity, nil, TEST_CONNECTIVITY, opts) end |
#update(provider, opts = {}) ⇒ OpenStackImageProvider
Update the specified OpenStack image provider in the system.
17017 17018 17019 |
# File 'lib/ovirtsdk4/services.rb', line 17017 def update(provider, opts = {}) internal_update(provider, OpenStackImageProvider, UPDATE, opts) end |