autosde_openapi_client 3.2.2 → 3.2.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/lib/autosde_openapi_client/models/host_cluster.rb +0 -15
- data/lib/autosde_openapi_client/models/host_cluster_create.rb +0 -15
- data/lib/autosde_openapi_client/models/host_cluster_response.rb +0 -15
- data/lib/autosde_openapi_client/models/host_cluster_update.rb +0 -15
- data/lib/autosde_openapi_client/version.rb +2 -2
- metadata +87 -87
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 235fabc41813b96bf7aab360e5ac58d7eb030409e7d9e81e515f2313315a26f8
|
4
|
+
data.tar.gz: 6415af7c18cc95a23b53491daede23d074c876dfc18e9baa6e09f6bf36452b54
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b1fa0fdbbf768eac482fdb74543adbe9a914d5d0eb3a591746521d9e941c9f7f8a93aa25b994fc5fb0089ff761ff776549a23f46c764f3b546e90b75cbf5930
|
7
|
+
data.tar.gz: 3d8182b2aa4f4c884626d5d7e21e5e9526093929ce0b8dcd4e26831c1ebd365f81fab0f09a359c036c9c2e5a5c56a7dc780718ae3db90ba9e091c47e8380234a
|
@@ -164,10 +164,6 @@ module AutosdeOpenapiClient
|
|
164
164
|
invalid_properties.push('invalid value for "component_state", the character length must be smaller than or equal to 32.')
|
165
165
|
end
|
166
166
|
|
167
|
-
if !@name.nil? && @name.to_s.length > 15
|
168
|
-
invalid_properties.push('invalid value for "name", the character length must be smaller than or equal to 15.')
|
169
|
-
end
|
170
|
-
|
171
167
|
if !@owner_id.nil? && @owner_id.to_s.length > 15
|
172
168
|
invalid_properties.push('invalid value for "owner_id", the character length must be smaller than or equal to 15.')
|
173
169
|
end
|
@@ -189,7 +185,6 @@ module AutosdeOpenapiClient
|
|
189
185
|
component_state_validator = EnumAttributeValidator.new('String', ["PENDING_CREATION", "CREATED", "DELETED", "PENDING_DELETION", "MODIFICATION", "PENDING_MODIFICATION"])
|
190
186
|
return false unless component_state_validator.valid?(@component_state)
|
191
187
|
return false if !@component_state.nil? && @component_state.to_s.length > 32
|
192
|
-
return false if !@name.nil? && @name.to_s.length > 15
|
193
188
|
return false if !@owner_id.nil? && @owner_id.to_s.length > 15
|
194
189
|
return false if !@owner_name.nil? && @owner_name.to_s.length > 15
|
195
190
|
return false if !@protocol.nil? && @protocol.to_s.length > 15
|
@@ -206,16 +201,6 @@ module AutosdeOpenapiClient
|
|
206
201
|
@component_state = component_state
|
207
202
|
end
|
208
203
|
|
209
|
-
# Custom attribute writer method with validation
|
210
|
-
# @param [Object] name Value to be assigned
|
211
|
-
def name=(name)
|
212
|
-
if !name.nil? && name.to_s.length > 15
|
213
|
-
fail ArgumentError, 'invalid value for "name", the character length must be smaller than or equal to 15.'
|
214
|
-
end
|
215
|
-
|
216
|
-
@name = name
|
217
|
-
end
|
218
|
-
|
219
204
|
# Custom attribute writer method with validation
|
220
205
|
# @param [Object] owner_id Value to be assigned
|
221
206
|
def owner_id=(owner_id)
|
@@ -120,10 +120,6 @@ module AutosdeOpenapiClient
|
|
120
120
|
# @return Array for valid properties with the reasons
|
121
121
|
def list_invalid_properties
|
122
122
|
invalid_properties = Array.new
|
123
|
-
if !@name.nil? && @name.to_s.length > 15
|
124
|
-
invalid_properties.push('invalid value for "name", the character length must be smaller than or equal to 15.')
|
125
|
-
end
|
126
|
-
|
127
123
|
if !@owner_id.nil? && @owner_id.to_s.length > 15
|
128
124
|
invalid_properties.push('invalid value for "owner_id", the character length must be smaller than or equal to 15.')
|
129
125
|
end
|
@@ -142,23 +138,12 @@ module AutosdeOpenapiClient
|
|
142
138
|
# Check to see if the all the properties in the model are valid
|
143
139
|
# @return true if the model is valid
|
144
140
|
def valid?
|
145
|
-
return false if !@name.nil? && @name.to_s.length > 15
|
146
141
|
return false if !@owner_id.nil? && @owner_id.to_s.length > 15
|
147
142
|
return false if !@owner_name.nil? && @owner_name.to_s.length > 15
|
148
143
|
return false if !@protocol.nil? && @protocol.to_s.length > 15
|
149
144
|
true
|
150
145
|
end
|
151
146
|
|
152
|
-
# Custom attribute writer method with validation
|
153
|
-
# @param [Object] name Value to be assigned
|
154
|
-
def name=(name)
|
155
|
-
if !name.nil? && name.to_s.length > 15
|
156
|
-
fail ArgumentError, 'invalid value for "name", the character length must be smaller than or equal to 15.'
|
157
|
-
end
|
158
|
-
|
159
|
-
@name = name
|
160
|
-
end
|
161
|
-
|
162
147
|
# Custom attribute writer method with validation
|
163
148
|
# @param [Object] owner_id Value to be assigned
|
164
149
|
def owner_id=(owner_id)
|
@@ -165,10 +165,6 @@ module AutosdeOpenapiClient
|
|
165
165
|
invalid_properties.push('invalid value for "component_state", the character length must be smaller than or equal to 32.')
|
166
166
|
end
|
167
167
|
|
168
|
-
if !@name.nil? && @name.to_s.length > 15
|
169
|
-
invalid_properties.push('invalid value for "name", the character length must be smaller than or equal to 15.')
|
170
|
-
end
|
171
|
-
|
172
168
|
if !@owner_id.nil? && @owner_id.to_s.length > 15
|
173
169
|
invalid_properties.push('invalid value for "owner_id", the character length must be smaller than or equal to 15.')
|
174
170
|
end
|
@@ -190,7 +186,6 @@ module AutosdeOpenapiClient
|
|
190
186
|
component_state_validator = EnumAttributeValidator.new('String', ["PENDING_CREATION", "CREATED", "DELETED", "PENDING_DELETION", "MODIFICATION", "PENDING_MODIFICATION"])
|
191
187
|
return false unless component_state_validator.valid?(@component_state)
|
192
188
|
return false if !@component_state.nil? && @component_state.to_s.length > 32
|
193
|
-
return false if !@name.nil? && @name.to_s.length > 15
|
194
189
|
return false if !@owner_id.nil? && @owner_id.to_s.length > 15
|
195
190
|
return false if !@owner_name.nil? && @owner_name.to_s.length > 15
|
196
191
|
return false if !@protocol.nil? && @protocol.to_s.length > 15
|
@@ -207,16 +202,6 @@ module AutosdeOpenapiClient
|
|
207
202
|
@component_state = component_state
|
208
203
|
end
|
209
204
|
|
210
|
-
# Custom attribute writer method with validation
|
211
|
-
# @param [Object] name Value to be assigned
|
212
|
-
def name=(name)
|
213
|
-
if !name.nil? && name.to_s.length > 15
|
214
|
-
fail ArgumentError, 'invalid value for "name", the character length must be smaller than or equal to 15.'
|
215
|
-
end
|
216
|
-
|
217
|
-
@name = name
|
218
|
-
end
|
219
|
-
|
220
205
|
# Custom attribute writer method with validation
|
221
206
|
# @param [Object] owner_id Value to be assigned
|
222
207
|
def owner_id=(owner_id)
|
@@ -112,10 +112,6 @@ module AutosdeOpenapiClient
|
|
112
112
|
# @return Array for valid properties with the reasons
|
113
113
|
def list_invalid_properties
|
114
114
|
invalid_properties = Array.new
|
115
|
-
if !@name.nil? && @name.to_s.length > 15
|
116
|
-
invalid_properties.push('invalid value for "name", the character length must be smaller than or equal to 15.')
|
117
|
-
end
|
118
|
-
|
119
115
|
if !@owner_id.nil? && @owner_id.to_s.length > 15
|
120
116
|
invalid_properties.push('invalid value for "owner_id", the character length must be smaller than or equal to 15.')
|
121
117
|
end
|
@@ -134,23 +130,12 @@ module AutosdeOpenapiClient
|
|
134
130
|
# Check to see if the all the properties in the model are valid
|
135
131
|
# @return true if the model is valid
|
136
132
|
def valid?
|
137
|
-
return false if !@name.nil? && @name.to_s.length > 15
|
138
133
|
return false if !@owner_id.nil? && @owner_id.to_s.length > 15
|
139
134
|
return false if !@owner_name.nil? && @owner_name.to_s.length > 15
|
140
135
|
return false if !@protocol.nil? && @protocol.to_s.length > 15
|
141
136
|
true
|
142
137
|
end
|
143
138
|
|
144
|
-
# Custom attribute writer method with validation
|
145
|
-
# @param [Object] name Value to be assigned
|
146
|
-
def name=(name)
|
147
|
-
if !name.nil? && name.to_s.length > 15
|
148
|
-
fail ArgumentError, 'invalid value for "name", the character length must be smaller than or equal to 15.'
|
149
|
-
end
|
150
|
-
|
151
|
-
@name = name
|
152
|
-
end
|
153
|
-
|
154
139
|
# Custom attribute writer method with validation
|
155
140
|
# @param [Object] owner_id Value to be assigned
|
156
141
|
def owner_id=(owner_id)
|
@@ -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.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 = '3.2.
|
14
|
+
VERSION = '3.2.3'
|
15
15
|
end
|
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.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-03-
|
11
|
+
date: 2023-03-06 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/storage_host_api_spec.rb
|
432
|
-
- spec/api/host_cluster_membership_api_spec.rb
|
433
431
|
- spec/api/service_resource_attachment_api_spec.rb
|
434
|
-
- spec/api/
|
435
|
-
- spec/api/
|
436
|
-
- spec/api/
|
437
|
-
- spec/api/storage_host_wwpn_candidates_api_spec.rb
|
438
|
-
- spec/api/validate_system_api_spec.rb
|
439
|
-
- spec/api/profile_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
|
440
435
|
- spec/api/provisioning_strategy_api_spec.rb
|
441
|
-
- spec/api/
|
436
|
+
- spec/api/system_type_api_spec.rb
|
437
|
+
- spec/api/storage_system_api_spec.rb
|
438
|
+
- spec/api/host_volume_connection_api_spec.rb
|
439
|
+
- spec/api/abstract_capability_api_spec.rb
|
442
440
|
- spec/api/service_abstract_capability_value_api_spec.rb
|
441
|
+
- spec/api/storage_hosts_mapping_api_spec.rb
|
442
|
+
- spec/api/snapshot_api_spec.rb
|
443
|
+
- spec/api/storage_host_wwpn_candidates_api_spec.rb
|
444
|
+
- spec/api/authentication_api_spec.rb
|
443
445
|
- spec/api/storage_resource_api_spec.rb
|
444
|
-
- spec/api/
|
445
|
-
- spec/api/service_api_spec.rb
|
446
|
-
- spec/api/host_api_spec.rb
|
447
|
-
- spec/api/volume_api_spec.rb
|
448
|
-
- spec/api/user_api_spec.rb
|
449
|
-
- spec/api/job_api_spec.rb
|
450
|
-
- spec/api/host_volume_connection_api_spec.rb
|
451
|
-
- spec/api/event_api_spec.rb
|
452
|
-
- spec/api/auto_sde_project_api_spec.rb
|
446
|
+
- spec/api/auto_sde_role_api_spec.rb
|
453
447
|
- spec/api/host_cluster_volume_mapping_api_spec.rb
|
454
|
-
- spec/api/system_type_api_spec.rb
|
455
448
|
- spec/api/capability_translation_api_spec.rb
|
456
449
|
- spec/api/volume_clone_api_spec.rb
|
457
|
-
- spec/api/celery_config_api_spec.rb
|
458
|
-
- spec/api/abstract_capability_api_spec.rb
|
459
|
-
- spec/api/authentication_api_spec.rb
|
460
450
|
- spec/api/native_capability_api_spec.rb
|
461
|
-
- spec/api/
|
462
|
-
- spec/api/
|
451
|
+
- spec/api/storage_host_api_spec.rb
|
452
|
+
- spec/api/auto_sde_project_api_spec.rb
|
453
|
+
- spec/api/user_api_spec.rb
|
454
|
+
- spec/api/job_api_spec.rb
|
455
|
+
- spec/api/validate_system_api_spec.rb
|
456
|
+
- spec/api/service_api_spec.rb
|
463
457
|
- spec/api/host_cluster_api_spec.rb
|
458
|
+
- spec/api/volume_migration_api_spec.rb
|
459
|
+
- spec/api/profile_api_spec.rb
|
464
460
|
- spec/api/refresh_system_api_spec.rb
|
461
|
+
- spec/api/address_api_spec.rb
|
462
|
+
- spec/api/account_api_spec.rb
|
463
|
+
- spec/api/host_api_spec.rb
|
464
|
+
- spec/api/event_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/storage_system_create_spec.rb
|
470
|
-
- spec/models/service_resource_attachment_spec.rb
|
467
|
+
- spec/models/auto_sde_role_spec.rb
|
468
|
+
- spec/models/storage_resource_update_spec.rb
|
471
469
|
- spec/models/host_volume_connection_create_spec.rb
|
472
|
-
- spec/models/
|
473
|
-
- spec/models/host_spec.rb
|
474
|
-
- spec/models/address_create_spec.rb
|
475
|
-
- spec/models/storage_host_update_spec.rb
|
476
|
-
- spec/models/snapshot_response_spec.rb
|
470
|
+
- spec/models/validate_system_data_spec.rb
|
477
471
|
- spec/models/celery_config_spec.rb
|
478
|
-
- spec/models/storage_host_create_spec.rb
|
479
|
-
- spec/models/storage_resource_spec.rb
|
480
|
-
- spec/models/provisioning_strategy_spec.rb
|
481
472
|
- spec/models/host_volume_connection_spec.rb
|
482
|
-
- spec/models/
|
473
|
+
- spec/models/service_resource_attachment_response_spec.rb
|
483
474
|
- spec/models/host_cluster_membership_spec.rb
|
484
|
-
- spec/models/account_post_request_spec.rb
|
485
|
-
- spec/models/auto_sde_role_spec.rb
|
486
|
-
- spec/models/auto_sde_project_spec.rb
|
487
|
-
- spec/models/async_response_spec.rb
|
488
|
-
- spec/models/volume_update_spec.rb
|
489
|
-
- spec/models/storage_resource_update_spec.rb
|
490
|
-
- spec/models/snapshot_spec.rb
|
491
|
-
- spec/models/storage_system_response_spec.rb
|
492
|
-
- spec/models/snapshot_create_spec.rb
|
493
|
-
- spec/models/host_cluster_spec.rb
|
494
|
-
- spec/models/host_cluster_volume_mapping_create_spec.rb
|
495
|
-
- spec/models/event_spec.rb
|
496
475
|
- spec/models/storage_hosts_mapping_create_spec.rb
|
497
|
-
- spec/models/
|
498
|
-
- spec/models/
|
499
|
-
- spec/models/
|
500
|
-
- spec/models/
|
476
|
+
- spec/models/service_create_spec.rb
|
477
|
+
- spec/models/storage_resource_create_spec.rb
|
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
|
501
482
|
- spec/models/service_abstract_capability_value_spec.rb
|
502
|
-
- spec/models/
|
503
|
-
- spec/models/storage_host_response_spec.rb
|
504
|
-
- spec/models/volume_create_spec.rb
|
505
|
-
- spec/models/service_response_spec.rb
|
506
|
-
- spec/models/validate_system_data_spec.rb
|
507
|
-
- spec/models/storage_hosts_mapping_spec.rb
|
508
|
-
- spec/models/storage_host_wwpn_candidates_spec.rb
|
483
|
+
- spec/models/account_spec.rb
|
509
484
|
- spec/models/validate_system_spec.rb
|
510
|
-
- spec/models/
|
511
|
-
- spec/models/
|
512
|
-
- spec/models/
|
513
|
-
- spec/models/
|
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
|
514
491
|
- spec/models/capability_translation_spec.rb
|
515
|
-
- spec/models/
|
516
|
-
- spec/models/
|
517
|
-
- spec/models/
|
518
|
-
- spec/models/host_cluster_volume_mapping_spec.rb
|
519
|
-
- spec/models/abstract_capability_spec.rb
|
520
|
-
- spec/models/volume_clone_spec.rb
|
521
|
-
- spec/models/volume_response_spec.rb
|
522
|
-
- spec/models/storage_system_spec.rb
|
492
|
+
- spec/models/storage_system_create_spec.rb
|
493
|
+
- spec/models/host_create_spec.rb
|
494
|
+
- spec/models/service_abstract_capability_value_response_spec.rb
|
523
495
|
- spec/models/service_update_spec.rb
|
524
|
-
- 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
|
525
507
|
- spec/models/refresh_system_spec.rb
|
526
|
-
- spec/models/
|
508
|
+
- spec/models/snapshot_spec.rb
|
509
|
+
- spec/models/storage_host_create_spec.rb
|
510
|
+
- spec/models/profile_spec.rb
|
511
|
+
- spec/models/abstract_capability_spec.rb
|
512
|
+
- spec/models/abstract_capability_response_spec.rb
|
513
|
+
- spec/models/system_type_create_spec.rb
|
514
|
+
- spec/models/volume_migration_spec.rb
|
515
|
+
- spec/models/storage_resource_response_spec.rb
|
516
|
+
- spec/models/storage_resource_spec.rb
|
517
|
+
- spec/models/host_cluster_volume_mapping_response_spec.rb
|
518
|
+
- spec/models/host_spec.rb
|
519
|
+
- spec/models/storage_host_spec.rb
|
527
520
|
- spec/models/event_response_spec.rb
|
528
|
-
- spec/models/
|
529
|
-
- spec/models/
|
521
|
+
- spec/models/storage_host_update_spec.rb
|
522
|
+
- spec/models/service_resource_attachment_spec.rb
|
530
523
|
- spec/models/storage_system_update_spec.rb
|
524
|
+
- spec/models/job_create_spec.rb
|
525
|
+
- spec/models/storage_host_wwpn_candidates_spec.rb
|
526
|
+
- spec/models/volume_clone_spec.rb
|
527
|
+
- spec/models/service_response_spec.rb
|
528
|
+
- spec/models/system_type_response_spec.rb
|
529
|
+
- spec/models/user_update_spec.rb
|
530
|
+
- spec/models/volume_spec.rb
|
531
531
|
- spec/models/storage_hosts_mapping_response_spec.rb
|
532
|
+
- spec/models/address_create_spec.rb
|
532
533
|
- spec/models/system_type_spec.rb
|
533
|
-
- spec/models/
|
534
|
+
- spec/models/job_response_spec.rb
|
535
|
+
- spec/models/volume_create_spec.rb
|
536
|
+
- spec/models/storage_system_spec.rb
|
534
537
|
- spec/models/user_spec.rb
|
535
|
-
- spec/models/
|
538
|
+
- spec/models/host_cluster_volume_mapping_create_spec.rb
|
536
539
|
- spec/models/host_cluster_update_spec.rb
|
537
|
-
- spec/models/
|
538
|
-
- spec/models/
|
539
|
-
- spec/models/
|
540
|
-
- spec/models/
|
541
|
-
- spec/models/job_create_spec.rb
|
542
|
-
- spec/models/volume_migration_spec.rb
|
543
|
-
- spec/models/storage_resource_create_spec.rb
|
540
|
+
- spec/models/host_cluster_create_spec.rb
|
541
|
+
- spec/models/job_spec.rb
|
542
|
+
- spec/models/auto_sde_project_spec.rb
|
543
|
+
- spec/models/async_response_spec.rb
|
544
544
|
- spec/spec_helper.rb
|