autosde_openapi_client 1.2.12 → 1.2.13
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 +6 -0
- data/docs/AbstractCapabilityApi.md +8 -8
- data/docs/AbstractCapabilityResponse.md +20 -0
- data/docs/ServiceAbstractCapabilityValueApi.md +276 -0
- data/docs/ServiceAbstractCapabilityValueResponse.md +22 -0
- data/docs/StorageSystem.md +2 -0
- data/docs/StorageSystemCreate.md +2 -0
- data/docs/StorageSystemUpdate.md +2 -0
- data/lib/autosde_openapi_client/api/abstract_capability_api.rb +6 -6
- data/lib/autosde_openapi_client/api/service_abstract_capability_value_api.rb +254 -0
- data/lib/autosde_openapi_client/models/abstract_capability_response.rb +230 -0
- data/lib/autosde_openapi_client/models/service_abstract_capability_value_response.rb +240 -0
- data/lib/autosde_openapi_client/models/storage_system.rb +10 -1
- data/lib/autosde_openapi_client/models/storage_system_create.rb +10 -1
- data/lib/autosde_openapi_client/models/storage_system_update.rb +10 -1
- data/lib/autosde_openapi_client/version.rb +2 -2
- data/lib/autosde_openapi_client.rb +3 -0
- data/spec/api/abstract_capability_api_spec.rb +2 -2
- data/spec/api/service_abstract_capability_value_api_spec.rb +74 -0
- data/spec/models/abstract_capability_response_spec.rb +40 -0
- data/spec/models/service_abstract_capability_value_response_spec.rb +46 -0
- data/spec/models/storage_system_create_spec.rb +6 -0
- data/spec/models/storage_system_spec.rb +6 -0
- data/spec/models/storage_system_update_spec.rb +6 -0
- metadata +89 -77
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3446c122fa7948656951c6365853460f2f2ca11c58ed346a6fe5b41f75d897fe
|
4
|
+
data.tar.gz: 37515897ce1806b7e8787923364c3ce0ec9f46b92d17e5040b957e6769dc4275
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36ac45325f6b2e02dbd3527012f2cbcf1c611f7cd679a1f8702405f32267d2dac04798874ad573b41bc34589a98ffdbdcfe6c27a6c6987f3b8df02e0b63ebfb8
|
7
|
+
data.tar.gz: 96e9cacff4a71bc612f4f2f44b566151999eb73ec9f1a50f68d868fe62d781e470b5144bbfd506e149f02d309a5cd6351f66db257960778ce9a1600acd3672a7
|
data/README.md
CHANGED
@@ -153,6 +153,10 @@ Class | Method | HTTP request | Description
|
|
153
153
|
*AutosdeOpenapiClient::ServiceApi* | [**services_pk_get**](docs/ServiceApi.md#services_pk_get) | **GET** /services/{pk} |
|
154
154
|
*AutosdeOpenapiClient::ServiceApi* | [**services_pk_put**](docs/ServiceApi.md#services_pk_put) | **PUT** /services/{pk} |
|
155
155
|
*AutosdeOpenapiClient::ServiceApi* | [**services_post**](docs/ServiceApi.md#services_post) | **POST** /services |
|
156
|
+
*AutosdeOpenapiClient::ServiceAbstractCapabilityValueApi* | [**service_abstract_capability_values_get**](docs/ServiceAbstractCapabilityValueApi.md#service_abstract_capability_values_get) | **GET** /service-abstract-capability-values |
|
157
|
+
*AutosdeOpenapiClient::ServiceAbstractCapabilityValueApi* | [**service_abstract_capability_values_pk_delete**](docs/ServiceAbstractCapabilityValueApi.md#service_abstract_capability_values_pk_delete) | **DELETE** /service-abstract-capability-values/{pk} |
|
158
|
+
*AutosdeOpenapiClient::ServiceAbstractCapabilityValueApi* | [**service_abstract_capability_values_pk_get**](docs/ServiceAbstractCapabilityValueApi.md#service_abstract_capability_values_pk_get) | **GET** /service-abstract-capability-values/{pk} |
|
159
|
+
*AutosdeOpenapiClient::ServiceAbstractCapabilityValueApi* | [**service_abstract_capability_values_post**](docs/ServiceAbstractCapabilityValueApi.md#service_abstract_capability_values_post) | **POST** /service-abstract-capability-values |
|
156
160
|
*AutosdeOpenapiClient::ServiceResourceAttachmentApi* | [**service_resource_attachment_get**](docs/ServiceResourceAttachmentApi.md#service_resource_attachment_get) | **GET** /service-resource-attachment |
|
157
161
|
*AutosdeOpenapiClient::ServiceResourceAttachmentApi* | [**service_resource_attachment_pk_delete**](docs/ServiceResourceAttachmentApi.md#service_resource_attachment_pk_delete) | **DELETE** /service-resource-attachment/{pk} |
|
158
162
|
*AutosdeOpenapiClient::ServiceResourceAttachmentApi* | [**service_resource_attachment_pk_get**](docs/ServiceResourceAttachmentApi.md#service_resource_attachment_pk_get) | **GET** /service-resource-attachment/{pk} |
|
@@ -205,6 +209,7 @@ Class | Method | HTTP request | Description
|
|
205
209
|
## Documentation for Models
|
206
210
|
|
207
211
|
- [AutosdeOpenapiClient::AbstractCapability](docs/AbstractCapability.md)
|
212
|
+
- [AutosdeOpenapiClient::AbstractCapabilityResponse](docs/AbstractCapabilityResponse.md)
|
208
213
|
- [AutosdeOpenapiClient::Account](docs/Account.md)
|
209
214
|
- [AutosdeOpenapiClient::AccountPostRequest](docs/AccountPostRequest.md)
|
210
215
|
- [AutosdeOpenapiClient::AccountPostResponse](docs/AccountPostResponse.md)
|
@@ -239,6 +244,7 @@ Class | Method | HTTP request | Description
|
|
239
244
|
- [AutosdeOpenapiClient::RefreshSystem](docs/RefreshSystem.md)
|
240
245
|
- [AutosdeOpenapiClient::Service](docs/Service.md)
|
241
246
|
- [AutosdeOpenapiClient::ServiceAbstractCapabilityValue](docs/ServiceAbstractCapabilityValue.md)
|
247
|
+
- [AutosdeOpenapiClient::ServiceAbstractCapabilityValueResponse](docs/ServiceAbstractCapabilityValueResponse.md)
|
242
248
|
- [AutosdeOpenapiClient::ServiceCreate](docs/ServiceCreate.md)
|
243
249
|
- [AutosdeOpenapiClient::ServiceResourceAttachment](docs/ServiceResourceAttachment.md)
|
244
250
|
- [AutosdeOpenapiClient::Snapshot](docs/Snapshot.md)
|
@@ -12,7 +12,7 @@ All URIs are relative to *http://localhost:9000/site-manager/api/v1/engine*
|
|
12
12
|
|
13
13
|
## abstract_capabilities_get
|
14
14
|
|
15
|
-
> <Array<
|
15
|
+
> <Array<AbstractCapabilityResponse>> abstract_capabilities_get
|
16
16
|
|
17
17
|
|
18
18
|
|
@@ -42,7 +42,7 @@ end
|
|
42
42
|
|
43
43
|
This returns an Array which contains the response data, status code and headers.
|
44
44
|
|
45
|
-
> <Array(<Array<
|
45
|
+
> <Array(<Array<AbstractCapabilityResponse>>, Integer, Hash)> abstract_capabilities_get_with_http_info
|
46
46
|
|
47
47
|
```ruby
|
48
48
|
begin
|
@@ -50,7 +50,7 @@ begin
|
|
50
50
|
data, status_code, headers = api_instance.abstract_capabilities_get_with_http_info
|
51
51
|
p status_code # => 2xx
|
52
52
|
p headers # => { ... }
|
53
|
-
p data # => <Array<
|
53
|
+
p data # => <Array<AbstractCapabilityResponse>>
|
54
54
|
rescue AutosdeOpenapiClient::ApiError => e
|
55
55
|
puts "Error when calling AbstractCapabilityApi->abstract_capabilities_get_with_http_info: #{e}"
|
56
56
|
end
|
@@ -62,7 +62,7 @@ This endpoint does not need any parameter.
|
|
62
62
|
|
63
63
|
### Return type
|
64
64
|
|
65
|
-
[**Array<
|
65
|
+
[**Array<AbstractCapabilityResponse>**](AbstractCapabilityResponse.md)
|
66
66
|
|
67
67
|
### Authorization
|
68
68
|
|
@@ -143,7 +143,7 @@ end
|
|
143
143
|
|
144
144
|
## abstract_capabilities_pk_get
|
145
145
|
|
146
|
-
> <
|
146
|
+
> <AbstractCapabilityResponse> abstract_capabilities_pk_get(pk)
|
147
147
|
|
148
148
|
|
149
149
|
|
@@ -174,7 +174,7 @@ end
|
|
174
174
|
|
175
175
|
This returns an Array which contains the response data, status code and headers.
|
176
176
|
|
177
|
-
> <Array(<
|
177
|
+
> <Array(<AbstractCapabilityResponse>, Integer, Hash)> abstract_capabilities_pk_get_with_http_info(pk)
|
178
178
|
|
179
179
|
```ruby
|
180
180
|
begin
|
@@ -182,7 +182,7 @@ begin
|
|
182
182
|
data, status_code, headers = api_instance.abstract_capabilities_pk_get_with_http_info(pk)
|
183
183
|
p status_code # => 2xx
|
184
184
|
p headers # => { ... }
|
185
|
-
p data # => <
|
185
|
+
p data # => <AbstractCapabilityResponse>
|
186
186
|
rescue AutosdeOpenapiClient::ApiError => e
|
187
187
|
puts "Error when calling AbstractCapabilityApi->abstract_capabilities_pk_get_with_http_info: #{e}"
|
188
188
|
end
|
@@ -196,7 +196,7 @@ end
|
|
196
196
|
|
197
197
|
### Return type
|
198
198
|
|
199
|
-
[**
|
199
|
+
[**AbstractCapabilityResponse**](AbstractCapabilityResponse.md)
|
200
200
|
|
201
201
|
### Authorization
|
202
202
|
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# AutosdeOpenapiClient::AbstractCapabilityResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **name** | **String** | name | [optional] |
|
8
|
+
| **uuid** | **String** | uuid | [optional] |
|
9
|
+
|
10
|
+
## Example
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
require 'autosde_openapi_client'
|
14
|
+
|
15
|
+
instance = AutosdeOpenapiClient::AbstractCapabilityResponse.new(
|
16
|
+
name: null,
|
17
|
+
uuid: null
|
18
|
+
)
|
19
|
+
```
|
20
|
+
|
@@ -0,0 +1,276 @@
|
|
1
|
+
# AutosdeOpenapiClient::ServiceAbstractCapabilityValueApi
|
2
|
+
|
3
|
+
All URIs are relative to *http://localhost:9000/site-manager/api/v1/engine*
|
4
|
+
|
5
|
+
| Method | HTTP request | Description |
|
6
|
+
| ------ | ------------ | ----------- |
|
7
|
+
| [**service_abstract_capability_values_get**](ServiceAbstractCapabilityValueApi.md#service_abstract_capability_values_get) | **GET** /service-abstract-capability-values | |
|
8
|
+
| [**service_abstract_capability_values_pk_delete**](ServiceAbstractCapabilityValueApi.md#service_abstract_capability_values_pk_delete) | **DELETE** /service-abstract-capability-values/{pk} | |
|
9
|
+
| [**service_abstract_capability_values_pk_get**](ServiceAbstractCapabilityValueApi.md#service_abstract_capability_values_pk_get) | **GET** /service-abstract-capability-values/{pk} | |
|
10
|
+
| [**service_abstract_capability_values_post**](ServiceAbstractCapabilityValueApi.md#service_abstract_capability_values_post) | **POST** /service-abstract-capability-values | |
|
11
|
+
|
12
|
+
|
13
|
+
## service_abstract_capability_values_get
|
14
|
+
|
15
|
+
> <Array<ServiceAbstractCapabilityValueResponse>> service_abstract_capability_values_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::ServiceAbstractCapabilityValueApi.new
|
31
|
+
|
32
|
+
begin
|
33
|
+
|
34
|
+
result = api_instance.service_abstract_capability_values_get
|
35
|
+
p result
|
36
|
+
rescue AutosdeOpenapiClient::ApiError => e
|
37
|
+
puts "Error when calling ServiceAbstractCapabilityValueApi->service_abstract_capability_values_get: #{e}"
|
38
|
+
end
|
39
|
+
```
|
40
|
+
|
41
|
+
#### Using the service_abstract_capability_values_get_with_http_info variant
|
42
|
+
|
43
|
+
This returns an Array which contains the response data, status code and headers.
|
44
|
+
|
45
|
+
> <Array(<Array<ServiceAbstractCapabilityValueResponse>>, Integer, Hash)> service_abstract_capability_values_get_with_http_info
|
46
|
+
|
47
|
+
```ruby
|
48
|
+
begin
|
49
|
+
|
50
|
+
data, status_code, headers = api_instance.service_abstract_capability_values_get_with_http_info
|
51
|
+
p status_code # => 2xx
|
52
|
+
p headers # => { ... }
|
53
|
+
p data # => <Array<ServiceAbstractCapabilityValueResponse>>
|
54
|
+
rescue AutosdeOpenapiClient::ApiError => e
|
55
|
+
puts "Error when calling ServiceAbstractCapabilityValueApi->service_abstract_capability_values_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<ServiceAbstractCapabilityValueResponse>**](ServiceAbstractCapabilityValueResponse.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
|
+
## service_abstract_capability_values_pk_delete
|
78
|
+
|
79
|
+
> <ServiceAbstractCapabilityValue> service_abstract_capability_values_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::ServiceAbstractCapabilityValueApi.new
|
95
|
+
pk = 56 # Integer |
|
96
|
+
|
97
|
+
begin
|
98
|
+
|
99
|
+
result = api_instance.service_abstract_capability_values_pk_delete(pk)
|
100
|
+
p result
|
101
|
+
rescue AutosdeOpenapiClient::ApiError => e
|
102
|
+
puts "Error when calling ServiceAbstractCapabilityValueApi->service_abstract_capability_values_pk_delete: #{e}"
|
103
|
+
end
|
104
|
+
```
|
105
|
+
|
106
|
+
#### Using the service_abstract_capability_values_pk_delete_with_http_info variant
|
107
|
+
|
108
|
+
This returns an Array which contains the response data, status code and headers.
|
109
|
+
|
110
|
+
> <Array(<ServiceAbstractCapabilityValue>, Integer, Hash)> service_abstract_capability_values_pk_delete_with_http_info(pk)
|
111
|
+
|
112
|
+
```ruby
|
113
|
+
begin
|
114
|
+
|
115
|
+
data, status_code, headers = api_instance.service_abstract_capability_values_pk_delete_with_http_info(pk)
|
116
|
+
p status_code # => 2xx
|
117
|
+
p headers # => { ... }
|
118
|
+
p data # => <ServiceAbstractCapabilityValue>
|
119
|
+
rescue AutosdeOpenapiClient::ApiError => e
|
120
|
+
puts "Error when calling ServiceAbstractCapabilityValueApi->service_abstract_capability_values_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
|
+
[**ServiceAbstractCapabilityValue**](ServiceAbstractCapabilityValue.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
|
+
## service_abstract_capability_values_pk_get
|
145
|
+
|
146
|
+
> <ServiceAbstractCapabilityValueResponse> service_abstract_capability_values_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::ServiceAbstractCapabilityValueApi.new
|
162
|
+
pk = 56 # Integer |
|
163
|
+
|
164
|
+
begin
|
165
|
+
|
166
|
+
result = api_instance.service_abstract_capability_values_pk_get(pk)
|
167
|
+
p result
|
168
|
+
rescue AutosdeOpenapiClient::ApiError => e
|
169
|
+
puts "Error when calling ServiceAbstractCapabilityValueApi->service_abstract_capability_values_pk_get: #{e}"
|
170
|
+
end
|
171
|
+
```
|
172
|
+
|
173
|
+
#### Using the service_abstract_capability_values_pk_get_with_http_info variant
|
174
|
+
|
175
|
+
This returns an Array which contains the response data, status code and headers.
|
176
|
+
|
177
|
+
> <Array(<ServiceAbstractCapabilityValueResponse>, Integer, Hash)> service_abstract_capability_values_pk_get_with_http_info(pk)
|
178
|
+
|
179
|
+
```ruby
|
180
|
+
begin
|
181
|
+
|
182
|
+
data, status_code, headers = api_instance.service_abstract_capability_values_pk_get_with_http_info(pk)
|
183
|
+
p status_code # => 2xx
|
184
|
+
p headers # => { ... }
|
185
|
+
p data # => <ServiceAbstractCapabilityValueResponse>
|
186
|
+
rescue AutosdeOpenapiClient::ApiError => e
|
187
|
+
puts "Error when calling ServiceAbstractCapabilityValueApi->service_abstract_capability_values_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
|
+
[**ServiceAbstractCapabilityValueResponse**](ServiceAbstractCapabilityValueResponse.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
|
+
## service_abstract_capability_values_post
|
212
|
+
|
213
|
+
> <ServiceAbstractCapabilityValue> service_abstract_capability_values_post(service_abstract_capability_value)
|
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::ServiceAbstractCapabilityValueApi.new
|
229
|
+
service_abstract_capability_value = AutosdeOpenapiClient::ServiceAbstractCapabilityValue.new # ServiceAbstractCapabilityValue |
|
230
|
+
|
231
|
+
begin
|
232
|
+
|
233
|
+
result = api_instance.service_abstract_capability_values_post(service_abstract_capability_value)
|
234
|
+
p result
|
235
|
+
rescue AutosdeOpenapiClient::ApiError => e
|
236
|
+
puts "Error when calling ServiceAbstractCapabilityValueApi->service_abstract_capability_values_post: #{e}"
|
237
|
+
end
|
238
|
+
```
|
239
|
+
|
240
|
+
#### Using the service_abstract_capability_values_post_with_http_info variant
|
241
|
+
|
242
|
+
This returns an Array which contains the response data, status code and headers.
|
243
|
+
|
244
|
+
> <Array(<ServiceAbstractCapabilityValue>, Integer, Hash)> service_abstract_capability_values_post_with_http_info(service_abstract_capability_value)
|
245
|
+
|
246
|
+
```ruby
|
247
|
+
begin
|
248
|
+
|
249
|
+
data, status_code, headers = api_instance.service_abstract_capability_values_post_with_http_info(service_abstract_capability_value)
|
250
|
+
p status_code # => 2xx
|
251
|
+
p headers # => { ... }
|
252
|
+
p data # => <ServiceAbstractCapabilityValue>
|
253
|
+
rescue AutosdeOpenapiClient::ApiError => e
|
254
|
+
puts "Error when calling ServiceAbstractCapabilityValueApi->service_abstract_capability_values_post_with_http_info: #{e}"
|
255
|
+
end
|
256
|
+
```
|
257
|
+
|
258
|
+
### Parameters
|
259
|
+
|
260
|
+
| Name | Type | Description | Notes |
|
261
|
+
| ---- | ---- | ----------- | ----- |
|
262
|
+
| **service_abstract_capability_value** | [**ServiceAbstractCapabilityValue**](ServiceAbstractCapabilityValue.md) | | |
|
263
|
+
|
264
|
+
### Return type
|
265
|
+
|
266
|
+
[**ServiceAbstractCapabilityValue**](ServiceAbstractCapabilityValue.md)
|
267
|
+
|
268
|
+
### Authorization
|
269
|
+
|
270
|
+
[bearerAuth](../README.md#bearerAuth)
|
271
|
+
|
272
|
+
### HTTP request headers
|
273
|
+
|
274
|
+
- **Content-Type**: application/json
|
275
|
+
- **Accept**: */*
|
276
|
+
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# AutosdeOpenapiClient::ServiceAbstractCapabilityValueResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **abstract_capability** | **String** | !!uuid of abstract_capability | [optional] |
|
8
|
+
| **uuid** | **String** | uuid | [optional] |
|
9
|
+
| **value** | **String** | value | [optional] |
|
10
|
+
|
11
|
+
## Example
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
require 'autosde_openapi_client'
|
15
|
+
|
16
|
+
instance = AutosdeOpenapiClient::ServiceAbstractCapabilityValueResponse.new(
|
17
|
+
abstract_capability: null,
|
18
|
+
uuid: null,
|
19
|
+
value: null
|
20
|
+
)
|
21
|
+
```
|
22
|
+
|
data/docs/StorageSystem.md
CHANGED
@@ -6,6 +6,7 @@
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
7
|
| **auto_refresh** | **Boolean** | auto_refresh | [optional][default to true] |
|
8
8
|
| **component_state** | **String** | component_state | [optional] |
|
9
|
+
| **enabled_capability_values** | [**ServiceAbstractCapabilityValue**](ServiceAbstractCapabilityValue.md) | | [optional] |
|
9
10
|
| **management_ip** | **String** | management_ip | [optional] |
|
10
11
|
| **name** | **String** | name | [optional] |
|
11
12
|
| **status** | **String** | status | [optional] |
|
@@ -22,6 +23,7 @@ require 'autosde_openapi_client'
|
|
22
23
|
instance = AutosdeOpenapiClient::StorageSystem.new(
|
23
24
|
auto_refresh: null,
|
24
25
|
component_state: null,
|
26
|
+
enabled_capability_values: null,
|
25
27
|
management_ip: null,
|
26
28
|
name: null,
|
27
29
|
status: null,
|
data/docs/StorageSystemCreate.md
CHANGED
@@ -8,6 +8,7 @@
|
|
8
8
|
| **chap_name** | **String** | chap_name | [optional] |
|
9
9
|
| **chap_secret** | **String** | chap_secret | [optional] |
|
10
10
|
| **component_state** | **String** | component_state | [optional] |
|
11
|
+
| **enabled_capability_values** | [**ServiceAbstractCapabilityValue**](ServiceAbstractCapabilityValue.md) | | [optional] |
|
11
12
|
| **initial_refresh** | **Boolean** | initial_refresh | [optional][default to true] |
|
12
13
|
| **iqn** | **String** | | [optional] |
|
13
14
|
| **management_ip** | **String** | management_ip | [optional] |
|
@@ -33,6 +34,7 @@ instance = AutosdeOpenapiClient::StorageSystemCreate.new(
|
|
33
34
|
chap_name: null,
|
34
35
|
chap_secret: null,
|
35
36
|
component_state: null,
|
37
|
+
enabled_capability_values: null,
|
36
38
|
initial_refresh: null,
|
37
39
|
iqn: null,
|
38
40
|
management_ip: null,
|
data/docs/StorageSystemUpdate.md
CHANGED
@@ -4,6 +4,7 @@
|
|
4
4
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **enabled_capability_values** | [**ServiceAbstractCapabilityValue**](ServiceAbstractCapabilityValue.md) | | [optional] |
|
7
8
|
| **management_ip** | **String** | management_ip | [optional] |
|
8
9
|
| **name** | **String** | name | [optional] |
|
9
10
|
| **password** | **String** | password | [optional] |
|
@@ -15,6 +16,7 @@
|
|
15
16
|
require 'autosde_openapi_client'
|
16
17
|
|
17
18
|
instance = AutosdeOpenapiClient::StorageSystemUpdate.new(
|
19
|
+
enabled_capability_values: null,
|
18
20
|
management_ip: null,
|
19
21
|
name: null,
|
20
22
|
password: null,
|
@@ -20,14 +20,14 @@ module AutosdeOpenapiClient
|
|
20
20
|
@api_client = api_client
|
21
21
|
end
|
22
22
|
# @param [Hash] opts the optional parameters
|
23
|
-
# @return [Array<
|
23
|
+
# @return [Array<AbstractCapabilityResponse>]
|
24
24
|
def abstract_capabilities_get(opts = {})
|
25
25
|
data, _status_code, _headers = abstract_capabilities_get_with_http_info(opts)
|
26
26
|
data
|
27
27
|
end
|
28
28
|
|
29
29
|
# @param [Hash] opts the optional parameters
|
30
|
-
# @return [Array<(Array<
|
30
|
+
# @return [Array<(Array<AbstractCapabilityResponse>, Integer, Hash)>] Array<AbstractCapabilityResponse> data, response status code and response headers
|
31
31
|
def abstract_capabilities_get_with_http_info(opts = {})
|
32
32
|
if @api_client.config.debugging
|
33
33
|
@api_client.config.logger.debug 'Calling API: AbstractCapabilityApi.abstract_capabilities_get ...'
|
@@ -50,7 +50,7 @@ module AutosdeOpenapiClient
|
|
50
50
|
post_body = opts[:debug_body]
|
51
51
|
|
52
52
|
# return_type
|
53
|
-
return_type = opts[:debug_return_type] || 'Array<
|
53
|
+
return_type = opts[:debug_return_type] || 'Array<AbstractCapabilityResponse>'
|
54
54
|
|
55
55
|
# auth_names
|
56
56
|
auth_names = opts[:debug_auth_names] || ['bearerAuth']
|
@@ -133,7 +133,7 @@ module AutosdeOpenapiClient
|
|
133
133
|
|
134
134
|
# @param pk [Integer]
|
135
135
|
# @param [Hash] opts the optional parameters
|
136
|
-
# @return [
|
136
|
+
# @return [AbstractCapabilityResponse]
|
137
137
|
def abstract_capabilities_pk_get(pk, opts = {})
|
138
138
|
data, _status_code, _headers = abstract_capabilities_pk_get_with_http_info(pk, opts)
|
139
139
|
data
|
@@ -141,7 +141,7 @@ module AutosdeOpenapiClient
|
|
141
141
|
|
142
142
|
# @param pk [Integer]
|
143
143
|
# @param [Hash] opts the optional parameters
|
144
|
-
# @return [Array<(
|
144
|
+
# @return [Array<(AbstractCapabilityResponse, Integer, Hash)>] AbstractCapabilityResponse data, response status code and response headers
|
145
145
|
def abstract_capabilities_pk_get_with_http_info(pk, opts = {})
|
146
146
|
if @api_client.config.debugging
|
147
147
|
@api_client.config.logger.debug 'Calling API: AbstractCapabilityApi.abstract_capabilities_pk_get ...'
|
@@ -168,7 +168,7 @@ module AutosdeOpenapiClient
|
|
168
168
|
post_body = opts[:debug_body]
|
169
169
|
|
170
170
|
# return_type
|
171
|
-
return_type = opts[:debug_return_type] || '
|
171
|
+
return_type = opts[:debug_return_type] || 'AbstractCapabilityResponse'
|
172
172
|
|
173
173
|
# auth_names
|
174
174
|
auth_names = opts[:debug_auth_names] || ['bearerAuth']
|