pulp_deb_client 3.9.0 → 3.10.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.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContentInstallerPackagesApi.md +2 -2
  4. data/docs/ContentPackageReleaseComponentsApi.md +2 -2
  5. data/docs/ContentPackagesApi.md +3 -3
  6. data/docs/ContentReleaseArchitecturesApi.md +6 -2
  7. data/docs/DebAptRemote.md +1 -1
  8. data/docs/DebAptRemoteResponse.md +1 -1
  9. data/docs/DebAptRepository.md +7 -1
  10. data/docs/DebAptRepositoryResponse.md +7 -1
  11. data/docs/DebInstallerPackageResponse.md +3 -1
  12. data/docs/DebPackageResponse.md +3 -1
  13. data/docs/DebReleaseArchitecture.md +5 -1
  14. data/docs/DebReleaseArchitectureResponse.md +5 -1
  15. data/docs/PatcheddebAptRemote.md +1 -1
  16. data/docs/PatcheddebAptRepository.md +7 -1
  17. data/lib/pulp_deb_client/api/content_installer_packages_api.rb +3 -3
  18. data/lib/pulp_deb_client/api/content_package_release_components_api.rb +3 -3
  19. data/lib/pulp_deb_client/api/content_packages_api.rb +5 -5
  20. data/lib/pulp_deb_client/api/content_release_architectures_api.rb +9 -3
  21. data/lib/pulp_deb_client/models/deb_apt_remote.rb +1 -1
  22. data/lib/pulp_deb_client/models/deb_apt_remote_response.rb +1 -1
  23. data/lib/pulp_deb_client/models/deb_apt_repository.rb +62 -4
  24. data/lib/pulp_deb_client/models/deb_apt_repository_response.rb +53 -4
  25. data/lib/pulp_deb_client/models/deb_installer_package_response.rb +17 -4
  26. data/lib/pulp_deb_client/models/deb_package_response.rb +17 -4
  27. data/lib/pulp_deb_client/models/deb_release_architecture.rb +56 -4
  28. data/lib/pulp_deb_client/models/deb_release_architecture_response.rb +26 -4
  29. data/lib/pulp_deb_client/models/patcheddeb_apt_remote.rb +1 -1
  30. data/lib/pulp_deb_client/models/patcheddeb_apt_repository.rb +62 -4
  31. data/lib/pulp_deb_client/version.rb +1 -1
  32. data/spec/api/content_installer_packages_api_spec.rb +1 -1
  33. data/spec/api/content_package_release_components_api_spec.rb +1 -1
  34. data/spec/api/content_packages_api_spec.rb +2 -2
  35. data/spec/api/content_release_architectures_api_spec.rb +3 -1
  36. data/spec/models/deb_apt_repository_response_spec.rb +18 -0
  37. data/spec/models/deb_apt_repository_spec.rb +18 -0
  38. data/spec/models/deb_installer_package_response_spec.rb +6 -0
  39. data/spec/models/deb_package_response_spec.rb +6 -0
  40. data/spec/models/deb_release_architecture_response_spec.rb +12 -0
  41. data/spec/models/deb_release_architecture_spec.rb +12 -0
  42. data/spec/models/patcheddeb_apt_repository_spec.rb +18 -0
  43. metadata +82 -82
@@ -31,6 +31,12 @@ module PulpDebClient
31
31
  # Name of the distribution.
32
32
  attr_accessor :distribution
33
33
 
34
+ # Base architecture for an architecture variant.
35
+ attr_accessor :base_architecture
36
+
37
+ # Architecture variant name, if this architecture is a variant.
38
+ attr_accessor :variant_architecture
39
+
34
40
  # Attribute mapping from ruby-style variable name to JSON key.
35
41
  def self.attribute_map
36
42
  {
@@ -38,7 +44,9 @@ module PulpDebClient
38
44
  :'overwrite' => :'overwrite',
39
45
  :'pulp_labels' => :'pulp_labels',
40
46
  :'architecture' => :'architecture',
41
- :'distribution' => :'distribution'
47
+ :'distribution' => :'distribution',
48
+ :'base_architecture' => :'base_architecture',
49
+ :'variant_architecture' => :'variant_architecture'
42
50
  }
43
51
  end
44
52
 
@@ -54,13 +62,17 @@ module PulpDebClient
54
62
  :'overwrite' => :'Boolean',
55
63
  :'pulp_labels' => :'Hash<String, String>',
56
64
  :'architecture' => :'String',
57
- :'distribution' => :'String'
65
+ :'distribution' => :'String',
66
+ :'base_architecture' => :'String',
67
+ :'variant_architecture' => :'String'
58
68
  }
59
69
  end
60
70
 
61
71
  # List of attributes with nullable: true
62
72
  def self.openapi_nullable
63
73
  Set.new([
74
+ :'base_architecture',
75
+ :'variant_architecture'
64
76
  ])
65
77
  end
66
78
 
@@ -104,6 +116,14 @@ module PulpDebClient
104
116
  else
105
117
  self.distribution = nil
106
118
  end
119
+
120
+ if attributes.key?(:'base_architecture')
121
+ self.base_architecture = attributes[:'base_architecture']
122
+ end
123
+
124
+ if attributes.key?(:'variant_architecture')
125
+ self.variant_architecture = attributes[:'variant_architecture']
126
+ end
107
127
  end
108
128
 
109
129
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -127,6 +147,14 @@ module PulpDebClient
127
147
  invalid_properties.push('invalid value for "distribution", the character length must be great than or equal to 1.')
128
148
  end
129
149
 
150
+ if !@base_architecture.nil? && @base_architecture.to_s.length < 1
151
+ invalid_properties.push('invalid value for "base_architecture", the character length must be great than or equal to 1.')
152
+ end
153
+
154
+ if !@variant_architecture.nil? && @variant_architecture.to_s.length < 1
155
+ invalid_properties.push('invalid value for "variant_architecture", the character length must be great than or equal to 1.')
156
+ end
157
+
130
158
  invalid_properties
131
159
  end
132
160
 
@@ -138,6 +166,8 @@ module PulpDebClient
138
166
  return false if @architecture.to_s.length < 1
139
167
  return false if @distribution.nil?
140
168
  return false if @distribution.to_s.length < 1
169
+ return false if !@base_architecture.nil? && @base_architecture.to_s.length < 1
170
+ return false if !@variant_architecture.nil? && @variant_architecture.to_s.length < 1
141
171
  true
142
172
  end
143
173
 
@@ -169,6 +199,26 @@ module PulpDebClient
169
199
  @distribution = distribution
170
200
  end
171
201
 
202
+ # Custom attribute writer method with validation
203
+ # @param [Object] base_architecture Value to be assigned
204
+ def base_architecture=(base_architecture)
205
+ if !base_architecture.nil? && base_architecture.to_s.length < 1
206
+ fail ArgumentError, 'invalid value for "base_architecture", the character length must be great than or equal to 1.'
207
+ end
208
+
209
+ @base_architecture = base_architecture
210
+ end
211
+
212
+ # Custom attribute writer method with validation
213
+ # @param [Object] variant_architecture Value to be assigned
214
+ def variant_architecture=(variant_architecture)
215
+ if !variant_architecture.nil? && variant_architecture.to_s.length < 1
216
+ fail ArgumentError, 'invalid value for "variant_architecture", the character length must be great than or equal to 1.'
217
+ end
218
+
219
+ @variant_architecture = variant_architecture
220
+ end
221
+
172
222
  # Checks equality by comparing each attribute.
173
223
  # @param [Object] Object to be compared
174
224
  def ==(o)
@@ -178,7 +228,9 @@ module PulpDebClient
178
228
  overwrite == o.overwrite &&
179
229
  pulp_labels == o.pulp_labels &&
180
230
  architecture == o.architecture &&
181
- distribution == o.distribution
231
+ distribution == o.distribution &&
232
+ base_architecture == o.base_architecture &&
233
+ variant_architecture == o.variant_architecture
182
234
  end
183
235
 
184
236
  # @see the `==` method
@@ -190,7 +242,7 @@ module PulpDebClient
190
242
  # Calculates hash code according to all attributes.
191
243
  # @return [Integer] Hash code
192
244
  def hash
193
- [repository, overwrite, pulp_labels, architecture, distribution].hash
245
+ [repository, overwrite, pulp_labels, architecture, distribution, base_architecture, variant_architecture].hash
194
246
  end
195
247
 
196
248
  # Builds the object from hash
@@ -38,6 +38,12 @@ module PulpDebClient
38
38
  # Name of the distribution.
39
39
  attr_accessor :distribution
40
40
 
41
+ # Base architecture for an architecture variant.
42
+ attr_accessor :base_architecture
43
+
44
+ # Architecture variant name, if this architecture is a variant.
45
+ attr_accessor :variant_architecture
46
+
41
47
  # Attribute mapping from ruby-style variable name to JSON key.
42
48
  def self.attribute_map
43
49
  {
@@ -48,7 +54,9 @@ module PulpDebClient
48
54
  :'pulp_labels' => :'pulp_labels',
49
55
  :'vuln_report' => :'vuln_report',
50
56
  :'architecture' => :'architecture',
51
- :'distribution' => :'distribution'
57
+ :'distribution' => :'distribution',
58
+ :'base_architecture' => :'base_architecture',
59
+ :'variant_architecture' => :'variant_architecture'
52
60
  }
53
61
  end
54
62
 
@@ -67,13 +75,17 @@ module PulpDebClient
67
75
  :'pulp_labels' => :'Hash<String, String>',
68
76
  :'vuln_report' => :'String',
69
77
  :'architecture' => :'String',
70
- :'distribution' => :'String'
78
+ :'distribution' => :'String',
79
+ :'base_architecture' => :'String',
80
+ :'variant_architecture' => :'String'
71
81
  }
72
82
  end
73
83
 
74
84
  # List of attributes with nullable: true
75
85
  def self.openapi_nullable
76
86
  Set.new([
87
+ :'base_architecture',
88
+ :'variant_architecture'
77
89
  ])
78
90
  end
79
91
 
@@ -129,6 +141,14 @@ module PulpDebClient
129
141
  else
130
142
  self.distribution = nil
131
143
  end
144
+
145
+ if attributes.key?(:'base_architecture')
146
+ self.base_architecture = attributes[:'base_architecture']
147
+ end
148
+
149
+ if attributes.key?(:'variant_architecture')
150
+ self.variant_architecture = attributes[:'variant_architecture']
151
+ end
132
152
  end
133
153
 
134
154
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -168,7 +188,9 @@ module PulpDebClient
168
188
  pulp_labels == o.pulp_labels &&
169
189
  vuln_report == o.vuln_report &&
170
190
  architecture == o.architecture &&
171
- distribution == o.distribution
191
+ distribution == o.distribution &&
192
+ base_architecture == o.base_architecture &&
193
+ variant_architecture == o.variant_architecture
172
194
  end
173
195
 
174
196
  # @see the `==` method
@@ -180,7 +202,7 @@ module PulpDebClient
180
202
  # Calculates hash code according to all attributes.
181
203
  # @return [Integer] Hash code
182
204
  def hash
183
- [pulp_href, prn, pulp_created, pulp_last_updated, pulp_labels, vuln_report, architecture, distribution].hash
205
+ [pulp_href, prn, pulp_created, pulp_last_updated, pulp_labels, vuln_report, architecture, distribution, base_architecture, variant_architecture].hash
184
206
  end
185
207
 
186
208
  # Builds the object from hash
@@ -84,7 +84,7 @@ module PulpDebClient
84
84
  # Whitespace separatet list of components to sync. If none are supplied, all that are available will be synchronized. Leave blank for repositores using \"flat repository format\".
85
85
  attr_accessor :components
86
86
 
87
- # Whitespace separated list of architectures to sync If none are supplied, all that are available will be synchronized. A list of valid architecture specification strings can be found by running \"dpkg-architecture -L\". A sync will download the intersection of the list of architectures provided via this field and those provided by the relevant \"Release\" file. Architecture=\"all\" is always synchronized and does not need to be provided here.
87
+ # Whitespace separated list of architectures to sync. If none are supplied, all that are available will be synchronized. A sync will download the intersection of the architectures provided via this field and those provided by the relevant Release file. Architecture variants should be specified as they appear in the Release file, for example \"amd64v3\". Architecture=\"all\" is always synchronized and does not need to be provided here.
88
88
  attr_accessor :architectures
89
89
 
90
90
  # Sync source packages
@@ -45,6 +45,15 @@ module PulpDebClient
45
45
  # 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/\"}
46
46
  attr_accessor :signing_service_release_overrides
47
47
 
48
+ # A dictionary of Release distributions and the Package Signing Fingerprints they should use. Example: {\"bionic\": \"v4:7FC42CD5F3D8EEC37FC42CD5F3D8EEC3DEADBEEF\"}
49
+ attr_accessor :package_signing_fingerprint_release_overrides
50
+
51
+ # A reference to an associated package signing service.
52
+ attr_accessor :package_signing_service
53
+
54
+ # The pubkey fingerprint to be passed to the package signing service. Format: 'v<N>:<hex-fingerprint>' or 'keyid:<16-hex-char>'. Example: 'v4:ABCDEF1234567890ABCDEF1234567890ABCDEF12'. The signing service will use that on signing operations related to this repository.
55
+ attr_accessor :package_signing_fingerprint
56
+
48
57
  # Attribute mapping from ruby-style variable name to JSON key.
49
58
  def self.attribute_map
50
59
  {
@@ -57,7 +66,10 @@ module PulpDebClient
57
66
  :'autopublish' => :'autopublish',
58
67
  :'publish_upstream_release_fields' => :'publish_upstream_release_fields',
59
68
  :'signing_service' => :'signing_service',
60
- :'signing_service_release_overrides' => :'signing_service_release_overrides'
69
+ :'signing_service_release_overrides' => :'signing_service_release_overrides',
70
+ :'package_signing_fingerprint_release_overrides' => :'package_signing_fingerprint_release_overrides',
71
+ :'package_signing_service' => :'package_signing_service',
72
+ :'package_signing_fingerprint' => :'package_signing_fingerprint'
61
73
  }
62
74
  end
63
75
 
@@ -78,7 +90,10 @@ module PulpDebClient
78
90
  :'autopublish' => :'Boolean',
79
91
  :'publish_upstream_release_fields' => :'Boolean',
80
92
  :'signing_service' => :'String',
81
- :'signing_service_release_overrides' => :'Hash<String, String>'
93
+ :'signing_service_release_overrides' => :'Hash<String, String>',
94
+ :'package_signing_fingerprint_release_overrides' => :'Hash<String, String>',
95
+ :'package_signing_service' => :'String',
96
+ :'package_signing_fingerprint' => :'String'
82
97
  }
83
98
  end
84
99
 
@@ -90,6 +105,8 @@ module PulpDebClient
90
105
  :'retain_checkpoints',
91
106
  :'remote',
92
107
  :'signing_service',
108
+ :'package_signing_service',
109
+ :'package_signing_fingerprint'
93
110
  ])
94
111
  end
95
112
 
@@ -153,6 +170,20 @@ module PulpDebClient
153
170
  self.signing_service_release_overrides = value
154
171
  end
155
172
  end
173
+
174
+ if attributes.key?(:'package_signing_fingerprint_release_overrides')
175
+ if (value = attributes[:'package_signing_fingerprint_release_overrides']).is_a?(Hash)
176
+ self.package_signing_fingerprint_release_overrides = value
177
+ end
178
+ end
179
+
180
+ if attributes.key?(:'package_signing_service')
181
+ self.package_signing_service = attributes[:'package_signing_service']
182
+ end
183
+
184
+ if attributes.key?(:'package_signing_fingerprint')
185
+ self.package_signing_fingerprint = attributes[:'package_signing_fingerprint']
186
+ end
156
187
  end
157
188
 
158
189
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -176,6 +207,14 @@ module PulpDebClient
176
207
  invalid_properties.push('invalid value for "retain_checkpoints", must be greater than or equal to 1.')
177
208
  end
178
209
 
210
+ if !@package_signing_fingerprint.nil? && @package_signing_fingerprint.to_s.length > 68
211
+ invalid_properties.push('invalid value for "package_signing_fingerprint", the character length must be smaller than or equal to 68.')
212
+ end
213
+
214
+ if !@package_signing_fingerprint.nil? && @package_signing_fingerprint.to_s.length < 1
215
+ invalid_properties.push('invalid value for "package_signing_fingerprint", the character length must be great than or equal to 1.')
216
+ end
217
+
179
218
  invalid_properties
180
219
  end
181
220
 
@@ -187,6 +226,8 @@ module PulpDebClient
187
226
  return false if !@description.nil? && @description.to_s.length < 1
188
227
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
189
228
  return false if !@retain_checkpoints.nil? && @retain_checkpoints < 1
229
+ return false if !@package_signing_fingerprint.nil? && @package_signing_fingerprint.to_s.length > 68
230
+ return false if !@package_signing_fingerprint.nil? && @package_signing_fingerprint.to_s.length < 1
190
231
  true
191
232
  end
192
233
 
@@ -234,6 +275,20 @@ module PulpDebClient
234
275
  @retain_checkpoints = retain_checkpoints
235
276
  end
236
277
 
278
+ # Custom attribute writer method with validation
279
+ # @param [Object] package_signing_fingerprint Value to be assigned
280
+ def package_signing_fingerprint=(package_signing_fingerprint)
281
+ if !package_signing_fingerprint.nil? && package_signing_fingerprint.to_s.length > 68
282
+ fail ArgumentError, 'invalid value for "package_signing_fingerprint", the character length must be smaller than or equal to 68.'
283
+ end
284
+
285
+ if !package_signing_fingerprint.nil? && package_signing_fingerprint.to_s.length < 1
286
+ fail ArgumentError, 'invalid value for "package_signing_fingerprint", the character length must be great than or equal to 1.'
287
+ end
288
+
289
+ @package_signing_fingerprint = package_signing_fingerprint
290
+ end
291
+
237
292
  # Checks equality by comparing each attribute.
238
293
  # @param [Object] Object to be compared
239
294
  def ==(o)
@@ -248,7 +303,10 @@ module PulpDebClient
248
303
  autopublish == o.autopublish &&
249
304
  publish_upstream_release_fields == o.publish_upstream_release_fields &&
250
305
  signing_service == o.signing_service &&
251
- signing_service_release_overrides == o.signing_service_release_overrides
306
+ signing_service_release_overrides == o.signing_service_release_overrides &&
307
+ package_signing_fingerprint_release_overrides == o.package_signing_fingerprint_release_overrides &&
308
+ package_signing_service == o.package_signing_service &&
309
+ package_signing_fingerprint == o.package_signing_fingerprint
252
310
  end
253
311
 
254
312
  # @see the `==` method
@@ -260,7 +318,7 @@ module PulpDebClient
260
318
  # Calculates hash code according to all attributes.
261
319
  # @return [Integer] Hash code
262
320
  def hash
263
- [pulp_labels, name, description, retain_repo_versions, retain_checkpoints, remote, autopublish, publish_upstream_release_fields, signing_service, signing_service_release_overrides].hash
321
+ [pulp_labels, name, description, retain_repo_versions, retain_checkpoints, remote, autopublish, publish_upstream_release_fields, signing_service, signing_service_release_overrides, package_signing_fingerprint_release_overrides, package_signing_service, package_signing_fingerprint].hash
264
322
  end
265
323
 
266
324
  # Builds the object from hash
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module PulpDebClient
14
- VERSION = '3.9.0'
14
+ VERSION = '3.10.0'
15
15
  end
@@ -68,7 +68,7 @@ describe 'ContentInstallerPackagesApi' do
68
68
  # @option opts [String] :maintainer Filter results where maintainer matches value
69
69
  # @option opts [String] :multi_arch Filter results where multi_arch matches value * &#x60;no&#x60; - no * &#x60;same&#x60; - same * &#x60;foreign&#x60; - foreign * &#x60;allowed&#x60; - allowed
70
70
  # @option opts [Integer] :offset The initial index from which to return the results.
71
- # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;package&#x60; - Package * &#x60;-package&#x60; - Package (descending) * &#x60;source&#x60; - Source * &#x60;-source&#x60; - Source (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;section&#x60; - Section * &#x60;-section&#x60; - Section (descending) * &#x60;priority&#x60; - Priority * &#x60;-priority&#x60; - Priority (descending) * &#x60;origin&#x60; - Origin * &#x60;-origin&#x60; - Origin (descending) * &#x60;tag&#x60; - Tag * &#x60;-tag&#x60; - Tag (descending) * &#x60;bugs&#x60; - Bugs * &#x60;-bugs&#x60; - Bugs (descending) * &#x60;essential&#x60; - Essential * &#x60;-essential&#x60; - Essential (descending) * &#x60;build_essential&#x60; - Build essential * &#x60;-build_essential&#x60; - Build essential (descending) * &#x60;installed_size&#x60; - Installed size * &#x60;-installed_size&#x60; - Installed size (descending) * &#x60;maintainer&#x60; - Maintainer * &#x60;-maintainer&#x60; - Maintainer (descending) * &#x60;original_maintainer&#x60; - Original maintainer * &#x60;-original_maintainer&#x60; - Original maintainer (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;description_md5&#x60; - Description md5 * &#x60;-description_md5&#x60; - Description md5 (descending) * &#x60;homepage&#x60; - Homepage * &#x60;-homepage&#x60; - Homepage (descending) * &#x60;built_using&#x60; - Built using * &#x60;-built_using&#x60; - Built using (descending) * &#x60;auto_built_package&#x60; - Auto built package * &#x60;-auto_built_package&#x60; - Auto built package (descending) * &#x60;multi_arch&#x60; - Multi arch * &#x60;-multi_arch&#x60; - Multi arch (descending) * &#x60;breaks&#x60; - Breaks * &#x60;-breaks&#x60; - Breaks (descending) * &#x60;conflicts&#x60; - Conflicts * &#x60;-conflicts&#x60; - Conflicts (descending) * &#x60;depends&#x60; - Depends * &#x60;-depends&#x60; - Depends (descending) * &#x60;recommends&#x60; - Recommends * &#x60;-recommends&#x60; - Recommends (descending) * &#x60;suggests&#x60; - Suggests * &#x60;-suggests&#x60; - Suggests (descending) * &#x60;enhances&#x60; - Enhances * &#x60;-enhances&#x60; - Enhances (descending) * &#x60;pre_depends&#x60; - Pre depends * &#x60;-pre_depends&#x60; - Pre depends (descending) * &#x60;provides&#x60; - Provides * &#x60;-provides&#x60; - Provides (descending) * &#x60;replaces&#x60; - Replaces * &#x60;-replaces&#x60; - Replaces (descending) * &#x60;relative_path&#x60; - Relative path * &#x60;-relative_path&#x60; - Relative path (descending) * &#x60;sha256&#x60; - Sha256 * &#x60;-sha256&#x60; - Sha256 (descending) * &#x60;custom_fields&#x60; - Custom fields * &#x60;-custom_fields&#x60; - Custom fields (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
71
+ # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;package&#x60; - Package * &#x60;-package&#x60; - Package (descending) * &#x60;source&#x60; - Source * &#x60;-source&#x60; - Source (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;architecture_variant&#x60; - Architecture variant * &#x60;-architecture_variant&#x60; - Architecture variant (descending) * &#x60;section&#x60; - Section * &#x60;-section&#x60; - Section (descending) * &#x60;priority&#x60; - Priority * &#x60;-priority&#x60; - Priority (descending) * &#x60;origin&#x60; - Origin * &#x60;-origin&#x60; - Origin (descending) * &#x60;tag&#x60; - Tag * &#x60;-tag&#x60; - Tag (descending) * &#x60;bugs&#x60; - Bugs * &#x60;-bugs&#x60; - Bugs (descending) * &#x60;essential&#x60; - Essential * &#x60;-essential&#x60; - Essential (descending) * &#x60;build_essential&#x60; - Build essential * &#x60;-build_essential&#x60; - Build essential (descending) * &#x60;installed_size&#x60; - Installed size * &#x60;-installed_size&#x60; - Installed size (descending) * &#x60;maintainer&#x60; - Maintainer * &#x60;-maintainer&#x60; - Maintainer (descending) * &#x60;original_maintainer&#x60; - Original maintainer * &#x60;-original_maintainer&#x60; - Original maintainer (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;description_md5&#x60; - Description md5 * &#x60;-description_md5&#x60; - Description md5 (descending) * &#x60;homepage&#x60; - Homepage * &#x60;-homepage&#x60; - Homepage (descending) * &#x60;built_using&#x60; - Built using * &#x60;-built_using&#x60; - Built using (descending) * &#x60;auto_built_package&#x60; - Auto built package * &#x60;-auto_built_package&#x60; - Auto built package (descending) * &#x60;multi_arch&#x60; - Multi arch * &#x60;-multi_arch&#x60; - Multi arch (descending) * &#x60;breaks&#x60; - Breaks * &#x60;-breaks&#x60; - Breaks (descending) * &#x60;conflicts&#x60; - Conflicts * &#x60;-conflicts&#x60; - Conflicts (descending) * &#x60;depends&#x60; - Depends * &#x60;-depends&#x60; - Depends (descending) * &#x60;recommends&#x60; - Recommends * &#x60;-recommends&#x60; - Recommends (descending) * &#x60;suggests&#x60; - Suggests * &#x60;-suggests&#x60; - Suggests (descending) * &#x60;enhances&#x60; - Enhances * &#x60;-enhances&#x60; - Enhances (descending) * &#x60;pre_depends&#x60; - Pre depends * &#x60;-pre_depends&#x60; - Pre depends (descending) * &#x60;provides&#x60; - Provides * &#x60;-provides&#x60; - Provides (descending) * &#x60;replaces&#x60; - Replaces * &#x60;-replaces&#x60; - Replaces (descending) * &#x60;relative_path&#x60; - Relative path * &#x60;-relative_path&#x60; - Relative path (descending) * &#x60;sha256&#x60; - Sha256 * &#x60;-sha256&#x60; - Sha256 (descending) * &#x60;signing_keys&#x60; - Signing keys * &#x60;-signing_keys&#x60; - Signing keys (descending) * &#x60;custom_fields&#x60; - Custom fields * &#x60;-custom_fields&#x60; - Custom fields (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
72
72
  # @option opts [String] :origin Filter results where origin matches value
73
73
  # @option opts [String] :original_maintainer Filter results where original_maintainer matches value
74
74
  # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
@@ -52,7 +52,7 @@ describe 'ContentPackageReleaseComponentsApi' do
52
52
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
53
53
  # @option opts [Integer] :limit Number of results to return per page.
54
54
  # @option opts [Integer] :offset The initial index from which to return the results.
55
- # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
55
+ # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;index_architecture&#x60; - Index architecture * &#x60;-index_architecture&#x60; - Index architecture (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
56
56
  # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
57
57
  # @option opts [String] :package
58
58
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
@@ -34,7 +34,7 @@ describe 'ContentPackagesApi' do
34
34
 
35
35
  # unit tests for create
36
36
  # Create a package
37
- # Trigger an asynchronous task to create content,optionally create new repository version.
37
+ # Trigger an asynchronous task to create an DEB package,optionally create new repository version.
38
38
  # @param [Hash] opts the optional parameters
39
39
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
40
40
  # @option opts [String] :repository A URI of a repository the new content unit should be associated with.
@@ -70,7 +70,7 @@ describe 'ContentPackagesApi' do
70
70
  # @option opts [String] :maintainer Filter results where maintainer matches value
71
71
  # @option opts [String] :multi_arch Filter results where multi_arch matches value * &#x60;no&#x60; - no * &#x60;same&#x60; - same * &#x60;foreign&#x60; - foreign * &#x60;allowed&#x60; - allowed
72
72
  # @option opts [Integer] :offset The initial index from which to return the results.
73
- # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;package&#x60; - Package * &#x60;-package&#x60; - Package (descending) * &#x60;source&#x60; - Source * &#x60;-source&#x60; - Source (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;section&#x60; - Section * &#x60;-section&#x60; - Section (descending) * &#x60;priority&#x60; - Priority * &#x60;-priority&#x60; - Priority (descending) * &#x60;origin&#x60; - Origin * &#x60;-origin&#x60; - Origin (descending) * &#x60;tag&#x60; - Tag * &#x60;-tag&#x60; - Tag (descending) * &#x60;bugs&#x60; - Bugs * &#x60;-bugs&#x60; - Bugs (descending) * &#x60;essential&#x60; - Essential * &#x60;-essential&#x60; - Essential (descending) * &#x60;build_essential&#x60; - Build essential * &#x60;-build_essential&#x60; - Build essential (descending) * &#x60;installed_size&#x60; - Installed size * &#x60;-installed_size&#x60; - Installed size (descending) * &#x60;maintainer&#x60; - Maintainer * &#x60;-maintainer&#x60; - Maintainer (descending) * &#x60;original_maintainer&#x60; - Original maintainer * &#x60;-original_maintainer&#x60; - Original maintainer (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;description_md5&#x60; - Description md5 * &#x60;-description_md5&#x60; - Description md5 (descending) * &#x60;homepage&#x60; - Homepage * &#x60;-homepage&#x60; - Homepage (descending) * &#x60;built_using&#x60; - Built using * &#x60;-built_using&#x60; - Built using (descending) * &#x60;auto_built_package&#x60; - Auto built package * &#x60;-auto_built_package&#x60; - Auto built package (descending) * &#x60;multi_arch&#x60; - Multi arch * &#x60;-multi_arch&#x60; - Multi arch (descending) * &#x60;breaks&#x60; - Breaks * &#x60;-breaks&#x60; - Breaks (descending) * &#x60;conflicts&#x60; - Conflicts * &#x60;-conflicts&#x60; - Conflicts (descending) * &#x60;depends&#x60; - Depends * &#x60;-depends&#x60; - Depends (descending) * &#x60;recommends&#x60; - Recommends * &#x60;-recommends&#x60; - Recommends (descending) * &#x60;suggests&#x60; - Suggests * &#x60;-suggests&#x60; - Suggests (descending) * &#x60;enhances&#x60; - Enhances * &#x60;-enhances&#x60; - Enhances (descending) * &#x60;pre_depends&#x60; - Pre depends * &#x60;-pre_depends&#x60; - Pre depends (descending) * &#x60;provides&#x60; - Provides * &#x60;-provides&#x60; - Provides (descending) * &#x60;replaces&#x60; - Replaces * &#x60;-replaces&#x60; - Replaces (descending) * &#x60;relative_path&#x60; - Relative path * &#x60;-relative_path&#x60; - Relative path (descending) * &#x60;sha256&#x60; - Sha256 * &#x60;-sha256&#x60; - Sha256 (descending) * &#x60;custom_fields&#x60; - Custom fields * &#x60;-custom_fields&#x60; - Custom fields (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
73
+ # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;package&#x60; - Package * &#x60;-package&#x60; - Package (descending) * &#x60;source&#x60; - Source * &#x60;-source&#x60; - Source (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;architecture_variant&#x60; - Architecture variant * &#x60;-architecture_variant&#x60; - Architecture variant (descending) * &#x60;section&#x60; - Section * &#x60;-section&#x60; - Section (descending) * &#x60;priority&#x60; - Priority * &#x60;-priority&#x60; - Priority (descending) * &#x60;origin&#x60; - Origin * &#x60;-origin&#x60; - Origin (descending) * &#x60;tag&#x60; - Tag * &#x60;-tag&#x60; - Tag (descending) * &#x60;bugs&#x60; - Bugs * &#x60;-bugs&#x60; - Bugs (descending) * &#x60;essential&#x60; - Essential * &#x60;-essential&#x60; - Essential (descending) * &#x60;build_essential&#x60; - Build essential * &#x60;-build_essential&#x60; - Build essential (descending) * &#x60;installed_size&#x60; - Installed size * &#x60;-installed_size&#x60; - Installed size (descending) * &#x60;maintainer&#x60; - Maintainer * &#x60;-maintainer&#x60; - Maintainer (descending) * &#x60;original_maintainer&#x60; - Original maintainer * &#x60;-original_maintainer&#x60; - Original maintainer (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;description_md5&#x60; - Description md5 * &#x60;-description_md5&#x60; - Description md5 (descending) * &#x60;homepage&#x60; - Homepage * &#x60;-homepage&#x60; - Homepage (descending) * &#x60;built_using&#x60; - Built using * &#x60;-built_using&#x60; - Built using (descending) * &#x60;auto_built_package&#x60; - Auto built package * &#x60;-auto_built_package&#x60; - Auto built package (descending) * &#x60;multi_arch&#x60; - Multi arch * &#x60;-multi_arch&#x60; - Multi arch (descending) * &#x60;breaks&#x60; - Breaks * &#x60;-breaks&#x60; - Breaks (descending) * &#x60;conflicts&#x60; - Conflicts * &#x60;-conflicts&#x60; - Conflicts (descending) * &#x60;depends&#x60; - Depends * &#x60;-depends&#x60; - Depends (descending) * &#x60;recommends&#x60; - Recommends * &#x60;-recommends&#x60; - Recommends (descending) * &#x60;suggests&#x60; - Suggests * &#x60;-suggests&#x60; - Suggests (descending) * &#x60;enhances&#x60; - Enhances * &#x60;-enhances&#x60; - Enhances (descending) * &#x60;pre_depends&#x60; - Pre depends * &#x60;-pre_depends&#x60; - Pre depends (descending) * &#x60;provides&#x60; - Provides * &#x60;-provides&#x60; - Provides (descending) * &#x60;replaces&#x60; - Replaces * &#x60;-replaces&#x60; - Replaces (descending) * &#x60;relative_path&#x60; - Relative path * &#x60;-relative_path&#x60; - Relative path (descending) * &#x60;sha256&#x60; - Sha256 * &#x60;-sha256&#x60; - Sha256 (descending) * &#x60;signing_keys&#x60; - Signing keys * &#x60;-signing_keys&#x60; - Signing keys (descending) * &#x60;custom_fields&#x60; - Custom fields * &#x60;-custom_fields&#x60; - Custom fields (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
74
74
  # @option opts [String] :origin Filter results where origin matches value
75
75
  # @option opts [String] :original_maintainer Filter results where original_maintainer matches value
76
76
  # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
@@ -51,10 +51,11 @@ describe 'ContentReleaseArchitecturesApi' do
51
51
  # @param [Hash] opts the optional parameters
52
52
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
53
53
  # @option opts [String] :architecture Filter results where architecture matches value
54
+ # @option opts [String] :base_architecture Filter results where base_architecture matches value
54
55
  # @option opts [String] :distribution Filter results where distribution matches value
55
56
  # @option opts [Integer] :limit Number of results to return per page.
56
57
  # @option opts [Integer] :offset The initial index from which to return the results.
57
- # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;distribution&#x60; - Distribution * &#x60;-distribution&#x60; - Distribution (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
58
+ # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;distribution&#x60; - Distribution * &#x60;-distribution&#x60; - Distribution (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;base_architecture&#x60; - Base architecture * &#x60;-base_architecture&#x60; - Base architecture (descending) * &#x60;variant_architecture&#x60; - Variant architecture * &#x60;-variant_architecture&#x60; - Variant architecture (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
58
59
  # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
59
60
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
60
61
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
@@ -64,6 +65,7 @@ describe 'ContentReleaseArchitecturesApi' do
64
65
  # @option opts [String] :repository_version
65
66
  # @option opts [String] :repository_version_added
66
67
  # @option opts [String] :repository_version_removed
68
+ # @option opts [String] :variant_architecture Filter results where variant_architecture matches value
67
69
  # @option opts [Array<String>] :fields A list of fields to include in the response.
68
70
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
69
71
  # @return [PaginateddebReleaseArchitectureResponseList]
@@ -123,4 +123,22 @@ describe PulpDebClient::DebAptRepositoryResponse do
123
123
  end
124
124
  end
125
125
 
126
+ describe 'test attribute "package_signing_fingerprint_release_overrides"' do
127
+ it 'should work' do
128
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
129
+ end
130
+ end
131
+
132
+ describe 'test attribute "package_signing_service"' do
133
+ it 'should work' do
134
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
135
+ end
136
+ end
137
+
138
+ describe 'test attribute "package_signing_fingerprint"' do
139
+ it 'should work' do
140
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
141
+ end
142
+ end
143
+
126
144
  end
@@ -87,4 +87,22 @@ describe PulpDebClient::DebAptRepository do
87
87
  end
88
88
  end
89
89
 
90
+ describe 'test attribute "package_signing_fingerprint_release_overrides"' do
91
+ it 'should work' do
92
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
+ end
94
+ end
95
+
96
+ describe 'test attribute "package_signing_service"' do
97
+ it 'should work' do
98
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
+ end
100
+ end
101
+
102
+ describe 'test attribute "package_signing_fingerprint"' do
103
+ it 'should work' do
104
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
+ end
106
+ end
107
+
90
108
  end
@@ -285,4 +285,10 @@ describe PulpDebClient::DebInstallerPackageResponse do
285
285
  end
286
286
  end
287
287
 
288
+ describe 'test attribute "signing_keys"' do
289
+ it 'should work' do
290
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
291
+ end
292
+ end
293
+
288
294
  end
@@ -297,4 +297,10 @@ describe PulpDebClient::DebPackageResponse do
297
297
  end
298
298
  end
299
299
 
300
+ describe 'test attribute "signing_keys"' do
301
+ it 'should work' do
302
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
303
+ end
304
+ end
305
+
300
306
  end
@@ -75,4 +75,16 @@ describe PulpDebClient::DebReleaseArchitectureResponse do
75
75
  end
76
76
  end
77
77
 
78
+ describe 'test attribute "base_architecture"' do
79
+ it 'should work' do
80
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
+ end
82
+ end
83
+
84
+ describe 'test attribute "variant_architecture"' do
85
+ it 'should work' do
86
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
+ end
88
+ end
89
+
78
90
  end
@@ -57,4 +57,16 @@ describe PulpDebClient::DebReleaseArchitecture do
57
57
  end
58
58
  end
59
59
 
60
+ describe 'test attribute "base_architecture"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
+ end
64
+ end
65
+
66
+ describe 'test attribute "variant_architecture"' do
67
+ it 'should work' do
68
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
+ end
70
+ end
71
+
60
72
  end
@@ -87,4 +87,22 @@ describe PulpDebClient::PatcheddebAptRepository do
87
87
  end
88
88
  end
89
89
 
90
+ describe 'test attribute "package_signing_fingerprint_release_overrides"' do
91
+ it 'should work' do
92
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
+ end
94
+ end
95
+
96
+ describe 'test attribute "package_signing_service"' do
97
+ it 'should work' do
98
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
+ end
100
+ end
101
+
102
+ describe 'test attribute "package_signing_fingerprint"' do
103
+ it 'should work' do
104
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
+ end
106
+ end
107
+
90
108
  end