pulp_container_client 2.26.2 → 2.26.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.
Files changed (49) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContainerContainerDistribution.md +6 -6
  4. data/docs/ContainerContainerDistributionResponse.md +14 -14
  5. data/docs/ContainerContainerPullThroughDistribution.md +6 -6
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +14 -14
  7. data/docs/ContainerContainerPushRepository.md +7 -7
  8. data/docs/ContainerContainerPushRepositoryResponse.md +16 -16
  9. data/docs/DistributionsContainerApi.md +12 -12
  10. data/docs/DistributionsPullThroughApi.md +12 -12
  11. data/docs/PatchedcontainerContainerDistribution.md +6 -6
  12. data/docs/PatchedcontainerContainerPullThroughDistribution.md +6 -6
  13. data/docs/PatchedcontainerContainerPushRepository.md +7 -7
  14. data/docs/RemotesContainerApi.md +10 -10
  15. data/docs/RemotesPullThroughApi.md +10 -10
  16. data/docs/RepositoriesContainerApi.md +10 -10
  17. data/docs/RepositoriesContainerPushApi.md +10 -10
  18. data/lib/pulp_container_client/api/distributions_container_api.rb +10 -10
  19. data/lib/pulp_container_client/api/distributions_pull_through_api.rb +10 -10
  20. data/lib/pulp_container_client/api/remotes_container_api.rb +10 -10
  21. data/lib/pulp_container_client/api/remotes_pull_through_api.rb +10 -10
  22. data/lib/pulp_container_client/api/repositories_container_api.rb +10 -10
  23. data/lib/pulp_container_client/api/repositories_container_push_api.rb +10 -10
  24. data/lib/pulp_container_client/models/container_container_distribution.rb +55 -55
  25. data/lib/pulp_container_client/models/container_container_distribution_response.rb +70 -70
  26. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +55 -55
  27. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +70 -70
  28. data/lib/pulp_container_client/models/container_container_push_repository.rb +49 -49
  29. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +66 -66
  30. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +48 -48
  31. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +48 -48
  32. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +49 -49
  33. data/lib/pulp_container_client/version.rb +1 -1
  34. data/spec/api/distributions_container_api_spec.rb +4 -4
  35. data/spec/api/distributions_pull_through_api_spec.rb +4 -4
  36. data/spec/api/remotes_container_api_spec.rb +4 -4
  37. data/spec/api/remotes_pull_through_api_spec.rb +4 -4
  38. data/spec/api/repositories_container_api_spec.rb +4 -4
  39. data/spec/api/repositories_container_push_api_spec.rb +4 -4
  40. data/spec/models/container_container_distribution_response_spec.rb +11 -11
  41. data/spec/models/container_container_distribution_spec.rb +6 -6
  42. data/spec/models/container_container_pull_through_distribution_response_spec.rb +11 -11
  43. data/spec/models/container_container_pull_through_distribution_spec.rb +6 -6
  44. data/spec/models/container_container_push_repository_response_spec.rb +10 -10
  45. data/spec/models/container_container_push_repository_spec.rb +5 -5
  46. data/spec/models/patchedcontainer_container_distribution_spec.rb +6 -6
  47. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +6 -6
  48. data/spec/models/patchedcontainer_container_push_repository_spec.rb +5 -5
  49. metadata +58 -58
@@ -524,11 +524,11 @@ end
524
524
 
525
525
  ## partial_update
526
526
 
527
- > <AsyncOperationResponse> partial_update(container_container_remote_href, patchedcontainer_container_remote, opts)
527
+ > <ContainerContainerRemoteResponse> partial_update(container_container_remote_href, patchedcontainer_container_remote, opts)
528
528
 
529
529
  Update a container remote
530
530
 
531
- Trigger an asynchronous partial update task
531
+ Update the entity partially and trigger an asynchronous task if necessary
532
532
 
533
533
  ### Examples
534
534
 
@@ -562,7 +562,7 @@ end
562
562
 
563
563
  This returns an Array which contains the response data, status code and headers.
564
564
 
565
- > <Array(<AsyncOperationResponse>, Integer, Hash)> partial_update_with_http_info(container_container_remote_href, patchedcontainer_container_remote, opts)
565
+ > <Array(<ContainerContainerRemoteResponse>, Integer, Hash)> partial_update_with_http_info(container_container_remote_href, patchedcontainer_container_remote, opts)
566
566
 
567
567
  ```ruby
568
568
  begin
@@ -570,7 +570,7 @@ begin
570
570
  data, status_code, headers = api_instance.partial_update_with_http_info(container_container_remote_href, patchedcontainer_container_remote, opts)
571
571
  p status_code # => 2xx
572
572
  p headers # => { ... }
573
- p data # => <AsyncOperationResponse>
573
+ p data # => <ContainerContainerRemoteResponse>
574
574
  rescue PulpContainerClient::ApiError => e
575
575
  puts "Error when calling RemotesContainerApi->partial_update_with_http_info: #{e}"
576
576
  end
@@ -586,7 +586,7 @@ end
586
586
 
587
587
  ### Return type
588
588
 
589
- [**AsyncOperationResponse**](AsyncOperationResponse.md)
589
+ [**ContainerContainerRemoteResponse**](ContainerContainerRemoteResponse.md)
590
590
 
591
591
  ### Authorization
592
592
 
@@ -906,11 +906,11 @@ end
906
906
 
907
907
  ## update
908
908
 
909
- > <AsyncOperationResponse> update(container_container_remote_href, container_container_remote, opts)
909
+ > <ContainerContainerRemoteResponse> update(container_container_remote_href, container_container_remote, opts)
910
910
 
911
911
  Update a container remote
912
912
 
913
- Trigger an asynchronous update task
913
+ Update the entity and trigger an asynchronous task if necessary
914
914
 
915
915
  ### Examples
916
916
 
@@ -944,7 +944,7 @@ end
944
944
 
945
945
  This returns an Array which contains the response data, status code and headers.
946
946
 
947
- > <Array(<AsyncOperationResponse>, Integer, Hash)> update_with_http_info(container_container_remote_href, container_container_remote, opts)
947
+ > <Array(<ContainerContainerRemoteResponse>, Integer, Hash)> update_with_http_info(container_container_remote_href, container_container_remote, opts)
948
948
 
949
949
  ```ruby
950
950
  begin
@@ -952,7 +952,7 @@ begin
952
952
  data, status_code, headers = api_instance.update_with_http_info(container_container_remote_href, container_container_remote, opts)
953
953
  p status_code # => 2xx
954
954
  p headers # => { ... }
955
- p data # => <AsyncOperationResponse>
955
+ p data # => <ContainerContainerRemoteResponse>
956
956
  rescue PulpContainerClient::ApiError => e
957
957
  puts "Error when calling RemotesContainerApi->update_with_http_info: #{e}"
958
958
  end
@@ -968,7 +968,7 @@ end
968
968
 
969
969
  ### Return type
970
970
 
971
- [**AsyncOperationResponse**](AsyncOperationResponse.md)
971
+ [**ContainerContainerRemoteResponse**](ContainerContainerRemoteResponse.md)
972
972
 
973
973
  ### Authorization
974
974
 
@@ -524,11 +524,11 @@ end
524
524
 
525
525
  ## partial_update
526
526
 
527
- > <AsyncOperationResponse> partial_update(container_container_pull_through_remote_href, patchedcontainer_container_pull_through_remote, opts)
527
+ > <ContainerContainerPullThroughRemoteResponse> partial_update(container_container_pull_through_remote_href, patchedcontainer_container_pull_through_remote, opts)
528
528
 
529
529
  Update a container pull through remote
530
530
 
531
- Trigger an asynchronous partial update task
531
+ Update the entity partially and trigger an asynchronous task if necessary
532
532
 
533
533
  ### Examples
534
534
 
@@ -562,7 +562,7 @@ end
562
562
 
563
563
  This returns an Array which contains the response data, status code and headers.
564
564
 
565
- > <Array(<AsyncOperationResponse>, Integer, Hash)> partial_update_with_http_info(container_container_pull_through_remote_href, patchedcontainer_container_pull_through_remote, opts)
565
+ > <Array(<ContainerContainerPullThroughRemoteResponse>, Integer, Hash)> partial_update_with_http_info(container_container_pull_through_remote_href, patchedcontainer_container_pull_through_remote, opts)
566
566
 
567
567
  ```ruby
568
568
  begin
@@ -570,7 +570,7 @@ begin
570
570
  data, status_code, headers = api_instance.partial_update_with_http_info(container_container_pull_through_remote_href, patchedcontainer_container_pull_through_remote, opts)
571
571
  p status_code # => 2xx
572
572
  p headers # => { ... }
573
- p data # => <AsyncOperationResponse>
573
+ p data # => <ContainerContainerPullThroughRemoteResponse>
574
574
  rescue PulpContainerClient::ApiError => e
575
575
  puts "Error when calling RemotesPullThroughApi->partial_update_with_http_info: #{e}"
576
576
  end
@@ -586,7 +586,7 @@ end
586
586
 
587
587
  ### Return type
588
588
 
589
- [**AsyncOperationResponse**](AsyncOperationResponse.md)
589
+ [**ContainerContainerPullThroughRemoteResponse**](ContainerContainerPullThroughRemoteResponse.md)
590
590
 
591
591
  ### Authorization
592
592
 
@@ -906,11 +906,11 @@ end
906
906
 
907
907
  ## update
908
908
 
909
- > <AsyncOperationResponse> update(container_container_pull_through_remote_href, container_container_pull_through_remote, opts)
909
+ > <ContainerContainerPullThroughRemoteResponse> update(container_container_pull_through_remote_href, container_container_pull_through_remote, opts)
910
910
 
911
911
  Update a container pull through remote
912
912
 
913
- Trigger an asynchronous update task
913
+ Update the entity and trigger an asynchronous task if necessary
914
914
 
915
915
  ### Examples
916
916
 
@@ -944,7 +944,7 @@ end
944
944
 
945
945
  This returns an Array which contains the response data, status code and headers.
946
946
 
947
- > <Array(<AsyncOperationResponse>, Integer, Hash)> update_with_http_info(container_container_pull_through_remote_href, container_container_pull_through_remote, opts)
947
+ > <Array(<ContainerContainerPullThroughRemoteResponse>, Integer, Hash)> update_with_http_info(container_container_pull_through_remote_href, container_container_pull_through_remote, opts)
948
948
 
949
949
  ```ruby
950
950
  begin
@@ -952,7 +952,7 @@ begin
952
952
  data, status_code, headers = api_instance.update_with_http_info(container_container_pull_through_remote_href, container_container_pull_through_remote, opts)
953
953
  p status_code # => 2xx
954
954
  p headers # => { ... }
955
- p data # => <AsyncOperationResponse>
955
+ p data # => <ContainerContainerPullThroughRemoteResponse>
956
956
  rescue PulpContainerClient::ApiError => e
957
957
  puts "Error when calling RemotesPullThroughApi->update_with_http_info: #{e}"
958
958
  end
@@ -968,7 +968,7 @@ end
968
968
 
969
969
  ### Return type
970
970
 
971
- [**AsyncOperationResponse**](AsyncOperationResponse.md)
971
+ [**ContainerContainerPullThroughRemoteResponse**](ContainerContainerPullThroughRemoteResponse.md)
972
972
 
973
973
  ### Authorization
974
974
 
@@ -851,11 +851,11 @@ end
851
851
 
852
852
  ## partial_update
853
853
 
854
- > <AsyncOperationResponse> partial_update(container_container_repository_href, patchedcontainer_container_repository, opts)
854
+ > <ContainerContainerRepositoryResponse> partial_update(container_container_repository_href, patchedcontainer_container_repository, opts)
855
855
 
856
856
  Update a container repository
857
857
 
858
- Trigger an asynchronous partial update task
858
+ Update the entity partially and trigger an asynchronous task if necessary
859
859
 
860
860
  ### Examples
861
861
 
@@ -889,7 +889,7 @@ end
889
889
 
890
890
  This returns an Array which contains the response data, status code and headers.
891
891
 
892
- > <Array(<AsyncOperationResponse>, Integer, Hash)> partial_update_with_http_info(container_container_repository_href, patchedcontainer_container_repository, opts)
892
+ > <Array(<ContainerContainerRepositoryResponse>, Integer, Hash)> partial_update_with_http_info(container_container_repository_href, patchedcontainer_container_repository, opts)
893
893
 
894
894
  ```ruby
895
895
  begin
@@ -897,7 +897,7 @@ begin
897
897
  data, status_code, headers = api_instance.partial_update_with_http_info(container_container_repository_href, patchedcontainer_container_repository, opts)
898
898
  p status_code # => 2xx
899
899
  p headers # => { ... }
900
- p data # => <AsyncOperationResponse>
900
+ p data # => <ContainerContainerRepositoryResponse>
901
901
  rescue PulpContainerClient::ApiError => e
902
902
  puts "Error when calling RepositoriesContainerApi->partial_update_with_http_info: #{e}"
903
903
  end
@@ -913,7 +913,7 @@ end
913
913
 
914
914
  ### Return type
915
915
 
916
- [**AsyncOperationResponse**](AsyncOperationResponse.md)
916
+ [**ContainerContainerRepositoryResponse**](ContainerContainerRepositoryResponse.md)
917
917
 
918
918
  ### Authorization
919
919
 
@@ -1613,11 +1613,11 @@ end
1613
1613
 
1614
1614
  ## update
1615
1615
 
1616
- > <AsyncOperationResponse> update(container_container_repository_href, container_container_repository, opts)
1616
+ > <ContainerContainerRepositoryResponse> update(container_container_repository_href, container_container_repository, opts)
1617
1617
 
1618
1618
  Update a container repository
1619
1619
 
1620
- Trigger an asynchronous update task
1620
+ Update the entity and trigger an asynchronous task if necessary
1621
1621
 
1622
1622
  ### Examples
1623
1623
 
@@ -1651,7 +1651,7 @@ end
1651
1651
 
1652
1652
  This returns an Array which contains the response data, status code and headers.
1653
1653
 
1654
- > <Array(<AsyncOperationResponse>, Integer, Hash)> update_with_http_info(container_container_repository_href, container_container_repository, opts)
1654
+ > <Array(<ContainerContainerRepositoryResponse>, Integer, Hash)> update_with_http_info(container_container_repository_href, container_container_repository, opts)
1655
1655
 
1656
1656
  ```ruby
1657
1657
  begin
@@ -1659,7 +1659,7 @@ begin
1659
1659
  data, status_code, headers = api_instance.update_with_http_info(container_container_repository_href, container_container_repository, opts)
1660
1660
  p status_code # => 2xx
1661
1661
  p headers # => { ... }
1662
- p data # => <AsyncOperationResponse>
1662
+ p data # => <ContainerContainerRepositoryResponse>
1663
1663
  rescue PulpContainerClient::ApiError => e
1664
1664
  puts "Error when calling RepositoriesContainerApi->update_with_http_info: #{e}"
1665
1665
  end
@@ -1675,7 +1675,7 @@ end
1675
1675
 
1676
1676
  ### Return type
1677
1677
 
1678
- [**AsyncOperationResponse**](AsyncOperationResponse.md)
1678
+ [**ContainerContainerRepositoryResponse**](ContainerContainerRepositoryResponse.md)
1679
1679
 
1680
1680
  ### Authorization
1681
1681
 
@@ -385,11 +385,11 @@ end
385
385
 
386
386
  ## partial_update
387
387
 
388
- > <AsyncOperationResponse> partial_update(container_container_push_repository_href, patchedcontainer_container_push_repository, opts)
388
+ > <ContainerContainerPushRepositoryResponse> partial_update(container_container_push_repository_href, patchedcontainer_container_push_repository, opts)
389
389
 
390
390
  Update a container push repository
391
391
 
392
- Trigger an asynchronous partial update task
392
+ Update the entity partially and trigger an asynchronous task if necessary
393
393
 
394
394
  ### Examples
395
395
 
@@ -423,7 +423,7 @@ end
423
423
 
424
424
  This returns an Array which contains the response data, status code and headers.
425
425
 
426
- > <Array(<AsyncOperationResponse>, Integer, Hash)> partial_update_with_http_info(container_container_push_repository_href, patchedcontainer_container_push_repository, opts)
426
+ > <Array(<ContainerContainerPushRepositoryResponse>, Integer, Hash)> partial_update_with_http_info(container_container_push_repository_href, patchedcontainer_container_push_repository, opts)
427
427
 
428
428
  ```ruby
429
429
  begin
@@ -431,7 +431,7 @@ begin
431
431
  data, status_code, headers = api_instance.partial_update_with_http_info(container_container_push_repository_href, patchedcontainer_container_push_repository, opts)
432
432
  p status_code # => 2xx
433
433
  p headers # => { ... }
434
- p data # => <AsyncOperationResponse>
434
+ p data # => <ContainerContainerPushRepositoryResponse>
435
435
  rescue PulpContainerClient::ApiError => e
436
436
  puts "Error when calling RepositoriesContainerPushApi->partial_update_with_http_info: #{e}"
437
437
  end
@@ -447,7 +447,7 @@ end
447
447
 
448
448
  ### Return type
449
449
 
450
- [**AsyncOperationResponse**](AsyncOperationResponse.md)
450
+ [**ContainerContainerPushRepositoryResponse**](ContainerContainerPushRepositoryResponse.md)
451
451
 
452
452
  ### Authorization
453
453
 
@@ -995,11 +995,11 @@ end
995
995
 
996
996
  ## update
997
997
 
998
- > <AsyncOperationResponse> update(container_container_push_repository_href, container_container_push_repository, opts)
998
+ > <ContainerContainerPushRepositoryResponse> update(container_container_push_repository_href, container_container_push_repository, opts)
999
999
 
1000
1000
  Update a container push repository
1001
1001
 
1002
- Trigger an asynchronous update task
1002
+ Update the entity and trigger an asynchronous task if necessary
1003
1003
 
1004
1004
  ### Examples
1005
1005
 
@@ -1033,7 +1033,7 @@ end
1033
1033
 
1034
1034
  This returns an Array which contains the response data, status code and headers.
1035
1035
 
1036
- > <Array(<AsyncOperationResponse>, Integer, Hash)> update_with_http_info(container_container_push_repository_href, container_container_push_repository, opts)
1036
+ > <Array(<ContainerContainerPushRepositoryResponse>, Integer, Hash)> update_with_http_info(container_container_push_repository_href, container_container_push_repository, opts)
1037
1037
 
1038
1038
  ```ruby
1039
1039
  begin
@@ -1041,7 +1041,7 @@ begin
1041
1041
  data, status_code, headers = api_instance.update_with_http_info(container_container_push_repository_href, container_container_push_repository, opts)
1042
1042
  p status_code # => 2xx
1043
1043
  p headers # => { ... }
1044
- p data # => <AsyncOperationResponse>
1044
+ p data # => <ContainerContainerPushRepositoryResponse>
1045
1045
  rescue PulpContainerClient::ApiError => e
1046
1046
  puts "Error when calling RepositoriesContainerPushApi->update_with_http_info: #{e}"
1047
1047
  end
@@ -1057,7 +1057,7 @@ end
1057
1057
 
1058
1058
  ### Return type
1059
1059
 
1060
- [**AsyncOperationResponse**](AsyncOperationResponse.md)
1060
+ [**ContainerContainerPushRepositoryResponse**](ContainerContainerPushRepositoryResponse.md)
1061
1061
 
1062
1062
  ### Authorization
1063
1063
 
@@ -526,24 +526,24 @@ module PulpContainerClient
526
526
  end
527
527
 
528
528
  # Update a container distribution
529
- # Trigger an asynchronous partial update task
529
+ # Update the entity partially and trigger an asynchronous task if necessary
530
530
  # @param container_container_distribution_href [String]
531
531
  # @param patchedcontainer_container_distribution [PatchedcontainerContainerDistribution]
532
532
  # @param [Hash] opts the optional parameters
533
533
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
534
- # @return [AsyncOperationResponse]
534
+ # @return [ContainerContainerDistributionResponse]
535
535
  def partial_update(container_container_distribution_href, patchedcontainer_container_distribution, opts = {})
536
536
  data, _status_code, _headers = partial_update_with_http_info(container_container_distribution_href, patchedcontainer_container_distribution, opts)
537
537
  data
538
538
  end
539
539
 
540
540
  # Update a container distribution
541
- # Trigger an asynchronous partial update task
541
+ # Update the entity partially and trigger an asynchronous task if necessary
542
542
  # @param container_container_distribution_href [String]
543
543
  # @param patchedcontainer_container_distribution [PatchedcontainerContainerDistribution]
544
544
  # @param [Hash] opts the optional parameters
545
545
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
546
- # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
546
+ # @return [Array<(ContainerContainerDistributionResponse, Integer, Hash)>] ContainerContainerDistributionResponse data, response status code and response headers
547
547
  def partial_update_with_http_info(container_container_distribution_href, patchedcontainer_container_distribution, opts = {})
548
548
  if @api_client.config.debugging
549
549
  @api_client.config.logger.debug 'Calling API: DistributionsContainerApi.partial_update ...'
@@ -580,7 +580,7 @@ module PulpContainerClient
580
580
  post_body = opts[:debug_body] || @api_client.object_to_http_body(patchedcontainer_container_distribution)
581
581
 
582
582
  # return_type
583
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
583
+ return_type = opts[:debug_return_type] || 'ContainerContainerDistributionResponse'
584
584
 
585
585
  # auth_names
586
586
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -906,24 +906,24 @@ module PulpContainerClient
906
906
  end
907
907
 
908
908
  # Update a container distribution
909
- # Trigger an asynchronous update task
909
+ # Update the entity and trigger an asynchronous task if necessary
910
910
  # @param container_container_distribution_href [String]
911
911
  # @param container_container_distribution [ContainerContainerDistribution]
912
912
  # @param [Hash] opts the optional parameters
913
913
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
914
- # @return [AsyncOperationResponse]
914
+ # @return [ContainerContainerDistributionResponse]
915
915
  def update(container_container_distribution_href, container_container_distribution, opts = {})
916
916
  data, _status_code, _headers = update_with_http_info(container_container_distribution_href, container_container_distribution, opts)
917
917
  data
918
918
  end
919
919
 
920
920
  # Update a container distribution
921
- # Trigger an asynchronous update task
921
+ # Update the entity and trigger an asynchronous task if necessary
922
922
  # @param container_container_distribution_href [String]
923
923
  # @param container_container_distribution [ContainerContainerDistribution]
924
924
  # @param [Hash] opts the optional parameters
925
925
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
926
- # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
926
+ # @return [Array<(ContainerContainerDistributionResponse, Integer, Hash)>] ContainerContainerDistributionResponse data, response status code and response headers
927
927
  def update_with_http_info(container_container_distribution_href, container_container_distribution, opts = {})
928
928
  if @api_client.config.debugging
929
929
  @api_client.config.logger.debug 'Calling API: DistributionsContainerApi.update ...'
@@ -960,7 +960,7 @@ module PulpContainerClient
960
960
  post_body = opts[:debug_body] || @api_client.object_to_http_body(container_container_distribution)
961
961
 
962
962
  # return_type
963
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
963
+ return_type = opts[:debug_return_type] || 'ContainerContainerDistributionResponse'
964
964
 
965
965
  # auth_names
966
966
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -523,24 +523,24 @@ module PulpContainerClient
523
523
  end
524
524
 
525
525
  # Update a container pull through distribution
526
- # Trigger an asynchronous partial update task
526
+ # Update the entity partially and trigger an asynchronous task if necessary
527
527
  # @param container_container_pull_through_distribution_href [String]
528
528
  # @param patchedcontainer_container_pull_through_distribution [PatchedcontainerContainerPullThroughDistribution]
529
529
  # @param [Hash] opts the optional parameters
530
530
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
531
- # @return [AsyncOperationResponse]
531
+ # @return [ContainerContainerPullThroughDistributionResponse]
532
532
  def partial_update(container_container_pull_through_distribution_href, patchedcontainer_container_pull_through_distribution, opts = {})
533
533
  data, _status_code, _headers = partial_update_with_http_info(container_container_pull_through_distribution_href, patchedcontainer_container_pull_through_distribution, opts)
534
534
  data
535
535
  end
536
536
 
537
537
  # Update a container pull through distribution
538
- # Trigger an asynchronous partial update task
538
+ # Update the entity partially and trigger an asynchronous task if necessary
539
539
  # @param container_container_pull_through_distribution_href [String]
540
540
  # @param patchedcontainer_container_pull_through_distribution [PatchedcontainerContainerPullThroughDistribution]
541
541
  # @param [Hash] opts the optional parameters
542
542
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
543
- # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
543
+ # @return [Array<(ContainerContainerPullThroughDistributionResponse, Integer, Hash)>] ContainerContainerPullThroughDistributionResponse data, response status code and response headers
544
544
  def partial_update_with_http_info(container_container_pull_through_distribution_href, patchedcontainer_container_pull_through_distribution, opts = {})
545
545
  if @api_client.config.debugging
546
546
  @api_client.config.logger.debug 'Calling API: DistributionsPullThroughApi.partial_update ...'
@@ -577,7 +577,7 @@ module PulpContainerClient
577
577
  post_body = opts[:debug_body] || @api_client.object_to_http_body(patchedcontainer_container_pull_through_distribution)
578
578
 
579
579
  # return_type
580
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
580
+ return_type = opts[:debug_return_type] || 'ContainerContainerPullThroughDistributionResponse'
581
581
 
582
582
  # auth_names
583
583
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -903,24 +903,24 @@ module PulpContainerClient
903
903
  end
904
904
 
905
905
  # Update a container pull through distribution
906
- # Trigger an asynchronous update task
906
+ # Update the entity and trigger an asynchronous task if necessary
907
907
  # @param container_container_pull_through_distribution_href [String]
908
908
  # @param container_container_pull_through_distribution [ContainerContainerPullThroughDistribution]
909
909
  # @param [Hash] opts the optional parameters
910
910
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
911
- # @return [AsyncOperationResponse]
911
+ # @return [ContainerContainerPullThroughDistributionResponse]
912
912
  def update(container_container_pull_through_distribution_href, container_container_pull_through_distribution, opts = {})
913
913
  data, _status_code, _headers = update_with_http_info(container_container_pull_through_distribution_href, container_container_pull_through_distribution, opts)
914
914
  data
915
915
  end
916
916
 
917
917
  # Update a container pull through distribution
918
- # Trigger an asynchronous update task
918
+ # Update the entity and trigger an asynchronous task if necessary
919
919
  # @param container_container_pull_through_distribution_href [String]
920
920
  # @param container_container_pull_through_distribution [ContainerContainerPullThroughDistribution]
921
921
  # @param [Hash] opts the optional parameters
922
922
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
923
- # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
923
+ # @return [Array<(ContainerContainerPullThroughDistributionResponse, Integer, Hash)>] ContainerContainerPullThroughDistributionResponse data, response status code and response headers
924
924
  def update_with_http_info(container_container_pull_through_distribution_href, container_container_pull_through_distribution, opts = {})
925
925
  if @api_client.config.debugging
926
926
  @api_client.config.logger.debug 'Calling API: DistributionsPullThroughApi.update ...'
@@ -957,7 +957,7 @@ module PulpContainerClient
957
957
  post_body = opts[:debug_body] || @api_client.object_to_http_body(container_container_pull_through_distribution)
958
958
 
959
959
  # return_type
960
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
960
+ return_type = opts[:debug_return_type] || 'ContainerContainerPullThroughDistributionResponse'
961
961
 
962
962
  # auth_names
963
963
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -520,24 +520,24 @@ module PulpContainerClient
520
520
  end
521
521
 
522
522
  # Update a container remote
523
- # Trigger an asynchronous partial update task
523
+ # Update the entity partially and trigger an asynchronous task if necessary
524
524
  # @param container_container_remote_href [String]
525
525
  # @param patchedcontainer_container_remote [PatchedcontainerContainerRemote]
526
526
  # @param [Hash] opts the optional parameters
527
527
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
528
- # @return [AsyncOperationResponse]
528
+ # @return [ContainerContainerRemoteResponse]
529
529
  def partial_update(container_container_remote_href, patchedcontainer_container_remote, opts = {})
530
530
  data, _status_code, _headers = partial_update_with_http_info(container_container_remote_href, patchedcontainer_container_remote, opts)
531
531
  data
532
532
  end
533
533
 
534
534
  # Update a container remote
535
- # Trigger an asynchronous partial update task
535
+ # Update the entity partially and trigger an asynchronous task if necessary
536
536
  # @param container_container_remote_href [String]
537
537
  # @param patchedcontainer_container_remote [PatchedcontainerContainerRemote]
538
538
  # @param [Hash] opts the optional parameters
539
539
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
540
- # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
540
+ # @return [Array<(ContainerContainerRemoteResponse, Integer, Hash)>] ContainerContainerRemoteResponse data, response status code and response headers
541
541
  def partial_update_with_http_info(container_container_remote_href, patchedcontainer_container_remote, opts = {})
542
542
  if @api_client.config.debugging
543
543
  @api_client.config.logger.debug 'Calling API: RemotesContainerApi.partial_update ...'
@@ -574,7 +574,7 @@ module PulpContainerClient
574
574
  post_body = opts[:debug_body] || @api_client.object_to_http_body(patchedcontainer_container_remote)
575
575
 
576
576
  # return_type
577
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
577
+ return_type = opts[:debug_return_type] || 'ContainerContainerRemoteResponse'
578
578
 
579
579
  # auth_names
580
580
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -900,24 +900,24 @@ module PulpContainerClient
900
900
  end
901
901
 
902
902
  # Update a container remote
903
- # Trigger an asynchronous update task
903
+ # Update the entity and trigger an asynchronous task if necessary
904
904
  # @param container_container_remote_href [String]
905
905
  # @param container_container_remote [ContainerContainerRemote]
906
906
  # @param [Hash] opts the optional parameters
907
907
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
908
- # @return [AsyncOperationResponse]
908
+ # @return [ContainerContainerRemoteResponse]
909
909
  def update(container_container_remote_href, container_container_remote, opts = {})
910
910
  data, _status_code, _headers = update_with_http_info(container_container_remote_href, container_container_remote, opts)
911
911
  data
912
912
  end
913
913
 
914
914
  # Update a container remote
915
- # Trigger an asynchronous update task
915
+ # Update the entity and trigger an asynchronous task if necessary
916
916
  # @param container_container_remote_href [String]
917
917
  # @param container_container_remote [ContainerContainerRemote]
918
918
  # @param [Hash] opts the optional parameters
919
919
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
920
- # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
920
+ # @return [Array<(ContainerContainerRemoteResponse, Integer, Hash)>] ContainerContainerRemoteResponse data, response status code and response headers
921
921
  def update_with_http_info(container_container_remote_href, container_container_remote, opts = {})
922
922
  if @api_client.config.debugging
923
923
  @api_client.config.logger.debug 'Calling API: RemotesContainerApi.update ...'
@@ -954,7 +954,7 @@ module PulpContainerClient
954
954
  post_body = opts[:debug_body] || @api_client.object_to_http_body(container_container_remote)
955
955
 
956
956
  # return_type
957
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
957
+ return_type = opts[:debug_return_type] || 'ContainerContainerRemoteResponse'
958
958
 
959
959
  # auth_names
960
960
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -520,24 +520,24 @@ module PulpContainerClient
520
520
  end
521
521
 
522
522
  # Update a container pull through remote
523
- # Trigger an asynchronous partial update task
523
+ # Update the entity partially and trigger an asynchronous task if necessary
524
524
  # @param container_container_pull_through_remote_href [String]
525
525
  # @param patchedcontainer_container_pull_through_remote [PatchedcontainerContainerPullThroughRemote]
526
526
  # @param [Hash] opts the optional parameters
527
527
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
528
- # @return [AsyncOperationResponse]
528
+ # @return [ContainerContainerPullThroughRemoteResponse]
529
529
  def partial_update(container_container_pull_through_remote_href, patchedcontainer_container_pull_through_remote, opts = {})
530
530
  data, _status_code, _headers = partial_update_with_http_info(container_container_pull_through_remote_href, patchedcontainer_container_pull_through_remote, opts)
531
531
  data
532
532
  end
533
533
 
534
534
  # Update a container pull through remote
535
- # Trigger an asynchronous partial update task
535
+ # Update the entity partially and trigger an asynchronous task if necessary
536
536
  # @param container_container_pull_through_remote_href [String]
537
537
  # @param patchedcontainer_container_pull_through_remote [PatchedcontainerContainerPullThroughRemote]
538
538
  # @param [Hash] opts the optional parameters
539
539
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
540
- # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
540
+ # @return [Array<(ContainerContainerPullThroughRemoteResponse, Integer, Hash)>] ContainerContainerPullThroughRemoteResponse data, response status code and response headers
541
541
  def partial_update_with_http_info(container_container_pull_through_remote_href, patchedcontainer_container_pull_through_remote, opts = {})
542
542
  if @api_client.config.debugging
543
543
  @api_client.config.logger.debug 'Calling API: RemotesPullThroughApi.partial_update ...'
@@ -574,7 +574,7 @@ module PulpContainerClient
574
574
  post_body = opts[:debug_body] || @api_client.object_to_http_body(patchedcontainer_container_pull_through_remote)
575
575
 
576
576
  # return_type
577
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
577
+ return_type = opts[:debug_return_type] || 'ContainerContainerPullThroughRemoteResponse'
578
578
 
579
579
  # auth_names
580
580
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -900,24 +900,24 @@ module PulpContainerClient
900
900
  end
901
901
 
902
902
  # Update a container pull through remote
903
- # Trigger an asynchronous update task
903
+ # Update the entity and trigger an asynchronous task if necessary
904
904
  # @param container_container_pull_through_remote_href [String]
905
905
  # @param container_container_pull_through_remote [ContainerContainerPullThroughRemote]
906
906
  # @param [Hash] opts the optional parameters
907
907
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
908
- # @return [AsyncOperationResponse]
908
+ # @return [ContainerContainerPullThroughRemoteResponse]
909
909
  def update(container_container_pull_through_remote_href, container_container_pull_through_remote, opts = {})
910
910
  data, _status_code, _headers = update_with_http_info(container_container_pull_through_remote_href, container_container_pull_through_remote, opts)
911
911
  data
912
912
  end
913
913
 
914
914
  # Update a container pull through remote
915
- # Trigger an asynchronous update task
915
+ # Update the entity and trigger an asynchronous task if necessary
916
916
  # @param container_container_pull_through_remote_href [String]
917
917
  # @param container_container_pull_through_remote [ContainerContainerPullThroughRemote]
918
918
  # @param [Hash] opts the optional parameters
919
919
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
920
- # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
920
+ # @return [Array<(ContainerContainerPullThroughRemoteResponse, Integer, Hash)>] ContainerContainerPullThroughRemoteResponse data, response status code and response headers
921
921
  def update_with_http_info(container_container_pull_through_remote_href, container_container_pull_through_remote, opts = {})
922
922
  if @api_client.config.debugging
923
923
  @api_client.config.logger.debug 'Calling API: RemotesPullThroughApi.update ...'
@@ -954,7 +954,7 @@ module PulpContainerClient
954
954
  post_body = opts[:debug_body] || @api_client.object_to_http_body(container_container_pull_through_remote)
955
955
 
956
956
  # return_type
957
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
957
+ return_type = opts[:debug_return_type] || 'ContainerContainerPullThroughRemoteResponse'
958
958
 
959
959
  # auth_names
960
960
  auth_names = opts[:debug_auth_names] || ['basicAuth']