autosde_openapi_client 3.2.3 → 3.2.5
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/Event.md +2 -0
- data/docs/EventResponse.md +2 -0
- data/docs/SystemTypeCreate.md +0 -2
- data/lib/autosde_openapi_client/models/event.rb +11 -1
- data/lib/autosde_openapi_client/models/event_response.rb +11 -1
- data/lib/autosde_openapi_client/models/system_type_create.rb +1 -50
- data/lib/autosde_openapi_client/version.rb +2 -2
- data/spec/models/event_response_spec.rb +6 -0
- data/spec/models/event_spec.rb +6 -0
- data/spec/models/system_type_create_spec.rb +0 -10
- metadata +88 -88
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7f36be1fccea8cb9a74b62c9a3707b7e9f192e5ec2eadb53a3db3eb55e781694
|
|
4
|
+
data.tar.gz: 37dd9f045b64f522c83683e8e47c61acf1ebc2f9813e781fa36847a6aa4ec426
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5bc2e1fde1298c04ffb200c01f412d671d0ffd10b7394f349e489bad01c6389d584e76b153444d2ee9877d0c9a65844534b4a33e92c5d10bac558c789e174420
|
|
7
|
+
data.tar.gz: 48c1ba958043573980d5dd9a7b01d161e1bfb756bd320a3183f31daa36e855b2fffb5907176cbd4429f06d9b742cd8e7931b4503025d5bbc64592fabef995505
|
data/docs/Event.md
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
| **event_type** | **String** | event_type | [optional] |
|
|
11
11
|
| **fixed** | **String** | fixed | [optional] |
|
|
12
12
|
| **last_timestamp** | **Time** | last_timestamp | [optional] |
|
|
13
|
+
| **object_name** | **String** | object_name | [optional] |
|
|
13
14
|
| **refresh_interval** | **Integer** | refresh_interval | [optional] |
|
|
14
15
|
| **sequence_number** | **Integer** | sequence_number | [optional] |
|
|
15
16
|
| **storage_system** | [**StorageSystem**](StorageSystem.md) | | [optional] |
|
|
@@ -27,6 +28,7 @@ instance = AutosdeOpenapiClient::Event.new(
|
|
|
27
28
|
event_type: null,
|
|
28
29
|
fixed: null,
|
|
29
30
|
last_timestamp: null,
|
|
31
|
+
object_name: null,
|
|
30
32
|
refresh_interval: null,
|
|
31
33
|
sequence_number: null,
|
|
32
34
|
storage_system: null,
|
data/docs/EventResponse.md
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
| **event_type** | **String** | event_type | [optional] |
|
|
11
11
|
| **fixed** | **String** | fixed | [optional] |
|
|
12
12
|
| **last_timestamp** | **Time** | last_timestamp | [optional] |
|
|
13
|
+
| **object_name** | **String** | object_name | [optional] |
|
|
13
14
|
| **refresh_interval** | **Integer** | refresh_interval | [optional] |
|
|
14
15
|
| **sequence_number** | **Integer** | sequence_number | [optional] |
|
|
15
16
|
| **storage_system** | **String** | !!uuid of storage_system | [optional] |
|
|
@@ -27,6 +28,7 @@ instance = AutosdeOpenapiClient::EventResponse.new(
|
|
|
27
28
|
event_type: null,
|
|
28
29
|
fixed: null,
|
|
29
30
|
last_timestamp: null,
|
|
31
|
+
object_name: null,
|
|
30
32
|
refresh_interval: null,
|
|
31
33
|
sequence_number: null,
|
|
32
34
|
storage_system: null,
|
data/docs/SystemTypeCreate.md
CHANGED
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
| Name | Type | Description | Notes |
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
|
-
| **component_state** | **String** | component_state | [optional] |
|
|
8
7
|
| **name** | **String** | name | [optional] |
|
|
9
8
|
| **short_version** | **String** | short_version | [optional] |
|
|
10
9
|
| **super_type** | **Integer** | super_type | [optional] |
|
|
@@ -17,7 +16,6 @@
|
|
|
17
16
|
require 'autosde_openapi_client'
|
|
18
17
|
|
|
19
18
|
instance = AutosdeOpenapiClient::SystemTypeCreate.new(
|
|
20
|
-
component_state: null,
|
|
21
19
|
name: null,
|
|
22
20
|
short_version: null,
|
|
23
21
|
super_type: null,
|
|
@@ -34,6 +34,9 @@ module AutosdeOpenapiClient
|
|
|
34
34
|
# last_timestamp
|
|
35
35
|
attr_accessor :last_timestamp
|
|
36
36
|
|
|
37
|
+
# object_name
|
|
38
|
+
attr_accessor :object_name
|
|
39
|
+
|
|
37
40
|
# refresh_interval
|
|
38
41
|
attr_accessor :refresh_interval
|
|
39
42
|
|
|
@@ -54,6 +57,7 @@ module AutosdeOpenapiClient
|
|
|
54
57
|
:'event_type' => :'event_type',
|
|
55
58
|
:'fixed' => :'fixed',
|
|
56
59
|
:'last_timestamp' => :'last_timestamp',
|
|
60
|
+
:'object_name' => :'object_name',
|
|
57
61
|
:'refresh_interval' => :'refresh_interval',
|
|
58
62
|
:'sequence_number' => :'sequence_number',
|
|
59
63
|
:'storage_system' => :'storage_system',
|
|
@@ -75,6 +79,7 @@ module AutosdeOpenapiClient
|
|
|
75
79
|
:'event_type' => :'String',
|
|
76
80
|
:'fixed' => :'String',
|
|
77
81
|
:'last_timestamp' => :'Time',
|
|
82
|
+
:'object_name' => :'String',
|
|
78
83
|
:'refresh_interval' => :'Integer',
|
|
79
84
|
:'sequence_number' => :'Integer',
|
|
80
85
|
:'storage_system' => :'StorageSystem',
|
|
@@ -127,6 +132,10 @@ module AutosdeOpenapiClient
|
|
|
127
132
|
self.last_timestamp = attributes[:'last_timestamp']
|
|
128
133
|
end
|
|
129
134
|
|
|
135
|
+
if attributes.key?(:'object_name')
|
|
136
|
+
self.object_name = attributes[:'object_name']
|
|
137
|
+
end
|
|
138
|
+
|
|
130
139
|
if attributes.key?(:'refresh_interval')
|
|
131
140
|
self.refresh_interval = attributes[:'refresh_interval']
|
|
132
141
|
end
|
|
@@ -168,6 +177,7 @@ module AutosdeOpenapiClient
|
|
|
168
177
|
event_type == o.event_type &&
|
|
169
178
|
fixed == o.fixed &&
|
|
170
179
|
last_timestamp == o.last_timestamp &&
|
|
180
|
+
object_name == o.object_name &&
|
|
171
181
|
refresh_interval == o.refresh_interval &&
|
|
172
182
|
sequence_number == o.sequence_number &&
|
|
173
183
|
storage_system == o.storage_system &&
|
|
@@ -183,7 +193,7 @@ module AutosdeOpenapiClient
|
|
|
183
193
|
# Calculates hash code according to all attributes.
|
|
184
194
|
# @return [Integer] Hash code
|
|
185
195
|
def hash
|
|
186
|
-
[description, error_code, event_id, event_type, fixed, last_timestamp, refresh_interval, sequence_number, storage_system, uuid].hash
|
|
196
|
+
[description, error_code, event_id, event_type, fixed, last_timestamp, object_name, refresh_interval, sequence_number, storage_system, uuid].hash
|
|
187
197
|
end
|
|
188
198
|
|
|
189
199
|
# Builds the object from hash
|
|
@@ -34,6 +34,9 @@ module AutosdeOpenapiClient
|
|
|
34
34
|
# last_timestamp
|
|
35
35
|
attr_accessor :last_timestamp
|
|
36
36
|
|
|
37
|
+
# object_name
|
|
38
|
+
attr_accessor :object_name
|
|
39
|
+
|
|
37
40
|
# refresh_interval
|
|
38
41
|
attr_accessor :refresh_interval
|
|
39
42
|
|
|
@@ -55,6 +58,7 @@ module AutosdeOpenapiClient
|
|
|
55
58
|
:'event_type' => :'event_type',
|
|
56
59
|
:'fixed' => :'fixed',
|
|
57
60
|
:'last_timestamp' => :'last_timestamp',
|
|
61
|
+
:'object_name' => :'object_name',
|
|
58
62
|
:'refresh_interval' => :'refresh_interval',
|
|
59
63
|
:'sequence_number' => :'sequence_number',
|
|
60
64
|
:'storage_system' => :'storage_system',
|
|
@@ -76,6 +80,7 @@ module AutosdeOpenapiClient
|
|
|
76
80
|
:'event_type' => :'String',
|
|
77
81
|
:'fixed' => :'String',
|
|
78
82
|
:'last_timestamp' => :'Time',
|
|
83
|
+
:'object_name' => :'String',
|
|
79
84
|
:'refresh_interval' => :'Integer',
|
|
80
85
|
:'sequence_number' => :'Integer',
|
|
81
86
|
:'storage_system' => :'String',
|
|
@@ -128,6 +133,10 @@ module AutosdeOpenapiClient
|
|
|
128
133
|
self.last_timestamp = attributes[:'last_timestamp']
|
|
129
134
|
end
|
|
130
135
|
|
|
136
|
+
if attributes.key?(:'object_name')
|
|
137
|
+
self.object_name = attributes[:'object_name']
|
|
138
|
+
end
|
|
139
|
+
|
|
131
140
|
if attributes.key?(:'refresh_interval')
|
|
132
141
|
self.refresh_interval = attributes[:'refresh_interval']
|
|
133
142
|
end
|
|
@@ -169,6 +178,7 @@ module AutosdeOpenapiClient
|
|
|
169
178
|
event_type == o.event_type &&
|
|
170
179
|
fixed == o.fixed &&
|
|
171
180
|
last_timestamp == o.last_timestamp &&
|
|
181
|
+
object_name == o.object_name &&
|
|
172
182
|
refresh_interval == o.refresh_interval &&
|
|
173
183
|
sequence_number == o.sequence_number &&
|
|
174
184
|
storage_system == o.storage_system &&
|
|
@@ -184,7 +194,7 @@ module AutosdeOpenapiClient
|
|
|
184
194
|
# Calculates hash code according to all attributes.
|
|
185
195
|
# @return [Integer] Hash code
|
|
186
196
|
def hash
|
|
187
|
-
[description, error_code, event_id, event_type, fixed, last_timestamp, refresh_interval, sequence_number, storage_system, uuid].hash
|
|
197
|
+
[description, error_code, event_id, event_type, fixed, last_timestamp, object_name, refresh_interval, sequence_number, storage_system, uuid].hash
|
|
188
198
|
end
|
|
189
199
|
|
|
190
200
|
# Builds the object from hash
|
|
@@ -16,9 +16,6 @@ require 'time'
|
|
|
16
16
|
module AutosdeOpenapiClient
|
|
17
17
|
# TODO add description
|
|
18
18
|
class SystemTypeCreate
|
|
19
|
-
# component_state
|
|
20
|
-
attr_accessor :component_state
|
|
21
|
-
|
|
22
19
|
# name
|
|
23
20
|
attr_accessor :name
|
|
24
21
|
|
|
@@ -34,32 +31,9 @@ module AutosdeOpenapiClient
|
|
|
34
31
|
# SystemType version
|
|
35
32
|
attr_accessor :version
|
|
36
33
|
|
|
37
|
-
class EnumAttributeValidator
|
|
38
|
-
attr_reader :datatype
|
|
39
|
-
attr_reader :allowable_values
|
|
40
|
-
|
|
41
|
-
def initialize(datatype, allowable_values)
|
|
42
|
-
@allowable_values = allowable_values.map do |value|
|
|
43
|
-
case datatype.to_s
|
|
44
|
-
when /Integer/i
|
|
45
|
-
value.to_i
|
|
46
|
-
when /Float/i
|
|
47
|
-
value.to_f
|
|
48
|
-
else
|
|
49
|
-
value
|
|
50
|
-
end
|
|
51
|
-
end
|
|
52
|
-
end
|
|
53
|
-
|
|
54
|
-
def valid?(value)
|
|
55
|
-
!value || allowable_values.include?(value)
|
|
56
|
-
end
|
|
57
|
-
end
|
|
58
|
-
|
|
59
34
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
60
35
|
def self.attribute_map
|
|
61
36
|
{
|
|
62
|
-
:'component_state' => :'component_state',
|
|
63
37
|
:'name' => :'name',
|
|
64
38
|
:'short_version' => :'short_version',
|
|
65
39
|
:'super_type' => :'super_type',
|
|
@@ -76,7 +50,6 @@ module AutosdeOpenapiClient
|
|
|
76
50
|
# Attribute type mapping.
|
|
77
51
|
def self.openapi_types
|
|
78
52
|
{
|
|
79
|
-
:'component_state' => :'String',
|
|
80
53
|
:'name' => :'String',
|
|
81
54
|
:'short_version' => :'String',
|
|
82
55
|
:'super_type' => :'Integer',
|
|
@@ -106,10 +79,6 @@ module AutosdeOpenapiClient
|
|
|
106
79
|
h[k.to_sym] = v
|
|
107
80
|
}
|
|
108
81
|
|
|
109
|
-
if attributes.key?(:'component_state')
|
|
110
|
-
self.component_state = attributes[:'component_state']
|
|
111
|
-
end
|
|
112
|
-
|
|
113
82
|
if attributes.key?(:'name')
|
|
114
83
|
self.name = attributes[:'name']
|
|
115
84
|
end
|
|
@@ -135,10 +104,6 @@ module AutosdeOpenapiClient
|
|
|
135
104
|
# @return Array for valid properties with the reasons
|
|
136
105
|
def list_invalid_properties
|
|
137
106
|
invalid_properties = Array.new
|
|
138
|
-
if !@component_state.nil? && @component_state.to_s.length > 32
|
|
139
|
-
invalid_properties.push('invalid value for "component_state", the character length must be smaller than or equal to 32.')
|
|
140
|
-
end
|
|
141
|
-
|
|
142
107
|
if !@short_version.nil? && @short_version.to_s.length > 255
|
|
143
108
|
invalid_properties.push('invalid value for "short_version", the character length must be smaller than or equal to 255.')
|
|
144
109
|
end
|
|
@@ -149,23 +114,10 @@ module AutosdeOpenapiClient
|
|
|
149
114
|
# Check to see if the all the properties in the model are valid
|
|
150
115
|
# @return true if the model is valid
|
|
151
116
|
def valid?
|
|
152
|
-
component_state_validator = EnumAttributeValidator.new('String', ["PENDING_CREATION", "CREATED", "DELETED", "PENDING_DELETION", "MODIFICATION", "PENDING_MODIFICATION"])
|
|
153
|
-
return false unless component_state_validator.valid?(@component_state)
|
|
154
|
-
return false if !@component_state.nil? && @component_state.to_s.length > 32
|
|
155
117
|
return false if !@short_version.nil? && @short_version.to_s.length > 255
|
|
156
118
|
true
|
|
157
119
|
end
|
|
158
120
|
|
|
159
|
-
# Custom attribute writer method checking allowed values (enum).
|
|
160
|
-
# @param [Object] component_state Object to be assigned
|
|
161
|
-
def component_state=(component_state)
|
|
162
|
-
validator = EnumAttributeValidator.new('String', ["PENDING_CREATION", "CREATED", "DELETED", "PENDING_DELETION", "MODIFICATION", "PENDING_MODIFICATION"])
|
|
163
|
-
unless validator.valid?(component_state)
|
|
164
|
-
fail ArgumentError, "invalid value for \"component_state\", must be one of #{validator.allowable_values}."
|
|
165
|
-
end
|
|
166
|
-
@component_state = component_state
|
|
167
|
-
end
|
|
168
|
-
|
|
169
121
|
# Custom attribute writer method with validation
|
|
170
122
|
# @param [Object] short_version Value to be assigned
|
|
171
123
|
def short_version=(short_version)
|
|
@@ -181,7 +133,6 @@ module AutosdeOpenapiClient
|
|
|
181
133
|
def ==(o)
|
|
182
134
|
return true if self.equal?(o)
|
|
183
135
|
self.class == o.class &&
|
|
184
|
-
component_state == o.component_state &&
|
|
185
136
|
name == o.name &&
|
|
186
137
|
short_version == o.short_version &&
|
|
187
138
|
super_type == o.super_type &&
|
|
@@ -198,7 +149,7 @@ module AutosdeOpenapiClient
|
|
|
198
149
|
# Calculates hash code according to all attributes.
|
|
199
150
|
# @return [Integer] Hash code
|
|
200
151
|
def hash
|
|
201
|
-
[
|
|
152
|
+
[name, short_version, super_type, uuid, version].hash
|
|
202
153
|
end
|
|
203
154
|
|
|
204
155
|
# Builds the object from hash
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Site Manager API
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 3.2.
|
|
6
|
+
The version of the OpenAPI document: 3.2.5
|
|
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 = '3.2.
|
|
14
|
+
VERSION = '3.2.5'
|
|
15
15
|
end
|
|
@@ -61,6 +61,12 @@ describe AutosdeOpenapiClient::EventResponse do
|
|
|
61
61
|
end
|
|
62
62
|
end
|
|
63
63
|
|
|
64
|
+
describe 'test attribute "object_name"' do
|
|
65
|
+
it 'should work' do
|
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
64
70
|
describe 'test attribute "refresh_interval"' do
|
|
65
71
|
it 'should work' do
|
|
66
72
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
data/spec/models/event_spec.rb
CHANGED
|
@@ -61,6 +61,12 @@ describe AutosdeOpenapiClient::Event do
|
|
|
61
61
|
end
|
|
62
62
|
end
|
|
63
63
|
|
|
64
|
+
describe 'test attribute "object_name"' do
|
|
65
|
+
it 'should work' do
|
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
64
70
|
describe 'test attribute "refresh_interval"' do
|
|
65
71
|
it 'should work' do
|
|
66
72
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
@@ -25,16 +25,6 @@ describe AutosdeOpenapiClient::SystemTypeCreate do
|
|
|
25
25
|
expect(instance).to be_instance_of(AutosdeOpenapiClient::SystemTypeCreate)
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
|
-
describe 'test attribute "component_state"' do
|
|
29
|
-
it 'should work' do
|
|
30
|
-
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
31
|
-
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["PENDING_CREATION", "CREATED", "DELETED", "PENDING_DELETION", "MODIFICATION", "PENDING_MODIFICATION"])
|
|
32
|
-
# validator.allowable_values.each do |value|
|
|
33
|
-
# expect { instance.component_state = value }.not_to raise_error
|
|
34
|
-
# end
|
|
35
|
-
end
|
|
36
|
-
end
|
|
37
|
-
|
|
38
28
|
describe 'test attribute "name"' do
|
|
39
29
|
it 'should work' do
|
|
40
30
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
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: 3.2.
|
|
4
|
+
version: 3.2.5
|
|
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-03-
|
|
11
|
+
date: 2023-03-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -428,117 +428,117 @@ signing_key:
|
|
|
428
428
|
specification_version: 4
|
|
429
429
|
summary: Site Manager API Ruby Gem
|
|
430
430
|
test_files:
|
|
431
|
-
- spec/api/service_resource_attachment_api_spec.rb
|
|
432
|
-
- spec/api/celery_config_api_spec.rb
|
|
433
|
-
- spec/api/volume_api_spec.rb
|
|
434
|
-
- spec/api/host_cluster_membership_api_spec.rb
|
|
435
|
-
- spec/api/provisioning_strategy_api_spec.rb
|
|
436
431
|
- spec/api/system_type_api_spec.rb
|
|
437
|
-
- spec/api/
|
|
438
|
-
- spec/api/host_volume_connection_api_spec.rb
|
|
432
|
+
- spec/api/storage_host_api_spec.rb
|
|
439
433
|
- spec/api/abstract_capability_api_spec.rb
|
|
440
|
-
- spec/api/service_abstract_capability_value_api_spec.rb
|
|
441
|
-
- spec/api/storage_hosts_mapping_api_spec.rb
|
|
442
434
|
- spec/api/snapshot_api_spec.rb
|
|
443
|
-
- spec/api/storage_host_wwpn_candidates_api_spec.rb
|
|
444
|
-
- spec/api/authentication_api_spec.rb
|
|
445
435
|
- spec/api/storage_resource_api_spec.rb
|
|
446
|
-
- spec/api/
|
|
447
|
-
- spec/api/
|
|
436
|
+
- spec/api/auto_sde_project_api_spec.rb
|
|
437
|
+
- spec/api/validate_system_api_spec.rb
|
|
448
438
|
- spec/api/capability_translation_api_spec.rb
|
|
439
|
+
- spec/api/storage_host_wwpn_candidates_api_spec.rb
|
|
440
|
+
- spec/api/job_api_spec.rb
|
|
449
441
|
- spec/api/volume_clone_api_spec.rb
|
|
442
|
+
- spec/api/event_api_spec.rb
|
|
450
443
|
- spec/api/native_capability_api_spec.rb
|
|
451
|
-
- spec/api/
|
|
452
|
-
- spec/api/
|
|
453
|
-
- spec/api/
|
|
454
|
-
- spec/api/
|
|
455
|
-
- spec/api/
|
|
456
|
-
- spec/api/service_api_spec.rb
|
|
457
|
-
- spec/api/host_cluster_api_spec.rb
|
|
458
|
-
- spec/api/volume_migration_api_spec.rb
|
|
459
|
-
- spec/api/profile_api_spec.rb
|
|
444
|
+
- spec/api/host_cluster_volume_mapping_api_spec.rb
|
|
445
|
+
- spec/api/host_cluster_membership_api_spec.rb
|
|
446
|
+
- spec/api/celery_config_api_spec.rb
|
|
447
|
+
- spec/api/auto_sde_role_api_spec.rb
|
|
448
|
+
- spec/api/provisioning_strategy_api_spec.rb
|
|
460
449
|
- spec/api/refresh_system_api_spec.rb
|
|
450
|
+
- spec/api/storage_hosts_mapping_api_spec.rb
|
|
461
451
|
- spec/api/address_api_spec.rb
|
|
452
|
+
- spec/api/host_volume_connection_api_spec.rb
|
|
453
|
+
- spec/api/user_api_spec.rb
|
|
454
|
+
- spec/api/service_resource_attachment_api_spec.rb
|
|
455
|
+
- spec/api/volume_api_spec.rb
|
|
456
|
+
- spec/api/service_abstract_capability_value_api_spec.rb
|
|
457
|
+
- spec/api/service_api_spec.rb
|
|
462
458
|
- spec/api/account_api_spec.rb
|
|
459
|
+
- spec/api/volume_migration_api_spec.rb
|
|
460
|
+
- spec/api/host_cluster_api_spec.rb
|
|
461
|
+
- spec/api/authentication_api_spec.rb
|
|
462
|
+
- spec/api/storage_system_api_spec.rb
|
|
463
463
|
- spec/api/host_api_spec.rb
|
|
464
|
-
- spec/api/
|
|
464
|
+
- spec/api/profile_api_spec.rb
|
|
465
465
|
- spec/api_client_spec.rb
|
|
466
466
|
- spec/configuration_spec.rb
|
|
467
|
-
- spec/models/
|
|
468
|
-
- spec/models/
|
|
469
|
-
- spec/models/
|
|
470
|
-
- spec/models/
|
|
471
|
-
- spec/models/
|
|
467
|
+
- spec/models/host_cluster_volume_mapping_spec.rb
|
|
468
|
+
- spec/models/host_create_spec.rb
|
|
469
|
+
- spec/models/service_resource_attachment_spec.rb
|
|
470
|
+
- spec/models/profile_spec.rb
|
|
471
|
+
- spec/models/volume_create_spec.rb
|
|
472
|
+
- spec/models/account_post_response_spec.rb
|
|
472
473
|
- spec/models/host_volume_connection_spec.rb
|
|
473
|
-
- spec/models/service_resource_attachment_response_spec.rb
|
|
474
|
-
- spec/models/host_cluster_membership_spec.rb
|
|
475
|
-
- spec/models/storage_hosts_mapping_create_spec.rb
|
|
476
474
|
- spec/models/service_create_spec.rb
|
|
477
|
-
- spec/models/
|
|
478
|
-
- spec/models/auth_response_spec.rb
|
|
479
|
-
- spec/models/volume_response_spec.rb
|
|
480
|
-
- spec/models/provisioning_strategy_spec.rb
|
|
481
|
-
- spec/models/storage_system_response_spec.rb
|
|
482
|
-
- spec/models/service_abstract_capability_value_spec.rb
|
|
475
|
+
- spec/models/job_create_spec.rb
|
|
483
476
|
- spec/models/account_spec.rb
|
|
477
|
+
- spec/models/abstract_capability_response_spec.rb
|
|
478
|
+
- spec/models/host_cluster_volume_mapping_create_spec.rb
|
|
479
|
+
- spec/models/snapshot_response_spec.rb
|
|
480
|
+
- spec/models/volume_update_spec.rb
|
|
481
|
+
- spec/models/service_abstract_capability_value_spec.rb
|
|
482
|
+
- spec/models/storage_system_spec.rb
|
|
483
|
+
- spec/models/abstract_capability_spec.rb
|
|
484
|
+
- spec/models/user_spec.rb
|
|
485
|
+
- spec/models/host_cluster_spec.rb
|
|
486
|
+
- spec/models/job_spec.rb
|
|
487
|
+
- spec/models/volume_clone_spec.rb
|
|
484
488
|
- spec/models/validate_system_spec.rb
|
|
485
|
-
- spec/models/account_post_response_spec.rb
|
|
486
|
-
- spec/models/host_cluster_response_spec.rb
|
|
487
|
-
- spec/models/service_spec.rb
|
|
488
|
-
- spec/models/account_post_request_spec.rb
|
|
489
|
-
- spec/models/storage_hosts_mapping_spec.rb
|
|
490
|
-
- spec/models/native_capability_spec.rb
|
|
491
489
|
- spec/models/capability_translation_spec.rb
|
|
492
|
-
- spec/models/
|
|
493
|
-
- spec/models/
|
|
494
|
-
- spec/models/
|
|
495
|
-
- spec/models/
|
|
496
|
-
- spec/models/host_cluster_volume_mapping_spec.rb
|
|
497
|
-
- spec/models/capability_translation_create_spec.rb
|
|
498
|
-
- spec/models/authentication_spec.rb
|
|
499
|
-
- spec/models/user_create_spec.rb
|
|
500
|
-
- spec/models/address_spec.rb
|
|
501
|
-
- spec/models/host_cluster_spec.rb
|
|
502
|
-
- spec/models/event_spec.rb
|
|
503
|
-
- spec/models/volume_update_spec.rb
|
|
504
|
-
- spec/models/snapshot_response_spec.rb
|
|
505
|
-
- spec/models/snapshot_create_spec.rb
|
|
506
|
-
- spec/models/storage_host_response_spec.rb
|
|
507
|
-
- spec/models/refresh_system_spec.rb
|
|
490
|
+
- spec/models/account_post_request_spec.rb
|
|
491
|
+
- spec/models/storage_hosts_mapping_create_spec.rb
|
|
492
|
+
- spec/models/validate_system_data_spec.rb
|
|
493
|
+
- spec/models/storage_host_update_spec.rb
|
|
508
494
|
- spec/models/snapshot_spec.rb
|
|
509
|
-
- spec/models/
|
|
510
|
-
- spec/models/
|
|
511
|
-
- spec/models/abstract_capability_spec.rb
|
|
512
|
-
- spec/models/abstract_capability_response_spec.rb
|
|
495
|
+
- spec/models/host_cluster_create_spec.rb
|
|
496
|
+
- spec/models/storage_resource_update_spec.rb
|
|
513
497
|
- spec/models/system_type_create_spec.rb
|
|
514
|
-
- spec/models/
|
|
515
|
-
- spec/models/
|
|
516
|
-
- spec/models/storage_resource_spec.rb
|
|
517
|
-
- spec/models/host_cluster_volume_mapping_response_spec.rb
|
|
498
|
+
- spec/models/address_create_spec.rb
|
|
499
|
+
- spec/models/storage_system_create_spec.rb
|
|
518
500
|
- spec/models/host_spec.rb
|
|
519
|
-
- spec/models/
|
|
520
|
-
- spec/models/
|
|
521
|
-
- spec/models/
|
|
522
|
-
- spec/models/service_resource_attachment_spec.rb
|
|
523
|
-
- spec/models/storage_system_update_spec.rb
|
|
524
|
-
- spec/models/job_create_spec.rb
|
|
501
|
+
- spec/models/volume_response_spec.rb
|
|
502
|
+
- spec/models/storage_resource_spec.rb
|
|
503
|
+
- spec/models/storage_resource_response_spec.rb
|
|
525
504
|
- spec/models/storage_host_wwpn_candidates_spec.rb
|
|
526
|
-
- spec/models/
|
|
527
|
-
- spec/models/
|
|
505
|
+
- spec/models/auto_sde_project_spec.rb
|
|
506
|
+
- spec/models/job_response_spec.rb
|
|
507
|
+
- spec/models/service_resource_attachment_response_spec.rb
|
|
508
|
+
- spec/models/refresh_system_spec.rb
|
|
509
|
+
- spec/models/storage_host_spec.rb
|
|
510
|
+
- spec/models/capability_translation_create_spec.rb
|
|
511
|
+
- spec/models/host_cluster_volume_mapping_response_spec.rb
|
|
512
|
+
- spec/models/volume_migration_spec.rb
|
|
513
|
+
- spec/models/storage_hosts_mapping_spec.rb
|
|
514
|
+
- spec/models/service_abstract_capability_value_response_spec.rb
|
|
515
|
+
- spec/models/authentication_spec.rb
|
|
516
|
+
- spec/models/host_volume_connection_create_spec.rb
|
|
517
|
+
- spec/models/host_cluster_response_spec.rb
|
|
528
518
|
- spec/models/system_type_response_spec.rb
|
|
519
|
+
- spec/models/service_response_spec.rb
|
|
520
|
+
- spec/models/host_cluster_membership_spec.rb
|
|
521
|
+
- spec/models/event_spec.rb
|
|
522
|
+
- spec/models/service_update_spec.rb
|
|
523
|
+
- spec/models/celery_config_spec.rb
|
|
524
|
+
- spec/models/storage_host_create_spec.rb
|
|
525
|
+
- spec/models/native_capability_spec.rb
|
|
529
526
|
- spec/models/user_update_spec.rb
|
|
530
|
-
- spec/models/volume_spec.rb
|
|
531
|
-
- spec/models/storage_hosts_mapping_response_spec.rb
|
|
532
|
-
- spec/models/address_create_spec.rb
|
|
533
527
|
- spec/models/system_type_spec.rb
|
|
534
|
-
- spec/models/job_response_spec.rb
|
|
535
|
-
- spec/models/volume_create_spec.rb
|
|
536
|
-
- spec/models/storage_system_spec.rb
|
|
537
|
-
- spec/models/user_spec.rb
|
|
538
|
-
- spec/models/host_cluster_volume_mapping_create_spec.rb
|
|
539
528
|
- spec/models/host_cluster_update_spec.rb
|
|
540
|
-
- spec/models/
|
|
541
|
-
- spec/models/
|
|
542
|
-
- spec/models/
|
|
529
|
+
- spec/models/auto_sde_role_spec.rb
|
|
530
|
+
- spec/models/provisioning_strategy_spec.rb
|
|
531
|
+
- spec/models/storage_hosts_mapping_response_spec.rb
|
|
532
|
+
- spec/models/service_spec.rb
|
|
533
|
+
- spec/models/volume_spec.rb
|
|
534
|
+
- spec/models/user_create_spec.rb
|
|
535
|
+
- spec/models/event_response_spec.rb
|
|
536
|
+
- spec/models/snapshot_create_spec.rb
|
|
537
|
+
- spec/models/storage_system_update_spec.rb
|
|
538
|
+
- spec/models/auth_response_spec.rb
|
|
539
|
+
- spec/models/storage_system_response_spec.rb
|
|
540
|
+
- spec/models/storage_resource_create_spec.rb
|
|
543
541
|
- spec/models/async_response_spec.rb
|
|
542
|
+
- spec/models/address_spec.rb
|
|
543
|
+
- spec/models/storage_host_response_spec.rb
|
|
544
544
|
- spec/spec_helper.rb
|