pulp_file_client 3.89.1 → 3.90.0

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: 6008ffb7f1f4af80265ba5c730b2bd4adbee0c187962d53be9c333583b520163
4
- data.tar.gz: '080025e201e1fae3d44ae60cfa6cb4246ef9661910d07f75dafd60880ba5d31d'
3
+ metadata.gz: f697f2b5e206ded64243233706bce41f4ecfb2ccb60ed297d87b0e0e62154c1f
4
+ data.tar.gz: b32490fadf0ea30fc100488e77634a72d30fda50cfc67506cb3eb983228ecfd4
5
5
  SHA512:
6
- metadata.gz: 727ce5a53a10eaaf742e8bffa7b3e2697cbcdcbee54268117de43a27b23a8b3bb670d6f99bd7674facebd7d8a4790118865e216536a2494ed03fd62057f190ee
7
- data.tar.gz: cdd51a42957fce4d0011d34853379daa731305028eeb43b2c266f78ed928649867f199236a73c6be485399103376df3fe0d9de32abcae5f8a3d5c069e38d6e82
6
+ metadata.gz: e368dc9791f4e54a3b3b0c90737aab51094387364babd990186a7ad9b4b0722c7cff766ba2e1f0bc6d76daeaedd6dcae9aacedd2e2b11a06139c4c572860879f
7
+ data.tar.gz: 6000e4c5431189d0235a2534456812c10f429bb6696a5aea84053b2fc7dc8e26db8150e33247464891334c346076b0bc151ba0412db019da530c919e5aa50978
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.89.1
10
+ - Package version: 3.90.0
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_file_client.gemspec
25
25
  Then either install the gem locally:
26
26
 
27
27
  ```shell
28
- gem install ./pulp_file_client-3.89.1.gem
28
+ gem install ./pulp_file_client-3.90.0.gem
29
29
  ```
30
30
 
31
- (for development, run `gem install --dev ./pulp_file_client-3.89.1.gem` to install the development dependencies)
31
+ (for development, run `gem install --dev ./pulp_file_client-3.90.0.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_file_client', '~> 3.89.1'
37
+ gem 'pulp_file_client', '~> 3.90.0'
38
38
 
39
39
  ### Install from Git
40
40
 
data/docs/AcsFileApi.md CHANGED
@@ -507,11 +507,11 @@ end
507
507
 
508
508
  ## partial_update
509
509
 
510
- > <AsyncOperationResponse> partial_update(file_file_alternate_content_source_href, patchedfile_file_alternate_content_source, opts)
510
+ > <FileFileAlternateContentSourceResponse> partial_update(file_file_alternate_content_source_href, patchedfile_file_alternate_content_source, opts)
511
511
 
512
512
  Update a file alternate content source
513
513
 
514
- Trigger an asynchronous partial update task
514
+ Update the entity partially and trigger an asynchronous task if necessary
515
515
 
516
516
  ### Examples
517
517
 
@@ -545,7 +545,7 @@ end
545
545
 
546
546
  This returns an Array which contains the response data, status code and headers.
547
547
 
548
- > <Array(<AsyncOperationResponse>, Integer, Hash)> partial_update_with_http_info(file_file_alternate_content_source_href, patchedfile_file_alternate_content_source, opts)
548
+ > <Array(<FileFileAlternateContentSourceResponse>, Integer, Hash)> partial_update_with_http_info(file_file_alternate_content_source_href, patchedfile_file_alternate_content_source, opts)
549
549
 
550
550
  ```ruby
551
551
  begin
@@ -553,7 +553,7 @@ begin
553
553
  data, status_code, headers = api_instance.partial_update_with_http_info(file_file_alternate_content_source_href, patchedfile_file_alternate_content_source, opts)
554
554
  p status_code # => 2xx
555
555
  p headers # => { ... }
556
- p data # => <AsyncOperationResponse>
556
+ p data # => <FileFileAlternateContentSourceResponse>
557
557
  rescue PulpFileClient::ApiError => e
558
558
  puts "Error when calling AcsFileApi->partial_update_with_http_info: #{e}"
559
559
  end
@@ -569,7 +569,7 @@ end
569
569
 
570
570
  ### Return type
571
571
 
572
- [**AsyncOperationResponse**](AsyncOperationResponse.md)
572
+ [**FileFileAlternateContentSourceResponse**](FileFileAlternateContentSourceResponse.md)
573
573
 
574
574
  ### Authorization
575
575
 
@@ -811,11 +811,11 @@ end
811
811
 
812
812
  ## update
813
813
 
814
- > <AsyncOperationResponse> update(file_file_alternate_content_source_href, file_file_alternate_content_source, opts)
814
+ > <FileFileAlternateContentSourceResponse> update(file_file_alternate_content_source_href, file_file_alternate_content_source, opts)
815
815
 
816
816
  Update a file alternate content source
817
817
 
818
- Trigger an asynchronous update task
818
+ Update the entity and trigger an asynchronous task if necessary
819
819
 
820
820
  ### Examples
821
821
 
@@ -849,7 +849,7 @@ end
849
849
 
850
850
  This returns an Array which contains the response data, status code and headers.
851
851
 
852
- > <Array(<AsyncOperationResponse>, Integer, Hash)> update_with_http_info(file_file_alternate_content_source_href, file_file_alternate_content_source, opts)
852
+ > <Array(<FileFileAlternateContentSourceResponse>, Integer, Hash)> update_with_http_info(file_file_alternate_content_source_href, file_file_alternate_content_source, opts)
853
853
 
854
854
  ```ruby
855
855
  begin
@@ -857,7 +857,7 @@ begin
857
857
  data, status_code, headers = api_instance.update_with_http_info(file_file_alternate_content_source_href, file_file_alternate_content_source, opts)
858
858
  p status_code # => 2xx
859
859
  p headers # => { ... }
860
- p data # => <AsyncOperationResponse>
860
+ p data # => <FileFileAlternateContentSourceResponse>
861
861
  rescue PulpFileClient::ApiError => e
862
862
  puts "Error when calling AcsFileApi->update_with_http_info: #{e}"
863
863
  end
@@ -873,7 +873,7 @@ end
873
873
 
874
874
  ### Return type
875
875
 
876
- [**AsyncOperationResponse**](AsyncOperationResponse.md)
876
+ [**FileFileAlternateContentSourceResponse**](FileFileAlternateContentSourceResponse.md)
877
877
 
878
878
  ### Authorization
879
879
 
@@ -526,11 +526,11 @@ end
526
526
 
527
527
  ## partial_update
528
528
 
529
- > <AsyncOperationResponse> partial_update(file_file_distribution_href, patchedfile_file_distribution, opts)
529
+ > <FileFileDistributionResponse> partial_update(file_file_distribution_href, patchedfile_file_distribution, opts)
530
530
 
531
531
  Update a file 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(file_file_distribution_href, patchedfile_file_distribution, opts)
567
+ > <Array(<FileFileDistributionResponse>, Integer, Hash)> partial_update_with_http_info(file_file_distribution_href, patchedfile_file_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(file_file_distribution_href, patchedfile_file_distribution, opts)
573
573
  p status_code # => 2xx
574
574
  p headers # => { ... }
575
- p data # => <AsyncOperationResponse>
575
+ p data # => <FileFileDistributionResponse>
576
576
  rescue PulpFileClient::ApiError => e
577
577
  puts "Error when calling DistributionsFileApi->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
+ [**FileFileDistributionResponse**](FileFileDistributionResponse.md)
592
592
 
593
593
  ### Authorization
594
594
 
@@ -908,11 +908,11 @@ end
908
908
 
909
909
  ## update
910
910
 
911
- > <AsyncOperationResponse> update(file_file_distribution_href, file_file_distribution, opts)
911
+ > <FileFileDistributionResponse> update(file_file_distribution_href, file_file_distribution, opts)
912
912
 
913
913
  Update a file 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(file_file_distribution_href, file_file_distribution, opts)
949
+ > <Array(<FileFileDistributionResponse>, Integer, Hash)> update_with_http_info(file_file_distribution_href, file_file_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(file_file_distribution_href, file_file_distribution, opts)
955
955
  p status_code # => 2xx
956
956
  p headers # => { ... }
957
- p data # => <AsyncOperationResponse>
957
+ p data # => <FileFileDistributionResponse>
958
958
  rescue PulpFileClient::ApiError => e
959
959
  puts "Error when calling DistributionsFileApi->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
+ [**FileFileDistributionResponse**](FileFileDistributionResponse.md)
974
974
 
975
975
  ### Authorization
976
976
 
@@ -524,11 +524,11 @@ end
524
524
 
525
525
  ## partial_update
526
526
 
527
- > <AsyncOperationResponse> partial_update(file_file_remote_href, patchedfile_file_remote, opts)
527
+ > <FileFileRemoteResponse> partial_update(file_file_remote_href, patchedfile_file_remote, opts)
528
528
 
529
529
  Update a file 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(file_file_remote_href, patchedfile_file_remote, opts)
565
+ > <Array(<FileFileRemoteResponse>, Integer, Hash)> partial_update_with_http_info(file_file_remote_href, patchedfile_file_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(file_file_remote_href, patchedfile_file_remote, opts)
571
571
  p status_code # => 2xx
572
572
  p headers # => { ... }
573
- p data # => <AsyncOperationResponse>
573
+ p data # => <FileFileRemoteResponse>
574
574
  rescue PulpFileClient::ApiError => e
575
575
  puts "Error when calling RemotesFileApi->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
+ [**FileFileRemoteResponse**](FileFileRemoteResponse.md)
590
590
 
591
591
  ### Authorization
592
592
 
@@ -906,11 +906,11 @@ end
906
906
 
907
907
  ## update
908
908
 
909
- > <AsyncOperationResponse> update(file_file_remote_href, file_file_remote, opts)
909
+ > <FileFileRemoteResponse> update(file_file_remote_href, file_file_remote, opts)
910
910
 
911
911
  Update a file 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(file_file_remote_href, file_file_remote, opts)
947
+ > <Array(<FileFileRemoteResponse>, Integer, Hash)> update_with_http_info(file_file_remote_href, file_file_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(file_file_remote_href, file_file_remote, opts)
953
953
  p status_code # => 2xx
954
954
  p headers # => { ... }
955
- p data # => <AsyncOperationResponse>
955
+ p data # => <FileFileRemoteResponse>
956
956
  rescue PulpFileClient::ApiError => e
957
957
  puts "Error when calling RemotesFileApi->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
+ [**FileFileRemoteResponse**](FileFileRemoteResponse.md)
972
972
 
973
973
  ### Authorization
974
974
 
@@ -610,11 +610,11 @@ end
610
610
 
611
611
  ## partial_update
612
612
 
613
- > <AsyncOperationResponse> partial_update(file_file_repository_href, patchedfile_file_repository, opts)
613
+ > <FileFileRepositoryResponse> partial_update(file_file_repository_href, patchedfile_file_repository, opts)
614
614
 
615
615
  Update a file repository
616
616
 
617
- Trigger an asynchronous partial update task
617
+ Update the entity partially and trigger an asynchronous task if necessary
618
618
 
619
619
  ### Examples
620
620
 
@@ -648,7 +648,7 @@ end
648
648
 
649
649
  This returns an Array which contains the response data, status code and headers.
650
650
 
651
- > <Array(<AsyncOperationResponse>, Integer, Hash)> partial_update_with_http_info(file_file_repository_href, patchedfile_file_repository, opts)
651
+ > <Array(<FileFileRepositoryResponse>, Integer, Hash)> partial_update_with_http_info(file_file_repository_href, patchedfile_file_repository, opts)
652
652
 
653
653
  ```ruby
654
654
  begin
@@ -656,7 +656,7 @@ begin
656
656
  data, status_code, headers = api_instance.partial_update_with_http_info(file_file_repository_href, patchedfile_file_repository, opts)
657
657
  p status_code # => 2xx
658
658
  p headers # => { ... }
659
- p data # => <AsyncOperationResponse>
659
+ p data # => <FileFileRepositoryResponse>
660
660
  rescue PulpFileClient::ApiError => e
661
661
  puts "Error when calling RepositoriesFileApi->partial_update_with_http_info: #{e}"
662
662
  end
@@ -672,7 +672,7 @@ end
672
672
 
673
673
  ### Return type
674
674
 
675
- [**AsyncOperationResponse**](AsyncOperationResponse.md)
675
+ [**FileFileRepositoryResponse**](FileFileRepositoryResponse.md)
676
676
 
677
677
  ### Authorization
678
678
 
@@ -1068,11 +1068,11 @@ end
1068
1068
 
1069
1069
  ## update
1070
1070
 
1071
- > <AsyncOperationResponse> update(file_file_repository_href, file_file_repository, opts)
1071
+ > <FileFileRepositoryResponse> update(file_file_repository_href, file_file_repository, opts)
1072
1072
 
1073
1073
  Update a file repository
1074
1074
 
1075
- Trigger an asynchronous update task
1075
+ Update the entity and trigger an asynchronous task if necessary
1076
1076
 
1077
1077
  ### Examples
1078
1078
 
@@ -1106,7 +1106,7 @@ end
1106
1106
 
1107
1107
  This returns an Array which contains the response data, status code and headers.
1108
1108
 
1109
- > <Array(<AsyncOperationResponse>, Integer, Hash)> update_with_http_info(file_file_repository_href, file_file_repository, opts)
1109
+ > <Array(<FileFileRepositoryResponse>, Integer, Hash)> update_with_http_info(file_file_repository_href, file_file_repository, opts)
1110
1110
 
1111
1111
  ```ruby
1112
1112
  begin
@@ -1114,7 +1114,7 @@ begin
1114
1114
  data, status_code, headers = api_instance.update_with_http_info(file_file_repository_href, file_file_repository, opts)
1115
1115
  p status_code # => 2xx
1116
1116
  p headers # => { ... }
1117
- p data # => <AsyncOperationResponse>
1117
+ p data # => <FileFileRepositoryResponse>
1118
1118
  rescue PulpFileClient::ApiError => e
1119
1119
  puts "Error when calling RepositoriesFileApi->update_with_http_info: #{e}"
1120
1120
  end
@@ -1130,7 +1130,7 @@ end
1130
1130
 
1131
1131
  ### Return type
1132
1132
 
1133
- [**AsyncOperationResponse**](AsyncOperationResponse.md)
1133
+ [**FileFileRepositoryResponse**](FileFileRepositoryResponse.md)
1134
1134
 
1135
1135
  ### Authorization
1136
1136
 
@@ -496,24 +496,24 @@ module PulpFileClient
496
496
  end
497
497
 
498
498
  # Update a file alternate content source
499
- # Trigger an asynchronous partial update task
499
+ # Update the entity partially and trigger an asynchronous task if necessary
500
500
  # @param file_file_alternate_content_source_href [String]
501
501
  # @param patchedfile_file_alternate_content_source [PatchedfileFileAlternateContentSource]
502
502
  # @param [Hash] opts the optional parameters
503
503
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
504
- # @return [AsyncOperationResponse]
504
+ # @return [FileFileAlternateContentSourceResponse]
505
505
  def partial_update(file_file_alternate_content_source_href, patchedfile_file_alternate_content_source, opts = {})
506
506
  data, _status_code, _headers = partial_update_with_http_info(file_file_alternate_content_source_href, patchedfile_file_alternate_content_source, opts)
507
507
  data
508
508
  end
509
509
 
510
510
  # Update a file alternate content source
511
- # Trigger an asynchronous partial update task
511
+ # Update the entity partially and trigger an asynchronous task if necessary
512
512
  # @param file_file_alternate_content_source_href [String]
513
513
  # @param patchedfile_file_alternate_content_source [PatchedfileFileAlternateContentSource]
514
514
  # @param [Hash] opts the optional parameters
515
515
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
516
- # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
516
+ # @return [Array<(FileFileAlternateContentSourceResponse, Integer, Hash)>] FileFileAlternateContentSourceResponse data, response status code and response headers
517
517
  def partial_update_with_http_info(file_file_alternate_content_source_href, patchedfile_file_alternate_content_source, opts = {})
518
518
  if @api_client.config.debugging
519
519
  @api_client.config.logger.debug 'Calling API: AcsFileApi.partial_update ...'
@@ -550,7 +550,7 @@ module PulpFileClient
550
550
  post_body = opts[:debug_body] || @api_client.object_to_http_body(patchedfile_file_alternate_content_source)
551
551
 
552
552
  # return_type
553
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
553
+ return_type = opts[:debug_return_type] || 'FileFileAlternateContentSourceResponse'
554
554
 
555
555
  # auth_names
556
556
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -788,24 +788,24 @@ module PulpFileClient
788
788
  end
789
789
 
790
790
  # Update a file alternate content source
791
- # Trigger an asynchronous update task
791
+ # Update the entity and trigger an asynchronous task if necessary
792
792
  # @param file_file_alternate_content_source_href [String]
793
793
  # @param file_file_alternate_content_source [FileFileAlternateContentSource]
794
794
  # @param [Hash] opts the optional parameters
795
795
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
796
- # @return [AsyncOperationResponse]
796
+ # @return [FileFileAlternateContentSourceResponse]
797
797
  def update(file_file_alternate_content_source_href, file_file_alternate_content_source, opts = {})
798
798
  data, _status_code, _headers = update_with_http_info(file_file_alternate_content_source_href, file_file_alternate_content_source, opts)
799
799
  data
800
800
  end
801
801
 
802
802
  # Update a file alternate content source
803
- # Trigger an asynchronous update task
803
+ # Update the entity and trigger an asynchronous task if necessary
804
804
  # @param file_file_alternate_content_source_href [String]
805
805
  # @param file_file_alternate_content_source [FileFileAlternateContentSource]
806
806
  # @param [Hash] opts the optional parameters
807
807
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
808
- # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
808
+ # @return [Array<(FileFileAlternateContentSourceResponse, Integer, Hash)>] FileFileAlternateContentSourceResponse data, response status code and response headers
809
809
  def update_with_http_info(file_file_alternate_content_source_href, file_file_alternate_content_source, opts = {})
810
810
  if @api_client.config.debugging
811
811
  @api_client.config.logger.debug 'Calling API: AcsFileApi.update ...'
@@ -842,7 +842,7 @@ module PulpFileClient
842
842
  post_body = opts[:debug_body] || @api_client.object_to_http_body(file_file_alternate_content_source)
843
843
 
844
844
  # return_type
845
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
845
+ return_type = opts[:debug_return_type] || 'FileFileAlternateContentSourceResponse'
846
846
 
847
847
  # auth_names
848
848
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -523,24 +523,24 @@ module PulpFileClient
523
523
  end
524
524
 
525
525
  # Update a file distribution
526
- # Trigger an asynchronous partial update task
526
+ # Update the entity partially and trigger an asynchronous task if necessary
527
527
  # @param file_file_distribution_href [String]
528
528
  # @param patchedfile_file_distribution [PatchedfileFileDistribution]
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 [FileFileDistributionResponse]
532
532
  def partial_update(file_file_distribution_href, patchedfile_file_distribution, opts = {})
533
533
  data, _status_code, _headers = partial_update_with_http_info(file_file_distribution_href, patchedfile_file_distribution, opts)
534
534
  data
535
535
  end
536
536
 
537
537
  # Update a file distribution
538
- # Trigger an asynchronous partial update task
538
+ # Update the entity partially and trigger an asynchronous task if necessary
539
539
  # @param file_file_distribution_href [String]
540
540
  # @param patchedfile_file_distribution [PatchedfileFileDistribution]
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<(FileFileDistributionResponse, Integer, Hash)>] FileFileDistributionResponse data, response status code and response headers
544
544
  def partial_update_with_http_info(file_file_distribution_href, patchedfile_file_distribution, opts = {})
545
545
  if @api_client.config.debugging
546
546
  @api_client.config.logger.debug 'Calling API: DistributionsFileApi.partial_update ...'
@@ -577,7 +577,7 @@ module PulpFileClient
577
577
  post_body = opts[:debug_body] || @api_client.object_to_http_body(patchedfile_file_distribution)
578
578
 
579
579
  # return_type
580
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
580
+ return_type = opts[:debug_return_type] || 'FileFileDistributionResponse'
581
581
 
582
582
  # auth_names
583
583
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -903,24 +903,24 @@ module PulpFileClient
903
903
  end
904
904
 
905
905
  # Update a file distribution
906
- # Trigger an asynchronous update task
906
+ # Update the entity and trigger an asynchronous task if necessary
907
907
  # @param file_file_distribution_href [String]
908
908
  # @param file_file_distribution [FileFileDistribution]
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 [FileFileDistributionResponse]
912
912
  def update(file_file_distribution_href, file_file_distribution, opts = {})
913
913
  data, _status_code, _headers = update_with_http_info(file_file_distribution_href, file_file_distribution, opts)
914
914
  data
915
915
  end
916
916
 
917
917
  # Update a file distribution
918
- # Trigger an asynchronous update task
918
+ # Update the entity and trigger an asynchronous task if necessary
919
919
  # @param file_file_distribution_href [String]
920
920
  # @param file_file_distribution [FileFileDistribution]
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<(FileFileDistributionResponse, Integer, Hash)>] FileFileDistributionResponse data, response status code and response headers
924
924
  def update_with_http_info(file_file_distribution_href, file_file_distribution, opts = {})
925
925
  if @api_client.config.debugging
926
926
  @api_client.config.logger.debug 'Calling API: DistributionsFileApi.update ...'
@@ -957,7 +957,7 @@ module PulpFileClient
957
957
  post_body = opts[:debug_body] || @api_client.object_to_http_body(file_file_distribution)
958
958
 
959
959
  # return_type
960
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
960
+ return_type = opts[:debug_return_type] || 'FileFileDistributionResponse'
961
961
 
962
962
  # auth_names
963
963
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -520,24 +520,24 @@ module PulpFileClient
520
520
  end
521
521
 
522
522
  # Update a file remote
523
- # Trigger an asynchronous partial update task
523
+ # Update the entity partially and trigger an asynchronous task if necessary
524
524
  # @param file_file_remote_href [String]
525
525
  # @param patchedfile_file_remote [PatchedfileFileRemote]
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 [FileFileRemoteResponse]
529
529
  def partial_update(file_file_remote_href, patchedfile_file_remote, opts = {})
530
530
  data, _status_code, _headers = partial_update_with_http_info(file_file_remote_href, patchedfile_file_remote, opts)
531
531
  data
532
532
  end
533
533
 
534
534
  # Update a file remote
535
- # Trigger an asynchronous partial update task
535
+ # Update the entity partially and trigger an asynchronous task if necessary
536
536
  # @param file_file_remote_href [String]
537
537
  # @param patchedfile_file_remote [PatchedfileFileRemote]
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<(FileFileRemoteResponse, Integer, Hash)>] FileFileRemoteResponse data, response status code and response headers
541
541
  def partial_update_with_http_info(file_file_remote_href, patchedfile_file_remote, opts = {})
542
542
  if @api_client.config.debugging
543
543
  @api_client.config.logger.debug 'Calling API: RemotesFileApi.partial_update ...'
@@ -574,7 +574,7 @@ module PulpFileClient
574
574
  post_body = opts[:debug_body] || @api_client.object_to_http_body(patchedfile_file_remote)
575
575
 
576
576
  # return_type
577
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
577
+ return_type = opts[:debug_return_type] || 'FileFileRemoteResponse'
578
578
 
579
579
  # auth_names
580
580
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -900,24 +900,24 @@ module PulpFileClient
900
900
  end
901
901
 
902
902
  # Update a file remote
903
- # Trigger an asynchronous update task
903
+ # Update the entity and trigger an asynchronous task if necessary
904
904
  # @param file_file_remote_href [String]
905
905
  # @param file_file_remote [FileFileRemote]
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 [FileFileRemoteResponse]
909
909
  def update(file_file_remote_href, file_file_remote, opts = {})
910
910
  data, _status_code, _headers = update_with_http_info(file_file_remote_href, file_file_remote, opts)
911
911
  data
912
912
  end
913
913
 
914
914
  # Update a file remote
915
- # Trigger an asynchronous update task
915
+ # Update the entity and trigger an asynchronous task if necessary
916
916
  # @param file_file_remote_href [String]
917
917
  # @param file_file_remote [FileFileRemote]
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<(FileFileRemoteResponse, Integer, Hash)>] FileFileRemoteResponse data, response status code and response headers
921
921
  def update_with_http_info(file_file_remote_href, file_file_remote, opts = {})
922
922
  if @api_client.config.debugging
923
923
  @api_client.config.logger.debug 'Calling API: RemotesFileApi.update ...'
@@ -954,7 +954,7 @@ module PulpFileClient
954
954
  post_body = opts[:debug_body] || @api_client.object_to_http_body(file_file_remote)
955
955
 
956
956
  # return_type
957
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
957
+ return_type = opts[:debug_return_type] || 'FileFileRemoteResponse'
958
958
 
959
959
  # auth_names
960
960
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -609,24 +609,24 @@ module PulpFileClient
609
609
  end
610
610
 
611
611
  # Update a file repository
612
- # Trigger an asynchronous partial update task
612
+ # Update the entity partially and trigger an asynchronous task if necessary
613
613
  # @param file_file_repository_href [String]
614
614
  # @param patchedfile_file_repository [PatchedfileFileRepository]
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 [FileFileRepositoryResponse]
618
618
  def partial_update(file_file_repository_href, patchedfile_file_repository, opts = {})
619
619
  data, _status_code, _headers = partial_update_with_http_info(file_file_repository_href, patchedfile_file_repository, opts)
620
620
  data
621
621
  end
622
622
 
623
623
  # Update a file repository
624
- # Trigger an asynchronous partial update task
624
+ # Update the entity partially and trigger an asynchronous task if necessary
625
625
  # @param file_file_repository_href [String]
626
626
  # @param patchedfile_file_repository [PatchedfileFileRepository]
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<(FileFileRepositoryResponse, Integer, Hash)>] FileFileRepositoryResponse data, response status code and response headers
630
630
  def partial_update_with_http_info(file_file_repository_href, patchedfile_file_repository, opts = {})
631
631
  if @api_client.config.debugging
632
632
  @api_client.config.logger.debug 'Calling API: RepositoriesFileApi.partial_update ...'
@@ -663,7 +663,7 @@ module PulpFileClient
663
663
  post_body = opts[:debug_body] || @api_client.object_to_http_body(patchedfile_file_repository)
664
664
 
665
665
  # return_type
666
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
666
+ return_type = opts[:debug_return_type] || 'FileFileRepositoryResponse'
667
667
 
668
668
  # auth_names
669
669
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -1066,24 +1066,24 @@ module PulpFileClient
1066
1066
  end
1067
1067
 
1068
1068
  # Update a file repository
1069
- # Trigger an asynchronous update task
1069
+ # Update the entity and trigger an asynchronous task if necessary
1070
1070
  # @param file_file_repository_href [String]
1071
1071
  # @param file_file_repository [FileFileRepository]
1072
1072
  # @param [Hash] opts the optional parameters
1073
1073
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
1074
- # @return [AsyncOperationResponse]
1074
+ # @return [FileFileRepositoryResponse]
1075
1075
  def update(file_file_repository_href, file_file_repository, opts = {})
1076
1076
  data, _status_code, _headers = update_with_http_info(file_file_repository_href, file_file_repository, opts)
1077
1077
  data
1078
1078
  end
1079
1079
 
1080
1080
  # Update a file repository
1081
- # Trigger an asynchronous update task
1081
+ # Update the entity and trigger an asynchronous task if necessary
1082
1082
  # @param file_file_repository_href [String]
1083
1083
  # @param file_file_repository [FileFileRepository]
1084
1084
  # @param [Hash] opts the optional parameters
1085
1085
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
1086
- # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
1086
+ # @return [Array<(FileFileRepositoryResponse, Integer, Hash)>] FileFileRepositoryResponse data, response status code and response headers
1087
1087
  def update_with_http_info(file_file_repository_href, file_file_repository, opts = {})
1088
1088
  if @api_client.config.debugging
1089
1089
  @api_client.config.logger.debug 'Calling API: RepositoriesFileApi.update ...'
@@ -1120,7 +1120,7 @@ module PulpFileClient
1120
1120
  post_body = opts[:debug_body] || @api_client.object_to_http_body(file_file_repository)
1121
1121
 
1122
1122
  # return_type
1123
- return_type = opts[:debug_return_type] || 'AsyncOperationResponse'
1123
+ return_type = opts[:debug_return_type] || 'FileFileRepositoryResponse'
1124
1124
 
1125
1125
  # auth_names
1126
1126
  auth_names = opts[:debug_auth_names] || ['basicAuth']
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module PulpFileClient
14
- VERSION = '3.89.1'
14
+ VERSION = '3.90.0'
15
15
  end
@@ -134,12 +134,12 @@ describe 'AcsFileApi' do
134
134
 
135
135
  # unit tests for partial_update
136
136
  # Update a file alternate content source
137
- # Trigger an asynchronous partial update task
137
+ # Update the entity partially and trigger an asynchronous task if necessary
138
138
  # @param file_file_alternate_content_source_href
139
139
  # @param patchedfile_file_alternate_content_source
140
140
  # @param [Hash] opts the optional parameters
141
141
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
142
- # @return [AsyncOperationResponse]
142
+ # @return [FileFileAlternateContentSourceResponse]
143
143
  describe 'partial_update test' do
144
144
  it 'should work' do
145
145
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -190,12 +190,12 @@ describe 'AcsFileApi' do
190
190
 
191
191
  # unit tests for update
192
192
  # Update a file alternate content source
193
- # Trigger an asynchronous update task
193
+ # Update the entity and trigger an asynchronous task if necessary
194
194
  # @param file_file_alternate_content_source_href
195
195
  # @param file_file_alternate_content_source
196
196
  # @param [Hash] opts the optional parameters
197
197
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
198
- # @return [AsyncOperationResponse]
198
+ # @return [FileFileAlternateContentSourceResponse]
199
199
  describe 'update test' do
200
200
  it 'should work' do
201
201
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -143,12 +143,12 @@ describe 'DistributionsFileApi' do
143
143
 
144
144
  # unit tests for partial_update
145
145
  # Update a file distribution
146
- # Trigger an asynchronous partial update task
146
+ # Update the entity partially and trigger an asynchronous task if necessary
147
147
  # @param file_file_distribution_href
148
148
  # @param patchedfile_file_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 [FileFileDistributionResponse]
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 'DistributionsFileApi' do
214
214
 
215
215
  # unit tests for update
216
216
  # Update a file distribution
217
- # Trigger an asynchronous update task
217
+ # Update the entity and trigger an asynchronous task if necessary
218
218
  # @param file_file_distribution_href
219
219
  # @param file_file_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 [FileFileDistributionResponse]
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/
@@ -142,12 +142,12 @@ describe 'RemotesFileApi' do
142
142
 
143
143
  # unit tests for partial_update
144
144
  # Update a file remote
145
- # Trigger an asynchronous partial update task
145
+ # Update the entity partially and trigger an asynchronous task if necessary
146
146
  # @param file_file_remote_href
147
147
  # @param patchedfile_file_remote
148
148
  # @param [Hash] opts the optional parameters
149
149
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
150
- # @return [AsyncOperationResponse]
150
+ # @return [FileFileRemoteResponse]
151
151
  describe 'partial_update test' do
152
152
  it 'should work' do
153
153
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -213,12 +213,12 @@ describe 'RemotesFileApi' do
213
213
 
214
214
  # unit tests for update
215
215
  # Update a file remote
216
- # Trigger an asynchronous update task
216
+ # Update the entity and trigger an asynchronous task if necessary
217
217
  # @param file_file_remote_href
218
218
  # @param file_file_remote
219
219
  # @param [Hash] opts the optional parameters
220
220
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
221
- # @return [AsyncOperationResponse]
221
+ # @return [FileFileRemoteResponse]
222
222
  describe 'update test' do
223
223
  it 'should work' do
224
224
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -160,12 +160,12 @@ describe 'RepositoriesFileApi' do
160
160
 
161
161
  # unit tests for partial_update
162
162
  # Update a file repository
163
- # Trigger an asynchronous partial update task
163
+ # Update the entity partially and trigger an asynchronous task if necessary
164
164
  # @param file_file_repository_href
165
165
  # @param patchedfile_file_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 [FileFileRepositoryResponse]
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/
@@ -245,12 +245,12 @@ describe 'RepositoriesFileApi' do
245
245
 
246
246
  # unit tests for update
247
247
  # Update a file repository
248
- # Trigger an asynchronous update task
248
+ # Update the entity and trigger an asynchronous task if necessary
249
249
  # @param file_file_repository_href
250
250
  # @param file_file_repository
251
251
  # @param [Hash] opts the optional parameters
252
252
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
253
- # @return [AsyncOperationResponse]
253
+ # @return [FileFileRepositoryResponse]
254
254
  describe 'update test' do
255
255
  it 'should work' do
256
256
  # 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_file_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.89.1
4
+ version: 3.90.0
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-18 00:00:00.000000000 Z
11
+ date: 2025-09-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday