autosde_openapi_client 1.2.10 → 1.2.11

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6e0106ad0705646759cc5ec00be61bd997b28f4718fd84f18ad9e0ab2a765a1e
4
- data.tar.gz: 2ab47782c3a05ce33c59880908e96e5f5ffb25eff2f27d1798eab9f134b87869
3
+ metadata.gz: 8dbf95e9bb2165bdb39c6aa9efb3638afbe5c1519a0bb23296959530e1584f80
4
+ data.tar.gz: 4a7ea44cfd67e13e133a8dab0fe9f25272a2bc52439fa44dbe2d943c0604e9ac
5
5
  SHA512:
6
- metadata.gz: 314945a5aafdd64f1f669391805e4160dea86bbcba00acd8734f588a44be11e65e0301b4ab273e2491c64d990a27132b474b13fa9df59ef9e488edc83c5f890b
7
- data.tar.gz: c0b586c9350754ffc2186f06c7b7753b84429f09004a054e6be42521ffe76e12428662866d9a425af795befa295a093d99f8342e17061f9de6c85cf84afc613a
6
+ metadata.gz: 3bf67ff3b1d7895c0ccc7571701d9d90c5e62ee6f647e3fc5cdec443dae77c0f3110ee2d9d4b24983ccaacad1bc2b5c1f35a108c1958ba32c5db86aa0fef5c59
7
+ data.tar.gz: 425da7cca431ba3a3b228971c276d24fde4b188611df3f63210f61a394900b5b0b524ddf15f51b45aa364d81b9bfff508608c882709b1bb892d064385270dfe5
@@ -6,7 +6,6 @@
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] |
10
9
  | **management_ip** | **String** | management_ip | [optional] |
11
10
  | **name** | **String** | name | [optional] |
12
11
  | **status** | **String** | status | [optional] |
@@ -23,7 +22,6 @@ require 'autosde_openapi_client'
23
22
  instance = AutosdeOpenapiClient::StorageSystem.new(
24
23
  auto_refresh: null,
25
24
  component_state: null,
26
- enabled_capability_values: null,
27
25
  management_ip: null,
28
26
  name: null,
29
27
  status: null,
@@ -8,7 +8,6 @@
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] |
12
11
  | **initial_refresh** | **Boolean** | initial_refresh | [optional][default to true] |
13
12
  | **iqn** | **String** | | [optional] |
14
13
  | **management_ip** | **String** | management_ip | [optional] |
@@ -34,7 +33,6 @@ instance = AutosdeOpenapiClient::StorageSystemCreate.new(
34
33
  chap_name: null,
35
34
  chap_secret: null,
36
35
  component_state: null,
37
- enabled_capability_values: null,
38
36
  initial_refresh: null,
39
37
  iqn: null,
40
38
  management_ip: null,
@@ -4,7 +4,6 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **enabled_capability_values** | [**ServiceAbstractCapabilityValue**](ServiceAbstractCapabilityValue.md) | | [optional] |
8
7
  | **management_ip** | **String** | management_ip | [optional] |
9
8
  | **name** | **String** | name | [optional] |
10
9
  | **password** | **String** | password | [optional] |
@@ -16,7 +15,6 @@
16
15
  require 'autosde_openapi_client'
17
16
 
18
17
  instance = AutosdeOpenapiClient::StorageSystemUpdate.new(
19
- enabled_capability_values: null,
20
18
  management_ip: null,
21
19
  name: null,
22
20
  password: null,
@@ -22,8 +22,6 @@ module AutosdeOpenapiClient
22
22
  # component_state
23
23
  attr_accessor :component_state
24
24
 
25
- attr_accessor :enabled_capability_values
26
-
27
25
  # management_ip
28
26
  attr_accessor :management_ip
29
27
 
@@ -71,7 +69,6 @@ module AutosdeOpenapiClient
71
69
  {
72
70
  :'auto_refresh' => :'auto_refresh',
73
71
  :'component_state' => :'component_state',
74
- :'enabled_capability_values' => :'enabled_capability_values',
75
72
  :'management_ip' => :'management_ip',
76
73
  :'name' => :'name',
77
74
  :'status' => :'status',
@@ -92,7 +89,6 @@ module AutosdeOpenapiClient
92
89
  {
93
90
  :'auto_refresh' => :'Boolean',
94
91
  :'component_state' => :'String',
95
- :'enabled_capability_values' => :'ServiceAbstractCapabilityValue',
96
92
  :'management_ip' => :'String',
97
93
  :'name' => :'String',
98
94
  :'status' => :'String',
@@ -134,10 +130,6 @@ module AutosdeOpenapiClient
134
130
  self.component_state = attributes[:'component_state']
135
131
  end
136
132
 
137
- if attributes.key?(:'enabled_capability_values')
138
- self.enabled_capability_values = attributes[:'enabled_capability_values']
139
- end
140
-
141
133
  if attributes.key?(:'management_ip')
142
134
  self.management_ip = attributes[:'management_ip']
143
135
  end
@@ -216,7 +208,6 @@ module AutosdeOpenapiClient
216
208
  self.class == o.class &&
217
209
  auto_refresh == o.auto_refresh &&
218
210
  component_state == o.component_state &&
219
- enabled_capability_values == o.enabled_capability_values &&
220
211
  management_ip == o.management_ip &&
221
212
  name == o.name &&
222
213
  status == o.status &&
@@ -235,7 +226,7 @@ module AutosdeOpenapiClient
235
226
  # Calculates hash code according to all attributes.
236
227
  # @return [Integer] Hash code
237
228
  def hash
238
- [auto_refresh, component_state, enabled_capability_values, management_ip, name, status, storage_array, storage_family, system_type, uuid].hash
229
+ [auto_refresh, component_state, management_ip, name, status, storage_array, storage_family, system_type, uuid].hash
239
230
  end
240
231
 
241
232
  # Builds the object from hash
@@ -28,8 +28,6 @@ module AutosdeOpenapiClient
28
28
  # component_state
29
29
  attr_accessor :component_state
30
30
 
31
- attr_accessor :enabled_capability_values
32
-
33
31
  # initial_refresh
34
32
  attr_accessor :initial_refresh
35
33
 
@@ -99,7 +97,6 @@ module AutosdeOpenapiClient
99
97
  :'chap_name' => :'chap_name',
100
98
  :'chap_secret' => :'chap_secret',
101
99
  :'component_state' => :'component_state',
102
- :'enabled_capability_values' => :'enabled_capability_values',
103
100
  :'initial_refresh' => :'initial_refresh',
104
101
  :'iqn' => :'iqn',
105
102
  :'management_ip' => :'management_ip',
@@ -129,7 +126,6 @@ module AutosdeOpenapiClient
129
126
  :'chap_name' => :'String',
130
127
  :'chap_secret' => :'String',
131
128
  :'component_state' => :'String',
132
- :'enabled_capability_values' => :'ServiceAbstractCapabilityValue',
133
129
  :'initial_refresh' => :'Boolean',
134
130
  :'iqn' => :'String',
135
131
  :'management_ip' => :'String',
@@ -186,10 +182,6 @@ module AutosdeOpenapiClient
186
182
  self.component_state = attributes[:'component_state']
187
183
  end
188
184
 
189
- if attributes.key?(:'enabled_capability_values')
190
- self.enabled_capability_values = attributes[:'enabled_capability_values']
191
- end
192
-
193
185
  if attributes.key?(:'initial_refresh')
194
186
  self.initial_refresh = attributes[:'initial_refresh']
195
187
  else
@@ -312,7 +304,6 @@ module AutosdeOpenapiClient
312
304
  chap_name == o.chap_name &&
313
305
  chap_secret == o.chap_secret &&
314
306
  component_state == o.component_state &&
315
- enabled_capability_values == o.enabled_capability_values &&
316
307
  initial_refresh == o.initial_refresh &&
317
308
  iqn == o.iqn &&
318
309
  management_ip == o.management_ip &&
@@ -338,7 +329,7 @@ module AutosdeOpenapiClient
338
329
  # Calculates hash code according to all attributes.
339
330
  # @return [Integer] Hash code
340
331
  def hash
341
- [auto_refresh, chap_name, chap_secret, component_state, enabled_capability_values, initial_refresh, iqn, management_ip, name, password, port_type, secondary_ip, status, storage_array, storage_driver, storage_family, system_type, user, wwpn].hash
332
+ [auto_refresh, chap_name, chap_secret, component_state, initial_refresh, iqn, management_ip, name, password, port_type, secondary_ip, status, storage_array, storage_driver, storage_family, system_type, user, wwpn].hash
342
333
  end
343
334
 
344
335
  # Builds the object from hash
@@ -16,8 +16,6 @@ require 'time'
16
16
  module AutosdeOpenapiClient
17
17
  # TODO add description
18
18
  class StorageSystemUpdate
19
- attr_accessor :enabled_capability_values
20
-
21
19
  # management_ip
22
20
  attr_accessor :management_ip
23
21
 
@@ -33,7 +31,6 @@ module AutosdeOpenapiClient
33
31
  # Attribute mapping from ruby-style variable name to JSON key.
34
32
  def self.attribute_map
35
33
  {
36
- :'enabled_capability_values' => :'enabled_capability_values',
37
34
  :'management_ip' => :'management_ip',
38
35
  :'name' => :'name',
39
36
  :'password' => :'password',
@@ -49,7 +46,6 @@ module AutosdeOpenapiClient
49
46
  # Attribute type mapping.
50
47
  def self.openapi_types
51
48
  {
52
- :'enabled_capability_values' => :'ServiceAbstractCapabilityValue',
53
49
  :'management_ip' => :'String',
54
50
  :'name' => :'String',
55
51
  :'password' => :'String',
@@ -78,10 +74,6 @@ module AutosdeOpenapiClient
78
74
  h[k.to_sym] = v
79
75
  }
80
76
 
81
- if attributes.key?(:'enabled_capability_values')
82
- self.enabled_capability_values = attributes[:'enabled_capability_values']
83
- end
84
-
85
77
  if attributes.key?(:'management_ip')
86
78
  self.management_ip = attributes[:'management_ip']
87
79
  end
@@ -132,7 +124,6 @@ module AutosdeOpenapiClient
132
124
  def ==(o)
133
125
  return true if self.equal?(o)
134
126
  self.class == o.class &&
135
- enabled_capability_values == o.enabled_capability_values &&
136
127
  management_ip == o.management_ip &&
137
128
  name == o.name &&
138
129
  password == o.password &&
@@ -148,7 +139,7 @@ module AutosdeOpenapiClient
148
139
  # Calculates hash code according to all attributes.
149
140
  # @return [Integer] Hash code
150
141
  def hash
151
- [enabled_capability_values, management_ip, name, password, user].hash
142
+ [management_ip, name, password, user].hash
152
143
  end
153
144
 
154
145
  # 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.10
6
+ The version of the OpenAPI document: 1.2.11
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.10'
14
+ VERSION = '1.2.11'
15
15
  end
@@ -53,12 +53,6 @@ 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
-
62
56
  describe 'test attribute "initial_refresh"' do
63
57
  it 'should work' do
64
58
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -41,12 +41,6 @@ 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
-
50
44
  describe 'test attribute "management_ip"' do
51
45
  it 'should work' do
52
46
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -25,12 +25,6 @@ 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
-
34
28
  describe 'test attribute "management_ip"' do
35
29
  it 'should work' do
36
30
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autosde_openapi_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.10
4
+ version: 1.2.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
@@ -389,104 +389,104 @@ signing_key:
389
389
  specification_version: 4
390
390
  summary: Site Manager API Ruby Gem
391
391
  test_files:
392
- - spec/api/user_api_spec.rb
393
392
  - spec/api/system_type_api_spec.rb
394
- - spec/api/service_resource_attachment_api_spec.rb
395
- - spec/api/native_capability_api_spec.rb
396
393
  - spec/api/celery_config_api_spec.rb
397
- - spec/api/profile_api_spec.rb
398
- - spec/api/host_volume_connection_api_spec.rb
399
- - spec/api/storage_system_api_spec.rb
394
+ - spec/api/host_cluster_api_spec.rb
395
+ - spec/api/host_api_spec.rb
396
+ - spec/api/address_api_spec.rb
400
397
  - spec/api/service_api_spec.rb
398
+ - spec/api/volume_api_spec.rb
399
+ - spec/api/refresh_system_api_spec.rb
401
400
  - spec/api/auto_sde_role_api_spec.rb
402
- - spec/api/address_api_spec.rb
401
+ - spec/api/authentication_api_spec.rb
402
+ - spec/api/host_volume_connection_api_spec.rb
403
403
  - spec/api/job_api_spec.rb
404
- - spec/api/volume_api_spec.rb
405
- - spec/api/host_cluster_membership_api_spec.rb
404
+ - spec/api/abstract_capability_api_spec.rb
405
+ - spec/api/native_capability_api_spec.rb
406
+ - spec/api/profile_api_spec.rb
406
407
  - spec/api/storage_host_wwpn_candidates_api_spec.rb
407
- - spec/api/account_api_spec.rb
408
408
  - spec/api/storage_host_api_spec.rb
409
- - spec/api/host_api_spec.rb
410
- - spec/api/host_cluster_api_spec.rb
411
- - spec/api/event_api_spec.rb
412
- - spec/api/authentication_api_spec.rb
413
- - spec/api/provisioning_strategy_api_spec.rb
414
409
  - spec/api/snapshot_api_spec.rb
415
- - spec/api/host_cluster_volume_mapping_api_spec.rb
410
+ - spec/api/event_api_spec.rb
416
411
  - spec/api/auto_sde_project_api_spec.rb
417
- - spec/api/validate_system_api_spec.rb
418
- - spec/api/volume_safe_delete_api_spec.rb
419
- - spec/api/abstract_capability_api_spec.rb
420
- - spec/api/refresh_system_api_spec.rb
412
+ - spec/api/host_cluster_volume_mapping_api_spec.rb
421
413
  - spec/api/storage_hosts_mapping_api_spec.rb
414
+ - spec/api/volume_safe_delete_api_spec.rb
415
+ - spec/api/service_resource_attachment_api_spec.rb
416
+ - spec/api/provisioning_strategy_api_spec.rb
417
+ - spec/api/host_cluster_membership_api_spec.rb
418
+ - spec/api/user_api_spec.rb
422
419
  - spec/api/capability_translation_api_spec.rb
420
+ - spec/api/validate_system_api_spec.rb
421
+ - spec/api/storage_system_api_spec.rb
422
+ - spec/api/account_api_spec.rb
423
423
  - spec/api/storage_resource_api_spec.rb
424
424
  - spec/api_client_spec.rb
425
425
  - spec/configuration_spec.rb
426
- - spec/models/storage_host_wwpn_candidates_spec.rb
427
- - spec/models/host_cluster_spec.rb
428
- - spec/models/storage_host_update_spec.rb
429
- - spec/models/account_post_response_spec.rb
430
- - spec/models/storage_hosts_mapping_spec.rb
431
- - spec/models/address_create_spec.rb
432
- - spec/models/host_cluster_volume_mapping_response_spec.rb
433
- - spec/models/volume_spec.rb
434
- - spec/models/event_response_spec.rb
435
- - spec/models/native_capability_spec.rb
436
- - spec/models/storage_host_response_spec.rb
437
- - spec/models/volume_update_spec.rb
438
- - spec/models/address_spec.rb
439
- - spec/models/storage_resource_create_spec.rb
440
- - spec/models/host_cluster_membership_spec.rb
441
- - spec/models/storage_host_spec.rb
442
- - spec/models/system_type_create_spec.rb
426
+ - spec/models/snapshot_create_spec.rb
427
+ - spec/models/validate_system_spec.rb
443
428
  - spec/models/service_abstract_capability_value_spec.rb
444
- - spec/models/storage_system_create_spec.rb
429
+ - spec/models/user_create_spec.rb
430
+ - spec/models/host_cluster_volume_mapping_create_spec.rb
431
+ - spec/models/host_cluster_create_spec.rb
445
432
  - spec/models/storage_resource_spec.rb
446
- - spec/models/user_update_spec.rb
433
+ - spec/models/storage_hosts_mapping_response_spec.rb
434
+ - spec/models/storage_resource_response_spec.rb
435
+ - spec/models/volume_response_spec.rb
436
+ - spec/models/host_cluster_membership_spec.rb
447
437
  - spec/models/async_response_spec.rb
448
- - spec/models/volume_safe_delete_create_spec.rb
438
+ - spec/models/storage_host_response_spec.rb
439
+ - spec/models/storage_host_wwpn_candidates_spec.rb
440
+ - spec/models/volume_spec.rb
441
+ - spec/models/storage_host_create_spec.rb
449
442
  - spec/models/job_create_spec.rb
450
- - spec/models/host_create_spec.rb
451
- - spec/models/host_cluster_volume_mapping_spec.rb
452
- - spec/models/host_cluster_response_spec.rb
453
- - spec/models/account_spec.rb
454
- - spec/models/storage_resource_response_spec.rb
455
- - spec/models/account_post_request_spec.rb
456
- - spec/models/host_volume_connection_spec.rb
457
- - spec/models/host_cluster_create_spec.rb
458
- - spec/models/validate_system_spec.rb
443
+ - spec/models/celery_config_spec.rb
459
444
  - spec/models/system_type_spec.rb
460
- - spec/models/refresh_system_spec.rb
461
- - spec/models/volume_safe_delete_spec.rb
462
- - spec/models/host_volume_connection_create_spec.rb
463
- - spec/models/storage_hosts_mapping_response_spec.rb
464
445
  - spec/models/service_create_spec.rb
465
- - spec/models/host_cluster_volume_mapping_create_spec.rb
466
- - spec/models/storage_hosts_mapping_create_spec.rb
467
- - spec/models/celery_config_spec.rb
468
- - spec/models/profile_spec.rb
469
- - spec/models/auto_sde_role_spec.rb
470
- - spec/models/storage_resource_update_spec.rb
471
- - spec/models/volume_response_spec.rb
472
446
  - spec/models/auth_response_spec.rb
473
- - spec/models/event_spec.rb
474
- - spec/models/snapshot_create_spec.rb
475
- - spec/models/capability_translation_spec.rb
476
447
  - spec/models/abstract_capability_spec.rb
477
- - spec/models/user_spec.rb
478
- - spec/models/authentication_spec.rb
448
+ - spec/models/storage_host_spec.rb
449
+ - spec/models/storage_resource_update_spec.rb
450
+ - spec/models/provisioning_strategy_spec.rb
451
+ - spec/models/volume_update_spec.rb
452
+ - spec/models/job_spec.rb
453
+ - spec/models/host_cluster_response_spec.rb
479
454
  - spec/models/service_resource_attachment_spec.rb
480
- - spec/models/capability_translation_create_spec.rb
481
- - spec/models/storage_system_spec.rb
482
- - spec/models/storage_host_create_spec.rb
455
+ - spec/models/volume_safe_delete_spec.rb
483
456
  - spec/models/auto_sde_project_spec.rb
484
- - spec/models/job_spec.rb
485
- - spec/models/volume_create_spec.rb
457
+ - spec/models/storage_system_create_spec.rb
458
+ - spec/models/storage_system_update_spec.rb
459
+ - spec/models/host_cluster_spec.rb
460
+ - spec/models/host_cluster_volume_mapping_response_spec.rb
461
+ - spec/models/host_cluster_volume_mapping_spec.rb
486
462
  - spec/models/service_spec.rb
463
+ - spec/models/host_volume_connection_spec.rb
464
+ - spec/models/address_spec.rb
465
+ - spec/models/event_spec.rb
466
+ - spec/models/system_type_create_spec.rb
467
+ - spec/models/capability_translation_spec.rb
468
+ - spec/models/auto_sde_role_spec.rb
469
+ - spec/models/storage_hosts_mapping_create_spec.rb
470
+ - spec/models/account_post_request_spec.rb
471
+ - spec/models/address_create_spec.rb
472
+ - spec/models/host_volume_connection_create_spec.rb
473
+ - spec/models/account_post_response_spec.rb
474
+ - spec/models/user_update_spec.rb
475
+ - spec/models/refresh_system_spec.rb
476
+ - spec/models/host_create_spec.rb
477
+ - spec/models/account_spec.rb
478
+ - spec/models/storage_system_spec.rb
479
+ - spec/models/native_capability_spec.rb
480
+ - spec/models/volume_safe_delete_create_spec.rb
487
481
  - spec/models/host_spec.rb
488
- - spec/models/storage_system_update_spec.rb
489
- - spec/models/provisioning_strategy_spec.rb
482
+ - spec/models/storage_host_update_spec.rb
483
+ - spec/models/storage_resource_create_spec.rb
484
+ - spec/models/volume_create_spec.rb
485
+ - spec/models/storage_hosts_mapping_spec.rb
490
486
  - spec/models/snapshot_spec.rb
491
- - spec/models/user_create_spec.rb
487
+ - spec/models/capability_translation_create_spec.rb
488
+ - spec/models/user_spec.rb
489
+ - spec/models/authentication_spec.rb
490
+ - spec/models/profile_spec.rb
491
+ - spec/models/event_response_spec.rb
492
492
  - spec/spec_helper.rb