autosde_openapi_client 2.1.1 → 2.1.3
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/docs/ServiceApi.md +12 -12
- data/docs/StorageHost.md +2 -0
- data/docs/SystemTypeCreate.md +2 -2
- data/lib/autosde_openapi_client/api/service_api.rb +9 -9
- data/lib/autosde_openapi_client/models/storage_host.rb +10 -1
- data/lib/autosde_openapi_client/models/system_type_create.rb +1 -22
- data/lib/autosde_openapi_client/version.rb +2 -2
- data/spec/api/service_api_spec.rb +3 -3
- data/spec/models/storage_host_spec.rb +6 -0
- data/spec/models/system_type_create_spec.rb +0 -4
- metadata +83 -83
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1e97f0c4bfdf37c73c4aa105a1baf5d3ee6e4a203ca7598c7da4ce299bb692d4
|
|
4
|
+
data.tar.gz: bd73b40e4d0ad42b69e9159e438de86040ef917ef97117a6f57e006e5f67d163
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 79cde70030f317c6014f77a6741d211a4ba430127371615bf58d349986eba62ed5a0b28952157224b9cc890dfebe5c7841a69df823aae3e312437ad274099aee
|
|
7
|
+
data.tar.gz: 95ffab4c43b0d4460a8f766e9aa05b3495e5d12c9197fb8a065f10d71585b38c74f400f712472fb6374f71fac14f824cdc63a63bb9592532915aedf204250d89
|
data/docs/ServiceApi.md
CHANGED
|
@@ -77,7 +77,7 @@ This endpoint does not need any parameter.
|
|
|
77
77
|
|
|
78
78
|
## services_pk_delete
|
|
79
79
|
|
|
80
|
-
> <
|
|
80
|
+
> <AsyncResponse> services_pk_delete(pk)
|
|
81
81
|
|
|
82
82
|
|
|
83
83
|
|
|
@@ -108,7 +108,7 @@ end
|
|
|
108
108
|
|
|
109
109
|
This returns an Array which contains the response data, status code and headers.
|
|
110
110
|
|
|
111
|
-
> <Array(<
|
|
111
|
+
> <Array(<AsyncResponse>, Integer, Hash)> services_pk_delete_with_http_info(pk)
|
|
112
112
|
|
|
113
113
|
```ruby
|
|
114
114
|
begin
|
|
@@ -116,7 +116,7 @@ begin
|
|
|
116
116
|
data, status_code, headers = api_instance.services_pk_delete_with_http_info(pk)
|
|
117
117
|
p status_code # => 2xx
|
|
118
118
|
p headers # => { ... }
|
|
119
|
-
p data # => <
|
|
119
|
+
p data # => <AsyncResponse>
|
|
120
120
|
rescue AutosdeOpenapiClient::ApiError => e
|
|
121
121
|
puts "Error when calling ServiceApi->services_pk_delete_with_http_info: #{e}"
|
|
122
122
|
end
|
|
@@ -130,7 +130,7 @@ end
|
|
|
130
130
|
|
|
131
131
|
### Return type
|
|
132
132
|
|
|
133
|
-
[**
|
|
133
|
+
[**AsyncResponse**](AsyncResponse.md)
|
|
134
134
|
|
|
135
135
|
### Authorization
|
|
136
136
|
|
|
@@ -144,7 +144,7 @@ end
|
|
|
144
144
|
|
|
145
145
|
## services_pk_get
|
|
146
146
|
|
|
147
|
-
> <
|
|
147
|
+
> <ServiceResponse> services_pk_get(pk)
|
|
148
148
|
|
|
149
149
|
|
|
150
150
|
|
|
@@ -175,7 +175,7 @@ end
|
|
|
175
175
|
|
|
176
176
|
This returns an Array which contains the response data, status code and headers.
|
|
177
177
|
|
|
178
|
-
> <Array(<
|
|
178
|
+
> <Array(<ServiceResponse>, Integer, Hash)> services_pk_get_with_http_info(pk)
|
|
179
179
|
|
|
180
180
|
```ruby
|
|
181
181
|
begin
|
|
@@ -183,7 +183,7 @@ begin
|
|
|
183
183
|
data, status_code, headers = api_instance.services_pk_get_with_http_info(pk)
|
|
184
184
|
p status_code # => 2xx
|
|
185
185
|
p headers # => { ... }
|
|
186
|
-
p data # => <
|
|
186
|
+
p data # => <ServiceResponse>
|
|
187
187
|
rescue AutosdeOpenapiClient::ApiError => e
|
|
188
188
|
puts "Error when calling ServiceApi->services_pk_get_with_http_info: #{e}"
|
|
189
189
|
end
|
|
@@ -197,7 +197,7 @@ end
|
|
|
197
197
|
|
|
198
198
|
### Return type
|
|
199
199
|
|
|
200
|
-
[**
|
|
200
|
+
[**ServiceResponse**](ServiceResponse.md)
|
|
201
201
|
|
|
202
202
|
### Authorization
|
|
203
203
|
|
|
@@ -280,7 +280,7 @@ end
|
|
|
280
280
|
|
|
281
281
|
## services_post
|
|
282
282
|
|
|
283
|
-
> <
|
|
283
|
+
> <AsyncResponse> services_post(service_create)
|
|
284
284
|
|
|
285
285
|
|
|
286
286
|
|
|
@@ -311,7 +311,7 @@ end
|
|
|
311
311
|
|
|
312
312
|
This returns an Array which contains the response data, status code and headers.
|
|
313
313
|
|
|
314
|
-
> <Array(<
|
|
314
|
+
> <Array(<AsyncResponse>, Integer, Hash)> services_post_with_http_info(service_create)
|
|
315
315
|
|
|
316
316
|
```ruby
|
|
317
317
|
begin
|
|
@@ -319,7 +319,7 @@ begin
|
|
|
319
319
|
data, status_code, headers = api_instance.services_post_with_http_info(service_create)
|
|
320
320
|
p status_code # => 2xx
|
|
321
321
|
p headers # => { ... }
|
|
322
|
-
p data # => <
|
|
322
|
+
p data # => <AsyncResponse>
|
|
323
323
|
rescue AutosdeOpenapiClient::ApiError => e
|
|
324
324
|
puts "Error when calling ServiceApi->services_post_with_http_info: #{e}"
|
|
325
325
|
end
|
|
@@ -333,7 +333,7 @@ end
|
|
|
333
333
|
|
|
334
334
|
### Return type
|
|
335
335
|
|
|
336
|
-
[**
|
|
336
|
+
[**AsyncResponse**](AsyncResponse.md)
|
|
337
337
|
|
|
338
338
|
### Authorization
|
|
339
339
|
|
data/docs/StorageHost.md
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
| Name | Type | Description | Notes |
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **addresses** | [**Address**](Address.md) | | [optional] |
|
|
7
8
|
| **component_state** | **String** | component_state | [optional] |
|
|
8
9
|
| **description** | **String** | description | [optional] |
|
|
9
10
|
| **host_cluster** | [**HostCluster**](HostCluster.md) | | [optional] |
|
|
@@ -21,6 +22,7 @@
|
|
|
21
22
|
require 'autosde_openapi_client'
|
|
22
23
|
|
|
23
24
|
instance = AutosdeOpenapiClient::StorageHost.new(
|
|
25
|
+
addresses: null,
|
|
24
26
|
component_state: null,
|
|
25
27
|
description: null,
|
|
26
28
|
host_cluster: null,
|
data/docs/SystemTypeCreate.md
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
| Name | Type | Description | Notes |
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
7
|
| **component_state** | **String** | component_state | [optional] |
|
|
8
|
-
| **name** | **String** | name | [optional]
|
|
8
|
+
| **name** | **String** | name | [optional] |
|
|
9
9
|
| **short_version** | **String** | short_version | [optional] |
|
|
10
|
-
| **super_type** | **
|
|
10
|
+
| **super_type** | **Integer** | super_type | [optional] |
|
|
11
11
|
| **uuid** | **String** | uuid | [optional] |
|
|
12
12
|
| **version** | **String** | SystemType version | [optional] |
|
|
13
13
|
|
|
@@ -74,7 +74,7 @@ module AutosdeOpenapiClient
|
|
|
74
74
|
|
|
75
75
|
# @param pk [Integer]
|
|
76
76
|
# @param [Hash] opts the optional parameters
|
|
77
|
-
# @return [
|
|
77
|
+
# @return [AsyncResponse]
|
|
78
78
|
def services_pk_delete(pk, opts = {})
|
|
79
79
|
data, _status_code, _headers = services_pk_delete_with_http_info(pk, opts)
|
|
80
80
|
data
|
|
@@ -82,7 +82,7 @@ module AutosdeOpenapiClient
|
|
|
82
82
|
|
|
83
83
|
# @param pk [Integer]
|
|
84
84
|
# @param [Hash] opts the optional parameters
|
|
85
|
-
# @return [Array<(
|
|
85
|
+
# @return [Array<(AsyncResponse, Integer, Hash)>] AsyncResponse data, response status code and response headers
|
|
86
86
|
def services_pk_delete_with_http_info(pk, opts = {})
|
|
87
87
|
if @api_client.config.debugging
|
|
88
88
|
@api_client.config.logger.debug 'Calling API: ServiceApi.services_pk_delete ...'
|
|
@@ -109,7 +109,7 @@ module AutosdeOpenapiClient
|
|
|
109
109
|
post_body = opts[:debug_body]
|
|
110
110
|
|
|
111
111
|
# return_type
|
|
112
|
-
return_type = opts[:debug_return_type] || '
|
|
112
|
+
return_type = opts[:debug_return_type] || 'AsyncResponse'
|
|
113
113
|
|
|
114
114
|
# auth_names
|
|
115
115
|
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 [ServiceResponse]
|
|
137
137
|
def services_pk_get(pk, opts = {})
|
|
138
138
|
data, _status_code, _headers = services_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<(ServiceResponse, Integer, Hash)>] ServiceResponse data, response status code and response headers
|
|
145
145
|
def services_pk_get_with_http_info(pk, opts = {})
|
|
146
146
|
if @api_client.config.debugging
|
|
147
147
|
@api_client.config.logger.debug 'Calling API: ServiceApi.services_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] || 'ServiceResponse'
|
|
172
172
|
|
|
173
173
|
# auth_names
|
|
174
174
|
auth_names = opts[:debug_auth_names] || ['bearerAuth']
|
|
@@ -259,7 +259,7 @@ module AutosdeOpenapiClient
|
|
|
259
259
|
|
|
260
260
|
# @param service_create [ServiceCreate]
|
|
261
261
|
# @param [Hash] opts the optional parameters
|
|
262
|
-
# @return [
|
|
262
|
+
# @return [AsyncResponse]
|
|
263
263
|
def services_post(service_create, opts = {})
|
|
264
264
|
data, _status_code, _headers = services_post_with_http_info(service_create, opts)
|
|
265
265
|
data
|
|
@@ -267,7 +267,7 @@ module AutosdeOpenapiClient
|
|
|
267
267
|
|
|
268
268
|
# @param service_create [ServiceCreate]
|
|
269
269
|
# @param [Hash] opts the optional parameters
|
|
270
|
-
# @return [Array<(
|
|
270
|
+
# @return [Array<(AsyncResponse, Integer, Hash)>] AsyncResponse data, response status code and response headers
|
|
271
271
|
def services_post_with_http_info(service_create, opts = {})
|
|
272
272
|
if @api_client.config.debugging
|
|
273
273
|
@api_client.config.logger.debug 'Calling API: ServiceApi.services_post ...'
|
|
@@ -296,7 +296,7 @@ module AutosdeOpenapiClient
|
|
|
296
296
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(service_create)
|
|
297
297
|
|
|
298
298
|
# return_type
|
|
299
|
-
return_type = opts[:debug_return_type] || '
|
|
299
|
+
return_type = opts[:debug_return_type] || 'AsyncResponse'
|
|
300
300
|
|
|
301
301
|
# auth_names
|
|
302
302
|
auth_names = opts[:debug_auth_names] || ['bearerAuth']
|
|
@@ -16,6 +16,8 @@ require 'time'
|
|
|
16
16
|
module AutosdeOpenapiClient
|
|
17
17
|
# StorageHost
|
|
18
18
|
class StorageHost
|
|
19
|
+
attr_accessor :addresses
|
|
20
|
+
|
|
19
21
|
# component_state
|
|
20
22
|
attr_accessor :component_state
|
|
21
23
|
|
|
@@ -68,6 +70,7 @@ module AutosdeOpenapiClient
|
|
|
68
70
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
69
71
|
def self.attribute_map
|
|
70
72
|
{
|
|
73
|
+
:'addresses' => :'addresses',
|
|
71
74
|
:'component_state' => :'component_state',
|
|
72
75
|
:'description' => :'description',
|
|
73
76
|
:'host_cluster' => :'host_cluster',
|
|
@@ -89,6 +92,7 @@ module AutosdeOpenapiClient
|
|
|
89
92
|
# Attribute type mapping.
|
|
90
93
|
def self.openapi_types
|
|
91
94
|
{
|
|
95
|
+
:'addresses' => :'Address',
|
|
92
96
|
:'component_state' => :'String',
|
|
93
97
|
:'description' => :'String',
|
|
94
98
|
:'host_cluster' => :'HostCluster',
|
|
@@ -123,6 +127,10 @@ module AutosdeOpenapiClient
|
|
|
123
127
|
h[k.to_sym] = v
|
|
124
128
|
}
|
|
125
129
|
|
|
130
|
+
if attributes.key?(:'addresses')
|
|
131
|
+
self.addresses = attributes[:'addresses']
|
|
132
|
+
end
|
|
133
|
+
|
|
126
134
|
if attributes.key?(:'component_state')
|
|
127
135
|
self.component_state = attributes[:'component_state']
|
|
128
136
|
end
|
|
@@ -199,6 +207,7 @@ module AutosdeOpenapiClient
|
|
|
199
207
|
def ==(o)
|
|
200
208
|
return true if self.equal?(o)
|
|
201
209
|
self.class == o.class &&
|
|
210
|
+
addresses == o.addresses &&
|
|
202
211
|
component_state == o.component_state &&
|
|
203
212
|
description == o.description &&
|
|
204
213
|
host_cluster == o.host_cluster &&
|
|
@@ -220,7 +229,7 @@ module AutosdeOpenapiClient
|
|
|
220
229
|
# Calculates hash code according to all attributes.
|
|
221
230
|
# @return [Integer] Hash code
|
|
222
231
|
def hash
|
|
223
|
-
[component_state, description, host_cluster, host_cluster_name, io_groups, name, status, storage_system, uuid, volumes].hash
|
|
232
|
+
[addresses, component_state, description, host_cluster, host_cluster_name, io_groups, name, status, storage_system, uuid, volumes].hash
|
|
224
233
|
end
|
|
225
234
|
|
|
226
235
|
# Builds the object from hash
|
|
@@ -79,7 +79,7 @@ module AutosdeOpenapiClient
|
|
|
79
79
|
:'component_state' => :'String',
|
|
80
80
|
:'name' => :'String',
|
|
81
81
|
:'short_version' => :'String',
|
|
82
|
-
:'super_type' => :'
|
|
82
|
+
:'super_type' => :'Integer',
|
|
83
83
|
:'uuid' => :'String',
|
|
84
84
|
:'version' => :'String'
|
|
85
85
|
}
|
|
@@ -112,8 +112,6 @@ module AutosdeOpenapiClient
|
|
|
112
112
|
|
|
113
113
|
if attributes.key?(:'name')
|
|
114
114
|
self.name = attributes[:'name']
|
|
115
|
-
else
|
|
116
|
-
self.name = 'IBM_FlashSystems'
|
|
117
115
|
end
|
|
118
116
|
|
|
119
117
|
if attributes.key?(:'short_version')
|
|
@@ -122,8 +120,6 @@ module AutosdeOpenapiClient
|
|
|
122
120
|
|
|
123
121
|
if attributes.key?(:'super_type')
|
|
124
122
|
self.super_type = attributes[:'super_type']
|
|
125
|
-
else
|
|
126
|
-
self.super_type = 'null'
|
|
127
123
|
end
|
|
128
124
|
|
|
129
125
|
if attributes.key?(:'uuid')
|
|
@@ -143,10 +139,6 @@ module AutosdeOpenapiClient
|
|
|
143
139
|
invalid_properties.push('invalid value for "component_state", the character length must be smaller than or equal to 32.')
|
|
144
140
|
end
|
|
145
141
|
|
|
146
|
-
if !@name.nil? && @name.to_s.length > 255
|
|
147
|
-
invalid_properties.push('invalid value for "name", the character length must be smaller than or equal to 255.')
|
|
148
|
-
end
|
|
149
|
-
|
|
150
142
|
if !@short_version.nil? && @short_version.to_s.length > 255
|
|
151
143
|
invalid_properties.push('invalid value for "short_version", the character length must be smaller than or equal to 255.')
|
|
152
144
|
end
|
|
@@ -160,9 +152,6 @@ module AutosdeOpenapiClient
|
|
|
160
152
|
component_state_validator = EnumAttributeValidator.new('String', ["PENDING_CREATION", "CREATED", "DELETED", "PENDING_DELETION", "MODIFICATION", "PENDING_MODIFICATION"])
|
|
161
153
|
return false unless component_state_validator.valid?(@component_state)
|
|
162
154
|
return false if !@component_state.nil? && @component_state.to_s.length > 32
|
|
163
|
-
name_validator = EnumAttributeValidator.new('String', ["IBM_FlashSystems", "a_line", "xiv", "ds8000", "vmax", "netapp", "ds8x00"])
|
|
164
|
-
return false unless name_validator.valid?(@name)
|
|
165
|
-
return false if !@name.nil? && @name.to_s.length > 255
|
|
166
155
|
return false if !@short_version.nil? && @short_version.to_s.length > 255
|
|
167
156
|
true
|
|
168
157
|
end
|
|
@@ -177,16 +166,6 @@ module AutosdeOpenapiClient
|
|
|
177
166
|
@component_state = component_state
|
|
178
167
|
end
|
|
179
168
|
|
|
180
|
-
# Custom attribute writer method checking allowed values (enum).
|
|
181
|
-
# @param [Object] name Object to be assigned
|
|
182
|
-
def name=(name)
|
|
183
|
-
validator = EnumAttributeValidator.new('String', ["IBM_FlashSystems", "a_line", "xiv", "ds8000", "vmax", "netapp", "ds8x00"])
|
|
184
|
-
unless validator.valid?(name)
|
|
185
|
-
fail ArgumentError, "invalid value for \"name\", must be one of #{validator.allowable_values}."
|
|
186
|
-
end
|
|
187
|
-
@name = name
|
|
188
|
-
end
|
|
189
|
-
|
|
190
169
|
# Custom attribute writer method with validation
|
|
191
170
|
# @param [Object] short_version Value to be assigned
|
|
192
171
|
def short_version=(short_version)
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Site Manager API
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 2.1.
|
|
6
|
+
The version of the OpenAPI document: 2.1.3
|
|
7
7
|
Contact: autosde@il.ibm.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
OpenAPI Generator version: 5.0.0
|
|
@@ -11,5 +11,5 @@ OpenAPI Generator version: 5.0.0
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
13
13
|
module AutosdeOpenapiClient
|
|
14
|
-
VERSION = '2.1.
|
|
14
|
+
VERSION = '2.1.3'
|
|
15
15
|
end
|
|
@@ -44,7 +44,7 @@ describe 'ServiceApi' do
|
|
|
44
44
|
# unit tests for services_pk_delete
|
|
45
45
|
# @param pk
|
|
46
46
|
# @param [Hash] opts the optional parameters
|
|
47
|
-
# @return [
|
|
47
|
+
# @return [AsyncResponse]
|
|
48
48
|
describe 'services_pk_delete test' do
|
|
49
49
|
it 'should work' do
|
|
50
50
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -54,7 +54,7 @@ describe 'ServiceApi' do
|
|
|
54
54
|
# unit tests for services_pk_get
|
|
55
55
|
# @param pk
|
|
56
56
|
# @param [Hash] opts the optional parameters
|
|
57
|
-
# @return [
|
|
57
|
+
# @return [ServiceResponse]
|
|
58
58
|
describe 'services_pk_get test' do
|
|
59
59
|
it 'should work' do
|
|
60
60
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -75,7 +75,7 @@ describe 'ServiceApi' do
|
|
|
75
75
|
# unit tests for services_post
|
|
76
76
|
# @param service_create
|
|
77
77
|
# @param [Hash] opts the optional parameters
|
|
78
|
-
# @return [
|
|
78
|
+
# @return [AsyncResponse]
|
|
79
79
|
describe 'services_post test' do
|
|
80
80
|
it 'should work' do
|
|
81
81
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -25,6 +25,12 @@ describe AutosdeOpenapiClient::StorageHost do
|
|
|
25
25
|
expect(instance).to be_instance_of(AutosdeOpenapiClient::StorageHost)
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
|
+
describe 'test attribute "addresses"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
28
34
|
describe 'test attribute "component_state"' do
|
|
29
35
|
it 'should work' do
|
|
30
36
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -38,10 +38,6 @@ describe AutosdeOpenapiClient::SystemTypeCreate do
|
|
|
38
38
|
describe 'test attribute "name"' do
|
|
39
39
|
it 'should work' do
|
|
40
40
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
41
|
-
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["IBM_FlashSystems", "a_line", "xiv", "ds8000", "vmax", "netapp", "ds8x00"])
|
|
42
|
-
# validator.allowable_values.each do |value|
|
|
43
|
-
# expect { instance.name = value }.not_to raise_error
|
|
44
|
-
# end
|
|
45
41
|
end
|
|
46
42
|
end
|
|
47
43
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: autosde_openapi_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-01-
|
|
11
|
+
date: 2023-01-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -398,107 +398,107 @@ signing_key:
|
|
|
398
398
|
specification_version: 4
|
|
399
399
|
summary: Site Manager API Ruby Gem
|
|
400
400
|
test_files:
|
|
401
|
-
- spec/api/
|
|
401
|
+
- spec/api/job_api_spec.rb
|
|
402
|
+
- spec/api/system_type_api_spec.rb
|
|
403
|
+
- spec/api/refresh_system_api_spec.rb
|
|
404
|
+
- spec/api/snapshot_api_spec.rb
|
|
405
|
+
- spec/api/user_api_spec.rb
|
|
406
|
+
- spec/api/auto_sde_project_api_spec.rb
|
|
407
|
+
- spec/api/event_api_spec.rb
|
|
408
|
+
- spec/api/volume_api_spec.rb
|
|
402
409
|
- spec/api/authentication_api_spec.rb
|
|
403
|
-
- spec/api/
|
|
404
|
-
- spec/api/host_cluster_api_spec.rb
|
|
410
|
+
- spec/api/storage_system_api_spec.rb
|
|
405
411
|
- spec/api/host_api_spec.rb
|
|
406
|
-
- spec/api/
|
|
407
|
-
- spec/api/
|
|
408
|
-
- spec/api/
|
|
409
|
-
- spec/api/
|
|
412
|
+
- spec/api/validate_system_api_spec.rb
|
|
413
|
+
- spec/api/storage_hosts_mapping_api_spec.rb
|
|
414
|
+
- spec/api/native_capability_api_spec.rb
|
|
415
|
+
- spec/api/celery_config_api_spec.rb
|
|
416
|
+
- spec/api/address_api_spec.rb
|
|
417
|
+
- spec/api/profile_api_spec.rb
|
|
410
418
|
- spec/api/service_abstract_capability_value_api_spec.rb
|
|
411
|
-
- spec/api/
|
|
412
|
-
- spec/api/
|
|
419
|
+
- spec/api/capability_translation_api_spec.rb
|
|
420
|
+
- spec/api/host_cluster_volume_mapping_api_spec.rb
|
|
413
421
|
- spec/api/service_resource_attachment_api_spec.rb
|
|
414
|
-
- spec/api/
|
|
415
|
-
- spec/api/
|
|
416
|
-
- spec/api/system_type_api_spec.rb
|
|
417
|
-
- spec/api/refresh_system_api_spec.rb
|
|
422
|
+
- spec/api/service_api_spec.rb
|
|
423
|
+
- spec/api/host_volume_connection_api_spec.rb
|
|
418
424
|
- spec/api/storage_resource_api_spec.rb
|
|
419
|
-
- spec/api/
|
|
420
|
-
- spec/api/
|
|
421
|
-
- spec/api/
|
|
422
|
-
- spec/api/account_api_spec.rb
|
|
423
|
-
- spec/api/native_capability_api_spec.rb
|
|
424
|
-
- spec/api/event_api_spec.rb
|
|
425
|
-
- spec/api/auto_sde_project_api_spec.rb
|
|
426
|
-
- spec/api/snapshot_api_spec.rb
|
|
425
|
+
- spec/api/provisioning_strategy_api_spec.rb
|
|
426
|
+
- spec/api/storage_host_wwpn_candidates_api_spec.rb
|
|
427
|
+
- spec/api/auto_sde_role_api_spec.rb
|
|
427
428
|
- spec/api/storage_host_api_spec.rb
|
|
429
|
+
- spec/api/host_cluster_api_spec.rb
|
|
430
|
+
- spec/api/account_api_spec.rb
|
|
428
431
|
- spec/api/abstract_capability_api_spec.rb
|
|
429
|
-
- spec/api/
|
|
430
|
-
- spec/api/volume_api_spec.rb
|
|
431
|
-
- spec/api/profile_api_spec.rb
|
|
432
|
-
- spec/api/storage_system_api_spec.rb
|
|
432
|
+
- spec/api/host_cluster_membership_api_spec.rb
|
|
433
433
|
- spec/api_client_spec.rb
|
|
434
434
|
- spec/configuration_spec.rb
|
|
435
|
-
- spec/models/
|
|
436
|
-
- spec/models/
|
|
435
|
+
- spec/models/storage_system_update_spec.rb
|
|
436
|
+
- spec/models/storage_hosts_mapping_response_spec.rb
|
|
437
|
+
- spec/models/abstract_capability_response_spec.rb
|
|
438
|
+
- spec/models/user_spec.rb
|
|
439
|
+
- spec/models/validate_system_spec.rb
|
|
440
|
+
- spec/models/storage_hosts_mapping_spec.rb
|
|
441
|
+
- spec/models/service_create_spec.rb
|
|
442
|
+
- spec/models/account_post_request_spec.rb
|
|
443
|
+
- spec/models/service_abstract_capability_value_spec.rb
|
|
444
|
+
- spec/models/job_spec.rb
|
|
445
|
+
- spec/models/abstract_capability_spec.rb
|
|
446
|
+
- spec/models/service_spec.rb
|
|
447
|
+
- spec/models/snapshot_create_spec.rb
|
|
448
|
+
- spec/models/service_resource_attachment_spec.rb
|
|
437
449
|
- spec/models/volume_response_spec.rb
|
|
438
|
-
- spec/models/
|
|
439
|
-
- spec/models/
|
|
440
|
-
- spec/models/async_response_spec.rb
|
|
441
|
-
- spec/models/auto_sde_project_spec.rb
|
|
442
|
-
- spec/models/host_cluster_response_spec.rb
|
|
443
|
-
- spec/models/capability_translation_spec.rb
|
|
444
|
-
- spec/models/auto_sde_role_spec.rb
|
|
445
|
-
- spec/models/event_spec.rb
|
|
446
|
-
- spec/models/address_create_spec.rb
|
|
450
|
+
- spec/models/system_type_create_spec.rb
|
|
451
|
+
- spec/models/storage_host_wwpn_candidates_spec.rb
|
|
447
452
|
- spec/models/auth_response_spec.rb
|
|
448
|
-
- spec/models/
|
|
453
|
+
- spec/models/storage_resource_spec.rb
|
|
454
|
+
- spec/models/job_create_spec.rb
|
|
455
|
+
- spec/models/storage_host_create_spec.rb
|
|
456
|
+
- spec/models/auto_sde_project_spec.rb
|
|
457
|
+
- spec/models/storage_system_response_spec.rb
|
|
449
458
|
- spec/models/host_spec.rb
|
|
459
|
+
- spec/models/profile_spec.rb
|
|
460
|
+
- spec/models/host_volume_connection_create_spec.rb
|
|
461
|
+
- spec/models/storage_system_create_spec.rb
|
|
462
|
+
- spec/models/async_response_spec.rb
|
|
463
|
+
- spec/models/storage_hosts_mapping_create_spec.rb
|
|
450
464
|
- spec/models/storage_resource_response_spec.rb
|
|
451
|
-
- spec/models/abstract_capability_response_spec.rb
|
|
452
|
-
- spec/models/storage_resource_update_spec.rb
|
|
453
|
-
- spec/models/service_abstract_capability_value_response_spec.rb
|
|
454
|
-
- spec/models/service_spec.rb
|
|
455
|
-
- spec/models/storage_hosts_mapping_response_spec.rb
|
|
456
465
|
- spec/models/snapshot_spec.rb
|
|
457
|
-
- spec/models/
|
|
458
|
-
- spec/models/
|
|
459
|
-
- spec/models/service_create_spec.rb
|
|
460
|
-
- spec/models/validate_system_spec.rb
|
|
461
|
-
- spec/models/system_type_response_spec.rb
|
|
462
|
-
- spec/models/celery_config_spec.rb
|
|
463
|
-
- spec/models/storage_hosts_mapping_create_spec.rb
|
|
464
|
-
- spec/models/storage_system_response_spec.rb
|
|
465
|
-
- spec/models/storage_system_spec.rb
|
|
466
|
+
- spec/models/service_response_spec.rb
|
|
467
|
+
- spec/models/capability_translation_spec.rb
|
|
466
468
|
- spec/models/account_post_response_spec.rb
|
|
467
|
-
- spec/models/
|
|
468
|
-
- spec/models/
|
|
469
|
-
- spec/models/storage_host_spec.rb
|
|
470
|
-
- spec/models/volume_update_spec.rb
|
|
471
|
-
- spec/models/job_spec.rb
|
|
472
|
-
- spec/models/storage_system_create_spec.rb
|
|
473
|
-
- spec/models/host_cluster_volume_mapping_create_spec.rb
|
|
474
|
-
- spec/models/account_post_request_spec.rb
|
|
475
|
-
- spec/models/host_volume_connection_create_spec.rb
|
|
476
|
-
- spec/models/profile_spec.rb
|
|
477
|
-
- spec/models/storage_host_wwpn_candidates_spec.rb
|
|
478
|
-
- spec/models/abstract_capability_spec.rb
|
|
479
|
-
- spec/models/storage_hosts_mapping_spec.rb
|
|
480
|
-
- spec/models/host_cluster_membership_spec.rb
|
|
469
|
+
- spec/models/address_create_spec.rb
|
|
470
|
+
- spec/models/host_cluster_volume_mapping_spec.rb
|
|
481
471
|
- spec/models/authentication_spec.rb
|
|
482
|
-
- spec/models/
|
|
483
|
-
- spec/models/
|
|
484
|
-
- spec/models/
|
|
485
|
-
- spec/models/
|
|
486
|
-
- spec/models/
|
|
487
|
-
- spec/models/system_type_spec.rb
|
|
488
|
-
- spec/models/host_cluster_spec.rb
|
|
489
|
-
- spec/models/host_create_spec.rb
|
|
472
|
+
- spec/models/host_cluster_volume_mapping_response_spec.rb
|
|
473
|
+
- spec/models/storage_resource_update_spec.rb
|
|
474
|
+
- spec/models/provisioning_strategy_spec.rb
|
|
475
|
+
- spec/models/celery_config_spec.rb
|
|
476
|
+
- spec/models/host_volume_connection_spec.rb
|
|
490
477
|
- spec/models/host_cluster_create_spec.rb
|
|
491
|
-
- spec/models/
|
|
492
|
-
- spec/models/
|
|
478
|
+
- spec/models/address_spec.rb
|
|
479
|
+
- spec/models/account_spec.rb
|
|
480
|
+
- spec/models/refresh_system_spec.rb
|
|
493
481
|
- spec/models/capability_translation_create_spec.rb
|
|
482
|
+
- spec/models/host_cluster_response_spec.rb
|
|
483
|
+
- spec/models/event_response_spec.rb
|
|
484
|
+
- spec/models/service_abstract_capability_value_response_spec.rb
|
|
485
|
+
- spec/models/storage_host_response_spec.rb
|
|
486
|
+
- spec/models/host_create_spec.rb
|
|
487
|
+
- spec/models/auto_sde_role_spec.rb
|
|
488
|
+
- spec/models/volume_update_spec.rb
|
|
489
|
+
- spec/models/storage_resource_create_spec.rb
|
|
494
490
|
- spec/models/native_capability_spec.rb
|
|
495
|
-
- spec/models/
|
|
491
|
+
- spec/models/volume_spec.rb
|
|
496
492
|
- spec/models/volume_create_spec.rb
|
|
493
|
+
- spec/models/event_spec.rb
|
|
494
|
+
- spec/models/storage_system_spec.rb
|
|
495
|
+
- spec/models/host_cluster_volume_mapping_create_spec.rb
|
|
496
|
+
- spec/models/host_cluster_membership_spec.rb
|
|
497
|
+
- spec/models/host_cluster_spec.rb
|
|
498
|
+
- spec/models/storage_host_update_spec.rb
|
|
497
499
|
- spec/models/user_update_spec.rb
|
|
500
|
+
- spec/models/system_type_response_spec.rb
|
|
501
|
+
- spec/models/storage_host_spec.rb
|
|
498
502
|
- spec/models/user_create_spec.rb
|
|
499
|
-
- spec/models/
|
|
500
|
-
- spec/models/storage_host_response_spec.rb
|
|
501
|
-
- spec/models/service_resource_attachment_spec.rb
|
|
502
|
-
- spec/models/storage_resource_create_spec.rb
|
|
503
|
-
- spec/models/account_spec.rb
|
|
503
|
+
- spec/models/system_type_spec.rb
|
|
504
504
|
- spec/spec_helper.rb
|