pulp_container_client 2.26.6 → 2.27.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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/ContainerContainerPullThroughRemote.md +6 -6
  8. data/docs/ContainerContainerPullThroughRemoteResponse.md +8 -8
  9. data/docs/ContainerContainerPushRepository.md +5 -5
  10. data/docs/ContainerContainerPushRepositoryResponse.md +11 -11
  11. data/docs/ContainerContainerRemote.md +6 -6
  12. data/docs/ContainerContainerRemoteResponse.md +8 -8
  13. data/docs/PatchedcontainerContainerDistribution.md +4 -4
  14. data/docs/PatchedcontainerContainerPullThroughDistribution.md +4 -4
  15. data/docs/PatchedcontainerContainerPullThroughRemote.md +6 -6
  16. data/docs/PatchedcontainerContainerPushRepository.md +5 -5
  17. data/docs/PatchedcontainerContainerRemote.md +6 -6
  18. data/lib/pulp_container_client/models/container_container_distribution.rb +22 -22
  19. data/lib/pulp_container_client/models/container_container_distribution_response.rb +59 -59
  20. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +22 -22
  21. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +59 -59
  22. data/lib/pulp_container_client/models/container_container_pull_through_remote.rb +32 -32
  23. data/lib/pulp_container_client/models/container_container_pull_through_remote_response.rb +44 -44
  24. data/lib/pulp_container_client/models/container_container_push_repository.rb +42 -42
  25. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +55 -55
  26. data/lib/pulp_container_client/models/container_container_remote.rb +33 -33
  27. data/lib/pulp_container_client/models/container_container_remote_response.rb +45 -45
  28. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +20 -20
  29. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +20 -20
  30. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_remote.rb +32 -32
  31. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +42 -42
  32. data/lib/pulp_container_client/models/patchedcontainer_container_remote.rb +33 -33
  33. data/lib/pulp_container_client/version.rb +1 -1
  34. data/spec/models/container_container_distribution_response_spec.rb +10 -10
  35. data/spec/models/container_container_distribution_spec.rb +4 -4
  36. data/spec/models/container_container_pull_through_distribution_response_spec.rb +10 -10
  37. data/spec/models/container_container_pull_through_distribution_spec.rb +4 -4
  38. data/spec/models/container_container_pull_through_remote_response_spec.rb +10 -10
  39. data/spec/models/container_container_pull_through_remote_spec.rb +17 -17
  40. data/spec/models/container_container_push_repository_response_spec.rb +10 -10
  41. data/spec/models/container_container_push_repository_spec.rb +4 -4
  42. data/spec/models/container_container_remote_response_spec.rb +10 -10
  43. data/spec/models/container_container_remote_spec.rb +17 -17
  44. data/spec/models/patchedcontainer_container_distribution_spec.rb +4 -4
  45. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +4 -4
  46. data/spec/models/patchedcontainer_container_pull_through_remote_spec.rb +17 -17
  47. data/spec/models/patchedcontainer_container_push_repository_spec.rb +4 -4
  48. data/spec/models/patchedcontainer_container_remote_spec.rb +17 -17
  49. metadata +1 -1
@@ -16,28 +16,28 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # Serializer for Container Push Repositories.
18
18
  class PatchedcontainerContainerPushRepository
19
- # An optional description.
20
- attr_accessor :description
21
-
22
19
  # A unique name for this repository.
23
20
  attr_accessor :name
24
21
 
22
+ attr_accessor :pulp_labels
23
+
25
24
  # Retain X versions of the repository. Default is null which retains all versions.
26
25
  attr_accessor :retain_repo_versions
27
26
 
27
+ # An optional description.
28
+ attr_accessor :description
29
+
28
30
  # A reference to an associated signing service.
29
31
  attr_accessor :manifest_signing_service
30
32
 
31
- attr_accessor :pulp_labels
32
-
33
33
  # Attribute mapping from ruby-style variable name to JSON key.
34
34
  def self.attribute_map
35
35
  {
36
- :'description' => :'description',
37
36
  :'name' => :'name',
37
+ :'pulp_labels' => :'pulp_labels',
38
38
  :'retain_repo_versions' => :'retain_repo_versions',
39
- :'manifest_signing_service' => :'manifest_signing_service',
40
- :'pulp_labels' => :'pulp_labels'
39
+ :'description' => :'description',
40
+ :'manifest_signing_service' => :'manifest_signing_service'
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
- :'description' => :'String',
53
52
  :'name' => :'String',
53
+ :'pulp_labels' => :'Hash<String, String>',
54
54
  :'retain_repo_versions' => :'Integer',
55
- :'manifest_signing_service' => :'String',
56
- :'pulp_labels' => :'Hash<String, String>'
55
+ :'description' => :'String',
56
+ :'manifest_signing_service' => :'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
- :'description',
64
63
  :'retain_repo_versions',
65
- :'manifest_signing_service',
64
+ :'description',
65
+ :'manifest_signing_service'
66
66
  ])
67
67
  end
68
68
 
@@ -81,26 +81,26 @@ module PulpContainerClient
81
81
  h[k.to_sym] = v
82
82
  }
83
83
 
84
- if attributes.key?(:'description')
85
- self.description = attributes[:'description']
86
- end
87
-
88
84
  if attributes.key?(:'name')
89
85
  self.name = attributes[:'name']
90
86
  end
91
87
 
88
+ if attributes.key?(:'pulp_labels')
89
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
90
+ self.pulp_labels = value
91
+ end
92
+ end
93
+
92
94
  if attributes.key?(:'retain_repo_versions')
93
95
  self.retain_repo_versions = attributes[:'retain_repo_versions']
94
96
  end
95
97
 
96
- if attributes.key?(:'manifest_signing_service')
97
- self.manifest_signing_service = attributes[:'manifest_signing_service']
98
+ if attributes.key?(:'description')
99
+ self.description = attributes[:'description']
98
100
  end
99
101
 
100
- if attributes.key?(:'pulp_labels')
101
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
102
- self.pulp_labels = value
103
- end
102
+ if attributes.key?(:'manifest_signing_service')
103
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
104
104
  end
105
105
  end
106
106
 
@@ -109,14 +109,14 @@ module PulpContainerClient
109
109
  def list_invalid_properties
110
110
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
111
111
  invalid_properties = Array.new
112
- if !@description.nil? && @description.to_s.length < 1
113
- invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
114
- end
115
-
116
112
  if !@name.nil? && @name.to_s.length < 1
117
113
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
118
114
  end
119
115
 
116
+ if !@description.nil? && @description.to_s.length < 1
117
+ invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
118
+ end
119
+
120
120
  invalid_properties
121
121
  end
122
122
 
@@ -124,21 +124,11 @@ module PulpContainerClient
124
124
  # @return true if the model is valid
125
125
  def valid?
126
126
  warn '[DEPRECATED] the `valid?` method is obsolete'
127
- return false if !@description.nil? && @description.to_s.length < 1
128
127
  return false if !@name.nil? && @name.to_s.length < 1
128
+ return false if !@description.nil? && @description.to_s.length < 1
129
129
  true
130
130
  end
131
131
 
132
- # Custom attribute writer method with validation
133
- # @param [Object] description Value to be assigned
134
- def description=(description)
135
- if !description.nil? && description.to_s.length < 1
136
- fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
137
- end
138
-
139
- @description = description
140
- end
141
-
142
132
  # Custom attribute writer method with validation
143
133
  # @param [Object] name Value to be assigned
144
134
  def name=(name)
@@ -153,16 +143,26 @@ module PulpContainerClient
153
143
  @name = name
154
144
  end
155
145
 
146
+ # Custom attribute writer method with validation
147
+ # @param [Object] description Value to be assigned
148
+ def description=(description)
149
+ if !description.nil? && description.to_s.length < 1
150
+ fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
151
+ end
152
+
153
+ @description = description
154
+ end
155
+
156
156
  # Checks equality by comparing each attribute.
157
157
  # @param [Object] Object to be compared
158
158
  def ==(o)
159
159
  return true if self.equal?(o)
160
160
  self.class == o.class &&
161
- description == o.description &&
162
161
  name == o.name &&
162
+ pulp_labels == o.pulp_labels &&
163
163
  retain_repo_versions == o.retain_repo_versions &&
164
- manifest_signing_service == o.manifest_signing_service &&
165
- pulp_labels == o.pulp_labels
164
+ description == o.description &&
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, name, retain_repo_versions, manifest_signing_service, pulp_labels].hash
177
+ [name, pulp_labels, retain_repo_versions, description, manifest_signing_service].hash
178
178
  end
179
179
 
180
180
  # Builds the object from hash
@@ -22,6 +22,11 @@ module PulpContainerClient
22
22
  # The URL of an external content source.
23
23
  attr_accessor :url
24
24
 
25
+ attr_accessor :pulp_labels
26
+
27
+ # immediate - All manifests and blobs are downloaded and saved during a sync. on_demand - Only tags and manifests are downloaded. Blobs are not downloaded until they are requested for the first time by a client. streamed - Blobs are streamed to the client with every request and never saved. * `immediate` - When syncing, download all metadata and content now. * `on_demand` - When syncing, download metadata, but do not download content now. Instead, download content as clients request it, and save it in Pulp to be served for future client requests. * `streamed` - When syncing, download metadata, but do not download content now. Instead,download content as clients request it, but never save it in Pulp. This causes future requests for that same content to have to be downloaded again.
28
+ attr_accessor :policy
29
+
25
30
  # A PEM encoded CA certificate used to validate the server certificate presented by the remote server.
26
31
  attr_accessor :ca_cert
27
32
 
@@ -49,17 +54,9 @@ module PulpContainerClient
49
54
  # The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed.
50
55
  attr_accessor :password
51
56
 
52
- attr_accessor :pulp_labels
53
-
54
- # Total number of simultaneous connections. If not set then the default value will be used.
55
- attr_accessor :download_concurrency
56
-
57
57
  # Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used.
58
58
  attr_accessor :max_retries
59
59
 
60
- # immediate - All manifests and blobs are downloaded and saved during a sync. on_demand - Only tags and manifests are downloaded. Blobs are not downloaded until they are requested for the first time by a client. streamed - Blobs are streamed to the client with every request and never saved. * `immediate` - When syncing, download all metadata and content now. * `on_demand` - When syncing, download metadata, but do not download content now. Instead, download content as clients request it, and save it in Pulp to be served for future client requests. * `streamed` - When syncing, download metadata, but do not download content now. Instead,download content as clients request it, but never save it in Pulp. This causes future requests for that same content to have to be downloaded again.
61
- attr_accessor :policy
62
-
63
60
  # aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used.
64
61
  attr_accessor :total_timeout
65
62
 
@@ -75,6 +72,9 @@ module PulpContainerClient
75
72
  # Headers for aiohttp.Clientsession
76
73
  attr_accessor :headers
77
74
 
75
+ # Total number of simultaneous connections. If not set then the default value will be used.
76
+ attr_accessor :download_concurrency
77
+
78
78
  # Limits requests per second for each concurrent downloader
79
79
  attr_accessor :rate_limit
80
80
 
@@ -117,6 +117,8 @@ module PulpContainerClient
117
117
  {
118
118
  :'name' => :'name',
119
119
  :'url' => :'url',
120
+ :'pulp_labels' => :'pulp_labels',
121
+ :'policy' => :'policy',
120
122
  :'ca_cert' => :'ca_cert',
121
123
  :'client_cert' => :'client_cert',
122
124
  :'client_key' => :'client_key',
@@ -126,15 +128,13 @@ module PulpContainerClient
126
128
  :'proxy_password' => :'proxy_password',
127
129
  :'username' => :'username',
128
130
  :'password' => :'password',
129
- :'pulp_labels' => :'pulp_labels',
130
- :'download_concurrency' => :'download_concurrency',
131
131
  :'max_retries' => :'max_retries',
132
- :'policy' => :'policy',
133
132
  :'total_timeout' => :'total_timeout',
134
133
  :'connect_timeout' => :'connect_timeout',
135
134
  :'sock_connect_timeout' => :'sock_connect_timeout',
136
135
  :'sock_read_timeout' => :'sock_read_timeout',
137
136
  :'headers' => :'headers',
137
+ :'download_concurrency' => :'download_concurrency',
138
138
  :'rate_limit' => :'rate_limit',
139
139
  :'upstream_name' => :'upstream_name',
140
140
  :'include_tags' => :'include_tags',
@@ -153,6 +153,8 @@ module PulpContainerClient
153
153
  {
154
154
  :'name' => :'String',
155
155
  :'url' => :'String',
156
+ :'pulp_labels' => :'Hash<String, String>',
157
+ :'policy' => :'Policy692Enum',
156
158
  :'ca_cert' => :'String',
157
159
  :'client_cert' => :'String',
158
160
  :'client_key' => :'String',
@@ -162,15 +164,13 @@ module PulpContainerClient
162
164
  :'proxy_password' => :'String',
163
165
  :'username' => :'String',
164
166
  :'password' => :'String',
165
- :'pulp_labels' => :'Hash<String, String>',
166
- :'download_concurrency' => :'Integer',
167
167
  :'max_retries' => :'Integer',
168
- :'policy' => :'Policy692Enum',
169
168
  :'total_timeout' => :'Float',
170
169
  :'connect_timeout' => :'Float',
171
170
  :'sock_connect_timeout' => :'Float',
172
171
  :'sock_read_timeout' => :'Float',
173
172
  :'headers' => :'Array<Object>',
173
+ :'download_concurrency' => :'Integer',
174
174
  :'rate_limit' => :'Integer',
175
175
  :'upstream_name' => :'String',
176
176
  :'include_tags' => :'Array<String>',
@@ -190,12 +190,12 @@ module PulpContainerClient
190
190
  :'proxy_password',
191
191
  :'username',
192
192
  :'password',
193
- :'download_concurrency',
194
193
  :'max_retries',
195
194
  :'total_timeout',
196
195
  :'connect_timeout',
197
196
  :'sock_connect_timeout',
198
197
  :'sock_read_timeout',
198
+ :'download_concurrency',
199
199
  :'rate_limit',
200
200
  :'include_tags',
201
201
  :'exclude_tags',
@@ -225,6 +225,16 @@ module PulpContainerClient
225
225
  self.url = attributes[:'url']
226
226
  end
227
227
 
228
+ if attributes.key?(:'pulp_labels')
229
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
230
+ self.pulp_labels = value
231
+ end
232
+ end
233
+
234
+ if attributes.key?(:'policy')
235
+ self.policy = attributes[:'policy']
236
+ end
237
+
228
238
  if attributes.key?(:'ca_cert')
229
239
  self.ca_cert = attributes[:'ca_cert']
230
240
  end
@@ -261,24 +271,10 @@ module PulpContainerClient
261
271
  self.password = attributes[:'password']
262
272
  end
263
273
 
264
- if attributes.key?(:'pulp_labels')
265
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
266
- self.pulp_labels = value
267
- end
268
- end
269
-
270
- if attributes.key?(:'download_concurrency')
271
- self.download_concurrency = attributes[:'download_concurrency']
272
- end
273
-
274
274
  if attributes.key?(:'max_retries')
275
275
  self.max_retries = attributes[:'max_retries']
276
276
  end
277
277
 
278
- if attributes.key?(:'policy')
279
- self.policy = attributes[:'policy']
280
- end
281
-
282
278
  if attributes.key?(:'total_timeout')
283
279
  self.total_timeout = attributes[:'total_timeout']
284
280
  end
@@ -301,6 +297,10 @@ module PulpContainerClient
301
297
  end
302
298
  end
303
299
 
300
+ if attributes.key?(:'download_concurrency')
301
+ self.download_concurrency = attributes[:'download_concurrency']
302
+ end
303
+
304
304
  if attributes.key?(:'rate_limit')
305
305
  self.rate_limit = attributes[:'rate_limit']
306
306
  end
@@ -604,6 +604,8 @@ module PulpContainerClient
604
604
  self.class == o.class &&
605
605
  name == o.name &&
606
606
  url == o.url &&
607
+ pulp_labels == o.pulp_labels &&
608
+ policy == o.policy &&
607
609
  ca_cert == o.ca_cert &&
608
610
  client_cert == o.client_cert &&
609
611
  client_key == o.client_key &&
@@ -613,15 +615,13 @@ module PulpContainerClient
613
615
  proxy_password == o.proxy_password &&
614
616
  username == o.username &&
615
617
  password == o.password &&
616
- pulp_labels == o.pulp_labels &&
617
- download_concurrency == o.download_concurrency &&
618
618
  max_retries == o.max_retries &&
619
- policy == o.policy &&
620
619
  total_timeout == o.total_timeout &&
621
620
  connect_timeout == o.connect_timeout &&
622
621
  sock_connect_timeout == o.sock_connect_timeout &&
623
622
  sock_read_timeout == o.sock_read_timeout &&
624
623
  headers == o.headers &&
624
+ download_concurrency == o.download_concurrency &&
625
625
  rate_limit == o.rate_limit &&
626
626
  upstream_name == o.upstream_name &&
627
627
  include_tags == o.include_tags &&
@@ -638,7 +638,7 @@ module PulpContainerClient
638
638
  # Calculates hash code according to all attributes.
639
639
  # @return [Integer] Hash code
640
640
  def hash
641
- [name, url, ca_cert, client_cert, client_key, tls_validation, proxy_url, proxy_username, proxy_password, username, password, pulp_labels, download_concurrency, max_retries, policy, total_timeout, connect_timeout, sock_connect_timeout, sock_read_timeout, headers, rate_limit, upstream_name, include_tags, exclude_tags, sigstore].hash
641
+ [name, url, pulp_labels, policy, ca_cert, client_cert, client_key, tls_validation, proxy_url, proxy_username, proxy_password, username, password, max_retries, total_timeout, connect_timeout, sock_connect_timeout, sock_read_timeout, headers, download_concurrency, rate_limit, upstream_name, include_tags, exclude_tags, sigstore].hash
642
642
  end
643
643
 
644
644
  # 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.6'
14
+ VERSION = '2.27.1'
15
15
  end
@@ -27,49 +27,49 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "prn"' do
30
+ describe 'test attribute "name"' 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 "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 "name"' do
42
+ describe 'test attribute "no_content_change_since"' do
43
43
  it 'should work' do
44
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "pulp_href"' 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 "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 "pulp_labels"' 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 "no_content_change_since"' do
66
+ describe 'test attribute "pulp_labels"' do
67
67
  it 'should work' do
68
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "hidden"' do
72
+ describe 'test attribute "pulp_last_updated"' 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::ContainerContainerDistributionResponse do
81
81
  end
82
82
  end
83
83
 
84
- describe 'test attribute "base_path"' do
84
+ describe 'test attribute "hidden"' 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_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
@@ -39,25 +39,25 @@ describe PulpContainerClient::ContainerContainerDistribution do
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "pulp_labels"' do
42
+ describe 'test attribute "base_path"' 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 "base_path"' 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 "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
@@ -27,49 +27,49 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "prn"' do
30
+ describe 'test attribute "name"' 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 "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 "name"' do
42
+ describe 'test attribute "no_content_change_since"' do
43
43
  it 'should work' do
44
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "pulp_href"' 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 "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 "pulp_labels"' 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 "no_content_change_since"' do
66
+ describe 'test attribute "pulp_labels"' do
67
67
  it 'should work' do
68
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "hidden"' do
72
+ describe 'test attribute "pulp_last_updated"' 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::ContainerContainerPullThroughDistributionResponse
81
81
  end
82
82
  end
83
83
 
84
- describe 'test attribute "base_path"' do
84
+ describe 'test attribute "hidden"' 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_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
@@ -39,25 +39,25 @@ describe PulpContainerClient::ContainerContainerPullThroughDistribution do
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "pulp_labels"' do
42
+ describe 'test attribute "base_path"' 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 "base_path"' 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 "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
@@ -63,49 +63,49 @@ describe PulpContainerClient::ContainerContainerPullThroughRemoteResponse do
63
63
  end
64
64
  end
65
65
 
66
- describe 'test attribute "ca_cert"' do
66
+ describe 'test attribute "pulp_labels"' do
67
67
  it 'should work' do
68
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "client_cert"' do
72
+ describe 'test attribute "policy"' 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 "tls_validation"' do
78
+ describe 'test attribute "hidden_fields"' 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 "proxy_url"' do
84
+ describe 'test attribute "ca_cert"' 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_labels"' do
90
+ describe 'test attribute "client_cert"' 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 "download_concurrency"' do
96
+ describe 'test attribute "tls_validation"' 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 "max_retries"' do
102
+ describe 'test attribute "proxy_url"' 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
106
106
  end
107
107
 
108
- describe 'test attribute "policy"' do
108
+ describe 'test attribute "max_retries"' do
109
109
  it 'should work' do
110
110
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
111
111
  end
@@ -141,13 +141,13 @@ describe PulpContainerClient::ContainerContainerPullThroughRemoteResponse do
141
141
  end
142
142
  end
143
143
 
144
- describe 'test attribute "rate_limit"' do
144
+ describe 'test attribute "download_concurrency"' do
145
145
  it 'should work' do
146
146
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
147
147
  end
148
148
  end
149
149
 
150
- describe 'test attribute "hidden_fields"' do
150
+ describe 'test attribute "rate_limit"' do
151
151
  it 'should work' do
152
152
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
153
153
  end