pulp_container_client 2.27.4 → 2.27.5

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 (31) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContainerContainerDistribution.md +6 -6
  4. data/docs/ContainerContainerDistributionResponse.md +16 -16
  5. data/docs/ContainerContainerPullThroughDistribution.md +6 -6
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +16 -16
  7. data/docs/ContainerContainerPushRepository.md +8 -8
  8. data/docs/ContainerContainerPushRepositoryResponse.md +15 -15
  9. data/docs/PatchedcontainerContainerDistribution.md +6 -6
  10. data/docs/PatchedcontainerContainerPullThroughDistribution.md +6 -6
  11. data/docs/PatchedcontainerContainerPushRepository.md +8 -8
  12. data/lib/pulp_container_client/models/container_container_distribution.rb +34 -34
  13. data/lib/pulp_container_client/models/container_container_distribution_response.rb +74 -74
  14. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +34 -34
  15. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +74 -74
  16. data/lib/pulp_container_client/models/container_container_push_repository.rb +69 -69
  17. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +83 -83
  18. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +32 -32
  19. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +32 -32
  20. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +67 -67
  21. data/lib/pulp_container_client/version.rb +1 -1
  22. data/spec/models/container_container_distribution_response_spec.rb +12 -12
  23. data/spec/models/container_container_distribution_spec.rb +6 -6
  24. data/spec/models/container_container_pull_through_distribution_response_spec.rb +12 -12
  25. data/spec/models/container_container_pull_through_distribution_spec.rb +6 -6
  26. data/spec/models/container_container_push_repository_response_spec.rb +12 -12
  27. data/spec/models/container_container_push_repository_spec.rb +6 -6
  28. data/spec/models/patchedcontainer_container_distribution_spec.rb +6 -6
  29. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +6 -6
  30. data/spec/models/patchedcontainer_container_push_repository_spec.rb +6 -6
  31. metadata +2 -2
@@ -19,23 +19,23 @@ module PulpContainerClient
19
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\")
20
20
  attr_accessor :base_path
21
21
 
22
- # A unique name. Ex, `rawhide` and `stable`.
23
- attr_accessor :name
24
-
25
- # An optional content-guard. If none is specified, a default one will be used.
26
- attr_accessor :content_guard
27
-
28
22
  attr_accessor :pulp_labels
29
23
 
30
- # The latest RepositoryVersion for this Repository will be served.
31
- attr_accessor :repository
32
-
33
24
  # RepositoryVersion to be served
34
25
  attr_accessor :repository_version
35
26
 
27
+ # An optional content-guard. If none is specified, a default one will be used.
28
+ attr_accessor :content_guard
29
+
36
30
  # Whether this distribution should be shown in the content app.
37
31
  attr_accessor :hidden
38
32
 
33
+ # A unique name. Ex, `rawhide` and `stable`.
34
+ attr_accessor :name
35
+
36
+ # The latest RepositoryVersion for this Repository will be served.
37
+ attr_accessor :repository
38
+
39
39
  # Remote that can be used to fetch content when using pull-through caching.
40
40
  attr_accessor :remote
41
41
 
@@ -52,12 +52,12 @@ module PulpContainerClient
52
52
  def self.attribute_map
53
53
  {
54
54
  :'base_path' => :'base_path',
55
- :'name' => :'name',
56
- :'content_guard' => :'content_guard',
57
55
  :'pulp_labels' => :'pulp_labels',
58
- :'repository' => :'repository',
59
56
  :'repository_version' => :'repository_version',
57
+ :'content_guard' => :'content_guard',
60
58
  :'hidden' => :'hidden',
59
+ :'name' => :'name',
60
+ :'repository' => :'repository',
61
61
  :'remote' => :'remote',
62
62
  :'distributions' => :'distributions',
63
63
  :'private' => :'private',
@@ -74,12 +74,12 @@ module PulpContainerClient
74
74
  def self.openapi_types
75
75
  {
76
76
  :'base_path' => :'String',
77
- :'name' => :'String',
78
- :'content_guard' => :'String',
79
77
  :'pulp_labels' => :'Hash<String, String>',
80
- :'repository' => :'String',
81
78
  :'repository_version' => :'String',
79
+ :'content_guard' => :'String',
82
80
  :'hidden' => :'Boolean',
81
+ :'name' => :'String',
82
+ :'repository' => :'String',
83
83
  :'remote' => :'String',
84
84
  :'distributions' => :'Array<String>',
85
85
  :'private' => :'Boolean',
@@ -90,8 +90,8 @@ module PulpContainerClient
90
90
  # List of attributes with nullable: true
91
91
  def self.openapi_nullable
92
92
  Set.new([
93
- :'repository',
94
93
  :'repository_version',
94
+ :'repository',
95
95
  :'description'
96
96
  ])
97
97
  end
@@ -115,34 +115,34 @@ module PulpContainerClient
115
115
  self.base_path = attributes[:'base_path']
116
116
  end
117
117
 
118
- if attributes.key?(:'name')
119
- self.name = attributes[:'name']
120
- end
121
-
122
- if attributes.key?(:'content_guard')
123
- self.content_guard = attributes[:'content_guard']
124
- end
125
-
126
118
  if attributes.key?(:'pulp_labels')
127
119
  if (value = attributes[:'pulp_labels']).is_a?(Hash)
128
120
  self.pulp_labels = value
129
121
  end
130
122
  end
131
123
 
132
- if attributes.key?(:'repository')
133
- self.repository = attributes[:'repository']
134
- end
135
-
136
124
  if attributes.key?(:'repository_version')
137
125
  self.repository_version = attributes[:'repository_version']
138
126
  end
139
127
 
128
+ if attributes.key?(:'content_guard')
129
+ self.content_guard = attributes[:'content_guard']
130
+ end
131
+
140
132
  if attributes.key?(:'hidden')
141
133
  self.hidden = attributes[:'hidden']
142
134
  else
143
135
  self.hidden = false
144
136
  end
145
137
 
138
+ if attributes.key?(:'name')
139
+ self.name = attributes[:'name']
140
+ end
141
+
142
+ if attributes.key?(:'repository')
143
+ self.repository = attributes[:'repository']
144
+ end
145
+
146
146
  if attributes.key?(:'remote')
147
147
  self.remote = attributes[:'remote']
148
148
  end
@@ -236,12 +236,12 @@ module PulpContainerClient
236
236
  return true if self.equal?(o)
237
237
  self.class == o.class &&
238
238
  base_path == o.base_path &&
239
- name == o.name &&
240
- content_guard == o.content_guard &&
241
239
  pulp_labels == o.pulp_labels &&
242
- repository == o.repository &&
243
240
  repository_version == o.repository_version &&
241
+ content_guard == o.content_guard &&
244
242
  hidden == o.hidden &&
243
+ name == o.name &&
244
+ repository == o.repository &&
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
- [base_path, name, content_guard, pulp_labels, repository, repository_version, hidden, remote, distributions, private, description].hash
260
+ [base_path, pulp_labels, repository_version, content_guard, hidden, name, repository, remote, distributions, private, description].hash
261
261
  end
262
262
 
263
263
  # Builds the object from hash
@@ -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
19
+ # Retain X checkpoint publications for the repository. Default is null which retains all checkpoints.
20
+ attr_accessor :retain_checkpoints
21
+
22
+ attr_accessor :pulp_labels
23
+
24
+ # Retain X versions of the repository. Default is null which retains all versions.
25
+ attr_accessor :retain_repo_versions
21
26
 
22
27
  # A reference to an associated signing service.
23
28
  attr_accessor :manifest_signing_service
24
29
 
25
- attr_accessor :pulp_labels
30
+ # A unique name for this repository.
31
+ attr_accessor :name
26
32
 
27
33
  # An optional description.
28
34
  attr_accessor :description
29
35
 
30
- # Retain X versions of the repository. Default is null which retains all versions.
31
- attr_accessor :retain_repo_versions
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
- :'manifest_signing_service' => :'manifest_signing_service',
39
+ :'retain_checkpoints' => :'retain_checkpoints',
41
40
  :'pulp_labels' => :'pulp_labels',
42
- :'description' => :'description',
43
41
  :'retain_repo_versions' => :'retain_repo_versions',
44
- :'retain_checkpoints' => :'retain_checkpoints'
42
+ :'manifest_signing_service' => :'manifest_signing_service',
43
+ :'name' => :'name',
44
+ :'description' => :'description'
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
- :'manifest_signing_service' => :'String',
56
+ :'retain_checkpoints' => :'Integer',
58
57
  :'pulp_labels' => :'Hash<String, String>',
59
- :'description' => :'String',
60
58
  :'retain_repo_versions' => :'Integer',
61
- :'retain_checkpoints' => :'Integer'
59
+ :'manifest_signing_service' => :'String',
60
+ :'name' => :'String',
61
+ :'description' => :'String'
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
- :'manifest_signing_service',
69
- :'description',
68
+ :'retain_checkpoints',
70
69
  :'retain_repo_versions',
71
- :'retain_checkpoints'
70
+ :'manifest_signing_service',
71
+ :'description'
72
72
  ])
73
73
  end
74
74
 
@@ -87,12 +87,8 @@ 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?(:'manifest_signing_service')
95
- self.manifest_signing_service = attributes[:'manifest_signing_service']
90
+ if attributes.key?(:'retain_checkpoints')
91
+ self.retain_checkpoints = attributes[:'retain_checkpoints']
96
92
  end
97
93
 
98
94
  if attributes.key?(:'pulp_labels')
@@ -101,16 +97,20 @@ module PulpContainerClient
101
97
  end
102
98
  end
103
99
 
104
- if attributes.key?(:'description')
105
- self.description = attributes[:'description']
106
- end
107
-
108
100
  if attributes.key?(:'retain_repo_versions')
109
101
  self.retain_repo_versions = attributes[:'retain_repo_versions']
110
102
  end
111
103
 
112
- if attributes.key?(:'retain_checkpoints')
113
- self.retain_checkpoints = attributes[:'retain_checkpoints']
104
+ if attributes.key?(:'manifest_signing_service')
105
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
106
+ end
107
+
108
+ if attributes.key?(:'name')
109
+ self.name = attributes[:'name']
110
+ end
111
+
112
+ if attributes.key?(:'description')
113
+ self.description = attributes[:'description']
114
114
  end
115
115
  end
116
116
 
@@ -119,20 +119,20 @@ 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
- if !@description.nil? && @description.to_s.length < 1
127
- invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
122
+ if !@retain_checkpoints.nil? && @retain_checkpoints < 1
123
+ invalid_properties.push('invalid value for "retain_checkpoints", must be greater than or equal to 1.')
128
124
  end
129
125
 
130
126
  if !@retain_repo_versions.nil? && @retain_repo_versions < 1
131
127
  invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
132
128
  end
133
129
 
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.')
130
+ if !@name.nil? && @name.to_s.length < 1
131
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
132
+ end
133
+
134
+ if !@description.nil? && @description.to_s.length < 1
135
+ invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
136
136
  end
137
137
 
138
138
  invalid_properties
@@ -142,13 +142,33 @@ 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 !@retain_checkpoints.nil? && @retain_checkpoints < 1
146
+ return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
145
147
  return false if !@name.nil? && @name.to_s.length < 1
146
148
  return false if !@description.nil? && @description.to_s.length < 1
147
- return false if !@retain_repo_versions.nil? && @retain_repo_versions < 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_checkpoints Value to be assigned
154
+ def retain_checkpoints=(retain_checkpoints)
155
+ if !retain_checkpoints.nil? && retain_checkpoints < 1
156
+ fail ArgumentError, 'invalid value for "retain_checkpoints", must be greater than or equal to 1.'
157
+ end
158
+
159
+ @retain_checkpoints = retain_checkpoints
160
+ end
161
+
162
+ # Custom attribute writer method with validation
163
+ # @param [Object] retain_repo_versions Value to be assigned
164
+ def retain_repo_versions=(retain_repo_versions)
165
+ if !retain_repo_versions.nil? && retain_repo_versions < 1
166
+ fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
167
+ end
168
+
169
+ @retain_repo_versions = retain_repo_versions
170
+ end
171
+
152
172
  # Custom attribute writer method with validation
153
173
  # @param [Object] name Value to be assigned
154
174
  def name=(name)
@@ -173,37 +193,17 @@ module PulpContainerClient
173
193
  @description = description
174
194
  end
175
195
 
176
- # Custom attribute writer method with validation
177
- # @param [Object] retain_repo_versions Value to be assigned
178
- def retain_repo_versions=(retain_repo_versions)
179
- if !retain_repo_versions.nil? && retain_repo_versions < 1
180
- fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
181
- end
182
-
183
- @retain_repo_versions = retain_repo_versions
184
- end
185
-
186
- # Custom attribute writer method with validation
187
- # @param [Object] retain_checkpoints Value to be assigned
188
- def retain_checkpoints=(retain_checkpoints)
189
- if !retain_checkpoints.nil? && retain_checkpoints < 1
190
- fail ArgumentError, 'invalid value for "retain_checkpoints", must be greater than or equal to 1.'
191
- end
192
-
193
- @retain_checkpoints = retain_checkpoints
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
- manifest_signing_service == o.manifest_signing_service &&
201
+ retain_checkpoints == o.retain_checkpoints &&
203
202
  pulp_labels == o.pulp_labels &&
204
- description == o.description &&
205
203
  retain_repo_versions == o.retain_repo_versions &&
206
- retain_checkpoints == o.retain_checkpoints
204
+ manifest_signing_service == o.manifest_signing_service &&
205
+ name == o.name &&
206
+ description == o.description
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, manifest_signing_service, pulp_labels, description, retain_repo_versions, retain_checkpoints].hash
218
+ [retain_checkpoints, pulp_labels, retain_repo_versions, manifest_signing_service, name, description].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.4'
14
+ VERSION = '2.27.5'
15
15
  end
@@ -27,7 +27,7 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "no_content_change_since"' 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
@@ -39,67 +39,67 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "base_path"' 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 "name"' do
48
+ describe 'test attribute "pulp_labels"' 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 "pulp_created"' 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 "content_guard_prn"' 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 "no_content_change_since"' 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"' 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 "pulp_created"' do
78
+ describe 'test attribute "hidden"' 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 "name"' 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 "repository"' do
90
+ describe 'test attribute "pulp_href"' 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 "repository_version"' do
96
+ describe 'test attribute "repository"' 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 "hidden"' do
102
+ describe 'test attribute "content_guard_prn"' 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
@@ -33,37 +33,37 @@ describe PulpContainerClient::ContainerContainerDistribution do
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "name"' do
36
+ describe 'test attribute "pulp_labels"' 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 "repository_version"' 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 "pulp_labels"' 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 "repository"' do
54
+ describe 'test attribute "hidden"' 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 "repository_version"' 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 "repository"' 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,7 +27,7 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "no_content_change_since"' 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
@@ -39,67 +39,67 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "base_path"' 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 "name"' do
48
+ describe 'test attribute "pulp_labels"' 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 "pulp_created"' 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 "content_guard_prn"' 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 "no_content_change_since"' 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"' 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 "pulp_created"' do
78
+ describe 'test attribute "hidden"' 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 "name"' 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 "repository"' do
90
+ describe 'test attribute "pulp_href"' 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 "repository_version"' do
96
+ describe 'test attribute "repository"' 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 "hidden"' do
102
+ describe 'test attribute "content_guard_prn"' 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
@@ -33,37 +33,37 @@ describe PulpContainerClient::ContainerContainerPullThroughDistribution do
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "name"' do
36
+ describe 'test attribute "pulp_labels"' 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 "repository_version"' 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 "pulp_labels"' 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 "repository"' do
54
+ describe 'test attribute "hidden"' 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 "repository_version"' 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 "repository"' 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