pulp_rpm_client 3.32.2 → 3.32.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 +4 -4
- data/README.md +4 -4
- data/docs/AcsRpmApi.md +10 -10
- data/docs/DistributionsRpmApi.md +10 -10
- data/docs/RemotesRpmApi.md +10 -10
- data/docs/RemotesUlnApi.md +10 -10
- data/docs/RepositoriesRpmApi.md +10 -10
- data/lib/pulp_rpm_client/api/acs_rpm_api.rb +10 -10
- data/lib/pulp_rpm_client/api/distributions_rpm_api.rb +10 -10
- data/lib/pulp_rpm_client/api/remotes_rpm_api.rb +10 -10
- data/lib/pulp_rpm_client/api/remotes_uln_api.rb +10 -10
- data/lib/pulp_rpm_client/api/repositories_rpm_api.rb +10 -10
- data/lib/pulp_rpm_client/version.rb +1 -1
- data/spec/api/acs_rpm_api_spec.rb +4 -4
- data/spec/api/distributions_rpm_api_spec.rb +4 -4
- data/spec/api/remotes_rpm_api_spec.rb +4 -4
- data/spec/api/remotes_uln_api_spec.rb +4 -4
- data/spec/api/repositories_rpm_api_spec.rb +4 -4
- metadata +80 -80
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a3387444ab611b063eceda543ce78b3481979de1aa52215817a07d911725852d
|
4
|
+
data.tar.gz: c0ec35d7af15f9d7f143fb85aa65dd2f59d0f578696760d84c3798f30412ebf8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd73dfd63e721d840e9ca4de791fd4a72f13b2f3eb1fbfc208a06c6f332567d7d9b92517134db497c6d4dcd72283eac388ae766b93a07d61618fc6edeae2db39
|
7
|
+
data.tar.gz: 1128d33b6f3f7b36dbc52afcc14b029504c9c323fc6bbbfd3cbcebe4cb501e5c9b9da93e0aedea23060d007ad768584be5481ba36b01277eed5e8a8f735d2f28
|
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.32.
|
10
|
+
- Package version: 3.32.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_rpm_client.gemspec
|
|
25
25
|
Then either install the gem locally:
|
26
26
|
|
27
27
|
```shell
|
28
|
-
gem install ./pulp_rpm_client-3.32.
|
28
|
+
gem install ./pulp_rpm_client-3.32.3.gem
|
29
29
|
```
|
30
30
|
|
31
|
-
(for development, run `gem install --dev ./pulp_rpm_client-3.32.
|
31
|
+
(for development, run `gem install --dev ./pulp_rpm_client-3.32.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_rpm_client', '~> 3.32.
|
37
|
+
gem 'pulp_rpm_client', '~> 3.32.3'
|
38
38
|
|
39
39
|
### Install from Git
|
40
40
|
|
data/docs/AcsRpmApi.md
CHANGED
@@ -507,11 +507,11 @@ end
|
|
507
507
|
|
508
508
|
## partial_update
|
509
509
|
|
510
|
-
> <
|
510
|
+
> <RpmRpmAlternateContentSourceResponse> partial_update(rpm_rpm_alternate_content_source_href, patchedrpm_rpm_alternate_content_source, opts)
|
511
511
|
|
512
512
|
Update a rpm alternate content source
|
513
513
|
|
514
|
-
|
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(<
|
548
|
+
> <Array(<RpmRpmAlternateContentSourceResponse>, Integer, Hash)> partial_update_with_http_info(rpm_rpm_alternate_content_source_href, patchedrpm_rpm_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(rpm_rpm_alternate_content_source_href, patchedrpm_rpm_alternate_content_source, opts)
|
554
554
|
p status_code # => 2xx
|
555
555
|
p headers # => { ... }
|
556
|
-
p data # => <
|
556
|
+
p data # => <RpmRpmAlternateContentSourceResponse>
|
557
557
|
rescue PulpRpmClient::ApiError => e
|
558
558
|
puts "Error when calling AcsRpmApi->partial_update_with_http_info: #{e}"
|
559
559
|
end
|
@@ -569,7 +569,7 @@ end
|
|
569
569
|
|
570
570
|
### Return type
|
571
571
|
|
572
|
-
[**
|
572
|
+
[**RpmRpmAlternateContentSourceResponse**](RpmRpmAlternateContentSourceResponse.md)
|
573
573
|
|
574
574
|
### Authorization
|
575
575
|
|
@@ -811,11 +811,11 @@ end
|
|
811
811
|
|
812
812
|
## update
|
813
813
|
|
814
|
-
> <
|
814
|
+
> <RpmRpmAlternateContentSourceResponse> update(rpm_rpm_alternate_content_source_href, rpm_rpm_alternate_content_source, opts)
|
815
815
|
|
816
816
|
Update a rpm alternate content source
|
817
817
|
|
818
|
-
|
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(<
|
852
|
+
> <Array(<RpmRpmAlternateContentSourceResponse>, Integer, Hash)> update_with_http_info(rpm_rpm_alternate_content_source_href, rpm_rpm_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(rpm_rpm_alternate_content_source_href, rpm_rpm_alternate_content_source, opts)
|
858
858
|
p status_code # => 2xx
|
859
859
|
p headers # => { ... }
|
860
|
-
p data # => <
|
860
|
+
p data # => <RpmRpmAlternateContentSourceResponse>
|
861
861
|
rescue PulpRpmClient::ApiError => e
|
862
862
|
puts "Error when calling AcsRpmApi->update_with_http_info: #{e}"
|
863
863
|
end
|
@@ -873,7 +873,7 @@ end
|
|
873
873
|
|
874
874
|
### Return type
|
875
875
|
|
876
|
-
[**
|
876
|
+
[**RpmRpmAlternateContentSourceResponse**](RpmRpmAlternateContentSourceResponse.md)
|
877
877
|
|
878
878
|
### Authorization
|
879
879
|
|
data/docs/DistributionsRpmApi.md
CHANGED
@@ -526,11 +526,11 @@ end
|
|
526
526
|
|
527
527
|
## partial_update
|
528
528
|
|
529
|
-
> <
|
529
|
+
> <RpmRpmDistributionResponse> partial_update(rpm_rpm_distribution_href, patchedrpm_rpm_distribution, opts)
|
530
530
|
|
531
531
|
Update a rpm distribution
|
532
532
|
|
533
|
-
|
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(<
|
567
|
+
> <Array(<RpmRpmDistributionResponse>, Integer, Hash)> partial_update_with_http_info(rpm_rpm_distribution_href, patchedrpm_rpm_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(rpm_rpm_distribution_href, patchedrpm_rpm_distribution, opts)
|
573
573
|
p status_code # => 2xx
|
574
574
|
p headers # => { ... }
|
575
|
-
p data # => <
|
575
|
+
p data # => <RpmRpmDistributionResponse>
|
576
576
|
rescue PulpRpmClient::ApiError => e
|
577
577
|
puts "Error when calling DistributionsRpmApi->partial_update_with_http_info: #{e}"
|
578
578
|
end
|
@@ -588,7 +588,7 @@ end
|
|
588
588
|
|
589
589
|
### Return type
|
590
590
|
|
591
|
-
[**
|
591
|
+
[**RpmRpmDistributionResponse**](RpmRpmDistributionResponse.md)
|
592
592
|
|
593
593
|
### Authorization
|
594
594
|
|
@@ -908,11 +908,11 @@ end
|
|
908
908
|
|
909
909
|
## update
|
910
910
|
|
911
|
-
> <
|
911
|
+
> <RpmRpmDistributionResponse> update(rpm_rpm_distribution_href, rpm_rpm_distribution, opts)
|
912
912
|
|
913
913
|
Update a rpm distribution
|
914
914
|
|
915
|
-
|
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(<
|
949
|
+
> <Array(<RpmRpmDistributionResponse>, Integer, Hash)> update_with_http_info(rpm_rpm_distribution_href, rpm_rpm_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(rpm_rpm_distribution_href, rpm_rpm_distribution, opts)
|
955
955
|
p status_code # => 2xx
|
956
956
|
p headers # => { ... }
|
957
|
-
p data # => <
|
957
|
+
p data # => <RpmRpmDistributionResponse>
|
958
958
|
rescue PulpRpmClient::ApiError => e
|
959
959
|
puts "Error when calling DistributionsRpmApi->update_with_http_info: #{e}"
|
960
960
|
end
|
@@ -970,7 +970,7 @@ end
|
|
970
970
|
|
971
971
|
### Return type
|
972
972
|
|
973
|
-
[**
|
973
|
+
[**RpmRpmDistributionResponse**](RpmRpmDistributionResponse.md)
|
974
974
|
|
975
975
|
### Authorization
|
976
976
|
|
data/docs/RemotesRpmApi.md
CHANGED
@@ -524,11 +524,11 @@ end
|
|
524
524
|
|
525
525
|
## partial_update
|
526
526
|
|
527
|
-
> <
|
527
|
+
> <RpmRpmRemoteResponse> partial_update(rpm_rpm_remote_href, patchedrpm_rpm_remote, opts)
|
528
528
|
|
529
529
|
Update a rpm remote
|
530
530
|
|
531
|
-
|
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(<
|
565
|
+
> <Array(<RpmRpmRemoteResponse>, Integer, Hash)> partial_update_with_http_info(rpm_rpm_remote_href, patchedrpm_rpm_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(rpm_rpm_remote_href, patchedrpm_rpm_remote, opts)
|
571
571
|
p status_code # => 2xx
|
572
572
|
p headers # => { ... }
|
573
|
-
p data # => <
|
573
|
+
p data # => <RpmRpmRemoteResponse>
|
574
574
|
rescue PulpRpmClient::ApiError => e
|
575
575
|
puts "Error when calling RemotesRpmApi->partial_update_with_http_info: #{e}"
|
576
576
|
end
|
@@ -586,7 +586,7 @@ end
|
|
586
586
|
|
587
587
|
### Return type
|
588
588
|
|
589
|
-
[**
|
589
|
+
[**RpmRpmRemoteResponse**](RpmRpmRemoteResponse.md)
|
590
590
|
|
591
591
|
### Authorization
|
592
592
|
|
@@ -906,11 +906,11 @@ end
|
|
906
906
|
|
907
907
|
## update
|
908
908
|
|
909
|
-
> <
|
909
|
+
> <RpmRpmRemoteResponse> update(rpm_rpm_remote_href, rpm_rpm_remote, opts)
|
910
910
|
|
911
911
|
Update a rpm remote
|
912
912
|
|
913
|
-
|
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(<
|
947
|
+
> <Array(<RpmRpmRemoteResponse>, Integer, Hash)> update_with_http_info(rpm_rpm_remote_href, rpm_rpm_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(rpm_rpm_remote_href, rpm_rpm_remote, opts)
|
953
953
|
p status_code # => 2xx
|
954
954
|
p headers # => { ... }
|
955
|
-
p data # => <
|
955
|
+
p data # => <RpmRpmRemoteResponse>
|
956
956
|
rescue PulpRpmClient::ApiError => e
|
957
957
|
puts "Error when calling RemotesRpmApi->update_with_http_info: #{e}"
|
958
958
|
end
|
@@ -968,7 +968,7 @@ end
|
|
968
968
|
|
969
969
|
### Return type
|
970
970
|
|
971
|
-
[**
|
971
|
+
[**RpmRpmRemoteResponse**](RpmRpmRemoteResponse.md)
|
972
972
|
|
973
973
|
### Authorization
|
974
974
|
|
data/docs/RemotesUlnApi.md
CHANGED
@@ -524,11 +524,11 @@ end
|
|
524
524
|
|
525
525
|
## partial_update
|
526
526
|
|
527
|
-
> <
|
527
|
+
> <RpmUlnRemoteResponse> partial_update(rpm_uln_remote_href, patchedrpm_uln_remote, opts)
|
528
528
|
|
529
529
|
Update an uln remote
|
530
530
|
|
531
|
-
|
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(<
|
565
|
+
> <Array(<RpmUlnRemoteResponse>, Integer, Hash)> partial_update_with_http_info(rpm_uln_remote_href, patchedrpm_uln_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(rpm_uln_remote_href, patchedrpm_uln_remote, opts)
|
571
571
|
p status_code # => 2xx
|
572
572
|
p headers # => { ... }
|
573
|
-
p data # => <
|
573
|
+
p data # => <RpmUlnRemoteResponse>
|
574
574
|
rescue PulpRpmClient::ApiError => e
|
575
575
|
puts "Error when calling RemotesUlnApi->partial_update_with_http_info: #{e}"
|
576
576
|
end
|
@@ -586,7 +586,7 @@ end
|
|
586
586
|
|
587
587
|
### Return type
|
588
588
|
|
589
|
-
[**
|
589
|
+
[**RpmUlnRemoteResponse**](RpmUlnRemoteResponse.md)
|
590
590
|
|
591
591
|
### Authorization
|
592
592
|
|
@@ -906,11 +906,11 @@ end
|
|
906
906
|
|
907
907
|
## update
|
908
908
|
|
909
|
-
> <
|
909
|
+
> <RpmUlnRemoteResponse> update(rpm_uln_remote_href, rpm_uln_remote, opts)
|
910
910
|
|
911
911
|
Update an uln remote
|
912
912
|
|
913
|
-
|
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(<
|
947
|
+
> <Array(<RpmUlnRemoteResponse>, Integer, Hash)> update_with_http_info(rpm_uln_remote_href, rpm_uln_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(rpm_uln_remote_href, rpm_uln_remote, opts)
|
953
953
|
p status_code # => 2xx
|
954
954
|
p headers # => { ... }
|
955
|
-
p data # => <
|
955
|
+
p data # => <RpmUlnRemoteResponse>
|
956
956
|
rescue PulpRpmClient::ApiError => e
|
957
957
|
puts "Error when calling RemotesUlnApi->update_with_http_info: #{e}"
|
958
958
|
end
|
@@ -968,7 +968,7 @@ end
|
|
968
968
|
|
969
969
|
### Return type
|
970
970
|
|
971
|
-
[**
|
971
|
+
[**RpmUlnRemoteResponse**](RpmUlnRemoteResponse.md)
|
972
972
|
|
973
973
|
### Authorization
|
974
974
|
|
data/docs/RepositoriesRpmApi.md
CHANGED
@@ -610,11 +610,11 @@ end
|
|
610
610
|
|
611
611
|
## partial_update
|
612
612
|
|
613
|
-
> <
|
613
|
+
> <RpmRpmRepositoryResponse> partial_update(rpm_rpm_repository_href, patchedrpm_rpm_repository, opts)
|
614
614
|
|
615
615
|
Update a rpm repository
|
616
616
|
|
617
|
-
|
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(<
|
651
|
+
> <Array(<RpmRpmRepositoryResponse>, Integer, Hash)> partial_update_with_http_info(rpm_rpm_repository_href, patchedrpm_rpm_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(rpm_rpm_repository_href, patchedrpm_rpm_repository, opts)
|
657
657
|
p status_code # => 2xx
|
658
658
|
p headers # => { ... }
|
659
|
-
p data # => <
|
659
|
+
p data # => <RpmRpmRepositoryResponse>
|
660
660
|
rescue PulpRpmClient::ApiError => e
|
661
661
|
puts "Error when calling RepositoriesRpmApi->partial_update_with_http_info: #{e}"
|
662
662
|
end
|
@@ -672,7 +672,7 @@ end
|
|
672
672
|
|
673
673
|
### Return type
|
674
674
|
|
675
|
-
[**
|
675
|
+
[**RpmRpmRepositoryResponse**](RpmRpmRepositoryResponse.md)
|
676
676
|
|
677
677
|
### Authorization
|
678
678
|
|
@@ -1068,11 +1068,11 @@ end
|
|
1068
1068
|
|
1069
1069
|
## update
|
1070
1070
|
|
1071
|
-
> <
|
1071
|
+
> <RpmRpmRepositoryResponse> update(rpm_rpm_repository_href, rpm_rpm_repository, opts)
|
1072
1072
|
|
1073
1073
|
Update a rpm repository
|
1074
1074
|
|
1075
|
-
|
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(<
|
1109
|
+
> <Array(<RpmRpmRepositoryResponse>, Integer, Hash)> update_with_http_info(rpm_rpm_repository_href, rpm_rpm_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(rpm_rpm_repository_href, rpm_rpm_repository, opts)
|
1115
1115
|
p status_code # => 2xx
|
1116
1116
|
p headers # => { ... }
|
1117
|
-
p data # => <
|
1117
|
+
p data # => <RpmRpmRepositoryResponse>
|
1118
1118
|
rescue PulpRpmClient::ApiError => e
|
1119
1119
|
puts "Error when calling RepositoriesRpmApi->update_with_http_info: #{e}"
|
1120
1120
|
end
|
@@ -1130,7 +1130,7 @@ end
|
|
1130
1130
|
|
1131
1131
|
### Return type
|
1132
1132
|
|
1133
|
-
[**
|
1133
|
+
[**RpmRpmRepositoryResponse**](RpmRpmRepositoryResponse.md)
|
1134
1134
|
|
1135
1135
|
### Authorization
|
1136
1136
|
|
@@ -496,24 +496,24 @@ module PulpRpmClient
|
|
496
496
|
end
|
497
497
|
|
498
498
|
# Update a rpm alternate content source
|
499
|
-
#
|
499
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
500
500
|
# @param rpm_rpm_alternate_content_source_href [String]
|
501
501
|
# @param patchedrpm_rpm_alternate_content_source [PatchedrpmRpmAlternateContentSource]
|
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 [
|
504
|
+
# @return [RpmRpmAlternateContentSourceResponse]
|
505
505
|
def partial_update(rpm_rpm_alternate_content_source_href, patchedrpm_rpm_alternate_content_source, opts = {})
|
506
506
|
data, _status_code, _headers = partial_update_with_http_info(rpm_rpm_alternate_content_source_href, patchedrpm_rpm_alternate_content_source, opts)
|
507
507
|
data
|
508
508
|
end
|
509
509
|
|
510
510
|
# Update a rpm alternate content source
|
511
|
-
#
|
511
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
512
512
|
# @param rpm_rpm_alternate_content_source_href [String]
|
513
513
|
# @param patchedrpm_rpm_alternate_content_source [PatchedrpmRpmAlternateContentSource]
|
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<(
|
516
|
+
# @return [Array<(RpmRpmAlternateContentSourceResponse, Integer, Hash)>] RpmRpmAlternateContentSourceResponse data, response status code and response headers
|
517
517
|
def partial_update_with_http_info(rpm_rpm_alternate_content_source_href, patchedrpm_rpm_alternate_content_source, opts = {})
|
518
518
|
if @api_client.config.debugging
|
519
519
|
@api_client.config.logger.debug 'Calling API: AcsRpmApi.partial_update ...'
|
@@ -550,7 +550,7 @@ module PulpRpmClient
|
|
550
550
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(patchedrpm_rpm_alternate_content_source)
|
551
551
|
|
552
552
|
# return_type
|
553
|
-
return_type = opts[:debug_return_type] || '
|
553
|
+
return_type = opts[:debug_return_type] || 'RpmRpmAlternateContentSourceResponse'
|
554
554
|
|
555
555
|
# auth_names
|
556
556
|
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
@@ -786,24 +786,24 @@ module PulpRpmClient
|
|
786
786
|
end
|
787
787
|
|
788
788
|
# Update a rpm alternate content source
|
789
|
-
#
|
789
|
+
# Update the entity and trigger an asynchronous task if necessary
|
790
790
|
# @param rpm_rpm_alternate_content_source_href [String]
|
791
791
|
# @param rpm_rpm_alternate_content_source [RpmRpmAlternateContentSource]
|
792
792
|
# @param [Hash] opts the optional parameters
|
793
793
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
794
|
-
# @return [
|
794
|
+
# @return [RpmRpmAlternateContentSourceResponse]
|
795
795
|
def update(rpm_rpm_alternate_content_source_href, rpm_rpm_alternate_content_source, opts = {})
|
796
796
|
data, _status_code, _headers = update_with_http_info(rpm_rpm_alternate_content_source_href, rpm_rpm_alternate_content_source, opts)
|
797
797
|
data
|
798
798
|
end
|
799
799
|
|
800
800
|
# Update a rpm alternate content source
|
801
|
-
#
|
801
|
+
# Update the entity and trigger an asynchronous task if necessary
|
802
802
|
# @param rpm_rpm_alternate_content_source_href [String]
|
803
803
|
# @param rpm_rpm_alternate_content_source [RpmRpmAlternateContentSource]
|
804
804
|
# @param [Hash] opts the optional parameters
|
805
805
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
806
|
-
# @return [Array<(
|
806
|
+
# @return [Array<(RpmRpmAlternateContentSourceResponse, Integer, Hash)>] RpmRpmAlternateContentSourceResponse data, response status code and response headers
|
807
807
|
def update_with_http_info(rpm_rpm_alternate_content_source_href, rpm_rpm_alternate_content_source, opts = {})
|
808
808
|
if @api_client.config.debugging
|
809
809
|
@api_client.config.logger.debug 'Calling API: AcsRpmApi.update ...'
|
@@ -840,7 +840,7 @@ module PulpRpmClient
|
|
840
840
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(rpm_rpm_alternate_content_source)
|
841
841
|
|
842
842
|
# return_type
|
843
|
-
return_type = opts[:debug_return_type] || '
|
843
|
+
return_type = opts[:debug_return_type] || 'RpmRpmAlternateContentSourceResponse'
|
844
844
|
|
845
845
|
# auth_names
|
846
846
|
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
@@ -523,24 +523,24 @@ module PulpRpmClient
|
|
523
523
|
end
|
524
524
|
|
525
525
|
# Update a rpm distribution
|
526
|
-
#
|
526
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
527
527
|
# @param rpm_rpm_distribution_href [String]
|
528
528
|
# @param patchedrpm_rpm_distribution [PatchedrpmRpmDistribution]
|
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 [
|
531
|
+
# @return [RpmRpmDistributionResponse]
|
532
532
|
def partial_update(rpm_rpm_distribution_href, patchedrpm_rpm_distribution, opts = {})
|
533
533
|
data, _status_code, _headers = partial_update_with_http_info(rpm_rpm_distribution_href, patchedrpm_rpm_distribution, opts)
|
534
534
|
data
|
535
535
|
end
|
536
536
|
|
537
537
|
# Update a rpm distribution
|
538
|
-
#
|
538
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
539
539
|
# @param rpm_rpm_distribution_href [String]
|
540
540
|
# @param patchedrpm_rpm_distribution [PatchedrpmRpmDistribution]
|
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<(
|
543
|
+
# @return [Array<(RpmRpmDistributionResponse, Integer, Hash)>] RpmRpmDistributionResponse data, response status code and response headers
|
544
544
|
def partial_update_with_http_info(rpm_rpm_distribution_href, patchedrpm_rpm_distribution, opts = {})
|
545
545
|
if @api_client.config.debugging
|
546
546
|
@api_client.config.logger.debug 'Calling API: DistributionsRpmApi.partial_update ...'
|
@@ -577,7 +577,7 @@ module PulpRpmClient
|
|
577
577
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(patchedrpm_rpm_distribution)
|
578
578
|
|
579
579
|
# return_type
|
580
|
-
return_type = opts[:debug_return_type] || '
|
580
|
+
return_type = opts[:debug_return_type] || 'RpmRpmDistributionResponse'
|
581
581
|
|
582
582
|
# auth_names
|
583
583
|
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
@@ -903,24 +903,24 @@ module PulpRpmClient
|
|
903
903
|
end
|
904
904
|
|
905
905
|
# Update a rpm distribution
|
906
|
-
#
|
906
|
+
# Update the entity and trigger an asynchronous task if necessary
|
907
907
|
# @param rpm_rpm_distribution_href [String]
|
908
908
|
# @param rpm_rpm_distribution [RpmRpmDistribution]
|
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 [
|
911
|
+
# @return [RpmRpmDistributionResponse]
|
912
912
|
def update(rpm_rpm_distribution_href, rpm_rpm_distribution, opts = {})
|
913
913
|
data, _status_code, _headers = update_with_http_info(rpm_rpm_distribution_href, rpm_rpm_distribution, opts)
|
914
914
|
data
|
915
915
|
end
|
916
916
|
|
917
917
|
# Update a rpm distribution
|
918
|
-
#
|
918
|
+
# Update the entity and trigger an asynchronous task if necessary
|
919
919
|
# @param rpm_rpm_distribution_href [String]
|
920
920
|
# @param rpm_rpm_distribution [RpmRpmDistribution]
|
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<(
|
923
|
+
# @return [Array<(RpmRpmDistributionResponse, Integer, Hash)>] RpmRpmDistributionResponse data, response status code and response headers
|
924
924
|
def update_with_http_info(rpm_rpm_distribution_href, rpm_rpm_distribution, opts = {})
|
925
925
|
if @api_client.config.debugging
|
926
926
|
@api_client.config.logger.debug 'Calling API: DistributionsRpmApi.update ...'
|
@@ -957,7 +957,7 @@ module PulpRpmClient
|
|
957
957
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(rpm_rpm_distribution)
|
958
958
|
|
959
959
|
# return_type
|
960
|
-
return_type = opts[:debug_return_type] || '
|
960
|
+
return_type = opts[:debug_return_type] || 'RpmRpmDistributionResponse'
|
961
961
|
|
962
962
|
# auth_names
|
963
963
|
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
@@ -520,24 +520,24 @@ module PulpRpmClient
|
|
520
520
|
end
|
521
521
|
|
522
522
|
# Update a rpm remote
|
523
|
-
#
|
523
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
524
524
|
# @param rpm_rpm_remote_href [String]
|
525
525
|
# @param patchedrpm_rpm_remote [PatchedrpmRpmRemote]
|
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 [
|
528
|
+
# @return [RpmRpmRemoteResponse]
|
529
529
|
def partial_update(rpm_rpm_remote_href, patchedrpm_rpm_remote, opts = {})
|
530
530
|
data, _status_code, _headers = partial_update_with_http_info(rpm_rpm_remote_href, patchedrpm_rpm_remote, opts)
|
531
531
|
data
|
532
532
|
end
|
533
533
|
|
534
534
|
# Update a rpm remote
|
535
|
-
#
|
535
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
536
536
|
# @param rpm_rpm_remote_href [String]
|
537
537
|
# @param patchedrpm_rpm_remote [PatchedrpmRpmRemote]
|
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<(
|
540
|
+
# @return [Array<(RpmRpmRemoteResponse, Integer, Hash)>] RpmRpmRemoteResponse data, response status code and response headers
|
541
541
|
def partial_update_with_http_info(rpm_rpm_remote_href, patchedrpm_rpm_remote, opts = {})
|
542
542
|
if @api_client.config.debugging
|
543
543
|
@api_client.config.logger.debug 'Calling API: RemotesRpmApi.partial_update ...'
|
@@ -574,7 +574,7 @@ module PulpRpmClient
|
|
574
574
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(patchedrpm_rpm_remote)
|
575
575
|
|
576
576
|
# return_type
|
577
|
-
return_type = opts[:debug_return_type] || '
|
577
|
+
return_type = opts[:debug_return_type] || 'RpmRpmRemoteResponse'
|
578
578
|
|
579
579
|
# auth_names
|
580
580
|
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
@@ -900,24 +900,24 @@ module PulpRpmClient
|
|
900
900
|
end
|
901
901
|
|
902
902
|
# Update a rpm remote
|
903
|
-
#
|
903
|
+
# Update the entity and trigger an asynchronous task if necessary
|
904
904
|
# @param rpm_rpm_remote_href [String]
|
905
905
|
# @param rpm_rpm_remote [RpmRpmRemote]
|
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 [
|
908
|
+
# @return [RpmRpmRemoteResponse]
|
909
909
|
def update(rpm_rpm_remote_href, rpm_rpm_remote, opts = {})
|
910
910
|
data, _status_code, _headers = update_with_http_info(rpm_rpm_remote_href, rpm_rpm_remote, opts)
|
911
911
|
data
|
912
912
|
end
|
913
913
|
|
914
914
|
# Update a rpm remote
|
915
|
-
#
|
915
|
+
# Update the entity and trigger an asynchronous task if necessary
|
916
916
|
# @param rpm_rpm_remote_href [String]
|
917
917
|
# @param rpm_rpm_remote [RpmRpmRemote]
|
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<(
|
920
|
+
# @return [Array<(RpmRpmRemoteResponse, Integer, Hash)>] RpmRpmRemoteResponse data, response status code and response headers
|
921
921
|
def update_with_http_info(rpm_rpm_remote_href, rpm_rpm_remote, opts = {})
|
922
922
|
if @api_client.config.debugging
|
923
923
|
@api_client.config.logger.debug 'Calling API: RemotesRpmApi.update ...'
|
@@ -954,7 +954,7 @@ module PulpRpmClient
|
|
954
954
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(rpm_rpm_remote)
|
955
955
|
|
956
956
|
# return_type
|
957
|
-
return_type = opts[:debug_return_type] || '
|
957
|
+
return_type = opts[:debug_return_type] || 'RpmRpmRemoteResponse'
|
958
958
|
|
959
959
|
# auth_names
|
960
960
|
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
@@ -520,24 +520,24 @@ module PulpRpmClient
|
|
520
520
|
end
|
521
521
|
|
522
522
|
# Update an uln remote
|
523
|
-
#
|
523
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
524
524
|
# @param rpm_uln_remote_href [String]
|
525
525
|
# @param patchedrpm_uln_remote [PatchedrpmUlnRemote]
|
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 [
|
528
|
+
# @return [RpmUlnRemoteResponse]
|
529
529
|
def partial_update(rpm_uln_remote_href, patchedrpm_uln_remote, opts = {})
|
530
530
|
data, _status_code, _headers = partial_update_with_http_info(rpm_uln_remote_href, patchedrpm_uln_remote, opts)
|
531
531
|
data
|
532
532
|
end
|
533
533
|
|
534
534
|
# Update an uln remote
|
535
|
-
#
|
535
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
536
536
|
# @param rpm_uln_remote_href [String]
|
537
537
|
# @param patchedrpm_uln_remote [PatchedrpmUlnRemote]
|
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<(
|
540
|
+
# @return [Array<(RpmUlnRemoteResponse, Integer, Hash)>] RpmUlnRemoteResponse data, response status code and response headers
|
541
541
|
def partial_update_with_http_info(rpm_uln_remote_href, patchedrpm_uln_remote, opts = {})
|
542
542
|
if @api_client.config.debugging
|
543
543
|
@api_client.config.logger.debug 'Calling API: RemotesUlnApi.partial_update ...'
|
@@ -574,7 +574,7 @@ module PulpRpmClient
|
|
574
574
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(patchedrpm_uln_remote)
|
575
575
|
|
576
576
|
# return_type
|
577
|
-
return_type = opts[:debug_return_type] || '
|
577
|
+
return_type = opts[:debug_return_type] || 'RpmUlnRemoteResponse'
|
578
578
|
|
579
579
|
# auth_names
|
580
580
|
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
@@ -900,24 +900,24 @@ module PulpRpmClient
|
|
900
900
|
end
|
901
901
|
|
902
902
|
# Update an uln remote
|
903
|
-
#
|
903
|
+
# Update the entity and trigger an asynchronous task if necessary
|
904
904
|
# @param rpm_uln_remote_href [String]
|
905
905
|
# @param rpm_uln_remote [RpmUlnRemote]
|
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 [
|
908
|
+
# @return [RpmUlnRemoteResponse]
|
909
909
|
def update(rpm_uln_remote_href, rpm_uln_remote, opts = {})
|
910
910
|
data, _status_code, _headers = update_with_http_info(rpm_uln_remote_href, rpm_uln_remote, opts)
|
911
911
|
data
|
912
912
|
end
|
913
913
|
|
914
914
|
# Update an uln remote
|
915
|
-
#
|
915
|
+
# Update the entity and trigger an asynchronous task if necessary
|
916
916
|
# @param rpm_uln_remote_href [String]
|
917
917
|
# @param rpm_uln_remote [RpmUlnRemote]
|
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<(
|
920
|
+
# @return [Array<(RpmUlnRemoteResponse, Integer, Hash)>] RpmUlnRemoteResponse data, response status code and response headers
|
921
921
|
def update_with_http_info(rpm_uln_remote_href, rpm_uln_remote, opts = {})
|
922
922
|
if @api_client.config.debugging
|
923
923
|
@api_client.config.logger.debug 'Calling API: RemotesUlnApi.update ...'
|
@@ -954,7 +954,7 @@ module PulpRpmClient
|
|
954
954
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(rpm_uln_remote)
|
955
955
|
|
956
956
|
# return_type
|
957
|
-
return_type = opts[:debug_return_type] || '
|
957
|
+
return_type = opts[:debug_return_type] || 'RpmUlnRemoteResponse'
|
958
958
|
|
959
959
|
# auth_names
|
960
960
|
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
@@ -609,24 +609,24 @@ module PulpRpmClient
|
|
609
609
|
end
|
610
610
|
|
611
611
|
# Update a rpm repository
|
612
|
-
#
|
612
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
613
613
|
# @param rpm_rpm_repository_href [String]
|
614
614
|
# @param patchedrpm_rpm_repository [PatchedrpmRpmRepository]
|
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 [
|
617
|
+
# @return [RpmRpmRepositoryResponse]
|
618
618
|
def partial_update(rpm_rpm_repository_href, patchedrpm_rpm_repository, opts = {})
|
619
619
|
data, _status_code, _headers = partial_update_with_http_info(rpm_rpm_repository_href, patchedrpm_rpm_repository, opts)
|
620
620
|
data
|
621
621
|
end
|
622
622
|
|
623
623
|
# Update a rpm repository
|
624
|
-
#
|
624
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
625
625
|
# @param rpm_rpm_repository_href [String]
|
626
626
|
# @param patchedrpm_rpm_repository [PatchedrpmRpmRepository]
|
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<(
|
629
|
+
# @return [Array<(RpmRpmRepositoryResponse, Integer, Hash)>] RpmRpmRepositoryResponse data, response status code and response headers
|
630
630
|
def partial_update_with_http_info(rpm_rpm_repository_href, patchedrpm_rpm_repository, opts = {})
|
631
631
|
if @api_client.config.debugging
|
632
632
|
@api_client.config.logger.debug 'Calling API: RepositoriesRpmApi.partial_update ...'
|
@@ -663,7 +663,7 @@ module PulpRpmClient
|
|
663
663
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(patchedrpm_rpm_repository)
|
664
664
|
|
665
665
|
# return_type
|
666
|
-
return_type = opts[:debug_return_type] || '
|
666
|
+
return_type = opts[:debug_return_type] || 'RpmRpmRepositoryResponse'
|
667
667
|
|
668
668
|
# auth_names
|
669
669
|
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
@@ -1066,24 +1066,24 @@ module PulpRpmClient
|
|
1066
1066
|
end
|
1067
1067
|
|
1068
1068
|
# Update a rpm repository
|
1069
|
-
#
|
1069
|
+
# Update the entity and trigger an asynchronous task if necessary
|
1070
1070
|
# @param rpm_rpm_repository_href [String]
|
1071
1071
|
# @param rpm_rpm_repository [RpmRpmRepository]
|
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 [
|
1074
|
+
# @return [RpmRpmRepositoryResponse]
|
1075
1075
|
def update(rpm_rpm_repository_href, rpm_rpm_repository, opts = {})
|
1076
1076
|
data, _status_code, _headers = update_with_http_info(rpm_rpm_repository_href, rpm_rpm_repository, opts)
|
1077
1077
|
data
|
1078
1078
|
end
|
1079
1079
|
|
1080
1080
|
# Update a rpm repository
|
1081
|
-
#
|
1081
|
+
# Update the entity and trigger an asynchronous task if necessary
|
1082
1082
|
# @param rpm_rpm_repository_href [String]
|
1083
1083
|
# @param rpm_rpm_repository [RpmRpmRepository]
|
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<(
|
1086
|
+
# @return [Array<(RpmRpmRepositoryResponse, Integer, Hash)>] RpmRpmRepositoryResponse data, response status code and response headers
|
1087
1087
|
def update_with_http_info(rpm_rpm_repository_href, rpm_rpm_repository, opts = {})
|
1088
1088
|
if @api_client.config.debugging
|
1089
1089
|
@api_client.config.logger.debug 'Calling API: RepositoriesRpmApi.update ...'
|
@@ -1120,7 +1120,7 @@ module PulpRpmClient
|
|
1120
1120
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(rpm_rpm_repository)
|
1121
1121
|
|
1122
1122
|
# return_type
|
1123
|
-
return_type = opts[:debug_return_type] || '
|
1123
|
+
return_type = opts[:debug_return_type] || 'RpmRpmRepositoryResponse'
|
1124
1124
|
|
1125
1125
|
# auth_names
|
1126
1126
|
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
@@ -134,12 +134,12 @@ describe 'AcsRpmApi' do
|
|
134
134
|
|
135
135
|
# unit tests for partial_update
|
136
136
|
# Update a rpm alternate content source
|
137
|
-
#
|
137
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
138
138
|
# @param rpm_rpm_alternate_content_source_href
|
139
139
|
# @param patchedrpm_rpm_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 [
|
142
|
+
# @return [RpmRpmAlternateContentSourceResponse]
|
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/
|
@@ -189,12 +189,12 @@ describe 'AcsRpmApi' do
|
|
189
189
|
|
190
190
|
# unit tests for update
|
191
191
|
# Update a rpm alternate content source
|
192
|
-
#
|
192
|
+
# Update the entity and trigger an asynchronous task if necessary
|
193
193
|
# @param rpm_rpm_alternate_content_source_href
|
194
194
|
# @param rpm_rpm_alternate_content_source
|
195
195
|
# @param [Hash] opts the optional parameters
|
196
196
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
197
|
-
# @return [
|
197
|
+
# @return [RpmRpmAlternateContentSourceResponse]
|
198
198
|
describe 'update test' do
|
199
199
|
it 'should work' do
|
200
200
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -143,12 +143,12 @@ describe 'DistributionsRpmApi' do
|
|
143
143
|
|
144
144
|
# unit tests for partial_update
|
145
145
|
# Update a rpm distribution
|
146
|
-
#
|
146
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
147
147
|
# @param rpm_rpm_distribution_href
|
148
148
|
# @param patchedrpm_rpm_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 [
|
151
|
+
# @return [RpmRpmDistributionResponse]
|
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 'DistributionsRpmApi' do
|
|
214
214
|
|
215
215
|
# unit tests for update
|
216
216
|
# Update a rpm distribution
|
217
|
-
#
|
217
|
+
# Update the entity and trigger an asynchronous task if necessary
|
218
218
|
# @param rpm_rpm_distribution_href
|
219
219
|
# @param rpm_rpm_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 [
|
222
|
+
# @return [RpmRpmDistributionResponse]
|
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 'RemotesRpmApi' do
|
|
142
142
|
|
143
143
|
# unit tests for partial_update
|
144
144
|
# Update a rpm remote
|
145
|
-
#
|
145
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
146
146
|
# @param rpm_rpm_remote_href
|
147
147
|
# @param patchedrpm_rpm_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 [
|
150
|
+
# @return [RpmRpmRemoteResponse]
|
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 'RemotesRpmApi' do
|
|
213
213
|
|
214
214
|
# unit tests for update
|
215
215
|
# Update a rpm remote
|
216
|
-
#
|
216
|
+
# Update the entity and trigger an asynchronous task if necessary
|
217
217
|
# @param rpm_rpm_remote_href
|
218
218
|
# @param rpm_rpm_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 [
|
221
|
+
# @return [RpmRpmRemoteResponse]
|
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/
|
@@ -142,12 +142,12 @@ describe 'RemotesUlnApi' do
|
|
142
142
|
|
143
143
|
# unit tests for partial_update
|
144
144
|
# Update an uln remote
|
145
|
-
#
|
145
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
146
146
|
# @param rpm_uln_remote_href
|
147
147
|
# @param patchedrpm_uln_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 [
|
150
|
+
# @return [RpmUlnRemoteResponse]
|
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 'RemotesUlnApi' do
|
|
213
213
|
|
214
214
|
# unit tests for update
|
215
215
|
# Update an uln remote
|
216
|
-
#
|
216
|
+
# Update the entity and trigger an asynchronous task if necessary
|
217
217
|
# @param rpm_uln_remote_href
|
218
218
|
# @param rpm_uln_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 [
|
221
|
+
# @return [RpmUlnRemoteResponse]
|
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 'RepositoriesRpmApi' do
|
|
160
160
|
|
161
161
|
# unit tests for partial_update
|
162
162
|
# Update a rpm repository
|
163
|
-
#
|
163
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
164
164
|
# @param rpm_rpm_repository_href
|
165
165
|
# @param patchedrpm_rpm_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 [
|
168
|
+
# @return [RpmRpmRepositoryResponse]
|
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 'RepositoriesRpmApi' do
|
|
245
245
|
|
246
246
|
# unit tests for update
|
247
247
|
# Update a rpm repository
|
248
|
-
#
|
248
|
+
# Update the entity and trigger an asynchronous task if necessary
|
249
249
|
# @param rpm_rpm_repository_href
|
250
250
|
# @param rpm_rpm_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 [
|
253
|
+
# @return [RpmRpmRepositoryResponse]
|
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_rpm_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.32.
|
4
|
+
version: 3.32.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-
|
11
|
+
date: 2025-10-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -423,104 +423,104 @@ specification_version: 4
|
|
423
423
|
summary: Pulp 3 API Ruby Gem
|
424
424
|
test_files:
|
425
425
|
- spec/api/content_packages_api_spec.rb
|
426
|
-
- spec/api/remotes_rpm_api_spec.rb
|
427
|
-
- spec/api/content_packagecategories_api_spec.rb
|
428
|
-
- spec/api/rpm_comps_api_spec.rb
|
429
|
-
- spec/api/content_advisories_api_spec.rb
|
430
|
-
- spec/api/content_packagegroups_api_spec.rb
|
431
|
-
- spec/api/repositories_rpm_api_spec.rb
|
432
|
-
- spec/api/repositories_rpm_versions_api_spec.rb
|
433
426
|
- spec/api/remotes_uln_api_spec.rb
|
434
|
-
- spec/api/content_distribution_trees_api_spec.rb
|
435
427
|
- spec/api/content_modulemds_api_spec.rb
|
436
428
|
- spec/api/rpm_prune_api_spec.rb
|
437
429
|
- spec/api/content_repo_metadata_files_api_spec.rb
|
438
|
-
- spec/api/
|
430
|
+
- spec/api/publications_rpm_api_spec.rb
|
431
|
+
- spec/api/rpm_copy_api_spec.rb
|
432
|
+
- spec/api/content_modulemd_obsoletes_api_spec.rb
|
439
433
|
- spec/api/acs_rpm_api_spec.rb
|
434
|
+
- spec/api/content_advisories_api_spec.rb
|
435
|
+
- spec/api/content_distribution_trees_api_spec.rb
|
436
|
+
- spec/api/rpm_comps_api_spec.rb
|
437
|
+
- spec/api/content_packagelangpacks_api_spec.rb
|
438
|
+
- spec/api/content_packageenvironments_api_spec.rb
|
439
|
+
- spec/api/content_packagegroups_api_spec.rb
|
440
440
|
- spec/api/content_modulemd_defaults_api_spec.rb
|
441
441
|
- spec/api/distributions_rpm_api_spec.rb
|
442
|
-
- spec/api/
|
443
|
-
- spec/api/
|
444
|
-
- spec/api/
|
445
|
-
- spec/api/
|
446
|
-
- spec/models/
|
447
|
-
- spec/models/
|
442
|
+
- spec/api/repositories_rpm_api_spec.rb
|
443
|
+
- spec/api/content_packagecategories_api_spec.rb
|
444
|
+
- spec/api/remotes_rpm_api_spec.rb
|
445
|
+
- spec/api/repositories_rpm_versions_api_spec.rb
|
446
|
+
- spec/models/rpm_modulemd_defaults_spec.rb
|
447
|
+
- spec/models/package_checksum_type_enum_spec.rb
|
448
448
|
- spec/models/rpm_modulemd_obsolete_spec.rb
|
449
|
-
- spec/models/
|
450
|
-
- spec/models/
|
451
|
-
- spec/models/
|
452
|
-
- spec/models/
|
449
|
+
- spec/models/unset_label_response_spec.rb
|
450
|
+
- spec/models/patchedrpm_rpm_remote_spec.rb
|
451
|
+
- spec/models/paginatedrpm_rpm_repository_response_list_spec.rb
|
452
|
+
- spec/models/rpm_update_record_response_spec.rb
|
453
|
+
- spec/models/repository_version_response_spec.rb
|
454
|
+
- spec/models/skip_types_enum_spec.rb
|
455
|
+
- spec/models/prune_packages_spec.rb
|
456
|
+
- spec/models/compression_type_enum_spec.rb
|
457
|
+
- spec/models/patchedrpm_rpm_repository_spec.rb
|
453
458
|
- spec/models/set_label_spec.rb
|
454
|
-
- spec/models/object_roles_response_spec.rb
|
455
|
-
- spec/models/rpm_rpm_remote_response_hidden_fields_inner_spec.rb
|
456
459
|
- spec/models/rpm_rpm_repository_spec.rb
|
457
|
-
- spec/models/
|
458
|
-
- spec/models/rpm_package_response_spec.rb
|
459
|
-
- spec/models/paginatedrpm_package_response_list_spec.rb
|
460
|
-
- spec/models/policy_enum_spec.rb
|
461
|
-
- spec/models/rpm_rpm_alternate_content_source_spec.rb
|
462
|
-
- spec/models/rpm_modulemd_defaults_response_spec.rb
|
463
|
-
- spec/models/package_checksum_type_enum_spec.rb
|
464
|
-
- spec/models/paginated_repository_version_response_list_spec.rb
|
465
|
-
- spec/models/rpm_rpm_distribution_response_spec.rb
|
466
|
-
- spec/models/rpm_update_collection_response_spec.rb
|
460
|
+
- spec/models/my_permissions_response_spec.rb
|
467
461
|
- spec/models/rpm_repository_sync_url_spec.rb
|
468
|
-
- spec/models/paginatedrpm_rpm_distribution_response_list_spec.rb
|
469
|
-
- spec/models/paginatedrpm_rpm_remote_response_list_spec.rb
|
470
|
-
- spec/models/rpm_modulemd_spec.rb
|
471
|
-
- spec/models/compression_type_enum_spec.rb
|
472
|
-
- spec/models/rpm_update_collection_spec.rb
|
473
|
-
- spec/models/addon_response_spec.rb
|
474
|
-
- spec/models/rpm_modulemd_defaults_spec.rb
|
475
|
-
- spec/models/rpm_uln_remote_response_spec.rb
|
476
|
-
- spec/models/prune_packages_spec.rb
|
477
462
|
- spec/models/paginatedrpm_rpm_publication_response_list_spec.rb
|
478
|
-
- spec/models/paginatedrpm_rpm_repository_response_list_spec.rb
|
479
|
-
- spec/models/patchedrpm_rpm_alternate_content_source_spec.rb
|
480
463
|
- spec/models/rpm_rpm_repository_response_spec.rb
|
481
|
-
- spec/models/
|
482
|
-
- spec/models/unset_label_spec.rb
|
483
|
-
- spec/models/rpm_distribution_tree_response_spec.rb
|
484
|
-
- spec/models/paginatedrpm_modulemd_obsolete_response_list_spec.rb
|
485
|
-
- spec/models/repository_add_remove_content_spec.rb
|
486
|
-
- spec/models/paginatedrpm_package_environment_response_list_spec.rb
|
487
|
-
- spec/models/paginatedrpm_update_record_response_list_spec.rb
|
488
|
-
- spec/models/rpm_repo_metadata_file_response_spec.rb
|
489
|
-
- spec/models/rpm_package_group_response_spec.rb
|
490
|
-
- spec/models/rpm_rpm_distribution_spec.rb
|
491
|
-
- spec/models/image_response_spec.rb
|
492
|
-
- spec/models/unset_label_response_spec.rb
|
493
|
-
- spec/models/paginatedrpm_package_category_response_list_spec.rb
|
494
|
-
- spec/models/async_operation_response_spec.rb
|
464
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
495
465
|
- spec/models/sync_policy_enum_spec.rb
|
496
|
-
- spec/models/
|
466
|
+
- spec/models/repair_spec.rb
|
467
|
+
- spec/models/paginatedrpm_modulemd_response_list_spec.rb
|
497
468
|
- spec/models/rpm_package_langpacks_response_spec.rb
|
498
469
|
- spec/models/rpm_rpm_remote_spec.rb
|
499
|
-
- spec/models/
|
500
|
-
- spec/models/
|
501
|
-
- spec/models/
|
502
|
-
- spec/models/
|
503
|
-
- spec/models/
|
470
|
+
- spec/models/rpm_rpm_alternate_content_source_response_spec.rb
|
471
|
+
- spec/models/async_operation_response_spec.rb
|
472
|
+
- spec/models/image_response_spec.rb
|
473
|
+
- spec/models/repository_add_remove_content_spec.rb
|
474
|
+
- spec/models/variant_response_spec.rb
|
475
|
+
- spec/models/nested_role_spec.rb
|
476
|
+
- spec/models/rpm_uln_remote_response_spec.rb
|
477
|
+
- spec/models/layout_enum_spec.rb
|
478
|
+
- spec/models/rpm_package_environment_response_spec.rb
|
479
|
+
- spec/models/paginatedrpm_modulemd_obsolete_response_list_spec.rb
|
480
|
+
- spec/models/paginatedrpm_rpm_distribution_response_list_spec.rb
|
481
|
+
- spec/models/paginatedrpm_uln_remote_response_list_spec.rb
|
482
|
+
- spec/models/rpm_rpm_publication_response_spec.rb
|
483
|
+
- spec/models/paginatedrpm_package_category_response_list_spec.rb
|
484
|
+
- spec/models/task_group_operation_response_spec.rb
|
504
485
|
- spec/models/rpm_package_category_response_spec.rb
|
505
|
-
- spec/models/
|
506
|
-
- spec/models/
|
486
|
+
- spec/models/rpm_rpm_publication_spec.rb
|
487
|
+
- spec/models/rpm_rpm_remote_response_spec.rb
|
488
|
+
- spec/models/paginatedrpm_distribution_tree_response_list_spec.rb
|
507
489
|
- spec/models/paginatedrpm_rpm_alternate_content_source_response_list_spec.rb
|
508
|
-
- spec/models/
|
490
|
+
- spec/models/set_label_response_spec.rb
|
491
|
+
- spec/models/unset_label_spec.rb
|
492
|
+
- spec/models/policy_enum_spec.rb
|
493
|
+
- spec/models/rpm_uln_remote_spec.rb
|
494
|
+
- spec/models/paginatedrpm_package_langpacks_response_list_spec.rb
|
495
|
+
- spec/models/rpm_package_group_response_spec.rb
|
496
|
+
- spec/models/rpm_rpm_distribution_spec.rb
|
497
|
+
- spec/models/rpm_repo_metadata_file_response_spec.rb
|
498
|
+
- spec/models/paginatedrpm_modulemd_defaults_response_list_spec.rb
|
499
|
+
- spec/models/patchedrpm_rpm_distribution_spec.rb
|
500
|
+
- spec/models/rpm_package_response_spec.rb
|
501
|
+
- spec/models/paginatedrpm_package_response_list_spec.rb
|
502
|
+
- spec/models/rpm_update_collection_response_spec.rb
|
503
|
+
- spec/models/rpm_modulemd_defaults_response_spec.rb
|
509
504
|
- spec/models/paginatedrpm_package_group_response_list_spec.rb
|
510
|
-
- spec/models/
|
505
|
+
- spec/models/paginatedrpm_update_record_response_list_spec.rb
|
506
|
+
- spec/models/rpm_rpm_distribution_response_spec.rb
|
507
|
+
- spec/models/object_roles_response_spec.rb
|
508
|
+
- spec/models/paginatedrpm_package_environment_response_list_spec.rb
|
509
|
+
- spec/models/patchedrpm_rpm_alternate_content_source_spec.rb
|
510
|
+
- spec/models/nested_role_response_spec.rb
|
511
|
+
- spec/models/content_summary_response_spec.rb
|
512
|
+
- spec/models/addon_response_spec.rb
|
511
513
|
- spec/models/copy_spec.rb
|
512
|
-
- spec/models/
|
513
|
-
- spec/models/
|
514
|
-
- spec/models/
|
515
|
-
- spec/models/
|
514
|
+
- spec/models/paginatedrpm_rpm_remote_response_list_spec.rb
|
515
|
+
- spec/models/checksum_response_spec.rb
|
516
|
+
- spec/models/rpm_modulemd_spec.rb
|
517
|
+
- spec/models/artifact_response_spec.rb
|
518
|
+
- spec/models/patchedrpm_uln_remote_spec.rb
|
519
|
+
- spec/models/rpm_modulemd_response_spec.rb
|
520
|
+
- spec/models/rpm_rpm_remote_response_hidden_fields_inner_spec.rb
|
521
|
+
- spec/models/rpm_distribution_tree_response_spec.rb
|
522
|
+
- spec/models/rpm_update_collection_spec.rb
|
516
523
|
- spec/models/rpm_modulemd_obsolete_response_spec.rb
|
517
|
-
- spec/models/content_summary_response_spec.rb
|
518
|
-
- spec/models/layout_enum_spec.rb
|
519
|
-
- spec/models/patchedrpm_rpm_distribution_spec.rb
|
520
|
-
- spec/models/repository_version_response_spec.rb
|
521
|
-
- spec/models/paginatedrpm_modulemd_defaults_response_list_spec.rb
|
522
524
|
- spec/models/paginatedrpm_repo_metadata_file_response_list_spec.rb
|
523
|
-
- spec/models/
|
524
|
-
- spec/models/nested_role_spec.rb
|
525
|
-
- spec/models/rpm_rpm_publication_response_spec.rb
|
525
|
+
- spec/models/rpm_rpm_alternate_content_source_spec.rb
|
526
526
|
- spec/spec_helper.rb
|