autosde_openapi_client 2.0.1 → 2.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 165392a4f71228a21273d335c5f92d7ac3dc2a49f34adb03d1de4ba392110f96
4
- data.tar.gz: 12884a8fd70c591a679f4792ade6e28cfec3ad0bb85df6cfc65c8c4cb370abe0
3
+ metadata.gz: 2520158a61bed01502955bd5b080d499182e7f302471b03b704ae92fb260ef92
4
+ data.tar.gz: dfd9b4c9ba916f3c6591e51a477a4ebdb3c63ce1e03e5450294023c475fe1510
5
5
  SHA512:
6
- metadata.gz: 48df2ff117b82845389c36fa43e44193e11195ecdac9442cbc92ed2c68cf59c997d7ecd699bca294b29d1b5181baa877770a0f5a0af34000f5dee8c4e3a14977
7
- data.tar.gz: 91d92e01941bd98be7a2dc44db3fb48ebcc2515756b4a1709f06b61f005a602928d01af6699819ba24572e46995cc3dc8442a50fbd5ea22a3e126ecd3847c96b
6
+ metadata.gz: 3d37171e3f6890caf6f26135cb86513d028d091269f2834dd2fdaceef8392039e1f4ba427d9fc05647996c1f8bbf28cf03beba24c1074042dd76be9b0e727f99
7
+ data.tar.gz: fbca15894dd7aea04710e0a6412a6aa771cf563f37701baf0988d5a622b63b5b68442c89cb450def83c3e23799ccef1f1a86f5db94918b1aa0500f9a05f3529f
@@ -210,7 +210,7 @@ end
210
210
 
211
211
  ## host_clusters_post
212
212
 
213
- > <HostClusterResponse> host_clusters_post(host_cluster_create)
213
+ > <AsyncResponse> host_clusters_post(host_cluster_create)
214
214
 
215
215
 
216
216
 
@@ -241,7 +241,7 @@ end
241
241
 
242
242
  This returns an Array which contains the response data, status code and headers.
243
243
 
244
- > <Array(<HostClusterResponse>, Integer, Hash)> host_clusters_post_with_http_info(host_cluster_create)
244
+ > <Array(<AsyncResponse>, Integer, Hash)> host_clusters_post_with_http_info(host_cluster_create)
245
245
 
246
246
  ```ruby
247
247
  begin
@@ -249,7 +249,7 @@ begin
249
249
  data, status_code, headers = api_instance.host_clusters_post_with_http_info(host_cluster_create)
250
250
  p status_code # => 2xx
251
251
  p headers # => { ... }
252
- p data # => <HostClusterResponse>
252
+ p data # => <AsyncResponse>
253
253
  rescue AutosdeOpenapiClient::ApiError => e
254
254
  puts "Error when calling HostClusterApi->host_clusters_post_with_http_info: #{e}"
255
255
  end
@@ -263,7 +263,7 @@ end
263
263
 
264
264
  ### Return type
265
265
 
266
- [**HostClusterResponse**](HostClusterResponse.md)
266
+ [**AsyncResponse**](AsyncResponse.md)
267
267
 
268
268
  ### Authorization
269
269
 
@@ -192,7 +192,7 @@ module AutosdeOpenapiClient
192
192
 
193
193
  # @param host_cluster_create [HostClusterCreate]
194
194
  # @param [Hash] opts the optional parameters
195
- # @return [HostClusterResponse]
195
+ # @return [AsyncResponse]
196
196
  def host_clusters_post(host_cluster_create, opts = {})
197
197
  data, _status_code, _headers = host_clusters_post_with_http_info(host_cluster_create, opts)
198
198
  data
@@ -200,7 +200,7 @@ module AutosdeOpenapiClient
200
200
 
201
201
  # @param host_cluster_create [HostClusterCreate]
202
202
  # @param [Hash] opts the optional parameters
203
- # @return [Array<(HostClusterResponse, Integer, Hash)>] HostClusterResponse data, response status code and response headers
203
+ # @return [Array<(AsyncResponse, Integer, Hash)>] AsyncResponse data, response status code and response headers
204
204
  def host_clusters_post_with_http_info(host_cluster_create, opts = {})
205
205
  if @api_client.config.debugging
206
206
  @api_client.config.logger.debug 'Calling API: HostClusterApi.host_clusters_post ...'
@@ -229,7 +229,7 @@ module AutosdeOpenapiClient
229
229
  post_body = opts[:debug_body] || @api_client.object_to_http_body(host_cluster_create)
230
230
 
231
231
  # return_type
232
- return_type = opts[:debug_return_type] || 'HostClusterResponse'
232
+ return_type = opts[:debug_return_type] || 'AsyncResponse'
233
233
 
234
234
  # auth_names
235
235
  auth_names = opts[:debug_auth_names] || ['bearerAuth']
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Site Manager API
5
5
 
6
- The version of the OpenAPI document: 2.0.1
6
+ The version of the OpenAPI document: 2.0.3
7
7
  Contact: autosde@il.ibm.com
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.0.0
@@ -11,5 +11,5 @@ OpenAPI Generator version: 5.0.0
11
11
  =end
12
12
 
13
13
  module AutosdeOpenapiClient
14
- VERSION = '2.0.1'
14
+ VERSION = '2.0.3'
15
15
  end
@@ -64,7 +64,7 @@ describe 'HostClusterApi' do
64
64
  # unit tests for host_clusters_post
65
65
  # @param host_cluster_create
66
66
  # @param [Hash] opts the optional parameters
67
- # @return [HostClusterResponse]
67
+ # @return [AsyncResponse]
68
68
  describe 'host_clusters_post test' do
69
69
  it 'should work' do
70
70
  # 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: 2.0.1
4
+ version: 2.0.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: 2022-11-02 00:00:00.000000000 Z
11
+ date: 2022-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -401,108 +401,108 @@ signing_key:
401
401
  specification_version: 4
402
402
  summary: Site Manager API Ruby Gem
403
403
  test_files:
404
- - spec/api/volume_safe_delete_api_spec.rb
405
- - spec/api/authentication_api_spec.rb
406
- - spec/api/storage_resource_api_spec.rb
407
- - spec/api/abstract_capability_api_spec.rb
404
+ - spec/api/job_api_spec.rb
405
+ - spec/api/system_type_api_spec.rb
406
+ - spec/api/refresh_system_api_spec.rb
408
407
  - spec/api/snapshot_api_spec.rb
409
- - spec/api/service_abstract_capability_value_api_spec.rb
408
+ - spec/api/user_api_spec.rb
409
+ - spec/api/auto_sde_project_api_spec.rb
410
+ - spec/api/event_api_spec.rb
411
+ - spec/api/volume_api_spec.rb
412
+ - spec/api/authentication_api_spec.rb
413
+ - spec/api/storage_system_api_spec.rb
414
+ - spec/api/host_api_spec.rb
415
+ - spec/api/validate_system_api_spec.rb
410
416
  - spec/api/storage_hosts_mapping_api_spec.rb
411
417
  - spec/api/native_capability_api_spec.rb
412
- - spec/api/host_cluster_volume_mapping_api_spec.rb
418
+ - spec/api/celery_config_api_spec.rb
419
+ - spec/api/address_api_spec.rb
413
420
  - spec/api/profile_api_spec.rb
421
+ - spec/api/service_abstract_capability_value_api_spec.rb
414
422
  - spec/api/capability_translation_api_spec.rb
415
- - spec/api/service_api_spec.rb
416
- - spec/api/auto_sde_role_api_spec.rb
417
- - spec/api/host_cluster_membership_api_spec.rb
423
+ - spec/api/host_cluster_volume_mapping_api_spec.rb
418
424
  - spec/api/service_resource_attachment_api_spec.rb
419
- - spec/api/user_api_spec.rb
420
- - spec/api/job_api_spec.rb
421
- - spec/api/volume_api_spec.rb
422
- - spec/api/auto_sde_project_api_spec.rb
423
- - spec/api/validate_system_api_spec.rb
425
+ - spec/api/service_api_spec.rb
426
+ - spec/api/volume_safe_delete_api_spec.rb
427
+ - spec/api/host_volume_connection_api_spec.rb
428
+ - spec/api/storage_resource_api_spec.rb
424
429
  - spec/api/provisioning_strategy_api_spec.rb
425
- - spec/api/system_type_api_spec.rb
426
- - spec/api/storage_host_api_spec.rb
427
430
  - spec/api/storage_host_wwpn_candidates_api_spec.rb
428
- - spec/api/refresh_system_api_spec.rb
429
- - spec/api/host_api_spec.rb
430
- - spec/api/address_api_spec.rb
431
- - spec/api/account_api_spec.rb
432
- - spec/api/event_api_spec.rb
433
- - spec/api/celery_config_api_spec.rb
434
- - spec/api/storage_system_api_spec.rb
431
+ - spec/api/auto_sde_role_api_spec.rb
432
+ - spec/api/storage_host_api_spec.rb
435
433
  - spec/api/host_cluster_api_spec.rb
436
- - spec/api/host_volume_connection_api_spec.rb
434
+ - spec/api/account_api_spec.rb
435
+ - spec/api/abstract_capability_api_spec.rb
436
+ - spec/api/host_cluster_membership_api_spec.rb
437
437
  - spec/api_client_spec.rb
438
438
  - spec/configuration_spec.rb
439
- - spec/models/abstract_capability_response_spec.rb
440
- - spec/models/native_capability_spec.rb
441
439
  - spec/models/storage_system_update_spec.rb
442
- - spec/models/storage_resource_spec.rb
443
- - spec/models/async_response_spec.rb
444
- - spec/models/host_cluster_volume_mapping_create_spec.rb
445
- - spec/models/storage_resource_update_spec.rb
446
- - spec/models/service_resource_attachment_spec.rb
440
+ - spec/models/storage_hosts_mapping_response_spec.rb
441
+ - spec/models/abstract_capability_response_spec.rb
442
+ - spec/models/volume_safe_delete_create_spec.rb
443
+ - spec/models/user_spec.rb
444
+ - spec/models/validate_system_spec.rb
447
445
  - spec/models/storage_hosts_mapping_spec.rb
448
- - spec/models/host_cluster_spec.rb
449
- - spec/models/service_abstract_capability_value_response_spec.rb
450
- - spec/models/storage_host_wwpn_candidates_spec.rb
451
- - spec/models/account_post_response_spec.rb
452
- - spec/models/user_create_spec.rb
453
- - spec/models/storage_host_spec.rb
454
- - spec/models/storage_system_response_spec.rb
446
+ - spec/models/service_create_spec.rb
447
+ - spec/models/account_post_request_spec.rb
455
448
  - spec/models/service_abstract_capability_value_spec.rb
456
- - spec/models/volume_spec.rb
457
- - spec/models/auto_sde_role_spec.rb
458
- - spec/models/host_cluster_volume_mapping_response_spec.rb
459
- - spec/models/event_response_spec.rb
460
- - spec/models/user_spec.rb
461
- - spec/models/host_create_spec.rb
462
- - spec/models/event_spec.rb
463
- - spec/models/storage_system_create_spec.rb
464
- - spec/models/authentication_spec.rb
465
- - spec/models/provisioning_strategy_spec.rb
466
449
  - spec/models/job_spec.rb
467
- - spec/models/storage_resource_response_spec.rb
468
- - spec/models/host_volume_connection_create_spec.rb
469
- - spec/models/auto_sde_project_spec.rb
470
- - spec/models/system_type_spec.rb
471
- - spec/models/storage_resource_create_spec.rb
472
- - spec/models/auth_response_spec.rb
473
- - spec/models/capability_translation_spec.rb
474
450
  - spec/models/abstract_capability_spec.rb
475
- - spec/models/host_cluster_response_spec.rb
476
- - spec/models/storage_host_response_spec.rb
451
+ - spec/models/service_spec.rb
452
+ - spec/models/snapshot_create_spec.rb
453
+ - spec/models/service_resource_attachment_spec.rb
454
+ - spec/models/volume_response_spec.rb
455
+ - spec/models/system_type_create_spec.rb
456
+ - spec/models/storage_host_wwpn_candidates_spec.rb
457
+ - spec/models/auth_response_spec.rb
458
+ - spec/models/storage_resource_spec.rb
459
+ - spec/models/job_create_spec.rb
477
460
  - spec/models/storage_host_create_spec.rb
478
- - spec/models/validate_system_spec.rb
479
- - spec/models/storage_hosts_mapping_response_spec.rb
480
- - spec/models/host_volume_connection_spec.rb
461
+ - spec/models/auto_sde_project_spec.rb
462
+ - spec/models/storage_system_response_spec.rb
481
463
  - spec/models/host_spec.rb
482
- - spec/models/storage_hosts_mapping_create_spec.rb
483
464
  - spec/models/profile_spec.rb
484
- - spec/models/service_spec.rb
485
- - spec/models/user_update_spec.rb
486
- - spec/models/volume_update_spec.rb
487
- - spec/models/celery_config_spec.rb
488
- - spec/models/volume_create_spec.rb
489
- - spec/models/address_spec.rb
490
- - spec/models/system_type_create_spec.rb
491
- - spec/models/host_cluster_volume_mapping_spec.rb
465
+ - spec/models/host_volume_connection_create_spec.rb
466
+ - spec/models/storage_system_create_spec.rb
467
+ - spec/models/async_response_spec.rb
468
+ - spec/models/storage_hosts_mapping_create_spec.rb
469
+ - spec/models/storage_resource_response_spec.rb
492
470
  - spec/models/snapshot_spec.rb
493
- - spec/models/storage_host_update_spec.rb
494
- - spec/models/account_spec.rb
495
- - spec/models/volume_safe_delete_spec.rb
471
+ - spec/models/capability_translation_spec.rb
472
+ - spec/models/account_post_response_spec.rb
496
473
  - spec/models/address_create_spec.rb
497
- - spec/models/volume_safe_delete_create_spec.rb
498
- - spec/models/capability_translation_create_spec.rb
499
- - spec/models/host_cluster_membership_spec.rb
500
- - spec/models/job_create_spec.rb
501
- - spec/models/volume_response_spec.rb
474
+ - spec/models/host_cluster_volume_mapping_spec.rb
475
+ - spec/models/authentication_spec.rb
476
+ - spec/models/host_cluster_volume_mapping_response_spec.rb
477
+ - spec/models/storage_resource_update_spec.rb
478
+ - spec/models/provisioning_strategy_spec.rb
479
+ - spec/models/celery_config_spec.rb
480
+ - spec/models/host_volume_connection_spec.rb
502
481
  - spec/models/host_cluster_create_spec.rb
482
+ - spec/models/address_spec.rb
483
+ - spec/models/account_spec.rb
503
484
  - spec/models/refresh_system_spec.rb
504
- - spec/models/snapshot_create_spec.rb
505
- - spec/models/service_create_spec.rb
485
+ - spec/models/capability_translation_create_spec.rb
486
+ - spec/models/host_cluster_response_spec.rb
487
+ - spec/models/volume_safe_delete_spec.rb
488
+ - spec/models/event_response_spec.rb
489
+ - spec/models/service_abstract_capability_value_response_spec.rb
490
+ - spec/models/storage_host_response_spec.rb
491
+ - spec/models/host_create_spec.rb
492
+ - spec/models/auto_sde_role_spec.rb
493
+ - spec/models/volume_update_spec.rb
494
+ - spec/models/storage_resource_create_spec.rb
495
+ - spec/models/native_capability_spec.rb
496
+ - spec/models/volume_spec.rb
497
+ - spec/models/volume_create_spec.rb
498
+ - spec/models/event_spec.rb
506
499
  - spec/models/storage_system_spec.rb
507
- - spec/models/account_post_request_spec.rb
500
+ - spec/models/host_cluster_volume_mapping_create_spec.rb
501
+ - spec/models/host_cluster_membership_spec.rb
502
+ - spec/models/host_cluster_spec.rb
503
+ - spec/models/storage_host_update_spec.rb
504
+ - spec/models/user_update_spec.rb
505
+ - spec/models/storage_host_spec.rb
506
+ - spec/models/user_create_spec.rb
507
+ - spec/models/system_type_spec.rb
508
508
  - spec/spec_helper.rb