pulp_container_client 2.26.0 → 2.26.1

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