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_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>
23846 23847 23848 |
# File 'lib/ovirtsdk4/services.rb', line 23846 def add(connection, opts = {}) internal_add(connection, StorageConnection, ADD, opts) end |
#add_iscsi(connection, opts = {}) ⇒ StorageConnection
Add a iSCSI storage connection to the system.
23873 23874 23875 |
# File 'lib/ovirtsdk4/services.rb', line 23873 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.
23934 23935 23936 |
# File 'lib/ovirtsdk4/services.rb', line 23934 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.
23961 23962 23963 |
# File 'lib/ovirtsdk4/services.rb', line 23961 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.
23988 23989 23990 |
# File 'lib/ovirtsdk4/services.rb', line 23988 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.
23907 23908 23909 |
# File 'lib/ovirtsdk4/services.rb', line 23907 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
24010 24011 24012 24013 24014 24015 24016 24017 24018 24019 |
# File 'lib/ovirtsdk4/services.rb', line 24010 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.
23999 24000 24001 |
# File 'lib/ovirtsdk4/services.rb', line 23999 def storage_connection_service(id) StorageServerConnectionService.new(self, id) end |