pulp_container_client 2.24.0 → 2.24.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -5
  3. data/docs/ContainerBlobResponse.md +2 -0
  4. data/docs/ContainerContainerDistribution.md +8 -8
  5. data/docs/ContainerContainerDistributionResponse.md +14 -14
  6. data/docs/ContainerContainerPullThroughDistribution.md +8 -8
  7. data/docs/ContainerContainerPullThroughDistributionResponse.md +14 -14
  8. data/docs/ContainerContainerPushRepository.md +8 -8
  9. data/docs/ContainerContainerPushRepositoryResponse.md +14 -14
  10. data/docs/ContainerManifestResponse.md +2 -0
  11. data/docs/ContainerManifestSignatureResponse.md +2 -0
  12. data/docs/ContainerTagResponse.md +2 -0
  13. data/docs/ContentBlobsApi.md +4 -2
  14. data/docs/ContentManifestsApi.md +4 -2
  15. data/docs/ContentSignaturesApi.md +4 -2
  16. data/docs/ContentTagsApi.md +4 -2
  17. data/docs/DistributionsContainerApi.md +2 -2
  18. data/docs/DistributionsPullThroughApi.md +2 -2
  19. data/docs/PatchedcontainerContainerDistribution.md +8 -8
  20. data/docs/PatchedcontainerContainerPullThroughDistribution.md +8 -8
  21. data/docs/PatchedcontainerContainerPushRepository.md +8 -8
  22. data/lib/pulp_container_client/api/content_blobs_api.rb +6 -3
  23. data/lib/pulp_container_client/api/content_manifests_api.rb +6 -3
  24. data/lib/pulp_container_client/api/content_signatures_api.rb +6 -3
  25. data/lib/pulp_container_client/api/content_tags_api.rb +6 -3
  26. data/lib/pulp_container_client/models/container_blob_response.rb +13 -1
  27. data/lib/pulp_container_client/models/container_container_distribution.rb +65 -65
  28. data/lib/pulp_container_client/models/container_container_distribution_response.rb +73 -73
  29. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +65 -65
  30. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +73 -73
  31. data/lib/pulp_container_client/models/container_container_push_repository.rb +48 -48
  32. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +69 -69
  33. data/lib/pulp_container_client/models/container_manifest_response.rb +13 -1
  34. data/lib/pulp_container_client/models/container_manifest_signature_response.rb +13 -1
  35. data/lib/pulp_container_client/models/container_tag_response.rb +13 -1
  36. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +58 -58
  37. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +58 -58
  38. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +48 -48
  39. data/lib/pulp_container_client/version.rb +1 -1
  40. data/spec/api/content_blobs_api_spec.rb +2 -1
  41. data/spec/api/content_manifests_api_spec.rb +2 -1
  42. data/spec/api/content_signatures_api_spec.rb +2 -1
  43. data/spec/api/content_tags_api_spec.rb +2 -1
  44. data/spec/models/container_blob_response_spec.rb +6 -0
  45. data/spec/models/container_container_distribution_response_spec.rb +11 -11
  46. data/spec/models/container_container_distribution_spec.rb +6 -6
  47. data/spec/models/container_container_pull_through_distribution_response_spec.rb +11 -11
  48. data/spec/models/container_container_pull_through_distribution_spec.rb +6 -6
  49. data/spec/models/container_container_push_repository_response_spec.rb +11 -11
  50. data/spec/models/container_container_push_repository_spec.rb +4 -4
  51. data/spec/models/container_manifest_response_spec.rb +6 -0
  52. data/spec/models/container_manifest_signature_response_spec.rb +6 -0
  53. data/spec/models/container_tag_response_spec.rb +6 -0
  54. data/spec/models/patchedcontainer_container_distribution_spec.rb +6 -6
  55. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +6 -6
  56. data/spec/models/patchedcontainer_container_push_repository_spec.rb +4 -4
  57. metadata +63 -63
@@ -16,22 +16,22 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # A serializer for a specialized pull-through distribution referencing sub-distributions.
18
18
  class PatchedcontainerContainerPullThroughDistribution
19
- attr_accessor :pulp_labels
20
-
21
- # The latest RepositoryVersion for this Repository will be served.
22
- attr_accessor :repository
23
-
24
- # An optional content-guard. If none is specified, a default one will be used.
25
- attr_accessor :content_guard
26
-
27
19
  # Whether this distribution should be shown in the content app.
28
20
  attr_accessor :hidden
29
21
 
22
+ # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
23
+ attr_accessor :base_path
24
+
30
25
  # A unique name. Ex, `rawhide` and `stable`.
31
26
  attr_accessor :name
32
27
 
33
- # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
34
- attr_accessor :base_path
28
+ # An optional content-guard. If none is specified, a default one will be used.
29
+ attr_accessor :content_guard
30
+
31
+ attr_accessor :pulp_labels
32
+
33
+ # The latest RepositoryVersion for this Repository will be served.
34
+ attr_accessor :repository
35
35
 
36
36
  # Remote that can be used to fetch content when using pull-through caching.
37
37
  attr_accessor :remote
@@ -48,12 +48,12 @@ module PulpContainerClient
48
48
  # Attribute mapping from ruby-style variable name to JSON key.
49
49
  def self.attribute_map
50
50
  {
51
- :'pulp_labels' => :'pulp_labels',
52
- :'repository' => :'repository',
53
- :'content_guard' => :'content_guard',
54
51
  :'hidden' => :'hidden',
55
- :'name' => :'name',
56
52
  :'base_path' => :'base_path',
53
+ :'name' => :'name',
54
+ :'content_guard' => :'content_guard',
55
+ :'pulp_labels' => :'pulp_labels',
56
+ :'repository' => :'repository',
57
57
  :'remote' => :'remote',
58
58
  :'distributions' => :'distributions',
59
59
  :'private' => :'private',
@@ -69,12 +69,12 @@ module PulpContainerClient
69
69
  # Attribute type mapping.
70
70
  def self.openapi_types
71
71
  {
72
- :'pulp_labels' => :'Hash<String, String>',
73
- :'repository' => :'String',
74
- :'content_guard' => :'String',
75
72
  :'hidden' => :'Boolean',
76
- :'name' => :'String',
77
73
  :'base_path' => :'String',
74
+ :'name' => :'String',
75
+ :'content_guard' => :'String',
76
+ :'pulp_labels' => :'Hash<String, String>',
77
+ :'repository' => :'String',
78
78
  :'remote' => :'String',
79
79
  :'distributions' => :'Array<String>',
80
80
  :'private' => :'Boolean',
@@ -105,32 +105,32 @@ module PulpContainerClient
105
105
  h[k.to_sym] = v
106
106
  }
107
107
 
108
- if attributes.key?(:'pulp_labels')
109
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
110
- self.pulp_labels = value
111
- end
112
- end
113
-
114
- if attributes.key?(:'repository')
115
- self.repository = attributes[:'repository']
116
- end
117
-
118
- if attributes.key?(:'content_guard')
119
- self.content_guard = attributes[:'content_guard']
120
- end
121
-
122
108
  if attributes.key?(:'hidden')
123
109
  self.hidden = attributes[:'hidden']
124
110
  else
125
111
  self.hidden = false
126
112
  end
127
113
 
114
+ if attributes.key?(:'base_path')
115
+ self.base_path = attributes[:'base_path']
116
+ end
117
+
128
118
  if attributes.key?(:'name')
129
119
  self.name = attributes[:'name']
130
120
  end
131
121
 
132
- if attributes.key?(:'base_path')
133
- self.base_path = attributes[:'base_path']
122
+ if attributes.key?(:'content_guard')
123
+ self.content_guard = attributes[:'content_guard']
124
+ end
125
+
126
+ if attributes.key?(:'pulp_labels')
127
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
128
+ self.pulp_labels = value
129
+ end
130
+ end
131
+
132
+ if attributes.key?(:'repository')
133
+ self.repository = attributes[:'repository']
134
134
  end
135
135
 
136
136
  if attributes.key?(:'remote')
@@ -157,14 +157,14 @@ module PulpContainerClient
157
157
  def list_invalid_properties
158
158
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
159
159
  invalid_properties = Array.new
160
- if !@name.nil? && @name.to_s.length < 1
161
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
162
- end
163
-
164
160
  if !@base_path.nil? && @base_path.to_s.length < 1
165
161
  invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
166
162
  end
167
163
 
164
+ if !@name.nil? && @name.to_s.length < 1
165
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
166
+ end
167
+
168
168
  if !@description.nil? && @description.to_s.length < 1
169
169
  invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
170
170
  end
@@ -176,26 +176,12 @@ module PulpContainerClient
176
176
  # @return true if the model is valid
177
177
  def valid?
178
178
  warn '[DEPRECATED] the `valid?` method is obsolete'
179
- return false if !@name.nil? && @name.to_s.length < 1
180
179
  return false if !@base_path.nil? && @base_path.to_s.length < 1
180
+ return false if !@name.nil? && @name.to_s.length < 1
181
181
  return false if !@description.nil? && @description.to_s.length < 1
182
182
  true
183
183
  end
184
184
 
185
- # Custom attribute writer method with validation
186
- # @param [Object] name Value to be assigned
187
- def name=(name)
188
- if name.nil?
189
- fail ArgumentError, 'name cannot be nil'
190
- end
191
-
192
- if name.to_s.length < 1
193
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
194
- end
195
-
196
- @name = name
197
- end
198
-
199
185
  # Custom attribute writer method with validation
200
186
  # @param [Object] base_path Value to be assigned
201
187
  def base_path=(base_path)
@@ -210,6 +196,20 @@ module PulpContainerClient
210
196
  @base_path = base_path
211
197
  end
212
198
 
199
+ # Custom attribute writer method with validation
200
+ # @param [Object] name Value to be assigned
201
+ def name=(name)
202
+ if name.nil?
203
+ fail ArgumentError, 'name cannot be nil'
204
+ end
205
+
206
+ if name.to_s.length < 1
207
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
208
+ end
209
+
210
+ @name = name
211
+ end
212
+
213
213
  # Custom attribute writer method with validation
214
214
  # @param [Object] description Value to be assigned
215
215
  def description=(description)
@@ -225,12 +225,12 @@ module PulpContainerClient
225
225
  def ==(o)
226
226
  return true if self.equal?(o)
227
227
  self.class == o.class &&
228
- pulp_labels == o.pulp_labels &&
229
- repository == o.repository &&
230
- content_guard == o.content_guard &&
231
228
  hidden == o.hidden &&
232
- name == o.name &&
233
229
  base_path == o.base_path &&
230
+ name == o.name &&
231
+ content_guard == o.content_guard &&
232
+ pulp_labels == o.pulp_labels &&
233
+ repository == o.repository &&
234
234
  remote == o.remote &&
235
235
  distributions == o.distributions &&
236
236
  private == o.private &&
@@ -246,7 +246,7 @@ module PulpContainerClient
246
246
  # Calculates hash code according to all attributes.
247
247
  # @return [Integer] Hash code
248
248
  def hash
249
- [pulp_labels, repository, content_guard, hidden, name, base_path, remote, distributions, private, description].hash
249
+ [hidden, base_path, name, content_guard, pulp_labels, repository, remote, distributions, private, description].hash
250
250
  end
251
251
 
252
252
  # Builds the object from hash
@@ -16,28 +16,28 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # Serializer for Container Push Repositories.
18
18
  class PatchedcontainerContainerPushRepository
19
- attr_accessor :pulp_labels
19
+ # A reference to an associated signing service.
20
+ attr_accessor :manifest_signing_service
20
21
 
21
- # An optional description.
22
- attr_accessor :description
22
+ # Retain X versions of the repository. Default is null which retains all versions.
23
+ attr_accessor :retain_repo_versions
23
24
 
24
25
  # A unique name for this repository.
25
26
  attr_accessor :name
26
27
 
27
- # Retain X versions of the repository. Default is null which retains all versions.
28
- attr_accessor :retain_repo_versions
28
+ # An optional description.
29
+ attr_accessor :description
29
30
 
30
- # A reference to an associated signing service.
31
- attr_accessor :manifest_signing_service
31
+ attr_accessor :pulp_labels
32
32
 
33
33
  # Attribute mapping from ruby-style variable name to JSON key.
34
34
  def self.attribute_map
35
35
  {
36
- :'pulp_labels' => :'pulp_labels',
37
- :'description' => :'description',
38
- :'name' => :'name',
36
+ :'manifest_signing_service' => :'manifest_signing_service',
39
37
  :'retain_repo_versions' => :'retain_repo_versions',
40
- :'manifest_signing_service' => :'manifest_signing_service'
38
+ :'name' => :'name',
39
+ :'description' => :'description',
40
+ :'pulp_labels' => :'pulp_labels'
41
41
  }
42
42
  end
43
43
 
@@ -49,20 +49,20 @@ module PulpContainerClient
49
49
  # Attribute type mapping.
50
50
  def self.openapi_types
51
51
  {
52
- :'pulp_labels' => :'Hash<String, String>',
53
- :'description' => :'String',
54
- :'name' => :'String',
52
+ :'manifest_signing_service' => :'String',
55
53
  :'retain_repo_versions' => :'Integer',
56
- :'manifest_signing_service' => :'String'
54
+ :'name' => :'String',
55
+ :'description' => :'String',
56
+ :'pulp_labels' => :'Hash<String, String>'
57
57
  }
58
58
  end
59
59
 
60
60
  # List of attributes with nullable: true
61
61
  def self.openapi_nullable
62
62
  Set.new([
63
- :'description',
63
+ :'manifest_signing_service',
64
64
  :'retain_repo_versions',
65
- :'manifest_signing_service'
65
+ :'description',
66
66
  ])
67
67
  end
68
68
 
@@ -81,26 +81,26 @@ module PulpContainerClient
81
81
  h[k.to_sym] = v
82
82
  }
83
83
 
84
- if attributes.key?(:'pulp_labels')
85
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
86
- self.pulp_labels = value
87
- end
84
+ if attributes.key?(:'manifest_signing_service')
85
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
88
86
  end
89
87
 
90
- if attributes.key?(:'description')
91
- self.description = attributes[:'description']
88
+ if attributes.key?(:'retain_repo_versions')
89
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
92
90
  end
93
91
 
94
92
  if attributes.key?(:'name')
95
93
  self.name = attributes[:'name']
96
94
  end
97
95
 
98
- if attributes.key?(:'retain_repo_versions')
99
- self.retain_repo_versions = attributes[:'retain_repo_versions']
96
+ if attributes.key?(:'description')
97
+ self.description = attributes[:'description']
100
98
  end
101
99
 
102
- if attributes.key?(:'manifest_signing_service')
103
- self.manifest_signing_service = attributes[:'manifest_signing_service']
100
+ if attributes.key?(:'pulp_labels')
101
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
102
+ self.pulp_labels = value
103
+ end
104
104
  end
105
105
  end
106
106
 
@@ -109,16 +109,16 @@ module PulpContainerClient
109
109
  def list_invalid_properties
110
110
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
111
111
  invalid_properties = Array.new
112
- if !@description.nil? && @description.to_s.length < 1
113
- invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
112
+ if !@retain_repo_versions.nil? && @retain_repo_versions < 1
113
+ invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
114
114
  end
115
115
 
116
116
  if !@name.nil? && @name.to_s.length < 1
117
117
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
118
118
  end
119
119
 
120
- if !@retain_repo_versions.nil? && @retain_repo_versions < 1
121
- invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
120
+ if !@description.nil? && @description.to_s.length < 1
121
+ invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
122
122
  end
123
123
 
124
124
  invalid_properties
@@ -128,20 +128,20 @@ module PulpContainerClient
128
128
  # @return true if the model is valid
129
129
  def valid?
130
130
  warn '[DEPRECATED] the `valid?` method is obsolete'
131
- return false if !@description.nil? && @description.to_s.length < 1
132
- return false if !@name.nil? && @name.to_s.length < 1
133
131
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
132
+ return false if !@name.nil? && @name.to_s.length < 1
133
+ return false if !@description.nil? && @description.to_s.length < 1
134
134
  true
135
135
  end
136
136
 
137
137
  # Custom attribute writer method with validation
138
- # @param [Object] description Value to be assigned
139
- def description=(description)
140
- if !description.nil? && description.to_s.length < 1
141
- fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
138
+ # @param [Object] retain_repo_versions Value to be assigned
139
+ def retain_repo_versions=(retain_repo_versions)
140
+ if !retain_repo_versions.nil? && retain_repo_versions < 1
141
+ fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
142
142
  end
143
143
 
144
- @description = description
144
+ @retain_repo_versions = retain_repo_versions
145
145
  end
146
146
 
147
147
  # Custom attribute writer method with validation
@@ -159,13 +159,13 @@ module PulpContainerClient
159
159
  end
160
160
 
161
161
  # Custom attribute writer method with validation
162
- # @param [Object] retain_repo_versions Value to be assigned
163
- def retain_repo_versions=(retain_repo_versions)
164
- if !retain_repo_versions.nil? && retain_repo_versions < 1
165
- fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
162
+ # @param [Object] description Value to be assigned
163
+ def description=(description)
164
+ if !description.nil? && description.to_s.length < 1
165
+ fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
166
166
  end
167
167
 
168
- @retain_repo_versions = retain_repo_versions
168
+ @description = description
169
169
  end
170
170
 
171
171
  # Checks equality by comparing each attribute.
@@ -173,11 +173,11 @@ module PulpContainerClient
173
173
  def ==(o)
174
174
  return true if self.equal?(o)
175
175
  self.class == o.class &&
176
- pulp_labels == o.pulp_labels &&
177
- description == o.description &&
178
- name == o.name &&
176
+ manifest_signing_service == o.manifest_signing_service &&
179
177
  retain_repo_versions == o.retain_repo_versions &&
180
- manifest_signing_service == o.manifest_signing_service
178
+ name == o.name &&
179
+ description == o.description &&
180
+ pulp_labels == o.pulp_labels
181
181
  end
182
182
 
183
183
  # @see the `==` method
@@ -189,7 +189,7 @@ module PulpContainerClient
189
189
  # Calculates hash code according to all attributes.
190
190
  # @return [Integer] Hash code
191
191
  def hash
192
- [pulp_labels, description, name, retain_repo_versions, manifest_signing_service].hash
192
+ [manifest_signing_service, retain_repo_versions, name, description, pulp_labels].hash
193
193
  end
194
194
 
195
195
  # Builds the object from hash
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module PulpContainerClient
14
- VERSION = '2.24.0'
14
+ VERSION = '2.24.1'
15
15
  end
@@ -40,11 +40,12 @@ describe 'ContentBlobsApi' do
40
40
  # @option opts [Array<String>] :digest__in Filter results where digest is in a comma-separated list of values
41
41
  # @option opts [Integer] :limit Number of results to return per page.
42
42
  # @option opts [Integer] :offset The initial index from which to return the results.
43
- # @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;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;digest&#x60; - Digest * &#x60;-digest&#x60; - Digest (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
43
+ # @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;digest&#x60; - Digest * &#x60;-digest&#x60; - Digest (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
44
44
  # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
45
45
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
46
46
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
47
47
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
48
+ # @option opts [String] :pulp_label_select Filter labels by search string
48
49
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
49
50
  # @option opts [String] :repository_version Repository Version referenced by HREF/PRN
50
51
  # @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
@@ -43,11 +43,12 @@ describe 'ContentManifestsApi' do
43
43
  # @option opts [Integer] :limit Number of results to return per page.
44
44
  # @option opts [Array<String>] :media_type * &#x60;application/vnd.docker.distribution.manifest.v1+json&#x60; - application/vnd.docker.distribution.manifest.v1+json * &#x60;application/vnd.docker.distribution.manifest.v2+json&#x60; - application/vnd.docker.distribution.manifest.v2+json * &#x60;application/vnd.docker.distribution.manifest.list.v2+json&#x60; - application/vnd.docker.distribution.manifest.list.v2+json * &#x60;application/vnd.oci.image.manifest.v1+json&#x60; - application/vnd.oci.image.manifest.v1+json * &#x60;application/vnd.oci.image.index.v1+json&#x60; - application/vnd.oci.image.index.v1+json
45
45
  # @option opts [Integer] :offset The initial index from which to return the results.
46
- # @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;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;digest&#x60; - Digest * &#x60;-digest&#x60; - Digest (descending) * &#x60;schema_version&#x60; - Schema version * &#x60;-schema_version&#x60; - Schema version (descending) * &#x60;media_type&#x60; - Media type * &#x60;-media_type&#x60; - Media type (descending) * &#x60;type&#x60; - Type * &#x60;-type&#x60; - Type (descending) * &#x60;data&#x60; - Data * &#x60;-data&#x60; - Data (descending) * &#x60;annotations&#x60; - Annotations * &#x60;-annotations&#x60; - Annotations (descending) * &#x60;labels&#x60; - Labels * &#x60;-labels&#x60; - Labels (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;os&#x60; - Os * &#x60;-os&#x60; - Os (descending) * &#x60;compressed_image_size&#x60; - Compressed image size * &#x60;-compressed_image_size&#x60; - Compressed image size (descending) * &#x60;is_bootable&#x60; - Is bootable * &#x60;-is_bootable&#x60; - Is bootable (descending) * &#x60;is_flatpak&#x60; - Is flatpak * &#x60;-is_flatpak&#x60; - Is flatpak (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
46
+ # @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;digest&#x60; - Digest * &#x60;-digest&#x60; - Digest (descending) * &#x60;schema_version&#x60; - Schema version * &#x60;-schema_version&#x60; - Schema version (descending) * &#x60;media_type&#x60; - Media type * &#x60;-media_type&#x60; - Media type (descending) * &#x60;type&#x60; - Type * &#x60;-type&#x60; - Type (descending) * &#x60;data&#x60; - Data * &#x60;-data&#x60; - Data (descending) * &#x60;annotations&#x60; - Annotations * &#x60;-annotations&#x60; - Annotations (descending) * &#x60;labels&#x60; - Labels * &#x60;-labels&#x60; - Labels (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;os&#x60; - Os * &#x60;-os&#x60; - Os (descending) * &#x60;compressed_image_size&#x60; - Compressed image size * &#x60;-compressed_image_size&#x60; - Compressed image size (descending) * &#x60;is_bootable&#x60; - Is bootable * &#x60;-is_bootable&#x60; - Is bootable (descending) * &#x60;is_flatpak&#x60; - Is flatpak * &#x60;-is_flatpak&#x60; - Is flatpak (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
47
47
  # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
48
48
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
49
49
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
50
50
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
51
+ # @option opts [String] :pulp_label_select Filter labels by search string
51
52
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
52
53
  # @option opts [String] :repository_version Repository Version referenced by HREF/PRN
53
54
  # @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
@@ -52,11 +52,12 @@ describe 'ContentSignaturesApi' do
52
52
  # @option opts [String] :name__regex Filter results where name matches regex value
53
53
  # @option opts [String] :name__startswith Filter results where name starts with value
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;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;digest&#x60; - Digest * &#x60;-digest&#x60; - Digest (descending) * &#x60;type&#x60; - Type * &#x60;-type&#x60; - Type (descending) * &#x60;key_id&#x60; - Key id * &#x60;-key_id&#x60; - Key id (descending) * &#x60;timestamp&#x60; - Timestamp * &#x60;-timestamp&#x60; - Timestamp (descending) * &#x60;creator&#x60; - Creator * &#x60;-creator&#x60; - Creator (descending) * &#x60;data&#x60; - Data * &#x60;-data&#x60; - Data (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;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;digest&#x60; - Digest * &#x60;-digest&#x60; - Digest (descending) * &#x60;type&#x60; - Type * &#x60;-type&#x60; - Type (descending) * &#x60;key_id&#x60; - Key id * &#x60;-key_id&#x60; - Key id (descending) * &#x60;timestamp&#x60; - Timestamp * &#x60;-timestamp&#x60; - Timestamp (descending) * &#x60;creator&#x60; - Creator * &#x60;-creator&#x60; - Creator (descending) * &#x60;data&#x60; - Data * &#x60;-data&#x60; - Data (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 [Array<String>] :prn__in Multiple values may be separated by commas.
58
58
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
59
59
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
60
+ # @option opts [String] :pulp_label_select Filter labels by search string
60
61
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
61
62
  # @option opts [String] :repository_version Repository Version referenced by HREF/PRN
62
63
  # @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
@@ -42,11 +42,12 @@ describe 'ContentTagsApi' do
42
42
  # @option opts [String] :name Filter results where name matches value
43
43
  # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
44
44
  # @option opts [Integer] :offset The initial index from which to return the results.
45
- # @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;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
45
+ # @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;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
46
46
  # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
47
47
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
48
48
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
49
49
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
50
+ # @option opts [String] :pulp_label_select Filter labels by search string
50
51
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
51
52
  # @option opts [String] :repository_version Repository Version referenced by HREF/PRN
52
53
  # @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
@@ -51,6 +51,12 @@ describe PulpContainerClient::ContainerBlobResponse do
51
51
  end
52
52
  end
53
53
 
54
+ describe 'test attribute "pulp_labels"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
54
60
  describe 'test attribute "artifact"' do
55
61
  it 'should work' do
56
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -27,67 +27,67 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "pulp_labels"' do
30
+ describe 'test attribute "prn"' do
31
31
  it 'should work' do
32
32
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "repository"' do
36
+ describe 'test attribute "pulp_href"' do
37
37
  it 'should work' do
38
38
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "pulp_created"' do
42
+ describe 'test attribute "pulp_last_updated"' do
43
43
  it 'should work' do
44
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "content_guard"' do
48
+ describe 'test attribute "hidden"' do
49
49
  it 'should work' do
50
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "prn"' do
54
+ describe 'test attribute "base_path"' do
55
55
  it 'should work' do
56
56
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "no_content_change_since"' do
60
+ describe 'test attribute "name"' do
61
61
  it 'should work' do
62
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
63
  end
64
64
  end
65
65
 
66
- describe 'test attribute "hidden"' do
66
+ describe 'test attribute "content_guard"' do
67
67
  it 'should work' do
68
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "pulp_href"' do
72
+ describe 'test attribute "pulp_labels"' do
73
73
  it 'should work' do
74
74
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
75
  end
76
76
  end
77
77
 
78
- describe 'test attribute "name"' do
78
+ describe 'test attribute "no_content_change_since"' do
79
79
  it 'should work' do
80
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
81
  end
82
82
  end
83
83
 
84
- describe 'test attribute "pulp_last_updated"' do
84
+ describe 'test attribute "pulp_created"' do
85
85
  it 'should work' do
86
86
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "base_path"' do
90
+ describe 'test attribute "repository"' do
91
91
  it 'should work' do
92
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
93
  end
@@ -27,37 +27,37 @@ describe PulpContainerClient::ContainerContainerDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "pulp_labels"' do
30
+ describe 'test attribute "hidden"' do
31
31
  it 'should work' do
32
32
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "repository"' do
36
+ describe 'test attribute "base_path"' do
37
37
  it 'should work' do
38
38
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "content_guard"' do
42
+ describe 'test attribute "name"' do
43
43
  it 'should work' do
44
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "hidden"' do
48
+ describe 'test attribute "content_guard"' do
49
49
  it 'should work' do
50
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "name"' do
54
+ describe 'test attribute "pulp_labels"' do
55
55
  it 'should work' do
56
56
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "base_path"' do
60
+ describe 'test attribute "repository"' do
61
61
  it 'should work' do
62
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
63
  end