pulp_container_client 2.26.2 → 2.26.4

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 (49) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContainerContainerDistribution.md +8 -8
  4. data/docs/ContainerContainerDistributionResponse.md +16 -16
  5. data/docs/ContainerContainerPullThroughDistribution.md +8 -8
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +16 -16
  7. data/docs/ContainerContainerPushRepository.md +4 -4
  8. data/docs/ContainerContainerPushRepositoryResponse.md +12 -12
  9. data/docs/DistributionsContainerApi.md +12 -12
  10. data/docs/DistributionsPullThroughApi.md +12 -12
  11. data/docs/PatchedcontainerContainerDistribution.md +8 -8
  12. data/docs/PatchedcontainerContainerPullThroughDistribution.md +8 -8
  13. data/docs/PatchedcontainerContainerPushRepository.md +4 -4
  14. data/docs/RemotesContainerApi.md +10 -10
  15. data/docs/RemotesPullThroughApi.md +10 -10
  16. data/docs/RepositoriesContainerApi.md +10 -10
  17. data/docs/RepositoriesContainerPushApi.md +10 -10
  18. data/lib/pulp_container_client/api/distributions_container_api.rb +10 -10
  19. data/lib/pulp_container_client/api/distributions_pull_through_api.rb +10 -10
  20. data/lib/pulp_container_client/api/remotes_container_api.rb +10 -10
  21. data/lib/pulp_container_client/api/remotes_pull_through_api.rb +10 -10
  22. data/lib/pulp_container_client/api/repositories_container_api.rb +10 -10
  23. data/lib/pulp_container_client/api/repositories_container_push_api.rb +10 -10
  24. data/lib/pulp_container_client/models/container_container_distribution.rb +63 -63
  25. data/lib/pulp_container_client/models/container_container_distribution_response.rb +73 -73
  26. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +63 -63
  27. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +73 -73
  28. data/lib/pulp_container_client/models/container_container_push_repository.rb +17 -17
  29. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +53 -53
  30. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +56 -56
  31. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +56 -56
  32. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +17 -17
  33. data/lib/pulp_container_client/version.rb +1 -1
  34. data/spec/api/distributions_container_api_spec.rb +4 -4
  35. data/spec/api/distributions_pull_through_api_spec.rb +4 -4
  36. data/spec/api/remotes_container_api_spec.rb +4 -4
  37. data/spec/api/remotes_pull_through_api_spec.rb +4 -4
  38. data/spec/api/repositories_container_api_spec.rb +4 -4
  39. data/spec/api/repositories_container_push_api_spec.rb +4 -4
  40. data/spec/models/container_container_distribution_response_spec.rb +11 -11
  41. data/spec/models/container_container_distribution_spec.rb +6 -6
  42. data/spec/models/container_container_pull_through_distribution_response_spec.rb +11 -11
  43. data/spec/models/container_container_pull_through_distribution_spec.rb +6 -6
  44. data/spec/models/container_container_push_repository_response_spec.rb +10 -10
  45. data/spec/models/container_container_push_repository_spec.rb +2 -2
  46. data/spec/models/patchedcontainer_container_distribution_spec.rb +6 -6
  47. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +6 -6
  48. data/spec/models/patchedcontainer_container_push_repository_spec.rb +2 -2
  49. metadata +58 -58
@@ -16,7 +16,8 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # Serializer for Container Push Repositories.
18
18
  class PatchedcontainerContainerPushRepository
19
- attr_accessor :pulp_labels
19
+ # Retain X versions of the repository. Default is null which retains all versions.
20
+ attr_accessor :retain_repo_versions
20
21
 
21
22
  # A reference to an associated signing service.
22
23
  attr_accessor :manifest_signing_service
@@ -27,17 +28,16 @@ module PulpContainerClient
27
28
  # An optional description.
28
29
  attr_accessor :description
29
30
 
30
- # Retain X versions of the repository. Default is null which retains all versions.
31
- attr_accessor :retain_repo_versions
31
+ attr_accessor :pulp_labels
32
32
 
33
33
  # Attribute mapping from ruby-style variable name to JSON key.
34
34
  def self.attribute_map
35
35
  {
36
- :'pulp_labels' => :'pulp_labels',
36
+ :'retain_repo_versions' => :'retain_repo_versions',
37
37
  :'manifest_signing_service' => :'manifest_signing_service',
38
38
  :'name' => :'name',
39
39
  :'description' => :'description',
40
- :'retain_repo_versions' => :'retain_repo_versions'
40
+ :'pulp_labels' => :'pulp_labels'
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
- :'pulp_labels' => :'Hash<String, String>',
52
+ :'retain_repo_versions' => :'Integer',
53
53
  :'manifest_signing_service' => :'String',
54
54
  :'name' => :'String',
55
55
  :'description' => :'String',
56
- :'retain_repo_versions' => :'Integer'
56
+ :'pulp_labels' => :'Hash<String, 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
+ :'retain_repo_versions',
63
64
  :'manifest_signing_service',
64
65
  :'description',
65
- :'retain_repo_versions'
66
66
  ])
67
67
  end
68
68
 
@@ -81,10 +81,8 @@ module PulpContainerClient
81
81
  h[k.to_sym] = v
82
82
  }
83
83
 
84
- if attributes.key?(:'pulp_labels')
85
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
86
- self.pulp_labels = value
87
- end
84
+ if attributes.key?(:'retain_repo_versions')
85
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
88
86
  end
89
87
 
90
88
  if attributes.key?(:'manifest_signing_service')
@@ -99,8 +97,10 @@ module PulpContainerClient
99
97
  self.description = attributes[:'description']
100
98
  end
101
99
 
102
- if attributes.key?(:'retain_repo_versions')
103
- self.retain_repo_versions = attributes[:'retain_repo_versions']
100
+ if attributes.key?(:'pulp_labels')
101
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
102
+ self.pulp_labels = value
103
+ end
104
104
  end
105
105
  end
106
106
 
@@ -158,11 +158,11 @@ module PulpContainerClient
158
158
  def ==(o)
159
159
  return true if self.equal?(o)
160
160
  self.class == o.class &&
161
- pulp_labels == o.pulp_labels &&
161
+ retain_repo_versions == o.retain_repo_versions &&
162
162
  manifest_signing_service == o.manifest_signing_service &&
163
163
  name == o.name &&
164
164
  description == o.description &&
165
- retain_repo_versions == o.retain_repo_versions
165
+ pulp_labels == o.pulp_labels
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
- [pulp_labels, manifest_signing_service, name, description, retain_repo_versions].hash
177
+ [retain_repo_versions, manifest_signing_service, name, description, pulp_labels].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.2'
14
+ VERSION = '2.26.4'
15
15
  end
@@ -144,12 +144,12 @@ describe 'DistributionsContainerApi' do
144
144
 
145
145
  # unit tests for partial_update
146
146
  # Update a container distribution
147
- # Trigger an asynchronous partial update task
147
+ # Update the entity partially and trigger an asynchronous task if necessary
148
148
  # @param container_container_distribution_href
149
149
  # @param patchedcontainer_container_distribution
150
150
  # @param [Hash] opts the optional parameters
151
151
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
152
- # @return [AsyncOperationResponse]
152
+ # @return [ContainerContainerDistributionResponse]
153
153
  describe 'partial_update test' do
154
154
  it 'should work' do
155
155
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -215,12 +215,12 @@ describe 'DistributionsContainerApi' do
215
215
 
216
216
  # unit tests for update
217
217
  # Update a container distribution
218
- # Trigger an asynchronous update task
218
+ # Update the entity and trigger an asynchronous task if necessary
219
219
  # @param container_container_distribution_href
220
220
  # @param container_container_distribution
221
221
  # @param [Hash] opts the optional parameters
222
222
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
223
- # @return [AsyncOperationResponse]
223
+ # @return [ContainerContainerDistributionResponse]
224
224
  describe 'update test' do
225
225
  it 'should work' do
226
226
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -143,12 +143,12 @@ describe 'DistributionsPullThroughApi' do
143
143
 
144
144
  # unit tests for partial_update
145
145
  # Update a container pull through distribution
146
- # Trigger an asynchronous partial update task
146
+ # Update the entity partially and trigger an asynchronous task if necessary
147
147
  # @param container_container_pull_through_distribution_href
148
148
  # @param patchedcontainer_container_pull_through_distribution
149
149
  # @param [Hash] opts the optional parameters
150
150
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
151
- # @return [AsyncOperationResponse]
151
+ # @return [ContainerContainerPullThroughDistributionResponse]
152
152
  describe 'partial_update test' do
153
153
  it 'should work' do
154
154
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -214,12 +214,12 @@ describe 'DistributionsPullThroughApi' do
214
214
 
215
215
  # unit tests for update
216
216
  # Update a container pull through distribution
217
- # Trigger an asynchronous update task
217
+ # Update the entity and trigger an asynchronous task if necessary
218
218
  # @param container_container_pull_through_distribution_href
219
219
  # @param container_container_pull_through_distribution
220
220
  # @param [Hash] opts the optional parameters
221
221
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
222
- # @return [AsyncOperationResponse]
222
+ # @return [ContainerContainerPullThroughDistributionResponse]
223
223
  describe 'update test' do
224
224
  it 'should work' do
225
225
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -142,12 +142,12 @@ describe 'RemotesContainerApi' do
142
142
 
143
143
  # unit tests for partial_update
144
144
  # Update a container remote
145
- # Trigger an asynchronous partial update task
145
+ # Update the entity partially and trigger an asynchronous task if necessary
146
146
  # @param container_container_remote_href
147
147
  # @param patchedcontainer_container_remote
148
148
  # @param [Hash] opts the optional parameters
149
149
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
150
- # @return [AsyncOperationResponse]
150
+ # @return [ContainerContainerRemoteResponse]
151
151
  describe 'partial_update test' do
152
152
  it 'should work' do
153
153
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -213,12 +213,12 @@ describe 'RemotesContainerApi' do
213
213
 
214
214
  # unit tests for update
215
215
  # Update a container remote
216
- # Trigger an asynchronous update task
216
+ # Update the entity and trigger an asynchronous task if necessary
217
217
  # @param container_container_remote_href
218
218
  # @param container_container_remote
219
219
  # @param [Hash] opts the optional parameters
220
220
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
221
- # @return [AsyncOperationResponse]
221
+ # @return [ContainerContainerRemoteResponse]
222
222
  describe 'update test' do
223
223
  it 'should work' do
224
224
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -142,12 +142,12 @@ describe 'RemotesPullThroughApi' do
142
142
 
143
143
  # unit tests for partial_update
144
144
  # Update a container pull through remote
145
- # Trigger an asynchronous partial update task
145
+ # Update the entity partially and trigger an asynchronous task if necessary
146
146
  # @param container_container_pull_through_remote_href
147
147
  # @param patchedcontainer_container_pull_through_remote
148
148
  # @param [Hash] opts the optional parameters
149
149
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
150
- # @return [AsyncOperationResponse]
150
+ # @return [ContainerContainerPullThroughRemoteResponse]
151
151
  describe 'partial_update test' do
152
152
  it 'should work' do
153
153
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -213,12 +213,12 @@ describe 'RemotesPullThroughApi' do
213
213
 
214
214
  # unit tests for update
215
215
  # Update a container pull through remote
216
- # Trigger an asynchronous update task
216
+ # Update the entity and trigger an asynchronous task if necessary
217
217
  # @param container_container_pull_through_remote_href
218
218
  # @param container_container_pull_through_remote
219
219
  # @param [Hash] opts the optional parameters
220
220
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
221
- # @return [AsyncOperationResponse]
221
+ # @return [ContainerContainerPullThroughRemoteResponse]
222
222
  describe 'update test' do
223
223
  it 'should work' do
224
224
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -205,12 +205,12 @@ describe 'RepositoriesContainerApi' do
205
205
 
206
206
  # unit tests for partial_update
207
207
  # Update a container repository
208
- # Trigger an asynchronous partial update task
208
+ # Update the entity partially and trigger an asynchronous task if necessary
209
209
  # @param container_container_repository_href
210
210
  # @param patchedcontainer_container_repository
211
211
  # @param [Hash] opts the optional parameters
212
212
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
213
- # @return [AsyncOperationResponse]
213
+ # @return [ContainerContainerRepositoryResponse]
214
214
  describe 'partial_update test' do
215
215
  it 'should work' do
216
216
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -346,12 +346,12 @@ describe 'RepositoriesContainerApi' do
346
346
 
347
347
  # unit tests for update
348
348
  # Update a container repository
349
- # Trigger an asynchronous update task
349
+ # Update the entity and trigger an asynchronous task if necessary
350
350
  # @param container_container_repository_href
351
351
  # @param container_container_repository
352
352
  # @param [Hash] opts the optional parameters
353
353
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
354
- # @return [AsyncOperationResponse]
354
+ # @return [ContainerContainerRepositoryResponse]
355
355
  describe 'update test' do
356
356
  it 'should work' do
357
357
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -120,12 +120,12 @@ describe 'RepositoriesContainerPushApi' do
120
120
 
121
121
  # unit tests for partial_update
122
122
  # Update a container push repository
123
- # Trigger an asynchronous partial update task
123
+ # Update the entity partially and trigger an asynchronous task if necessary
124
124
  # @param container_container_push_repository_href
125
125
  # @param patchedcontainer_container_push_repository
126
126
  # @param [Hash] opts the optional parameters
127
127
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
128
- # @return [AsyncOperationResponse]
128
+ # @return [ContainerContainerPushRepositoryResponse]
129
129
  describe 'partial_update test' do
130
130
  it 'should work' do
131
131
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -232,12 +232,12 @@ describe 'RepositoriesContainerPushApi' do
232
232
 
233
233
  # unit tests for update
234
234
  # Update a container push repository
235
- # Trigger an asynchronous update task
235
+ # Update the entity and trigger an asynchronous task if necessary
236
236
  # @param container_container_push_repository_href
237
237
  # @param container_container_push_repository
238
238
  # @param [Hash] opts the optional parameters
239
239
  # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
240
- # @return [AsyncOperationResponse]
240
+ # @return [ContainerContainerPushRepositoryResponse]
241
241
  describe 'update test' do
242
242
  it 'should work' do
243
243
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -27,67 +27,67 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "pulp_labels"' do
30
+ describe 'test attribute "pulp_last_updated"' do
31
31
  it 'should work' do
32
32
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "repository"' do
36
+ describe 'test attribute "content_guard"' 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 "name"' 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 "base_path"' do
48
+ describe 'test attribute "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 "hidden"' do
54
+ describe 'test attribute "no_content_change_since"' do
55
55
  it 'should work' do
56
56
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "pulp_created"' do
60
+ describe 'test attribute "hidden"' 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 "repository"' 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 "name"' do
72
+ describe 'test attribute "pulp_href"' 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_href"' do
78
+ describe 'test attribute "pulp_labels"' 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 "no_content_change_since"' do
84
+ describe 'test attribute "base_path"' do
85
85
  it 'should work' do
86
86
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "pulp_last_updated"' do
90
+ describe 'test attribute "pulp_created"' do
91
91
  it 'should work' do
92
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
93
  end
@@ -27,37 +27,37 @@ describe PulpContainerClient::ContainerContainerDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "pulp_labels"' do
30
+ describe 'test attribute "content_guard"' 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 "repository"' do
36
+ describe 'test attribute "name"' 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 "base_path"' 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 "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 "content_guard"' do
54
+ describe 'test attribute "pulp_labels"' 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 "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,67 +27,67 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "pulp_labels"' do
30
+ describe 'test attribute "pulp_last_updated"' do
31
31
  it 'should work' do
32
32
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "repository"' do
36
+ describe 'test attribute "content_guard"' 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 "name"' 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 "base_path"' do
48
+ describe 'test attribute "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 "hidden"' do
54
+ describe 'test attribute "no_content_change_since"' do
55
55
  it 'should work' do
56
56
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "pulp_created"' do
60
+ describe 'test attribute "hidden"' 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 "repository"' 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 "name"' do
72
+ describe 'test attribute "pulp_href"' 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_href"' do
78
+ describe 'test attribute "pulp_labels"' 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 "no_content_change_since"' do
84
+ describe 'test attribute "base_path"' do
85
85
  it 'should work' do
86
86
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "pulp_last_updated"' do
90
+ describe 'test attribute "pulp_created"' do
91
91
  it 'should work' do
92
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
93
  end
@@ -27,37 +27,37 @@ describe PulpContainerClient::ContainerContainerPullThroughDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "pulp_labels"' do
30
+ describe 'test attribute "content_guard"' 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 "repository"' do
36
+ describe 'test attribute "name"' 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 "base_path"' 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 "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 "content_guard"' do
54
+ describe 'test attribute "pulp_labels"' 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 "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,49 +27,49 @@ describe PulpContainerClient::ContainerContainerPushRepositoryResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "versions_href"' do
30
+ describe 'test attribute "pulp_last_updated"' do
31
31
  it 'should work' do
32
32
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "pulp_labels"' do
36
+ describe 'test attribute "versions_href"' do
37
37
  it 'should work' do
38
38
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "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 "manifest_signing_service"' 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 "manifest_signing_service"' do
54
+ describe 'test attribute "name"' do
55
55
  it 'should work' do
56
56
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "pulp_created"' do
60
+ describe 'test attribute "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 "name"' do
66
+ describe 'test attribute "description"' 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 "description"' do
72
+ describe 'test attribute "latest_version_href"' 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,13 +81,13 @@ describe PulpContainerClient::ContainerContainerPushRepositoryResponse do
81
81
  end
82
82
  end
83
83
 
84
- describe 'test attribute "retain_repo_versions"' do
84
+ describe 'test attribute "pulp_labels"' do
85
85
  it 'should work' do
86
86
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "pulp_last_updated"' do
90
+ describe 'test attribute "pulp_created"' do
91
91
  it 'should work' do
92
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
93
  end
@@ -27,7 +27,7 @@ describe PulpContainerClient::ContainerContainerPushRepository do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "pulp_labels"' do
30
+ describe 'test attribute "retain_repo_versions"' 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
@@ -51,7 +51,7 @@ describe PulpContainerClient::ContainerContainerPushRepository do
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "retain_repo_versions"' do
54
+ describe 'test attribute "pulp_labels"' 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