pulp_python_client 3.19.1 → 3.19.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 93e23c1993adb90939cfba0ba438a948b1e26346e8831648ca99d59336cc9a7e
4
- data.tar.gz: c32e7905579c6e4176e1a6e944bb94a9a59f9eee6ee5132ac474d6c893918729
3
+ metadata.gz: 44ccf0a62700eff9e272bfa0924d62a471b590d04b9d488a386f435a0fddd967
4
+ data.tar.gz: 074cc2b2c201a6e39319a78e76c609d493bc343c69568f12cf2f2ff45398d941
5
5
  SHA512:
6
- metadata.gz: f3f485495e9523d7a43be7c603c523c64da64d497006176ba1b8c60dda3ed01f6c02d8765c2141be745ede174d04ed0fead1b18549900a6db17cb42ad5c282d1
7
- data.tar.gz: 306a8fc58d6b1eb43d84f127e71282ccca727f3e5f565b8b919b4f5c61775f27f11e24d38e3364ea4bf44aa58bf12ba3d597bc10ca4063521e5eff54aed57e94
6
+ metadata.gz: 8c837b3a4ea846378ede8a48f4d3a06c7c8014a2d1a0a0aa5f1516e0bdc20ddf6c25f55c02754508131ca6a5ee07ac1d2d99f8a03d85438ee6b6906969d928a9
7
+ data.tar.gz: 12ef5ab483be54421a73a6eb02ab53230de336f1f06eb85f7ab66b089f4cc5e23353eb57b47f6db38a0fd490da43179147aeb2c911d36bc5d929663f86c4eb86
data/README.md CHANGED
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: v3
10
- - Package version: 3.19.1
10
+ - Package version: 3.19.3
11
11
  - Generator version: 7.10.0
12
12
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
13
13
  For more information, please visit [https://pulpproject.org](https://pulpproject.org)
@@ -25,16 +25,16 @@ gem build pulp_python_client.gemspec
25
25
  Then either install the gem locally:
26
26
 
27
27
  ```shell
28
- gem install ./pulp_python_client-3.19.1.gem
28
+ gem install ./pulp_python_client-3.19.3.gem
29
29
  ```
30
30
 
31
- (for development, run `gem install --dev ./pulp_python_client-3.19.1.gem` to install the development dependencies)
31
+ (for development, run `gem install --dev ./pulp_python_client-3.19.3.gem` to install the development dependencies)
32
32
 
33
33
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
34
34
 
35
35
  Finally add this to the Gemfile:
36
36
 
37
- gem 'pulp_python_client', '~> 3.19.1'
37
+ gem 'pulp_python_client', '~> 3.19.3'
38
38
 
39
39
  ### Install from Git
40
40
 
@@ -526,11 +526,11 @@ end
526
526
 
527
527
  ## partial_update
528
528
 
529
- > <AsyncOperationResponse> partial_update(python_python_distribution_href, patchedpython_python_distribution, opts)
529
+ > <PythonPythonDistributionResponse> partial_update(python_python_distribution_href, patchedpython_python_distribution, opts)
530
530
 
531
531
  Update a python distribution
532
532
 
533
- Trigger an asynchronous partial update task
533
+ Update the entity partially and trigger an asynchronous task if necessary
534
534
 
535
535
  ### Examples
536
536
 
@@ -564,7 +564,7 @@ end
564
564
 
565
565
  This returns an Array which contains the response data, status code and headers.
566
566
 
567
- > <Array(<AsyncOperationResponse>, Integer, Hash)> partial_update_with_http_info(python_python_distribution_href, patchedpython_python_distribution, opts)
567
+ > <Array(<PythonPythonDistributionResponse>, Integer, Hash)> partial_update_with_http_info(python_python_distribution_href, patchedpython_python_distribution, opts)
568
568
 
569
569
  ```ruby
570
570
  begin
@@ -572,7 +572,7 @@ begin
572
572
  data, status_code, headers = api_instance.partial_update_with_http_info(python_python_distribution_href, patchedpython_python_distribution, opts)
573
573
  p status_code # => 2xx
574
574
  p headers # => { ... }
575
- p data # => <AsyncOperationResponse>
575
+ p data # => <PythonPythonDistributionResponse>
576
576
  rescue PulpPythonClient::ApiError => e
577
577
  puts "Error when calling DistributionsPypiApi->partial_update_with_http_info: #{e}"
578
578
  end
@@ -588,7 +588,7 @@ end
588
588
 
589
589
  ### Return type
590
590
 
591
- [**AsyncOperationResponse**](AsyncOperationResponse.md)
591
+ [**PythonPythonDistributionResponse**](PythonPythonDistributionResponse.md)
592
592
 
593
593
  ### Authorization
594
594
 
@@ -908,11 +908,11 @@ end
908
908
 
909
909
  ## update
910
910
 
911
- > <AsyncOperationResponse> update(python_python_distribution_href, python_python_distribution, opts)
911
+ > <PythonPythonDistributionResponse> update(python_python_distribution_href, python_python_distribution, opts)
912
912
 
913
913
  Update a python distribution
914
914
 
915
- Trigger an asynchronous update task
915
+ Update the entity and trigger an asynchronous task if necessary
916
916
 
917
917
  ### Examples
918
918
 
@@ -946,7 +946,7 @@ end
946
946
 
947
947
  This returns an Array which contains the response data, status code and headers.
948
948
 
949
- > <Array(<AsyncOperationResponse>, Integer, Hash)> update_with_http_info(python_python_distribution_href, python_python_distribution, opts)
949
+ > <Array(<PythonPythonDistributionResponse>, Integer, Hash)> update_with_http_info(python_python_distribution_href, python_python_distribution, opts)
950
950
 
951
951
  ```ruby
952
952
  begin
@@ -954,7 +954,7 @@ begin
954
954
  data, status_code, headers = api_instance.update_with_http_info(python_python_distribution_href, python_python_distribution, opts)
955
955
  p status_code # => 2xx
956
956
  p headers # => { ... }
957
- p data # => <AsyncOperationResponse>
957
+ p data # => <PythonPythonDistributionResponse>
958
958
  rescue PulpPythonClient::ApiError => e
959
959
  puts "Error when calling DistributionsPypiApi->update_with_http_info: #{e}"
960
960
  end
@@ -970,7 +970,7 @@ end
970
970
 
971
971
  ### Return type
972
972
 
973
- [**AsyncOperationResponse**](AsyncOperationResponse.md)
973
+ [**PythonPythonDistributionResponse**](PythonPythonDistributionResponse.md)
974
974
 
975
975
  ### Authorization
976
976
 
@@ -603,11 +603,11 @@ end
603
603
 
604
604
  ## partial_update
605
605
 
606
- > <AsyncOperationResponse> partial_update(python_python_remote_href, patchedpython_python_remote, opts)
606
+ > <PythonPythonRemoteResponse> partial_update(python_python_remote_href, patchedpython_python_remote, opts)
607
607
 
608
608
  Update a python remote
609
609
 
610
- Trigger an asynchronous partial update task
610
+ Update the entity partially and trigger an asynchronous task if necessary
611
611
 
612
612
  ### Examples
613
613
 
@@ -641,7 +641,7 @@ end
641
641
 
642
642
  This returns an Array which contains the response data, status code and headers.
643
643
 
644
- > <Array(<AsyncOperationResponse>, Integer, Hash)> partial_update_with_http_info(python_python_remote_href, patchedpython_python_remote, opts)
644
+ > <Array(<PythonPythonRemoteResponse>, Integer, Hash)> partial_update_with_http_info(python_python_remote_href, patchedpython_python_remote, opts)
645
645
 
646
646
  ```ruby
647
647
  begin
@@ -649,7 +649,7 @@ begin
649
649
  data, status_code, headers = api_instance.partial_update_with_http_info(python_python_remote_href, patchedpython_python_remote, opts)
650
650
  p status_code # => 2xx
651
651
  p headers # => { ... }
652
- p data # => <AsyncOperationResponse>
652
+ p data # => <PythonPythonRemoteResponse>
653
653
  rescue PulpPythonClient::ApiError => e
654
654
  puts "Error when calling RemotesPythonApi->partial_update_with_http_info: #{e}"
655
655
  end
@@ -665,7 +665,7 @@ end
665
665
 
666
666
  ### Return type
667
667
 
668
- [**AsyncOperationResponse**](AsyncOperationResponse.md)
668
+ [**PythonPythonRemoteResponse**](PythonPythonRemoteResponse.md)
669
669
 
670
670
  ### Authorization
671
671
 
@@ -985,11 +985,11 @@ end
985
985
 
986
986
  ## update
987
987
 
988
- > <AsyncOperationResponse> update(python_python_remote_href, python_python_remote, opts)
988
+ > <PythonPythonRemoteResponse> update(python_python_remote_href, python_python_remote, opts)
989
989
 
990
990
  Update a python remote
991
991
 
992
- Trigger an asynchronous update task
992
+ Update the entity and trigger an asynchronous task if necessary
993
993
 
994
994
  ### Examples
995
995
 
@@ -1023,7 +1023,7 @@ end
1023
1023
 
1024
1024
  This returns an Array which contains the response data, status code and headers.
1025
1025
 
1026
- > <Array(<AsyncOperationResponse>, Integer, Hash)> update_with_http_info(python_python_remote_href, python_python_remote, opts)
1026
+ > <Array(<PythonPythonRemoteResponse>, Integer, Hash)> update_with_http_info(python_python_remote_href, python_python_remote, opts)
1027
1027
 
1028
1028
  ```ruby
1029
1029
  begin
@@ -1031,7 +1031,7 @@ begin
1031
1031
  data, status_code, headers = api_instance.update_with_http_info(python_python_remote_href, python_python_remote, opts)
1032
1032
  p status_code # => 2xx
1033
1033
  p headers # => { ... }
1034
- p data # => <AsyncOperationResponse>
1034
+ p data # => <PythonPythonRemoteResponse>
1035
1035
  rescue PulpPythonClient::ApiError => e
1036
1036
  puts "Error when calling RemotesPythonApi->update_with_http_info: #{e}"
1037
1037
  end
@@ -1047,7 +1047,7 @@ end
1047
1047
 
1048
1048
  ### Return type
1049
1049
 
1050
- [**AsyncOperationResponse**](AsyncOperationResponse.md)
1050
+ [**PythonPythonRemoteResponse**](PythonPythonRemoteResponse.md)
1051
1051
 
1052
1052
  ### Authorization
1053
1053
 
@@ -611,11 +611,11 @@ end
611
611
 
612
612
  ## partial_update
613
613
 
614
- > <AsyncOperationResponse> partial_update(python_python_repository_href, patchedpython_python_repository, opts)
614
+ > <PythonPythonRepositoryResponse> partial_update(python_python_repository_href, patchedpython_python_repository, opts)
615
615
 
616
616
  Update a python repository
617
617
 
618
- Trigger an asynchronous partial update task
618
+ Update the entity partially and trigger an asynchronous task if necessary
619
619
 
620
620
  ### Examples
621
621
 
@@ -649,7 +649,7 @@ end
649
649
 
650
650
  This returns an Array which contains the response data, status code and headers.
651
651
 
652
- > <Array(<AsyncOperationResponse>, Integer, Hash)> partial_update_with_http_info(python_python_repository_href, patchedpython_python_repository, opts)
652
+ > <Array(<PythonPythonRepositoryResponse>, Integer, Hash)> partial_update_with_http_info(python_python_repository_href, patchedpython_python_repository, opts)
653
653
 
654
654
  ```ruby
655
655
  begin
@@ -657,7 +657,7 @@ begin
657
657
  data, status_code, headers = api_instance.partial_update_with_http_info(python_python_repository_href, patchedpython_python_repository, opts)
658
658
  p status_code # => 2xx
659
659
  p headers # => { ... }
660
- p data # => <AsyncOperationResponse>
660
+ p data # => <PythonPythonRepositoryResponse>
661
661
  rescue PulpPythonClient::ApiError => e
662
662
  puts "Error when calling RepositoriesPythonApi->partial_update_with_http_info: #{e}"
663
663
  end
@@ -673,7 +673,7 @@ end
673
673
 
674
674
  ### Return type
675
675
 
676
- [**AsyncOperationResponse**](AsyncOperationResponse.md)
676
+ [**PythonPythonRepositoryResponse**](PythonPythonRepositoryResponse.md)
677
677
 
678
678
  ### Authorization
679
679
 
@@ -1143,11 +1143,11 @@ end
1143
1143
 
1144
1144
  ## update
1145
1145
 
1146
- > <AsyncOperationResponse> update(python_python_repository_href, python_python_repository, opts)
1146
+ > <PythonPythonRepositoryResponse> update(python_python_repository_href, python_python_repository, opts)
1147
1147
 
1148
1148
  Update a python repository
1149
1149
 
1150
- Trigger an asynchronous update task
1150
+ Update the entity and trigger an asynchronous task if necessary
1151
1151
 
1152
1152
  ### Examples
1153
1153
 
@@ -1181,7 +1181,7 @@ end
1181
1181
 
1182
1182
  This returns an Array which contains the response data, status code and headers.
1183
1183
 
1184
- > <Array(<AsyncOperationResponse>, Integer, Hash)> update_with_http_info(python_python_repository_href, python_python_repository, opts)
1184
+ > <Array(<PythonPythonRepositoryResponse>, Integer, Hash)> update_with_http_info(python_python_repository_href, python_python_repository, opts)
1185
1185
 
1186
1186
  ```ruby
1187
1187
  begin
@@ -1189,7 +1189,7 @@ begin
1189
1189
  data, status_code, headers = api_instance.update_with_http_info(python_python_repository_href, python_python_repository, opts)
1190
1190
  p status_code # => 2xx
1191
1191
  p headers # => { ... }
1192
- p data # => <AsyncOperationResponse>
1192
+ p data # => <PythonPythonRepositoryResponse>
1193
1193
  rescue PulpPythonClient::ApiError => e
1194
1194
  puts "Error when calling RepositoriesPythonApi->update_with_http_info: #{e}"
1195
1195
  end
@@ -1205,7 +1205,7 @@ end
1205
1205
 
1206
1206
  ### Return type
1207
1207
 
1208
- [**AsyncOperationResponse**](AsyncOperationResponse.md)
1208
+ [**PythonPythonRepositoryResponse**](PythonPythonRepositoryResponse.md)
1209
1209
 
1210
1210
  ### Authorization
1211
1211
 
@@ -523,24 +523,24 @@ module PulpPythonClient
523
523
  end
524
524
 
525
525
  # Update a python distribution
526
- # Trigger an asynchronous partial update task
526
+ # Update the entity partially and trigger an asynchronous task if necessary
527
527
  # @param python_python_distribution_href [String]
528
528
  # @param patchedpython_python_distribution [PatchedpythonPythonDistribution]
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 [PythonPythonDistributionResponse]
532
532
  def partial_update(python_python_distribution_href, patchedpython_python_distribution, opts = {})
533
533
  data, _status_code, _headers = partial_update_with_http_info(python_python_distribution_href, patchedpython_python_distribution, opts)
534
534
  data
535
535
  end
536
536
 
537
537
  # Update a python distribution
538
- # Trigger an asynchronous partial update task
538
+ # Update the entity partially and trigger an asynchronous task if necessary
539
539
  # @param python_python_distribution_href [String]
540
540
  # @param patchedpython_python_distribution [PatchedpythonPythonDistribution]
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<(PythonPythonDistributionResponse, Integer, Hash)>] PythonPythonDistributionResponse data, response status code and response headers
544
544
  def partial_update_with_http_info(python_python_distribution_href, patchedpython_python_distribution, opts = {})
545
545
  if @api_client.config.debugging
546
546
  @api_client.config.logger.debug 'Calling API: DistributionsPypiApi.partial_update ...'
@@ -577,7 +577,7 @@ module PulpPythonClient
577
577
  post_body = opts[:debug_body] || @api_client.object_to_http_body(patchedpython_python_distribution)
578
578
 
579
579
  # return_type
580
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
580
+ return_type = opts[:debug_return_type] || 'PythonPythonDistributionResponse'
581
581
 
582
582
  # auth_names
583
583
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -903,24 +903,24 @@ module PulpPythonClient
903
903
  end
904
904
 
905
905
  # Update a python distribution
906
- # Trigger an asynchronous update task
906
+ # Update the entity and trigger an asynchronous task if necessary
907
907
  # @param python_python_distribution_href [String]
908
908
  # @param python_python_distribution [PythonPythonDistribution]
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 [PythonPythonDistributionResponse]
912
912
  def update(python_python_distribution_href, python_python_distribution, opts = {})
913
913
  data, _status_code, _headers = update_with_http_info(python_python_distribution_href, python_python_distribution, opts)
914
914
  data
915
915
  end
916
916
 
917
917
  # Update a python distribution
918
- # Trigger an asynchronous update task
918
+ # Update the entity and trigger an asynchronous task if necessary
919
919
  # @param python_python_distribution_href [String]
920
920
  # @param python_python_distribution [PythonPythonDistribution]
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<(PythonPythonDistributionResponse, Integer, Hash)>] PythonPythonDistributionResponse data, response status code and response headers
924
924
  def update_with_http_info(python_python_distribution_href, python_python_distribution, opts = {})
925
925
  if @api_client.config.debugging
926
926
  @api_client.config.logger.debug 'Calling API: DistributionsPypiApi.update ...'
@@ -957,7 +957,7 @@ module PulpPythonClient
957
957
  post_body = opts[:debug_body] || @api_client.object_to_http_body(python_python_distribution)
958
958
 
959
959
  # return_type
960
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
960
+ return_type = opts[:debug_return_type] || 'PythonPythonDistributionResponse'
961
961
 
962
962
  # auth_names
963
963
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -606,24 +606,24 @@ module PulpPythonClient
606
606
  end
607
607
 
608
608
  # Update a python remote
609
- # Trigger an asynchronous partial update task
609
+ # Update the entity partially and trigger an asynchronous task if necessary
610
610
  # @param python_python_remote_href [String]
611
611
  # @param patchedpython_python_remote [PatchedpythonPythonRemote]
612
612
  # @param [Hash] opts the optional parameters
613
613
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
614
- # @return [AsyncOperationResponse]
614
+ # @return [PythonPythonRemoteResponse]
615
615
  def partial_update(python_python_remote_href, patchedpython_python_remote, opts = {})
616
616
  data, _status_code, _headers = partial_update_with_http_info(python_python_remote_href, patchedpython_python_remote, opts)
617
617
  data
618
618
  end
619
619
 
620
620
  # Update a python remote
621
- # Trigger an asynchronous partial update task
621
+ # Update the entity partially and trigger an asynchronous task if necessary
622
622
  # @param python_python_remote_href [String]
623
623
  # @param patchedpython_python_remote [PatchedpythonPythonRemote]
624
624
  # @param [Hash] opts the optional parameters
625
625
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
626
- # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
626
+ # @return [Array<(PythonPythonRemoteResponse, Integer, Hash)>] PythonPythonRemoteResponse data, response status code and response headers
627
627
  def partial_update_with_http_info(python_python_remote_href, patchedpython_python_remote, opts = {})
628
628
  if @api_client.config.debugging
629
629
  @api_client.config.logger.debug 'Calling API: RemotesPythonApi.partial_update ...'
@@ -660,7 +660,7 @@ module PulpPythonClient
660
660
  post_body = opts[:debug_body] || @api_client.object_to_http_body(patchedpython_python_remote)
661
661
 
662
662
  # return_type
663
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
663
+ return_type = opts[:debug_return_type] || 'PythonPythonRemoteResponse'
664
664
 
665
665
  # auth_names
666
666
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -986,24 +986,24 @@ module PulpPythonClient
986
986
  end
987
987
 
988
988
  # Update a python remote
989
- # Trigger an asynchronous update task
989
+ # Update the entity and trigger an asynchronous task if necessary
990
990
  # @param python_python_remote_href [String]
991
991
  # @param python_python_remote [PythonPythonRemote]
992
992
  # @param [Hash] opts the optional parameters
993
993
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
994
- # @return [AsyncOperationResponse]
994
+ # @return [PythonPythonRemoteResponse]
995
995
  def update(python_python_remote_href, python_python_remote, opts = {})
996
996
  data, _status_code, _headers = update_with_http_info(python_python_remote_href, python_python_remote, opts)
997
997
  data
998
998
  end
999
999
 
1000
1000
  # Update a python remote
1001
- # Trigger an asynchronous update task
1001
+ # Update the entity and trigger an asynchronous task if necessary
1002
1002
  # @param python_python_remote_href [String]
1003
1003
  # @param python_python_remote [PythonPythonRemote]
1004
1004
  # @param [Hash] opts the optional parameters
1005
1005
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
1006
- # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
1006
+ # @return [Array<(PythonPythonRemoteResponse, Integer, Hash)>] PythonPythonRemoteResponse data, response status code and response headers
1007
1007
  def update_with_http_info(python_python_remote_href, python_python_remote, opts = {})
1008
1008
  if @api_client.config.debugging
1009
1009
  @api_client.config.logger.debug 'Calling API: RemotesPythonApi.update ...'
@@ -1040,7 +1040,7 @@ module PulpPythonClient
1040
1040
  post_body = opts[:debug_body] || @api_client.object_to_http_body(python_python_remote)
1041
1041
 
1042
1042
  # return_type
1043
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
1043
+ return_type = opts[:debug_return_type] || 'PythonPythonRemoteResponse'
1044
1044
 
1045
1045
  # auth_names
1046
1046
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -609,24 +609,24 @@ module PulpPythonClient
609
609
  end
610
610
 
611
611
  # Update a python repository
612
- # Trigger an asynchronous partial update task
612
+ # Update the entity partially and trigger an asynchronous task if necessary
613
613
  # @param python_python_repository_href [String]
614
614
  # @param patchedpython_python_repository [PatchedpythonPythonRepository]
615
615
  # @param [Hash] opts the optional parameters
616
616
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
617
- # @return [AsyncOperationResponse]
617
+ # @return [PythonPythonRepositoryResponse]
618
618
  def partial_update(python_python_repository_href, patchedpython_python_repository, opts = {})
619
619
  data, _status_code, _headers = partial_update_with_http_info(python_python_repository_href, patchedpython_python_repository, opts)
620
620
  data
621
621
  end
622
622
 
623
623
  # Update a python repository
624
- # Trigger an asynchronous partial update task
624
+ # Update the entity partially and trigger an asynchronous task if necessary
625
625
  # @param python_python_repository_href [String]
626
626
  # @param patchedpython_python_repository [PatchedpythonPythonRepository]
627
627
  # @param [Hash] opts the optional parameters
628
628
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
629
- # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
629
+ # @return [Array<(PythonPythonRepositoryResponse, Integer, Hash)>] PythonPythonRepositoryResponse data, response status code and response headers
630
630
  def partial_update_with_http_info(python_python_repository_href, patchedpython_python_repository, opts = {})
631
631
  if @api_client.config.debugging
632
632
  @api_client.config.logger.debug 'Calling API: RepositoriesPythonApi.partial_update ...'
@@ -663,7 +663,7 @@ module PulpPythonClient
663
663
  post_body = opts[:debug_body] || @api_client.object_to_http_body(patchedpython_python_repository)
664
664
 
665
665
  # return_type
666
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
666
+ return_type = opts[:debug_return_type] || 'PythonPythonRepositoryResponse'
667
667
 
668
668
  # auth_names
669
669
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -1132,24 +1132,24 @@ module PulpPythonClient
1132
1132
  end
1133
1133
 
1134
1134
  # Update a python repository
1135
- # Trigger an asynchronous update task
1135
+ # Update the entity and trigger an asynchronous task if necessary
1136
1136
  # @param python_python_repository_href [String]
1137
1137
  # @param python_python_repository [PythonPythonRepository]
1138
1138
  # @param [Hash] opts the optional parameters
1139
1139
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
1140
- # @return [AsyncOperationResponse]
1140
+ # @return [PythonPythonRepositoryResponse]
1141
1141
  def update(python_python_repository_href, python_python_repository, opts = {})
1142
1142
  data, _status_code, _headers = update_with_http_info(python_python_repository_href, python_python_repository, opts)
1143
1143
  data
1144
1144
  end
1145
1145
 
1146
1146
  # Update a python repository
1147
- # Trigger an asynchronous update task
1147
+ # Update the entity and trigger an asynchronous task if necessary
1148
1148
  # @param python_python_repository_href [String]
1149
1149
  # @param python_python_repository [PythonPythonRepository]
1150
1150
  # @param [Hash] opts the optional parameters
1151
1151
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
1152
- # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
1152
+ # @return [Array<(PythonPythonRepositoryResponse, Integer, Hash)>] PythonPythonRepositoryResponse data, response status code and response headers
1153
1153
  def update_with_http_info(python_python_repository_href, python_python_repository, opts = {})
1154
1154
  if @api_client.config.debugging
1155
1155
  @api_client.config.logger.debug 'Calling API: RepositoriesPythonApi.update ...'
@@ -1186,7 +1186,7 @@ module PulpPythonClient
1186
1186
  post_body = opts[:debug_body] || @api_client.object_to_http_body(python_python_repository)
1187
1187
 
1188
1188
  # return_type
1189
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
1189
+ return_type = opts[:debug_return_type] || 'PythonPythonRepositoryResponse'
1190
1190
 
1191
1191
  # auth_names
1192
1192
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module PulpPythonClient
14
- VERSION = '3.19.1'
14
+ VERSION = '3.19.3'
15
15
  end
@@ -143,12 +143,12 @@ describe 'DistributionsPypiApi' do
143
143
 
144
144
  # unit tests for partial_update
145
145
  # Update a python distribution
146
- # Trigger an asynchronous partial update task
146
+ # Update the entity partially and trigger an asynchronous task if necessary
147
147
  # @param python_python_distribution_href
148
148
  # @param patchedpython_python_distribution
149
149
  # @param [Hash] opts the optional parameters
150
150
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
151
- # @return [AsyncOperationResponse]
151
+ # @return [PythonPythonDistributionResponse]
152
152
  describe 'partial_update test' do
153
153
  it 'should work' do
154
154
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -214,12 +214,12 @@ describe 'DistributionsPypiApi' do
214
214
 
215
215
  # unit tests for update
216
216
  # Update a python distribution
217
- # Trigger an asynchronous update task
217
+ # Update the entity and trigger an asynchronous task if necessary
218
218
  # @param python_python_distribution_href
219
219
  # @param python_python_distribution
220
220
  # @param [Hash] opts the optional parameters
221
221
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
222
- # @return [AsyncOperationResponse]
222
+ # @return [PythonPythonDistributionResponse]
223
223
  describe 'update test' do
224
224
  it 'should work' do
225
225
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -157,12 +157,12 @@ describe 'RemotesPythonApi' do
157
157
 
158
158
  # unit tests for partial_update
159
159
  # Update a python remote
160
- # Trigger an asynchronous partial update task
160
+ # Update the entity partially and trigger an asynchronous task if necessary
161
161
  # @param python_python_remote_href
162
162
  # @param patchedpython_python_remote
163
163
  # @param [Hash] opts the optional parameters
164
164
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
165
- # @return [AsyncOperationResponse]
165
+ # @return [PythonPythonRemoteResponse]
166
166
  describe 'partial_update test' do
167
167
  it 'should work' do
168
168
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -228,12 +228,12 @@ describe 'RemotesPythonApi' do
228
228
 
229
229
  # unit tests for update
230
230
  # Update a python remote
231
- # Trigger an asynchronous update task
231
+ # Update the entity and trigger an asynchronous task if necessary
232
232
  # @param python_python_remote_href
233
233
  # @param python_python_remote
234
234
  # @param [Hash] opts the optional parameters
235
235
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
236
- # @return [AsyncOperationResponse]
236
+ # @return [PythonPythonRemoteResponse]
237
237
  describe 'update test' do
238
238
  it 'should work' do
239
239
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -160,12 +160,12 @@ describe 'RepositoriesPythonApi' do
160
160
 
161
161
  # unit tests for partial_update
162
162
  # Update a python repository
163
- # Trigger an asynchronous partial update task
163
+ # Update the entity partially and trigger an asynchronous task if necessary
164
164
  # @param python_python_repository_href
165
165
  # @param patchedpython_python_repository
166
166
  # @param [Hash] opts the optional parameters
167
167
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
168
- # @return [AsyncOperationResponse]
168
+ # @return [PythonPythonRepositoryResponse]
169
169
  describe 'partial_update test' do
170
170
  it 'should work' do
171
171
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -258,12 +258,12 @@ describe 'RepositoriesPythonApi' do
258
258
 
259
259
  # unit tests for update
260
260
  # Update a python repository
261
- # Trigger an asynchronous update task
261
+ # Update the entity and trigger an asynchronous task if necessary
262
262
  # @param python_python_repository_href
263
263
  # @param python_python_repository
264
264
  # @param [Hash] opts the optional parameters
265
265
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
266
- # @return [AsyncOperationResponse]
266
+ # @return [PythonPythonRepositoryResponse]
267
267
  describe 'update test' do
268
268
  it 'should work' do
269
269
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulp_python_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.19.1
4
+ version: 3.19.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-09-14 00:00:00.000000000 Z
11
+ date: 2026-05-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -266,53 +266,53 @@ signing_key:
266
266
  specification_version: 4
267
267
  summary: Pulp 3 API Ruby Gem
268
268
  test_files:
269
- - spec/api/content_packages_api_spec.rb
270
- - spec/api/publications_pypi_api_spec.rb
271
- - spec/api/repositories_python_versions_api_spec.rb
269
+ - spec/api/pypi_metadata_api_spec.rb
272
270
  - spec/api/pypi_simple_api_spec.rb
273
- - spec/api/distributions_pypi_api_spec.rb
274
271
  - spec/api/repositories_python_api_spec.rb
275
- - spec/api/pypi_legacy_api_spec.rb
276
- - spec/api/remotes_python_api_spec.rb
277
- - spec/api/pypi_metadata_api_spec.rb
278
272
  - spec/api/pypi_api_spec.rb
279
- - spec/models/paginatedpython_python_repository_response_list_spec.rb
280
- - spec/models/python_python_distribution_response_spec.rb
281
- - spec/models/paginatedpython_python_remote_response_list_spec.rb
282
- - spec/models/python_python_remote_response_spec.rb
283
- - spec/models/set_label_spec.rb
273
+ - spec/api/repositories_python_versions_api_spec.rb
274
+ - spec/api/distributions_pypi_api_spec.rb
275
+ - spec/api/remotes_python_api_spec.rb
276
+ - spec/api/content_packages_api_spec.rb
277
+ - spec/api/publications_pypi_api_spec.rb
278
+ - spec/api/pypi_legacy_api_spec.rb
284
279
  - spec/models/object_roles_response_spec.rb
280
+ - spec/models/nested_role_spec.rb
281
+ - spec/models/unset_label_response_spec.rb
282
+ - spec/models/patchedpython_python_distribution_spec.rb
283
+ - spec/models/python_python_repository_response_spec.rb
284
+ - spec/models/paginatedpython_python_remote_response_list_spec.rb
285
285
  - spec/models/python_python_package_content_response_spec.rb
286
- - spec/models/python_python_publication_spec.rb
286
+ - spec/models/repository_add_remove_content_spec.rb
287
+ - spec/models/summary_response_spec.rb
288
+ - spec/models/package_metadata_response_spec.rb
289
+ - spec/models/python_python_publication_response_spec.rb
290
+ - spec/models/async_operation_response_spec.rb
291
+ - spec/models/python_python_remote_response_spec.rb
287
292
  - spec/models/policy_enum_spec.rb
288
- - spec/models/paginated_repository_version_response_list_spec.rb
289
- - spec/models/exclude_platforms_enum_spec.rb
290
- - spec/models/python_python_repository_spec.rb
291
293
  - spec/models/repository_sync_url_spec.rb
292
- - spec/models/python_python_remote_response_hidden_fields_inner_spec.rb
293
- - spec/models/python_python_repository_response_spec.rb
294
- - spec/models/patchedpython_python_distribution_spec.rb
295
- - spec/models/unset_label_spec.rb
296
294
  - spec/models/paginatedpython_python_distribution_response_list_spec.rb
297
- - spec/models/repository_add_remove_content_spec.rb
298
- - spec/models/summary_response_spec.rb
295
+ - spec/models/python_python_publication_spec.rb
296
+ - spec/models/patchedpython_python_repository_spec.rb
299
297
  - spec/models/paginatedpython_python_publication_response_list_spec.rb
298
+ - spec/models/paginatedpython_python_repository_response_list_spec.rb
299
+ - spec/models/exclude_platforms_enum_spec.rb
300
+ - spec/models/patchedpython_python_remote_spec.rb
301
+ - spec/models/paginatedpython_python_package_content_response_list_spec.rb
302
+ - spec/models/python_python_repository_spec.rb
300
303
  - spec/models/python_python_distribution_spec.rb
301
- - spec/models/patchedpython_python_repository_spec.rb
302
- - spec/models/unset_label_response_spec.rb
303
304
  - spec/models/package_types_enum_spec.rb
304
- - spec/models/async_operation_response_spec.rb
305
- - spec/models/patchedpython_python_remote_spec.rb
305
+ - spec/models/python_python_distribution_response_spec.rb
306
+ - spec/models/unset_label_spec.rb
307
+ - spec/models/content_summary_response_spec.rb
308
+ - spec/models/repository_version_response_spec.rb
309
+ - spec/models/package_upload_task_response_spec.rb
310
+ - spec/models/python_python_remote_response_hidden_fields_inner_spec.rb
311
+ - spec/models/set_label_response_spec.rb
312
+ - spec/models/paginated_repository_version_response_list_spec.rb
306
313
  - spec/models/nested_role_response_spec.rb
307
314
  - spec/models/my_permissions_response_spec.rb
308
- - spec/models/package_upload_task_response_spec.rb
309
315
  - spec/models/repair_spec.rb
310
- - spec/models/paginatedpython_python_package_content_response_list_spec.rb
311
316
  - spec/models/python_python_remote_spec.rb
312
- - spec/models/set_label_response_spec.rb
313
- - spec/models/python_python_publication_response_spec.rb
314
- - spec/models/content_summary_response_spec.rb
315
- - spec/models/repository_version_response_spec.rb
316
- - spec/models/nested_role_spec.rb
317
- - spec/models/package_metadata_response_spec.rb
317
+ - spec/models/set_label_spec.rb
318
318
  - spec/spec_helper.rb