pulp_container_client 2.19.9 → 2.19.10

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 +8 -8
  5. data/docs/ContainerContainerPullThroughDistribution.md +6 -6
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +8 -8
  7. data/docs/ContainerContainerPushRepository.md +7 -7
  8. data/docs/ContainerContainerPushRepositoryResponse.md +12 -12
  9. data/docs/PatchedcontainerContainerDistribution.md +6 -6
  10. data/docs/PatchedcontainerContainerPullThroughDistribution.md +6 -6
  11. data/docs/PatchedcontainerContainerPushRepository.md +7 -7
  12. data/lib/pulp_container_client/models/container_container_distribution.rb +27 -27
  13. data/lib/pulp_container_client/models/container_container_distribution_response.rb +37 -37
  14. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +27 -27
  15. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +37 -37
  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 +51 -51
  18. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +27 -27
  19. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +27 -27
  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 +7 -7
  23. data/spec/models/container_container_distribution_spec.rb +5 -5
  24. data/spec/models/container_container_pull_through_distribution_response_spec.rb +7 -7
  25. data/spec/models/container_container_pull_through_distribution_spec.rb +5 -5
  26. data/spec/models/container_container_push_repository_response_spec.rb +9 -9
  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
@@ -18,19 +18,19 @@ module PulpContainerClient
18
18
  # A unique name. Ex, `rawhide` and `stable`.
19
19
  attr_accessor :name
20
20
 
21
+ # An optional content-guard. If none is specified, a default one will be used.
22
+ attr_accessor :content_guard
23
+
21
24
  attr_accessor :pulp_labels
22
25
 
23
- # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
24
- attr_accessor :base_path
26
+ # Whether this distribution should be shown in the content app.
27
+ attr_accessor :hidden
25
28
 
26
29
  # The latest RepositoryVersion for this Repository will be served.
27
30
  attr_accessor :repository
28
31
 
29
- # An optional content-guard. If none is specified, a default one will be used.
30
- attr_accessor :content_guard
31
-
32
- # Whether this distribution should be shown in the content app.
33
- attr_accessor :hidden
32
+ # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
33
+ attr_accessor :base_path
34
34
 
35
35
  # RepositoryVersion to be served
36
36
  attr_accessor :repository_version
@@ -45,11 +45,11 @@ module PulpContainerClient
45
45
  def self.attribute_map
46
46
  {
47
47
  :'name' => :'name',
48
- :'pulp_labels' => :'pulp_labels',
49
- :'base_path' => :'base_path',
50
- :'repository' => :'repository',
51
48
  :'content_guard' => :'content_guard',
49
+ :'pulp_labels' => :'pulp_labels',
52
50
  :'hidden' => :'hidden',
51
+ :'repository' => :'repository',
52
+ :'base_path' => :'base_path',
53
53
  :'repository_version' => :'repository_version',
54
54
  :'private' => :'private',
55
55
  :'description' => :'description'
@@ -60,11 +60,11 @@ module PulpContainerClient
60
60
  def self.openapi_types
61
61
  {
62
62
  :'name' => :'String',
63
- :'pulp_labels' => :'Hash<String, String>',
64
- :'base_path' => :'String',
65
- :'repository' => :'String',
66
63
  :'content_guard' => :'String',
64
+ :'pulp_labels' => :'Hash<String, String>',
67
65
  :'hidden' => :'Boolean',
66
+ :'repository' => :'String',
67
+ :'base_path' => :'String',
68
68
  :'repository_version' => :'String',
69
69
  :'private' => :'Boolean',
70
70
  :'description' => :'String'
@@ -99,28 +99,28 @@ module PulpContainerClient
99
99
  self.name = attributes[:'name']
100
100
  end
101
101
 
102
+ if attributes.key?(:'content_guard')
103
+ self.content_guard = attributes[:'content_guard']
104
+ end
105
+
102
106
  if attributes.key?(:'pulp_labels')
103
107
  if (value = attributes[:'pulp_labels']).is_a?(Hash)
104
108
  self.pulp_labels = value
105
109
  end
106
110
  end
107
111
 
108
- if attributes.key?(:'base_path')
109
- self.base_path = attributes[:'base_path']
112
+ if attributes.key?(:'hidden')
113
+ self.hidden = attributes[:'hidden']
114
+ else
115
+ self.hidden = false
110
116
  end
111
117
 
112
118
  if attributes.key?(:'repository')
113
119
  self.repository = attributes[:'repository']
114
120
  end
115
121
 
116
- if attributes.key?(:'content_guard')
117
- self.content_guard = attributes[:'content_guard']
118
- end
119
-
120
- if attributes.key?(:'hidden')
121
- self.hidden = attributes[:'hidden']
122
- else
123
- self.hidden = false
122
+ if attributes.key?(:'base_path')
123
+ self.base_path = attributes[:'base_path']
124
124
  end
125
125
 
126
126
  if attributes.key?(:'repository_version')
@@ -200,11 +200,11 @@ module PulpContainerClient
200
200
  return true if self.equal?(o)
201
201
  self.class == o.class &&
202
202
  name == o.name &&
203
- pulp_labels == o.pulp_labels &&
204
- base_path == o.base_path &&
205
- repository == o.repository &&
206
203
  content_guard == o.content_guard &&
204
+ pulp_labels == o.pulp_labels &&
207
205
  hidden == o.hidden &&
206
+ repository == o.repository &&
207
+ base_path == o.base_path &&
208
208
  repository_version == o.repository_version &&
209
209
  private == o.private &&
210
210
  description == o.description
@@ -219,7 +219,7 @@ module PulpContainerClient
219
219
  # Calculates hash code according to all attributes.
220
220
  # @return [Integer] Hash code
221
221
  def hash
222
- [name, pulp_labels, base_path, repository, content_guard, hidden, repository_version, private, description].hash
222
+ [name, content_guard, pulp_labels, hidden, repository, base_path, repository_version, private, description].hash
223
223
  end
224
224
 
225
225
  # Builds the object from hash
@@ -18,19 +18,19 @@ module PulpContainerClient
18
18
  # A unique name. Ex, `rawhide` and `stable`.
19
19
  attr_accessor :name
20
20
 
21
+ # An optional content-guard. If none is specified, a default one will be used.
22
+ attr_accessor :content_guard
23
+
21
24
  attr_accessor :pulp_labels
22
25
 
23
- # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
24
- attr_accessor :base_path
26
+ # Whether this distribution should be shown in the content app.
27
+ attr_accessor :hidden
25
28
 
26
29
  # The latest RepositoryVersion for this Repository will be served.
27
30
  attr_accessor :repository
28
31
 
29
- # An optional content-guard. If none is specified, a default one will be used.
30
- attr_accessor :content_guard
31
-
32
- # Whether this distribution should be shown in the content app.
33
- attr_accessor :hidden
32
+ # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
33
+ attr_accessor :base_path
34
34
 
35
35
  # Remote that can be used to fetch content when using pull-through caching.
36
36
  attr_accessor :remote
@@ -48,11 +48,11 @@ module PulpContainerClient
48
48
  def self.attribute_map
49
49
  {
50
50
  :'name' => :'name',
51
- :'pulp_labels' => :'pulp_labels',
52
- :'base_path' => :'base_path',
53
- :'repository' => :'repository',
54
51
  :'content_guard' => :'content_guard',
52
+ :'pulp_labels' => :'pulp_labels',
55
53
  :'hidden' => :'hidden',
54
+ :'repository' => :'repository',
55
+ :'base_path' => :'base_path',
56
56
  :'remote' => :'remote',
57
57
  :'distributions' => :'distributions',
58
58
  :'private' => :'private',
@@ -64,11 +64,11 @@ module PulpContainerClient
64
64
  def self.openapi_types
65
65
  {
66
66
  :'name' => :'String',
67
- :'pulp_labels' => :'Hash<String, String>',
68
- :'base_path' => :'String',
69
- :'repository' => :'String',
70
67
  :'content_guard' => :'String',
68
+ :'pulp_labels' => :'Hash<String, String>',
71
69
  :'hidden' => :'Boolean',
70
+ :'repository' => :'String',
71
+ :'base_path' => :'String',
72
72
  :'remote' => :'String',
73
73
  :'distributions' => :'Array<String>',
74
74
  :'private' => :'Boolean',
@@ -103,28 +103,28 @@ module PulpContainerClient
103
103
  self.name = attributes[:'name']
104
104
  end
105
105
 
106
+ if attributes.key?(:'content_guard')
107
+ self.content_guard = attributes[:'content_guard']
108
+ end
109
+
106
110
  if attributes.key?(:'pulp_labels')
107
111
  if (value = attributes[:'pulp_labels']).is_a?(Hash)
108
112
  self.pulp_labels = value
109
113
  end
110
114
  end
111
115
 
112
- if attributes.key?(:'base_path')
113
- self.base_path = attributes[:'base_path']
116
+ if attributes.key?(:'hidden')
117
+ self.hidden = attributes[:'hidden']
118
+ else
119
+ self.hidden = false
114
120
  end
115
121
 
116
122
  if attributes.key?(:'repository')
117
123
  self.repository = attributes[:'repository']
118
124
  end
119
125
 
120
- if attributes.key?(:'content_guard')
121
- self.content_guard = attributes[:'content_guard']
122
- end
123
-
124
- if attributes.key?(:'hidden')
125
- self.hidden = attributes[:'hidden']
126
- else
127
- self.hidden = false
126
+ if attributes.key?(:'base_path')
127
+ self.base_path = attributes[:'base_path']
128
128
  end
129
129
 
130
130
  if attributes.key?(:'remote')
@@ -210,11 +210,11 @@ module PulpContainerClient
210
210
  return true if self.equal?(o)
211
211
  self.class == o.class &&
212
212
  name == o.name &&
213
- pulp_labels == o.pulp_labels &&
214
- base_path == o.base_path &&
215
- repository == o.repository &&
216
213
  content_guard == o.content_guard &&
214
+ pulp_labels == o.pulp_labels &&
217
215
  hidden == o.hidden &&
216
+ repository == o.repository &&
217
+ base_path == o.base_path &&
218
218
  remote == o.remote &&
219
219
  distributions == o.distributions &&
220
220
  private == o.private &&
@@ -230,7 +230,7 @@ module PulpContainerClient
230
230
  # Calculates hash code according to all attributes.
231
231
  # @return [Integer] Hash code
232
232
  def hash
233
- [name, pulp_labels, base_path, repository, content_guard, hidden, remote, distributions, private, description].hash
233
+ [name, content_guard, pulp_labels, hidden, repository, base_path, remote, distributions, private, description].hash
234
234
  end
235
235
 
236
236
  # Builds the object from hash
@@ -15,48 +15,48 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class PatchedcontainerContainerPushRepository
18
- # An optional description.
19
- attr_accessor :description
20
-
21
18
  # A unique name for this repository.
22
19
  attr_accessor :name
23
20
 
24
- attr_accessor :pulp_labels
21
+ # A reference to an associated signing service.
22
+ attr_accessor :manifest_signing_service
25
23
 
26
24
  # Retain X versions of the repository. Default is null which retains all versions.
27
25
  attr_accessor :retain_repo_versions
28
26
 
29
- # A reference to an associated signing service.
30
- attr_accessor :manifest_signing_service
27
+ attr_accessor :pulp_labels
28
+
29
+ # An optional description.
30
+ attr_accessor :description
31
31
 
32
32
  # Attribute mapping from ruby-style variable name to JSON key.
33
33
  def self.attribute_map
34
34
  {
35
- :'description' => :'description',
36
35
  :'name' => :'name',
37
- :'pulp_labels' => :'pulp_labels',
36
+ :'manifest_signing_service' => :'manifest_signing_service',
38
37
  :'retain_repo_versions' => :'retain_repo_versions',
39
- :'manifest_signing_service' => :'manifest_signing_service'
38
+ :'pulp_labels' => :'pulp_labels',
39
+ :'description' => :'description'
40
40
  }
41
41
  end
42
42
 
43
43
  # Attribute type mapping.
44
44
  def self.openapi_types
45
45
  {
46
- :'description' => :'String',
47
46
  :'name' => :'String',
48
- :'pulp_labels' => :'Hash<String, String>',
47
+ :'manifest_signing_service' => :'String',
49
48
  :'retain_repo_versions' => :'Integer',
50
- :'manifest_signing_service' => :'String'
49
+ :'pulp_labels' => :'Hash<String, String>',
50
+ :'description' => :'String'
51
51
  }
52
52
  end
53
53
 
54
54
  # List of attributes with nullable: true
55
55
  def self.openapi_nullable
56
56
  Set.new([
57
- :'description',
57
+ :'manifest_signing_service',
58
58
  :'retain_repo_versions',
59
- :'manifest_signing_service'
59
+ :'description'
60
60
  ])
61
61
  end
62
62
 
@@ -75,26 +75,26 @@ module PulpContainerClient
75
75
  h[k.to_sym] = v
76
76
  }
77
77
 
78
- if attributes.key?(:'description')
79
- self.description = attributes[:'description']
80
- end
81
-
82
78
  if attributes.key?(:'name')
83
79
  self.name = attributes[:'name']
84
80
  end
85
81
 
86
- if attributes.key?(:'pulp_labels')
87
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
88
- self.pulp_labels = value
89
- end
82
+ if attributes.key?(:'manifest_signing_service')
83
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
90
84
  end
91
85
 
92
86
  if attributes.key?(:'retain_repo_versions')
93
87
  self.retain_repo_versions = attributes[:'retain_repo_versions']
94
88
  end
95
89
 
96
- if attributes.key?(:'manifest_signing_service')
97
- self.manifest_signing_service = attributes[:'manifest_signing_service']
90
+ if attributes.key?(:'pulp_labels')
91
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
92
+ self.pulp_labels = value
93
+ end
94
+ end
95
+
96
+ if attributes.key?(:'description')
97
+ self.description = attributes[:'description']
98
98
  end
99
99
  end
100
100
 
@@ -102,10 +102,6 @@ module PulpContainerClient
102
102
  # @return Array for valid properties with the reasons
103
103
  def list_invalid_properties
104
104
  invalid_properties = Array.new
105
- if !@description.nil? && @description.to_s.length < 1
106
- invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
107
- end
108
-
109
105
  if !@name.nil? && @name.to_s.length < 1
110
106
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
111
107
  end
@@ -114,28 +110,22 @@ module PulpContainerClient
114
110
  invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
115
111
  end
116
112
 
113
+ if !@description.nil? && @description.to_s.length < 1
114
+ invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
115
+ end
116
+
117
117
  invalid_properties
118
118
  end
119
119
 
120
120
  # Check to see if the all the properties in the model are valid
121
121
  # @return true if the model is valid
122
122
  def valid?
123
- return false if !@description.nil? && @description.to_s.length < 1
124
123
  return false if !@name.nil? && @name.to_s.length < 1
125
124
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
125
+ return false if !@description.nil? && @description.to_s.length < 1
126
126
  true
127
127
  end
128
128
 
129
- # Custom attribute writer method with validation
130
- # @param [Object] description Value to be assigned
131
- def description=(description)
132
- if !description.nil? && description.to_s.length < 1
133
- fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
134
- end
135
-
136
- @description = description
137
- end
138
-
139
129
  # Custom attribute writer method with validation
140
130
  # @param [Object] name Value to be assigned
141
131
  def name=(name)
@@ -156,16 +146,26 @@ module PulpContainerClient
156
146
  @retain_repo_versions = retain_repo_versions
157
147
  end
158
148
 
149
+ # Custom attribute writer method with validation
150
+ # @param [Object] description Value to be assigned
151
+ def description=(description)
152
+ if !description.nil? && description.to_s.length < 1
153
+ fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
154
+ end
155
+
156
+ @description = description
157
+ end
158
+
159
159
  # Checks equality by comparing each attribute.
160
160
  # @param [Object] Object to be compared
161
161
  def ==(o)
162
162
  return true if self.equal?(o)
163
163
  self.class == o.class &&
164
- description == o.description &&
165
164
  name == o.name &&
166
- pulp_labels == o.pulp_labels &&
165
+ manifest_signing_service == o.manifest_signing_service &&
167
166
  retain_repo_versions == o.retain_repo_versions &&
168
- manifest_signing_service == o.manifest_signing_service
167
+ pulp_labels == o.pulp_labels &&
168
+ description == o.description
169
169
  end
170
170
 
171
171
  # @see the `==` method
@@ -177,7 +177,7 @@ module PulpContainerClient
177
177
  # Calculates hash code according to all attributes.
178
178
  # @return [Integer] Hash code
179
179
  def hash
180
- [description, name, pulp_labels, retain_repo_versions, manifest_signing_service].hash
180
+ [name, manifest_signing_service, retain_repo_versions, pulp_labels, description].hash
181
181
  end
182
182
 
183
183
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpContainerClient
14
- VERSION = '2.19.9'
14
+ VERSION = '2.19.10'
15
15
  end
@@ -38,37 +38,37 @@ describe 'ContainerContainerDistributionResponse' do
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_labels"' do
41
+ describe 'test attribute "pulp_created"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "base_path"' do
47
+ describe 'test attribute "content_guard"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "pulp_last_updated"' do
53
+ describe 'test attribute "pulp_labels"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "repository"' do
59
+ describe 'test attribute "hidden"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "content_guard"' do
65
+ describe 'test attribute "pulp_last_updated"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "hidden"' do
71
+ describe 'test attribute "repository"' do
72
72
  it 'should work' do
73
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
74
  end
@@ -80,7 +80,7 @@ describe 'ContainerContainerDistributionResponse' do
80
80
  end
81
81
  end
82
82
 
83
- describe 'test attribute "pulp_created"' do
83
+ describe 'test attribute "base_path"' do
84
84
  it 'should work' do
85
85
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
86
  end
@@ -38,31 +38,31 @@ describe 'ContainerContainerDistribution' do
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_labels"' do
41
+ describe 'test attribute "content_guard"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "base_path"' do
47
+ describe 'test attribute "pulp_labels"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "repository"' do
53
+ describe 'test attribute "hidden"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "content_guard"' do
59
+ describe 'test attribute "repository"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "hidden"' do
65
+ describe 'test attribute "base_path"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
@@ -38,37 +38,37 @@ describe 'ContainerContainerPullThroughDistributionResponse' do
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_labels"' do
41
+ describe 'test attribute "pulp_created"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "base_path"' do
47
+ describe 'test attribute "content_guard"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "pulp_last_updated"' do
53
+ describe 'test attribute "pulp_labels"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "repository"' do
59
+ describe 'test attribute "hidden"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "content_guard"' do
65
+ describe 'test attribute "pulp_last_updated"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "hidden"' do
71
+ describe 'test attribute "repository"' do
72
72
  it 'should work' do
73
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
74
  end
@@ -80,7 +80,7 @@ describe 'ContainerContainerPullThroughDistributionResponse' do
80
80
  end
81
81
  end
82
82
 
83
- describe 'test attribute "pulp_created"' do
83
+ describe 'test attribute "base_path"' do
84
84
  it 'should work' do
85
85
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
86
  end
@@ -38,31 +38,31 @@ describe 'ContainerContainerPullThroughDistribution' do
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_labels"' do
41
+ describe 'test attribute "content_guard"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "base_path"' do
47
+ describe 'test attribute "pulp_labels"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "repository"' do
53
+ describe 'test attribute "hidden"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "content_guard"' do
59
+ describe 'test attribute "repository"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "hidden"' do
65
+ describe 'test attribute "base_path"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end