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_glusterfs(connection, opts = {}) ⇒ StorageConnection
Add a Glusterfs storage connection to the system.
-
#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_connection
service.
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>
25234 25235 25236 |
# File 'lib/ovirtsdk4/services.rb', line 25234 def add(connection, opts = {}) internal_add(connection, StorageConnection, ADD, opts) end |
#add_glusterfs(connection, opts = {}) ⇒ StorageConnection
Add a Glusterfs storage connection to the system.
25261 25262 25263 |
# File 'lib/ovirtsdk4/services.rb', line 25261 def add_glusterfs(connection, opts = {}) internal_add(connection, StorageConnection, ADD_GLUSTERFS, opts) end |
#add_iscsi(connection, opts = {}) ⇒ StorageConnection
Add a iSCSI storage connection to the system.
25288 25289 25290 |
# File 'lib/ovirtsdk4/services.rb', line 25288 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.
25349 25350 25351 |
# File 'lib/ovirtsdk4/services.rb', line 25349 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.
25376 25377 25378 |
# File 'lib/ovirtsdk4/services.rb', line 25376 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.
25403 25404 25405 |
# File 'lib/ovirtsdk4/services.rb', line 25403 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.
25322 25323 25324 |
# File 'lib/ovirtsdk4/services.rb', line 25322 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
25425 25426 25427 25428 25429 25430 25431 25432 25433 25434 |
# File 'lib/ovirtsdk4/services.rb', line 25425 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.
25414 25415 25416 |
# File 'lib/ovirtsdk4/services.rb', line 25414 def storage_connection_service(id) StorageServerConnectionService.new(self, id) end |