pulp_container_client 2.27.0 → 2.27.2

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 (73) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -7
  3. data/docs/ContainerContainerDistribution.md +4 -4
  4. data/docs/ContainerContainerDistributionResponse.md +14 -14
  5. data/docs/ContainerContainerPullThroughDistribution.md +4 -4
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +14 -14
  7. data/docs/ContainerContainerPullThroughRemote.md +6 -6
  8. data/docs/ContainerContainerPullThroughRemoteResponse.md +8 -8
  9. data/docs/ContainerContainerPushRepository.md +4 -4
  10. data/docs/ContainerContainerPushRepositoryResponse.md +13 -13
  11. data/docs/ContainerContainerRemote.md +6 -6
  12. data/docs/ContainerContainerRemoteResponse.md +8 -8
  13. data/docs/ContentBlobsApi.md +6 -6
  14. data/docs/ContentManifestsApi.md +6 -6
  15. data/docs/ContentSignaturesApi.md +6 -6
  16. data/docs/ContentTagsApi.md +6 -6
  17. data/docs/DistributionsContainerApi.md +4 -4
  18. data/docs/DistributionsPullThroughApi.md +4 -4
  19. data/docs/PatchedcontainerContainerDistribution.md +4 -4
  20. data/docs/PatchedcontainerContainerPullThroughDistribution.md +4 -4
  21. data/docs/PatchedcontainerContainerPullThroughRemote.md +6 -6
  22. data/docs/PatchedcontainerContainerPushRepository.md +4 -4
  23. data/docs/PatchedcontainerContainerRemote.md +6 -6
  24. data/docs/RepositoriesContainerApi.md +2 -2
  25. data/docs/RepositoriesContainerPushApi.md +2 -2
  26. data/lib/pulp_container_client/api/content_blobs_api.rb +6 -6
  27. data/lib/pulp_container_client/api/content_manifests_api.rb +6 -6
  28. data/lib/pulp_container_client/api/content_signatures_api.rb +6 -6
  29. data/lib/pulp_container_client/api/content_tags_api.rb +6 -6
  30. data/lib/pulp_container_client/api/distributions_container_api.rb +4 -4
  31. data/lib/pulp_container_client/api/distributions_pull_through_api.rb +4 -4
  32. data/lib/pulp_container_client/api/repositories_container_api.rb +2 -2
  33. data/lib/pulp_container_client/api/repositories_container_push_api.rb +2 -2
  34. data/lib/pulp_container_client/models/container_container_distribution.rb +21 -21
  35. data/lib/pulp_container_client/models/container_container_distribution_response.rb +60 -60
  36. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +21 -21
  37. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +60 -60
  38. data/lib/pulp_container_client/models/container_container_pull_through_remote.rb +32 -32
  39. data/lib/pulp_container_client/models/container_container_pull_through_remote_response.rb +44 -44
  40. data/lib/pulp_container_client/models/container_container_push_repository.rb +21 -21
  41. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +59 -59
  42. data/lib/pulp_container_client/models/container_container_remote.rb +33 -33
  43. data/lib/pulp_container_client/models/container_container_remote_response.rb +45 -45
  44. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +21 -21
  45. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +21 -21
  46. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_remote.rb +32 -32
  47. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +21 -21
  48. data/lib/pulp_container_client/models/patchedcontainer_container_remote.rb +33 -33
  49. data/lib/pulp_container_client/version.rb +1 -1
  50. data/spec/api/content_blobs_api_spec.rb +3 -3
  51. data/spec/api/content_manifests_api_spec.rb +3 -3
  52. data/spec/api/content_signatures_api_spec.rb +3 -3
  53. data/spec/api/content_tags_api_spec.rb +3 -3
  54. data/spec/api/distributions_container_api_spec.rb +2 -2
  55. data/spec/api/distributions_pull_through_api_spec.rb +2 -2
  56. data/spec/api/repositories_container_api_spec.rb +1 -1
  57. data/spec/api/repositories_container_push_api_spec.rb +1 -1
  58. data/spec/models/container_container_distribution_response_spec.rb +11 -11
  59. data/spec/models/container_container_distribution_spec.rb +4 -4
  60. data/spec/models/container_container_pull_through_distribution_response_spec.rb +11 -11
  61. data/spec/models/container_container_pull_through_distribution_spec.rb +4 -4
  62. data/spec/models/container_container_pull_through_remote_response_spec.rb +10 -10
  63. data/spec/models/container_container_pull_through_remote_spec.rb +17 -17
  64. data/spec/models/container_container_push_repository_response_spec.rb +11 -11
  65. data/spec/models/container_container_push_repository_spec.rb +4 -4
  66. data/spec/models/container_container_remote_response_spec.rb +10 -10
  67. data/spec/models/container_container_remote_spec.rb +17 -17
  68. data/spec/models/patchedcontainer_container_distribution_spec.rb +4 -4
  69. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +4 -4
  70. data/spec/models/patchedcontainer_container_pull_through_remote_spec.rb +17 -17
  71. data/spec/models/patchedcontainer_container_push_repository_spec.rb +4 -4
  72. data/spec/models/patchedcontainer_container_remote_spec.rb +17 -17
  73. metadata +2 -2
@@ -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.27.0'
14
+ VERSION = '2.27.2'
15
15
  end
@@ -48,9 +48,9 @@ describe 'ContentBlobsApi' do
48
48
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
49
49
  # @option opts [String] :pulp_label_select Filter labels by search string
50
50
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
51
- # @option opts [String] :repository_version Repository Version referenced by HREF/PRN
52
- # @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
53
- # @option opts [String] :repository_version_removed Repository Version referenced by HREF/PRN
51
+ # @option opts [String] :repository_version
52
+ # @option opts [String] :repository_version_added
53
+ # @option opts [String] :repository_version_removed
54
54
  # @option opts [Array<String>] :fields A list of fields to include in the response.
55
55
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
56
56
  # @return [PaginatedcontainerBlobResponseList]
@@ -51,9 +51,9 @@ describe 'ContentManifestsApi' do
51
51
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
52
52
  # @option opts [String] :pulp_label_select Filter labels by search string
53
53
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
54
- # @option opts [String] :repository_version Repository Version referenced by HREF/PRN
55
- # @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
56
- # @option opts [String] :repository_version_removed Repository Version referenced by HREF/PRN
54
+ # @option opts [String] :repository_version
55
+ # @option opts [String] :repository_version_added
56
+ # @option opts [String] :repository_version_removed
57
57
  # @option opts [Array<String>] :fields A list of fields to include in the response.
58
58
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
59
59
  # @return [PaginatedcontainerManifestResponseList]
@@ -60,9 +60,9 @@ describe 'ContentSignaturesApi' do
60
60
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
61
61
  # @option opts [String] :pulp_label_select Filter labels by search string
62
62
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
63
- # @option opts [String] :repository_version Repository Version referenced by HREF/PRN
64
- # @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
65
- # @option opts [String] :repository_version_removed Repository Version referenced by HREF/PRN
63
+ # @option opts [String] :repository_version
64
+ # @option opts [String] :repository_version_added
65
+ # @option opts [String] :repository_version_removed
66
66
  # @option opts [Array<String>] :fields A list of fields to include in the response.
67
67
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
68
68
  # @return [PaginatedcontainerManifestSignatureResponseList]
@@ -50,9 +50,9 @@ describe 'ContentTagsApi' do
50
50
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
51
51
  # @option opts [String] :pulp_label_select Filter labels by search string
52
52
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
53
- # @option opts [String] :repository_version Repository Version referenced by HREF/PRN
54
- # @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
55
- # @option opts [String] :repository_version_removed Repository Version referenced by HREF/PRN
53
+ # @option opts [String] :repository_version
54
+ # @option opts [String] :repository_version_added
55
+ # @option opts [String] :repository_version_removed
56
56
  # @option opts [Array<String>] :fields A list of fields to include in the response.
57
57
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
58
58
  # @return [PaginatedcontainerTagResponseList]
@@ -100,8 +100,8 @@ describe 'DistributionsContainerApi' do
100
100
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
101
101
  # @option opts [String] :pulp_label_select Filter labels by search string
102
102
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
103
- # @option opts [String] :repository Filter results where repository matches value
104
- # @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
103
+ # @option opts [String] :repository
104
+ # @option opts [Array<String>] :repository__in
105
105
  # @option opts [String] :with_content Filter distributions based on the content served by them
106
106
  # @option opts [Array<String>] :fields A list of fields to include in the response.
107
107
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
@@ -99,8 +99,8 @@ describe 'DistributionsPullThroughApi' do
99
99
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
100
100
  # @option opts [String] :pulp_label_select Filter labels by search string
101
101
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
102
- # @option opts [String] :repository Filter results where repository matches value
103
- # @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
102
+ # @option opts [String] :repository
103
+ # @option opts [Array<String>] :repository__in
104
104
  # @option opts [String] :with_content Filter distributions based on the content served by them
105
105
  # @option opts [Array<String>] :fields A list of fields to include in the response.
106
106
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
@@ -154,7 +154,7 @@ describe 'RepositoriesContainerApi' do
154
154
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
155
155
  # @option opts [String] :pulp_label_select Filter labels by search string
156
156
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
157
- # @option opts [String] :remote Foreign Key referenced by HREF
157
+ # @option opts [String] :remote
158
158
  # @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
159
159
  # @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
160
160
  # @option opts [Integer] :retain_repo_versions__gte Filter results where retain_repo_versions is greater than or equal to value
@@ -69,7 +69,7 @@ describe 'RepositoriesContainerPushApi' do
69
69
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
70
70
  # @option opts [String] :pulp_label_select Filter labels by search string
71
71
  # @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
72
- # @option opts [String] :remote Foreign Key referenced by HREF
72
+ # @option opts [String] :remote
73
73
  # @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
74
74
  # @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
75
75
  # @option opts [Integer] :retain_repo_versions__gte Filter results where retain_repo_versions is greater than or equal to value
@@ -27,67 +27,67 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "repository"' do
30
+ describe 'test attribute "no_content_change_since"' 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 "hidden"' do
36
+ describe 'test attribute "pulp_created"' 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_last_updated"' 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 "content_guard"' do
48
+ describe 'test attribute "base_path"' 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 "prn"' 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 "content_guard"' 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_created"' 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
76
76
  end
77
77
 
78
- describe 'test attribute "name"' 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 "prn"' do
84
+ describe 'test attribute "pulp_href"' do
85
85
  it 'should work' do
86
86
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "pulp_href"' do
90
+ describe 'test attribute "name"' 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,25 +27,25 @@ describe PulpContainerClient::ContainerContainerDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "repository"' do
30
+ describe 'test attribute "hidden"' 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 "hidden"' do
36
+ describe 'test attribute "base_path"' 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"' do
42
+ describe 'test attribute "repository"' 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 "content_guard"' 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
@@ -27,67 +27,67 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "repository"' do
30
+ describe 'test attribute "no_content_change_since"' 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 "hidden"' do
36
+ describe 'test attribute "pulp_created"' 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_last_updated"' 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 "content_guard"' do
48
+ describe 'test attribute "base_path"' 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 "prn"' 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 "content_guard"' 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_created"' 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
76
76
  end
77
77
 
78
- describe 'test attribute "name"' 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 "prn"' do
84
+ describe 'test attribute "pulp_href"' do
85
85
  it 'should work' do
86
86
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "pulp_href"' do
90
+ describe 'test attribute "name"' 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,25 +27,25 @@ describe PulpContainerClient::ContainerContainerPullThroughDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "repository"' do
30
+ describe 'test attribute "hidden"' 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 "hidden"' do
36
+ describe 'test attribute "base_path"' 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"' do
42
+ describe 'test attribute "repository"' 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 "content_guard"' 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
@@ -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