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>
24019 24020 24021 |
# File 'lib/ovirtsdk4/services.rb', line 24019 def add(connection, opts = {}) internal_add(connection, StorageConnection, ADD, opts) end |
#add_glusterfs(connection, opts = {}) ⇒ StorageConnection
Add a Glusterfs storage connection to the system.
24046 24047 24048 |
# File 'lib/ovirtsdk4/services.rb', line 24046 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.
24073 24074 24075 |
# File 'lib/ovirtsdk4/services.rb', line 24073 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.
24134 24135 24136 |
# File 'lib/ovirtsdk4/services.rb', line 24134 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.
24161 24162 24163 |
# File 'lib/ovirtsdk4/services.rb', line 24161 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.
24188 24189 24190 |
# File 'lib/ovirtsdk4/services.rb', line 24188 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.
24107 24108 24109 |
# File 'lib/ovirtsdk4/services.rb', line 24107 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
24210 24211 24212 24213 24214 24215 24216 24217 24218 24219 |
# File 'lib/ovirtsdk4/services.rb', line 24210 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.
24199 24200 24201 |
# File 'lib/ovirtsdk4/services.rb', line 24199 def storage_connection_service(id) StorageServerConnectionService.new(self, id) end |