pulp_container_client 2.27.7 → 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 (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 +6 -6
  8. data/docs/ContainerContainerPushRepositoryResponse.md +16 -16
  9. data/docs/PatchedcontainerContainerDistribution.md +6 -6
  10. data/docs/PatchedcontainerContainerPullThroughDistribution.md +6 -6
  11. data/docs/PatchedcontainerContainerPushRepository.md +6 -6
  12. data/lib/pulp_container_client/models/container_container_distribution.rb +30 -30
  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 +30 -30
  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 +43 -43
  17. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +84 -84
  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 +43 -43
  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 +5 -5
  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 +5 -5
  26. data/spec/models/container_container_push_repository_response_spec.rb +12 -12
  27. data/spec/models/container_container_push_repository_spec.rb +5 -5
  28. data/spec/models/patchedcontainer_container_distribution_spec.rb +5 -5
  29. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +5 -5
  30. data/spec/models/patchedcontainer_container_push_repository_spec.rb +5 -5
  31. metadata +61 -61
@@ -19,22 +19,22 @@ 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
+ # Whether this distribution should be shown in the content app.
23
+ attr_accessor :hidden
24
+
25
+ # An optional content-guard. If none is specified, a default one will be used.
26
+ attr_accessor :content_guard
27
+
22
28
  # A unique name. Ex, `rawhide` and `stable`.
23
29
  attr_accessor :name
24
30
 
25
31
  # The latest RepositoryVersion for this Repository will be served.
26
32
  attr_accessor :repository
27
33
 
28
- # RepositoryVersion to be served
29
- attr_accessor :repository_version
30
-
31
- # An optional content-guard. If none is specified, a default one will be used.
32
- attr_accessor :content_guard
33
-
34
34
  attr_accessor :pulp_labels
35
35
 
36
- # Whether this distribution should be shown in the content app.
37
- attr_accessor :hidden
36
+ # RepositoryVersion to be served
37
+ attr_accessor :repository_version
38
38
 
39
39
  # Remote that can be used to fetch content when using pull-through caching.
40
40
  attr_accessor :remote
@@ -52,12 +52,12 @@ module PulpContainerClient
52
52
  def self.attribute_map
53
53
  {
54
54
  :'base_path' => :'base_path',
55
+ :'hidden' => :'hidden',
56
+ :'content_guard' => :'content_guard',
55
57
  :'name' => :'name',
56
58
  :'repository' => :'repository',
57
- :'repository_version' => :'repository_version',
58
- :'content_guard' => :'content_guard',
59
59
  :'pulp_labels' => :'pulp_labels',
60
- :'hidden' => :'hidden',
60
+ :'repository_version' => :'repository_version',
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
+ :'hidden' => :'Boolean',
78
+ :'content_guard' => :'String',
77
79
  :'name' => :'String',
78
80
  :'repository' => :'String',
79
- :'repository_version' => :'String',
80
- :'content_guard' => :'String',
81
81
  :'pulp_labels' => :'Hash<String, String>',
82
- :'hidden' => :'Boolean',
82
+ :'repository_version' => :'String',
83
83
  :'remote' => :'String',
84
84
  :'distributions' => :'Array<String>',
85
85
  :'private' => :'Boolean',
@@ -115,20 +115,22 @@ 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']
118
+ if attributes.key?(:'hidden')
119
+ self.hidden = attributes[:'hidden']
120
+ else
121
+ self.hidden = false
120
122
  end
121
123
 
122
- if attributes.key?(:'repository')
123
- self.repository = attributes[:'repository']
124
+ if attributes.key?(:'content_guard')
125
+ self.content_guard = attributes[:'content_guard']
124
126
  end
125
127
 
126
- if attributes.key?(:'repository_version')
127
- self.repository_version = attributes[:'repository_version']
128
+ if attributes.key?(:'name')
129
+ self.name = attributes[:'name']
128
130
  end
129
131
 
130
- if attributes.key?(:'content_guard')
131
- self.content_guard = attributes[:'content_guard']
132
+ if attributes.key?(:'repository')
133
+ self.repository = attributes[:'repository']
132
134
  end
133
135
 
134
136
  if attributes.key?(:'pulp_labels')
@@ -137,10 +139,8 @@ module PulpContainerClient
137
139
  end
138
140
  end
139
141
 
140
- if attributes.key?(:'hidden')
141
- self.hidden = attributes[:'hidden']
142
- else
143
- self.hidden = false
142
+ if attributes.key?(:'repository_version')
143
+ self.repository_version = attributes[:'repository_version']
144
144
  end
145
145
 
146
146
  if attributes.key?(:'remote')
@@ -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
+ hidden == o.hidden &&
240
+ content_guard == o.content_guard &&
239
241
  name == o.name &&
240
242
  repository == o.repository &&
241
- repository_version == o.repository_version &&
242
- content_guard == o.content_guard &&
243
243
  pulp_labels == o.pulp_labels &&
244
- hidden == o.hidden &&
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
- [base_path, name, repository, repository_version, content_guard, pulp_labels, hidden, 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
- # An optional description.
23
- attr_accessor :description
24
-
25
- # Retain X versions of the repository. Default is null which retains all versions.
26
- 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
27
24
 
28
25
  # A reference to an associated signing service.
29
26
  attr_accessor :manifest_signing_service
30
27
 
31
28
  attr_accessor :pulp_labels
32
29
 
33
- # Retain X checkpoint publications for the repository. Default is null which retains all checkpoints.
34
- attr_accessor :retain_checkpoints
30
+ # An optional description.
31
+ attr_accessor :description
32
+
33
+ # Retain X versions of the repository. Default is null which retains all versions.
34
+ attr_accessor :retain_repo_versions
35
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
- :'description' => :'description',
41
- :'retain_repo_versions' => :'retain_repo_versions',
40
+ :'retain_checkpoints' => :'retain_checkpoints',
42
41
  :'manifest_signing_service' => :'manifest_signing_service',
43
42
  :'pulp_labels' => :'pulp_labels',
44
- :'retain_checkpoints' => :'retain_checkpoints'
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
- :'description' => :'String',
58
- :'retain_repo_versions' => :'Integer',
57
+ :'retain_checkpoints' => :'Integer',
59
58
  :'manifest_signing_service' => :'String',
60
59
  :'pulp_labels' => :'Hash<String, String>',
61
- :'retain_checkpoints' => :'Integer'
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
- :'description',
69
- :'retain_repo_versions',
68
+ :'retain_checkpoints',
70
69
  :'manifest_signing_service',
71
- :'retain_checkpoints'
70
+ :'description',
71
+ :'retain_repo_versions'
72
72
  ])
73
73
  end
74
74
 
@@ -91,12 +91,8 @@ module PulpContainerClient
91
91
  self.name = attributes[:'name']
92
92
  end
93
93
 
94
- if attributes.key?(:'description')
95
- self.description = attributes[:'description']
96
- end
97
-
98
- if attributes.key?(:'retain_repo_versions')
99
- self.retain_repo_versions = attributes[:'retain_repo_versions']
94
+ if attributes.key?(:'retain_checkpoints')
95
+ self.retain_checkpoints = attributes[:'retain_checkpoints']
100
96
  end
101
97
 
102
98
  if attributes.key?(:'manifest_signing_service')
@@ -109,8 +105,12 @@ module PulpContainerClient
109
105
  end
110
106
  end
111
107
 
112
- if attributes.key?(:'retain_checkpoints')
113
- self.retain_checkpoints = attributes[:'retain_checkpoints']
108
+ if attributes.key?(:'description')
109
+ self.description = attributes[:'description']
110
+ end
111
+
112
+ if attributes.key?(:'retain_repo_versions')
113
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
114
114
  end
115
115
  end
116
116
 
@@ -123,6 +123,10 @@ 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_checkpoints.nil? && @retain_checkpoints < 1
127
+ invalid_properties.push('invalid value for "retain_checkpoints", must be greater than or equal to 1.')
128
+ end
129
+
126
130
  if !@description.nil? && @description.to_s.length < 1
127
131
  invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
128
132
  end
@@ -131,10 +135,6 @@ module PulpContainerClient
131
135
  invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
132
136
  end
133
137
 
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
 
@@ -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_checkpoints.nil? && @retain_checkpoints < 1
146
147
  return false if !@description.nil? && @description.to_s.length < 1
147
148
  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
 
@@ -163,6 +163,16 @@ module PulpContainerClient
163
163
  @name = name
164
164
  end
165
165
 
166
+ # Custom attribute writer method with validation
167
+ # @param [Object] retain_checkpoints Value to be assigned
168
+ def retain_checkpoints=(retain_checkpoints)
169
+ if !retain_checkpoints.nil? && retain_checkpoints < 1
170
+ fail ArgumentError, 'invalid value for "retain_checkpoints", must be greater than or equal to 1.'
171
+ end
172
+
173
+ @retain_checkpoints = retain_checkpoints
174
+ end
175
+
166
176
  # Custom attribute writer method with validation
167
177
  # @param [Object] description Value to be assigned
168
178
  def description=(description)
@@ -183,27 +193,17 @@ module PulpContainerClient
183
193
  @retain_repo_versions = retain_repo_versions
184
194
  end
185
195
 
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
201
  name == o.name &&
202
- description == o.description &&
203
- retain_repo_versions == o.retain_repo_versions &&
202
+ retain_checkpoints == o.retain_checkpoints &&
204
203
  manifest_signing_service == o.manifest_signing_service &&
205
204
  pulp_labels == o.pulp_labels &&
206
- retain_checkpoints == o.retain_checkpoints
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, description, retain_repo_versions, manifest_signing_service, pulp_labels, retain_checkpoints].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.7'
14
+ VERSION = '2.27.9'
15
15
  end
@@ -27,25 +27,25 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "base_path"' 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 "name"' 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 "repository"' 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 "repository_version"' 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
@@ -57,49 +57,49 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "no_content_change_since"' 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 "pulp_created"' 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 "content_guard"' 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 "pulp_labels"' 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 "content_guard_prn"' 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_last_updated"' 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 "prn"' 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 "hidden"' 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
@@ -33,25 +33,25 @@ describe PulpContainerClient::ContainerContainerDistribution do
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "name"' 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 "repository"' 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 "repository_version"' 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
@@ -63,7 +63,7 @@ describe PulpContainerClient::ContainerContainerDistribution do
63
63
  end
64
64
  end
65
65
 
66
- describe 'test attribute "hidden"' 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,25 +27,25 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "base_path"' 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 "name"' 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 "repository"' 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 "repository_version"' 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
@@ -57,49 +57,49 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "no_content_change_since"' 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 "pulp_created"' 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 "content_guard"' 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 "pulp_labels"' 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 "content_guard_prn"' 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_last_updated"' 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 "prn"' 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 "hidden"' 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
@@ -33,25 +33,25 @@ describe PulpContainerClient::ContainerContainerPullThroughDistribution do
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "name"' 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 "repository"' 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 "repository_version"' 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
@@ -63,7 +63,7 @@ describe PulpContainerClient::ContainerContainerPullThroughDistribution do
63
63
  end
64
64
  end
65
65
 
66
- describe 'test attribute "hidden"' 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,73 +27,73 @@ describe PulpContainerClient::ContainerContainerPushRepositoryResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "name"' do
30
+ describe 'test attribute "pulp_last_updated"' 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 "latest_version_href"' do
36
+ describe 'test attribute "pulp_href"' do
37
37
  it 'should work' do
38
38
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "pulp_href"' do
42
+ describe 'test attribute "prn"' 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 "description"' do
48
+ describe 'test attribute "latest_version_href"' 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 "retain_repo_versions"' do
54
+ describe 'test attribute "name"' 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 "retain_checkpoints"' 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_last_updated"' do
66
+ describe 'test attribute "versions_href"' 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 "manifest_signing_service"' do
72
+ describe 'test attribute "pulp_created"' 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 "prn"' do
78
+ describe 'test attribute "manifest_signing_service"' 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 "versions_href"' do
84
+ describe 'test attribute "pulp_labels"' 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 "description"' 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 "retain_checkpoints"' do
96
+ describe 'test attribute "retain_repo_versions"' 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