pulp_container_client 2.27.8 → 2.28.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 (57) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContainerContainerDistribution.md +8 -8
  4. data/docs/ContainerContainerDistributionResponse.md +18 -18
  5. data/docs/ContainerContainerNamespace.md +3 -1
  6. data/docs/ContainerContainerNamespaceResponse.md +3 -1
  7. data/docs/ContainerContainerPullThroughDistribution.md +8 -8
  8. data/docs/ContainerContainerPullThroughDistributionResponse.md +18 -18
  9. data/docs/ContainerContainerPushRepository.md +7 -7
  10. data/docs/ContainerContainerPushRepositoryResponse.md +16 -16
  11. data/docs/ContainerContainerRemote.md +6 -2
  12. data/docs/ContainerContainerRemoteResponse.md +4 -4
  13. data/docs/ContainerManifestSignatureResponse.md +2 -0
  14. data/docs/ContentSignaturesApi.md +2 -2
  15. data/docs/DistributionsContainerApi.md +2 -2
  16. data/docs/DistributionsPullThroughApi.md +2 -2
  17. data/docs/PatchedcontainerContainerDistribution.md +8 -8
  18. data/docs/PatchedcontainerContainerPullThroughDistribution.md +8 -8
  19. data/docs/PatchedcontainerContainerPushRepository.md +7 -7
  20. data/docs/PatchedcontainerContainerRemote.md +6 -2
  21. data/docs/PulpContainerNamespacesApi.md +2 -2
  22. data/lib/pulp_container_client/api/content_signatures_api.rb +3 -3
  23. data/lib/pulp_container_client/api/pulp_container_namespaces_api.rb +3 -3
  24. data/lib/pulp_container_client/models/container_container_distribution.rb +68 -68
  25. data/lib/pulp_container_client/models/container_container_distribution_response.rb +85 -85
  26. data/lib/pulp_container_client/models/container_container_namespace.rb +15 -4
  27. data/lib/pulp_container_client/models/container_container_namespace_response.rb +15 -4
  28. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +68 -68
  29. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +85 -85
  30. data/lib/pulp_container_client/models/container_container_push_repository.rb +59 -59
  31. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +73 -73
  32. data/lib/pulp_container_client/models/container_container_remote.rb +29 -3
  33. data/lib/pulp_container_client/models/container_container_remote_response.rb +19 -19
  34. data/lib/pulp_container_client/models/container_manifest_signature_response.rb +14 -1
  35. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +61 -61
  36. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +61 -61
  37. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +57 -57
  38. data/lib/pulp_container_client/models/patchedcontainer_container_remote.rb +29 -3
  39. data/lib/pulp_container_client/version.rb +1 -1
  40. data/spec/api/content_signatures_api_spec.rb +1 -1
  41. data/spec/api/pulp_container_namespaces_api_spec.rb +1 -1
  42. data/spec/models/container_container_distribution_response_spec.rb +12 -12
  43. data/spec/models/container_container_distribution_spec.rb +7 -7
  44. data/spec/models/container_container_namespace_response_spec.rb +6 -0
  45. data/spec/models/container_container_namespace_spec.rb +6 -0
  46. data/spec/models/container_container_pull_through_distribution_response_spec.rb +12 -12
  47. data/spec/models/container_container_pull_through_distribution_spec.rb +7 -7
  48. data/spec/models/container_container_push_repository_response_spec.rb +12 -12
  49. data/spec/models/container_container_push_repository_spec.rb +5 -5
  50. data/spec/models/container_container_remote_response_spec.rb +2 -2
  51. data/spec/models/container_container_remote_spec.rb +12 -0
  52. data/spec/models/container_manifest_signature_response_spec.rb +6 -0
  53. data/spec/models/patchedcontainer_container_distribution_spec.rb +7 -7
  54. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +7 -7
  55. data/spec/models/patchedcontainer_container_push_repository_spec.rb +5 -5
  56. data/spec/models/patchedcontainer_container_remote_spec.rb +12 -0
  57. metadata +59 -59
@@ -16,32 +16,32 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # Serializer for Container Push Repositories.
18
18
  class PatchedcontainerContainerPushRepository
19
- # A unique name for this repository.
20
- attr_accessor :name
21
-
22
- # Retain X versions of the repository. Default is null which retains all versions.
23
- attr_accessor :retain_repo_versions
24
-
25
19
  # A reference to an associated signing service.
26
20
  attr_accessor :manifest_signing_service
27
21
 
28
- # Retain X checkpoint publications for the repository. Default is null which retains all checkpoints.
29
- attr_accessor :retain_checkpoints
22
+ # Retain X versions of the repository. Default is null which retains all versions.
23
+ attr_accessor :retain_repo_versions
30
24
 
31
25
  attr_accessor :pulp_labels
32
26
 
27
+ # A unique name for this repository.
28
+ attr_accessor :name
29
+
33
30
  # An optional description.
34
31
  attr_accessor :description
35
32
 
33
+ # Retain X checkpoint publications for the repository. Default is null which retains all checkpoints.
34
+ attr_accessor :retain_checkpoints
35
+
36
36
  # Attribute mapping from ruby-style variable name to JSON key.
37
37
  def self.attribute_map
38
38
  {
39
- :'name' => :'name',
40
- :'retain_repo_versions' => :'retain_repo_versions',
41
39
  :'manifest_signing_service' => :'manifest_signing_service',
42
- :'retain_checkpoints' => :'retain_checkpoints',
40
+ :'retain_repo_versions' => :'retain_repo_versions',
43
41
  :'pulp_labels' => :'pulp_labels',
44
- :'description' => :'description'
42
+ :'name' => :'name',
43
+ :'description' => :'description',
44
+ :'retain_checkpoints' => :'retain_checkpoints'
45
45
  }
46
46
  end
47
47
 
@@ -53,22 +53,22 @@ module PulpContainerClient
53
53
  # Attribute type mapping.
54
54
  def self.openapi_types
55
55
  {
56
- :'name' => :'String',
57
- :'retain_repo_versions' => :'Integer',
58
56
  :'manifest_signing_service' => :'String',
59
- :'retain_checkpoints' => :'Integer',
57
+ :'retain_repo_versions' => :'Integer',
60
58
  :'pulp_labels' => :'Hash<String, String>',
61
- :'description' => :'String'
59
+ :'name' => :'String',
60
+ :'description' => :'String',
61
+ :'retain_checkpoints' => :'Integer'
62
62
  }
63
63
  end
64
64
 
65
65
  # List of attributes with nullable: true
66
66
  def self.openapi_nullable
67
67
  Set.new([
68
- :'retain_repo_versions',
69
68
  :'manifest_signing_service',
70
- :'retain_checkpoints',
71
- :'description'
69
+ :'retain_repo_versions',
70
+ :'description',
71
+ :'retain_checkpoints'
72
72
  ])
73
73
  end
74
74
 
@@ -87,20 +87,12 @@ module PulpContainerClient
87
87
  h[k.to_sym] = v
88
88
  }
89
89
 
90
- if attributes.key?(:'name')
91
- self.name = attributes[:'name']
92
- end
93
-
94
- if attributes.key?(:'retain_repo_versions')
95
- self.retain_repo_versions = attributes[:'retain_repo_versions']
96
- end
97
-
98
90
  if attributes.key?(:'manifest_signing_service')
99
91
  self.manifest_signing_service = attributes[:'manifest_signing_service']
100
92
  end
101
93
 
102
- if attributes.key?(:'retain_checkpoints')
103
- self.retain_checkpoints = attributes[:'retain_checkpoints']
94
+ if attributes.key?(:'retain_repo_versions')
95
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
104
96
  end
105
97
 
106
98
  if attributes.key?(:'pulp_labels')
@@ -109,9 +101,17 @@ module PulpContainerClient
109
101
  end
110
102
  end
111
103
 
104
+ if attributes.key?(:'name')
105
+ self.name = attributes[:'name']
106
+ end
107
+
112
108
  if attributes.key?(:'description')
113
109
  self.description = attributes[:'description']
114
110
  end
111
+
112
+ if attributes.key?(:'retain_checkpoints')
113
+ self.retain_checkpoints = attributes[:'retain_checkpoints']
114
+ end
115
115
  end
116
116
 
117
117
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -119,22 +119,22 @@ module PulpContainerClient
119
119
  def list_invalid_properties
120
120
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
121
121
  invalid_properties = Array.new
122
- if !@name.nil? && @name.to_s.length < 1
123
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
124
- end
125
-
126
122
  if !@retain_repo_versions.nil? && @retain_repo_versions < 1
127
123
  invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
128
124
  end
129
125
 
130
- if !@retain_checkpoints.nil? && @retain_checkpoints < 1
131
- invalid_properties.push('invalid value for "retain_checkpoints", must be greater than or equal to 1.')
126
+ if !@name.nil? && @name.to_s.length < 1
127
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
132
128
  end
133
129
 
134
130
  if !@description.nil? && @description.to_s.length < 1
135
131
  invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
136
132
  end
137
133
 
134
+ if !@retain_checkpoints.nil? && @retain_checkpoints < 1
135
+ invalid_properties.push('invalid value for "retain_checkpoints", must be greater than or equal to 1.')
136
+ end
137
+
138
138
  invalid_properties
139
139
  end
140
140
 
@@ -142,13 +142,23 @@ module PulpContainerClient
142
142
  # @return true if the model is valid
143
143
  def valid?
144
144
  warn '[DEPRECATED] the `valid?` method is obsolete'
145
- return false if !@name.nil? && @name.to_s.length < 1
146
145
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
147
- return false if !@retain_checkpoints.nil? && @retain_checkpoints < 1
146
+ return false if !@name.nil? && @name.to_s.length < 1
148
147
  return false if !@description.nil? && @description.to_s.length < 1
148
+ return false if !@retain_checkpoints.nil? && @retain_checkpoints < 1
149
149
  true
150
150
  end
151
151
 
152
+ # Custom attribute writer method with validation
153
+ # @param [Object] retain_repo_versions Value to be assigned
154
+ def retain_repo_versions=(retain_repo_versions)
155
+ if !retain_repo_versions.nil? && retain_repo_versions < 1
156
+ fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
157
+ end
158
+
159
+ @retain_repo_versions = retain_repo_versions
160
+ end
161
+
152
162
  # Custom attribute writer method with validation
153
163
  # @param [Object] name Value to be assigned
154
164
  def name=(name)
@@ -164,13 +174,13 @@ module PulpContainerClient
164
174
  end
165
175
 
166
176
  # Custom attribute writer method with validation
167
- # @param [Object] retain_repo_versions Value to be assigned
168
- def retain_repo_versions=(retain_repo_versions)
169
- if !retain_repo_versions.nil? && retain_repo_versions < 1
170
- fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
177
+ # @param [Object] description Value to be assigned
178
+ def description=(description)
179
+ if !description.nil? && description.to_s.length < 1
180
+ fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
171
181
  end
172
182
 
173
- @retain_repo_versions = retain_repo_versions
183
+ @description = description
174
184
  end
175
185
 
176
186
  # Custom attribute writer method with validation
@@ -183,27 +193,17 @@ module PulpContainerClient
183
193
  @retain_checkpoints = retain_checkpoints
184
194
  end
185
195
 
186
- # Custom attribute writer method with validation
187
- # @param [Object] description Value to be assigned
188
- def description=(description)
189
- if !description.nil? && description.to_s.length < 1
190
- fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
191
- end
192
-
193
- @description = description
194
- end
195
-
196
196
  # Checks equality by comparing each attribute.
197
197
  # @param [Object] Object to be compared
198
198
  def ==(o)
199
199
  return true if self.equal?(o)
200
200
  self.class == o.class &&
201
- name == o.name &&
202
- retain_repo_versions == o.retain_repo_versions &&
203
201
  manifest_signing_service == o.manifest_signing_service &&
204
- retain_checkpoints == o.retain_checkpoints &&
202
+ retain_repo_versions == o.retain_repo_versions &&
205
203
  pulp_labels == o.pulp_labels &&
206
- description == o.description
204
+ name == o.name &&
205
+ description == o.description &&
206
+ retain_checkpoints == o.retain_checkpoints
207
207
  end
208
208
 
209
209
  # @see the `==` method
@@ -215,7 +215,7 @@ module PulpContainerClient
215
215
  # Calculates hash code according to all attributes.
216
216
  # @return [Integer] Hash code
217
217
  def hash
218
- [name, retain_repo_versions, manifest_signing_service, retain_checkpoints, pulp_labels, description].hash
218
+ [manifest_signing_service, retain_repo_versions, pulp_labels, name, description, retain_checkpoints].hash
219
219
  end
220
220
 
221
221
  # Builds the object from hash
@@ -81,10 +81,16 @@ module PulpContainerClient
81
81
  # Name of the upstream repository
82
82
  attr_accessor :upstream_name
83
83
 
84
- # A list of tags to include during sync. Wildcards *, ? are recognized. 'include_tags' is evaluated before 'exclude_tags'.
84
+ # A list of tags (wildcards *, ? are recognized) and/or digests (format: 'sha256:<hex>') to include during sync. 'includes' is evaluated before 'excludes'.
85
+ attr_accessor :includes
86
+
87
+ # A list of tag patterns to exclude during sync. Wildcards *, ? are recognized. 'excludes' is evaluated after 'includes'.
88
+ attr_accessor :excludes
89
+
90
+ # Deprecated. Use 'includes' instead.
85
91
  attr_accessor :include_tags
86
92
 
87
- # A list of tags to exclude during sync. Wildcards *, ? are recognized. 'exclude_tags' is evaluated after 'include_tags'.
93
+ # Deprecated. Use 'excludes' instead.
88
94
  attr_accessor :exclude_tags
89
95
 
90
96
  # A URL to a sigstore to download image signatures from
@@ -137,6 +143,8 @@ module PulpContainerClient
137
143
  :'download_concurrency' => :'download_concurrency',
138
144
  :'rate_limit' => :'rate_limit',
139
145
  :'upstream_name' => :'upstream_name',
146
+ :'includes' => :'includes',
147
+ :'excludes' => :'excludes',
140
148
  :'include_tags' => :'include_tags',
141
149
  :'exclude_tags' => :'exclude_tags',
142
150
  :'sigstore' => :'sigstore'
@@ -173,6 +181,8 @@ module PulpContainerClient
173
181
  :'download_concurrency' => :'Integer',
174
182
  :'rate_limit' => :'Integer',
175
183
  :'upstream_name' => :'String',
184
+ :'includes' => :'Array<String>',
185
+ :'excludes' => :'Array<String>',
176
186
  :'include_tags' => :'Array<String>',
177
187
  :'exclude_tags' => :'Array<String>',
178
188
  :'sigstore' => :'String'
@@ -197,6 +207,8 @@ module PulpContainerClient
197
207
  :'sock_read_timeout',
198
208
  :'download_concurrency',
199
209
  :'rate_limit',
210
+ :'includes',
211
+ :'excludes',
200
212
  :'include_tags',
201
213
  :'exclude_tags',
202
214
  ])
@@ -309,6 +321,18 @@ module PulpContainerClient
309
321
  self.upstream_name = attributes[:'upstream_name']
310
322
  end
311
323
 
324
+ if attributes.key?(:'includes')
325
+ if (value = attributes[:'includes']).is_a?(Array)
326
+ self.includes = value
327
+ end
328
+ end
329
+
330
+ if attributes.key?(:'excludes')
331
+ if (value = attributes[:'excludes']).is_a?(Array)
332
+ self.excludes = value
333
+ end
334
+ end
335
+
312
336
  if attributes.key?(:'include_tags')
313
337
  if (value = attributes[:'include_tags']).is_a?(Array)
314
338
  self.include_tags = value
@@ -639,6 +663,8 @@ module PulpContainerClient
639
663
  download_concurrency == o.download_concurrency &&
640
664
  rate_limit == o.rate_limit &&
641
665
  upstream_name == o.upstream_name &&
666
+ includes == o.includes &&
667
+ excludes == o.excludes &&
642
668
  include_tags == o.include_tags &&
643
669
  exclude_tags == o.exclude_tags &&
644
670
  sigstore == o.sigstore
@@ -653,7 +679,7 @@ module PulpContainerClient
653
679
  # Calculates hash code according to all attributes.
654
680
  # @return [Integer] Hash code
655
681
  def hash
656
- [name, url, pulp_labels, policy, ca_cert, client_cert, client_key, tls_validation, proxy_url, proxy_username, proxy_password, username, password, max_retries, total_timeout, connect_timeout, sock_connect_timeout, sock_read_timeout, headers, download_concurrency, rate_limit, upstream_name, include_tags, exclude_tags, sigstore].hash
682
+ [name, url, pulp_labels, policy, ca_cert, client_cert, client_key, tls_validation, proxy_url, proxy_username, proxy_password, username, password, max_retries, total_timeout, connect_timeout, sock_connect_timeout, sock_read_timeout, headers, download_concurrency, rate_limit, upstream_name, includes, excludes, include_tags, exclude_tags, sigstore].hash
657
683
  end
658
684
 
659
685
  # 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.27.8'
14
+ VERSION = '2.28.0'
15
15
  end
@@ -53,7 +53,7 @@ describe 'ContentSignaturesApi' do
53
53
  # @option opts [String] :name__regex Filter results where name matches regex value
54
54
  # @option opts [String] :name__startswith Filter results where name starts with value
55
55
  # @option opts [Integer] :offset The initial index from which to return the results.
56
- # @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
+ # @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;fingerprint&#x60; - Fingerprint * &#x60;-fingerprint&#x60; - Fingerprint (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)
57
57
  # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
58
58
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
59
59
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
@@ -88,7 +88,7 @@ describe 'PulpContainerNamespacesApi' do
88
88
  # @option opts [String] :name__regex Filter results where name matches regex value
89
89
  # @option opts [String] :name__startswith Filter results where name starts with value
90
90
  # @option opts [Integer] :offset The initial index from which to return the results.
91
- # @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;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
91
+ # @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;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
92
92
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
93
93
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
94
94
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
@@ -27,13 +27,13 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "repository"' 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_version"' 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
@@ -45,61 +45,61 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "name"' do
48
+ describe 'test attribute "pulp_last_updated"' 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 "base_path"' 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 "pulp_created"' do
60
+ describe 'test attribute "pulp_href"' 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 "content_guard_prn"' do
66
+ describe 'test attribute "name"' 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 "repository"' 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 "content_guard"' 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 "hidden"' do
84
+ describe 'test attribute "content_guard_prn"' 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 "pulp_labels"' do
90
+ describe 'test attribute "repository_version"' 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
94
94
  end
95
95
 
96
- describe 'test attribute "pulp_last_updated"' do
96
+ describe 'test attribute "pulp_created"' do
97
97
  it 'should work' do
98
98
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
99
  end
100
100
  end
101
101
 
102
- describe 'test attribute "no_content_change_since"' do
102
+ describe 'test attribute "content_guard"' do
103
103
  it 'should work' do
104
104
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
105
  end
@@ -27,43 +27,43 @@ describe PulpContainerClient::ContainerContainerDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "repository"' 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_version"' 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 "name"' do
42
+ describe 'test attribute "pulp_labels"' 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 "base_path"' do
48
+ describe 'test attribute "name"' 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 "content_guard"' do
54
+ describe 'test attribute "repository"' 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 "hidden"' do
60
+ describe 'test attribute "repository_version"' 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 "pulp_labels"' 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
@@ -57,4 +57,10 @@ describe PulpContainerClient::ContainerContainerNamespaceResponse do
57
57
  end
58
58
  end
59
59
 
60
+ describe 'test attribute "pulp_labels"' 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
+
60
66
  end
@@ -33,4 +33,10 @@ describe PulpContainerClient::ContainerContainerNamespace do
33
33
  end
34
34
  end
35
35
 
36
+ describe 'test attribute "pulp_labels"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
36
42
  end
@@ -27,13 +27,13 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "repository"' 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_version"' 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
@@ -45,61 +45,61 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "name"' do
48
+ describe 'test attribute "pulp_last_updated"' 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 "base_path"' 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 "pulp_created"' do
60
+ describe 'test attribute "pulp_href"' 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 "content_guard_prn"' do
66
+ describe 'test attribute "name"' 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 "repository"' 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 "content_guard"' 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 "hidden"' do
84
+ describe 'test attribute "content_guard_prn"' 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 "pulp_labels"' do
90
+ describe 'test attribute "repository_version"' 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
94
94
  end
95
95
 
96
- describe 'test attribute "pulp_last_updated"' do
96
+ describe 'test attribute "pulp_created"' do
97
97
  it 'should work' do
98
98
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
99
  end
100
100
  end
101
101
 
102
- describe 'test attribute "no_content_change_since"' do
102
+ describe 'test attribute "content_guard"' do
103
103
  it 'should work' do
104
104
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
105
105
  end
@@ -27,43 +27,43 @@ describe PulpContainerClient::ContainerContainerPullThroughDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "repository"' 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_version"' 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 "name"' do
42
+ describe 'test attribute "pulp_labels"' 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 "base_path"' do
48
+ describe 'test attribute "name"' 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 "content_guard"' do
54
+ describe 'test attribute "repository"' 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 "hidden"' do
60
+ describe 'test attribute "repository_version"' 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 "pulp_labels"' 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