pulp_container_client 2.27.8 → 2.27.9

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 (33) 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/ContainerContainerPullThroughDistribution.md +8 -8
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +18 -18
  7. data/docs/ContainerContainerPushRepository.md +5 -5
  8. data/docs/ContainerContainerPushRepositoryResponse.md +13 -13
  9. data/docs/DistributionsContainerApi.md +2 -2
  10. data/docs/DistributionsPullThroughApi.md +2 -2
  11. data/docs/PatchedcontainerContainerDistribution.md +8 -8
  12. data/docs/PatchedcontainerContainerPullThroughDistribution.md +8 -8
  13. data/docs/PatchedcontainerContainerPushRepository.md +5 -5
  14. data/lib/pulp_container_client/models/container_container_distribution.rb +65 -65
  15. data/lib/pulp_container_client/models/container_container_distribution_response.rb +84 -84
  16. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +65 -65
  17. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +84 -84
  18. data/lib/pulp_container_client/models/container_container_push_repository.rb +39 -39
  19. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +77 -77
  20. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +59 -59
  21. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +59 -59
  22. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +39 -39
  23. data/lib/pulp_container_client/version.rb +1 -1
  24. data/spec/models/container_container_distribution_response_spec.rb +13 -13
  25. data/spec/models/container_container_distribution_spec.rb +7 -7
  26. data/spec/models/container_container_pull_through_distribution_response_spec.rb +13 -13
  27. data/spec/models/container_container_pull_through_distribution_spec.rb +7 -7
  28. data/spec/models/container_container_push_repository_response_spec.rb +11 -11
  29. data/spec/models/container_container_push_repository_spec.rb +4 -4
  30. data/spec/models/patchedcontainer_container_distribution_spec.rb +7 -7
  31. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +7 -7
  32. data/spec/models/patchedcontainer_container_push_repository_spec.rb +4 -4
  33. metadata +61 -61
@@ -16,26 +16,26 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # A serializer for a specialized pull-through distribution referencing sub-distributions.
18
18
  class PatchedcontainerContainerPullThroughDistribution
19
- # The latest RepositoryVersion for this Repository will be served.
20
- attr_accessor :repository
21
-
22
- # RepositoryVersion to be served
23
- attr_accessor :repository_version
24
-
25
- # A unique name. Ex, `rawhide` and `stable`.
26
- attr_accessor :name
27
-
28
19
  # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
29
20
  attr_accessor :base_path
30
21
 
22
+ # Whether this distribution should be shown in the content app.
23
+ attr_accessor :hidden
24
+
31
25
  # An optional content-guard. If none is specified, a default one will be used.
32
26
  attr_accessor :content_guard
33
27
 
34
- # Whether this distribution should be shown in the content app.
35
- attr_accessor :hidden
28
+ # A unique name. Ex, `rawhide` and `stable`.
29
+ attr_accessor :name
30
+
31
+ # The latest RepositoryVersion for this Repository will be served.
32
+ attr_accessor :repository
36
33
 
37
34
  attr_accessor :pulp_labels
38
35
 
36
+ # RepositoryVersion to be served
37
+ attr_accessor :repository_version
38
+
39
39
  # Remote that can be used to fetch content when using pull-through caching.
40
40
  attr_accessor :remote
41
41
 
@@ -51,13 +51,13 @@ module PulpContainerClient
51
51
  # Attribute mapping from ruby-style variable name to JSON key.
52
52
  def self.attribute_map
53
53
  {
54
- :'repository' => :'repository',
55
- :'repository_version' => :'repository_version',
56
- :'name' => :'name',
57
54
  :'base_path' => :'base_path',
58
- :'content_guard' => :'content_guard',
59
55
  :'hidden' => :'hidden',
56
+ :'content_guard' => :'content_guard',
57
+ :'name' => :'name',
58
+ :'repository' => :'repository',
60
59
  :'pulp_labels' => :'pulp_labels',
60
+ :'repository_version' => :'repository_version',
61
61
  :'remote' => :'remote',
62
62
  :'distributions' => :'distributions',
63
63
  :'private' => :'private',
@@ -73,13 +73,13 @@ module PulpContainerClient
73
73
  # Attribute type mapping.
74
74
  def self.openapi_types
75
75
  {
76
- :'repository' => :'String',
77
- :'repository_version' => :'String',
78
- :'name' => :'String',
79
76
  :'base_path' => :'String',
80
- :'content_guard' => :'String',
81
77
  :'hidden' => :'Boolean',
78
+ :'content_guard' => :'String',
79
+ :'name' => :'String',
80
+ :'repository' => :'String',
82
81
  :'pulp_labels' => :'Hash<String, String>',
82
+ :'repository_version' => :'String',
83
83
  :'remote' => :'String',
84
84
  :'distributions' => :'Array<String>',
85
85
  :'private' => :'Boolean',
@@ -111,38 +111,38 @@ module PulpContainerClient
111
111
  h[k.to_sym] = v
112
112
  }
113
113
 
114
- if attributes.key?(:'repository')
115
- self.repository = attributes[:'repository']
116
- end
117
-
118
- if attributes.key?(:'repository_version')
119
- self.repository_version = attributes[:'repository_version']
120
- end
121
-
122
- if attributes.key?(:'name')
123
- self.name = attributes[:'name']
124
- end
125
-
126
114
  if attributes.key?(:'base_path')
127
115
  self.base_path = attributes[:'base_path']
128
116
  end
129
117
 
130
- if attributes.key?(:'content_guard')
131
- self.content_guard = attributes[:'content_guard']
132
- end
133
-
134
118
  if attributes.key?(:'hidden')
135
119
  self.hidden = attributes[:'hidden']
136
120
  else
137
121
  self.hidden = false
138
122
  end
139
123
 
124
+ if attributes.key?(:'content_guard')
125
+ self.content_guard = attributes[:'content_guard']
126
+ end
127
+
128
+ if attributes.key?(:'name')
129
+ self.name = attributes[:'name']
130
+ end
131
+
132
+ if attributes.key?(:'repository')
133
+ self.repository = attributes[:'repository']
134
+ end
135
+
140
136
  if attributes.key?(:'pulp_labels')
141
137
  if (value = attributes[:'pulp_labels']).is_a?(Hash)
142
138
  self.pulp_labels = value
143
139
  end
144
140
  end
145
141
 
142
+ if attributes.key?(:'repository_version')
143
+ self.repository_version = attributes[:'repository_version']
144
+ end
145
+
146
146
  if attributes.key?(:'remote')
147
147
  self.remote = attributes[:'remote']
148
148
  end
@@ -167,14 +167,14 @@ module PulpContainerClient
167
167
  def list_invalid_properties
168
168
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
169
169
  invalid_properties = Array.new
170
- if !@name.nil? && @name.to_s.length < 1
171
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
172
- end
173
-
174
170
  if !@base_path.nil? && @base_path.to_s.length < 1
175
171
  invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
176
172
  end
177
173
 
174
+ if !@name.nil? && @name.to_s.length < 1
175
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
176
+ end
177
+
178
178
  if !@description.nil? && @description.to_s.length < 1
179
179
  invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
180
180
  end
@@ -186,26 +186,12 @@ module PulpContainerClient
186
186
  # @return true if the model is valid
187
187
  def valid?
188
188
  warn '[DEPRECATED] the `valid?` method is obsolete'
189
- return false if !@name.nil? && @name.to_s.length < 1
190
189
  return false if !@base_path.nil? && @base_path.to_s.length < 1
190
+ return false if !@name.nil? && @name.to_s.length < 1
191
191
  return false if !@description.nil? && @description.to_s.length < 1
192
192
  true
193
193
  end
194
194
 
195
- # Custom attribute writer method with validation
196
- # @param [Object] name Value to be assigned
197
- def name=(name)
198
- if name.nil?
199
- fail ArgumentError, 'name cannot be nil'
200
- end
201
-
202
- if name.to_s.length < 1
203
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
204
- end
205
-
206
- @name = name
207
- end
208
-
209
195
  # Custom attribute writer method with validation
210
196
  # @param [Object] base_path Value to be assigned
211
197
  def base_path=(base_path)
@@ -220,6 +206,20 @@ module PulpContainerClient
220
206
  @base_path = base_path
221
207
  end
222
208
 
209
+ # Custom attribute writer method with validation
210
+ # @param [Object] name Value to be assigned
211
+ def name=(name)
212
+ if name.nil?
213
+ fail ArgumentError, 'name cannot be nil'
214
+ end
215
+
216
+ if name.to_s.length < 1
217
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
218
+ end
219
+
220
+ @name = name
221
+ end
222
+
223
223
  # Custom attribute writer method with validation
224
224
  # @param [Object] description Value to be assigned
225
225
  def description=(description)
@@ -235,13 +235,13 @@ module PulpContainerClient
235
235
  def ==(o)
236
236
  return true if self.equal?(o)
237
237
  self.class == o.class &&
238
- repository == o.repository &&
239
- repository_version == o.repository_version &&
240
- name == o.name &&
241
238
  base_path == o.base_path &&
242
- content_guard == o.content_guard &&
243
239
  hidden == o.hidden &&
240
+ content_guard == o.content_guard &&
241
+ name == o.name &&
242
+ repository == o.repository &&
244
243
  pulp_labels == o.pulp_labels &&
244
+ repository_version == o.repository_version &&
245
245
  remote == o.remote &&
246
246
  distributions == o.distributions &&
247
247
  private == o.private &&
@@ -257,7 +257,7 @@ module PulpContainerClient
257
257
  # Calculates hash code according to all attributes.
258
258
  # @return [Integer] Hash code
259
259
  def hash
260
- [repository, repository_version, name, base_path, content_guard, hidden, pulp_labels, remote, distributions, private, description].hash
260
+ [base_path, hidden, content_guard, name, repository, pulp_labels, repository_version, remote, distributions, private, description].hash
261
261
  end
262
262
 
263
263
  # Builds the object from hash
@@ -19,29 +19,29 @@ module PulpContainerClient
19
19
  # A unique name for this repository.
20
20
  attr_accessor :name
21
21
 
22
- # Retain X versions of the repository. Default is null which retains all versions.
23
- attr_accessor :retain_repo_versions
22
+ # Retain X checkpoint publications for the repository. Default is null which retains all checkpoints.
23
+ attr_accessor :retain_checkpoints
24
24
 
25
25
  # A reference to an associated signing service.
26
26
  attr_accessor :manifest_signing_service
27
27
 
28
- # Retain X checkpoint publications for the repository. Default is null which retains all checkpoints.
29
- attr_accessor :retain_checkpoints
30
-
31
28
  attr_accessor :pulp_labels
32
29
 
33
30
  # An optional description.
34
31
  attr_accessor :description
35
32
 
33
+ # Retain X versions of the repository. Default is null which retains all versions.
34
+ attr_accessor :retain_repo_versions
35
+
36
36
  # Attribute mapping from ruby-style variable name to JSON key.
37
37
  def self.attribute_map
38
38
  {
39
39
  :'name' => :'name',
40
- :'retain_repo_versions' => :'retain_repo_versions',
41
- :'manifest_signing_service' => :'manifest_signing_service',
42
40
  :'retain_checkpoints' => :'retain_checkpoints',
41
+ :'manifest_signing_service' => :'manifest_signing_service',
43
42
  :'pulp_labels' => :'pulp_labels',
44
- :'description' => :'description'
43
+ :'description' => :'description',
44
+ :'retain_repo_versions' => :'retain_repo_versions'
45
45
  }
46
46
  end
47
47
 
@@ -54,21 +54,21 @@ module PulpContainerClient
54
54
  def self.openapi_types
55
55
  {
56
56
  :'name' => :'String',
57
- :'retain_repo_versions' => :'Integer',
58
- :'manifest_signing_service' => :'String',
59
57
  :'retain_checkpoints' => :'Integer',
58
+ :'manifest_signing_service' => :'String',
60
59
  :'pulp_labels' => :'Hash<String, String>',
61
- :'description' => :'String'
60
+ :'description' => :'String',
61
+ :'retain_repo_versions' => :'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
- :'manifest_signing_service',
70
68
  :'retain_checkpoints',
71
- :'description'
69
+ :'manifest_signing_service',
70
+ :'description',
71
+ :'retain_repo_versions'
72
72
  ])
73
73
  end
74
74
 
@@ -91,18 +91,14 @@ module PulpContainerClient
91
91
  self.name = attributes[:'name']
92
92
  end
93
93
 
94
- if attributes.key?(:'retain_repo_versions')
95
- self.retain_repo_versions = attributes[:'retain_repo_versions']
94
+ if attributes.key?(:'retain_checkpoints')
95
+ self.retain_checkpoints = attributes[:'retain_checkpoints']
96
96
  end
97
97
 
98
98
  if attributes.key?(:'manifest_signing_service')
99
99
  self.manifest_signing_service = attributes[:'manifest_signing_service']
100
100
  end
101
101
 
102
- if attributes.key?(:'retain_checkpoints')
103
- self.retain_checkpoints = attributes[:'retain_checkpoints']
104
- end
105
-
106
102
  if attributes.key?(:'pulp_labels')
107
103
  if (value = attributes[:'pulp_labels']).is_a?(Hash)
108
104
  self.pulp_labels = value
@@ -112,6 +108,10 @@ module PulpContainerClient
112
108
  if attributes.key?(:'description')
113
109
  self.description = attributes[:'description']
114
110
  end
111
+
112
+ if attributes.key?(:'retain_repo_versions')
113
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
114
+ end
115
115
  end
116
116
 
117
117
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -123,10 +123,6 @@ module PulpContainerClient
123
123
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
124
124
  end
125
125
 
126
- if !@retain_repo_versions.nil? && @retain_repo_versions < 1
127
- invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
128
- end
129
-
130
126
  if !@retain_checkpoints.nil? && @retain_checkpoints < 1
131
127
  invalid_properties.push('invalid value for "retain_checkpoints", must be greater than or equal to 1.')
132
128
  end
@@ -135,6 +131,10 @@ module PulpContainerClient
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_repo_versions.nil? && @retain_repo_versions < 1
135
+ invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
136
+ end
137
+
138
138
  invalid_properties
139
139
  end
140
140
 
@@ -143,9 +143,9 @@ module PulpContainerClient
143
143
  def valid?
144
144
  warn '[DEPRECATED] the `valid?` method is obsolete'
145
145
  return false if !@name.nil? && @name.to_s.length < 1
146
- return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
147
146
  return false if !@retain_checkpoints.nil? && @retain_checkpoints < 1
148
147
  return false if !@description.nil? && @description.to_s.length < 1
148
+ return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
149
149
  true
150
150
  end
151
151
 
@@ -163,16 +163,6 @@ module PulpContainerClient
163
163
  @name = name
164
164
  end
165
165
 
166
- # 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.'
171
- end
172
-
173
- @retain_repo_versions = retain_repo_versions
174
- end
175
-
176
166
  # Custom attribute writer method with validation
177
167
  # @param [Object] retain_checkpoints Value to be assigned
178
168
  def retain_checkpoints=(retain_checkpoints)
@@ -193,17 +183,27 @@ module PulpContainerClient
193
183
  @description = description
194
184
  end
195
185
 
186
+ # Custom attribute writer method with validation
187
+ # @param [Object] retain_repo_versions Value to be assigned
188
+ def retain_repo_versions=(retain_repo_versions)
189
+ if !retain_repo_versions.nil? && retain_repo_versions < 1
190
+ fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
191
+ end
192
+
193
+ @retain_repo_versions = retain_repo_versions
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
201
  name == o.name &&
202
- retain_repo_versions == o.retain_repo_versions &&
203
- manifest_signing_service == o.manifest_signing_service &&
204
202
  retain_checkpoints == o.retain_checkpoints &&
203
+ manifest_signing_service == o.manifest_signing_service &&
205
204
  pulp_labels == o.pulp_labels &&
206
- description == o.description
205
+ description == o.description &&
206
+ retain_repo_versions == o.retain_repo_versions
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
+ [name, retain_checkpoints, manifest_signing_service, pulp_labels, description, retain_repo_versions].hash
219
219
  end
220
220
 
221
221
  # 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.27.9'
15
15
  end
@@ -27,79 +27,79 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "repository"' do
30
+ describe 'test attribute "no_content_change_since"' 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 "prn"' do
42
+ describe 'test attribute "hidden"' 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 "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_href"' 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 "prn"' 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 "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 "content_guard_prn"' 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 "name"' 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 "repository"' 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 "pulp_created"' 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_labels"' 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 "repository_version"' 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 "base_path"' 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 "hidden"' 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 "content_guard"' 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 "pulp_labels"' 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 "repository_version"' 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
@@ -27,79 +27,79 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "repository"' do
30
+ describe 'test attribute "no_content_change_since"' 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 "prn"' do
42
+ describe 'test attribute "hidden"' 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 "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_href"' 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 "prn"' 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 "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 "content_guard_prn"' 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 "name"' 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 "repository"' 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 "pulp_created"' 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_labels"' 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 "repository_version"' 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