autosde_openapi_client 1.2.12 → 1.2.14
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 +7 -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/StorageSystemApi.md +4 -4
- data/docs/StorageSystemCreate.md +2 -0
- data/docs/StorageSystemResponse.md +36 -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/api/storage_system_api.rb +3 -3
- 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_response.rb +364 -0
- 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 +4 -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/api/storage_system_api_spec.rb +1 -1
- 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_response_spec.rb +96 -0
- data/spec/models/storage_system_spec.rb +6 -0
- data/spec/models/storage_system_update_spec.rb +6 -0
- metadata +18 -2
@@ -16,6 +16,8 @@ require 'time'
|
|
16
16
|
module AutosdeOpenapiClient
|
17
17
|
# TODO add description
|
18
18
|
class StorageSystemUpdate
|
19
|
+
attr_accessor :enabled_capability_values
|
20
|
+
|
19
21
|
# management_ip
|
20
22
|
attr_accessor :management_ip
|
21
23
|
|
@@ -31,6 +33,7 @@ module AutosdeOpenapiClient
|
|
31
33
|
# Attribute mapping from ruby-style variable name to JSON key.
|
32
34
|
def self.attribute_map
|
33
35
|
{
|
36
|
+
:'enabled_capability_values' => :'enabled_capability_values',
|
34
37
|
:'management_ip' => :'management_ip',
|
35
38
|
:'name' => :'name',
|
36
39
|
:'password' => :'password',
|
@@ -46,6 +49,7 @@ module AutosdeOpenapiClient
|
|
46
49
|
# Attribute type mapping.
|
47
50
|
def self.openapi_types
|
48
51
|
{
|
52
|
+
:'enabled_capability_values' => :'ServiceAbstractCapabilityValue',
|
49
53
|
:'management_ip' => :'String',
|
50
54
|
:'name' => :'String',
|
51
55
|
:'password' => :'String',
|
@@ -74,6 +78,10 @@ module AutosdeOpenapiClient
|
|
74
78
|
h[k.to_sym] = v
|
75
79
|
}
|
76
80
|
|
81
|
+
if attributes.key?(:'enabled_capability_values')
|
82
|
+
self.enabled_capability_values = attributes[:'enabled_capability_values']
|
83
|
+
end
|
84
|
+
|
77
85
|
if attributes.key?(:'management_ip')
|
78
86
|
self.management_ip = attributes[:'management_ip']
|
79
87
|
end
|
@@ -124,6 +132,7 @@ module AutosdeOpenapiClient
|
|
124
132
|
def ==(o)
|
125
133
|
return true if self.equal?(o)
|
126
134
|
self.class == o.class &&
|
135
|
+
enabled_capability_values == o.enabled_capability_values &&
|
127
136
|
management_ip == o.management_ip &&
|
128
137
|
name == o.name &&
|
129
138
|
password == o.password &&
|
@@ -139,7 +148,7 @@ module AutosdeOpenapiClient
|
|
139
148
|
# Calculates hash code according to all attributes.
|
140
149
|
# @return [Integer] Hash code
|
141
150
|
def hash
|
142
|
-
[management_ip, name, password, user].hash
|
151
|
+
[enabled_capability_values, management_ip, name, password, user].hash
|
143
152
|
end
|
144
153
|
|
145
154
|
# 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: 1.2.
|
6
|
+
The version of the OpenAPI document: 1.2.14
|
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 = '1.2.
|
14
|
+
VERSION = '1.2.14'
|
15
15
|
end
|
@@ -18,6 +18,7 @@ require 'autosde_openapi_client/configuration'
|
|
18
18
|
|
19
19
|
# Models
|
20
20
|
require 'autosde_openapi_client/models/abstract_capability'
|
21
|
+
require 'autosde_openapi_client/models/abstract_capability_response'
|
21
22
|
require 'autosde_openapi_client/models/account'
|
22
23
|
require 'autosde_openapi_client/models/account_post_request'
|
23
24
|
require 'autosde_openapi_client/models/account_post_response'
|
@@ -52,6 +53,7 @@ require 'autosde_openapi_client/models/provisioning_strategy'
|
|
52
53
|
require 'autosde_openapi_client/models/refresh_system'
|
53
54
|
require 'autosde_openapi_client/models/service'
|
54
55
|
require 'autosde_openapi_client/models/service_abstract_capability_value'
|
56
|
+
require 'autosde_openapi_client/models/service_abstract_capability_value_response'
|
55
57
|
require 'autosde_openapi_client/models/service_create'
|
56
58
|
require 'autosde_openapi_client/models/service_resource_attachment'
|
57
59
|
require 'autosde_openapi_client/models/snapshot'
|
@@ -70,6 +72,7 @@ require 'autosde_openapi_client/models/storage_resource_response'
|
|
70
72
|
require 'autosde_openapi_client/models/storage_resource_update'
|
71
73
|
require 'autosde_openapi_client/models/storage_system'
|
72
74
|
require 'autosde_openapi_client/models/storage_system_create'
|
75
|
+
require 'autosde_openapi_client/models/storage_system_response'
|
73
76
|
require 'autosde_openapi_client/models/storage_system_update'
|
74
77
|
require 'autosde_openapi_client/models/system_type'
|
75
78
|
require 'autosde_openapi_client/models/system_type_create'
|
@@ -105,6 +108,7 @@ require 'autosde_openapi_client/api/profile_api'
|
|
105
108
|
require 'autosde_openapi_client/api/provisioning_strategy_api'
|
106
109
|
require 'autosde_openapi_client/api/refresh_system_api'
|
107
110
|
require 'autosde_openapi_client/api/service_api'
|
111
|
+
require 'autosde_openapi_client/api/service_abstract_capability_value_api'
|
108
112
|
require 'autosde_openapi_client/api/service_resource_attachment_api'
|
109
113
|
require 'autosde_openapi_client/api/snapshot_api'
|
110
114
|
require 'autosde_openapi_client/api/storage_host_api'
|
@@ -34,7 +34,7 @@ describe 'AbstractCapabilityApi' do
|
|
34
34
|
|
35
35
|
# unit tests for abstract_capabilities_get
|
36
36
|
# @param [Hash] opts the optional parameters
|
37
|
-
# @return [Array<
|
37
|
+
# @return [Array<AbstractCapabilityResponse>]
|
38
38
|
describe 'abstract_capabilities_get test' do
|
39
39
|
it 'should work' do
|
40
40
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -54,7 +54,7 @@ describe 'AbstractCapabilityApi' do
|
|
54
54
|
# unit tests for abstract_capabilities_pk_get
|
55
55
|
# @param pk
|
56
56
|
# @param [Hash] opts the optional parameters
|
57
|
-
# @return [
|
57
|
+
# @return [AbstractCapabilityResponse]
|
58
58
|
describe 'abstract_capabilities_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
|
@@ -0,0 +1,74 @@
|
|
1
|
+
=begin
|
2
|
+
#Site Manager API
|
3
|
+
|
4
|
+
#Site Manager API
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: autosde@il.ibm.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.0.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
|
16
|
+
# Unit tests for AutosdeOpenapiClient::ServiceAbstractCapabilityValueApi
|
17
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
18
|
+
# Please update as you see appropriate
|
19
|
+
describe 'ServiceAbstractCapabilityValueApi' do
|
20
|
+
before do
|
21
|
+
# run before each test
|
22
|
+
@api_instance = AutosdeOpenapiClient::ServiceAbstractCapabilityValueApi.new
|
23
|
+
end
|
24
|
+
|
25
|
+
after do
|
26
|
+
# run after each test
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test an instance of ServiceAbstractCapabilityValueApi' do
|
30
|
+
it 'should create an instance of ServiceAbstractCapabilityValueApi' do
|
31
|
+
expect(@api_instance).to be_instance_of(AutosdeOpenapiClient::ServiceAbstractCapabilityValueApi)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
# unit tests for service_abstract_capability_values_get
|
36
|
+
# @param [Hash] opts the optional parameters
|
37
|
+
# @return [Array<ServiceAbstractCapabilityValueResponse>]
|
38
|
+
describe 'service_abstract_capability_values_get test' do
|
39
|
+
it 'should work' do
|
40
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
# unit tests for service_abstract_capability_values_pk_delete
|
45
|
+
# @param pk
|
46
|
+
# @param [Hash] opts the optional parameters
|
47
|
+
# @return [ServiceAbstractCapabilityValue]
|
48
|
+
describe 'service_abstract_capability_values_pk_delete test' do
|
49
|
+
it 'should work' do
|
50
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
# unit tests for service_abstract_capability_values_pk_get
|
55
|
+
# @param pk
|
56
|
+
# @param [Hash] opts the optional parameters
|
57
|
+
# @return [ServiceAbstractCapabilityValueResponse]
|
58
|
+
describe 'service_abstract_capability_values_pk_get test' do
|
59
|
+
it 'should work' do
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
# unit tests for service_abstract_capability_values_post
|
65
|
+
# @param service_abstract_capability_value
|
66
|
+
# @param [Hash] opts the optional parameters
|
67
|
+
# @return [ServiceAbstractCapabilityValue]
|
68
|
+
describe 'service_abstract_capability_values_post test' do
|
69
|
+
it 'should work' do
|
70
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
end
|
@@ -54,7 +54,7 @@ describe 'StorageSystemApi' do
|
|
54
54
|
# unit tests for storage_systems_pk_get
|
55
55
|
# @param pk
|
56
56
|
# @param [Hash] opts the optional parameters
|
57
|
-
# @return [
|
57
|
+
# @return [StorageSystemResponse]
|
58
58
|
describe 'storage_systems_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
|
@@ -0,0 +1,40 @@
|
|
1
|
+
=begin
|
2
|
+
#Site Manager API
|
3
|
+
|
4
|
+
#Site Manager API
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: autosde@il.ibm.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.0.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for AutosdeOpenapiClient::AbstractCapabilityResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe AutosdeOpenapiClient::AbstractCapabilityResponse do
|
21
|
+
let(:instance) { AutosdeOpenapiClient::AbstractCapabilityResponse.new }
|
22
|
+
|
23
|
+
describe 'test an instance of AbstractCapabilityResponse' do
|
24
|
+
it 'should create an instance of AbstractCapabilityResponse' do
|
25
|
+
expect(instance).to be_instance_of(AutosdeOpenapiClient::AbstractCapabilityResponse)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "name"' 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
|
+
|
34
|
+
describe 'test attribute "uuid"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
=begin
|
2
|
+
#Site Manager API
|
3
|
+
|
4
|
+
#Site Manager API
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: autosde@il.ibm.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.0.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for AutosdeOpenapiClient::ServiceAbstractCapabilityValueResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe AutosdeOpenapiClient::ServiceAbstractCapabilityValueResponse do
|
21
|
+
let(:instance) { AutosdeOpenapiClient::ServiceAbstractCapabilityValueResponse.new }
|
22
|
+
|
23
|
+
describe 'test an instance of ServiceAbstractCapabilityValueResponse' do
|
24
|
+
it 'should create an instance of ServiceAbstractCapabilityValueResponse' do
|
25
|
+
expect(instance).to be_instance_of(AutosdeOpenapiClient::ServiceAbstractCapabilityValueResponse)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "abstract_capability"' 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
|
+
|
34
|
+
describe 'test attribute "uuid"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "value"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
@@ -53,6 +53,12 @@ describe AutosdeOpenapiClient::StorageSystemCreate do
|
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
56
|
+
describe 'test attribute "enabled_capability_values"' do
|
57
|
+
it 'should work' do
|
58
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
56
62
|
describe 'test attribute "initial_refresh"' do
|
57
63
|
it 'should work' do
|
58
64
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -0,0 +1,96 @@
|
|
1
|
+
=begin
|
2
|
+
#Site Manager API
|
3
|
+
|
4
|
+
#Site Manager API
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
Contact: autosde@il.ibm.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.0.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for AutosdeOpenapiClient::StorageSystemResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe AutosdeOpenapiClient::StorageSystemResponse do
|
21
|
+
let(:instance) { AutosdeOpenapiClient::StorageSystemResponse.new }
|
22
|
+
|
23
|
+
describe 'test an instance of StorageSystemResponse' do
|
24
|
+
it 'should create an instance of StorageSystemResponse' do
|
25
|
+
expect(instance).to be_instance_of(AutosdeOpenapiClient::StorageSystemResponse)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "auto_refresh"' 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
|
+
|
34
|
+
describe 'test attribute "component_state"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["PENDING_CREATION", "CREATED", "DELETED", "PENDING_DELETION", "MODIFICATION", "PENDING_MODIFICATION"])
|
38
|
+
# validator.allowable_values.each do |value|
|
39
|
+
# expect { instance.component_state = value }.not_to raise_error
|
40
|
+
# end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
describe 'test attribute "enabled_capability_values"' do
|
45
|
+
it 'should work' do
|
46
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
describe 'test attribute "management_ip"' do
|
51
|
+
it 'should work' do
|
52
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
describe 'test attribute "name"' do
|
57
|
+
it 'should work' do
|
58
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
describe 'test attribute "status"' do
|
63
|
+
it 'should work' do
|
64
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
describe 'test attribute "storage_array"' do
|
69
|
+
it 'should work' do
|
70
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
describe 'test attribute "storage_family"' do
|
75
|
+
it 'should work' do
|
76
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
77
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["", "ontap_7mode", "ontap_cluster"])
|
78
|
+
# validator.allowable_values.each do |value|
|
79
|
+
# expect { instance.storage_family = value }.not_to raise_error
|
80
|
+
# end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
describe 'test attribute "system_type"' do
|
85
|
+
it 'should work' do
|
86
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
describe 'test attribute "uuid"' do
|
91
|
+
it 'should work' do
|
92
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
96
|
+
end
|
@@ -41,6 +41,12 @@ describe AutosdeOpenapiClient::StorageSystem do
|
|
41
41
|
end
|
42
42
|
end
|
43
43
|
|
44
|
+
describe 'test attribute "enabled_capability_values"' do
|
45
|
+
it 'should work' do
|
46
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
44
50
|
describe 'test attribute "management_ip"' do
|
45
51
|
it 'should work' do
|
46
52
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -25,6 +25,12 @@ describe AutosdeOpenapiClient::StorageSystemUpdate do
|
|
25
25
|
expect(instance).to be_instance_of(AutosdeOpenapiClient::StorageSystemUpdate)
|
26
26
|
end
|
27
27
|
end
|
28
|
+
describe 'test attribute "enabled_capability_values"' 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 "management_ip"' do
|
29
35
|
it 'should work' do
|
30
36
|
# 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: 1.2.
|
4
|
+
version: 1.2.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-10-
|
11
|
+
date: 2022-10-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -64,6 +64,7 @@ files:
|
|
64
64
|
- autosde_openapi_client.gemspec
|
65
65
|
- docs/AbstractCapability.md
|
66
66
|
- docs/AbstractCapabilityApi.md
|
67
|
+
- docs/AbstractCapabilityResponse.md
|
67
68
|
- docs/Account.md
|
68
69
|
- docs/AccountApi.md
|
69
70
|
- docs/AccountPostRequest.md
|
@@ -116,6 +117,8 @@ files:
|
|
116
117
|
- docs/RefreshSystemApi.md
|
117
118
|
- docs/Service.md
|
118
119
|
- docs/ServiceAbstractCapabilityValue.md
|
120
|
+
- docs/ServiceAbstractCapabilityValueApi.md
|
121
|
+
- docs/ServiceAbstractCapabilityValueResponse.md
|
119
122
|
- docs/ServiceApi.md
|
120
123
|
- docs/ServiceCreate.md
|
121
124
|
- docs/ServiceResourceAttachment.md
|
@@ -142,6 +145,7 @@ files:
|
|
142
145
|
- docs/StorageSystem.md
|
143
146
|
- docs/StorageSystemApi.md
|
144
147
|
- docs/StorageSystemCreate.md
|
148
|
+
- docs/StorageSystemResponse.md
|
145
149
|
- docs/StorageSystemUpdate.md
|
146
150
|
- docs/SystemType.md
|
147
151
|
- docs/SystemTypeApi.md
|
@@ -181,6 +185,7 @@ files:
|
|
181
185
|
- lib/autosde_openapi_client/api/profile_api.rb
|
182
186
|
- lib/autosde_openapi_client/api/provisioning_strategy_api.rb
|
183
187
|
- lib/autosde_openapi_client/api/refresh_system_api.rb
|
188
|
+
- lib/autosde_openapi_client/api/service_abstract_capability_value_api.rb
|
184
189
|
- lib/autosde_openapi_client/api/service_api.rb
|
185
190
|
- lib/autosde_openapi_client/api/service_resource_attachment_api.rb
|
186
191
|
- lib/autosde_openapi_client/api/snapshot_api.rb
|
@@ -198,6 +203,7 @@ files:
|
|
198
203
|
- lib/autosde_openapi_client/api_error.rb
|
199
204
|
- lib/autosde_openapi_client/configuration.rb
|
200
205
|
- lib/autosde_openapi_client/models/abstract_capability.rb
|
206
|
+
- lib/autosde_openapi_client/models/abstract_capability_response.rb
|
201
207
|
- lib/autosde_openapi_client/models/account.rb
|
202
208
|
- lib/autosde_openapi_client/models/account_post_request.rb
|
203
209
|
- lib/autosde_openapi_client/models/account_post_response.rb
|
@@ -232,6 +238,7 @@ files:
|
|
232
238
|
- lib/autosde_openapi_client/models/refresh_system.rb
|
233
239
|
- lib/autosde_openapi_client/models/service.rb
|
234
240
|
- lib/autosde_openapi_client/models/service_abstract_capability_value.rb
|
241
|
+
- lib/autosde_openapi_client/models/service_abstract_capability_value_response.rb
|
235
242
|
- lib/autosde_openapi_client/models/service_create.rb
|
236
243
|
- lib/autosde_openapi_client/models/service_resource_attachment.rb
|
237
244
|
- lib/autosde_openapi_client/models/snapshot.rb
|
@@ -250,6 +257,7 @@ files:
|
|
250
257
|
- lib/autosde_openapi_client/models/storage_resource_update.rb
|
251
258
|
- lib/autosde_openapi_client/models/storage_system.rb
|
252
259
|
- lib/autosde_openapi_client/models/storage_system_create.rb
|
260
|
+
- lib/autosde_openapi_client/models/storage_system_response.rb
|
253
261
|
- lib/autosde_openapi_client/models/storage_system_update.rb
|
254
262
|
- lib/autosde_openapi_client/models/system_type.rb
|
255
263
|
- lib/autosde_openapi_client/models/system_type_create.rb
|
@@ -283,6 +291,7 @@ files:
|
|
283
291
|
- spec/api/profile_api_spec.rb
|
284
292
|
- spec/api/provisioning_strategy_api_spec.rb
|
285
293
|
- spec/api/refresh_system_api_spec.rb
|
294
|
+
- spec/api/service_abstract_capability_value_api_spec.rb
|
286
295
|
- spec/api/service_api_spec.rb
|
287
296
|
- spec/api/service_resource_attachment_api_spec.rb
|
288
297
|
- spec/api/snapshot_api_spec.rb
|
@@ -298,6 +307,7 @@ files:
|
|
298
307
|
- spec/api/volume_safe_delete_api_spec.rb
|
299
308
|
- spec/api_client_spec.rb
|
300
309
|
- spec/configuration_spec.rb
|
310
|
+
- spec/models/abstract_capability_response_spec.rb
|
301
311
|
- spec/models/abstract_capability_spec.rb
|
302
312
|
- spec/models/account_post_request_spec.rb
|
303
313
|
- spec/models/account_post_response_spec.rb
|
@@ -331,6 +341,7 @@ files:
|
|
331
341
|
- spec/models/profile_spec.rb
|
332
342
|
- spec/models/provisioning_strategy_spec.rb
|
333
343
|
- spec/models/refresh_system_spec.rb
|
344
|
+
- spec/models/service_abstract_capability_value_response_spec.rb
|
334
345
|
- spec/models/service_abstract_capability_value_spec.rb
|
335
346
|
- spec/models/service_create_spec.rb
|
336
347
|
- spec/models/service_resource_attachment_spec.rb
|
@@ -350,6 +361,7 @@ files:
|
|
350
361
|
- spec/models/storage_resource_spec.rb
|
351
362
|
- spec/models/storage_resource_update_spec.rb
|
352
363
|
- spec/models/storage_system_create_spec.rb
|
364
|
+
- spec/models/storage_system_response_spec.rb
|
353
365
|
- spec/models/storage_system_spec.rb
|
354
366
|
- spec/models/storage_system_update_spec.rb
|
355
367
|
- spec/models/system_type_create_spec.rb
|
@@ -394,6 +406,7 @@ test_files:
|
|
394
406
|
- spec/api/storage_resource_api_spec.rb
|
395
407
|
- spec/api/abstract_capability_api_spec.rb
|
396
408
|
- spec/api/snapshot_api_spec.rb
|
409
|
+
- spec/api/service_abstract_capability_value_api_spec.rb
|
397
410
|
- spec/api/storage_hosts_mapping_api_spec.rb
|
398
411
|
- spec/api/native_capability_api_spec.rb
|
399
412
|
- spec/api/host_cluster_volume_mapping_api_spec.rb
|
@@ -423,6 +436,7 @@ test_files:
|
|
423
436
|
- spec/api/host_volume_connection_api_spec.rb
|
424
437
|
- spec/api_client_spec.rb
|
425
438
|
- spec/configuration_spec.rb
|
439
|
+
- spec/models/abstract_capability_response_spec.rb
|
426
440
|
- spec/models/native_capability_spec.rb
|
427
441
|
- spec/models/storage_system_update_spec.rb
|
428
442
|
- spec/models/storage_resource_spec.rb
|
@@ -432,10 +446,12 @@ test_files:
|
|
432
446
|
- spec/models/service_resource_attachment_spec.rb
|
433
447
|
- spec/models/storage_hosts_mapping_spec.rb
|
434
448
|
- spec/models/host_cluster_spec.rb
|
449
|
+
- spec/models/service_abstract_capability_value_response_spec.rb
|
435
450
|
- spec/models/storage_host_wwpn_candidates_spec.rb
|
436
451
|
- spec/models/account_post_response_spec.rb
|
437
452
|
- spec/models/user_create_spec.rb
|
438
453
|
- spec/models/storage_host_spec.rb
|
454
|
+
- spec/models/storage_system_response_spec.rb
|
439
455
|
- spec/models/service_abstract_capability_value_spec.rb
|
440
456
|
- spec/models/volume_spec.rb
|
441
457
|
- spec/models/auto_sde_role_spec.rb
|