pulp_deb_client 2.21.1 → 3.0.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/ContentPackageReleaseComponentsApi.md +2 -2
- data/docs/ContentPackagesApi.md +4 -0
- data/docs/ContentReleaseArchitecturesApi.md +2 -6
- data/docs/ContentReleaseComponentsApi.md +4 -6
- data/docs/ContentReleasesApi.md +10 -2
- data/docs/DebAptPublication.md +4 -2
- data/docs/DebAptPublicationResponse.md +4 -2
- data/docs/DebAptRepository.md +7 -1
- data/docs/DebAptRepositoryResponse.md +7 -1
- data/docs/DebRelease.md +9 -1
- data/docs/DebReleaseArchitecture.md +1 -5
- data/docs/DebReleaseArchitectureResponse.md +1 -5
- data/docs/DebReleaseComponent.md +1 -5
- data/docs/DebReleaseComponentResponse.md +1 -5
- data/docs/DebReleaseFile.md +3 -3
- data/docs/DebReleaseFileResponse.md +3 -3
- data/docs/DebReleaseResponse.md +9 -1
- data/docs/DistributionsAptApi.md +1 -1
- data/docs/PatcheddebAptRepository.md +7 -1
- data/docs/RepositoriesAptApi.md +1 -1
- data/lib/pulp_deb_client/api/content_packages_api.rb +6 -0
- data/lib/pulp_deb_client/api/content_release_architectures_api.rb +3 -9
- data/lib/pulp_deb_client/api/content_release_components_api.rb +6 -9
- data/lib/pulp_deb_client/api/content_releases_api.rb +15 -3
- data/lib/pulp_deb_client/models/deb_apt_publication.rb +14 -5
- data/lib/pulp_deb_client/models/deb_apt_publication_response.rb +14 -5
- data/lib/pulp_deb_client/models/deb_apt_repository.rb +38 -5
- data/lib/pulp_deb_client/models/deb_apt_repository_response.rb +38 -5
- data/lib/pulp_deb_client/models/deb_release.rb +104 -4
- data/lib/pulp_deb_client/models/deb_release_architecture.rb +4 -70
- data/lib/pulp_deb_client/models/deb_release_architecture_response.rb +4 -32
- data/lib/pulp_deb_client/models/deb_release_component.rb +4 -70
- data/lib/pulp_deb_client/models/deb_release_component_response.rb +4 -32
- data/lib/pulp_deb_client/models/deb_release_file.rb +3 -3
- data/lib/pulp_deb_client/models/deb_release_file_response.rb +3 -3
- data/lib/pulp_deb_client/models/deb_release_response.rb +44 -4
- data/lib/pulp_deb_client/models/patcheddeb_apt_repository.rb +38 -5
- data/lib/pulp_deb_client/version.rb +1 -1
- data/spec/api/content_packages_api_spec.rb +2 -0
- data/spec/api/content_release_architectures_api_spec.rb +1 -3
- data/spec/api/content_release_components_api_spec.rb +2 -3
- data/spec/api/content_releases_api_spec.rb +5 -1
- data/spec/models/deb_apt_publication_response_spec.rb +6 -0
- data/spec/models/deb_apt_publication_spec.rb +6 -0
- data/spec/models/deb_apt_repository_response_spec.rb +18 -0
- data/spec/models/deb_apt_repository_spec.rb +18 -0
- data/spec/models/deb_release_architecture_response_spec.rb +0 -12
- data/spec/models/deb_release_architecture_spec.rb +0 -12
- data/spec/models/deb_release_component_response_spec.rb +0 -12
- data/spec/models/deb_release_component_spec.rb +0 -12
- data/spec/models/deb_release_response_spec.rb +24 -0
- data/spec/models/deb_release_spec.rb +24 -0
- data/spec/models/patcheddeb_apt_repository_spec.rb +18 -0
- metadata +60 -60
|
@@ -26,6 +26,14 @@ module PulpDebClient
|
|
|
26
26
|
|
|
27
27
|
attr_accessor :distribution
|
|
28
28
|
|
|
29
|
+
attr_accessor :version
|
|
30
|
+
|
|
31
|
+
attr_accessor :origin
|
|
32
|
+
|
|
33
|
+
attr_accessor :label
|
|
34
|
+
|
|
35
|
+
attr_accessor :description
|
|
36
|
+
|
|
29
37
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
30
38
|
def self.attribute_map
|
|
31
39
|
{
|
|
@@ -33,7 +41,11 @@ module PulpDebClient
|
|
|
33
41
|
:'pulp_created' => :'pulp_created',
|
|
34
42
|
:'codename' => :'codename',
|
|
35
43
|
:'suite' => :'suite',
|
|
36
|
-
:'distribution' => :'distribution'
|
|
44
|
+
:'distribution' => :'distribution',
|
|
45
|
+
:'version' => :'version',
|
|
46
|
+
:'origin' => :'origin',
|
|
47
|
+
:'label' => :'label',
|
|
48
|
+
:'description' => :'description'
|
|
37
49
|
}
|
|
38
50
|
end
|
|
39
51
|
|
|
@@ -44,13 +56,21 @@ module PulpDebClient
|
|
|
44
56
|
:'pulp_created' => :'DateTime',
|
|
45
57
|
:'codename' => :'String',
|
|
46
58
|
:'suite' => :'String',
|
|
47
|
-
:'distribution' => :'String'
|
|
59
|
+
:'distribution' => :'String',
|
|
60
|
+
:'version' => :'String',
|
|
61
|
+
:'origin' => :'String',
|
|
62
|
+
:'label' => :'String',
|
|
63
|
+
:'description' => :'String'
|
|
48
64
|
}
|
|
49
65
|
end
|
|
50
66
|
|
|
51
67
|
# List of attributes with nullable: true
|
|
52
68
|
def self.openapi_nullable
|
|
53
69
|
Set.new([
|
|
70
|
+
:'version',
|
|
71
|
+
:'origin',
|
|
72
|
+
:'label',
|
|
73
|
+
:'description'
|
|
54
74
|
])
|
|
55
75
|
end
|
|
56
76
|
|
|
@@ -88,6 +108,22 @@ module PulpDebClient
|
|
|
88
108
|
if attributes.key?(:'distribution')
|
|
89
109
|
self.distribution = attributes[:'distribution']
|
|
90
110
|
end
|
|
111
|
+
|
|
112
|
+
if attributes.key?(:'version')
|
|
113
|
+
self.version = attributes[:'version']
|
|
114
|
+
end
|
|
115
|
+
|
|
116
|
+
if attributes.key?(:'origin')
|
|
117
|
+
self.origin = attributes[:'origin']
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
if attributes.key?(:'label')
|
|
121
|
+
self.label = attributes[:'label']
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
if attributes.key?(:'description')
|
|
125
|
+
self.description = attributes[:'description']
|
|
126
|
+
end
|
|
91
127
|
end
|
|
92
128
|
|
|
93
129
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -127,7 +163,11 @@ module PulpDebClient
|
|
|
127
163
|
pulp_created == o.pulp_created &&
|
|
128
164
|
codename == o.codename &&
|
|
129
165
|
suite == o.suite &&
|
|
130
|
-
distribution == o.distribution
|
|
166
|
+
distribution == o.distribution &&
|
|
167
|
+
version == o.version &&
|
|
168
|
+
origin == o.origin &&
|
|
169
|
+
label == o.label &&
|
|
170
|
+
description == o.description
|
|
131
171
|
end
|
|
132
172
|
|
|
133
173
|
# @see the `==` method
|
|
@@ -139,7 +179,7 @@ module PulpDebClient
|
|
|
139
179
|
# Calculates hash code according to all attributes.
|
|
140
180
|
# @return [Integer] Hash code
|
|
141
181
|
def hash
|
|
142
|
-
[pulp_href, pulp_created, codename, suite, distribution].hash
|
|
182
|
+
[pulp_href, pulp_created, codename, suite, distribution, version, origin, label, description].hash
|
|
143
183
|
end
|
|
144
184
|
|
|
145
185
|
# Builds the object from hash
|
|
@@ -29,6 +29,15 @@ module PulpDebClient
|
|
|
29
29
|
# An optional remote to use by default when syncing.
|
|
30
30
|
attr_accessor :remote
|
|
31
31
|
|
|
32
|
+
# Previously, pulp_deb only synced the Release file fields codename and suite, now version, origin, label, and description are also synced. Setting this setting to False will make Pulp revert to the old behaviour of using it's own internal values for the new fields during publish. This is primarily intended to avoid a sudden change in behaviour for existing Pulp repositories, since many Release file field changes need to be accepted by hosts consuming the published repository. The default for new repositories is True.
|
|
33
|
+
attr_accessor :publish_upstream_release_fields
|
|
34
|
+
|
|
35
|
+
# A reference to an associated signing service. Used if AptPublication.signing_service is not set
|
|
36
|
+
attr_accessor :signing_service
|
|
37
|
+
|
|
38
|
+
# A dictionary of Release distributions and the Signing Service URLs they should use.Example: {\"bionic\": \"/pulp/api/v3/signing-services/433a1f70-c589-4413-a803-c50b842ea9b5/\"}
|
|
39
|
+
attr_accessor :signing_service_release_overrides
|
|
40
|
+
|
|
32
41
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
33
42
|
def self.attribute_map
|
|
34
43
|
{
|
|
@@ -36,7 +45,10 @@ module PulpDebClient
|
|
|
36
45
|
:'name' => :'name',
|
|
37
46
|
:'description' => :'description',
|
|
38
47
|
:'retain_repo_versions' => :'retain_repo_versions',
|
|
39
|
-
:'remote' => :'remote'
|
|
48
|
+
:'remote' => :'remote',
|
|
49
|
+
:'publish_upstream_release_fields' => :'publish_upstream_release_fields',
|
|
50
|
+
:'signing_service' => :'signing_service',
|
|
51
|
+
:'signing_service_release_overrides' => :'signing_service_release_overrides'
|
|
40
52
|
}
|
|
41
53
|
end
|
|
42
54
|
|
|
@@ -47,7 +59,10 @@ module PulpDebClient
|
|
|
47
59
|
:'name' => :'String',
|
|
48
60
|
:'description' => :'String',
|
|
49
61
|
:'retain_repo_versions' => :'Integer',
|
|
50
|
-
:'remote' => :'String'
|
|
62
|
+
:'remote' => :'String',
|
|
63
|
+
:'publish_upstream_release_fields' => :'Boolean',
|
|
64
|
+
:'signing_service' => :'String',
|
|
65
|
+
:'signing_service_release_overrides' => :'Hash<String, String>'
|
|
51
66
|
}
|
|
52
67
|
end
|
|
53
68
|
|
|
@@ -56,7 +71,8 @@ module PulpDebClient
|
|
|
56
71
|
Set.new([
|
|
57
72
|
:'description',
|
|
58
73
|
:'retain_repo_versions',
|
|
59
|
-
:'remote'
|
|
74
|
+
:'remote',
|
|
75
|
+
:'signing_service',
|
|
60
76
|
])
|
|
61
77
|
end
|
|
62
78
|
|
|
@@ -96,6 +112,20 @@ module PulpDebClient
|
|
|
96
112
|
if attributes.key?(:'remote')
|
|
97
113
|
self.remote = attributes[:'remote']
|
|
98
114
|
end
|
|
115
|
+
|
|
116
|
+
if attributes.key?(:'publish_upstream_release_fields')
|
|
117
|
+
self.publish_upstream_release_fields = attributes[:'publish_upstream_release_fields']
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
if attributes.key?(:'signing_service')
|
|
121
|
+
self.signing_service = attributes[:'signing_service']
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
if attributes.key?(:'signing_service_release_overrides')
|
|
125
|
+
if (value = attributes[:'signing_service_release_overrides']).is_a?(Hash)
|
|
126
|
+
self.signing_service_release_overrides = value
|
|
127
|
+
end
|
|
128
|
+
end
|
|
99
129
|
end
|
|
100
130
|
|
|
101
131
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -165,7 +195,10 @@ module PulpDebClient
|
|
|
165
195
|
name == o.name &&
|
|
166
196
|
description == o.description &&
|
|
167
197
|
retain_repo_versions == o.retain_repo_versions &&
|
|
168
|
-
remote == o.remote
|
|
198
|
+
remote == o.remote &&
|
|
199
|
+
publish_upstream_release_fields == o.publish_upstream_release_fields &&
|
|
200
|
+
signing_service == o.signing_service &&
|
|
201
|
+
signing_service_release_overrides == o.signing_service_release_overrides
|
|
169
202
|
end
|
|
170
203
|
|
|
171
204
|
# @see the `==` method
|
|
@@ -177,7 +210,7 @@ module PulpDebClient
|
|
|
177
210
|
# Calculates hash code according to all attributes.
|
|
178
211
|
# @return [Integer] Hash code
|
|
179
212
|
def hash
|
|
180
|
-
[pulp_labels, name, description, retain_repo_versions, remote].hash
|
|
213
|
+
[pulp_labels, name, description, retain_repo_versions, remote, publish_upstream_release_fields, signing_service, signing_service_release_overrides].hash
|
|
181
214
|
end
|
|
182
215
|
|
|
183
216
|
# Builds the object from hash
|
|
@@ -72,6 +72,8 @@ describe 'ContentPackagesApi' do
|
|
|
72
72
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
73
73
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
74
74
|
# @option opts [String] :relative_path Filter results where relative_path matches value
|
|
75
|
+
# @option opts [String] :release Must be a comma-separated string: \"release_href,repository_or_repository_version_href\" release_href: Filter results where Package in Release repository_or_repository_version_href: The RepositoryVersion href to filter by, or Repository href (assume latest version)
|
|
76
|
+
# @option opts [String] :release_component Must be a comma-separated string: \"release_component_href,repository_or_repository_version_href\" release_component_href: Filter results where Package in ReleaseComponent repository_or_repository_version_href: The RepositoryVersion href to filter by, or Repository href (assume latest version)
|
|
75
77
|
# @option opts [String] :repository_version Repository Version referenced by HREF
|
|
76
78
|
# @option opts [String] :repository_version_added Repository Version referenced by HREF
|
|
77
79
|
# @option opts [String] :repository_version_removed Repository Version referenced by HREF
|
|
@@ -49,17 +49,15 @@ describe 'ContentReleaseArchitecturesApi' do
|
|
|
49
49
|
# A ReleaseArchitecture represents a single dpkg architecture string. Associated artifacts: None; contains only metadata. Every ReleaseArchitecture is always associated with exactly one Release. This indicates that the release/distribution in question supports this architecture.
|
|
50
50
|
# @param [Hash] opts the optional parameters
|
|
51
51
|
# @option opts [String] :architecture Filter results where architecture matches value
|
|
52
|
-
# @option opts [String] :codename Filter results where codename matches value
|
|
53
52
|
# @option opts [String] :distribution Filter results where distribution matches value
|
|
54
53
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
55
54
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
56
|
-
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `
|
|
55
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `distribution` - Distribution * `-distribution` - Distribution (descending) * `architecture` - Architecture * `-architecture` - Architecture (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
57
56
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
58
57
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
59
58
|
# @option opts [String] :repository_version Repository Version referenced by HREF
|
|
60
59
|
# @option opts [String] :repository_version_added Repository Version referenced by HREF
|
|
61
60
|
# @option opts [String] :repository_version_removed Repository Version referenced by HREF
|
|
62
|
-
# @option opts [String] :suite Filter results where suite matches value
|
|
63
61
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
64
62
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
65
63
|
# @return [PaginateddebReleaseArchitectureResponseList]
|
|
@@ -48,18 +48,17 @@ describe 'ContentReleaseComponentsApi' do
|
|
|
48
48
|
# List release components
|
|
49
49
|
# A ReleaseComponent represents a single APT repository component. Associated artifacts: None; contains only metadata.
|
|
50
50
|
# @param [Hash] opts the optional parameters
|
|
51
|
-
# @option opts [String] :codename Filter results where codename matches value
|
|
52
51
|
# @option opts [String] :component Filter results where component matches value
|
|
53
52
|
# @option opts [String] :distribution Filter results where distribution matches value
|
|
54
53
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
55
54
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
56
|
-
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `distribution` - Distribution * `-distribution` - Distribution (descending) * `component` - Component * `-component` - Component (descending) * `
|
|
55
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `distribution` - Distribution * `-distribution` - Distribution (descending) * `component` - Component * `-component` - Component (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
56
|
+
# @option opts [String] :package Must be a comma-separated string: \"package_href,repository_or_repository_version_href\" package_href: Filter results where ReleaseComponent contains Package repository_or_repository_version_href: The RepositoryVersion href to filter by, or Repository href (assume latest version)
|
|
57
57
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
58
58
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
59
59
|
# @option opts [String] :repository_version Repository Version referenced by HREF
|
|
60
60
|
# @option opts [String] :repository_version_added Repository Version referenced by HREF
|
|
61
61
|
# @option opts [String] :repository_version_removed Repository Version referenced by HREF
|
|
62
|
-
# @option opts [String] :suite Filter results where suite matches value
|
|
63
62
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
64
63
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
65
64
|
# @return [PaginateddebReleaseComponentResponseList]
|
|
@@ -50,15 +50,19 @@ describe 'ContentReleasesApi' do
|
|
|
50
50
|
# @param [Hash] opts the optional parameters
|
|
51
51
|
# @option opts [String] :codename Filter results where codename matches value
|
|
52
52
|
# @option opts [String] :distribution Filter results where distribution matches value
|
|
53
|
+
# @option opts [String] :label Filter results where label matches value
|
|
53
54
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
54
55
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
55
|
-
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `codename` - Codename * `-codename` - Codename (descending) * `suite` - Suite * `-suite` - Suite (descending) * `distribution` - Distribution * `-distribution` - Distribution (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
56
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `codename` - Codename * `-codename` - Codename (descending) * `suite` - Suite * `-suite` - Suite (descending) * `distribution` - Distribution * `-distribution` - Distribution (descending) * `version` - Version * `-version` - Version (descending) * `origin` - Origin * `-origin` - Origin (descending) * `label` - Label * `-label` - Label (descending) * `description` - Description * `-description` - Description (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
57
|
+
# @option opts [String] :origin Filter results where origin matches value
|
|
58
|
+
# @option opts [String] :package Must be a comma-separated string: \"package_href,repository_or_repository_version_href\" package_href: Filter results where Release contains Package repository_or_repository_version_href: The RepositoryVersion href to filter by, or Repository href (assume latest version)
|
|
56
59
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
57
60
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
58
61
|
# @option opts [String] :repository_version Repository Version referenced by HREF
|
|
59
62
|
# @option opts [String] :repository_version_added Repository Version referenced by HREF
|
|
60
63
|
# @option opts [String] :repository_version_removed Repository Version referenced by HREF
|
|
61
64
|
# @option opts [String] :suite Filter results where suite matches value
|
|
65
|
+
# @option opts [String] :version Filter results where version matches value
|
|
62
66
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
63
67
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
64
68
|
# @return [PaginateddebReleaseResponseList]
|
|
@@ -74,4 +74,10 @@ describe 'DebAptPublicationResponse' do
|
|
|
74
74
|
end
|
|
75
75
|
end
|
|
76
76
|
|
|
77
|
+
describe 'test attribute "publish_upstream_release_fields"' 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
|
+
|
|
77
83
|
end
|
|
@@ -62,4 +62,10 @@ describe 'DebAptPublication' do
|
|
|
62
62
|
end
|
|
63
63
|
end
|
|
64
64
|
|
|
65
|
+
describe 'test attribute "publish_upstream_release_fields"' 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
|
end
|
|
@@ -86,4 +86,22 @@ describe 'DebAptRepositoryResponse' do
|
|
|
86
86
|
end
|
|
87
87
|
end
|
|
88
88
|
|
|
89
|
+
describe 'test attribute "publish_upstream_release_fields"' do
|
|
90
|
+
it 'should work' do
|
|
91
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
describe 'test attribute "signing_service"' do
|
|
96
|
+
it 'should work' do
|
|
97
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
describe 'test attribute "signing_service_release_overrides"' 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
|
end
|
|
@@ -62,4 +62,22 @@ describe 'DebAptRepository' do
|
|
|
62
62
|
end
|
|
63
63
|
end
|
|
64
64
|
|
|
65
|
+
describe 'test attribute "publish_upstream_release_fields"' 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
|
+
|
|
71
|
+
describe 'test attribute "signing_service"' do
|
|
72
|
+
it 'should work' do
|
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
describe 'test attribute "signing_service_release_overrides"' 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
|
+
|
|
65
83
|
end
|
|
@@ -56,16 +56,4 @@ describe 'DebReleaseArchitectureResponse' do
|
|
|
56
56
|
end
|
|
57
57
|
end
|
|
58
58
|
|
|
59
|
-
describe 'test attribute "codename"' 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
|
-
|
|
65
|
-
describe 'test attribute "suite"' 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
|
-
|
|
71
59
|
end
|
|
@@ -50,16 +50,4 @@ describe 'DebReleaseArchitecture' do
|
|
|
50
50
|
end
|
|
51
51
|
end
|
|
52
52
|
|
|
53
|
-
describe 'test attribute "codename"' 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
|
-
|
|
59
|
-
describe 'test attribute "suite"' 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
|
-
|
|
65
53
|
end
|
|
@@ -56,16 +56,4 @@ describe 'DebReleaseComponentResponse' do
|
|
|
56
56
|
end
|
|
57
57
|
end
|
|
58
58
|
|
|
59
|
-
describe 'test attribute "codename"' 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
|
-
|
|
65
|
-
describe 'test attribute "suite"' 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
|
-
|
|
71
59
|
end
|
|
@@ -50,16 +50,4 @@ describe 'DebReleaseComponent' do
|
|
|
50
50
|
end
|
|
51
51
|
end
|
|
52
52
|
|
|
53
|
-
describe 'test attribute "codename"' 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
|
-
|
|
59
|
-
describe 'test attribute "suite"' 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
|
-
|
|
65
53
|
end
|
|
@@ -62,4 +62,28 @@ describe 'DebReleaseResponse' do
|
|
|
62
62
|
end
|
|
63
63
|
end
|
|
64
64
|
|
|
65
|
+
describe 'test attribute "version"' 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
|
+
|
|
71
|
+
describe 'test attribute "origin"' do
|
|
72
|
+
it 'should work' do
|
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
describe 'test attribute "label"' 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 "description"' 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
|
+
|
|
65
89
|
end
|
|
@@ -56,4 +56,28 @@ describe 'DebRelease' do
|
|
|
56
56
|
end
|
|
57
57
|
end
|
|
58
58
|
|
|
59
|
+
describe 'test attribute "version"' 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
|
+
|
|
65
|
+
describe 'test attribute "origin"' 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
|
+
|
|
71
|
+
describe 'test attribute "label"' do
|
|
72
|
+
it 'should work' do
|
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
describe 'test attribute "description"' 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
|
+
|
|
59
83
|
end
|
|
@@ -62,4 +62,22 @@ describe 'PatcheddebAptRepository' do
|
|
|
62
62
|
end
|
|
63
63
|
end
|
|
64
64
|
|
|
65
|
+
describe 'test attribute "publish_upstream_release_fields"' 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
|
+
|
|
71
|
+
describe 'test attribute "signing_service"' do
|
|
72
|
+
it 'should work' do
|
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
describe 'test attribute "signing_service_release_overrides"' 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
|
+
|
|
65
83
|
end
|