pulp_deb_client 2.9.1 → 2.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/ContentGenericContentsApi.md +10 -10
- data/docs/ContentInstallerFileIndicesApi.md +14 -14
- data/docs/ContentInstallerPackagesApi.md +40 -40
- data/docs/ContentPackageIndicesApi.md +14 -14
- data/docs/ContentPackageReleaseComponentsApi.md +10 -10
- data/docs/ContentPackagesApi.md +42 -42
- data/docs/ContentReleaseArchitecturesApi.md +10 -10
- data/docs/ContentReleaseComponentsApi.md +10 -10
- data/docs/ContentReleaseFilesApi.md +14 -14
- data/docs/ContentReleasesApi.md +12 -12
- data/docs/ContentSummary.md +3 -3
- data/docs/ContentSummaryResponse.md +3 -3
- data/docs/DebAptDistribution.md +4 -0
- data/docs/DebAptDistributionResponse.md +4 -0
- data/docs/DebAptRemote.md +11 -1
- data/docs/DebAptRemoteResponse.md +7 -7
- data/docs/DebAptRepository.md +5 -1
- data/docs/DebAptRepositoryResponse.md +4 -0
- data/docs/DistributionsAptApi.md +20 -12
- data/docs/PatcheddebAptDistribution.md +4 -0
- data/docs/PatcheddebAptRemote.md +11 -1
- data/docs/PatcheddebAptRepository.md +5 -1
- data/docs/PublicationsAptApi.md +18 -14
- data/docs/PublicationsVerbatimApi.md +18 -14
- data/docs/RemotesAptApi.md +24 -16
- data/docs/RepositoriesAptApi.md +12 -4
- data/docs/RepositoriesDebVersionsApi.md +28 -28
- data/docs/RepositoryVersionResponse.md +2 -0
- data/lib/pulp_deb_client/api/content_generic_contents_api.rb +10 -10
- data/lib/pulp_deb_client/api/content_installer_file_indices_api.rb +14 -14
- data/lib/pulp_deb_client/api/content_installer_packages_api.rb +43 -43
- data/lib/pulp_deb_client/api/content_package_indices_api.rb +14 -14
- data/lib/pulp_deb_client/api/content_package_release_components_api.rb +10 -10
- data/lib/pulp_deb_client/api/content_packages_api.rb +45 -45
- data/lib/pulp_deb_client/api/content_release_architectures_api.rb +10 -10
- data/lib/pulp_deb_client/api/content_release_components_api.rb +10 -10
- data/lib/pulp_deb_client/api/content_release_files_api.rb +14 -14
- data/lib/pulp_deb_client/api/content_releases_api.rb +12 -12
- data/lib/pulp_deb_client/api/distributions_apt_api.rb +26 -14
- data/lib/pulp_deb_client/api/publications_apt_api.rb +21 -15
- data/lib/pulp_deb_client/api/publications_verbatim_api.rb +21 -15
- data/lib/pulp_deb_client/api/remotes_apt_api.rb +30 -18
- data/lib/pulp_deb_client/api/repositories_apt_api.rb +17 -5
- data/lib/pulp_deb_client/api/repositories_deb_versions_api.rb +30 -30
- data/lib/pulp_deb_client/models/content_summary.rb +12 -6
- data/lib/pulp_deb_client/models/content_summary_response.rb +12 -6
- data/lib/pulp_deb_client/models/deb_apt_distribution.rb +21 -1
- data/lib/pulp_deb_client/models/deb_apt_distribution_response.rb +21 -1
- data/lib/pulp_deb_client/models/deb_apt_remote.rb +56 -2
- data/lib/pulp_deb_client/models/deb_apt_remote_response.rb +31 -32
- data/lib/pulp_deb_client/models/deb_apt_repository.rb +36 -1
- data/lib/pulp_deb_client/models/deb_apt_repository_response.rb +36 -1
- data/lib/pulp_deb_client/models/patcheddeb_apt_distribution.rb +21 -1
- data/lib/pulp_deb_client/models/patcheddeb_apt_remote.rb +56 -2
- data/lib/pulp_deb_client/models/patcheddeb_apt_repository.rb +36 -1
- data/lib/pulp_deb_client/models/repository_version_response.rb +10 -1
- data/lib/pulp_deb_client/version.rb +1 -1
- data/spec/api/content_generic_contents_api_spec.rb +5 -5
- data/spec/api/content_installer_file_indices_api_spec.rb +7 -7
- data/spec/api/content_installer_packages_api_spec.rb +20 -20
- data/spec/api/content_package_indices_api_spec.rb +7 -7
- data/spec/api/content_package_release_components_api_spec.rb +5 -5
- data/spec/api/content_packages_api_spec.rb +21 -21
- data/spec/api/content_release_architectures_api_spec.rb +5 -5
- data/spec/api/content_release_components_api_spec.rb +5 -5
- data/spec/api/content_release_files_api_spec.rb +7 -7
- data/spec/api/content_releases_api_spec.rb +6 -6
- data/spec/api/distributions_apt_api_spec.rb +10 -6
- data/spec/api/publications_apt_api_spec.rb +9 -7
- data/spec/api/publications_verbatim_api_spec.rb +9 -7
- data/spec/api/remotes_apt_api_spec.rb +12 -8
- data/spec/api/repositories_apt_api_spec.rb +6 -2
- data/spec/api/repositories_deb_versions_api_spec.rb +14 -14
- data/spec/models/deb_apt_distribution_response_spec.rb +12 -0
- data/spec/models/deb_apt_distribution_spec.rb +12 -0
- data/spec/models/deb_apt_remote_response_spec.rb +12 -12
- data/spec/models/deb_apt_remote_spec.rb +30 -0
- data/spec/models/deb_apt_repository_response_spec.rb +12 -0
- data/spec/models/deb_apt_repository_spec.rb +12 -0
- data/spec/models/patcheddeb_apt_distribution_spec.rb +12 -0
- data/spec/models/patcheddeb_apt_remote_spec.rb +30 -0
- data/spec/models/patcheddeb_apt_repository_spec.rb +12 -0
- data/spec/models/repository_version_response_spec.rb +6 -0
- metadata +56 -56
@@ -61,10 +61,14 @@ describe 'RepositoriesAptApi' do
|
|
61
61
|
# An AptRepository is the locally stored, Pulp-internal representation of a APT repository. It may be filled with content via synchronization or content upload to create an AptRepositoryVersion.
|
62
62
|
# @param [Hash] opts the optional parameters
|
63
63
|
# @option opts [Integer] :limit Number of results to return per page.
|
64
|
-
# @option opts [String] :name
|
65
|
-
# @option opts [String] :
|
64
|
+
# @option opts [String] :name
|
65
|
+
# @option opts [String] :name__contains Filter results where name contains value
|
66
|
+
# @option opts [String] :name__icontains Filter results where name contains value
|
67
|
+
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
68
|
+
# @option opts [String] :name__startswith Filter results where name starts with value
|
66
69
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
67
70
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
71
|
+
# @option opts [String] :pulp_label_select Filter labels by search string
|
68
72
|
# @option opts [String] :fields A list of fields to include in the response.
|
69
73
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
70
74
|
# @return [PaginateddebAptRepositoryResponseList]
|
@@ -49,23 +49,23 @@ describe 'RepositoriesDebVersionsApi' do
|
|
49
49
|
# An AptRepositoryVersion represents a single APT repository version as stored by Pulp. It may be used as the basis for the creation of Pulp distributions in order to actually serve the content contained within the repository version.
|
50
50
|
# @param deb_apt_repository_href
|
51
51
|
# @param [Hash] opts the optional parameters
|
52
|
-
# @option opts [String] :content
|
53
|
-
# @option opts [String] :content__in
|
52
|
+
# @option opts [String] :content Content Unit referenced by HREF
|
53
|
+
# @option opts [String] :content__in Content Unit referenced by HREF
|
54
54
|
# @option opts [Integer] :limit Number of results to return per page.
|
55
|
-
# @option opts [
|
56
|
-
# @option opts [
|
57
|
-
# @option opts [
|
58
|
-
# @option opts [
|
59
|
-
# @option opts [
|
60
|
-
# @option opts [
|
55
|
+
# @option opts [Integer] :number
|
56
|
+
# @option opts [Integer] :number__gt Filter results where number is greater than value
|
57
|
+
# @option opts [Integer] :number__gte Filter results where number is greater than or equal to value
|
58
|
+
# @option opts [Integer] :number__lt Filter results where number is less than value
|
59
|
+
# @option opts [Integer] :number__lte Filter results where number is less than or equal to value
|
60
|
+
# @option opts [Array<Integer>] :number__range Filter results where number is between two comma separated values
|
61
61
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
62
62
|
# @option opts [String] :ordering Which field to use when ordering the results.
|
63
|
-
# @option opts [
|
64
|
-
# @option opts [
|
65
|
-
# @option opts [
|
66
|
-
# @option opts [
|
67
|
-
# @option opts [
|
68
|
-
# @option opts [
|
63
|
+
# @option opts [DateTime] :pulp_created ISO 8601 formatted dates are supported
|
64
|
+
# @option opts [DateTime] :pulp_created__gt Filter results where pulp_created is greater than value
|
65
|
+
# @option opts [DateTime] :pulp_created__gte Filter results where pulp_created is greater than or equal to value
|
66
|
+
# @option opts [DateTime] :pulp_created__lt Filter results where pulp_created is less than value
|
67
|
+
# @option opts [DateTime] :pulp_created__lte Filter results where pulp_created is less than or equal to value
|
68
|
+
# @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
|
69
69
|
# @option opts [String] :fields A list of fields to include in the response.
|
70
70
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
71
71
|
# @return [PaginatedRepositoryVersionResponseList]
|
@@ -62,12 +62,24 @@ describe 'DebAptDistributionResponse' do
|
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
|
+
describe 'test attribute "pulp_labels"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
65
71
|
describe 'test attribute "name"' do
|
66
72
|
it 'should work' do
|
67
73
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
74
|
end
|
69
75
|
end
|
70
76
|
|
77
|
+
describe 'test attribute "repository"' do
|
78
|
+
it 'should work' do
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
71
83
|
describe 'test attribute "publication"' do
|
72
84
|
it 'should work' do
|
73
85
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -44,12 +44,24 @@ describe 'DebAptDistribution' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
+
describe 'test attribute "pulp_labels"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
47
53
|
describe 'test attribute "name"' do
|
48
54
|
it 'should work' do
|
49
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
56
|
end
|
51
57
|
end
|
52
58
|
|
59
|
+
describe 'test attribute "repository"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
53
65
|
describe 'test attribute "publication"' do
|
54
66
|
it 'should work' do
|
55
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -68,73 +68,73 @@ describe 'DebAptRemoteResponse' do
|
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
|
-
describe 'test attribute "
|
71
|
+
describe 'test attribute "tls_validation"' do
|
72
72
|
it 'should work' do
|
73
73
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
|
-
describe 'test attribute "
|
77
|
+
describe 'test attribute "proxy_url"' do
|
78
78
|
it 'should work' do
|
79
79
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
80
|
end
|
81
81
|
end
|
82
82
|
|
83
|
-
describe 'test attribute "
|
83
|
+
describe 'test attribute "pulp_labels"' do
|
84
84
|
it 'should work' do
|
85
85
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
86
|
end
|
87
87
|
end
|
88
88
|
|
89
|
-
describe 'test attribute "
|
89
|
+
describe 'test attribute "pulp_last_updated"' do
|
90
90
|
it 'should work' do
|
91
91
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
92
92
|
end
|
93
93
|
end
|
94
94
|
|
95
|
-
describe 'test attribute "
|
95
|
+
describe 'test attribute "download_concurrency"' do
|
96
96
|
it 'should work' do
|
97
97
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
98
98
|
end
|
99
99
|
end
|
100
100
|
|
101
|
-
describe 'test attribute "
|
101
|
+
describe 'test attribute "policy"' do
|
102
102
|
it 'should work' do
|
103
103
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
104
104
|
end
|
105
105
|
end
|
106
106
|
|
107
|
-
describe 'test attribute "
|
107
|
+
describe 'test attribute "total_timeout"' do
|
108
108
|
it 'should work' do
|
109
109
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
110
110
|
end
|
111
111
|
end
|
112
112
|
|
113
|
-
describe 'test attribute "
|
113
|
+
describe 'test attribute "connect_timeout"' do
|
114
114
|
it 'should work' do
|
115
115
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
116
116
|
end
|
117
117
|
end
|
118
118
|
|
119
|
-
describe 'test attribute "
|
119
|
+
describe 'test attribute "sock_connect_timeout"' do
|
120
120
|
it 'should work' do
|
121
121
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
122
122
|
end
|
123
123
|
end
|
124
124
|
|
125
|
-
describe 'test attribute "
|
125
|
+
describe 'test attribute "sock_read_timeout"' do
|
126
126
|
it 'should work' do
|
127
127
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
128
128
|
end
|
129
129
|
end
|
130
130
|
|
131
|
-
describe 'test attribute "
|
131
|
+
describe 'test attribute "headers"' do
|
132
132
|
it 'should work' do
|
133
133
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
134
134
|
end
|
135
135
|
end
|
136
136
|
|
137
|
-
describe 'test attribute "
|
137
|
+
describe 'test attribute "rate_limit"' do
|
138
138
|
it 'should work' do
|
139
139
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
140
140
|
end
|
@@ -74,6 +74,18 @@ describe 'DebAptRemote' do
|
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
|
+
describe 'test attribute "proxy_username"' do
|
78
|
+
it 'should work' do
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
describe 'test attribute "proxy_password"' do
|
84
|
+
it 'should work' do
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
77
89
|
describe 'test attribute "username"' do
|
78
90
|
it 'should work' do
|
79
91
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -86,6 +98,12 @@ describe 'DebAptRemote' do
|
|
86
98
|
end
|
87
99
|
end
|
88
100
|
|
101
|
+
describe 'test attribute "pulp_labels"' do
|
102
|
+
it 'should work' do
|
103
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
89
107
|
describe 'test attribute "download_concurrency"' do
|
90
108
|
it 'should work' do
|
91
109
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -122,6 +140,18 @@ describe 'DebAptRemote' do
|
|
122
140
|
end
|
123
141
|
end
|
124
142
|
|
143
|
+
describe 'test attribute "headers"' do
|
144
|
+
it 'should work' do
|
145
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
146
|
+
end
|
147
|
+
end
|
148
|
+
|
149
|
+
describe 'test attribute "rate_limit"' do
|
150
|
+
it 'should work' do
|
151
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
125
155
|
describe 'test attribute "distributions"' do
|
126
156
|
it 'should work' do
|
127
157
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -50,6 +50,12 @@ describe 'DebAptRepositoryResponse' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
+
describe 'test attribute "pulp_labels"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
53
59
|
describe 'test attribute "latest_version_href"' do
|
54
60
|
it 'should work' do
|
55
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -68,6 +74,12 @@ describe 'DebAptRepositoryResponse' do
|
|
68
74
|
end
|
69
75
|
end
|
70
76
|
|
77
|
+
describe 'test attribute "retained_versions"' do
|
78
|
+
it 'should work' do
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
71
83
|
describe 'test attribute "remote"' do
|
72
84
|
it 'should work' do
|
73
85
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -32,6 +32,12 @@ describe 'DebAptRepository' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpDebClient::DebAptRepository)
|
33
33
|
end
|
34
34
|
end
|
35
|
+
describe 'test attribute "pulp_labels"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
35
41
|
describe 'test attribute "name"' do
|
36
42
|
it 'should work' do
|
37
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -44,6 +50,12 @@ describe 'DebAptRepository' do
|
|
44
50
|
end
|
45
51
|
end
|
46
52
|
|
53
|
+
describe 'test attribute "retained_versions"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
47
59
|
describe 'test attribute "remote"' do
|
48
60
|
it 'should work' do
|
49
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -44,12 +44,24 @@ describe 'PatcheddebAptDistribution' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
+
describe 'test attribute "pulp_labels"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
47
53
|
describe 'test attribute "name"' do
|
48
54
|
it 'should work' do
|
49
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
56
|
end
|
51
57
|
end
|
52
58
|
|
59
|
+
describe 'test attribute "repository"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
53
65
|
describe 'test attribute "publication"' do
|
54
66
|
it 'should work' do
|
55
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -74,6 +74,18 @@ describe 'PatcheddebAptRemote' do
|
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
|
+
describe 'test attribute "proxy_username"' do
|
78
|
+
it 'should work' do
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
describe 'test attribute "proxy_password"' do
|
84
|
+
it 'should work' do
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
77
89
|
describe 'test attribute "username"' do
|
78
90
|
it 'should work' do
|
79
91
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -86,6 +98,12 @@ describe 'PatcheddebAptRemote' do
|
|
86
98
|
end
|
87
99
|
end
|
88
100
|
|
101
|
+
describe 'test attribute "pulp_labels"' do
|
102
|
+
it 'should work' do
|
103
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
89
107
|
describe 'test attribute "download_concurrency"' do
|
90
108
|
it 'should work' do
|
91
109
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -122,6 +140,18 @@ describe 'PatcheddebAptRemote' do
|
|
122
140
|
end
|
123
141
|
end
|
124
142
|
|
143
|
+
describe 'test attribute "headers"' do
|
144
|
+
it 'should work' do
|
145
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
146
|
+
end
|
147
|
+
end
|
148
|
+
|
149
|
+
describe 'test attribute "rate_limit"' do
|
150
|
+
it 'should work' do
|
151
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
125
155
|
describe 'test attribute "distributions"' do
|
126
156
|
it 'should work' do
|
127
157
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -32,6 +32,12 @@ describe 'PatcheddebAptRepository' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpDebClient::PatcheddebAptRepository)
|
33
33
|
end
|
34
34
|
end
|
35
|
+
describe 'test attribute "pulp_labels"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
35
41
|
describe 'test attribute "name"' do
|
36
42
|
it 'should work' do
|
37
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -44,6 +50,12 @@ describe 'PatcheddebAptRepository' do
|
|
44
50
|
end
|
45
51
|
end
|
46
52
|
|
53
|
+
describe 'test attribute "retained_versions"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
47
59
|
describe 'test attribute "remote"' do
|
48
60
|
it 'should work' do
|
49
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -50,6 +50,12 @@ describe 'RepositoryVersionResponse' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
+
describe 'test attribute "repository"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
53
59
|
describe 'test attribute "base_version"' do
|
54
60
|
it 'should work' do
|
55
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/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: 2.
|
4
|
+
version: 2.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-05-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -313,81 +313,81 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
313
313
|
- !ruby/object:Gem::Version
|
314
314
|
version: '0'
|
315
315
|
requirements: []
|
316
|
-
rubygems_version: 3.0.3
|
316
|
+
rubygems_version: 3.0.3.1
|
317
317
|
signing_key:
|
318
318
|
specification_version: 4
|
319
319
|
summary: Pulp 3 API Ruby Gem
|
320
320
|
test_files:
|
321
|
+
- spec/api/content_packages_api_spec.rb
|
321
322
|
- spec/api/content_package_indices_api_spec.rb
|
323
|
+
- spec/api/content_releases_api_spec.rb
|
322
324
|
- spec/api/publications_verbatim_api_spec.rb
|
323
|
-
- spec/api/
|
324
|
-
- spec/api/
|
325
|
-
- spec/api/content_packages_api_spec.rb
|
325
|
+
- spec/api/repositories_apt_api_spec.rb
|
326
|
+
- spec/api/content_generic_contents_api_spec.rb
|
326
327
|
- spec/api/publications_apt_api_spec.rb
|
327
328
|
- spec/api/remotes_apt_api_spec.rb
|
328
|
-
- spec/api/
|
329
|
-
- spec/api/
|
330
|
-
- spec/api/content_generic_contents_api_spec.rb
|
329
|
+
- spec/api/content_installer_file_indices_api_spec.rb
|
330
|
+
- spec/api/content_release_files_api_spec.rb
|
331
331
|
- spec/api/content_release_components_api_spec.rb
|
332
|
+
- spec/api/content_release_architectures_api_spec.rb
|
332
333
|
- spec/api/repositories_deb_versions_api_spec.rb
|
333
|
-
- spec/api/
|
334
|
-
- spec/api/
|
334
|
+
- spec/api/content_installer_packages_api_spec.rb
|
335
|
+
- spec/api/distributions_apt_api_spec.rb
|
335
336
|
- spec/api/content_package_release_components_api_spec.rb
|
336
|
-
- spec/api/content_release_architectures_api_spec.rb
|
337
337
|
- spec/api_client_spec.rb
|
338
338
|
- spec/configuration_spec.rb
|
339
|
-
- spec/models/
|
340
|
-
- spec/models/
|
341
|
-
- spec/models/
|
342
|
-
- spec/models/deb_apt_remote_spec.rb
|
343
|
-
- spec/models/paginateddeb_apt_remote_response_list_spec.rb
|
344
|
-
- spec/models/repository_sync_url_spec.rb
|
345
|
-
- spec/models/deb_release_component_spec.rb
|
339
|
+
- spec/models/paginateddeb_base_package_response_list_spec.rb
|
340
|
+
- spec/models/deb_release_spec.rb
|
341
|
+
- spec/models/deb_release_file_spec.rb
|
346
342
|
- spec/models/deb_generic_content_spec.rb
|
347
|
-
- spec/models/
|
348
|
-
- spec/models/repository_version_response_spec.rb
|
349
|
-
- spec/models/paginateddeb_verbatim_publication_response_list_spec.rb
|
350
|
-
- spec/models/deb_installer_file_index_spec.rb
|
351
|
-
- spec/models/paginateddeb_package_release_component_response_list_spec.rb
|
343
|
+
- spec/models/deb_release_component_response_spec.rb
|
352
344
|
- spec/models/paginateddeb_release_response_list_spec.rb
|
345
|
+
- spec/models/repository_version_spec.rb
|
346
|
+
- spec/models/deb_verbatim_publication_response_spec.rb
|
347
|
+
- spec/models/paginateddeb_apt_publication_response_list_spec.rb
|
348
|
+
- spec/models/deb_release_architecture_response_spec.rb
|
353
349
|
- spec/models/deb_verbatim_publication_spec.rb
|
354
|
-
- spec/models/patcheddeb_apt_repository_spec.rb
|
355
|
-
- spec/models/content_summary_response_spec.rb
|
356
|
-
- spec/models/deb_package_release_component_response_spec.rb
|
357
|
-
- spec/models/deb_release_component_response_spec.rb
|
358
|
-
- spec/models/paginateddeb_installer_file_index_response_list_spec.rb
|
359
|
-
- spec/models/deb_package_index_response_spec.rb
|
360
|
-
- spec/models/paginateddeb_package_index_response_list_spec.rb
|
361
|
-
- spec/models/deb_apt_repository_spec.rb
|
362
|
-
- spec/models/patcheddeb_apt_distribution_spec.rb
|
363
|
-
- spec/models/deb_release_architecture_spec.rb
|
364
350
|
- spec/models/deb_generic_content_response_spec.rb
|
365
|
-
- spec/models/
|
366
|
-
- spec/models/
|
367
|
-
- spec/models/
|
368
|
-
- spec/models/paginateddeb_release_file_response_list_spec.rb
|
369
|
-
- spec/models/paginateddeb_base_package_response_list_spec.rb
|
370
|
-
- spec/models/deb_base_package_spec.rb
|
371
|
-
- spec/models/deb_apt_repository_response_spec.rb
|
372
|
-
- spec/models/patcheddeb_apt_remote_spec.rb
|
351
|
+
- spec/models/deb_base_package_response_spec.rb
|
352
|
+
- spec/models/paginateddeb_verbatim_publication_response_list_spec.rb
|
353
|
+
- spec/models/deb_apt_distribution_spec.rb
|
373
354
|
- spec/models/deb_apt_publication_response_spec.rb
|
374
|
-
- spec/models/
|
375
|
-
- spec/models/
|
376
|
-
- spec/models/
|
355
|
+
- spec/models/patcheddeb_apt_repository_spec.rb
|
356
|
+
- spec/models/policy_enum_spec.rb
|
357
|
+
- spec/models/deb_apt_repository_response_spec.rb
|
358
|
+
- spec/models/paginateddeb_package_index_response_list_spec.rb
|
377
359
|
- spec/models/paginateddeb_release_component_response_list_spec.rb
|
378
|
-
- spec/models/deb_release_response_spec.rb
|
379
|
-
- spec/models/deb_apt_distribution_response_spec.rb
|
380
|
-
- spec/models/deb_package_release_component_spec.rb
|
381
360
|
- spec/models/deb_release_file_response_spec.rb
|
382
|
-
- spec/models/
|
383
|
-
- spec/models/
|
384
|
-
- spec/models/
|
385
|
-
- spec/models/
|
386
|
-
- spec/models/
|
387
|
-
- spec/models/deb_base_package_response_spec.rb
|
388
|
-
- spec/models/repository_add_remove_content_spec.rb
|
361
|
+
- spec/models/paginateddeb_package_release_component_response_list_spec.rb
|
362
|
+
- spec/models/deb_package_release_component_spec.rb
|
363
|
+
- spec/models/paginateddeb_release_file_response_list_spec.rb
|
364
|
+
- spec/models/paginateddeb_generic_content_response_list_spec.rb
|
365
|
+
- spec/models/repository_version_response_spec.rb
|
389
366
|
- spec/models/async_operation_response_spec.rb
|
367
|
+
- spec/models/repository_add_remove_content_spec.rb
|
368
|
+
- spec/models/deb_package_release_component_response_spec.rb
|
369
|
+
- spec/models/deb_release_response_spec.rb
|
370
|
+
- spec/models/deb_package_index_response_spec.rb
|
371
|
+
- spec/models/content_summary_spec.rb
|
372
|
+
- spec/models/content_summary_response_spec.rb
|
373
|
+
- spec/models/paginateddeb_installer_file_index_response_list_spec.rb
|
374
|
+
- spec/models/deb_apt_remote_spec.rb
|
375
|
+
- spec/models/deb_apt_remote_response_spec.rb
|
376
|
+
- spec/models/paginateddeb_apt_remote_response_list_spec.rb
|
377
|
+
- spec/models/patcheddeb_apt_distribution_spec.rb
|
378
|
+
- spec/models/deb_apt_publication_spec.rb
|
390
379
|
- spec/models/paginated_repository_version_response_list_spec.rb
|
380
|
+
- spec/models/paginateddeb_release_architecture_response_list_spec.rb
|
381
|
+
- spec/models/deb_apt_distribution_response_spec.rb
|
382
|
+
- spec/models/deb_installer_file_index_response_spec.rb
|
383
|
+
- spec/models/patcheddeb_apt_remote_spec.rb
|
384
|
+
- spec/models/deb_base_package_spec.rb
|
385
|
+
- spec/models/deb_release_architecture_spec.rb
|
386
|
+
- spec/models/repository_sync_url_spec.rb
|
387
|
+
- spec/models/paginateddeb_apt_repository_response_list_spec.rb
|
388
|
+
- spec/models/paginateddeb_apt_distribution_response_list_spec.rb
|
389
|
+
- spec/models/deb_installer_file_index_spec.rb
|
390
|
+
- spec/models/deb_release_component_spec.rb
|
391
|
+
- spec/models/deb_apt_repository_spec.rb
|
391
392
|
- spec/models/deb_package_index_spec.rb
|
392
|
-
- spec/models/deb_apt_remote_response_spec.rb
|
393
393
|
- spec/spec_helper.rb
|