pulp_container_client 2.27.5 → 2.27.7

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 +14 -14
  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 +32 -32
  13. data/lib/pulp_container_client/models/container_container_distribution_response.rb +72 -72
  14. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +32 -32
  15. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +72 -72
  16. data/lib/pulp_container_client/models/container_container_push_repository.rb +64 -64
  17. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +76 -76
  18. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +30 -30
  19. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +30 -30
  20. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +62 -62
  21. data/lib/pulp_container_client/version.rb +1 -1
  22. data/spec/models/container_container_distribution_response_spec.rb +11 -11
  23. data/spec/models/container_container_distribution_spec.rb +6 -6
  24. data/spec/models/container_container_pull_through_distribution_response_spec.rb +11 -11
  25. data/spec/models/container_container_pull_through_distribution_spec.rb +6 -6
  26. data/spec/models/container_container_push_repository_response_spec.rb +10 -10
  27. data/spec/models/container_container_push_repository_spec.rb +4 -4
  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 +4 -4
  31. metadata +60 -60
@@ -19,7 +19,11 @@ 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
- attr_accessor :pulp_labels
22
+ # A unique name. Ex, `rawhide` and `stable`.
23
+ attr_accessor :name
24
+
25
+ # The latest RepositoryVersion for this Repository will be served.
26
+ attr_accessor :repository
23
27
 
24
28
  # RepositoryVersion to be served
25
29
  attr_accessor :repository_version
@@ -27,15 +31,11 @@ module PulpContainerClient
27
31
  # An optional content-guard. If none is specified, a default one will be used.
28
32
  attr_accessor :content_guard
29
33
 
34
+ attr_accessor :pulp_labels
35
+
30
36
  # Whether this distribution should be shown in the content app.
31
37
  attr_accessor :hidden
32
38
 
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
- :'pulp_labels' => :'pulp_labels',
55
+ :'name' => :'name',
56
+ :'repository' => :'repository',
56
57
  :'repository_version' => :'repository_version',
57
58
  :'content_guard' => :'content_guard',
59
+ :'pulp_labels' => :'pulp_labels',
58
60
  :'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
- :'pulp_labels' => :'Hash<String, String>',
77
+ :'name' => :'String',
78
+ :'repository' => :'String',
78
79
  :'repository_version' => :'String',
79
80
  :'content_guard' => :'String',
81
+ :'pulp_labels' => :'Hash<String, String>',
80
82
  :'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_version',
94
93
  :'repository',
94
+ :'repository_version',
95
95
  :'description'
96
96
  ])
97
97
  end
@@ -115,10 +115,12 @@ module PulpContainerClient
115
115
  self.base_path = attributes[:'base_path']
116
116
  end
117
117
 
118
- if attributes.key?(:'pulp_labels')
119
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
120
- self.pulp_labels = value
121
- end
118
+ if attributes.key?(:'name')
119
+ self.name = attributes[:'name']
120
+ end
121
+
122
+ if attributes.key?(:'repository')
123
+ self.repository = attributes[:'repository']
122
124
  end
123
125
 
124
126
  if attributes.key?(:'repository_version')
@@ -129,20 +131,18 @@ module PulpContainerClient
129
131
  self.content_guard = attributes[:'content_guard']
130
132
  end
131
133
 
134
+ if attributes.key?(:'pulp_labels')
135
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
136
+ self.pulp_labels = value
137
+ end
138
+ end
139
+
132
140
  if attributes.key?(:'hidden')
133
141
  self.hidden = attributes[:'hidden']
134
142
  else
135
143
  self.hidden = false
136
144
  end
137
145
 
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
- pulp_labels == o.pulp_labels &&
239
+ name == o.name &&
240
+ repository == o.repository &&
240
241
  repository_version == o.repository_version &&
241
242
  content_guard == o.content_guard &&
243
+ pulp_labels == o.pulp_labels &&
242
244
  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, pulp_labels, repository_version, content_guard, hidden, name, repository, remote, distributions, private, description].hash
260
+ [base_path, name, repository, repository_version, content_guard, pulp_labels, hidden, remote, distributions, private, description].hash
261
261
  end
262
262
 
263
263
  # Builds the object from hash
@@ -16,10 +16,11 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # Serializer for Container Push Repositories.
18
18
  class PatchedcontainerContainerPushRepository
19
- # Retain X checkpoint publications for the repository. Default is null which retains all checkpoints.
20
- attr_accessor :retain_checkpoints
19
+ # A unique name for this repository.
20
+ attr_accessor :name
21
21
 
22
- attr_accessor :pulp_labels
22
+ # An optional description.
23
+ attr_accessor :description
23
24
 
24
25
  # Retain X versions of the repository. Default is null which retains all versions.
25
26
  attr_accessor :retain_repo_versions
@@ -27,21 +28,20 @@ module PulpContainerClient
27
28
  # A reference to an associated signing service.
28
29
  attr_accessor :manifest_signing_service
29
30
 
30
- # A unique name for this repository.
31
- attr_accessor :name
31
+ attr_accessor :pulp_labels
32
32
 
33
- # An optional description.
34
- attr_accessor :description
33
+ # Retain X checkpoint publications for the repository. Default is null which retains all checkpoints.
34
+ attr_accessor :retain_checkpoints
35
35
 
36
36
  # Attribute mapping from ruby-style variable name to JSON key.
37
37
  def self.attribute_map
38
38
  {
39
- :'retain_checkpoints' => :'retain_checkpoints',
40
- :'pulp_labels' => :'pulp_labels',
39
+ :'name' => :'name',
40
+ :'description' => :'description',
41
41
  :'retain_repo_versions' => :'retain_repo_versions',
42
42
  :'manifest_signing_service' => :'manifest_signing_service',
43
- :'name' => :'name',
44
- :'description' => :'description'
43
+ :'pulp_labels' => :'pulp_labels',
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
- :'retain_checkpoints' => :'Integer',
57
- :'pulp_labels' => :'Hash<String, String>',
56
+ :'name' => :'String',
57
+ :'description' => :'String',
58
58
  :'retain_repo_versions' => :'Integer',
59
59
  :'manifest_signing_service' => :'String',
60
- :'name' => :'String',
61
- :'description' => :'String'
60
+ :'pulp_labels' => :'Hash<String, 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_checkpoints',
68
+ :'description',
69
69
  :'retain_repo_versions',
70
70
  :'manifest_signing_service',
71
- :'description'
71
+ :'retain_checkpoints'
72
72
  ])
73
73
  end
74
74
 
@@ -87,14 +87,12 @@ module PulpContainerClient
87
87
  h[k.to_sym] = v
88
88
  }
89
89
 
90
- if attributes.key?(:'retain_checkpoints')
91
- self.retain_checkpoints = attributes[:'retain_checkpoints']
90
+ if attributes.key?(:'name')
91
+ self.name = attributes[:'name']
92
92
  end
93
93
 
94
- if attributes.key?(:'pulp_labels')
95
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
96
- self.pulp_labels = value
97
- end
94
+ if attributes.key?(:'description')
95
+ self.description = attributes[:'description']
98
96
  end
99
97
 
100
98
  if attributes.key?(:'retain_repo_versions')
@@ -105,12 +103,14 @@ module PulpContainerClient
105
103
  self.manifest_signing_service = attributes[:'manifest_signing_service']
106
104
  end
107
105
 
108
- if attributes.key?(:'name')
109
- self.name = attributes[:'name']
106
+ if attributes.key?(:'pulp_labels')
107
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
108
+ self.pulp_labels = value
109
+ end
110
110
  end
111
111
 
112
- if attributes.key?(:'description')
113
- self.description = attributes[:'description']
112
+ if attributes.key?(:'retain_checkpoints')
113
+ self.retain_checkpoints = attributes[:'retain_checkpoints']
114
114
  end
115
115
  end
116
116
 
@@ -119,14 +119,6 @@ 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 !@retain_checkpoints.nil? && @retain_checkpoints < 1
123
- invalid_properties.push('invalid value for "retain_checkpoints", must be greater than or equal to 1.')
124
- end
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
122
  if !@name.nil? && @name.to_s.length < 1
131
123
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
132
124
  end
@@ -135,6 +127,14 @@ module PulpContainerClient
135
127
  invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
136
128
  end
137
129
 
130
+ if !@retain_repo_versions.nil? && @retain_repo_versions < 1
131
+ invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
132
+ end
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,33 +142,13 @@ 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
147
145
  return false if !@name.nil? && @name.to_s.length < 1
148
146
  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
-
172
152
  # Custom attribute writer method with validation
173
153
  # @param [Object] name Value to be assigned
174
154
  def name=(name)
@@ -193,17 +173,37 @@ module PulpContainerClient
193
173
  @description = description
194
174
  end
195
175
 
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
- retain_checkpoints == o.retain_checkpoints &&
202
- pulp_labels == o.pulp_labels &&
201
+ name == o.name &&
202
+ description == o.description &&
203
203
  retain_repo_versions == o.retain_repo_versions &&
204
204
  manifest_signing_service == o.manifest_signing_service &&
205
- name == o.name &&
206
- description == o.description
205
+ pulp_labels == o.pulp_labels &&
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
- [retain_checkpoints, pulp_labels, retain_repo_versions, manifest_signing_service, name, description].hash
218
+ [name, description, retain_repo_versions, manifest_signing_service, pulp_labels, retain_checkpoints].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.5'
14
+ VERSION = '2.27.7'
15
15
  end
@@ -33,37 +33,37 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "prn"' do
36
+ describe 'test attribute "name"' 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_last_updated"' do
42
+ describe 'test attribute "repository"' 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 "repository_version"' 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 "pulp_created"' 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 "repository_version"' do
60
+ describe 'test attribute "no_content_change_since"' 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 "no_content_change_since"' do
66
+ describe 'test attribute "pulp_created"' 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
@@ -75,31 +75,31 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
75
75
  end
76
76
  end
77
77
 
78
- describe 'test attribute "hidden"' do
78
+ describe 'test attribute "pulp_labels"' 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 "name"' 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_href"' do
90
+ describe 'test attribute "pulp_last_updated"' 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"' do
96
+ describe 'test attribute "prn"' 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 "content_guard_prn"' do
102
+ describe 'test attribute "hidden"' 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 "pulp_labels"' do
36
+ describe 'test attribute "name"' 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 "repository_version"' do
42
+ describe 'test attribute "repository"' 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 "repository_version"' 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 "hidden"' do
54
+ describe 'test attribute "content_guard"' 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 "name"' 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 "repository"' do
66
+ describe 'test attribute "hidden"' 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
@@ -33,37 +33,37 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "prn"' do
36
+ describe 'test attribute "name"' 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_last_updated"' do
42
+ describe 'test attribute "repository"' 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 "repository_version"' 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 "pulp_created"' 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 "repository_version"' do
60
+ describe 'test attribute "no_content_change_since"' 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 "no_content_change_since"' do
66
+ describe 'test attribute "pulp_created"' 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
@@ -75,31 +75,31 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
75
75
  end
76
76
  end
77
77
 
78
- describe 'test attribute "hidden"' do
78
+ describe 'test attribute "pulp_labels"' 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 "name"' 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_href"' do
90
+ describe 'test attribute "pulp_last_updated"' 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"' do
96
+ describe 'test attribute "prn"' 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 "content_guard_prn"' do
102
+ describe 'test attribute "hidden"' 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 "pulp_labels"' do
36
+ describe 'test attribute "name"' 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 "repository_version"' do
42
+ describe 'test attribute "repository"' 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 "repository_version"' 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 "hidden"' do
54
+ describe 'test attribute "content_guard"' 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 "name"' 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 "repository"' do
66
+ describe 'test attribute "hidden"' 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