autosde_openapi_client 2.0.2 → 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: 61155864b31a7054807ba7a1d74fc2d8896c72ea2643fede7b289d4a18f72b67
4
- data.tar.gz: 67fcdce98a6ac480a2bbcf7ebc4be024523bafb1acdbeb829e8fd875c9ae007b
3
+ metadata.gz: 2520158a61bed01502955bd5b080d499182e7f302471b03b704ae92fb260ef92
4
+ data.tar.gz: dfd9b4c9ba916f3c6591e51a477a4ebdb3c63ce1e03e5450294023c475fe1510
5
5
  SHA512:
6
- metadata.gz: 194a980286f33edaf3a6da2ec2256429d9761f470448d647c569e7c85a714d6a64d1d813a29b364b29890a54d55bf238ca2aaf463aa6ebd5248f873b432ca12b
7
- data.tar.gz: 3be5436b83901863f995d97ad07a5df8d6e6b1f4d9fa9826155e3bdabfb1caf3fef6e9b5ca4c29e50ec75a4daa1e6d124f33806b46fd5b258ffc9903ebd443c3
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.2
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.2'
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.2
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-12-11 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/storage_resource_api_spec.rb
405
- - spec/api/host_cluster_membership_api_spec.rb
406
- - spec/api/native_capability_api_spec.rb
407
- - spec/api/host_volume_connection_api_spec.rb
408
- - spec/api/refresh_system_api_spec.rb
409
- - spec/api/service_abstract_capability_value_api_spec.rb
410
404
  - spec/api/job_api_spec.rb
411
- - spec/api/host_cluster_api_spec.rb
412
- - spec/api/profile_api_spec.rb
405
+ - spec/api/system_type_api_spec.rb
406
+ - spec/api/refresh_system_api_spec.rb
413
407
  - spec/api/snapshot_api_spec.rb
414
- - spec/api/storage_host_api_spec.rb
415
- - spec/api/event_api_spec.rb
408
+ - spec/api/user_api_spec.rb
416
409
  - spec/api/auto_sde_project_api_spec.rb
417
- - spec/api/account_api_spec.rb
418
- - spec/api/address_api_spec.rb
419
- - spec/api/validate_system_api_spec.rb
420
- - spec/api/authentication_api_spec.rb
421
- - spec/api/host_api_spec.rb
410
+ - spec/api/event_api_spec.rb
422
411
  - spec/api/volume_api_spec.rb
412
+ - spec/api/authentication_api_spec.rb
423
413
  - spec/api/storage_system_api_spec.rb
424
- - spec/api/user_api_spec.rb
425
- - spec/api/system_type_api_spec.rb
414
+ - spec/api/host_api_spec.rb
415
+ - spec/api/validate_system_api_spec.rb
416
+ - spec/api/storage_hosts_mapping_api_spec.rb
417
+ - spec/api/native_capability_api_spec.rb
418
+ - spec/api/celery_config_api_spec.rb
419
+ - spec/api/address_api_spec.rb
420
+ - spec/api/profile_api_spec.rb
421
+ - spec/api/service_abstract_capability_value_api_spec.rb
426
422
  - spec/api/capability_translation_api_spec.rb
427
- - spec/api/storage_host_wwpn_candidates_api_spec.rb
428
- - spec/api/volume_safe_delete_api_spec.rb
429
423
  - spec/api/host_cluster_volume_mapping_api_spec.rb
424
+ - spec/api/service_resource_attachment_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
429
+ - spec/api/provisioning_strategy_api_spec.rb
430
+ - spec/api/storage_host_wwpn_candidates_api_spec.rb
430
431
  - spec/api/auto_sde_role_api_spec.rb
432
+ - spec/api/storage_host_api_spec.rb
433
+ - spec/api/host_cluster_api_spec.rb
434
+ - spec/api/account_api_spec.rb
431
435
  - spec/api/abstract_capability_api_spec.rb
432
- - spec/api/celery_config_api_spec.rb
433
- - spec/api/provisioning_strategy_api_spec.rb
434
- - spec/api/storage_hosts_mapping_api_spec.rb
435
- - spec/api/service_api_spec.rb
436
- - spec/api/service_resource_attachment_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/service_spec.rb
439
+ - spec/models/storage_system_update_spec.rb
440
440
  - spec/models/storage_hosts_mapping_response_spec.rb
441
- - spec/models/account_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
445
+ - spec/models/storage_hosts_mapping_spec.rb
442
446
  - spec/models/service_create_spec.rb
443
- - spec/models/host_volume_connection_spec.rb
447
+ - spec/models/account_post_request_spec.rb
448
+ - spec/models/service_abstract_capability_value_spec.rb
449
+ - spec/models/job_spec.rb
450
+ - spec/models/abstract_capability_spec.rb
451
+ - spec/models/service_spec.rb
444
452
  - spec/models/snapshot_create_spec.rb
445
- - spec/models/auto_sde_role_spec.rb
446
- - spec/models/storage_host_create_spec.rb
447
- - spec/models/host_cluster_volume_mapping_create_spec.rb
453
+ - spec/models/service_resource_attachment_spec.rb
454
+ - spec/models/volume_response_spec.rb
448
455
  - spec/models/system_type_create_spec.rb
449
- - spec/models/storage_hosts_mapping_create_spec.rb
456
+ - spec/models/storage_host_wwpn_candidates_spec.rb
450
457
  - spec/models/auth_response_spec.rb
451
- - spec/models/capability_translation_spec.rb
452
- - spec/models/service_abstract_capability_value_spec.rb
453
- - spec/models/volume_response_spec.rb
454
- - spec/models/event_response_spec.rb
458
+ - spec/models/storage_resource_spec.rb
459
+ - spec/models/job_create_spec.rb
460
+ - spec/models/storage_host_create_spec.rb
461
+ - spec/models/auto_sde_project_spec.rb
462
+ - spec/models/storage_system_response_spec.rb
463
+ - spec/models/host_spec.rb
455
464
  - spec/models/profile_spec.rb
465
+ - spec/models/host_volume_connection_create_spec.rb
466
+ - spec/models/storage_system_create_spec.rb
456
467
  - spec/models/async_response_spec.rb
457
- - spec/models/native_capability_spec.rb
458
- - spec/models/volume_create_spec.rb
468
+ - spec/models/storage_hosts_mapping_create_spec.rb
469
+ - spec/models/storage_resource_response_spec.rb
459
470
  - spec/models/snapshot_spec.rb
471
+ - spec/models/capability_translation_spec.rb
460
472
  - spec/models/account_post_response_spec.rb
461
- - spec/models/host_cluster_spec.rb
462
- - spec/models/refresh_system_spec.rb
463
- - spec/models/storage_hosts_mapping_spec.rb
464
- - spec/models/storage_system_spec.rb
465
- - spec/models/celery_config_spec.rb
466
- - spec/models/event_spec.rb
467
- - spec/models/abstract_capability_response_spec.rb
468
- - spec/models/authentication_spec.rb
469
- - spec/models/account_post_request_spec.rb
470
- - spec/models/storage_system_response_spec.rb
471
473
  - spec/models/address_create_spec.rb
472
- - spec/models/storage_host_update_spec.rb
473
- - spec/models/user_spec.rb
474
- - spec/models/auto_sde_project_spec.rb
475
- - spec/models/storage_resource_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
476
477
  - spec/models/storage_resource_update_spec.rb
477
- - spec/models/host_cluster_membership_spec.rb
478
- - spec/models/volume_spec.rb
479
- - spec/models/storage_host_wwpn_candidates_spec.rb
480
- - spec/models/abstract_capability_spec.rb
481
- - spec/models/user_create_spec.rb
482
- - spec/models/validate_system_spec.rb
483
- - spec/models/storage_system_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
481
+ - spec/models/host_cluster_create_spec.rb
482
+ - spec/models/address_spec.rb
483
+ - spec/models/account_spec.rb
484
+ - spec/models/refresh_system_spec.rb
485
+ - spec/models/capability_translation_create_spec.rb
486
+ - spec/models/host_cluster_response_spec.rb
484
487
  - spec/models/volume_safe_delete_spec.rb
485
- - spec/models/storage_resource_create_spec.rb
486
- - spec/models/job_spec.rb
487
- - spec/models/volume_safe_delete_create_spec.rb
488
- - spec/models/host_cluster_volume_mapping_response_spec.rb
489
- - spec/models/storage_system_create_spec.rb
490
- - spec/models/host_cluster_volume_mapping_spec.rb
491
- - spec/models/host_volume_connection_create_spec.rb
492
- - spec/models/job_create_spec.rb
488
+ - spec/models/event_response_spec.rb
493
489
  - spec/models/service_abstract_capability_value_response_spec.rb
494
- - spec/models/service_resource_attachment_spec.rb
495
- - spec/models/host_cluster_create_spec.rb
496
490
  - spec/models/storage_host_response_spec.rb
497
- - spec/models/storage_host_spec.rb
491
+ - spec/models/host_create_spec.rb
492
+ - spec/models/auto_sde_role_spec.rb
498
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
499
+ - spec/models/storage_system_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
499
504
  - spec/models/user_update_spec.rb
500
- - spec/models/provisioning_strategy_spec.rb
501
- - spec/models/host_cluster_response_spec.rb
505
+ - spec/models/storage_host_spec.rb
506
+ - spec/models/user_create_spec.rb
502
507
  - spec/models/system_type_spec.rb
503
- - spec/models/host_create_spec.rb
504
- - spec/models/host_spec.rb
505
- - spec/models/storage_resource_response_spec.rb
506
- - spec/models/capability_translation_create_spec.rb
507
- - spec/models/address_spec.rb
508
508
  - spec/spec_helper.rb