autosde_openapi_client 1.0.44 → 1.0.48

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.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +58 -46
  3. data/docs/AbstractCapabilityApi.md +4 -4
  4. data/docs/AccountApi.md +2 -2
  5. data/docs/AddressApi.md +2 -2
  6. data/docs/AutoSDEProjectApi.md +4 -4
  7. data/docs/AutoSDERoleApi.md +4 -4
  8. data/docs/CapabilityTranslationApi.md +2 -2
  9. data/docs/HostApi.md +2 -2
  10. data/docs/HostCluster.md +32 -0
  11. data/docs/HostClusterApi.md +276 -0
  12. data/docs/HostClusterCreate.md +28 -0
  13. data/docs/HostClusterMembership.md +24 -0
  14. data/docs/HostClusterMembershipApi.md +276 -0
  15. data/docs/HostVolumeConnectionApi.md +2 -2
  16. data/docs/NativeCapabilityApi.md +2 -2
  17. data/docs/ProfileApi.md +4 -4
  18. data/docs/ProvisioningStrategyApi.md +2 -2
  19. data/docs/ServiceApi.md +2 -2
  20. data/docs/ServiceResourceAttachmentApi.md +2 -2
  21. data/docs/SnapshotApi.md +2 -2
  22. data/docs/StorageResourceApi.md +2 -2
  23. data/docs/StorageSystemApi.md +8 -8
  24. data/docs/StorageSystemUpdate.md +24 -0
  25. data/docs/SystemTypeApi.md +2 -2
  26. data/docs/VolumeApi.md +2 -2
  27. data/docs/VolumeSafeDeleteApi.md +2 -2
  28. data/lib/autosde_openapi_client/api/abstract_capability_api.rb +4 -4
  29. data/lib/autosde_openapi_client/api/account_api.rb +2 -2
  30. data/lib/autosde_openapi_client/api/address_api.rb +2 -2
  31. data/lib/autosde_openapi_client/api/auto_sde_project_api.rb +4 -4
  32. data/lib/autosde_openapi_client/api/auto_sde_role_api.rb +4 -4
  33. data/lib/autosde_openapi_client/api/capability_translation_api.rb +2 -2
  34. data/lib/autosde_openapi_client/api/host_api.rb +2 -2
  35. data/lib/autosde_openapi_client/api/host_cluster_api.rb +254 -0
  36. data/lib/autosde_openapi_client/api/host_cluster_membership_api.rb +254 -0
  37. data/lib/autosde_openapi_client/api/host_volume_connection_api.rb +2 -2
  38. data/lib/autosde_openapi_client/api/native_capability_api.rb +2 -2
  39. data/lib/autosde_openapi_client/api/profile_api.rb +4 -4
  40. data/lib/autosde_openapi_client/api/provisioning_strategy_api.rb +2 -2
  41. data/lib/autosde_openapi_client/api/service_api.rb +2 -2
  42. data/lib/autosde_openapi_client/api/service_resource_attachment_api.rb +2 -2
  43. data/lib/autosde_openapi_client/api/snapshot_api.rb +2 -2
  44. data/lib/autosde_openapi_client/api/storage_resource_api.rb +2 -2
  45. data/lib/autosde_openapi_client/api/storage_system_api.rb +11 -11
  46. data/lib/autosde_openapi_client/api/system_type_api.rb +2 -2
  47. data/lib/autosde_openapi_client/api/volume_api.rb +2 -2
  48. data/lib/autosde_openapi_client/api/volume_safe_delete_api.rb +2 -2
  49. data/lib/autosde_openapi_client/models/abstract_capability.rb +1 -1
  50. data/lib/autosde_openapi_client/models/host_cluster.rb +388 -0
  51. data/lib/autosde_openapi_client/models/host_cluster_create.rb +329 -0
  52. data/lib/autosde_openapi_client/models/host_cluster_membership.rb +287 -0
  53. data/lib/autosde_openapi_client/models/storage_system_update.rb +265 -0
  54. data/lib/autosde_openapi_client/version.rb +2 -2
  55. data/lib/autosde_openapi_client.rb +6 -0
  56. data/spec/api/host_cluster_api_spec.rb +74 -0
  57. data/spec/api/host_cluster_membership_api_spec.rb +74 -0
  58. data/spec/api/storage_system_api_spec.rb +1 -1
  59. data/spec/models/host_cluster_create_spec.rb +64 -0
  60. data/spec/models/host_cluster_membership_spec.rb +56 -0
  61. data/spec/models/host_cluster_spec.rb +80 -0
  62. data/spec/models/storage_system_update_spec.rb +52 -0
  63. metadata +81 -57
@@ -0,0 +1,28 @@
1
+ # AutosdeOpenapiClient::HostClusterCreate
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **name** | **String** | name | [optional] |
8
+ | **owner_id** | **String** | owner_id | [optional] |
9
+ | **owner_name** | **String** | owner_name | [optional] |
10
+ | **protocol** | **String** | protocol | [optional] |
11
+ | **status** | **String** | status | [optional] |
12
+ | **storage_system** | [**StorageSystem**](StorageSystem.md) | | [optional] |
13
+
14
+ ## Example
15
+
16
+ ```ruby
17
+ require 'autosde_openapi_client'
18
+
19
+ instance = AutosdeOpenapiClient::HostClusterCreate.new(
20
+ name: null,
21
+ owner_id: null,
22
+ owner_name: null,
23
+ protocol: null,
24
+ status: null,
25
+ storage_system: null
26
+ )
27
+ ```
28
+
@@ -0,0 +1,24 @@
1
+ # AutosdeOpenapiClient::HostClusterMembership
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **cluster** | [**HostCluster**](HostCluster.md) | | [optional] |
8
+ | **component_state** | **String** | component_state | [optional] |
9
+ | **host** | [**StorageHost**](StorageHost.md) | | [optional] |
10
+ | **uuid** | **String** | uuid | [optional] |
11
+
12
+ ## Example
13
+
14
+ ```ruby
15
+ require 'autosde_openapi_client'
16
+
17
+ instance = AutosdeOpenapiClient::HostClusterMembership.new(
18
+ cluster: null,
19
+ component_state: null,
20
+ host: null,
21
+ uuid: null
22
+ )
23
+ ```
24
+
@@ -0,0 +1,276 @@
1
+ # AutosdeOpenapiClient::HostClusterMembershipApi
2
+
3
+ All URIs are relative to *http://localhost:9000/site-manager/api/v1/engine*
4
+
5
+ | Method | HTTP request | Description |
6
+ | ------ | ------------ | ----------- |
7
+ | [**host_cluster_membership_get**](HostClusterMembershipApi.md#host_cluster_membership_get) | **GET** /host-cluster-membership | |
8
+ | [**host_cluster_membership_pk_delete**](HostClusterMembershipApi.md#host_cluster_membership_pk_delete) | **DELETE** /host-cluster-membership/{pk} | |
9
+ | [**host_cluster_membership_pk_get**](HostClusterMembershipApi.md#host_cluster_membership_pk_get) | **GET** /host-cluster-membership/{pk} | |
10
+ | [**host_cluster_membership_post**](HostClusterMembershipApi.md#host_cluster_membership_post) | **POST** /host-cluster-membership | |
11
+
12
+
13
+ ## host_cluster_membership_get
14
+
15
+ > <Array<HostClusterMembership>> host_cluster_membership_get
16
+
17
+
18
+
19
+ ### Examples
20
+
21
+ ```ruby
22
+ require 'time'
23
+ require 'autosde_openapi_client'
24
+ # setup authorization
25
+ AutosdeOpenapiClient.configure do |config|
26
+ # Configure Bearer authorization: bearerAuth
27
+ config.access_token = 'YOUR_BEARER_TOKEN'
28
+ end
29
+
30
+ api_instance = AutosdeOpenapiClient::HostClusterMembershipApi.new
31
+
32
+ begin
33
+
34
+ result = api_instance.host_cluster_membership_get
35
+ p result
36
+ rescue AutosdeOpenapiClient::ApiError => e
37
+ puts "Error when calling HostClusterMembershipApi->host_cluster_membership_get: #{e}"
38
+ end
39
+ ```
40
+
41
+ #### Using the host_cluster_membership_get_with_http_info variant
42
+
43
+ This returns an Array which contains the response data, status code and headers.
44
+
45
+ > <Array(<Array<HostClusterMembership>>, Integer, Hash)> host_cluster_membership_get_with_http_info
46
+
47
+ ```ruby
48
+ begin
49
+
50
+ data, status_code, headers = api_instance.host_cluster_membership_get_with_http_info
51
+ p status_code # => 2xx
52
+ p headers # => { ... }
53
+ p data # => <Array<HostClusterMembership>>
54
+ rescue AutosdeOpenapiClient::ApiError => e
55
+ puts "Error when calling HostClusterMembershipApi->host_cluster_membership_get_with_http_info: #{e}"
56
+ end
57
+ ```
58
+
59
+ ### Parameters
60
+
61
+ This endpoint does not need any parameter.
62
+
63
+ ### Return type
64
+
65
+ [**Array&lt;HostClusterMembership&gt;**](HostClusterMembership.md)
66
+
67
+ ### Authorization
68
+
69
+ [bearerAuth](../README.md#bearerAuth)
70
+
71
+ ### HTTP request headers
72
+
73
+ - **Content-Type**: Not defined
74
+ - **Accept**: */*
75
+
76
+
77
+ ## host_cluster_membership_pk_delete
78
+
79
+ > <Array<HostClusterMembership>> host_cluster_membership_pk_delete(pk)
80
+
81
+
82
+
83
+ ### Examples
84
+
85
+ ```ruby
86
+ require 'time'
87
+ require 'autosde_openapi_client'
88
+ # setup authorization
89
+ AutosdeOpenapiClient.configure do |config|
90
+ # Configure Bearer authorization: bearerAuth
91
+ config.access_token = 'YOUR_BEARER_TOKEN'
92
+ end
93
+
94
+ api_instance = AutosdeOpenapiClient::HostClusterMembershipApi.new
95
+ pk = 56 # Integer |
96
+
97
+ begin
98
+
99
+ result = api_instance.host_cluster_membership_pk_delete(pk)
100
+ p result
101
+ rescue AutosdeOpenapiClient::ApiError => e
102
+ puts "Error when calling HostClusterMembershipApi->host_cluster_membership_pk_delete: #{e}"
103
+ end
104
+ ```
105
+
106
+ #### Using the host_cluster_membership_pk_delete_with_http_info variant
107
+
108
+ This returns an Array which contains the response data, status code and headers.
109
+
110
+ > <Array(<Array<HostClusterMembership>>, Integer, Hash)> host_cluster_membership_pk_delete_with_http_info(pk)
111
+
112
+ ```ruby
113
+ begin
114
+
115
+ data, status_code, headers = api_instance.host_cluster_membership_pk_delete_with_http_info(pk)
116
+ p status_code # => 2xx
117
+ p headers # => { ... }
118
+ p data # => <Array<HostClusterMembership>>
119
+ rescue AutosdeOpenapiClient::ApiError => e
120
+ puts "Error when calling HostClusterMembershipApi->host_cluster_membership_pk_delete_with_http_info: #{e}"
121
+ end
122
+ ```
123
+
124
+ ### Parameters
125
+
126
+ | Name | Type | Description | Notes |
127
+ | ---- | ---- | ----------- | ----- |
128
+ | **pk** | **Integer** | | |
129
+
130
+ ### Return type
131
+
132
+ [**Array&lt;HostClusterMembership&gt;**](HostClusterMembership.md)
133
+
134
+ ### Authorization
135
+
136
+ [bearerAuth](../README.md#bearerAuth)
137
+
138
+ ### HTTP request headers
139
+
140
+ - **Content-Type**: Not defined
141
+ - **Accept**: */*
142
+
143
+
144
+ ## host_cluster_membership_pk_get
145
+
146
+ > <Array<HostClusterMembership>> host_cluster_membership_pk_get(pk)
147
+
148
+
149
+
150
+ ### Examples
151
+
152
+ ```ruby
153
+ require 'time'
154
+ require 'autosde_openapi_client'
155
+ # setup authorization
156
+ AutosdeOpenapiClient.configure do |config|
157
+ # Configure Bearer authorization: bearerAuth
158
+ config.access_token = 'YOUR_BEARER_TOKEN'
159
+ end
160
+
161
+ api_instance = AutosdeOpenapiClient::HostClusterMembershipApi.new
162
+ pk = 56 # Integer |
163
+
164
+ begin
165
+
166
+ result = api_instance.host_cluster_membership_pk_get(pk)
167
+ p result
168
+ rescue AutosdeOpenapiClient::ApiError => e
169
+ puts "Error when calling HostClusterMembershipApi->host_cluster_membership_pk_get: #{e}"
170
+ end
171
+ ```
172
+
173
+ #### Using the host_cluster_membership_pk_get_with_http_info variant
174
+
175
+ This returns an Array which contains the response data, status code and headers.
176
+
177
+ > <Array(<Array<HostClusterMembership>>, Integer, Hash)> host_cluster_membership_pk_get_with_http_info(pk)
178
+
179
+ ```ruby
180
+ begin
181
+
182
+ data, status_code, headers = api_instance.host_cluster_membership_pk_get_with_http_info(pk)
183
+ p status_code # => 2xx
184
+ p headers # => { ... }
185
+ p data # => <Array<HostClusterMembership>>
186
+ rescue AutosdeOpenapiClient::ApiError => e
187
+ puts "Error when calling HostClusterMembershipApi->host_cluster_membership_pk_get_with_http_info: #{e}"
188
+ end
189
+ ```
190
+
191
+ ### Parameters
192
+
193
+ | Name | Type | Description | Notes |
194
+ | ---- | ---- | ----------- | ----- |
195
+ | **pk** | **Integer** | | |
196
+
197
+ ### Return type
198
+
199
+ [**Array&lt;HostClusterMembership&gt;**](HostClusterMembership.md)
200
+
201
+ ### Authorization
202
+
203
+ [bearerAuth](../README.md#bearerAuth)
204
+
205
+ ### HTTP request headers
206
+
207
+ - **Content-Type**: Not defined
208
+ - **Accept**: */*
209
+
210
+
211
+ ## host_cluster_membership_post
212
+
213
+ > <HostClusterMembership> host_cluster_membership_post(host_cluster_membership)
214
+
215
+
216
+
217
+ ### Examples
218
+
219
+ ```ruby
220
+ require 'time'
221
+ require 'autosde_openapi_client'
222
+ # setup authorization
223
+ AutosdeOpenapiClient.configure do |config|
224
+ # Configure Bearer authorization: bearerAuth
225
+ config.access_token = 'YOUR_BEARER_TOKEN'
226
+ end
227
+
228
+ api_instance = AutosdeOpenapiClient::HostClusterMembershipApi.new
229
+ host_cluster_membership = AutosdeOpenapiClient::HostClusterMembership.new # HostClusterMembership |
230
+
231
+ begin
232
+
233
+ result = api_instance.host_cluster_membership_post(host_cluster_membership)
234
+ p result
235
+ rescue AutosdeOpenapiClient::ApiError => e
236
+ puts "Error when calling HostClusterMembershipApi->host_cluster_membership_post: #{e}"
237
+ end
238
+ ```
239
+
240
+ #### Using the host_cluster_membership_post_with_http_info variant
241
+
242
+ This returns an Array which contains the response data, status code and headers.
243
+
244
+ > <Array(<HostClusterMembership>, Integer, Hash)> host_cluster_membership_post_with_http_info(host_cluster_membership)
245
+
246
+ ```ruby
247
+ begin
248
+
249
+ data, status_code, headers = api_instance.host_cluster_membership_post_with_http_info(host_cluster_membership)
250
+ p status_code # => 2xx
251
+ p headers # => { ... }
252
+ p data # => <HostClusterMembership>
253
+ rescue AutosdeOpenapiClient::ApiError => e
254
+ puts "Error when calling HostClusterMembershipApi->host_cluster_membership_post_with_http_info: #{e}"
255
+ end
256
+ ```
257
+
258
+ ### Parameters
259
+
260
+ | Name | Type | Description | Notes |
261
+ | ---- | ---- | ----------- | ----- |
262
+ | **host_cluster_membership** | [**HostClusterMembership**](HostClusterMembership.md) | | |
263
+
264
+ ### Return type
265
+
266
+ [**HostClusterMembership**](HostClusterMembership.md)
267
+
268
+ ### Authorization
269
+
270
+ [bearerAuth](../README.md#bearerAuth)
271
+
272
+ ### HTTP request headers
273
+
274
+ - **Content-Type**: application/json
275
+ - **Accept**: */*
276
+
@@ -4,10 +4,10 @@ All URIs are relative to *http://localhost:9000/site-manager/api/v1/engine*
4
4
 
5
5
  | Method | HTTP request | Description |
6
6
  | ------ | ------------ | ----------- |
7
- | [**host_volume_connection_get**](HostVolumeConnectionApi.md#host_volume_connection_get) | **GET** /host-volume-connection/ | |
7
+ | [**host_volume_connection_get**](HostVolumeConnectionApi.md#host_volume_connection_get) | **GET** /host-volume-connection | |
8
8
  | [**host_volume_connection_pk_delete**](HostVolumeConnectionApi.md#host_volume_connection_pk_delete) | **DELETE** /host-volume-connection/{pk} | |
9
9
  | [**host_volume_connection_pk_get**](HostVolumeConnectionApi.md#host_volume_connection_pk_get) | **GET** /host-volume-connection/{pk} | |
10
- | [**host_volume_connection_post**](HostVolumeConnectionApi.md#host_volume_connection_post) | **POST** /host-volume-connection/ | |
10
+ | [**host_volume_connection_post**](HostVolumeConnectionApi.md#host_volume_connection_post) | **POST** /host-volume-connection | |
11
11
 
12
12
 
13
13
  ## host_volume_connection_get
@@ -4,10 +4,10 @@ All URIs are relative to *http://localhost:9000/site-manager/api/v1/engine*
4
4
 
5
5
  | Method | HTTP request | Description |
6
6
  | ------ | ------------ | ----------- |
7
- | [**native_capabilities_get**](NativeCapabilityApi.md#native_capabilities_get) | **GET** /native-capabilities/ | |
7
+ | [**native_capabilities_get**](NativeCapabilityApi.md#native_capabilities_get) | **GET** /native-capabilities | |
8
8
  | [**native_capabilities_pk_delete**](NativeCapabilityApi.md#native_capabilities_pk_delete) | **DELETE** /native-capabilities/{pk} | |
9
9
  | [**native_capabilities_pk_get**](NativeCapabilityApi.md#native_capabilities_pk_get) | **GET** /native-capabilities/{pk} | |
10
- | [**native_capabilities_post**](NativeCapabilityApi.md#native_capabilities_post) | **POST** /native-capabilities/ | |
10
+ | [**native_capabilities_post**](NativeCapabilityApi.md#native_capabilities_post) | **POST** /native-capabilities | |
11
11
 
12
12
 
13
13
  ## native_capabilities_get
data/docs/ProfileApi.md CHANGED
@@ -4,10 +4,10 @@ All URIs are relative to *http://localhost:9000/site-manager/api/v1/engine*
4
4
 
5
5
  | Method | HTTP request | Description |
6
6
  | ------ | ------------ | ----------- |
7
- | [**profiles_get**](ProfileApi.md#profiles_get) | **GET** /profiles/ | |
8
- | [**profiles_pk_delete**](ProfileApi.md#profiles_pk_delete) | **DELETE** /profiles/{pk}/ | |
9
- | [**profiles_pk_get**](ProfileApi.md#profiles_pk_get) | **GET** /profiles/{pk}/ | |
10
- | [**profiles_post**](ProfileApi.md#profiles_post) | **POST** /profiles/ | |
7
+ | [**profiles_get**](ProfileApi.md#profiles_get) | **GET** /profiles | |
8
+ | [**profiles_pk_delete**](ProfileApi.md#profiles_pk_delete) | **DELETE** /profiles/{pk} | |
9
+ | [**profiles_pk_get**](ProfileApi.md#profiles_pk_get) | **GET** /profiles/{pk} | |
10
+ | [**profiles_post**](ProfileApi.md#profiles_post) | **POST** /profiles | |
11
11
 
12
12
 
13
13
  ## profiles_get
@@ -4,10 +4,10 @@ All URIs are relative to *http://localhost:9000/site-manager/api/v1/engine*
4
4
 
5
5
  | Method | HTTP request | Description |
6
6
  | ------ | ------------ | ----------- |
7
- | [**provisioning_strategy_get**](ProvisioningStrategyApi.md#provisioning_strategy_get) | **GET** /provisioning-strategy/ | |
7
+ | [**provisioning_strategy_get**](ProvisioningStrategyApi.md#provisioning_strategy_get) | **GET** /provisioning-strategy | |
8
8
  | [**provisioning_strategy_pk_delete**](ProvisioningStrategyApi.md#provisioning_strategy_pk_delete) | **DELETE** /provisioning-strategy/{pk} | |
9
9
  | [**provisioning_strategy_pk_get**](ProvisioningStrategyApi.md#provisioning_strategy_pk_get) | **GET** /provisioning-strategy/{pk} | |
10
- | [**provisioning_strategy_post**](ProvisioningStrategyApi.md#provisioning_strategy_post) | **POST** /provisioning-strategy/ | |
10
+ | [**provisioning_strategy_post**](ProvisioningStrategyApi.md#provisioning_strategy_post) | **POST** /provisioning-strategy | |
11
11
 
12
12
 
13
13
  ## provisioning_strategy_get
data/docs/ServiceApi.md CHANGED
@@ -4,11 +4,11 @@ All URIs are relative to *http://localhost:9000/site-manager/api/v1/engine*
4
4
 
5
5
  | Method | HTTP request | Description |
6
6
  | ------ | ------------ | ----------- |
7
- | [**services_get**](ServiceApi.md#services_get) | **GET** /services/ | |
7
+ | [**services_get**](ServiceApi.md#services_get) | **GET** /services | |
8
8
  | [**services_pk_delete**](ServiceApi.md#services_pk_delete) | **DELETE** /services/{pk} | |
9
9
  | [**services_pk_get**](ServiceApi.md#services_pk_get) | **GET** /services/{pk} | |
10
10
  | [**services_pk_put**](ServiceApi.md#services_pk_put) | **PUT** /services/{pk} | |
11
- | [**services_post**](ServiceApi.md#services_post) | **POST** /services/ | |
11
+ | [**services_post**](ServiceApi.md#services_post) | **POST** /services | |
12
12
 
13
13
 
14
14
  ## services_get
@@ -4,10 +4,10 @@ All URIs are relative to *http://localhost:9000/site-manager/api/v1/engine*
4
4
 
5
5
  | Method | HTTP request | Description |
6
6
  | ------ | ------------ | ----------- |
7
- | [**service_resource_attchment_get**](ServiceResourceAttachmentApi.md#service_resource_attchment_get) | **GET** /service-resource-attchment/ | |
7
+ | [**service_resource_attchment_get**](ServiceResourceAttachmentApi.md#service_resource_attchment_get) | **GET** /service-resource-attchment | |
8
8
  | [**service_resource_attchment_pk_delete**](ServiceResourceAttachmentApi.md#service_resource_attchment_pk_delete) | **DELETE** /service-resource-attchment/{pk} | |
9
9
  | [**service_resource_attchment_pk_get**](ServiceResourceAttachmentApi.md#service_resource_attchment_pk_get) | **GET** /service-resource-attchment/{pk} | |
10
- | [**service_resource_attchment_post**](ServiceResourceAttachmentApi.md#service_resource_attchment_post) | **POST** /service-resource-attchment/ | |
10
+ | [**service_resource_attchment_post**](ServiceResourceAttachmentApi.md#service_resource_attchment_post) | **POST** /service-resource-attchment | |
11
11
 
12
12
 
13
13
  ## service_resource_attchment_get
data/docs/SnapshotApi.md CHANGED
@@ -4,10 +4,10 @@ All URIs are relative to *http://localhost:9000/site-manager/api/v1/engine*
4
4
 
5
5
  | Method | HTTP request | Description |
6
6
  | ------ | ------------ | ----------- |
7
- | [**snapshots_get**](SnapshotApi.md#snapshots_get) | **GET** /snapshots/ | |
7
+ | [**snapshots_get**](SnapshotApi.md#snapshots_get) | **GET** /snapshots | |
8
8
  | [**snapshots_pk_delete**](SnapshotApi.md#snapshots_pk_delete) | **DELETE** /snapshots/{pk} | |
9
9
  | [**snapshots_pk_get**](SnapshotApi.md#snapshots_pk_get) | **GET** /snapshots/{pk} | |
10
- | [**snapshots_post**](SnapshotApi.md#snapshots_post) | **POST** /snapshots/ | |
10
+ | [**snapshots_post**](SnapshotApi.md#snapshots_post) | **POST** /snapshots | |
11
11
 
12
12
 
13
13
  ## snapshots_get
@@ -4,11 +4,11 @@ All URIs are relative to *http://localhost:9000/site-manager/api/v1/engine*
4
4
 
5
5
  | Method | HTTP request | Description |
6
6
  | ------ | ------------ | ----------- |
7
- | [**storage_resources_get**](StorageResourceApi.md#storage_resources_get) | **GET** /storage-resources/ | |
7
+ | [**storage_resources_get**](StorageResourceApi.md#storage_resources_get) | **GET** /storage-resources | |
8
8
  | [**storage_resources_pk_delete**](StorageResourceApi.md#storage_resources_pk_delete) | **DELETE** /storage-resources/{pk} | |
9
9
  | [**storage_resources_pk_get**](StorageResourceApi.md#storage_resources_pk_get) | **GET** /storage-resources/{pk} | |
10
10
  | [**storage_resources_pk_put**](StorageResourceApi.md#storage_resources_pk_put) | **PUT** /storage-resources/{pk} | |
11
- | [**storage_resources_post**](StorageResourceApi.md#storage_resources_post) | **POST** /storage-resources/ | |
11
+ | [**storage_resources_post**](StorageResourceApi.md#storage_resources_post) | **POST** /storage-resources | |
12
12
 
13
13
 
14
14
  ## storage_resources_get