pulp_container_client 2.26.1 → 2.26.3

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 +4 -4
  4. data/docs/ContainerContainerDistributionResponse.md +12 -12
  5. data/docs/ContainerContainerPullThroughDistribution.md +4 -4
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +12 -12
  7. data/docs/ContainerContainerPushRepository.md +4 -4
  8. data/docs/ContainerContainerPushRepositoryResponse.md +14 -14
  9. data/docs/DistributionsContainerApi.md +10 -10
  10. data/docs/DistributionsPullThroughApi.md +10 -10
  11. data/docs/PatchedcontainerContainerDistribution.md +4 -4
  12. data/docs/PatchedcontainerContainerPullThroughDistribution.md +4 -4
  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 +20 -20
  25. data/lib/pulp_container_client/models/container_container_distribution_response.rb +53 -53
  26. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +20 -20
  27. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +53 -53
  28. data/lib/pulp_container_client/models/container_container_push_repository.rb +21 -21
  29. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +58 -58
  30. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +20 -20
  31. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +20 -20
  32. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +19 -19
  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 +9 -9
  41. data/spec/models/container_container_distribution_spec.rb +6 -6
  42. data/spec/models/container_container_pull_through_distribution_response_spec.rb +9 -9
  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 +3 -3
  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 +3 -3
  49. metadata +58 -58
@@ -16,11 +16,14 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # A serializer for a specialized pull-through distribution referencing sub-distributions.
18
18
  class PatchedcontainerContainerPullThroughDistribution
19
+ # The latest RepositoryVersion for this Repository will be served.
20
+ attr_accessor :repository
21
+
19
22
  # A unique name. Ex, `rawhide` and `stable`.
20
23
  attr_accessor :name
21
24
 
22
- # The latest RepositoryVersion for this Repository will be served.
23
- attr_accessor :repository
25
+ # Whether this distribution should be shown in the content app.
26
+ attr_accessor :hidden
24
27
 
25
28
  attr_accessor :pulp_labels
26
29
 
@@ -30,9 +33,6 @@ module PulpContainerClient
30
33
  # An optional content-guard. If none is specified, a default one will be used.
31
34
  attr_accessor :content_guard
32
35
 
33
- # Whether this distribution should be shown in the content app.
34
- attr_accessor :hidden
35
-
36
36
  # Remote that can be used to fetch content when using pull-through caching.
37
37
  attr_accessor :remote
38
38
 
@@ -48,12 +48,12 @@ module PulpContainerClient
48
48
  # Attribute mapping from ruby-style variable name to JSON key.
49
49
  def self.attribute_map
50
50
  {
51
- :'name' => :'name',
52
51
  :'repository' => :'repository',
52
+ :'name' => :'name',
53
+ :'hidden' => :'hidden',
53
54
  :'pulp_labels' => :'pulp_labels',
54
55
  :'base_path' => :'base_path',
55
56
  :'content_guard' => :'content_guard',
56
- :'hidden' => :'hidden',
57
57
  :'remote' => :'remote',
58
58
  :'distributions' => :'distributions',
59
59
  :'private' => :'private',
@@ -69,12 +69,12 @@ module PulpContainerClient
69
69
  # Attribute type mapping.
70
70
  def self.openapi_types
71
71
  {
72
- :'name' => :'String',
73
72
  :'repository' => :'String',
73
+ :'name' => :'String',
74
+ :'hidden' => :'Boolean',
74
75
  :'pulp_labels' => :'Hash<String, String>',
75
76
  :'base_path' => :'String',
76
77
  :'content_guard' => :'String',
77
- :'hidden' => :'Boolean',
78
78
  :'remote' => :'String',
79
79
  :'distributions' => :'Array<String>',
80
80
  :'private' => :'Boolean',
@@ -105,12 +105,18 @@ module PulpContainerClient
105
105
  h[k.to_sym] = v
106
106
  }
107
107
 
108
+ if attributes.key?(:'repository')
109
+ self.repository = attributes[:'repository']
110
+ end
111
+
108
112
  if attributes.key?(:'name')
109
113
  self.name = attributes[:'name']
110
114
  end
111
115
 
112
- if attributes.key?(:'repository')
113
- self.repository = attributes[:'repository']
116
+ if attributes.key?(:'hidden')
117
+ self.hidden = attributes[:'hidden']
118
+ else
119
+ self.hidden = false
114
120
  end
115
121
 
116
122
  if attributes.key?(:'pulp_labels')
@@ -127,12 +133,6 @@ module PulpContainerClient
127
133
  self.content_guard = attributes[:'content_guard']
128
134
  end
129
135
 
130
- if attributes.key?(:'hidden')
131
- self.hidden = attributes[:'hidden']
132
- else
133
- self.hidden = false
134
- end
135
-
136
136
  if attributes.key?(:'remote')
137
137
  self.remote = attributes[:'remote']
138
138
  end
@@ -225,12 +225,12 @@ module PulpContainerClient
225
225
  def ==(o)
226
226
  return true if self.equal?(o)
227
227
  self.class == o.class &&
228
- name == o.name &&
229
228
  repository == o.repository &&
229
+ name == o.name &&
230
+ hidden == o.hidden &&
230
231
  pulp_labels == o.pulp_labels &&
231
232
  base_path == o.base_path &&
232
233
  content_guard == o.content_guard &&
233
- hidden == o.hidden &&
234
234
  remote == o.remote &&
235
235
  distributions == o.distributions &&
236
236
  private == o.private &&
@@ -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, repository, pulp_labels, base_path, content_guard, hidden, remote, distributions, private, description].hash
249
+ [repository, name, hidden, pulp_labels, base_path, content_guard, remote, distributions, private, description].hash
250
250
  end
251
251
 
252
252
  # Builds the object from hash
@@ -19,25 +19,25 @@ module PulpContainerClient
19
19
  # An optional description.
20
20
  attr_accessor :description
21
21
 
22
+ # A unique name for this repository.
23
+ attr_accessor :name
24
+
22
25
  # Retain X versions of the repository. Default is null which retains all versions.
23
26
  attr_accessor :retain_repo_versions
24
27
 
25
- # A reference to an associated signing service.
26
- attr_accessor :manifest_signing_service
27
-
28
28
  attr_accessor :pulp_labels
29
29
 
30
- # A unique name for this repository.
31
- attr_accessor :name
30
+ # A reference to an associated signing service.
31
+ attr_accessor :manifest_signing_service
32
32
 
33
33
  # Attribute mapping from ruby-style variable name to JSON key.
34
34
  def self.attribute_map
35
35
  {
36
36
  :'description' => :'description',
37
+ :'name' => :'name',
37
38
  :'retain_repo_versions' => :'retain_repo_versions',
38
- :'manifest_signing_service' => :'manifest_signing_service',
39
39
  :'pulp_labels' => :'pulp_labels',
40
- :'name' => :'name'
40
+ :'manifest_signing_service' => :'manifest_signing_service'
41
41
  }
42
42
  end
43
43
 
@@ -50,10 +50,10 @@ module PulpContainerClient
50
50
  def self.openapi_types
51
51
  {
52
52
  :'description' => :'String',
53
+ :'name' => :'String',
53
54
  :'retain_repo_versions' => :'Integer',
54
- :'manifest_signing_service' => :'String',
55
55
  :'pulp_labels' => :'Hash<String, String>',
56
- :'name' => :'String'
56
+ :'manifest_signing_service' => :'String'
57
57
  }
58
58
  end
59
59
 
@@ -62,7 +62,7 @@ module PulpContainerClient
62
62
  Set.new([
63
63
  :'description',
64
64
  :'retain_repo_versions',
65
- :'manifest_signing_service',
65
+ :'manifest_signing_service'
66
66
  ])
67
67
  end
68
68
 
@@ -85,12 +85,12 @@ module PulpContainerClient
85
85
  self.description = attributes[:'description']
86
86
  end
87
87
 
88
- if attributes.key?(:'retain_repo_versions')
89
- self.retain_repo_versions = attributes[:'retain_repo_versions']
88
+ if attributes.key?(:'name')
89
+ self.name = attributes[:'name']
90
90
  end
91
91
 
92
- if attributes.key?(:'manifest_signing_service')
93
- self.manifest_signing_service = attributes[:'manifest_signing_service']
92
+ if attributes.key?(:'retain_repo_versions')
93
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
94
94
  end
95
95
 
96
96
  if attributes.key?(:'pulp_labels')
@@ -99,8 +99,8 @@ module PulpContainerClient
99
99
  end
100
100
  end
101
101
 
102
- if attributes.key?(:'name')
103
- self.name = attributes[:'name']
102
+ if attributes.key?(:'manifest_signing_service')
103
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
104
104
  end
105
105
  end
106
106
 
@@ -159,10 +159,10 @@ module PulpContainerClient
159
159
  return true if self.equal?(o)
160
160
  self.class == o.class &&
161
161
  description == o.description &&
162
+ name == o.name &&
162
163
  retain_repo_versions == o.retain_repo_versions &&
163
- manifest_signing_service == o.manifest_signing_service &&
164
164
  pulp_labels == o.pulp_labels &&
165
- name == o.name
165
+ manifest_signing_service == o.manifest_signing_service
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
- [description, retain_repo_versions, manifest_signing_service, pulp_labels, name].hash
177
+ [description, name, retain_repo_versions, pulp_labels, manifest_signing_service].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.1'
14
+ VERSION = '2.26.3'
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,13 +27,13 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "pulp_created"' 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 "name"' do
36
+ describe 'test attribute "pulp_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
@@ -45,19 +45,19 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "pulp_last_updated"' 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 "prn"' 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 "repository"' 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
@@ -69,25 +69,25 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "base_path"' 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_href"' 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 "content_guard"' do
84
+ describe 'test attribute "prn"' 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 "hidden"' do
90
+ describe 'test attribute "content_guard"' 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 "name"' do
30
+ describe 'test attribute "repository"' 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 "pulp_labels"' 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 "base_path"' 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 "content_guard"' do
54
+ describe 'test attribute "base_path"' 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 "hidden"' 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,13 +27,13 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "pulp_created"' 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 "name"' do
36
+ describe 'test attribute "pulp_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
@@ -45,19 +45,19 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "pulp_last_updated"' 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 "prn"' 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 "repository"' 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
@@ -69,25 +69,25 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "base_path"' 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_href"' 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 "content_guard"' do
84
+ describe 'test attribute "prn"' 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 "hidden"' do
90
+ describe 'test attribute "content_guard"' 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 "name"' do
30
+ describe 'test attribute "repository"' 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 "pulp_labels"' 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 "base_path"' 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 "content_guard"' do
54
+ describe 'test attribute "base_path"' 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 "hidden"' 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