pulp_container_client 2.28.1 → 2.29.0

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 (37) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -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 +14 -14
  9. data/docs/PatchedcontainerContainerDistribution.md +6 -6
  10. data/docs/PatchedcontainerContainerPullThroughDistribution.md +6 -6
  11. data/docs/PatchedcontainerContainerPushRepository.md +7 -7
  12. data/docs/RepositoriesContainerApi.md +3 -3
  13. data/docs/RepositoriesContainerPushApi.md +75 -0
  14. data/lib/pulp_container_client/api/repositories_container_api.rb +6 -6
  15. data/lib/pulp_container_client/api/repositories_container_push_api.rb +66 -0
  16. data/lib/pulp_container_client/models/container_container_distribution.rb +28 -28
  17. data/lib/pulp_container_client/models/container_container_distribution_response.rb +68 -68
  18. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +28 -28
  19. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +68 -68
  20. data/lib/pulp_container_client/models/container_container_push_repository.rb +60 -60
  21. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +80 -80
  22. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +26 -26
  23. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +26 -26
  24. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +60 -60
  25. data/lib/pulp_container_client/version.rb +1 -1
  26. data/spec/api/repositories_container_api_spec.rb +3 -3
  27. data/spec/api/repositories_container_push_api_spec.rb +13 -0
  28. data/spec/models/container_container_distribution_response_spec.rb +13 -13
  29. data/spec/models/container_container_distribution_spec.rb +4 -4
  30. data/spec/models/container_container_pull_through_distribution_response_spec.rb +13 -13
  31. data/spec/models/container_container_pull_through_distribution_spec.rb +4 -4
  32. data/spec/models/container_container_push_repository_response_spec.rb +10 -10
  33. data/spec/models/container_container_push_repository_spec.rb +5 -5
  34. data/spec/models/patchedcontainer_container_distribution_spec.rb +4 -4
  35. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +4 -4
  36. data/spec/models/patchedcontainer_container_push_repository_spec.rb +5 -5
  37. metadata +59 -59
@@ -16,32 +16,32 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # Serializer for Container Push Repositories.
18
18
  class PatchedcontainerContainerPushRepository
19
- # A reference to an associated signing service.
20
- attr_accessor :manifest_signing_service
21
-
22
- # Retain X checkpoint publications for the repository. Default is null which retains all checkpoints.
23
- attr_accessor :retain_checkpoints
24
-
25
- # Retain X versions of the repository. Default is null which retains all versions.
26
- attr_accessor :retain_repo_versions
27
-
28
19
  # An optional description.
29
20
  attr_accessor :description
30
21
 
31
22
  attr_accessor :pulp_labels
32
23
 
24
+ # Retain X versions of the repository. Default is null which retains all versions.
25
+ attr_accessor :retain_repo_versions
26
+
33
27
  # A unique name for this repository.
34
28
  attr_accessor :name
35
29
 
30
+ # Retain X checkpoint publications for the repository. Default is null which retains all checkpoints.
31
+ attr_accessor :retain_checkpoints
32
+
33
+ # A reference to an associated signing service.
34
+ attr_accessor :manifest_signing_service
35
+
36
36
  # Attribute mapping from ruby-style variable name to JSON key.
37
37
  def self.attribute_map
38
38
  {
39
- :'manifest_signing_service' => :'manifest_signing_service',
40
- :'retain_checkpoints' => :'retain_checkpoints',
41
- :'retain_repo_versions' => :'retain_repo_versions',
42
39
  :'description' => :'description',
43
40
  :'pulp_labels' => :'pulp_labels',
44
- :'name' => :'name'
41
+ :'retain_repo_versions' => :'retain_repo_versions',
42
+ :'name' => :'name',
43
+ :'retain_checkpoints' => :'retain_checkpoints',
44
+ :'manifest_signing_service' => :'manifest_signing_service'
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
- :'manifest_signing_service' => :'String',
57
- :'retain_checkpoints' => :'Integer',
58
- :'retain_repo_versions' => :'Integer',
59
56
  :'description' => :'String',
60
57
  :'pulp_labels' => :'Hash<String, String>',
61
- :'name' => :'String'
58
+ :'retain_repo_versions' => :'Integer',
59
+ :'name' => :'String',
60
+ :'retain_checkpoints' => :'Integer',
61
+ :'manifest_signing_service' => :'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
- :'manifest_signing_service',
69
- :'retain_checkpoints',
70
- :'retain_repo_versions',
71
68
  :'description',
69
+ :'retain_repo_versions',
70
+ :'retain_checkpoints',
71
+ :'manifest_signing_service'
72
72
  ])
73
73
  end
74
74
 
@@ -87,18 +87,6 @@ module PulpContainerClient
87
87
  h[k.to_sym] = v
88
88
  }
89
89
 
90
- if attributes.key?(:'manifest_signing_service')
91
- self.manifest_signing_service = attributes[:'manifest_signing_service']
92
- end
93
-
94
- if attributes.key?(:'retain_checkpoints')
95
- self.retain_checkpoints = attributes[:'retain_checkpoints']
96
- end
97
-
98
- if attributes.key?(:'retain_repo_versions')
99
- self.retain_repo_versions = attributes[:'retain_repo_versions']
100
- end
101
-
102
90
  if attributes.key?(:'description')
103
91
  self.description = attributes[:'description']
104
92
  end
@@ -109,9 +97,21 @@ module PulpContainerClient
109
97
  end
110
98
  end
111
99
 
100
+ if attributes.key?(:'retain_repo_versions')
101
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
102
+ end
103
+
112
104
  if attributes.key?(:'name')
113
105
  self.name = attributes[:'name']
114
106
  end
107
+
108
+ if attributes.key?(:'retain_checkpoints')
109
+ self.retain_checkpoints = attributes[:'retain_checkpoints']
110
+ end
111
+
112
+ if attributes.key?(:'manifest_signing_service')
113
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
114
+ end
115
115
  end
116
116
 
117
117
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -119,22 +119,22 @@ module PulpContainerClient
119
119
  def list_invalid_properties
120
120
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
121
121
  invalid_properties = Array.new
122
- if !@retain_checkpoints.nil? && @retain_checkpoints < 1
123
- invalid_properties.push('invalid value for "retain_checkpoints", must be greater than or equal to 1.')
122
+ if !@description.nil? && @description.to_s.length < 1
123
+ invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
124
124
  end
125
125
 
126
126
  if !@retain_repo_versions.nil? && @retain_repo_versions < 1
127
127
  invalid_properties.push('invalid value for "retain_repo_versions", 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.')
132
- end
133
-
134
130
  if !@name.nil? && @name.to_s.length < 1
135
131
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
136
132
  end
137
133
 
134
+ if !@retain_checkpoints.nil? && @retain_checkpoints < 1
135
+ invalid_properties.push('invalid value for "retain_checkpoints", must be greater than or equal to 1.')
136
+ end
137
+
138
138
  invalid_properties
139
139
  end
140
140
 
@@ -142,21 +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 !@retain_checkpoints.nil? && @retain_checkpoints < 1
146
- return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
147
145
  return false if !@description.nil? && @description.to_s.length < 1
146
+ return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
148
147
  return false if !@name.nil? && @name.to_s.length < 1
148
+ return false if !@retain_checkpoints.nil? && @retain_checkpoints < 1
149
149
  true
150
150
  end
151
151
 
152
152
  # Custom attribute writer method with validation
153
- # @param [Object] retain_checkpoints Value to be assigned
154
- def retain_checkpoints=(retain_checkpoints)
155
- if !retain_checkpoints.nil? && retain_checkpoints < 1
156
- fail ArgumentError, 'invalid value for "retain_checkpoints", must be greater than or equal to 1.'
153
+ # @param [Object] description Value to be assigned
154
+ def description=(description)
155
+ if !description.nil? && description.to_s.length < 1
156
+ fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
157
157
  end
158
158
 
159
- @retain_checkpoints = retain_checkpoints
159
+ @description = description
160
160
  end
161
161
 
162
162
  # Custom attribute writer method with validation
@@ -169,16 +169,6 @@ module PulpContainerClient
169
169
  @retain_repo_versions = retain_repo_versions
170
170
  end
171
171
 
172
- # Custom attribute writer method with validation
173
- # @param [Object] description Value to be assigned
174
- def description=(description)
175
- if !description.nil? && description.to_s.length < 1
176
- fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
177
- end
178
-
179
- @description = description
180
- end
181
-
182
172
  # Custom attribute writer method with validation
183
173
  # @param [Object] name Value to be assigned
184
174
  def name=(name)
@@ -193,17 +183,27 @@ module PulpContainerClient
193
183
  @name = name
194
184
  end
195
185
 
186
+ # Custom attribute writer method with validation
187
+ # @param [Object] retain_checkpoints Value to be assigned
188
+ def retain_checkpoints=(retain_checkpoints)
189
+ if !retain_checkpoints.nil? && retain_checkpoints < 1
190
+ fail ArgumentError, 'invalid value for "retain_checkpoints", must be greater than or equal to 1.'
191
+ end
192
+
193
+ @retain_checkpoints = retain_checkpoints
194
+ end
195
+
196
196
  # Checks equality by comparing each attribute.
197
197
  # @param [Object] Object to be compared
198
198
  def ==(o)
199
199
  return true if self.equal?(o)
200
200
  self.class == o.class &&
201
- manifest_signing_service == o.manifest_signing_service &&
202
- retain_checkpoints == o.retain_checkpoints &&
203
- retain_repo_versions == o.retain_repo_versions &&
204
201
  description == o.description &&
205
202
  pulp_labels == o.pulp_labels &&
206
- name == o.name
203
+ retain_repo_versions == o.retain_repo_versions &&
204
+ name == o.name &&
205
+ retain_checkpoints == o.retain_checkpoints &&
206
+ manifest_signing_service == o.manifest_signing_service
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
- [manifest_signing_service, retain_checkpoints, retain_repo_versions, description, pulp_labels, name].hash
218
+ [description, pulp_labels, retain_repo_versions, name, retain_checkpoints, manifest_signing_service].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.28.1'
14
+ VERSION = '2.29.0'
15
15
  end
@@ -107,7 +107,7 @@ describe 'RepositoriesContainerApi' do
107
107
 
108
108
  # unit tests for create
109
109
  # Create a container repository
110
- # ViewSet for container repo.
110
+ # ViewSet for container repo. Repositories linked to a registry distribution inherit the distribution&#39;s access policy for read and content-modifying actions, matching legacy push repository behavior.
111
111
  # @param container_container_repository
112
112
  # @param [Hash] opts the optional parameters
113
113
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
@@ -133,7 +133,7 @@ describe 'RepositoriesContainerApi' do
133
133
 
134
134
  # unit tests for list
135
135
  # List container repositorys
136
- # ViewSet for container repo.
136
+ # ViewSet for container repo. Repositories linked to a registry distribution inherit the distribution&#39;s access policy for read and content-modifying actions, matching legacy push repository behavior.
137
137
  # @param [Hash] opts the optional parameters
138
138
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
139
139
  # @option opts [String] :latest_with_content Content Unit referenced by HREF/PRN
@@ -227,7 +227,7 @@ describe 'RepositoriesContainerApi' do
227
227
 
228
228
  # unit tests for read
229
229
  # Inspect a container repository
230
- # ViewSet for container repo.
230
+ # ViewSet for container repo. Repositories linked to a registry distribution inherit the distribution&#39;s access policy for read and content-modifying actions, matching legacy push repository behavior.
231
231
  # @param container_container_repository_href
232
232
  # @param [Hash] opts the optional parameters
233
233
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
@@ -111,6 +111,19 @@ describe 'RepositoriesContainerPushApi' do
111
111
  end
112
112
  end
113
113
 
114
+ # unit tests for migrate
115
+ # Migrate push repository to container repository
116
+ # Trigger an asynchronous task to convert this push repository into a container repository in place. The repository primary key and version history are preserved; only the repository type changes.
117
+ # @param container_container_push_repository_href
118
+ # @param [Hash] opts the optional parameters
119
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
120
+ # @return [AsyncOperationResponse]
121
+ describe 'migrate test' do
122
+ it 'should work' do
123
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
124
+ end
125
+ end
126
+
114
127
  # unit tests for my_permissions
115
128
  # List user permissions
116
129
  # List permissions available to the current user on this object.
@@ -27,79 +27,79 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "pulp_last_updated"' do
30
+ describe 'test attribute "repository_version"' 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 "no_content_change_since"' 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 "content_guard_prn"' 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 "pulp_href"' 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
58
58
  end
59
59
 
60
- describe 'test attribute "prn"' do
60
+ describe 'test attribute "content_guard_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 "pulp_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 "pulp_labels"' do
72
+ describe 'test attribute "content_guard"' 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 "prn"' 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 "hidden"' 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 "repository"' do
90
+ describe 'test attribute "pulp_last_updated"' do
91
91
  it 'should work' do
92
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
93
  end
94
94
  end
95
95
 
96
- describe 'test attribute "repository_version"' do
96
+ describe 'test attribute "base_path"' 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 "base_path"' do
102
+ describe 'test attribute "no_content_change_since"' 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
@@ -27,7 +27,7 @@ describe PulpContainerClient::ContainerContainerDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "content_guard"' do
30
+ describe 'test attribute "repository_version"' 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,13 +39,13 @@ describe PulpContainerClient::ContainerContainerDistribution do
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "name"' 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 "hidden"' 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
@@ -57,7 +57,7 @@ describe PulpContainerClient::ContainerContainerDistribution do
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "repository_version"' do
60
+ describe 'test attribute "content_guard"' 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,79 +27,79 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "pulp_last_updated"' do
30
+ describe 'test attribute "repository_version"' 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 "no_content_change_since"' 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 "content_guard_prn"' 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 "pulp_href"' 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
58
58
  end
59
59
 
60
- describe 'test attribute "prn"' do
60
+ describe 'test attribute "content_guard_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 "pulp_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 "pulp_labels"' do
72
+ describe 'test attribute "content_guard"' 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 "prn"' 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 "hidden"' 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 "repository"' do
90
+ describe 'test attribute "pulp_last_updated"' do
91
91
  it 'should work' do
92
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
93
  end
94
94
  end
95
95
 
96
- describe 'test attribute "repository_version"' do
96
+ describe 'test attribute "base_path"' 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 "base_path"' do
102
+ describe 'test attribute "no_content_change_since"' 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
@@ -27,7 +27,7 @@ describe PulpContainerClient::ContainerContainerPullThroughDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "content_guard"' do
30
+ describe 'test attribute "repository_version"' 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,13 +39,13 @@ describe PulpContainerClient::ContainerContainerPullThroughDistribution do
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "name"' 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 "hidden"' 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
@@ -57,7 +57,7 @@ describe PulpContainerClient::ContainerContainerPullThroughDistribution do
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "repository_version"' do
60
+ describe 'test attribute "content_guard"' 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,37 +27,37 @@ describe PulpContainerClient::ContainerContainerPushRepositoryResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "manifest_signing_service"' 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_last_updated"' 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 "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_href"' 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 "retain_checkpoints"' do
54
+ describe 'test attribute "latest_version_href"' do
55
55
  it 'should work' do
56
56
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "retain_repo_versions"' do
60
+ describe 'test attribute "pulp_href"' 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
@@ -69,25 +69,25 @@ describe PulpContainerClient::ContainerContainerPushRepositoryResponse do
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "description"' 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 "pulp_created"' 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 "retain_checkpoints"' 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 "name"' do
90
+ describe 'test attribute "manifest_signing_service"' 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 "manifest_signing_service"' 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 "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
@@ -45,19 +45,19 @@ describe PulpContainerClient::ContainerContainerPushRepository do
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "description"' 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 "pulp_labels"' 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 "name"' do
60
+ describe 'test attribute "manifest_signing_service"' 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