Class: OvirtSDK4::StorageServerConnectionsService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#add(connection, opts = {}) ⇒ StorageConnection
Creates a new storage connection.
-
#add_iscsi(connection, opts = {}) ⇒ StorageConnection
Add a iSCSI storage connection to the system.
-
#add_local(connection, opts = {}) ⇒ StorageConnection
Add a local storage connection to the system.
-
#add_nfs(connection, opts = {}) ⇒ StorageConnection
Add a nfs storage connection to the system.
-
#add_vfs(connection, opts = {}) ⇒ StorageConnection
Add a vfs storage connection to the system.
-
#list(opts = {}) ⇒ Array<StorageConnection>
Returns the list of storage connections.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
-
#storage_connection_service(id) ⇒ StorageServerConnectionService
Locates the
storage_connectionservice.
Methods inherited from Service
Instance Method Details
#add(connection, opts = {}) ⇒ StorageConnection
Creates a new storage connection.
For example, to create a new storage connection for the NFS server mynfs.example.com and NFS share
/export/mydata send a request like this:
POST /ovirt-engine/api/storageconnections
With a request body like this:
<storage_connection>
<type>nfs</type>
<address>mynfs.example.com</address>
<path>/export/mydata</path>
<host>
<name>myhost</name>
</host>
</storage_connection>
23745 23746 23747 |
# File 'lib/ovirtsdk4/services.rb', line 23745 def add(connection, opts = {}) internal_add(connection, StorageConnection, ADD, opts) end |
#add_iscsi(connection, opts = {}) ⇒ StorageConnection
Add a iSCSI storage connection to the system.
23772 23773 23774 |
# File 'lib/ovirtsdk4/services.rb', line 23772 def add_iscsi(connection, opts = {}) internal_add(connection, StorageConnection, ADD_ISCSI, opts) end |
#add_local(connection, opts = {}) ⇒ StorageConnection
Add a local storage connection to the system.
23833 23834 23835 |
# File 'lib/ovirtsdk4/services.rb', line 23833 def add_local(connection, opts = {}) internal_add(connection, StorageConnection, ADD_LOCAL, opts) end |
#add_nfs(connection, opts = {}) ⇒ StorageConnection
Add a nfs storage connection to the system.
23860 23861 23862 |
# File 'lib/ovirtsdk4/services.rb', line 23860 def add_nfs(connection, opts = {}) internal_add(connection, StorageConnection, ADD_NFS, opts) end |
#add_vfs(connection, opts = {}) ⇒ StorageConnection
Add a vfs storage connection to the system.
23887 23888 23889 |
# File 'lib/ovirtsdk4/services.rb', line 23887 def add_vfs(connection, opts = {}) internal_add(connection, StorageConnection, ADD_VFS, opts) end |
#list(opts = {}) ⇒ Array<StorageConnection>
Returns the list of storage connections.
The order of the returned list of connections isn’t guaranteed.
23806 23807 23808 |
# File 'lib/ovirtsdk4/services.rb', line 23806 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
23909 23910 23911 23912 23913 23914 23915 23916 23917 23918 |
# File 'lib/ovirtsdk4/services.rb', line 23909 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return storage_connection_service(path) end return storage_connection_service(path[0..(index - 1)]).service(path[(index +1)..-1]) end |
#storage_connection_service(id) ⇒ StorageServerConnectionService
Locates the storage_connection service.
23898 23899 23900 |
# File 'lib/ovirtsdk4/services.rb', line 23898 def storage_connection_service(id) StorageServerConnectionService.new(self, id) end |