pulp_deb_client 3.7.0 → 3.7.1
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/DistributionsAptApi.md +10 -10
- data/docs/RemotesAptApi.md +10 -10
- data/docs/RepositoriesAptApi.md +10 -10
- data/lib/pulp_deb_client/api/distributions_apt_api.rb +10 -10
- data/lib/pulp_deb_client/api/remotes_apt_api.rb +10 -10
- data/lib/pulp_deb_client/api/repositories_apt_api.rb +10 -10
- data/lib/pulp_deb_client/version.rb +1 -1
- data/spec/api/distributions_apt_api_spec.rb +4 -4
- data/spec/api/remotes_apt_api_spec.rb +4 -4
- data/spec/api/repositories_apt_api_spec.rb +4 -4
- metadata +73 -73
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8ae039995e193052321a42d44ec9f4fa7ee7ca4a637a8a73c0ede5040e4b0d56
|
|
4
|
+
data.tar.gz: 1d5b6de6d36345276a447811fb2916e5e6838845fc5224fc8c8f77920d100590
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 81b13b65ea62c6b641168403f991068a7e1ba49d9dd3d8288143bc59372472e7da83a0948b081eadf1bc70344932a2122f589b9a82d9522a3aca4981690db6cd
|
|
7
|
+
data.tar.gz: 4ab5aed15abff9f0527224d4e263ef5eacc341977f0084b4079dbbc124a290d0d3c623a326130cf0bd7cf85236ff75db1fafe2ff01372d4f4abf6a052e20a12a
|
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.7.
|
|
10
|
+
- Package version: 3.7.1
|
|
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_deb_client.gemspec
|
|
|
25
25
|
Then either install the gem locally:
|
|
26
26
|
|
|
27
27
|
```shell
|
|
28
|
-
gem install ./pulp_deb_client-3.7.
|
|
28
|
+
gem install ./pulp_deb_client-3.7.1.gem
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
-
(for development, run `gem install --dev ./pulp_deb_client-3.7.
|
|
31
|
+
(for development, run `gem install --dev ./pulp_deb_client-3.7.1.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_deb_client', '~> 3.7.
|
|
37
|
+
gem 'pulp_deb_client', '~> 3.7.1'
|
|
38
38
|
|
|
39
39
|
### Install from Git
|
|
40
40
|
|
data/docs/DistributionsAptApi.md
CHANGED
|
@@ -526,11 +526,11 @@ end
|
|
|
526
526
|
|
|
527
527
|
## partial_update
|
|
528
528
|
|
|
529
|
-
> <
|
|
529
|
+
> <DebAptDistributionResponse> partial_update(deb_apt_distribution_href, patcheddeb_apt_distribution, opts)
|
|
530
530
|
|
|
531
531
|
Update an apt 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(<DebAptDistributionResponse>, Integer, Hash)> partial_update_with_http_info(deb_apt_distribution_href, patcheddeb_apt_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(deb_apt_distribution_href, patcheddeb_apt_distribution, opts)
|
|
573
573
|
p status_code # => 2xx
|
|
574
574
|
p headers # => { ... }
|
|
575
|
-
p data # => <
|
|
575
|
+
p data # => <DebAptDistributionResponse>
|
|
576
576
|
rescue PulpDebClient::ApiError => e
|
|
577
577
|
puts "Error when calling DistributionsAptApi->partial_update_with_http_info: #{e}"
|
|
578
578
|
end
|
|
@@ -588,7 +588,7 @@ end
|
|
|
588
588
|
|
|
589
589
|
### Return type
|
|
590
590
|
|
|
591
|
-
[**
|
|
591
|
+
[**DebAptDistributionResponse**](DebAptDistributionResponse.md)
|
|
592
592
|
|
|
593
593
|
### Authorization
|
|
594
594
|
|
|
@@ -908,11 +908,11 @@ end
|
|
|
908
908
|
|
|
909
909
|
## update
|
|
910
910
|
|
|
911
|
-
> <
|
|
911
|
+
> <DebAptDistributionResponse> update(deb_apt_distribution_href, deb_apt_distribution, opts)
|
|
912
912
|
|
|
913
913
|
Update an apt 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(<DebAptDistributionResponse>, Integer, Hash)> update_with_http_info(deb_apt_distribution_href, deb_apt_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(deb_apt_distribution_href, deb_apt_distribution, opts)
|
|
955
955
|
p status_code # => 2xx
|
|
956
956
|
p headers # => { ... }
|
|
957
|
-
p data # => <
|
|
957
|
+
p data # => <DebAptDistributionResponse>
|
|
958
958
|
rescue PulpDebClient::ApiError => e
|
|
959
959
|
puts "Error when calling DistributionsAptApi->update_with_http_info: #{e}"
|
|
960
960
|
end
|
|
@@ -970,7 +970,7 @@ end
|
|
|
970
970
|
|
|
971
971
|
### Return type
|
|
972
972
|
|
|
973
|
-
[**
|
|
973
|
+
[**DebAptDistributionResponse**](DebAptDistributionResponse.md)
|
|
974
974
|
|
|
975
975
|
### Authorization
|
|
976
976
|
|
data/docs/RemotesAptApi.md
CHANGED
|
@@ -524,11 +524,11 @@ end
|
|
|
524
524
|
|
|
525
525
|
## partial_update
|
|
526
526
|
|
|
527
|
-
> <
|
|
527
|
+
> <DebAptRemoteResponse> partial_update(deb_apt_remote_href, patcheddeb_apt_remote, opts)
|
|
528
528
|
|
|
529
529
|
Update an apt 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(<DebAptRemoteResponse>, Integer, Hash)> partial_update_with_http_info(deb_apt_remote_href, patcheddeb_apt_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(deb_apt_remote_href, patcheddeb_apt_remote, opts)
|
|
571
571
|
p status_code # => 2xx
|
|
572
572
|
p headers # => { ... }
|
|
573
|
-
p data # => <
|
|
573
|
+
p data # => <DebAptRemoteResponse>
|
|
574
574
|
rescue PulpDebClient::ApiError => e
|
|
575
575
|
puts "Error when calling RemotesAptApi->partial_update_with_http_info: #{e}"
|
|
576
576
|
end
|
|
@@ -586,7 +586,7 @@ end
|
|
|
586
586
|
|
|
587
587
|
### Return type
|
|
588
588
|
|
|
589
|
-
[**
|
|
589
|
+
[**DebAptRemoteResponse**](DebAptRemoteResponse.md)
|
|
590
590
|
|
|
591
591
|
### Authorization
|
|
592
592
|
|
|
@@ -906,11 +906,11 @@ end
|
|
|
906
906
|
|
|
907
907
|
## update
|
|
908
908
|
|
|
909
|
-
> <
|
|
909
|
+
> <DebAptRemoteResponse> update(deb_apt_remote_href, deb_apt_remote, opts)
|
|
910
910
|
|
|
911
911
|
Update an apt 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(<DebAptRemoteResponse>, Integer, Hash)> update_with_http_info(deb_apt_remote_href, deb_apt_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(deb_apt_remote_href, deb_apt_remote, opts)
|
|
953
953
|
p status_code # => 2xx
|
|
954
954
|
p headers # => { ... }
|
|
955
|
-
p data # => <
|
|
955
|
+
p data # => <DebAptRemoteResponse>
|
|
956
956
|
rescue PulpDebClient::ApiError => e
|
|
957
957
|
puts "Error when calling RemotesAptApi->update_with_http_info: #{e}"
|
|
958
958
|
end
|
|
@@ -968,7 +968,7 @@ end
|
|
|
968
968
|
|
|
969
969
|
### Return type
|
|
970
970
|
|
|
971
|
-
[**
|
|
971
|
+
[**DebAptRemoteResponse**](DebAptRemoteResponse.md)
|
|
972
972
|
|
|
973
973
|
### Authorization
|
|
974
974
|
|
data/docs/RepositoriesAptApi.md
CHANGED
|
@@ -610,11 +610,11 @@ end
|
|
|
610
610
|
|
|
611
611
|
## partial_update
|
|
612
612
|
|
|
613
|
-
> <
|
|
613
|
+
> <DebAptRepositoryResponse> partial_update(deb_apt_repository_href, patcheddeb_apt_repository, opts)
|
|
614
614
|
|
|
615
615
|
Update an apt 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(<DebAptRepositoryResponse>, Integer, Hash)> partial_update_with_http_info(deb_apt_repository_href, patcheddeb_apt_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(deb_apt_repository_href, patcheddeb_apt_repository, opts)
|
|
657
657
|
p status_code # => 2xx
|
|
658
658
|
p headers # => { ... }
|
|
659
|
-
p data # => <
|
|
659
|
+
p data # => <DebAptRepositoryResponse>
|
|
660
660
|
rescue PulpDebClient::ApiError => e
|
|
661
661
|
puts "Error when calling RepositoriesAptApi->partial_update_with_http_info: #{e}"
|
|
662
662
|
end
|
|
@@ -672,7 +672,7 @@ end
|
|
|
672
672
|
|
|
673
673
|
### Return type
|
|
674
674
|
|
|
675
|
-
[**
|
|
675
|
+
[**DebAptRepositoryResponse**](DebAptRepositoryResponse.md)
|
|
676
676
|
|
|
677
677
|
### Authorization
|
|
678
678
|
|
|
@@ -1068,11 +1068,11 @@ end
|
|
|
1068
1068
|
|
|
1069
1069
|
## update
|
|
1070
1070
|
|
|
1071
|
-
> <
|
|
1071
|
+
> <DebAptRepositoryResponse> update(deb_apt_repository_href, deb_apt_repository, opts)
|
|
1072
1072
|
|
|
1073
1073
|
Update an apt 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(<DebAptRepositoryResponse>, Integer, Hash)> update_with_http_info(deb_apt_repository_href, deb_apt_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(deb_apt_repository_href, deb_apt_repository, opts)
|
|
1115
1115
|
p status_code # => 2xx
|
|
1116
1116
|
p headers # => { ... }
|
|
1117
|
-
p data # => <
|
|
1117
|
+
p data # => <DebAptRepositoryResponse>
|
|
1118
1118
|
rescue PulpDebClient::ApiError => e
|
|
1119
1119
|
puts "Error when calling RepositoriesAptApi->update_with_http_info: #{e}"
|
|
1120
1120
|
end
|
|
@@ -1130,7 +1130,7 @@ end
|
|
|
1130
1130
|
|
|
1131
1131
|
### Return type
|
|
1132
1132
|
|
|
1133
|
-
[**
|
|
1133
|
+
[**DebAptRepositoryResponse**](DebAptRepositoryResponse.md)
|
|
1134
1134
|
|
|
1135
1135
|
### Authorization
|
|
1136
1136
|
|
|
@@ -523,24 +523,24 @@ module PulpDebClient
|
|
|
523
523
|
end
|
|
524
524
|
|
|
525
525
|
# Update an apt distribution
|
|
526
|
-
#
|
|
526
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
|
527
527
|
# @param deb_apt_distribution_href [String]
|
|
528
528
|
# @param patcheddeb_apt_distribution [PatcheddebAptDistribution]
|
|
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 [DebAptDistributionResponse]
|
|
532
532
|
def partial_update(deb_apt_distribution_href, patcheddeb_apt_distribution, opts = {})
|
|
533
533
|
data, _status_code, _headers = partial_update_with_http_info(deb_apt_distribution_href, patcheddeb_apt_distribution, opts)
|
|
534
534
|
data
|
|
535
535
|
end
|
|
536
536
|
|
|
537
537
|
# Update an apt distribution
|
|
538
|
-
#
|
|
538
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
|
539
539
|
# @param deb_apt_distribution_href [String]
|
|
540
540
|
# @param patcheddeb_apt_distribution [PatcheddebAptDistribution]
|
|
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<(DebAptDistributionResponse, Integer, Hash)>] DebAptDistributionResponse data, response status code and response headers
|
|
544
544
|
def partial_update_with_http_info(deb_apt_distribution_href, patcheddeb_apt_distribution, opts = {})
|
|
545
545
|
if @api_client.config.debugging
|
|
546
546
|
@api_client.config.logger.debug 'Calling API: DistributionsAptApi.partial_update ...'
|
|
@@ -577,7 +577,7 @@ module PulpDebClient
|
|
|
577
577
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(patcheddeb_apt_distribution)
|
|
578
578
|
|
|
579
579
|
# return_type
|
|
580
|
-
return_type = opts[:debug_return_type] || '
|
|
580
|
+
return_type = opts[:debug_return_type] || 'DebAptDistributionResponse'
|
|
581
581
|
|
|
582
582
|
# auth_names
|
|
583
583
|
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
|
@@ -903,24 +903,24 @@ module PulpDebClient
|
|
|
903
903
|
end
|
|
904
904
|
|
|
905
905
|
# Update an apt distribution
|
|
906
|
-
#
|
|
906
|
+
# Update the entity and trigger an asynchronous task if necessary
|
|
907
907
|
# @param deb_apt_distribution_href [String]
|
|
908
908
|
# @param deb_apt_distribution [DebAptDistribution]
|
|
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 [DebAptDistributionResponse]
|
|
912
912
|
def update(deb_apt_distribution_href, deb_apt_distribution, opts = {})
|
|
913
913
|
data, _status_code, _headers = update_with_http_info(deb_apt_distribution_href, deb_apt_distribution, opts)
|
|
914
914
|
data
|
|
915
915
|
end
|
|
916
916
|
|
|
917
917
|
# Update an apt distribution
|
|
918
|
-
#
|
|
918
|
+
# Update the entity and trigger an asynchronous task if necessary
|
|
919
919
|
# @param deb_apt_distribution_href [String]
|
|
920
920
|
# @param deb_apt_distribution [DebAptDistribution]
|
|
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<(DebAptDistributionResponse, Integer, Hash)>] DebAptDistributionResponse data, response status code and response headers
|
|
924
924
|
def update_with_http_info(deb_apt_distribution_href, deb_apt_distribution, opts = {})
|
|
925
925
|
if @api_client.config.debugging
|
|
926
926
|
@api_client.config.logger.debug 'Calling API: DistributionsAptApi.update ...'
|
|
@@ -957,7 +957,7 @@ module PulpDebClient
|
|
|
957
957
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(deb_apt_distribution)
|
|
958
958
|
|
|
959
959
|
# return_type
|
|
960
|
-
return_type = opts[:debug_return_type] || '
|
|
960
|
+
return_type = opts[:debug_return_type] || 'DebAptDistributionResponse'
|
|
961
961
|
|
|
962
962
|
# auth_names
|
|
963
963
|
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
|
@@ -520,24 +520,24 @@ module PulpDebClient
|
|
|
520
520
|
end
|
|
521
521
|
|
|
522
522
|
# Update an apt remote
|
|
523
|
-
#
|
|
523
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
|
524
524
|
# @param deb_apt_remote_href [String]
|
|
525
525
|
# @param patcheddeb_apt_remote [PatcheddebAptRemote]
|
|
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 [DebAptRemoteResponse]
|
|
529
529
|
def partial_update(deb_apt_remote_href, patcheddeb_apt_remote, opts = {})
|
|
530
530
|
data, _status_code, _headers = partial_update_with_http_info(deb_apt_remote_href, patcheddeb_apt_remote, opts)
|
|
531
531
|
data
|
|
532
532
|
end
|
|
533
533
|
|
|
534
534
|
# Update an apt remote
|
|
535
|
-
#
|
|
535
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
|
536
536
|
# @param deb_apt_remote_href [String]
|
|
537
537
|
# @param patcheddeb_apt_remote [PatcheddebAptRemote]
|
|
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<(DebAptRemoteResponse, Integer, Hash)>] DebAptRemoteResponse data, response status code and response headers
|
|
541
541
|
def partial_update_with_http_info(deb_apt_remote_href, patcheddeb_apt_remote, opts = {})
|
|
542
542
|
if @api_client.config.debugging
|
|
543
543
|
@api_client.config.logger.debug 'Calling API: RemotesAptApi.partial_update ...'
|
|
@@ -574,7 +574,7 @@ module PulpDebClient
|
|
|
574
574
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(patcheddeb_apt_remote)
|
|
575
575
|
|
|
576
576
|
# return_type
|
|
577
|
-
return_type = opts[:debug_return_type] || '
|
|
577
|
+
return_type = opts[:debug_return_type] || 'DebAptRemoteResponse'
|
|
578
578
|
|
|
579
579
|
# auth_names
|
|
580
580
|
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
|
@@ -900,24 +900,24 @@ module PulpDebClient
|
|
|
900
900
|
end
|
|
901
901
|
|
|
902
902
|
# Update an apt remote
|
|
903
|
-
#
|
|
903
|
+
# Update the entity and trigger an asynchronous task if necessary
|
|
904
904
|
# @param deb_apt_remote_href [String]
|
|
905
905
|
# @param deb_apt_remote [DebAptRemote]
|
|
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 [DebAptRemoteResponse]
|
|
909
909
|
def update(deb_apt_remote_href, deb_apt_remote, opts = {})
|
|
910
910
|
data, _status_code, _headers = update_with_http_info(deb_apt_remote_href, deb_apt_remote, opts)
|
|
911
911
|
data
|
|
912
912
|
end
|
|
913
913
|
|
|
914
914
|
# Update an apt remote
|
|
915
|
-
#
|
|
915
|
+
# Update the entity and trigger an asynchronous task if necessary
|
|
916
916
|
# @param deb_apt_remote_href [String]
|
|
917
917
|
# @param deb_apt_remote [DebAptRemote]
|
|
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<(DebAptRemoteResponse, Integer, Hash)>] DebAptRemoteResponse data, response status code and response headers
|
|
921
921
|
def update_with_http_info(deb_apt_remote_href, deb_apt_remote, opts = {})
|
|
922
922
|
if @api_client.config.debugging
|
|
923
923
|
@api_client.config.logger.debug 'Calling API: RemotesAptApi.update ...'
|
|
@@ -954,7 +954,7 @@ module PulpDebClient
|
|
|
954
954
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(deb_apt_remote)
|
|
955
955
|
|
|
956
956
|
# return_type
|
|
957
|
-
return_type = opts[:debug_return_type] || '
|
|
957
|
+
return_type = opts[:debug_return_type] || 'DebAptRemoteResponse'
|
|
958
958
|
|
|
959
959
|
# auth_names
|
|
960
960
|
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
|
@@ -609,24 +609,24 @@ module PulpDebClient
|
|
|
609
609
|
end
|
|
610
610
|
|
|
611
611
|
# Update an apt repository
|
|
612
|
-
#
|
|
612
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
|
613
613
|
# @param deb_apt_repository_href [String]
|
|
614
614
|
# @param patcheddeb_apt_repository [PatcheddebAptRepository]
|
|
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 [DebAptRepositoryResponse]
|
|
618
618
|
def partial_update(deb_apt_repository_href, patcheddeb_apt_repository, opts = {})
|
|
619
619
|
data, _status_code, _headers = partial_update_with_http_info(deb_apt_repository_href, patcheddeb_apt_repository, opts)
|
|
620
620
|
data
|
|
621
621
|
end
|
|
622
622
|
|
|
623
623
|
# Update an apt repository
|
|
624
|
-
#
|
|
624
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
|
625
625
|
# @param deb_apt_repository_href [String]
|
|
626
626
|
# @param patcheddeb_apt_repository [PatcheddebAptRepository]
|
|
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<(DebAptRepositoryResponse, Integer, Hash)>] DebAptRepositoryResponse data, response status code and response headers
|
|
630
630
|
def partial_update_with_http_info(deb_apt_repository_href, patcheddeb_apt_repository, opts = {})
|
|
631
631
|
if @api_client.config.debugging
|
|
632
632
|
@api_client.config.logger.debug 'Calling API: RepositoriesAptApi.partial_update ...'
|
|
@@ -663,7 +663,7 @@ module PulpDebClient
|
|
|
663
663
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(patcheddeb_apt_repository)
|
|
664
664
|
|
|
665
665
|
# return_type
|
|
666
|
-
return_type = opts[:debug_return_type] || '
|
|
666
|
+
return_type = opts[:debug_return_type] || 'DebAptRepositoryResponse'
|
|
667
667
|
|
|
668
668
|
# auth_names
|
|
669
669
|
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
|
@@ -1066,24 +1066,24 @@ module PulpDebClient
|
|
|
1066
1066
|
end
|
|
1067
1067
|
|
|
1068
1068
|
# Update an apt repository
|
|
1069
|
-
#
|
|
1069
|
+
# Update the entity and trigger an asynchronous task if necessary
|
|
1070
1070
|
# @param deb_apt_repository_href [String]
|
|
1071
1071
|
# @param deb_apt_repository [DebAptRepository]
|
|
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 [DebAptRepositoryResponse]
|
|
1075
1075
|
def update(deb_apt_repository_href, deb_apt_repository, opts = {})
|
|
1076
1076
|
data, _status_code, _headers = update_with_http_info(deb_apt_repository_href, deb_apt_repository, opts)
|
|
1077
1077
|
data
|
|
1078
1078
|
end
|
|
1079
1079
|
|
|
1080
1080
|
# Update an apt repository
|
|
1081
|
-
#
|
|
1081
|
+
# Update the entity and trigger an asynchronous task if necessary
|
|
1082
1082
|
# @param deb_apt_repository_href [String]
|
|
1083
1083
|
# @param deb_apt_repository [DebAptRepository]
|
|
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<(DebAptRepositoryResponse, Integer, Hash)>] DebAptRepositoryResponse data, response status code and response headers
|
|
1087
1087
|
def update_with_http_info(deb_apt_repository_href, deb_apt_repository, opts = {})
|
|
1088
1088
|
if @api_client.config.debugging
|
|
1089
1089
|
@api_client.config.logger.debug 'Calling API: RepositoriesAptApi.update ...'
|
|
@@ -1120,7 +1120,7 @@ module PulpDebClient
|
|
|
1120
1120
|
post_body = opts[:debug_body] || @api_client.object_to_http_body(deb_apt_repository)
|
|
1121
1121
|
|
|
1122
1122
|
# return_type
|
|
1123
|
-
return_type = opts[:debug_return_type] || '
|
|
1123
|
+
return_type = opts[:debug_return_type] || 'DebAptRepositoryResponse'
|
|
1124
1124
|
|
|
1125
1125
|
# auth_names
|
|
1126
1126
|
auth_names = opts[:debug_auth_names] || ['basicAuth']
|
|
@@ -143,12 +143,12 @@ describe 'DistributionsAptApi' do
|
|
|
143
143
|
|
|
144
144
|
# unit tests for partial_update
|
|
145
145
|
# Update an apt distribution
|
|
146
|
-
#
|
|
146
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
|
147
147
|
# @param deb_apt_distribution_href
|
|
148
148
|
# @param patcheddeb_apt_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 [DebAptDistributionResponse]
|
|
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 'DistributionsAptApi' do
|
|
|
214
214
|
|
|
215
215
|
# unit tests for update
|
|
216
216
|
# Update an apt distribution
|
|
217
|
-
#
|
|
217
|
+
# Update the entity and trigger an asynchronous task if necessary
|
|
218
218
|
# @param deb_apt_distribution_href
|
|
219
219
|
# @param deb_apt_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 [DebAptDistributionResponse]
|
|
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 'RemotesAptApi' do
|
|
|
142
142
|
|
|
143
143
|
# unit tests for partial_update
|
|
144
144
|
# Update an apt remote
|
|
145
|
-
#
|
|
145
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
|
146
146
|
# @param deb_apt_remote_href
|
|
147
147
|
# @param patcheddeb_apt_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 [DebAptRemoteResponse]
|
|
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 'RemotesAptApi' do
|
|
|
213
213
|
|
|
214
214
|
# unit tests for update
|
|
215
215
|
# Update an apt remote
|
|
216
|
-
#
|
|
216
|
+
# Update the entity and trigger an asynchronous task if necessary
|
|
217
217
|
# @param deb_apt_remote_href
|
|
218
218
|
# @param deb_apt_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 [DebAptRemoteResponse]
|
|
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 'RepositoriesAptApi' do
|
|
|
160
160
|
|
|
161
161
|
# unit tests for partial_update
|
|
162
162
|
# Update an apt repository
|
|
163
|
-
#
|
|
163
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
|
164
164
|
# @param deb_apt_repository_href
|
|
165
165
|
# @param patcheddeb_apt_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 [DebAptRepositoryResponse]
|
|
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 'RepositoriesAptApi' do
|
|
|
245
245
|
|
|
246
246
|
# unit tests for update
|
|
247
247
|
# Update an apt repository
|
|
248
|
-
#
|
|
248
|
+
# Update the entity and trigger an asynchronous task if necessary
|
|
249
249
|
# @param deb_apt_repository_href
|
|
250
250
|
# @param deb_apt_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 [DebAptRepositoryResponse]
|
|
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_deb_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.7.
|
|
4
|
+
version: 3.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-02-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -395,96 +395,96 @@ signing_key:
|
|
|
395
395
|
specification_version: 4
|
|
396
396
|
summary: Pulp 3 API Ruby Gem
|
|
397
397
|
test_files:
|
|
398
|
-
- spec/api/publications_verbatim_api_spec.rb
|
|
399
|
-
- spec/api/content_package_release_components_api_spec.rb
|
|
400
398
|
- spec/api/content_installer_file_indices_api_spec.rb
|
|
401
|
-
- spec/api/
|
|
402
|
-
- spec/api/content_package_indices_api_spec.rb
|
|
399
|
+
- spec/api/content_packages_api_spec.rb
|
|
403
400
|
- spec/api/content_source_release_components_api_spec.rb
|
|
404
|
-
- spec/api/content_release_components_api_spec.rb
|
|
405
|
-
- spec/api/content_release_files_api_spec.rb
|
|
406
401
|
- spec/api/content_generic_contents_api_spec.rb
|
|
407
|
-
- spec/api/deb_copy_api_spec.rb
|
|
408
|
-
- spec/api/content_packages_api_spec.rb
|
|
409
|
-
- spec/api/repositories_apt_api_spec.rb
|
|
410
|
-
- spec/api/publications_apt_api_spec.rb
|
|
411
402
|
- spec/api/content_installer_packages_api_spec.rb
|
|
412
|
-
- spec/api/
|
|
403
|
+
- spec/api/deb_copy_api_spec.rb
|
|
404
|
+
- spec/api/content_release_files_api_spec.rb
|
|
405
|
+
- spec/api/remotes_apt_api_spec.rb
|
|
406
|
+
- spec/api/content_release_components_api_spec.rb
|
|
407
|
+
- spec/api/publications_verbatim_api_spec.rb
|
|
408
|
+
- spec/api/content_source_packages_api_spec.rb
|
|
413
409
|
- spec/api/repositories_apt_versions_api_spec.rb
|
|
410
|
+
- spec/api/repositories_apt_api_spec.rb
|
|
414
411
|
- spec/api/content_releases_api_spec.rb
|
|
412
|
+
- spec/api/publications_apt_api_spec.rb
|
|
413
|
+
- spec/api/content_package_release_components_api_spec.rb
|
|
415
414
|
- spec/api/content_release_architectures_api_spec.rb
|
|
415
|
+
- spec/api/content_package_indices_api_spec.rb
|
|
416
416
|
- spec/api/content_source_indices_api_spec.rb
|
|
417
|
-
- spec/api/
|
|
418
|
-
- spec/models/
|
|
419
|
-
- spec/models/
|
|
420
|
-
- spec/models/
|
|
421
|
-
- spec/models/
|
|
422
|
-
- spec/models/deb_apt_repository_spec.rb
|
|
423
|
-
- spec/models/repository_version_response_spec.rb
|
|
424
|
-
- spec/models/deb_release_component_response_spec.rb
|
|
425
|
-
- spec/models/copy_spec.rb
|
|
426
|
-
- spec/models/deb_apt_repository_response_spec.rb
|
|
427
|
-
- spec/models/deb_source_package_release_component_response_spec.rb
|
|
428
|
-
- spec/models/paginateddeb_source_index_response_list_spec.rb
|
|
429
|
-
- spec/models/deb_source_package_spec.rb
|
|
430
|
-
- spec/models/async_operation_response_spec.rb
|
|
431
|
-
- spec/models/deb_apt_distribution_response_spec.rb
|
|
432
|
-
- spec/models/deb_source_package_release_component_spec.rb
|
|
433
|
-
- spec/models/paginateddeb_release_response_list_spec.rb
|
|
417
|
+
- spec/api/distributions_apt_api_spec.rb
|
|
418
|
+
- spec/models/deb_generic_content_response_spec.rb
|
|
419
|
+
- spec/models/nested_role_spec.rb
|
|
420
|
+
- spec/models/deb_installer_file_index_response_spec.rb
|
|
421
|
+
- spec/models/deb_apt_remote_spec.rb
|
|
434
422
|
- spec/models/set_label_spec.rb
|
|
435
|
-
- spec/models/
|
|
436
|
-
- spec/models/
|
|
437
|
-
- spec/models/deb_package_index_spec.rb
|
|
438
|
-
- spec/models/paginateddeb_apt_repository_response_list_spec.rb
|
|
439
|
-
- spec/models/deb_apt_publication_spec.rb
|
|
440
|
-
- spec/models/paginateddeb_installer_package_response_list_spec.rb
|
|
423
|
+
- spec/models/deb_apt_remote_response_hidden_fields_inner_spec.rb
|
|
424
|
+
- spec/models/deb_apt_distribution_spec.rb
|
|
441
425
|
- spec/models/paginateddeb_package_index_response_list_spec.rb
|
|
442
|
-
- spec/models/
|
|
426
|
+
- spec/models/paginateddeb_installer_file_index_response_list_spec.rb
|
|
427
|
+
- spec/models/paginateddeb_apt_repository_response_list_spec.rb
|
|
428
|
+
- spec/models/paginateddeb_release_component_response_list_spec.rb
|
|
429
|
+
- spec/models/paginateddeb_source_index_response_list_spec.rb
|
|
430
|
+
- spec/models/deb_release_component_response_spec.rb
|
|
431
|
+
- spec/models/paginateddeb_package_release_component_response_list_spec.rb
|
|
443
432
|
- spec/models/my_permissions_response_spec.rb
|
|
433
|
+
- spec/models/deb_apt_publication_response_spec.rb
|
|
434
|
+
- spec/models/paginateddeb_release_response_list_spec.rb
|
|
435
|
+
- spec/models/deb_package_response_spec.rb
|
|
444
436
|
- spec/models/paginateddeb_generic_content_response_list_spec.rb
|
|
445
|
-
- spec/models/
|
|
437
|
+
- spec/models/paginateddeb_source_package_release_component_response_list_spec.rb
|
|
446
438
|
- spec/models/unset_label_response_spec.rb
|
|
447
|
-
- spec/models/
|
|
448
|
-
- spec/models/
|
|
449
|
-
- spec/models/
|
|
450
|
-
- spec/models/paginateddeb_release_component_response_list_spec.rb
|
|
439
|
+
- spec/models/deb_installer_file_index_spec.rb
|
|
440
|
+
- spec/models/deb_release_file_response_spec.rb
|
|
441
|
+
- spec/models/deb_installer_package_response_spec.rb
|
|
451
442
|
- spec/models/apt_repository_sync_url_spec.rb
|
|
452
|
-
- spec/models/
|
|
453
|
-
- spec/models/
|
|
443
|
+
- spec/models/deb_verbatim_publication_response_spec.rb
|
|
444
|
+
- spec/models/patcheddeb_apt_repository_spec.rb
|
|
454
445
|
- spec/models/content_summary_response_spec.rb
|
|
455
|
-
- spec/models/
|
|
456
|
-
- spec/models/
|
|
457
|
-
- spec/models/
|
|
458
|
-
- spec/models/
|
|
459
|
-
- spec/models/
|
|
460
|
-
- spec/models/
|
|
461
|
-
- spec/models/
|
|
462
|
-
- spec/models/
|
|
463
|
-
- spec/models/
|
|
446
|
+
- spec/models/repository_version_response_spec.rb
|
|
447
|
+
- spec/models/deb_source_package_release_component_response_spec.rb
|
|
448
|
+
- spec/models/deb_source_package_release_component_spec.rb
|
|
449
|
+
- spec/models/paginateddeb_installer_package_response_list_spec.rb
|
|
450
|
+
- spec/models/deb_source_package_spec.rb
|
|
451
|
+
- spec/models/deb_package_release_component_spec.rb
|
|
452
|
+
- spec/models/repair_spec.rb
|
|
453
|
+
- spec/models/paginateddeb_package_response_list_spec.rb
|
|
454
|
+
- spec/models/deb_apt_repository_spec.rb
|
|
455
|
+
- spec/models/paginateddeb_release_file_response_list_spec.rb
|
|
456
|
+
- spec/models/deb_apt_distribution_response_spec.rb
|
|
457
|
+
- spec/models/deb_release_file_spec.rb
|
|
458
|
+
- spec/models/deb_package_index_response_spec.rb
|
|
459
|
+
- spec/models/deb_release_spec.rb
|
|
460
|
+
- spec/models/deb_apt_repository_response_spec.rb
|
|
461
|
+
- spec/models/unset_label_spec.rb
|
|
462
|
+
- spec/models/set_label_response_spec.rb
|
|
464
463
|
- spec/models/paginateddeb_apt_remote_response_list_spec.rb
|
|
464
|
+
- spec/models/deb_source_package_response_spec.rb
|
|
465
|
+
- spec/models/patcheddeb_apt_remote_spec.rb
|
|
466
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
|
467
|
+
- spec/models/paginateddeb_source_package_response_list_spec.rb
|
|
468
|
+
- spec/models/deb_package_index_spec.rb
|
|
469
|
+
- spec/models/deb_source_index_spec.rb
|
|
470
|
+
- spec/models/deb_release_response_spec.rb
|
|
471
|
+
- spec/models/deb_verbatim_publication_spec.rb
|
|
472
|
+
- spec/models/paginateddeb_apt_distribution_response_list_spec.rb
|
|
473
|
+
- spec/models/object_roles_response_spec.rb
|
|
465
474
|
- spec/models/nested_role_response_spec.rb
|
|
466
|
-
- spec/models/deb_package_release_component_response_spec.rb
|
|
467
|
-
- spec/models/deb_release_file_spec.rb
|
|
468
475
|
- spec/models/paginateddeb_release_architecture_response_list_spec.rb
|
|
476
|
+
- spec/models/deb_source_index_response_spec.rb
|
|
477
|
+
- spec/models/paginateddeb_apt_publication_response_list_spec.rb
|
|
478
|
+
- spec/models/deb_apt_publication_spec.rb
|
|
479
|
+
- spec/models/deb_package_release_component_response_spec.rb
|
|
480
|
+
- spec/models/policy_enum_spec.rb
|
|
469
481
|
- spec/models/deb_release_architecture_response_spec.rb
|
|
470
|
-
- spec/models/paginateddeb_release_file_response_list_spec.rb
|
|
471
|
-
- spec/models/deb_installer_package_response_spec.rb
|
|
472
|
-
- spec/models/deb_source_index_spec.rb
|
|
473
482
|
- spec/models/patcheddeb_apt_distribution_spec.rb
|
|
474
|
-
- spec/models/
|
|
475
|
-
- spec/models/
|
|
476
|
-
- spec/models/
|
|
477
|
-
- spec/models/repair_spec.rb
|
|
478
|
-
- spec/models/paginateddeb_apt_publication_response_list_spec.rb
|
|
479
|
-
- spec/models/paginateddeb_apt_distribution_response_list_spec.rb
|
|
480
|
-
- spec/models/deb_source_package_response_spec.rb
|
|
481
|
-
- spec/models/unset_label_spec.rb
|
|
482
|
-
- spec/models/deb_installer_file_index_spec.rb
|
|
483
|
-
- spec/models/paginateddeb_verbatim_publication_response_list_spec.rb
|
|
484
|
-
- spec/models/paginateddeb_source_package_release_component_response_list_spec.rb
|
|
485
|
-
- spec/models/deb_package_release_component_spec.rb
|
|
486
|
-
- spec/models/deb_installer_file_index_response_spec.rb
|
|
487
|
-
- spec/models/deb_package_index_response_spec.rb
|
|
488
|
-
- spec/models/deb_apt_remote_spec.rb
|
|
483
|
+
- spec/models/deb_apt_remote_response_spec.rb
|
|
484
|
+
- spec/models/deb_release_architecture_spec.rb
|
|
485
|
+
- spec/models/repository_add_remove_content_spec.rb
|
|
489
486
|
- spec/models/deb_release_component_spec.rb
|
|
487
|
+
- spec/models/copy_spec.rb
|
|
488
|
+
- spec/models/async_operation_response_spec.rb
|
|
489
|
+
- spec/models/paginateddeb_verbatim_publication_response_list_spec.rb
|
|
490
490
|
- spec/spec_helper.rb
|