pulp_container_client 2.27.9 → 2.27.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 (33) 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 +14 -14
  5. data/docs/ContainerContainerPullThroughDistribution.md +6 -6
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +14 -14
  7. data/docs/ContainerContainerPushRepository.md +7 -7
  8. data/docs/ContainerContainerPushRepositoryResponse.md +15 -15
  9. data/docs/DistributionsContainerApi.md +2 -2
  10. data/docs/DistributionsPullThroughApi.md +2 -2
  11. data/docs/PatchedcontainerContainerDistribution.md +6 -6
  12. data/docs/PatchedcontainerContainerPullThroughDistribution.md +6 -6
  13. data/docs/PatchedcontainerContainerPushRepository.md +7 -7
  14. data/lib/pulp_container_client/models/container_container_distribution.rb +52 -52
  15. data/lib/pulp_container_client/models/container_container_distribution_response.rb +64 -64
  16. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +52 -52
  17. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +64 -64
  18. data/lib/pulp_container_client/models/container_container_push_repository.rb +68 -68
  19. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +84 -84
  20. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +45 -45
  21. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +45 -45
  22. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +64 -64
  23. data/lib/pulp_container_client/version.rb +1 -1
  24. data/spec/models/container_container_distribution_response_spec.rb +12 -12
  25. data/spec/models/container_container_distribution_spec.rb +4 -4
  26. data/spec/models/container_container_pull_through_distribution_response_spec.rb +12 -12
  27. data/spec/models/container_container_pull_through_distribution_spec.rb +4 -4
  28. data/spec/models/container_container_push_repository_response_spec.rb +11 -11
  29. data/spec/models/container_container_push_repository_spec.rb +6 -6
  30. data/spec/models/patchedcontainer_container_distribution_spec.rb +4 -4
  31. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +4 -4
  32. data/spec/models/patchedcontainer_container_push_repository_spec.rb +6 -6
  33. metadata +60 -60
@@ -16,32 +16,32 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # Serializer for Container Push Repositories.
18
18
  class PatchedcontainerContainerPushRepository
19
- # A unique name for this repository.
20
- attr_accessor :name
21
-
22
- # Retain X checkpoint publications for the repository. Default is null which retains all checkpoints.
23
- attr_accessor :retain_checkpoints
24
-
25
19
  # A reference to an associated signing service.
26
20
  attr_accessor :manifest_signing_service
27
21
 
28
22
  attr_accessor :pulp_labels
29
23
 
30
- # An optional description.
31
- attr_accessor :description
32
-
33
24
  # Retain X versions of the repository. Default is null which retains all versions.
34
25
  attr_accessor :retain_repo_versions
35
26
 
27
+ # Retain X checkpoint publications for the repository. Default is null which retains all checkpoints.
28
+ attr_accessor :retain_checkpoints
29
+
30
+ # A unique name for this repository.
31
+ attr_accessor :name
32
+
33
+ # An optional description.
34
+ attr_accessor :description
35
+
36
36
  # Attribute mapping from ruby-style variable name to JSON key.
37
37
  def self.attribute_map
38
38
  {
39
- :'name' => :'name',
40
- :'retain_checkpoints' => :'retain_checkpoints',
41
39
  :'manifest_signing_service' => :'manifest_signing_service',
42
40
  :'pulp_labels' => :'pulp_labels',
43
- :'description' => :'description',
44
- :'retain_repo_versions' => :'retain_repo_versions'
41
+ :'retain_repo_versions' => :'retain_repo_versions',
42
+ :'retain_checkpoints' => :'retain_checkpoints',
43
+ :'name' => :'name',
44
+ :'description' => :'description'
45
45
  }
46
46
  end
47
47
 
@@ -53,22 +53,22 @@ module PulpContainerClient
53
53
  # Attribute type mapping.
54
54
  def self.openapi_types
55
55
  {
56
- :'name' => :'String',
57
- :'retain_checkpoints' => :'Integer',
58
56
  :'manifest_signing_service' => :'String',
59
57
  :'pulp_labels' => :'Hash<String, String>',
60
- :'description' => :'String',
61
- :'retain_repo_versions' => :'Integer'
58
+ :'retain_repo_versions' => :'Integer',
59
+ :'retain_checkpoints' => :'Integer',
60
+ :'name' => :'String',
61
+ :'description' => :'String'
62
62
  }
63
63
  end
64
64
 
65
65
  # List of attributes with nullable: true
66
66
  def self.openapi_nullable
67
67
  Set.new([
68
- :'retain_checkpoints',
69
68
  :'manifest_signing_service',
70
- :'description',
71
- :'retain_repo_versions'
69
+ :'retain_repo_versions',
70
+ :'retain_checkpoints',
71
+ :'description'
72
72
  ])
73
73
  end
74
74
 
@@ -87,14 +87,6 @@ module PulpContainerClient
87
87
  h[k.to_sym] = v
88
88
  }
89
89
 
90
- if attributes.key?(:'name')
91
- self.name = attributes[:'name']
92
- end
93
-
94
- if attributes.key?(:'retain_checkpoints')
95
- self.retain_checkpoints = attributes[:'retain_checkpoints']
96
- end
97
-
98
90
  if attributes.key?(:'manifest_signing_service')
99
91
  self.manifest_signing_service = attributes[:'manifest_signing_service']
100
92
  end
@@ -105,13 +97,21 @@ module PulpContainerClient
105
97
  end
106
98
  end
107
99
 
108
- if attributes.key?(:'description')
109
- self.description = attributes[:'description']
110
- end
111
-
112
100
  if attributes.key?(:'retain_repo_versions')
113
101
  self.retain_repo_versions = attributes[:'retain_repo_versions']
114
102
  end
103
+
104
+ if attributes.key?(:'retain_checkpoints')
105
+ self.retain_checkpoints = attributes[:'retain_checkpoints']
106
+ end
107
+
108
+ if attributes.key?(:'name')
109
+ self.name = attributes[:'name']
110
+ end
111
+
112
+ if attributes.key?(:'description')
113
+ self.description = attributes[:'description']
114
+ end
115
115
  end
116
116
 
117
117
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -119,20 +119,20 @@ module PulpContainerClient
119
119
  def list_invalid_properties
120
120
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
121
121
  invalid_properties = Array.new
122
- if !@name.nil? && @name.to_s.length < 1
123
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
122
+ if !@retain_repo_versions.nil? && @retain_repo_versions < 1
123
+ invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
124
124
  end
125
125
 
126
126
  if !@retain_checkpoints.nil? && @retain_checkpoints < 1
127
127
  invalid_properties.push('invalid value for "retain_checkpoints", must be greater than or equal to 1.')
128
128
  end
129
129
 
130
- if !@description.nil? && @description.to_s.length < 1
131
- invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
130
+ if !@name.nil? && @name.to_s.length < 1
131
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
132
132
  end
133
133
 
134
- if !@retain_repo_versions.nil? && @retain_repo_versions < 1
135
- invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
134
+ if !@description.nil? && @description.to_s.length < 1
135
+ invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
136
136
  end
137
137
 
138
138
  invalid_properties
@@ -142,25 +142,21 @@ 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 !@name.nil? && @name.to_s.length < 1
145
+ return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
146
146
  return false if !@retain_checkpoints.nil? && @retain_checkpoints < 1
147
+ return false if !@name.nil? && @name.to_s.length < 1
147
148
  return false if !@description.nil? && @description.to_s.length < 1
148
- return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
149
149
  true
150
150
  end
151
151
 
152
152
  # Custom attribute writer method with validation
153
- # @param [Object] name Value to be assigned
154
- def name=(name)
155
- if name.nil?
156
- fail ArgumentError, 'name cannot be nil'
157
- end
158
-
159
- if name.to_s.length < 1
160
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
153
+ # @param [Object] retain_repo_versions Value to be assigned
154
+ def retain_repo_versions=(retain_repo_versions)
155
+ if !retain_repo_versions.nil? && retain_repo_versions < 1
156
+ fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
161
157
  end
162
158
 
163
- @name = name
159
+ @retain_repo_versions = retain_repo_versions
164
160
  end
165
161
 
166
162
  # Custom attribute writer method with validation
@@ -174,23 +170,27 @@ module PulpContainerClient
174
170
  end
175
171
 
176
172
  # Custom attribute writer method with validation
177
- # @param [Object] description Value to be assigned
178
- def description=(description)
179
- if !description.nil? && description.to_s.length < 1
180
- fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
173
+ # @param [Object] name Value to be assigned
174
+ def name=(name)
175
+ if name.nil?
176
+ fail ArgumentError, 'name cannot be nil'
181
177
  end
182
178
 
183
- @description = description
179
+ if name.to_s.length < 1
180
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
181
+ end
182
+
183
+ @name = name
184
184
  end
185
185
 
186
186
  # Custom attribute writer method with validation
187
- # @param [Object] retain_repo_versions Value to be assigned
188
- def retain_repo_versions=(retain_repo_versions)
189
- if !retain_repo_versions.nil? && retain_repo_versions < 1
190
- fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
187
+ # @param [Object] description Value to be assigned
188
+ def description=(description)
189
+ if !description.nil? && description.to_s.length < 1
190
+ fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
191
191
  end
192
192
 
193
- @retain_repo_versions = retain_repo_versions
193
+ @description = description
194
194
  end
195
195
 
196
196
  # Checks equality by comparing each attribute.
@@ -198,12 +198,12 @@ module PulpContainerClient
198
198
  def ==(o)
199
199
  return true if self.equal?(o)
200
200
  self.class == o.class &&
201
- name == o.name &&
202
- retain_checkpoints == o.retain_checkpoints &&
203
201
  manifest_signing_service == o.manifest_signing_service &&
204
202
  pulp_labels == o.pulp_labels &&
205
- description == o.description &&
206
- retain_repo_versions == o.retain_repo_versions
203
+ retain_repo_versions == o.retain_repo_versions &&
204
+ retain_checkpoints == o.retain_checkpoints &&
205
+ name == o.name &&
206
+ description == o.description
207
207
  end
208
208
 
209
209
  # @see the `==` method
@@ -215,7 +215,7 @@ module PulpContainerClient
215
215
  # Calculates hash code according to all attributes.
216
216
  # @return [Integer] Hash code
217
217
  def hash
218
- [name, retain_checkpoints, manifest_signing_service, pulp_labels, description, retain_repo_versions].hash
218
+ [manifest_signing_service, pulp_labels, retain_repo_versions, retain_checkpoints, name, description].hash
219
219
  end
220
220
 
221
221
  # Builds the object from hash
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module PulpContainerClient
14
- VERSION = '2.27.9'
14
+ VERSION = '2.27.10'
15
15
  end
@@ -27,73 +27,73 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "no_content_change_since"' do
30
+ describe 'test attribute "pulp_labels"' 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 "base_path"' 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 "hidden"' do
42
+ describe 'test attribute "pulp_href"' 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_last_updated"' do
48
+ describe 'test attribute "content_guard_prn"' 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_href"' 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 "prn"' 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 "content_guard"' do
66
+ describe 'test attribute "name"' 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_prn"' do
72
+ describe 'test attribute "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 "name"' do
78
+ describe 'test attribute "base_path"' 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 "repository"' do
84
+ describe 'test attribute "pulp_created"' 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_created"' 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 "pulp_labels"' do
96
+ describe 'test attribute "no_content_change_since"' 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
@@ -27,7 +27,7 @@ describe PulpContainerClient::ContainerContainerDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "base_path"' do
30
+ describe 'test attribute "pulp_labels"' 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
@@ -45,19 +45,19 @@ describe PulpContainerClient::ContainerContainerDistribution do
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "name"' do
48
+ describe 'test attribute "repository"' do
49
49
  it 'should work' do
50
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "repository"' do
54
+ describe 'test attribute "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_labels"' do
60
+ describe 'test attribute "base_path"' 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
@@ -27,73 +27,73 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "no_content_change_since"' do
30
+ describe 'test attribute "pulp_labels"' 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 "base_path"' 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 "hidden"' do
42
+ describe 'test attribute "pulp_href"' 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_last_updated"' do
48
+ describe 'test attribute "content_guard_prn"' 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_href"' 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 "prn"' 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 "content_guard"' do
66
+ describe 'test attribute "name"' 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_prn"' do
72
+ describe 'test attribute "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 "name"' do
78
+ describe 'test attribute "base_path"' 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 "repository"' do
84
+ describe 'test attribute "pulp_created"' 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_created"' 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 "pulp_labels"' do
96
+ describe 'test attribute "no_content_change_since"' 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
@@ -27,7 +27,7 @@ describe PulpContainerClient::ContainerContainerPullThroughDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "base_path"' do
30
+ describe 'test attribute "pulp_labels"' 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
@@ -45,19 +45,19 @@ describe PulpContainerClient::ContainerContainerPullThroughDistribution do
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "name"' do
48
+ describe 'test attribute "repository"' do
49
49
  it 'should work' do
50
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "repository"' do
54
+ describe 'test attribute "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_labels"' do
60
+ describe 'test attribute "base_path"' 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
@@ -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 "manifest_signing_service"' 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_href"' do
36
+ describe 'test attribute "pulp_labels"' do
37
37
  it 'should work' do
38
38
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "prn"' 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 "latest_version_href"' do
48
+ describe 'test attribute "pulp_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 "name"' do
54
+ describe 'test attribute "retain_checkpoints"' 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 "retain_checkpoints"' do
60
+ describe 'test attribute "name"' do
61
61
  it 'should work' do
62
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
63
  end
64
64
  end
65
65
 
66
- describe 'test attribute "versions_href"' do
66
+ describe 'test attribute "prn"' 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,25 +75,25 @@ describe PulpContainerClient::ContainerContainerPushRepositoryResponse do
75
75
  end
76
76
  end
77
77
 
78
- describe 'test attribute "manifest_signing_service"' do
78
+ describe 'test attribute "pulp_last_updated"' do
79
79
  it 'should work' do
80
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
81
  end
82
82
  end
83
83
 
84
- describe 'test attribute "pulp_labels"' do
84
+ describe 'test attribute "latest_version_href"' 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 "versions_href"' do
91
91
  it 'should work' do
92
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
93
  end
94
94
  end
95
95
 
96
- describe 'test attribute "retain_repo_versions"' do
96
+ describe 'test attribute "description"' 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
@@ -27,37 +27,37 @@ describe PulpContainerClient::ContainerContainerPushRepository do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "name"' do
30
+ describe 'test attribute "manifest_signing_service"' 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 "retain_checkpoints"' do
36
+ describe 'test attribute "pulp_labels"' do
37
37
  it 'should work' do
38
38
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "manifest_signing_service"' 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 "retain_checkpoints"' 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
58
58
  end
59
59
 
60
- describe 'test attribute "retain_repo_versions"' do
60
+ describe 'test attribute "description"' 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
@@ -27,7 +27,7 @@ describe PulpContainerClient::PatchedcontainerContainerDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "base_path"' do
30
+ describe 'test attribute "pulp_labels"' 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
@@ -45,19 +45,19 @@ describe PulpContainerClient::PatchedcontainerContainerDistribution do
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "name"' do
48
+ describe 'test attribute "repository"' do
49
49
  it 'should work' do
50
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "repository"' do
54
+ describe 'test attribute "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_labels"' do
60
+ describe 'test attribute "base_path"' 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