autosde_openapi_client 1.2.3 → 1.2.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/docs/AddressApi.md +4 -4
  3. data/docs/EventApi.md +4 -4
  4. data/docs/HostApi.md +4 -4
  5. data/docs/HostClusterMembershipApi.md +4 -4
  6. data/docs/HostVolumeConnectionApi.md +4 -4
  7. data/docs/ServiceApi.md +4 -4
  8. data/docs/ServiceResourceAttachmentApi.md +4 -4
  9. data/docs/SnapshotApi.md +4 -4
  10. data/docs/StorageHostApi.md +4 -4
  11. data/docs/StorageHostsMappingApi.md +4 -4
  12. data/docs/StorageSystemApi.md +4 -4
  13. data/docs/SystemTypeApi.md +4 -4
  14. data/docs/VolumeApi.md +4 -4
  15. data/lib/autosde_openapi_client/api/address_api.rb +3 -3
  16. data/lib/autosde_openapi_client/api/event_api.rb +3 -3
  17. data/lib/autosde_openapi_client/api/host_api.rb +3 -3
  18. data/lib/autosde_openapi_client/api/host_cluster_membership_api.rb +3 -3
  19. data/lib/autosde_openapi_client/api/host_volume_connection_api.rb +3 -3
  20. data/lib/autosde_openapi_client/api/service_api.rb +3 -3
  21. data/lib/autosde_openapi_client/api/service_resource_attachment_api.rb +3 -3
  22. data/lib/autosde_openapi_client/api/snapshot_api.rb +3 -3
  23. data/lib/autosde_openapi_client/api/storage_host_api.rb +3 -3
  24. data/lib/autosde_openapi_client/api/storage_hosts_mapping_api.rb +3 -3
  25. data/lib/autosde_openapi_client/api/storage_system_api.rb +3 -3
  26. data/lib/autosde_openapi_client/api/system_type_api.rb +3 -3
  27. data/lib/autosde_openapi_client/api/volume_api.rb +3 -3
  28. data/lib/autosde_openapi_client/version.rb +2 -2
  29. data/spec/api/address_api_spec.rb +1 -1
  30. data/spec/api/event_api_spec.rb +1 -1
  31. data/spec/api/host_api_spec.rb +1 -1
  32. data/spec/api/host_cluster_membership_api_spec.rb +1 -1
  33. data/spec/api/host_volume_connection_api_spec.rb +1 -1
  34. data/spec/api/service_api_spec.rb +1 -1
  35. data/spec/api/service_resource_attachment_api_spec.rb +1 -1
  36. data/spec/api/snapshot_api_spec.rb +1 -1
  37. data/spec/api/storage_host_api_spec.rb +1 -1
  38. data/spec/api/storage_hosts_mapping_api_spec.rb +1 -1
  39. data/spec/api/storage_system_api_spec.rb +1 -1
  40. data/spec/api/system_type_api_spec.rb +1 -1
  41. data/spec/api/volume_api_spec.rb +1 -1
  42. metadata +78 -78
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4d9aab0facdbfead3ad2315f6659c9a8f6924a6ff8c79ed62ac889a7bc7c2d20
4
- data.tar.gz: f68d189a075b76a2a4ff3a0706dd0d6b3360b8d7feb417ddf32aa7e1d91f58b1
3
+ metadata.gz: 1e6ad95e794d04de5c3ddbcea522da162ff91fb4931b10635915a0ff0127c891
4
+ data.tar.gz: 191220ec2b79044a00b81afe417e8c62d0ec1a78cae1440ca3fe57631ccd3c1f
5
5
  SHA512:
6
- metadata.gz: 13933ee26f045913f8b565da8289f69828577d8cd1f6e141c31b91a755bc4c903e9caf9819bf10565e501b5886d412b41a7db9083ed147866990c037d7bc9ac3
7
- data.tar.gz: 4d6be86c1b585a4d10ccefe6cbf8afb51a1d88eea063952a2d67864c38189ff1d38569f202be40efbb809dd56f7920a3f4fd624aefd49a3ce07d0759e3cb28ae
6
+ metadata.gz: fb8d8fdd4fd9399e0a7a393ce145e8f8d785c214cf6a3249a397dea492ed924362a4908715862c198fdd2fff97db1e15f55ff4606c8ed81d340c07ea7b696666
7
+ data.tar.gz: 87d4f11e7a55d2bba5a5773fef7c7fbfba12209eae5cd8e69495975f1f218fefa03b38d1ea697940a072ca72179e7ab42e18de0c3d459d6db762b02d0f6f2342
data/docs/AddressApi.md CHANGED
@@ -210,7 +210,7 @@ end
210
210
 
211
211
  ## addresses_post
212
212
 
213
- > <Address> addresses_post(address_create)
213
+ > <AsyncResponse> addresses_post(address_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(<Address>, Integer, Hash)> addresses_post_with_http_info(address_create)
244
+ > <Array(<AsyncResponse>, Integer, Hash)> addresses_post_with_http_info(address_create)
245
245
 
246
246
  ```ruby
247
247
  begin
@@ -249,7 +249,7 @@ begin
249
249
  data, status_code, headers = api_instance.addresses_post_with_http_info(address_create)
250
250
  p status_code # => 2xx
251
251
  p headers # => { ... }
252
- p data # => <Address>
252
+ p data # => <AsyncResponse>
253
253
  rescue AutosdeOpenapiClient::ApiError => e
254
254
  puts "Error when calling AddressApi->addresses_post_with_http_info: #{e}"
255
255
  end
@@ -263,7 +263,7 @@ end
263
263
 
264
264
  ### Return type
265
265
 
266
- [**Address**](Address.md)
266
+ [**AsyncResponse**](AsyncResponse.md)
267
267
 
268
268
  ### Authorization
269
269
 
data/docs/EventApi.md CHANGED
@@ -210,7 +210,7 @@ end
210
210
 
211
211
  ## events_post
212
212
 
213
- > <EventResponse> events_post(event)
213
+ > <AsyncResponse> events_post(event)
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(<EventResponse>, Integer, Hash)> events_post_with_http_info(event)
244
+ > <Array(<AsyncResponse>, Integer, Hash)> events_post_with_http_info(event)
245
245
 
246
246
  ```ruby
247
247
  begin
@@ -249,7 +249,7 @@ begin
249
249
  data, status_code, headers = api_instance.events_post_with_http_info(event)
250
250
  p status_code # => 2xx
251
251
  p headers # => { ... }
252
- p data # => <EventResponse>
252
+ p data # => <AsyncResponse>
253
253
  rescue AutosdeOpenapiClient::ApiError => e
254
254
  puts "Error when calling EventApi->events_post_with_http_info: #{e}"
255
255
  end
@@ -263,7 +263,7 @@ end
263
263
 
264
264
  ### Return type
265
265
 
266
- [**EventResponse**](EventResponse.md)
266
+ [**AsyncResponse**](AsyncResponse.md)
267
267
 
268
268
  ### Authorization
269
269
 
data/docs/HostApi.md CHANGED
@@ -210,7 +210,7 @@ end
210
210
 
211
211
  ## hosts_post
212
212
 
213
- > <Host> hosts_post(host_create)
213
+ > <AsyncResponse> hosts_post(host_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(<Host>, Integer, Hash)> hosts_post_with_http_info(host_create)
244
+ > <Array(<AsyncResponse>, Integer, Hash)> hosts_post_with_http_info(host_create)
245
245
 
246
246
  ```ruby
247
247
  begin
@@ -249,7 +249,7 @@ begin
249
249
  data, status_code, headers = api_instance.hosts_post_with_http_info(host_create)
250
250
  p status_code # => 2xx
251
251
  p headers # => { ... }
252
- p data # => <Host>
252
+ p data # => <AsyncResponse>
253
253
  rescue AutosdeOpenapiClient::ApiError => e
254
254
  puts "Error when calling HostApi->hosts_post_with_http_info: #{e}"
255
255
  end
@@ -263,7 +263,7 @@ end
263
263
 
264
264
  ### Return type
265
265
 
266
- [**Host**](Host.md)
266
+ [**AsyncResponse**](AsyncResponse.md)
267
267
 
268
268
  ### Authorization
269
269
 
@@ -210,7 +210,7 @@ end
210
210
 
211
211
  ## host_cluster_membership_post
212
212
 
213
- > <HostClusterMembership> host_cluster_membership_post(host_cluster_membership)
213
+ > <AsyncResponse> host_cluster_membership_post(host_cluster_membership)
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(<HostClusterMembership>, Integer, Hash)> host_cluster_membership_post_with_http_info(host_cluster_membership)
244
+ > <Array(<AsyncResponse>, Integer, Hash)> host_cluster_membership_post_with_http_info(host_cluster_membership)
245
245
 
246
246
  ```ruby
247
247
  begin
@@ -249,7 +249,7 @@ begin
249
249
  data, status_code, headers = api_instance.host_cluster_membership_post_with_http_info(host_cluster_membership)
250
250
  p status_code # => 2xx
251
251
  p headers # => { ... }
252
- p data # => <HostClusterMembership>
252
+ p data # => <AsyncResponse>
253
253
  rescue AutosdeOpenapiClient::ApiError => e
254
254
  puts "Error when calling HostClusterMembershipApi->host_cluster_membership_post_with_http_info: #{e}"
255
255
  end
@@ -263,7 +263,7 @@ end
263
263
 
264
264
  ### Return type
265
265
 
266
- [**HostClusterMembership**](HostClusterMembership.md)
266
+ [**AsyncResponse**](AsyncResponse.md)
267
267
 
268
268
  ### Authorization
269
269
 
@@ -210,7 +210,7 @@ end
210
210
 
211
211
  ## host_volume_connection_post
212
212
 
213
- > <HostVolumeConnection> host_volume_connection_post(host_volume_connection_create)
213
+ > <AsyncResponse> host_volume_connection_post(host_volume_connection_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(<HostVolumeConnection>, Integer, Hash)> host_volume_connection_post_with_http_info(host_volume_connection_create)
244
+ > <Array(<AsyncResponse>, Integer, Hash)> host_volume_connection_post_with_http_info(host_volume_connection_create)
245
245
 
246
246
  ```ruby
247
247
  begin
@@ -249,7 +249,7 @@ begin
249
249
  data, status_code, headers = api_instance.host_volume_connection_post_with_http_info(host_volume_connection_create)
250
250
  p status_code # => 2xx
251
251
  p headers # => { ... }
252
- p data # => <HostVolumeConnection>
252
+ p data # => <AsyncResponse>
253
253
  rescue AutosdeOpenapiClient::ApiError => e
254
254
  puts "Error when calling HostVolumeConnectionApi->host_volume_connection_post_with_http_info: #{e}"
255
255
  end
@@ -263,7 +263,7 @@ end
263
263
 
264
264
  ### Return type
265
265
 
266
- [**HostVolumeConnection**](HostVolumeConnection.md)
266
+ [**AsyncResponse**](AsyncResponse.md)
267
267
 
268
268
  ### Authorization
269
269
 
data/docs/ServiceApi.md CHANGED
@@ -280,7 +280,7 @@ end
280
280
 
281
281
  ## services_post
282
282
 
283
- > <Service> services_post(service_create)
283
+ > <AsyncResponse> services_post(service_create)
284
284
 
285
285
 
286
286
 
@@ -311,7 +311,7 @@ end
311
311
 
312
312
  This returns an Array which contains the response data, status code and headers.
313
313
 
314
- > <Array(<Service>, Integer, Hash)> services_post_with_http_info(service_create)
314
+ > <Array(<AsyncResponse>, Integer, Hash)> services_post_with_http_info(service_create)
315
315
 
316
316
  ```ruby
317
317
  begin
@@ -319,7 +319,7 @@ begin
319
319
  data, status_code, headers = api_instance.services_post_with_http_info(service_create)
320
320
  p status_code # => 2xx
321
321
  p headers # => { ... }
322
- p data # => <Service>
322
+ p data # => <AsyncResponse>
323
323
  rescue AutosdeOpenapiClient::ApiError => e
324
324
  puts "Error when calling ServiceApi->services_post_with_http_info: #{e}"
325
325
  end
@@ -333,7 +333,7 @@ end
333
333
 
334
334
  ### Return type
335
335
 
336
- [**Service**](Service.md)
336
+ [**AsyncResponse**](AsyncResponse.md)
337
337
 
338
338
  ### Authorization
339
339
 
@@ -210,7 +210,7 @@ end
210
210
 
211
211
  ## service_resource_attachment_post
212
212
 
213
- > <ServiceResourceAttachment> service_resource_attachment_post(service_resource_attachment)
213
+ > <AsyncResponse> service_resource_attachment_post(service_resource_attachment)
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(<ServiceResourceAttachment>, Integer, Hash)> service_resource_attachment_post_with_http_info(service_resource_attachment)
244
+ > <Array(<AsyncResponse>, Integer, Hash)> service_resource_attachment_post_with_http_info(service_resource_attachment)
245
245
 
246
246
  ```ruby
247
247
  begin
@@ -249,7 +249,7 @@ begin
249
249
  data, status_code, headers = api_instance.service_resource_attachment_post_with_http_info(service_resource_attachment)
250
250
  p status_code # => 2xx
251
251
  p headers # => { ... }
252
- p data # => <ServiceResourceAttachment>
252
+ p data # => <AsyncResponse>
253
253
  rescue AutosdeOpenapiClient::ApiError => e
254
254
  puts "Error when calling ServiceResourceAttachmentApi->service_resource_attachment_post_with_http_info: #{e}"
255
255
  end
@@ -263,7 +263,7 @@ end
263
263
 
264
264
  ### Return type
265
265
 
266
- [**ServiceResourceAttachment**](ServiceResourceAttachment.md)
266
+ [**AsyncResponse**](AsyncResponse.md)
267
267
 
268
268
  ### Authorization
269
269
 
data/docs/SnapshotApi.md CHANGED
@@ -210,7 +210,7 @@ end
210
210
 
211
211
  ## snapshots_post
212
212
 
213
- > <Snapshot> snapshots_post(snapshot_create)
213
+ > <AsyncResponse> snapshots_post(snapshot_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(<Snapshot>, Integer, Hash)> snapshots_post_with_http_info(snapshot_create)
244
+ > <Array(<AsyncResponse>, Integer, Hash)> snapshots_post_with_http_info(snapshot_create)
245
245
 
246
246
  ```ruby
247
247
  begin
@@ -249,7 +249,7 @@ begin
249
249
  data, status_code, headers = api_instance.snapshots_post_with_http_info(snapshot_create)
250
250
  p status_code # => 2xx
251
251
  p headers # => { ... }
252
- p data # => <Snapshot>
252
+ p data # => <AsyncResponse>
253
253
  rescue AutosdeOpenapiClient::ApiError => e
254
254
  puts "Error when calling SnapshotApi->snapshots_post_with_http_info: #{e}"
255
255
  end
@@ -263,7 +263,7 @@ end
263
263
 
264
264
  ### Return type
265
265
 
266
- [**Snapshot**](Snapshot.md)
266
+ [**AsyncResponse**](AsyncResponse.md)
267
267
 
268
268
  ### Authorization
269
269
 
@@ -280,7 +280,7 @@ end
280
280
 
281
281
  ## storage_hosts_post
282
282
 
283
- > <StorageHostResponse> storage_hosts_post(storage_host_create)
283
+ > <AsyncResponse> storage_hosts_post(storage_host_create)
284
284
 
285
285
 
286
286
 
@@ -311,7 +311,7 @@ end
311
311
 
312
312
  This returns an Array which contains the response data, status code and headers.
313
313
 
314
- > <Array(<StorageHostResponse>, Integer, Hash)> storage_hosts_post_with_http_info(storage_host_create)
314
+ > <Array(<AsyncResponse>, Integer, Hash)> storage_hosts_post_with_http_info(storage_host_create)
315
315
 
316
316
  ```ruby
317
317
  begin
@@ -319,7 +319,7 @@ begin
319
319
  data, status_code, headers = api_instance.storage_hosts_post_with_http_info(storage_host_create)
320
320
  p status_code # => 2xx
321
321
  p headers # => { ... }
322
- p data # => <StorageHostResponse>
322
+ p data # => <AsyncResponse>
323
323
  rescue AutosdeOpenapiClient::ApiError => e
324
324
  puts "Error when calling StorageHostApi->storage_hosts_post_with_http_info: #{e}"
325
325
  end
@@ -333,7 +333,7 @@ end
333
333
 
334
334
  ### Return type
335
335
 
336
- [**StorageHostResponse**](StorageHostResponse.md)
336
+ [**AsyncResponse**](AsyncResponse.md)
337
337
 
338
338
  ### Authorization
339
339
 
@@ -210,7 +210,7 @@ end
210
210
 
211
211
  ## storage_hosts_mapping_post
212
212
 
213
- > <StorageHostsMapping> storage_hosts_mapping_post(storage_hosts_mapping_create)
213
+ > <AsyncResponse> storage_hosts_mapping_post(storage_hosts_mapping_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(<StorageHostsMapping>, Integer, Hash)> storage_hosts_mapping_post_with_http_info(storage_hosts_mapping_create)
244
+ > <Array(<AsyncResponse>, Integer, Hash)> storage_hosts_mapping_post_with_http_info(storage_hosts_mapping_create)
245
245
 
246
246
  ```ruby
247
247
  begin
@@ -249,7 +249,7 @@ begin
249
249
  data, status_code, headers = api_instance.storage_hosts_mapping_post_with_http_info(storage_hosts_mapping_create)
250
250
  p status_code # => 2xx
251
251
  p headers # => { ... }
252
- p data # => <StorageHostsMapping>
252
+ p data # => <AsyncResponse>
253
253
  rescue AutosdeOpenapiClient::ApiError => e
254
254
  puts "Error when calling StorageHostsMappingApi->storage_hosts_mapping_post_with_http_info: #{e}"
255
255
  end
@@ -263,7 +263,7 @@ end
263
263
 
264
264
  ### Return type
265
265
 
266
- [**StorageHostsMapping**](StorageHostsMapping.md)
266
+ [**AsyncResponse**](AsyncResponse.md)
267
267
 
268
268
  ### Authorization
269
269
 
@@ -280,7 +280,7 @@ end
280
280
 
281
281
  ## storage_systems_post
282
282
 
283
- > <StorageSystem> storage_systems_post(storage_system_create)
283
+ > <AsyncResponse> storage_systems_post(storage_system_create)
284
284
 
285
285
 
286
286
 
@@ -311,7 +311,7 @@ end
311
311
 
312
312
  This returns an Array which contains the response data, status code and headers.
313
313
 
314
- > <Array(<StorageSystem>, Integer, Hash)> storage_systems_post_with_http_info(storage_system_create)
314
+ > <Array(<AsyncResponse>, Integer, Hash)> storage_systems_post_with_http_info(storage_system_create)
315
315
 
316
316
  ```ruby
317
317
  begin
@@ -319,7 +319,7 @@ begin
319
319
  data, status_code, headers = api_instance.storage_systems_post_with_http_info(storage_system_create)
320
320
  p status_code # => 2xx
321
321
  p headers # => { ... }
322
- p data # => <StorageSystem>
322
+ p data # => <AsyncResponse>
323
323
  rescue AutosdeOpenapiClient::ApiError => e
324
324
  puts "Error when calling StorageSystemApi->storage_systems_post_with_http_info: #{e}"
325
325
  end
@@ -333,7 +333,7 @@ end
333
333
 
334
334
  ### Return type
335
335
 
336
- [**StorageSystem**](StorageSystem.md)
336
+ [**AsyncResponse**](AsyncResponse.md)
337
337
 
338
338
  ### Authorization
339
339
 
@@ -210,7 +210,7 @@ end
210
210
 
211
211
  ## system_types_post
212
212
 
213
- > <SystemType> system_types_post(system_type_create)
213
+ > <AsyncResponse> system_types_post(system_type_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(<SystemType>, Integer, Hash)> system_types_post_with_http_info(system_type_create)
244
+ > <Array(<AsyncResponse>, Integer, Hash)> system_types_post_with_http_info(system_type_create)
245
245
 
246
246
  ```ruby
247
247
  begin
@@ -249,7 +249,7 @@ begin
249
249
  data, status_code, headers = api_instance.system_types_post_with_http_info(system_type_create)
250
250
  p status_code # => 2xx
251
251
  p headers # => { ... }
252
- p data # => <SystemType>
252
+ p data # => <AsyncResponse>
253
253
  rescue AutosdeOpenapiClient::ApiError => e
254
254
  puts "Error when calling SystemTypeApi->system_types_post_with_http_info: #{e}"
255
255
  end
@@ -263,7 +263,7 @@ end
263
263
 
264
264
  ### Return type
265
265
 
266
- [**SystemType**](SystemType.md)
266
+ [**AsyncResponse**](AsyncResponse.md)
267
267
 
268
268
  ### Authorization
269
269
 
data/docs/VolumeApi.md CHANGED
@@ -280,7 +280,7 @@ end
280
280
 
281
281
  ## volumes_post
282
282
 
283
- > <VolumeResponse> volumes_post(volume_create)
283
+ > <AsyncResponse> volumes_post(volume_create)
284
284
 
285
285
 
286
286
 
@@ -311,7 +311,7 @@ end
311
311
 
312
312
  This returns an Array which contains the response data, status code and headers.
313
313
 
314
- > <Array(<VolumeResponse>, Integer, Hash)> volumes_post_with_http_info(volume_create)
314
+ > <Array(<AsyncResponse>, Integer, Hash)> volumes_post_with_http_info(volume_create)
315
315
 
316
316
  ```ruby
317
317
  begin
@@ -319,7 +319,7 @@ begin
319
319
  data, status_code, headers = api_instance.volumes_post_with_http_info(volume_create)
320
320
  p status_code # => 2xx
321
321
  p headers # => { ... }
322
- p data # => <VolumeResponse>
322
+ p data # => <AsyncResponse>
323
323
  rescue AutosdeOpenapiClient::ApiError => e
324
324
  puts "Error when calling VolumeApi->volumes_post_with_http_info: #{e}"
325
325
  end
@@ -333,7 +333,7 @@ end
333
333
 
334
334
  ### Return type
335
335
 
336
- [**VolumeResponse**](VolumeResponse.md)
336
+ [**AsyncResponse**](AsyncResponse.md)
337
337
 
338
338
  ### Authorization
339
339
 
@@ -192,7 +192,7 @@ module AutosdeOpenapiClient
192
192
 
193
193
  # @param address_create [AddressCreate]
194
194
  # @param [Hash] opts the optional parameters
195
- # @return [Address]
195
+ # @return [AsyncResponse]
196
196
  def addresses_post(address_create, opts = {})
197
197
  data, _status_code, _headers = addresses_post_with_http_info(address_create, opts)
198
198
  data
@@ -200,7 +200,7 @@ module AutosdeOpenapiClient
200
200
 
201
201
  # @param address_create [AddressCreate]
202
202
  # @param [Hash] opts the optional parameters
203
- # @return [Array<(Address, Integer, Hash)>] Address data, response status code and response headers
203
+ # @return [Array<(AsyncResponse, Integer, Hash)>] AsyncResponse data, response status code and response headers
204
204
  def addresses_post_with_http_info(address_create, opts = {})
205
205
  if @api_client.config.debugging
206
206
  @api_client.config.logger.debug 'Calling API: AddressApi.addresses_post ...'
@@ -229,7 +229,7 @@ module AutosdeOpenapiClient
229
229
  post_body = opts[:debug_body] || @api_client.object_to_http_body(address_create)
230
230
 
231
231
  # return_type
232
- return_type = opts[:debug_return_type] || 'Address'
232
+ return_type = opts[:debug_return_type] || 'AsyncResponse'
233
233
 
234
234
  # auth_names
235
235
  auth_names = opts[:debug_auth_names] || ['bearerAuth']
@@ -192,7 +192,7 @@ module AutosdeOpenapiClient
192
192
 
193
193
  # @param event [Event]
194
194
  # @param [Hash] opts the optional parameters
195
- # @return [EventResponse]
195
+ # @return [AsyncResponse]
196
196
  def events_post(event, opts = {})
197
197
  data, _status_code, _headers = events_post_with_http_info(event, opts)
198
198
  data
@@ -200,7 +200,7 @@ module AutosdeOpenapiClient
200
200
 
201
201
  # @param event [Event]
202
202
  # @param [Hash] opts the optional parameters
203
- # @return [Array<(EventResponse, Integer, Hash)>] EventResponse data, response status code and response headers
203
+ # @return [Array<(AsyncResponse, Integer, Hash)>] AsyncResponse data, response status code and response headers
204
204
  def events_post_with_http_info(event, opts = {})
205
205
  if @api_client.config.debugging
206
206
  @api_client.config.logger.debug 'Calling API: EventApi.events_post ...'
@@ -229,7 +229,7 @@ module AutosdeOpenapiClient
229
229
  post_body = opts[:debug_body] || @api_client.object_to_http_body(event)
230
230
 
231
231
  # return_type
232
- return_type = opts[:debug_return_type] || 'EventResponse'
232
+ return_type = opts[:debug_return_type] || 'AsyncResponse'
233
233
 
234
234
  # auth_names
235
235
  auth_names = opts[:debug_auth_names] || ['bearerAuth']
@@ -192,7 +192,7 @@ module AutosdeOpenapiClient
192
192
 
193
193
  # @param host_create [HostCreate]
194
194
  # @param [Hash] opts the optional parameters
195
- # @return [Host]
195
+ # @return [AsyncResponse]
196
196
  def hosts_post(host_create, opts = {})
197
197
  data, _status_code, _headers = hosts_post_with_http_info(host_create, opts)
198
198
  data
@@ -200,7 +200,7 @@ module AutosdeOpenapiClient
200
200
 
201
201
  # @param host_create [HostCreate]
202
202
  # @param [Hash] opts the optional parameters
203
- # @return [Array<(Host, Integer, Hash)>] Host data, response status code and response headers
203
+ # @return [Array<(AsyncResponse, Integer, Hash)>] AsyncResponse data, response status code and response headers
204
204
  def hosts_post_with_http_info(host_create, opts = {})
205
205
  if @api_client.config.debugging
206
206
  @api_client.config.logger.debug 'Calling API: HostApi.hosts_post ...'
@@ -229,7 +229,7 @@ module AutosdeOpenapiClient
229
229
  post_body = opts[:debug_body] || @api_client.object_to_http_body(host_create)
230
230
 
231
231
  # return_type
232
- return_type = opts[:debug_return_type] || 'Host'
232
+ return_type = opts[:debug_return_type] || 'AsyncResponse'
233
233
 
234
234
  # auth_names
235
235
  auth_names = opts[:debug_auth_names] || ['bearerAuth']
@@ -192,7 +192,7 @@ module AutosdeOpenapiClient
192
192
 
193
193
  # @param host_cluster_membership [HostClusterMembership]
194
194
  # @param [Hash] opts the optional parameters
195
- # @return [HostClusterMembership]
195
+ # @return [AsyncResponse]
196
196
  def host_cluster_membership_post(host_cluster_membership, opts = {})
197
197
  data, _status_code, _headers = host_cluster_membership_post_with_http_info(host_cluster_membership, opts)
198
198
  data
@@ -200,7 +200,7 @@ module AutosdeOpenapiClient
200
200
 
201
201
  # @param host_cluster_membership [HostClusterMembership]
202
202
  # @param [Hash] opts the optional parameters
203
- # @return [Array<(HostClusterMembership, Integer, Hash)>] HostClusterMembership 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_cluster_membership_post_with_http_info(host_cluster_membership, opts = {})
205
205
  if @api_client.config.debugging
206
206
  @api_client.config.logger.debug 'Calling API: HostClusterMembershipApi.host_cluster_membership_post ...'
@@ -229,7 +229,7 @@ module AutosdeOpenapiClient
229
229
  post_body = opts[:debug_body] || @api_client.object_to_http_body(host_cluster_membership)
230
230
 
231
231
  # return_type
232
- return_type = opts[:debug_return_type] || 'HostClusterMembership'
232
+ return_type = opts[:debug_return_type] || 'AsyncResponse'
233
233
 
234
234
  # auth_names
235
235
  auth_names = opts[:debug_auth_names] || ['bearerAuth']
@@ -192,7 +192,7 @@ module AutosdeOpenapiClient
192
192
 
193
193
  # @param host_volume_connection_create [HostVolumeConnectionCreate]
194
194
  # @param [Hash] opts the optional parameters
195
- # @return [HostVolumeConnection]
195
+ # @return [AsyncResponse]
196
196
  def host_volume_connection_post(host_volume_connection_create, opts = {})
197
197
  data, _status_code, _headers = host_volume_connection_post_with_http_info(host_volume_connection_create, opts)
198
198
  data
@@ -200,7 +200,7 @@ module AutosdeOpenapiClient
200
200
 
201
201
  # @param host_volume_connection_create [HostVolumeConnectionCreate]
202
202
  # @param [Hash] opts the optional parameters
203
- # @return [Array<(HostVolumeConnection, Integer, Hash)>] HostVolumeConnection 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_volume_connection_post_with_http_info(host_volume_connection_create, opts = {})
205
205
  if @api_client.config.debugging
206
206
  @api_client.config.logger.debug 'Calling API: HostVolumeConnectionApi.host_volume_connection_post ...'
@@ -229,7 +229,7 @@ module AutosdeOpenapiClient
229
229
  post_body = opts[:debug_body] || @api_client.object_to_http_body(host_volume_connection_create)
230
230
 
231
231
  # return_type
232
- return_type = opts[:debug_return_type] || 'HostVolumeConnection'
232
+ return_type = opts[:debug_return_type] || 'AsyncResponse'
233
233
 
234
234
  # auth_names
235
235
  auth_names = opts[:debug_auth_names] || ['bearerAuth']
@@ -259,7 +259,7 @@ module AutosdeOpenapiClient
259
259
 
260
260
  # @param service_create [ServiceCreate]
261
261
  # @param [Hash] opts the optional parameters
262
- # @return [Service]
262
+ # @return [AsyncResponse]
263
263
  def services_post(service_create, opts = {})
264
264
  data, _status_code, _headers = services_post_with_http_info(service_create, opts)
265
265
  data
@@ -267,7 +267,7 @@ module AutosdeOpenapiClient
267
267
 
268
268
  # @param service_create [ServiceCreate]
269
269
  # @param [Hash] opts the optional parameters
270
- # @return [Array<(Service, Integer, Hash)>] Service data, response status code and response headers
270
+ # @return [Array<(AsyncResponse, Integer, Hash)>] AsyncResponse data, response status code and response headers
271
271
  def services_post_with_http_info(service_create, opts = {})
272
272
  if @api_client.config.debugging
273
273
  @api_client.config.logger.debug 'Calling API: ServiceApi.services_post ...'
@@ -296,7 +296,7 @@ module AutosdeOpenapiClient
296
296
  post_body = opts[:debug_body] || @api_client.object_to_http_body(service_create)
297
297
 
298
298
  # return_type
299
- return_type = opts[:debug_return_type] || 'Service'
299
+ return_type = opts[:debug_return_type] || 'AsyncResponse'
300
300
 
301
301
  # auth_names
302
302
  auth_names = opts[:debug_auth_names] || ['bearerAuth']
@@ -192,7 +192,7 @@ module AutosdeOpenapiClient
192
192
 
193
193
  # @param service_resource_attachment [ServiceResourceAttachment]
194
194
  # @param [Hash] opts the optional parameters
195
- # @return [ServiceResourceAttachment]
195
+ # @return [AsyncResponse]
196
196
  def service_resource_attachment_post(service_resource_attachment, opts = {})
197
197
  data, _status_code, _headers = service_resource_attachment_post_with_http_info(service_resource_attachment, opts)
198
198
  data
@@ -200,7 +200,7 @@ module AutosdeOpenapiClient
200
200
 
201
201
  # @param service_resource_attachment [ServiceResourceAttachment]
202
202
  # @param [Hash] opts the optional parameters
203
- # @return [Array<(ServiceResourceAttachment, Integer, Hash)>] ServiceResourceAttachment data, response status code and response headers
203
+ # @return [Array<(AsyncResponse, Integer, Hash)>] AsyncResponse data, response status code and response headers
204
204
  def service_resource_attachment_post_with_http_info(service_resource_attachment, opts = {})
205
205
  if @api_client.config.debugging
206
206
  @api_client.config.logger.debug 'Calling API: ServiceResourceAttachmentApi.service_resource_attachment_post ...'
@@ -229,7 +229,7 @@ module AutosdeOpenapiClient
229
229
  post_body = opts[:debug_body] || @api_client.object_to_http_body(service_resource_attachment)
230
230
 
231
231
  # return_type
232
- return_type = opts[:debug_return_type] || 'ServiceResourceAttachment'
232
+ return_type = opts[:debug_return_type] || 'AsyncResponse'
233
233
 
234
234
  # auth_names
235
235
  auth_names = opts[:debug_auth_names] || ['bearerAuth']
@@ -192,7 +192,7 @@ module AutosdeOpenapiClient
192
192
 
193
193
  # @param snapshot_create [SnapshotCreate]
194
194
  # @param [Hash] opts the optional parameters
195
- # @return [Snapshot]
195
+ # @return [AsyncResponse]
196
196
  def snapshots_post(snapshot_create, opts = {})
197
197
  data, _status_code, _headers = snapshots_post_with_http_info(snapshot_create, opts)
198
198
  data
@@ -200,7 +200,7 @@ module AutosdeOpenapiClient
200
200
 
201
201
  # @param snapshot_create [SnapshotCreate]
202
202
  # @param [Hash] opts the optional parameters
203
- # @return [Array<(Snapshot, Integer, Hash)>] Snapshot data, response status code and response headers
203
+ # @return [Array<(AsyncResponse, Integer, Hash)>] AsyncResponse data, response status code and response headers
204
204
  def snapshots_post_with_http_info(snapshot_create, opts = {})
205
205
  if @api_client.config.debugging
206
206
  @api_client.config.logger.debug 'Calling API: SnapshotApi.snapshots_post ...'
@@ -229,7 +229,7 @@ module AutosdeOpenapiClient
229
229
  post_body = opts[:debug_body] || @api_client.object_to_http_body(snapshot_create)
230
230
 
231
231
  # return_type
232
- return_type = opts[:debug_return_type] || 'Snapshot'
232
+ return_type = opts[:debug_return_type] || 'AsyncResponse'
233
233
 
234
234
  # auth_names
235
235
  auth_names = opts[:debug_auth_names] || ['bearerAuth']
@@ -259,7 +259,7 @@ module AutosdeOpenapiClient
259
259
 
260
260
  # @param storage_host_create [StorageHostCreate]
261
261
  # @param [Hash] opts the optional parameters
262
- # @return [StorageHostResponse]
262
+ # @return [AsyncResponse]
263
263
  def storage_hosts_post(storage_host_create, opts = {})
264
264
  data, _status_code, _headers = storage_hosts_post_with_http_info(storage_host_create, opts)
265
265
  data
@@ -267,7 +267,7 @@ module AutosdeOpenapiClient
267
267
 
268
268
  # @param storage_host_create [StorageHostCreate]
269
269
  # @param [Hash] opts the optional parameters
270
- # @return [Array<(StorageHostResponse, Integer, Hash)>] StorageHostResponse data, response status code and response headers
270
+ # @return [Array<(AsyncResponse, Integer, Hash)>] AsyncResponse data, response status code and response headers
271
271
  def storage_hosts_post_with_http_info(storage_host_create, opts = {})
272
272
  if @api_client.config.debugging
273
273
  @api_client.config.logger.debug 'Calling API: StorageHostApi.storage_hosts_post ...'
@@ -296,7 +296,7 @@ module AutosdeOpenapiClient
296
296
  post_body = opts[:debug_body] || @api_client.object_to_http_body(storage_host_create)
297
297
 
298
298
  # return_type
299
- return_type = opts[:debug_return_type] || 'StorageHostResponse'
299
+ return_type = opts[:debug_return_type] || 'AsyncResponse'
300
300
 
301
301
  # auth_names
302
302
  auth_names = opts[:debug_auth_names] || ['bearerAuth']
@@ -192,7 +192,7 @@ module AutosdeOpenapiClient
192
192
 
193
193
  # @param storage_hosts_mapping_create [StorageHostsMappingCreate]
194
194
  # @param [Hash] opts the optional parameters
195
- # @return [StorageHostsMapping]
195
+ # @return [AsyncResponse]
196
196
  def storage_hosts_mapping_post(storage_hosts_mapping_create, opts = {})
197
197
  data, _status_code, _headers = storage_hosts_mapping_post_with_http_info(storage_hosts_mapping_create, opts)
198
198
  data
@@ -200,7 +200,7 @@ module AutosdeOpenapiClient
200
200
 
201
201
  # @param storage_hosts_mapping_create [StorageHostsMappingCreate]
202
202
  # @param [Hash] opts the optional parameters
203
- # @return [Array<(StorageHostsMapping, Integer, Hash)>] StorageHostsMapping data, response status code and response headers
203
+ # @return [Array<(AsyncResponse, Integer, Hash)>] AsyncResponse data, response status code and response headers
204
204
  def storage_hosts_mapping_post_with_http_info(storage_hosts_mapping_create, opts = {})
205
205
  if @api_client.config.debugging
206
206
  @api_client.config.logger.debug 'Calling API: StorageHostsMappingApi.storage_hosts_mapping_post ...'
@@ -229,7 +229,7 @@ module AutosdeOpenapiClient
229
229
  post_body = opts[:debug_body] || @api_client.object_to_http_body(storage_hosts_mapping_create)
230
230
 
231
231
  # return_type
232
- return_type = opts[:debug_return_type] || 'StorageHostsMapping'
232
+ return_type = opts[:debug_return_type] || 'AsyncResponse'
233
233
 
234
234
  # auth_names
235
235
  auth_names = opts[:debug_auth_names] || ['bearerAuth']
@@ -259,7 +259,7 @@ module AutosdeOpenapiClient
259
259
 
260
260
  # @param storage_system_create [StorageSystemCreate]
261
261
  # @param [Hash] opts the optional parameters
262
- # @return [StorageSystem]
262
+ # @return [AsyncResponse]
263
263
  def storage_systems_post(storage_system_create, opts = {})
264
264
  data, _status_code, _headers = storage_systems_post_with_http_info(storage_system_create, opts)
265
265
  data
@@ -267,7 +267,7 @@ module AutosdeOpenapiClient
267
267
 
268
268
  # @param storage_system_create [StorageSystemCreate]
269
269
  # @param [Hash] opts the optional parameters
270
- # @return [Array<(StorageSystem, Integer, Hash)>] StorageSystem data, response status code and response headers
270
+ # @return [Array<(AsyncResponse, Integer, Hash)>] AsyncResponse data, response status code and response headers
271
271
  def storage_systems_post_with_http_info(storage_system_create, opts = {})
272
272
  if @api_client.config.debugging
273
273
  @api_client.config.logger.debug 'Calling API: StorageSystemApi.storage_systems_post ...'
@@ -296,7 +296,7 @@ module AutosdeOpenapiClient
296
296
  post_body = opts[:debug_body] || @api_client.object_to_http_body(storage_system_create)
297
297
 
298
298
  # return_type
299
- return_type = opts[:debug_return_type] || 'StorageSystem'
299
+ return_type = opts[:debug_return_type] || 'AsyncResponse'
300
300
 
301
301
  # auth_names
302
302
  auth_names = opts[:debug_auth_names] || ['bearerAuth']
@@ -192,7 +192,7 @@ module AutosdeOpenapiClient
192
192
 
193
193
  # @param system_type_create [SystemTypeCreate]
194
194
  # @param [Hash] opts the optional parameters
195
- # @return [SystemType]
195
+ # @return [AsyncResponse]
196
196
  def system_types_post(system_type_create, opts = {})
197
197
  data, _status_code, _headers = system_types_post_with_http_info(system_type_create, opts)
198
198
  data
@@ -200,7 +200,7 @@ module AutosdeOpenapiClient
200
200
 
201
201
  # @param system_type_create [SystemTypeCreate]
202
202
  # @param [Hash] opts the optional parameters
203
- # @return [Array<(SystemType, Integer, Hash)>] SystemType data, response status code and response headers
203
+ # @return [Array<(AsyncResponse, Integer, Hash)>] AsyncResponse data, response status code and response headers
204
204
  def system_types_post_with_http_info(system_type_create, opts = {})
205
205
  if @api_client.config.debugging
206
206
  @api_client.config.logger.debug 'Calling API: SystemTypeApi.system_types_post ...'
@@ -229,7 +229,7 @@ module AutosdeOpenapiClient
229
229
  post_body = opts[:debug_body] || @api_client.object_to_http_body(system_type_create)
230
230
 
231
231
  # return_type
232
- return_type = opts[:debug_return_type] || 'SystemType'
232
+ return_type = opts[:debug_return_type] || 'AsyncResponse'
233
233
 
234
234
  # auth_names
235
235
  auth_names = opts[:debug_auth_names] || ['bearerAuth']
@@ -259,7 +259,7 @@ module AutosdeOpenapiClient
259
259
 
260
260
  # @param volume_create [VolumeCreate]
261
261
  # @param [Hash] opts the optional parameters
262
- # @return [VolumeResponse]
262
+ # @return [AsyncResponse]
263
263
  def volumes_post(volume_create, opts = {})
264
264
  data, _status_code, _headers = volumes_post_with_http_info(volume_create, opts)
265
265
  data
@@ -267,7 +267,7 @@ module AutosdeOpenapiClient
267
267
 
268
268
  # @param volume_create [VolumeCreate]
269
269
  # @param [Hash] opts the optional parameters
270
- # @return [Array<(VolumeResponse, Integer, Hash)>] VolumeResponse data, response status code and response headers
270
+ # @return [Array<(AsyncResponse, Integer, Hash)>] AsyncResponse data, response status code and response headers
271
271
  def volumes_post_with_http_info(volume_create, opts = {})
272
272
  if @api_client.config.debugging
273
273
  @api_client.config.logger.debug 'Calling API: VolumeApi.volumes_post ...'
@@ -296,7 +296,7 @@ module AutosdeOpenapiClient
296
296
  post_body = opts[:debug_body] || @api_client.object_to_http_body(volume_create)
297
297
 
298
298
  # return_type
299
- return_type = opts[:debug_return_type] || 'VolumeResponse'
299
+ return_type = opts[:debug_return_type] || 'AsyncResponse'
300
300
 
301
301
  # auth_names
302
302
  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: 1.2.3
6
+ The version of the OpenAPI document: 1.2.4
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.3'
14
+ VERSION = '1.2.4'
15
15
  end
@@ -64,7 +64,7 @@ describe 'AddressApi' do
64
64
  # unit tests for addresses_post
65
65
  # @param address_create
66
66
  # @param [Hash] opts the optional parameters
67
- # @return [Address]
67
+ # @return [AsyncResponse]
68
68
  describe 'addresses_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
@@ -64,7 +64,7 @@ describe 'EventApi' do
64
64
  # unit tests for events_post
65
65
  # @param event
66
66
  # @param [Hash] opts the optional parameters
67
- # @return [EventResponse]
67
+ # @return [AsyncResponse]
68
68
  describe 'events_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
@@ -64,7 +64,7 @@ describe 'HostApi' do
64
64
  # unit tests for hosts_post
65
65
  # @param host_create
66
66
  # @param [Hash] opts the optional parameters
67
- # @return [Host]
67
+ # @return [AsyncResponse]
68
68
  describe 'hosts_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
@@ -64,7 +64,7 @@ describe 'HostClusterMembershipApi' do
64
64
  # unit tests for host_cluster_membership_post
65
65
  # @param host_cluster_membership
66
66
  # @param [Hash] opts the optional parameters
67
- # @return [HostClusterMembership]
67
+ # @return [AsyncResponse]
68
68
  describe 'host_cluster_membership_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
@@ -64,7 +64,7 @@ describe 'HostVolumeConnectionApi' do
64
64
  # unit tests for host_volume_connection_post
65
65
  # @param host_volume_connection_create
66
66
  # @param [Hash] opts the optional parameters
67
- # @return [HostVolumeConnection]
67
+ # @return [AsyncResponse]
68
68
  describe 'host_volume_connection_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
@@ -75,7 +75,7 @@ describe 'ServiceApi' do
75
75
  # unit tests for services_post
76
76
  # @param service_create
77
77
  # @param [Hash] opts the optional parameters
78
- # @return [Service]
78
+ # @return [AsyncResponse]
79
79
  describe 'services_post test' do
80
80
  it 'should work' do
81
81
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -64,7 +64,7 @@ describe 'ServiceResourceAttachmentApi' do
64
64
  # unit tests for service_resource_attachment_post
65
65
  # @param service_resource_attachment
66
66
  # @param [Hash] opts the optional parameters
67
- # @return [ServiceResourceAttachment]
67
+ # @return [AsyncResponse]
68
68
  describe 'service_resource_attachment_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
@@ -64,7 +64,7 @@ describe 'SnapshotApi' do
64
64
  # unit tests for snapshots_post
65
65
  # @param snapshot_create
66
66
  # @param [Hash] opts the optional parameters
67
- # @return [Snapshot]
67
+ # @return [AsyncResponse]
68
68
  describe 'snapshots_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
@@ -75,7 +75,7 @@ describe 'StorageHostApi' do
75
75
  # unit tests for storage_hosts_post
76
76
  # @param storage_host_create
77
77
  # @param [Hash] opts the optional parameters
78
- # @return [StorageHostResponse]
78
+ # @return [AsyncResponse]
79
79
  describe 'storage_hosts_post test' do
80
80
  it 'should work' do
81
81
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -64,7 +64,7 @@ describe 'StorageHostsMappingApi' do
64
64
  # unit tests for storage_hosts_mapping_post
65
65
  # @param storage_hosts_mapping_create
66
66
  # @param [Hash] opts the optional parameters
67
- # @return [StorageHostsMapping]
67
+ # @return [AsyncResponse]
68
68
  describe 'storage_hosts_mapping_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
@@ -75,7 +75,7 @@ describe 'StorageSystemApi' do
75
75
  # unit tests for storage_systems_post
76
76
  # @param storage_system_create
77
77
  # @param [Hash] opts the optional parameters
78
- # @return [StorageSystem]
78
+ # @return [AsyncResponse]
79
79
  describe 'storage_systems_post test' do
80
80
  it 'should work' do
81
81
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -64,7 +64,7 @@ describe 'SystemTypeApi' do
64
64
  # unit tests for system_types_post
65
65
  # @param system_type_create
66
66
  # @param [Hash] opts the optional parameters
67
- # @return [SystemType]
67
+ # @return [AsyncResponse]
68
68
  describe 'system_types_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
@@ -75,7 +75,7 @@ describe 'VolumeApi' do
75
75
  # unit tests for volumes_post
76
76
  # @param volume_create
77
77
  # @param [Hash] opts the optional parameters
78
- # @return [VolumeResponse]
78
+ # @return [AsyncResponse]
79
79
  describe 'volumes_post test' do
80
80
  it 'should work' do
81
81
  # 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.3
4
+ version: 1.2.4
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-08-28 00:00:00.000000000 Z
11
+ date: 2022-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -386,103 +386,103 @@ signing_key:
386
386
  specification_version: 4
387
387
  summary: Site Manager API Ruby Gem
388
388
  test_files:
389
- - spec/api/storage_host_wwpn_candidates_api_spec.rb
390
- - spec/api/host_api_spec.rb
389
+ - spec/api/service_resource_attachment_api_spec.rb
391
390
  - spec/api/account_api_spec.rb
392
- - spec/api/service_api_spec.rb
393
- - spec/api/provisioning_strategy_api_spec.rb
394
- - spec/api/capability_translation_api_spec.rb
395
- - spec/api/profile_api_spec.rb
396
- - spec/api/volume_safe_delete_api_spec.rb
397
- - spec/api/storage_hosts_mapping_api_spec.rb
398
- - spec/api/volume_api_spec.rb
391
+ - spec/api/host_volume_connection_api_spec.rb
399
392
  - spec/api/refresh_system_api_spec.rb
393
+ - spec/api/auto_sde_project_api_spec.rb
394
+ - spec/api/host_api_spec.rb
400
395
  - spec/api/address_api_spec.rb
401
- - spec/api/host_cluster_volume_mapping_api_spec.rb
402
- - spec/api/service_resource_attachment_api_spec.rb
396
+ - spec/api/authentication_api_spec.rb
397
+ - spec/api/validate_system_api_spec.rb
398
+ - spec/api/host_cluster_api_spec.rb
399
+ - spec/api/capability_translation_api_spec.rb
400
+ - spec/api/storage_host_api_spec.rb
403
401
  - spec/api/event_api_spec.rb
402
+ - spec/api/storage_host_wwpn_candidates_api_spec.rb
403
+ - spec/api/job_api_spec.rb
404
+ - spec/api/snapshot_api_spec.rb
404
405
  - spec/api/storage_system_api_spec.rb
405
- - spec/api/auto_sde_project_api_spec.rb
406
- - spec/api/system_type_api_spec.rb
407
- - spec/api/abstract_capability_api_spec.rb
408
- - spec/api/storage_host_api_spec.rb
409
406
  - spec/api/host_cluster_membership_api_spec.rb
410
- - spec/api/user_api_spec.rb
411
- - spec/api/snapshot_api_spec.rb
412
- - spec/api/host_volume_connection_api_spec.rb
413
- - spec/api/celery_config_api_spec.rb
414
- - spec/api/validate_system_api_spec.rb
407
+ - spec/api/storage_resource_api_spec.rb
415
408
  - spec/api/native_capability_api_spec.rb
409
+ - spec/api/volume_safe_delete_api_spec.rb
410
+ - spec/api/provisioning_strategy_api_spec.rb
411
+ - spec/api/profile_api_spec.rb
412
+ - spec/api/celery_config_api_spec.rb
413
+ - spec/api/volume_api_spec.rb
414
+ - spec/api/abstract_capability_api_spec.rb
415
+ - spec/api/system_type_api_spec.rb
416
+ - spec/api/host_cluster_volume_mapping_api_spec.rb
417
+ - spec/api/user_api_spec.rb
418
+ - spec/api/storage_hosts_mapping_api_spec.rb
416
419
  - spec/api/auto_sde_role_api_spec.rb
417
- - spec/api/authentication_api_spec.rb
418
- - spec/api/storage_resource_api_spec.rb
419
- - spec/api/host_cluster_api_spec.rb
420
- - spec/api/job_api_spec.rb
420
+ - spec/api/service_api_spec.rb
421
421
  - spec/api_client_spec.rb
422
422
  - spec/configuration_spec.rb
423
- - spec/models/account_post_request_spec.rb
424
- - spec/models/system_type_spec.rb
425
- - spec/models/host_spec.rb
426
- - spec/models/storage_host_create_spec.rb
423
+ - spec/models/host_cluster_volume_mapping_spec.rb
424
+ - spec/models/storage_host_response_spec.rb
425
+ - spec/models/address_create_spec.rb
426
+ - spec/models/host_cluster_response_spec.rb
427
+ - spec/models/volume_safe_delete_spec.rb
427
428
  - spec/models/volume_response_spec.rb
428
- - spec/models/account_post_response_spec.rb
429
- - spec/models/host_cluster_volume_mapping_response_spec.rb
430
- - spec/models/provisioning_strategy_spec.rb
431
- - spec/models/event_spec.rb
432
- - spec/models/host_cluster_membership_spec.rb
429
+ - spec/models/capability_translation_create_spec.rb
430
+ - spec/models/storage_host_update_spec.rb
431
+ - spec/models/system_type_create_spec.rb
432
+ - spec/models/system_type_spec.rb
433
+ - spec/models/user_create_spec.rb
434
+ - spec/models/storage_resource_response_spec.rb
435
+ - spec/models/storage_system_create_spec.rb
436
+ - spec/models/host_cluster_volume_mapping_create_spec.rb
437
+ - spec/models/authentication_spec.rb
438
+ - spec/models/storage_hosts_mapping_spec.rb
433
439
  - spec/models/refresh_system_spec.rb
434
- - spec/models/validate_system_spec.rb
435
440
  - spec/models/capability_translation_spec.rb
436
- - spec/models/volume_safe_delete_spec.rb
437
- - spec/models/host_create_spec.rb
438
- - spec/models/job_spec.rb
441
+ - spec/models/host_cluster_membership_spec.rb
442
+ - spec/models/storage_hosts_mapping_response_spec.rb
443
+ - spec/models/user_spec.rb
444
+ - spec/models/snapshot_spec.rb
439
445
  - spec/models/host_cluster_create_spec.rb
440
- - spec/models/account_spec.rb
441
- - spec/models/storage_system_spec.rb
442
- - spec/models/storage_resource_create_spec.rb
443
- - spec/models/auto_sde_role_spec.rb
444
- - spec/models/host_cluster_volume_mapping_create_spec.rb
445
- - spec/models/authentication_spec.rb
446
- - spec/models/user_create_spec.rb
447
- - spec/models/snapshot_create_spec.rb
448
- - spec/models/user_update_spec.rb
446
+ - spec/models/host_cluster_volume_mapping_response_spec.rb
447
+ - spec/models/provisioning_strategy_spec.rb
448
+ - spec/models/storage_host_create_spec.rb
449
449
  - spec/models/auth_response_spec.rb
450
+ - spec/models/account_post_response_spec.rb
451
+ - spec/models/storage_host_spec.rb
452
+ - spec/models/storage_system_update_spec.rb
453
+ - spec/models/service_resource_attachment_spec.rb
454
+ - spec/models/storage_host_wwpn_candidates_spec.rb
455
+ - spec/models/profile_spec.rb
450
456
  - spec/models/native_capability_spec.rb
451
- - spec/models/job_create_spec.rb
452
- - spec/models/storage_resource_spec.rb
453
- - spec/models/storage_hosts_mapping_spec.rb
454
457
  - spec/models/storage_hosts_mapping_create_spec.rb
455
- - spec/models/storage_resource_response_spec.rb
456
- - spec/models/snapshot_spec.rb
457
- - spec/models/volume_safe_delete_create_spec.rb
458
- - spec/models/storage_host_update_spec.rb
459
- - spec/models/service_create_spec.rb
460
- - spec/models/host_cluster_response_spec.rb
461
- - spec/models/async_response_spec.rb
462
- - spec/models/host_volume_connection_create_spec.rb
463
- - spec/models/capability_translation_create_spec.rb
458
+ - spec/models/validate_system_spec.rb
464
459
  - spec/models/service_spec.rb
465
- - spec/models/address_create_spec.rb
460
+ - spec/models/storage_resource_create_spec.rb
466
461
  - spec/models/host_cluster_spec.rb
467
- - spec/models/storage_system_create_spec.rb
468
- - spec/models/event_response_spec.rb
462
+ - spec/models/host_create_spec.rb
463
+ - spec/models/job_spec.rb
469
464
  - spec/models/volume_update_spec.rb
470
- - spec/models/celery_config_spec.rb
471
- - spec/models/user_spec.rb
472
- - spec/models/address_spec.rb
473
- - spec/models/host_cluster_volume_mapping_spec.rb
474
- - spec/models/system_type_create_spec.rb
475
- - spec/models/storage_hosts_mapping_response_spec.rb
476
- - spec/models/storage_host_wwpn_candidates_spec.rb
465
+ - spec/models/event_spec.rb
466
+ - spec/models/auto_sde_role_spec.rb
467
+ - spec/models/service_create_spec.rb
468
+ - spec/models/host_spec.rb
469
+ - spec/models/host_volume_connection_spec.rb
477
470
  - spec/models/auto_sde_project_spec.rb
478
- - spec/models/service_resource_attachment_spec.rb
479
471
  - spec/models/volume_spec.rb
480
- - spec/models/storage_system_update_spec.rb
481
- - spec/models/storage_host_spec.rb
482
- - spec/models/host_volume_connection_spec.rb
483
- - spec/models/storage_host_response_spec.rb
484
- - spec/models/service_abstract_capability_value_spec.rb
485
- - spec/models/abstract_capability_spec.rb
486
- - spec/models/profile_spec.rb
472
+ - spec/models/account_spec.rb
473
+ - spec/models/snapshot_create_spec.rb
474
+ - spec/models/host_volume_connection_create_spec.rb
475
+ - spec/models/account_post_request_spec.rb
476
+ - spec/models/storage_system_spec.rb
477
+ - spec/models/address_spec.rb
487
478
  - spec/models/volume_create_spec.rb
479
+ - spec/models/storage_resource_spec.rb
480
+ - spec/models/celery_config_spec.rb
481
+ - spec/models/abstract_capability_spec.rb
482
+ - spec/models/event_response_spec.rb
483
+ - spec/models/volume_safe_delete_create_spec.rb
484
+ - spec/models/async_response_spec.rb
485
+ - spec/models/service_abstract_capability_value_spec.rb
486
+ - spec/models/user_update_spec.rb
487
+ - spec/models/job_create_spec.rb
488
488
  - spec/spec_helper.rb