autosde_openapi_client 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +32 -7
- data/docs/AbstractCapabilityApi.md +6 -6
- data/docs/AccountApi.md +9 -9
- data/docs/AddressApi.md +6 -6
- data/docs/AuthenticationApi.md +1 -1
- data/docs/AutoSDEProjectApi.md +6 -6
- data/docs/AutoSDERoleApi.md +6 -6
- data/docs/CapabilityTranslationApi.md +6 -6
- data/docs/HostApi.md +6 -6
- data/docs/HostVolumeConnectionApi.md +6 -6
- data/docs/Job.md +29 -0
- data/docs/JobApi.md +104 -0
- data/docs/JobCreate.md +19 -0
- data/docs/NativeCapabilityApi.md +6 -6
- data/docs/ProfileApi.md +6 -6
- data/docs/ProvisioningStrategyApi.md +6 -6
- data/docs/ServiceApi.md +9 -9
- data/docs/ServiceResourceAttachmentApi.md +6 -6
- data/docs/Snapshot.md +25 -0
- data/docs/SnapshotApi.md +204 -0
- data/docs/SnapshotCreate.md +23 -0
- data/docs/StorageHost.md +29 -0
- data/docs/StorageHostApi.md +256 -0
- data/docs/StorageHostCreate.md +37 -0
- data/docs/StorageHostResponse.md +31 -0
- data/docs/StorageHostUpdate.md +21 -0
- data/docs/StorageHostVolumeMapping.md +25 -0
- data/docs/StorageHostVolumeMappingApi.md +204 -0
- data/docs/StorageHostVolumeMappingCreate.md +23 -0
- data/docs/StorageResourceApi.md +9 -9
- data/docs/StorageSystemApi.md +6 -6
- data/docs/SystemTypeApi.md +6 -6
- data/docs/Volume.md +2 -0
- data/docs/VolumeApi.md +9 -9
- data/docs/VolumeCreate.md +2 -0
- data/docs/VolumeResponse.md +2 -0
- data/docs/VolumeSafeDeleteApi.md +6 -6
- data/docs/VolumeUpdate.md +3 -1
- data/lib/openapi_client.rb +108 -0
- data/lib/{autosde_openapi_client → openapi_client}/api/abstract_capability_api.rb +19 -15
- data/lib/{autosde_openapi_client → openapi_client}/api/account_api.rb +25 -20
- data/lib/{autosde_openapi_client → openapi_client}/api/address_api.rb +19 -15
- data/lib/{autosde_openapi_client → openapi_client}/api/authentication_api.rb +5 -4
- data/lib/{autosde_openapi_client → openapi_client}/api/auto_sde_project_api.rb +19 -15
- data/lib/{autosde_openapi_client → openapi_client}/api/auto_sde_role_api.rb +19 -15
- data/lib/{autosde_openapi_client → openapi_client}/api/capability_translation_api.rb +19 -15
- data/lib/{autosde_openapi_client → openapi_client}/api/host_api.rb +19 -15
- data/lib/{autosde_openapi_client → openapi_client}/api/host_volume_connection_api.rb +19 -15
- data/lib/openapi_client/api/job_api.rb +136 -0
- data/lib/{autosde_openapi_client → openapi_client}/api/native_capability_api.rb +19 -15
- data/lib/{autosde_openapi_client → openapi_client}/api/profile_api.rb +19 -15
- data/lib/{autosde_openapi_client → openapi_client}/api/provisioning_strategy_api.rb +19 -15
- data/lib/{autosde_openapi_client → openapi_client}/api/service_api.rb +25 -20
- data/lib/{autosde_openapi_client → openapi_client}/api/service_resource_attachment_api.rb +19 -15
- data/lib/openapi_client/api/snapshot_api.rb +254 -0
- data/lib/openapi_client/api/storage_host_api.rb +321 -0
- data/lib/openapi_client/api/storage_host_volume_mapping_api.rb +254 -0
- data/lib/{autosde_openapi_client → openapi_client}/api/storage_resource_api.rb +25 -20
- data/lib/{autosde_openapi_client → openapi_client}/api/storage_system_api.rb +19 -15
- data/lib/{autosde_openapi_client → openapi_client}/api/system_type_api.rb +19 -15
- data/lib/{autosde_openapi_client → openapi_client}/api/volume_api.rb +25 -20
- data/lib/{autosde_openapi_client → openapi_client}/api/volume_safe_delete_api.rb +19 -15
- data/lib/{autosde_openapi_client → openapi_client}/api_client.rb +46 -45
- data/lib/{autosde_openapi_client → openapi_client}/api_error.rb +1 -1
- data/lib/{autosde_openapi_client → openapi_client}/configuration.rb +34 -7
- data/lib/{autosde_openapi_client → openapi_client}/models/abstract_capability.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/account.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/account_post_request.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/account_post_response.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/address.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/address_create.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/auth_response.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/authentication.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/auto_sde_project.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/auto_sde_role.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/capability_translation.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/capability_translation_create.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/host.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/host_create.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/host_volume_connection.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/host_volume_connection_create.rb +9 -5
- data/lib/openapi_client/models/job.rb +272 -0
- data/lib/openapi_client/models/job_create.rb +222 -0
- data/lib/{autosde_openapi_client → openapi_client}/models/native_capability.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/profile.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/provisioning_strategy.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/service.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/service_abstract_capability_value.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/service_create.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/service_resource_attachment.rb +9 -5
- data/lib/openapi_client/models/snapshot.rb +290 -0
- data/lib/openapi_client/models/snapshot_create.rb +280 -0
- data/lib/openapi_client/models/storage_host.rb +309 -0
- data/lib/openapi_client/models/storage_host_create.rb +360 -0
- data/lib/openapi_client/models/storage_host_response.rb +325 -0
- data/lib/openapi_client/models/storage_host_update.rb +293 -0
- data/lib/openapi_client/models/storage_host_volume_mapping.rb +291 -0
- data/lib/openapi_client/models/storage_host_volume_mapping_create.rb +283 -0
- data/lib/{autosde_openapi_client → openapi_client}/models/storage_resource.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/storage_resource_create.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/storage_resource_response.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/storage_system.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/storage_system_create.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/system_type.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/system_type_create.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/volume.rb +20 -6
- data/lib/{autosde_openapi_client → openapi_client}/models/volume_create.rb +20 -6
- data/lib/{autosde_openapi_client → openapi_client}/models/volume_response.rb +20 -6
- data/lib/{autosde_openapi_client → openapi_client}/models/volume_safe_delete.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/volume_safe_delete_create.rb +9 -5
- data/lib/{autosde_openapi_client → openapi_client}/models/volume_update.rb +22 -6
- data/lib/{autosde_openapi_client → openapi_client}/version.rb +2 -2
- data/{autosde_openapi_client.gemspec → openapi_client.gemspec} +3 -4
- data/spec/api/abstract_capability_api_spec.rb +1 -1
- data/spec/api/account_api_spec.rb +1 -1
- data/spec/api/address_api_spec.rb +1 -1
- data/spec/api/authentication_api_spec.rb +1 -1
- data/spec/api/auto_sde_project_api_spec.rb +1 -1
- data/spec/api/auto_sde_role_api_spec.rb +1 -1
- data/spec/api/capability_translation_api_spec.rb +1 -1
- data/spec/api/host_api_spec.rb +1 -1
- data/spec/api/host_volume_connection_api_spec.rb +1 -1
- data/spec/api/job_api_spec.rb +54 -0
- data/spec/api/native_capability_api_spec.rb +1 -1
- data/spec/api/profile_api_spec.rb +1 -1
- data/spec/api/provisioning_strategy_api_spec.rb +1 -1
- data/spec/api/service_api_spec.rb +1 -1
- data/spec/api/service_resource_attachment_api_spec.rb +1 -1
- data/spec/api/snapshot_api_spec.rb +74 -0
- data/spec/api/storage_host_api_spec.rb +74 -0
- data/spec/api/storage_host_volume_mapping_api_spec.rb +74 -0
- data/spec/api/storage_resource_api_spec.rb +1 -1
- data/spec/api/storage_system_api_spec.rb +1 -1
- data/spec/api/system_type_api_spec.rb +1 -1
- data/spec/api/volume_api_spec.rb +1 -1
- data/spec/api/volume_safe_delete_api_spec.rb +1 -1
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/abstract_capability_spec.rb +1 -1
- data/spec/models/account_post_request_spec.rb +1 -1
- data/spec/models/account_post_response_spec.rb +1 -1
- data/spec/models/account_spec.rb +1 -1
- data/spec/models/address_create_spec.rb +1 -1
- data/spec/models/address_spec.rb +1 -1
- data/spec/models/auth_response_spec.rb +1 -1
- data/spec/models/authentication_spec.rb +1 -1
- data/spec/models/auto_sde_project_spec.rb +1 -1
- data/spec/models/auto_sde_role_spec.rb +1 -1
- data/spec/models/capability_translation_create_spec.rb +1 -1
- data/spec/models/capability_translation_spec.rb +1 -1
- data/spec/models/host_create_spec.rb +1 -1
- data/spec/models/host_spec.rb +1 -1
- data/spec/models/host_volume_connection_create_spec.rb +1 -1
- data/spec/models/host_volume_connection_spec.rb +1 -1
- data/spec/models/job_create_spec.rb +47 -0
- data/spec/models/job_spec.rb +77 -0
- data/spec/models/native_capability_spec.rb +1 -1
- data/spec/models/profile_spec.rb +1 -1
- data/spec/models/provisioning_strategy_spec.rb +1 -1
- data/spec/models/service_abstract_capability_value_spec.rb +1 -1
- data/spec/models/service_create_spec.rb +1 -1
- data/spec/models/service_resource_attachment_spec.rb +1 -1
- data/spec/models/service_spec.rb +1 -1
- data/spec/models/snapshot_create_spec.rb +63 -0
- data/spec/models/snapshot_spec.rb +69 -0
- data/spec/models/storage_host_create_spec.rb +109 -0
- data/spec/models/storage_host_response_spec.rb +87 -0
- data/spec/models/storage_host_spec.rb +81 -0
- data/spec/models/storage_host_update_spec.rb +61 -0
- data/spec/models/storage_host_volume_mapping_create_spec.rb +63 -0
- data/spec/models/storage_host_volume_mapping_spec.rb +69 -0
- data/spec/models/storage_resource_create_spec.rb +1 -1
- data/spec/models/storage_resource_response_spec.rb +1 -1
- data/spec/models/storage_resource_spec.rb +1 -1
- data/spec/models/storage_system_create_spec.rb +1 -1
- data/spec/models/storage_system_spec.rb +1 -1
- data/spec/models/system_type_create_spec.rb +1 -1
- data/spec/models/system_type_spec.rb +1 -1
- data/spec/models/volume_create_spec.rb +1 -1
- data/spec/models/volume_response_spec.rb +1 -1
- data/spec/models/volume_safe_delete_create_spec.rb +1 -1
- data/spec/models/volume_safe_delete_spec.rb +1 -1
- data/spec/models/volume_spec.rb +1 -1
- data/spec/models/volume_update_spec.rb +7 -1
- data/spec/spec_helper.rb +2 -2
- metadata +142 -106
- data/lib/autosde_openapi_client.rb +0 -94
- data/site_manager_oas.json +0 -3992
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4d39d14da328b0b57091ed79aae02b154983c9ab5eda700b7cc357ae5dcb1642
|
|
4
|
+
data.tar.gz: 3d59800b398635ff56fb5b42d217857612e0735126308491754da62fbeb6769f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9a5b043f768c50f70f78b0af90e91096404803120462aa8e5a0623311346a43522925b82f454d5cfaa1abef95dbde99f5374fa9f4f1c4e0290e0d8893b48072a
|
|
7
|
+
data.tar.gz: 884f975dd16363a9ece259aefa883bfc71384b6ffcd791967ff641ec3ae63870f929e3d4e36b47894264ce6202e63f6f95062a0fe8c1bd928d8a395c8778cbc9
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# openapi_client
|
|
2
2
|
|
|
3
3
|
OpenapiClient - the Ruby gem for the Site Manager API
|
|
4
4
|
|
|
@@ -17,28 +17,28 @@ This SDK is automatically generated by the [OpenAPI Generator](https://openapi-g
|
|
|
17
17
|
To build the Ruby code into a gem:
|
|
18
18
|
|
|
19
19
|
```shell
|
|
20
|
-
gem build
|
|
20
|
+
gem build openapi_client.gemspec
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
Then either install the gem locally:
|
|
24
24
|
|
|
25
25
|
```shell
|
|
26
|
-
gem install ./
|
|
26
|
+
gem install ./openapi_client-1.0.0.gem
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
(for development, run `gem install --dev ./
|
|
29
|
+
(for development, run `gem install --dev ./openapi_client-1.0.0.gem` to install the development dependencies)
|
|
30
30
|
|
|
31
31
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
32
32
|
|
|
33
33
|
Finally add this to the Gemfile:
|
|
34
34
|
|
|
35
|
-
gem '
|
|
35
|
+
gem 'openapi_client', '~> 1.0.0'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
39
39
|
If the Ruby gem is hosted at a git repository: https://github.com/GIT_USER_ID/GIT_REPO_ID, then add the following in the Gemfile:
|
|
40
40
|
|
|
41
|
-
gem '
|
|
41
|
+
gem 'openapi_client', :git => 'https://github.com/GIT_USER_ID/GIT_REPO_ID.git'
|
|
42
42
|
|
|
43
43
|
### Include the Ruby code directly
|
|
44
44
|
|
|
@@ -54,7 +54,7 @@ Please follow the [installation](#installation) procedure and then run the follo
|
|
|
54
54
|
|
|
55
55
|
```ruby
|
|
56
56
|
# Load the gem
|
|
57
|
-
require '
|
|
57
|
+
require 'openapi_client'
|
|
58
58
|
|
|
59
59
|
# Setup authorization
|
|
60
60
|
OpenapiClient.configure do |config|
|
|
@@ -113,6 +113,8 @@ Class | Method | HTTP request | Description
|
|
|
113
113
|
*OpenapiClient::HostVolumeConnectionApi* | [**host_volume_connection_pk_delete**](docs/HostVolumeConnectionApi.md#host_volume_connection_pk_delete) | **DELETE** /host-volume-connection/{pk} |
|
|
114
114
|
*OpenapiClient::HostVolumeConnectionApi* | [**host_volume_connection_pk_get**](docs/HostVolumeConnectionApi.md#host_volume_connection_pk_get) | **GET** /host-volume-connection/{pk} |
|
|
115
115
|
*OpenapiClient::HostVolumeConnectionApi* | [**host_volume_connection_post**](docs/HostVolumeConnectionApi.md#host_volume_connection_post) | **POST** /host-volume-connection/ |
|
|
116
|
+
*OpenapiClient::JobApi* | [**jobs_get**](docs/JobApi.md#jobs_get) | **GET** /jobs |
|
|
117
|
+
*OpenapiClient::JobApi* | [**jobs_post**](docs/JobApi.md#jobs_post) | **POST** /jobs |
|
|
116
118
|
*OpenapiClient::NativeCapabilityApi* | [**native_capabilities_get**](docs/NativeCapabilityApi.md#native_capabilities_get) | **GET** /native-capabilities/ |
|
|
117
119
|
*OpenapiClient::NativeCapabilityApi* | [**native_capabilities_pk_delete**](docs/NativeCapabilityApi.md#native_capabilities_pk_delete) | **DELETE** /native-capabilities/{pk} |
|
|
118
120
|
*OpenapiClient::NativeCapabilityApi* | [**native_capabilities_pk_get**](docs/NativeCapabilityApi.md#native_capabilities_pk_get) | **GET** /native-capabilities/{pk} |
|
|
@@ -134,6 +136,19 @@ Class | Method | HTTP request | Description
|
|
|
134
136
|
*OpenapiClient::ServiceResourceAttachmentApi* | [**service_resource_attchment_pk_delete**](docs/ServiceResourceAttachmentApi.md#service_resource_attchment_pk_delete) | **DELETE** /service-resource-attchment/{pk} |
|
|
135
137
|
*OpenapiClient::ServiceResourceAttachmentApi* | [**service_resource_attchment_pk_get**](docs/ServiceResourceAttachmentApi.md#service_resource_attchment_pk_get) | **GET** /service-resource-attchment/{pk} |
|
|
136
138
|
*OpenapiClient::ServiceResourceAttachmentApi* | [**service_resource_attchment_post**](docs/ServiceResourceAttachmentApi.md#service_resource_attchment_post) | **POST** /service-resource-attchment/ |
|
|
139
|
+
*OpenapiClient::SnapshotApi* | [**snapshots_get**](docs/SnapshotApi.md#snapshots_get) | **GET** /snapshots/ |
|
|
140
|
+
*OpenapiClient::SnapshotApi* | [**snapshots_pk_delete**](docs/SnapshotApi.md#snapshots_pk_delete) | **DELETE** /snapshots/{pk} |
|
|
141
|
+
*OpenapiClient::SnapshotApi* | [**snapshots_pk_get**](docs/SnapshotApi.md#snapshots_pk_get) | **GET** /snapshots/{pk} |
|
|
142
|
+
*OpenapiClient::SnapshotApi* | [**snapshots_post**](docs/SnapshotApi.md#snapshots_post) | **POST** /snapshots/ |
|
|
143
|
+
*OpenapiClient::StorageHostApi* | [**storage_hosts_get**](docs/StorageHostApi.md#storage_hosts_get) | **GET** /storage-hosts |
|
|
144
|
+
*OpenapiClient::StorageHostApi* | [**storage_hosts_pk_delete**](docs/StorageHostApi.md#storage_hosts_pk_delete) | **DELETE** /storage-hosts/{pk} |
|
|
145
|
+
*OpenapiClient::StorageHostApi* | [**storage_hosts_pk_get**](docs/StorageHostApi.md#storage_hosts_pk_get) | **GET** /storage-hosts/{pk} |
|
|
146
|
+
*OpenapiClient::StorageHostApi* | [**storage_hosts_pk_put**](docs/StorageHostApi.md#storage_hosts_pk_put) | **PUT** /storage-hosts/{pk} |
|
|
147
|
+
*OpenapiClient::StorageHostApi* | [**storage_hosts_post**](docs/StorageHostApi.md#storage_hosts_post) | **POST** /storage-hosts |
|
|
148
|
+
*OpenapiClient::StorageHostVolumeMappingApi* | [**storage_hosts_mapping_get**](docs/StorageHostVolumeMappingApi.md#storage_hosts_mapping_get) | **GET** /storage-hosts-mapping |
|
|
149
|
+
*OpenapiClient::StorageHostVolumeMappingApi* | [**storage_hosts_mapping_pk_delete**](docs/StorageHostVolumeMappingApi.md#storage_hosts_mapping_pk_delete) | **DELETE** /storage-hosts-mapping/{pk} |
|
|
150
|
+
*OpenapiClient::StorageHostVolumeMappingApi* | [**storage_hosts_mapping_pk_get**](docs/StorageHostVolumeMappingApi.md#storage_hosts_mapping_pk_get) | **GET** /storage-hosts-mapping/{pk} |
|
|
151
|
+
*OpenapiClient::StorageHostVolumeMappingApi* | [**storage_hosts_mapping_post**](docs/StorageHostVolumeMappingApi.md#storage_hosts_mapping_post) | **POST** /storage-hosts-mapping |
|
|
137
152
|
*OpenapiClient::StorageResourceApi* | [**storage_resources_get**](docs/StorageResourceApi.md#storage_resources_get) | **GET** /storage-resources/ |
|
|
138
153
|
*OpenapiClient::StorageResourceApi* | [**storage_resources_pk_delete**](docs/StorageResourceApi.md#storage_resources_pk_delete) | **DELETE** /storage-resources/{pk} |
|
|
139
154
|
*OpenapiClient::StorageResourceApi* | [**storage_resources_pk_get**](docs/StorageResourceApi.md#storage_resources_pk_get) | **GET** /storage-resources/{pk} |
|
|
@@ -176,6 +191,8 @@ Class | Method | HTTP request | Description
|
|
|
176
191
|
- [OpenapiClient::HostCreate](docs/HostCreate.md)
|
|
177
192
|
- [OpenapiClient::HostVolumeConnection](docs/HostVolumeConnection.md)
|
|
178
193
|
- [OpenapiClient::HostVolumeConnectionCreate](docs/HostVolumeConnectionCreate.md)
|
|
194
|
+
- [OpenapiClient::Job](docs/Job.md)
|
|
195
|
+
- [OpenapiClient::JobCreate](docs/JobCreate.md)
|
|
179
196
|
- [OpenapiClient::NativeCapability](docs/NativeCapability.md)
|
|
180
197
|
- [OpenapiClient::Profile](docs/Profile.md)
|
|
181
198
|
- [OpenapiClient::ProvisioningStrategy](docs/ProvisioningStrategy.md)
|
|
@@ -183,6 +200,14 @@ Class | Method | HTTP request | Description
|
|
|
183
200
|
- [OpenapiClient::ServiceAbstractCapabilityValue](docs/ServiceAbstractCapabilityValue.md)
|
|
184
201
|
- [OpenapiClient::ServiceCreate](docs/ServiceCreate.md)
|
|
185
202
|
- [OpenapiClient::ServiceResourceAttachment](docs/ServiceResourceAttachment.md)
|
|
203
|
+
- [OpenapiClient::Snapshot](docs/Snapshot.md)
|
|
204
|
+
- [OpenapiClient::SnapshotCreate](docs/SnapshotCreate.md)
|
|
205
|
+
- [OpenapiClient::StorageHost](docs/StorageHost.md)
|
|
206
|
+
- [OpenapiClient::StorageHostCreate](docs/StorageHostCreate.md)
|
|
207
|
+
- [OpenapiClient::StorageHostResponse](docs/StorageHostResponse.md)
|
|
208
|
+
- [OpenapiClient::StorageHostUpdate](docs/StorageHostUpdate.md)
|
|
209
|
+
- [OpenapiClient::StorageHostVolumeMapping](docs/StorageHostVolumeMapping.md)
|
|
210
|
+
- [OpenapiClient::StorageHostVolumeMappingCreate](docs/StorageHostVolumeMappingCreate.md)
|
|
186
211
|
- [OpenapiClient::StorageResource](docs/StorageResource.md)
|
|
187
212
|
- [OpenapiClient::StorageResourceCreate](docs/StorageResourceCreate.md)
|
|
188
213
|
- [OpenapiClient::StorageResourceResponse](docs/StorageResourceResponse.md)
|
|
@@ -21,7 +21,7 @@ Method | HTTP request | Description
|
|
|
21
21
|
|
|
22
22
|
```ruby
|
|
23
23
|
# load the gem
|
|
24
|
-
require '
|
|
24
|
+
require 'openapi_client'
|
|
25
25
|
# setup authorization
|
|
26
26
|
OpenapiClient.configure do |config|
|
|
27
27
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -66,7 +66,7 @@ This endpoint does not need any parameter.
|
|
|
66
66
|
|
|
67
67
|
```ruby
|
|
68
68
|
# load the gem
|
|
69
|
-
require '
|
|
69
|
+
require 'openapi_client'
|
|
70
70
|
# setup authorization
|
|
71
71
|
OpenapiClient.configure do |config|
|
|
72
72
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -115,7 +115,7 @@ Name | Type | Description | Notes
|
|
|
115
115
|
|
|
116
116
|
```ruby
|
|
117
117
|
# load the gem
|
|
118
|
-
require '
|
|
118
|
+
require 'openapi_client'
|
|
119
119
|
# setup authorization
|
|
120
120
|
OpenapiClient.configure do |config|
|
|
121
121
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -156,7 +156,7 @@ Name | Type | Description | Notes
|
|
|
156
156
|
|
|
157
157
|
## abstract_capabilities_post
|
|
158
158
|
|
|
159
|
-
>
|
|
159
|
+
> AbstractCapability abstract_capabilities_post(abstract_capability)
|
|
160
160
|
|
|
161
161
|
|
|
162
162
|
|
|
@@ -164,7 +164,7 @@ Name | Type | Description | Notes
|
|
|
164
164
|
|
|
165
165
|
```ruby
|
|
166
166
|
# load the gem
|
|
167
|
-
require '
|
|
167
|
+
require 'openapi_client'
|
|
168
168
|
# setup authorization
|
|
169
169
|
OpenapiClient.configure do |config|
|
|
170
170
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -191,7 +191,7 @@ Name | Type | Description | Notes
|
|
|
191
191
|
|
|
192
192
|
### Return type
|
|
193
193
|
|
|
194
|
-
[**
|
|
194
|
+
[**AbstractCapability**](AbstractCapability.md)
|
|
195
195
|
|
|
196
196
|
### Authorization
|
|
197
197
|
|
data/docs/AccountApi.md
CHANGED
|
@@ -22,7 +22,7 @@ Method | HTTP request | Description
|
|
|
22
22
|
|
|
23
23
|
```ruby
|
|
24
24
|
# load the gem
|
|
25
|
-
require '
|
|
25
|
+
require 'openapi_client'
|
|
26
26
|
# setup authorization
|
|
27
27
|
OpenapiClient.configure do |config|
|
|
28
28
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -67,7 +67,7 @@ This endpoint does not need any parameter.
|
|
|
67
67
|
|
|
68
68
|
```ruby
|
|
69
69
|
# load the gem
|
|
70
|
-
require '
|
|
70
|
+
require 'openapi_client'
|
|
71
71
|
# setup authorization
|
|
72
72
|
OpenapiClient.configure do |config|
|
|
73
73
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -116,7 +116,7 @@ Name | Type | Description | Notes
|
|
|
116
116
|
|
|
117
117
|
```ruby
|
|
118
118
|
# load the gem
|
|
119
|
-
require '
|
|
119
|
+
require 'openapi_client'
|
|
120
120
|
# setup authorization
|
|
121
121
|
OpenapiClient.configure do |config|
|
|
122
122
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -157,7 +157,7 @@ Name | Type | Description | Notes
|
|
|
157
157
|
|
|
158
158
|
## accounts_pk_put
|
|
159
159
|
|
|
160
|
-
>
|
|
160
|
+
> AccountPostResponse accounts_pk_put(pk, account_post_request)
|
|
161
161
|
|
|
162
162
|
|
|
163
163
|
|
|
@@ -165,7 +165,7 @@ Name | Type | Description | Notes
|
|
|
165
165
|
|
|
166
166
|
```ruby
|
|
167
167
|
# load the gem
|
|
168
|
-
require '
|
|
168
|
+
require 'openapi_client'
|
|
169
169
|
# setup authorization
|
|
170
170
|
OpenapiClient.configure do |config|
|
|
171
171
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -194,7 +194,7 @@ Name | Type | Description | Notes
|
|
|
194
194
|
|
|
195
195
|
### Return type
|
|
196
196
|
|
|
197
|
-
[**
|
|
197
|
+
[**AccountPostResponse**](AccountPostResponse.md)
|
|
198
198
|
|
|
199
199
|
### Authorization
|
|
200
200
|
|
|
@@ -208,7 +208,7 @@ Name | Type | Description | Notes
|
|
|
208
208
|
|
|
209
209
|
## accounts_post
|
|
210
210
|
|
|
211
|
-
>
|
|
211
|
+
> AccountPostResponse accounts_post(account_post_request)
|
|
212
212
|
|
|
213
213
|
|
|
214
214
|
|
|
@@ -216,7 +216,7 @@ Name | Type | Description | Notes
|
|
|
216
216
|
|
|
217
217
|
```ruby
|
|
218
218
|
# load the gem
|
|
219
|
-
require '
|
|
219
|
+
require 'openapi_client'
|
|
220
220
|
# setup authorization
|
|
221
221
|
OpenapiClient.configure do |config|
|
|
222
222
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -243,7 +243,7 @@ Name | Type | Description | Notes
|
|
|
243
243
|
|
|
244
244
|
### Return type
|
|
245
245
|
|
|
246
|
-
[**
|
|
246
|
+
[**AccountPostResponse**](AccountPostResponse.md)
|
|
247
247
|
|
|
248
248
|
### Authorization
|
|
249
249
|
|
data/docs/AddressApi.md
CHANGED
|
@@ -21,7 +21,7 @@ Method | HTTP request | Description
|
|
|
21
21
|
|
|
22
22
|
```ruby
|
|
23
23
|
# load the gem
|
|
24
|
-
require '
|
|
24
|
+
require 'openapi_client'
|
|
25
25
|
# setup authorization
|
|
26
26
|
OpenapiClient.configure do |config|
|
|
27
27
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -66,7 +66,7 @@ This endpoint does not need any parameter.
|
|
|
66
66
|
|
|
67
67
|
```ruby
|
|
68
68
|
# load the gem
|
|
69
|
-
require '
|
|
69
|
+
require 'openapi_client'
|
|
70
70
|
# setup authorization
|
|
71
71
|
OpenapiClient.configure do |config|
|
|
72
72
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -115,7 +115,7 @@ Name | Type | Description | Notes
|
|
|
115
115
|
|
|
116
116
|
```ruby
|
|
117
117
|
# load the gem
|
|
118
|
-
require '
|
|
118
|
+
require 'openapi_client'
|
|
119
119
|
# setup authorization
|
|
120
120
|
OpenapiClient.configure do |config|
|
|
121
121
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -156,7 +156,7 @@ Name | Type | Description | Notes
|
|
|
156
156
|
|
|
157
157
|
## addresses_post
|
|
158
158
|
|
|
159
|
-
>
|
|
159
|
+
> Address addresses_post(address_create)
|
|
160
160
|
|
|
161
161
|
|
|
162
162
|
|
|
@@ -164,7 +164,7 @@ Name | Type | Description | Notes
|
|
|
164
164
|
|
|
165
165
|
```ruby
|
|
166
166
|
# load the gem
|
|
167
|
-
require '
|
|
167
|
+
require 'openapi_client'
|
|
168
168
|
# setup authorization
|
|
169
169
|
OpenapiClient.configure do |config|
|
|
170
170
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -191,7 +191,7 @@ Name | Type | Description | Notes
|
|
|
191
191
|
|
|
192
192
|
### Return type
|
|
193
193
|
|
|
194
|
-
[**
|
|
194
|
+
[**Address**](Address.md)
|
|
195
195
|
|
|
196
196
|
### Authorization
|
|
197
197
|
|
data/docs/AuthenticationApi.md
CHANGED
|
@@ -18,7 +18,7 @@ Method | HTTP request | Description
|
|
|
18
18
|
|
|
19
19
|
```ruby
|
|
20
20
|
# load the gem
|
|
21
|
-
require '
|
|
21
|
+
require 'openapi_client'
|
|
22
22
|
|
|
23
23
|
api_instance = OpenapiClient::AuthenticationApi.new
|
|
24
24
|
authentication = OpenapiClient::Authentication.new # Authentication |
|
data/docs/AutoSDEProjectApi.md
CHANGED
|
@@ -21,7 +21,7 @@ Method | HTTP request | Description
|
|
|
21
21
|
|
|
22
22
|
```ruby
|
|
23
23
|
# load the gem
|
|
24
|
-
require '
|
|
24
|
+
require 'openapi_client'
|
|
25
25
|
# setup authorization
|
|
26
26
|
OpenapiClient.configure do |config|
|
|
27
27
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -66,7 +66,7 @@ This endpoint does not need any parameter.
|
|
|
66
66
|
|
|
67
67
|
```ruby
|
|
68
68
|
# load the gem
|
|
69
|
-
require '
|
|
69
|
+
require 'openapi_client'
|
|
70
70
|
# setup authorization
|
|
71
71
|
OpenapiClient.configure do |config|
|
|
72
72
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -115,7 +115,7 @@ Name | Type | Description | Notes
|
|
|
115
115
|
|
|
116
116
|
```ruby
|
|
117
117
|
# load the gem
|
|
118
|
-
require '
|
|
118
|
+
require 'openapi_client'
|
|
119
119
|
# setup authorization
|
|
120
120
|
OpenapiClient.configure do |config|
|
|
121
121
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -156,7 +156,7 @@ Name | Type | Description | Notes
|
|
|
156
156
|
|
|
157
157
|
## autosde_projects_post
|
|
158
158
|
|
|
159
|
-
>
|
|
159
|
+
> AutoSDEProject autosde_projects_post(auto_sde_project)
|
|
160
160
|
|
|
161
161
|
|
|
162
162
|
|
|
@@ -164,7 +164,7 @@ Name | Type | Description | Notes
|
|
|
164
164
|
|
|
165
165
|
```ruby
|
|
166
166
|
# load the gem
|
|
167
|
-
require '
|
|
167
|
+
require 'openapi_client'
|
|
168
168
|
# setup authorization
|
|
169
169
|
OpenapiClient.configure do |config|
|
|
170
170
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -191,7 +191,7 @@ Name | Type | Description | Notes
|
|
|
191
191
|
|
|
192
192
|
### Return type
|
|
193
193
|
|
|
194
|
-
[**
|
|
194
|
+
[**AutoSDEProject**](AutoSDEProject.md)
|
|
195
195
|
|
|
196
196
|
### Authorization
|
|
197
197
|
|
data/docs/AutoSDERoleApi.md
CHANGED
|
@@ -21,7 +21,7 @@ Method | HTTP request | Description
|
|
|
21
21
|
|
|
22
22
|
```ruby
|
|
23
23
|
# load the gem
|
|
24
|
-
require '
|
|
24
|
+
require 'openapi_client'
|
|
25
25
|
# setup authorization
|
|
26
26
|
OpenapiClient.configure do |config|
|
|
27
27
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -66,7 +66,7 @@ This endpoint does not need any parameter.
|
|
|
66
66
|
|
|
67
67
|
```ruby
|
|
68
68
|
# load the gem
|
|
69
|
-
require '
|
|
69
|
+
require 'openapi_client'
|
|
70
70
|
# setup authorization
|
|
71
71
|
OpenapiClient.configure do |config|
|
|
72
72
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -115,7 +115,7 @@ Name | Type | Description | Notes
|
|
|
115
115
|
|
|
116
116
|
```ruby
|
|
117
117
|
# load the gem
|
|
118
|
-
require '
|
|
118
|
+
require 'openapi_client'
|
|
119
119
|
# setup authorization
|
|
120
120
|
OpenapiClient.configure do |config|
|
|
121
121
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -156,7 +156,7 @@ Name | Type | Description | Notes
|
|
|
156
156
|
|
|
157
157
|
## autosde_roles_post
|
|
158
158
|
|
|
159
|
-
>
|
|
159
|
+
> AutoSDERole autosde_roles_post(auto_sde_role)
|
|
160
160
|
|
|
161
161
|
|
|
162
162
|
|
|
@@ -164,7 +164,7 @@ Name | Type | Description | Notes
|
|
|
164
164
|
|
|
165
165
|
```ruby
|
|
166
166
|
# load the gem
|
|
167
|
-
require '
|
|
167
|
+
require 'openapi_client'
|
|
168
168
|
# setup authorization
|
|
169
169
|
OpenapiClient.configure do |config|
|
|
170
170
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -191,7 +191,7 @@ Name | Type | Description | Notes
|
|
|
191
191
|
|
|
192
192
|
### Return type
|
|
193
193
|
|
|
194
|
-
[**
|
|
194
|
+
[**AutoSDERole**](AutoSDERole.md)
|
|
195
195
|
|
|
196
196
|
### Authorization
|
|
197
197
|
|
|
@@ -21,7 +21,7 @@ Method | HTTP request | Description
|
|
|
21
21
|
|
|
22
22
|
```ruby
|
|
23
23
|
# load the gem
|
|
24
|
-
require '
|
|
24
|
+
require 'openapi_client'
|
|
25
25
|
# setup authorization
|
|
26
26
|
OpenapiClient.configure do |config|
|
|
27
27
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -66,7 +66,7 @@ This endpoint does not need any parameter.
|
|
|
66
66
|
|
|
67
67
|
```ruby
|
|
68
68
|
# load the gem
|
|
69
|
-
require '
|
|
69
|
+
require 'openapi_client'
|
|
70
70
|
# setup authorization
|
|
71
71
|
OpenapiClient.configure do |config|
|
|
72
72
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -115,7 +115,7 @@ Name | Type | Description | Notes
|
|
|
115
115
|
|
|
116
116
|
```ruby
|
|
117
117
|
# load the gem
|
|
118
|
-
require '
|
|
118
|
+
require 'openapi_client'
|
|
119
119
|
# setup authorization
|
|
120
120
|
OpenapiClient.configure do |config|
|
|
121
121
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -156,7 +156,7 @@ Name | Type | Description | Notes
|
|
|
156
156
|
|
|
157
157
|
## capability_translations_post
|
|
158
158
|
|
|
159
|
-
>
|
|
159
|
+
> CapabilityTranslation capability_translations_post(capability_translation_create)
|
|
160
160
|
|
|
161
161
|
|
|
162
162
|
|
|
@@ -164,7 +164,7 @@ Name | Type | Description | Notes
|
|
|
164
164
|
|
|
165
165
|
```ruby
|
|
166
166
|
# load the gem
|
|
167
|
-
require '
|
|
167
|
+
require 'openapi_client'
|
|
168
168
|
# setup authorization
|
|
169
169
|
OpenapiClient.configure do |config|
|
|
170
170
|
# Configure Bearer authorization: bearerAuth
|
|
@@ -191,7 +191,7 @@ Name | Type | Description | Notes
|
|
|
191
191
|
|
|
192
192
|
### Return type
|
|
193
193
|
|
|
194
|
-
[**
|
|
194
|
+
[**CapabilityTranslation**](CapabilityTranslation.md)
|
|
195
195
|
|
|
196
196
|
### Authorization
|
|
197
197
|
|