pulp_container_client 2.1.1 → 2.1.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 +13 -13
  3. data/docs/ContainerContainerDistribution.md +3 -3
  4. data/docs/ContainerContainerDistributionResponse.md +6 -6
  5. data/docs/ContentBlobsApi.md +2 -2
  6. data/docs/ContentManifestsApi.md +2 -2
  7. data/docs/ContentTagsApi.md +2 -2
  8. data/docs/ContentguardsContentRedirectApi.md +2 -2
  9. data/docs/DistributionsContainerApi.md +2 -2
  10. data/docs/{PaginatedcontainerBlobResponseList.md → InlineResponse200.md} +4 -4
  11. data/docs/{PaginatedcontainerManifestResponseList.md → InlineResponse2001.md} +4 -4
  12. data/docs/{PaginatedcontainerTagResponseList.md → InlineResponse2002.md} +4 -4
  13. data/docs/{PaginatedcontainerContentRedirectContentGuardResponseList.md → InlineResponse2003.md} +4 -4
  14. data/docs/{PaginatedcontainerContainerDistributionResponseList.md → InlineResponse2004.md} +4 -4
  15. data/docs/{PaginatedcontainerContainerRemoteResponseList.md → InlineResponse2005.md} +4 -4
  16. data/docs/{PaginatedcontainerContainerRepositoryResponseList.md → InlineResponse2006.md} +4 -4
  17. data/docs/{PaginatedcontainerContainerPushRepositoryResponseList.md → InlineResponse2007.md} +4 -4
  18. data/docs/{PaginatedRepositoryVersionResponseList.md → InlineResponse2008.md} +4 -4
  19. data/docs/PatchedcontainerContainerDistribution.md +3 -3
  20. data/docs/RemotesContainerApi.md +2 -2
  21. data/docs/RepositoriesContainerApi.md +2 -2
  22. data/docs/RepositoriesContainerPushApi.md +2 -2
  23. data/docs/RepositoriesContainerVersionsApi.md +4 -4
  24. data/lib/pulp_container_client.rb +9 -9
  25. data/lib/pulp_container_client/api/content_blobs_api.rb +3 -3
  26. data/lib/pulp_container_client/api/content_manifests_api.rb +3 -3
  27. data/lib/pulp_container_client/api/content_tags_api.rb +3 -3
  28. data/lib/pulp_container_client/api/contentguards_content_redirect_api.rb +3 -3
  29. data/lib/pulp_container_client/api/distributions_container_api.rb +3 -3
  30. data/lib/pulp_container_client/api/remotes_container_api.rb +3 -3
  31. data/lib/pulp_container_client/api/repositories_container_api.rb +3 -3
  32. data/lib/pulp_container_client/api/repositories_container_push_api.rb +3 -3
  33. data/lib/pulp_container_client/api/repositories_container_versions_api.rb +6 -6
  34. data/lib/pulp_container_client/models/container_container_distribution.rb +11 -11
  35. data/lib/pulp_container_client/models/container_container_distribution_response.rb +24 -24
  36. data/lib/pulp_container_client/models/{paginatedcontainer_blob_response_list.rb → inline_response200.rb} +3 -3
  37. data/lib/pulp_container_client/models/{paginatedcontainer_manifest_response_list.rb → inline_response2001.rb} +3 -3
  38. data/lib/pulp_container_client/models/{paginatedcontainer_tag_response_list.rb → inline_response2002.rb} +3 -3
  39. data/lib/pulp_container_client/models/{paginatedcontainer_content_redirect_content_guard_response_list.rb → inline_response2003.rb} +3 -3
  40. data/lib/pulp_container_client/models/{paginatedcontainer_container_distribution_response_list.rb → inline_response2004.rb} +3 -3
  41. data/lib/pulp_container_client/models/{paginatedcontainer_container_remote_response_list.rb → inline_response2005.rb} +3 -3
  42. data/lib/pulp_container_client/models/{paginatedcontainer_container_repository_response_list.rb → inline_response2006.rb} +3 -3
  43. data/lib/pulp_container_client/models/{paginatedcontainer_container_push_repository_response_list.rb → inline_response2007.rb} +3 -3
  44. data/lib/pulp_container_client/models/{paginated_repository_version_response_list.rb → inline_response2008.rb} +3 -3
  45. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +11 -11
  46. data/lib/pulp_container_client/version.rb +1 -1
  47. data/spec/api/content_blobs_api_spec.rb +1 -1
  48. data/spec/api/content_manifests_api_spec.rb +1 -1
  49. data/spec/api/content_tags_api_spec.rb +1 -1
  50. data/spec/api/contentguards_content_redirect_api_spec.rb +1 -1
  51. data/spec/api/distributions_container_api_spec.rb +1 -1
  52. data/spec/api/remotes_container_api_spec.rb +1 -1
  53. data/spec/api/repositories_container_api_spec.rb +1 -1
  54. data/spec/api/repositories_container_push_api_spec.rb +1 -1
  55. data/spec/api/repositories_container_versions_api_spec.rb +2 -2
  56. data/spec/models/container_container_distribution_response_spec.rb +4 -4
  57. data/spec/models/container_container_distribution_spec.rb +3 -3
  58. data/spec/models/{paginatedcontainer_tag_response_list_spec.rb → inline_response2001_spec.rb} +6 -6
  59. data/spec/models/{paginatedcontainer_blob_response_list_spec.rb → inline_response2002_spec.rb} +6 -6
  60. data/spec/models/{paginated_repository_version_response_list_spec.rb → inline_response2003_spec.rb} +6 -6
  61. data/spec/models/{paginatedcontainer_manifest_response_list_spec.rb → inline_response2004_spec.rb} +6 -6
  62. data/spec/models/inline_response2005_spec.rb +59 -0
  63. data/spec/models/inline_response2006_spec.rb +59 -0
  64. data/spec/models/inline_response2007_spec.rb +59 -0
  65. data/spec/models/inline_response2008_spec.rb +59 -0
  66. data/spec/models/inline_response200_spec.rb +59 -0
  67. data/spec/models/patchedcontainer_container_distribution_spec.rb +3 -3
  68. metadata +66 -66
  69. data/spec/models/paginatedcontainer_container_distribution_response_list_spec.rb +0 -59
  70. data/spec/models/paginatedcontainer_container_push_repository_response_list_spec.rb +0 -59
  71. data/spec/models/paginatedcontainer_container_remote_response_list_spec.rb +0 -59
  72. data/spec/models/paginatedcontainer_container_repository_response_list_spec.rb +0 -59
  73. data/spec/models/paginatedcontainer_content_redirect_content_guard_response_list_spec.rb +0 -59
@@ -119,7 +119,7 @@ Name | Type | Description | Notes
119
119
 
120
120
  ## list
121
121
 
122
- > PaginatedcontainerContainerPushRepositoryResponseList list(opts)
122
+ > InlineResponse2007 list(opts)
123
123
 
124
124
  List container push repositorys
125
125
 
@@ -172,7 +172,7 @@ Name | Type | Description | Notes
172
172
 
173
173
  ### Return type
174
174
 
175
- [**PaginatedcontainerContainerPushRepositoryResponseList**](PaginatedcontainerContainerPushRepositoryResponseList.md)
175
+ [**InlineResponse2007**](InlineResponse2007.md)
176
176
 
177
177
  ### Authorization
178
178
 
@@ -123,7 +123,7 @@ Name | Type | Description | Notes
123
123
 
124
124
  ## list
125
125
 
126
- > PaginatedRepositoryVersionResponseList list(container_container_push_repository_href, opts)
126
+ > InlineResponse2008 list(container_container_push_repository_href, opts)
127
127
 
128
128
  List repository versions
129
129
 
@@ -202,7 +202,7 @@ Name | Type | Description | Notes
202
202
 
203
203
  ### Return type
204
204
 
205
- [**PaginatedRepositoryVersionResponseList**](PaginatedRepositoryVersionResponseList.md)
205
+ [**InlineResponse2008**](InlineResponse2008.md)
206
206
 
207
207
  ### Authorization
208
208
 
@@ -216,7 +216,7 @@ Name | Type | Description | Notes
216
216
 
217
217
  ## list_0
218
218
 
219
- > PaginatedRepositoryVersionResponseList list_0(container_container_repository_href, opts)
219
+ > InlineResponse2008 list_0(container_container_repository_href, opts)
220
220
 
221
221
  List repository versions
222
222
 
@@ -295,7 +295,7 @@ Name | Type | Description | Notes
295
295
 
296
296
  ### Return type
297
297
 
298
- [**PaginatedRepositoryVersionResponseList**](PaginatedRepositoryVersionResponseList.md)
298
+ [**InlineResponse2008**](InlineResponse2008.md)
299
299
 
300
300
  ### Authorization
301
301
 
@@ -33,17 +33,17 @@ require 'pulp_container_client/models/container_manifest_response'
33
33
  require 'pulp_container_client/models/container_tag_response'
34
34
  require 'pulp_container_client/models/content_summary'
35
35
  require 'pulp_container_client/models/content_summary_response'
36
+ require 'pulp_container_client/models/inline_response200'
37
+ require 'pulp_container_client/models/inline_response2001'
38
+ require 'pulp_container_client/models/inline_response2002'
39
+ require 'pulp_container_client/models/inline_response2003'
40
+ require 'pulp_container_client/models/inline_response2004'
41
+ require 'pulp_container_client/models/inline_response2005'
42
+ require 'pulp_container_client/models/inline_response2006'
43
+ require 'pulp_container_client/models/inline_response2007'
44
+ require 'pulp_container_client/models/inline_response2008'
36
45
  require 'pulp_container_client/models/manifest_copy'
37
46
  require 'pulp_container_client/models/oci_build_image'
38
- require 'pulp_container_client/models/paginated_repository_version_response_list'
39
- require 'pulp_container_client/models/paginatedcontainer_blob_response_list'
40
- require 'pulp_container_client/models/paginatedcontainer_container_distribution_response_list'
41
- require 'pulp_container_client/models/paginatedcontainer_container_push_repository_response_list'
42
- require 'pulp_container_client/models/paginatedcontainer_container_remote_response_list'
43
- require 'pulp_container_client/models/paginatedcontainer_container_repository_response_list'
44
- require 'pulp_container_client/models/paginatedcontainer_content_redirect_content_guard_response_list'
45
- require 'pulp_container_client/models/paginatedcontainer_manifest_response_list'
46
- require 'pulp_container_client/models/paginatedcontainer_tag_response_list'
47
47
  require 'pulp_container_client/models/patchedcontainer_container_distribution'
48
48
  require 'pulp_container_client/models/patchedcontainer_container_remote'
49
49
  require 'pulp_container_client/models/patchedcontainer_container_repository'
@@ -33,7 +33,7 @@ module PulpContainerClient
33
33
  # @option opts [String] :repository_version_removed repository_version_removed
34
34
  # @option opts [String] :fields A list of fields to include in the response.
35
35
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
36
- # @return [PaginatedcontainerBlobResponseList]
36
+ # @return [InlineResponse200]
37
37
  def list(opts = {})
38
38
  data, _status_code, _headers = list_with_http_info(opts)
39
39
  data
@@ -53,7 +53,7 @@ module PulpContainerClient
53
53
  # @option opts [String] :repository_version_removed repository_version_removed
54
54
  # @option opts [String] :fields A list of fields to include in the response.
55
55
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
56
- # @return [Array<(PaginatedcontainerBlobResponseList, Integer, Hash)>] PaginatedcontainerBlobResponseList data, response status code and response headers
56
+ # @return [Array<(InlineResponse200, Integer, Hash)>] InlineResponse200 data, response status code and response headers
57
57
  def list_with_http_info(opts = {})
58
58
  if @api_client.config.debugging
59
59
  @api_client.config.logger.debug 'Calling API: ContentBlobsApi.list ...'
@@ -91,7 +91,7 @@ module PulpContainerClient
91
91
  post_body = opts[:body]
92
92
 
93
93
  # return_type
94
- return_type = opts[:return_type] || 'PaginatedcontainerBlobResponseList'
94
+ return_type = opts[:return_type] || 'InlineResponse200'
95
95
 
96
96
  # auth_names
97
97
  auth_names = opts[:auth_names] || ['basicAuth']
@@ -33,7 +33,7 @@ module PulpContainerClient
33
33
  # @option opts [String] :repository_version_removed repository_version_removed
34
34
  # @option opts [String] :fields A list of fields to include in the response.
35
35
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
36
- # @return [PaginatedcontainerManifestResponseList]
36
+ # @return [InlineResponse2001]
37
37
  def list(opts = {})
38
38
  data, _status_code, _headers = list_with_http_info(opts)
39
39
  data
@@ -53,7 +53,7 @@ module PulpContainerClient
53
53
  # @option opts [String] :repository_version_removed repository_version_removed
54
54
  # @option opts [String] :fields A list of fields to include in the response.
55
55
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
56
- # @return [Array<(PaginatedcontainerManifestResponseList, Integer, Hash)>] PaginatedcontainerManifestResponseList data, response status code and response headers
56
+ # @return [Array<(InlineResponse2001, Integer, Hash)>] InlineResponse2001 data, response status code and response headers
57
57
  def list_with_http_info(opts = {})
58
58
  if @api_client.config.debugging
59
59
  @api_client.config.logger.debug 'Calling API: ContentManifestsApi.list ...'
@@ -91,7 +91,7 @@ module PulpContainerClient
91
91
  post_body = opts[:body]
92
92
 
93
93
  # return_type
94
- return_type = opts[:return_type] || 'PaginatedcontainerManifestResponseList'
94
+ return_type = opts[:return_type] || 'InlineResponse2001'
95
95
 
96
96
  # auth_names
97
97
  auth_names = opts[:auth_names] || ['basicAuth']
@@ -34,7 +34,7 @@ module PulpContainerClient
34
34
  # @option opts [String] :repository_version_removed repository_version_removed
35
35
  # @option opts [String] :fields A list of fields to include in the response.
36
36
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
37
- # @return [PaginatedcontainerTagResponseList]
37
+ # @return [InlineResponse2002]
38
38
  def list(opts = {})
39
39
  data, _status_code, _headers = list_with_http_info(opts)
40
40
  data
@@ -55,7 +55,7 @@ module PulpContainerClient
55
55
  # @option opts [String] :repository_version_removed repository_version_removed
56
56
  # @option opts [String] :fields A list of fields to include in the response.
57
57
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
58
- # @return [Array<(PaginatedcontainerTagResponseList, Integer, Hash)>] PaginatedcontainerTagResponseList data, response status code and response headers
58
+ # @return [Array<(InlineResponse2002, Integer, Hash)>] InlineResponse2002 data, response status code and response headers
59
59
  def list_with_http_info(opts = {})
60
60
  if @api_client.config.debugging
61
61
  @api_client.config.logger.debug 'Calling API: ContentTagsApi.list ...'
@@ -94,7 +94,7 @@ module PulpContainerClient
94
94
  post_body = opts[:body]
95
95
 
96
96
  # return_type
97
- return_type = opts[:return_type] || 'PaginatedcontainerTagResponseList'
97
+ return_type = opts[:return_type] || 'InlineResponse2002'
98
98
 
99
99
  # auth_names
100
100
  auth_names = opts[:auth_names] || ['basicAuth']
@@ -153,7 +153,7 @@ module PulpContainerClient
153
153
  # @option opts [String] :ordering Which field to use when ordering the results.
154
154
  # @option opts [String] :fields A list of fields to include in the response.
155
155
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
156
- # @return [PaginatedcontainerContentRedirectContentGuardResponseList]
156
+ # @return [InlineResponse2003]
157
157
  def list(opts = {})
158
158
  data, _status_code, _headers = list_with_http_info(opts)
159
159
  data
@@ -169,7 +169,7 @@ module PulpContainerClient
169
169
  # @option opts [String] :ordering Which field to use when ordering the results.
170
170
  # @option opts [String] :fields A list of fields to include in the response.
171
171
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
172
- # @return [Array<(PaginatedcontainerContentRedirectContentGuardResponseList, Integer, Hash)>] PaginatedcontainerContentRedirectContentGuardResponseList data, response status code and response headers
172
+ # @return [Array<(InlineResponse2003, Integer, Hash)>] InlineResponse2003 data, response status code and response headers
173
173
  def list_with_http_info(opts = {})
174
174
  if @api_client.config.debugging
175
175
  @api_client.config.logger.debug 'Calling API: ContentguardsContentRedirectApi.list ...'
@@ -199,7 +199,7 @@ module PulpContainerClient
199
199
  post_body = opts[:body]
200
200
 
201
201
  # return_type
202
- return_type = opts[:return_type] || 'PaginatedcontainerContentRedirectContentGuardResponseList'
202
+ return_type = opts[:return_type] || 'InlineResponse2003'
203
203
 
204
204
  # auth_names
205
205
  auth_names = opts[:auth_names] || ['basicAuth']
@@ -159,7 +159,7 @@ module PulpContainerClient
159
159
  # @option opts [String] :ordering Which field to use when ordering the results.
160
160
  # @option opts [String] :fields A list of fields to include in the response.
161
161
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
162
- # @return [PaginatedcontainerContainerDistributionResponseList]
162
+ # @return [InlineResponse2004]
163
163
  def list(opts = {})
164
164
  data, _status_code, _headers = list_with_http_info(opts)
165
165
  data
@@ -179,7 +179,7 @@ module PulpContainerClient
179
179
  # @option opts [String] :ordering Which field to use when ordering the results.
180
180
  # @option opts [String] :fields A list of fields to include in the response.
181
181
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
182
- # @return [Array<(PaginatedcontainerContainerDistributionResponseList, Integer, Hash)>] PaginatedcontainerContainerDistributionResponseList data, response status code and response headers
182
+ # @return [Array<(InlineResponse2004, Integer, Hash)>] InlineResponse2004 data, response status code and response headers
183
183
  def list_with_http_info(opts = {})
184
184
  if @api_client.config.debugging
185
185
  @api_client.config.logger.debug 'Calling API: DistributionsContainerApi.list ...'
@@ -213,7 +213,7 @@ module PulpContainerClient
213
213
  post_body = opts[:body]
214
214
 
215
215
  # return_type
216
- return_type = opts[:return_type] || 'PaginatedcontainerContainerDistributionResponseList'
216
+ return_type = opts[:return_type] || 'InlineResponse2004'
217
217
 
218
218
  # auth_names
219
219
  auth_names = opts[:auth_names] || ['basicAuth']
@@ -161,7 +161,7 @@ module PulpContainerClient
161
161
  # @option opts [String] :pulp_last_updated__range pulp_last_updated__range
162
162
  # @option opts [String] :fields A list of fields to include in the response.
163
163
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
164
- # @return [PaginatedcontainerContainerRemoteResponseList]
164
+ # @return [InlineResponse2005]
165
165
  def list(opts = {})
166
166
  data, _status_code, _headers = list_with_http_info(opts)
167
167
  data
@@ -183,7 +183,7 @@ module PulpContainerClient
183
183
  # @option opts [String] :pulp_last_updated__range pulp_last_updated__range
184
184
  # @option opts [String] :fields A list of fields to include in the response.
185
185
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
186
- # @return [Array<(PaginatedcontainerContainerRemoteResponseList, Integer, Hash)>] PaginatedcontainerContainerRemoteResponseList data, response status code and response headers
186
+ # @return [Array<(InlineResponse2005, Integer, Hash)>] InlineResponse2005 data, response status code and response headers
187
187
  def list_with_http_info(opts = {})
188
188
  if @api_client.config.debugging
189
189
  @api_client.config.logger.debug 'Calling API: RemotesContainerApi.list ...'
@@ -219,7 +219,7 @@ module PulpContainerClient
219
219
  post_body = opts[:body]
220
220
 
221
221
  # return_type
222
- return_type = opts[:return_type] || 'PaginatedcontainerContainerRemoteResponseList'
222
+ return_type = opts[:return_type] || 'InlineResponse2005'
223
223
 
224
224
  # auth_names
225
225
  auth_names = opts[:auth_names] || ['basicAuth']
@@ -441,7 +441,7 @@ module PulpContainerClient
441
441
  # @option opts [String] :ordering Which field to use when ordering the results.
442
442
  # @option opts [String] :fields A list of fields to include in the response.
443
443
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
444
- # @return [PaginatedcontainerContainerRepositoryResponseList]
444
+ # @return [InlineResponse2006]
445
445
  def list(opts = {})
446
446
  data, _status_code, _headers = list_with_http_info(opts)
447
447
  data
@@ -457,7 +457,7 @@ module PulpContainerClient
457
457
  # @option opts [String] :ordering Which field to use when ordering the results.
458
458
  # @option opts [String] :fields A list of fields to include in the response.
459
459
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
460
- # @return [Array<(PaginatedcontainerContainerRepositoryResponseList, Integer, Hash)>] PaginatedcontainerContainerRepositoryResponseList data, response status code and response headers
460
+ # @return [Array<(InlineResponse2006, Integer, Hash)>] InlineResponse2006 data, response status code and response headers
461
461
  def list_with_http_info(opts = {})
462
462
  if @api_client.config.debugging
463
463
  @api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.list ...'
@@ -487,7 +487,7 @@ module PulpContainerClient
487
487
  post_body = opts[:body]
488
488
 
489
489
  # return_type
490
- return_type = opts[:return_type] || 'PaginatedcontainerContainerRepositoryResponseList'
490
+ return_type = opts[:return_type] || 'InlineResponse2006'
491
491
 
492
492
  # auth_names
493
493
  auth_names = opts[:auth_names] || ['basicAuth']
@@ -155,7 +155,7 @@ module PulpContainerClient
155
155
  # @option opts [String] :ordering Which field to use when ordering the results.
156
156
  # @option opts [String] :fields A list of fields to include in the response.
157
157
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
158
- # @return [PaginatedcontainerContainerPushRepositoryResponseList]
158
+ # @return [InlineResponse2007]
159
159
  def list(opts = {})
160
160
  data, _status_code, _headers = list_with_http_info(opts)
161
161
  data
@@ -171,7 +171,7 @@ module PulpContainerClient
171
171
  # @option opts [String] :ordering Which field to use when ordering the results.
172
172
  # @option opts [String] :fields A list of fields to include in the response.
173
173
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
174
- # @return [Array<(PaginatedcontainerContainerPushRepositoryResponseList, Integer, Hash)>] PaginatedcontainerContainerPushRepositoryResponseList data, response status code and response headers
174
+ # @return [Array<(InlineResponse2007, Integer, Hash)>] InlineResponse2007 data, response status code and response headers
175
175
  def list_with_http_info(opts = {})
176
176
  if @api_client.config.debugging
177
177
  @api_client.config.logger.debug 'Calling API: RepositoriesContainerPushApi.list ...'
@@ -201,7 +201,7 @@ module PulpContainerClient
201
201
  post_body = opts[:body]
202
202
 
203
203
  # return_type
204
- return_type = opts[:return_type] || 'PaginatedcontainerContainerPushRepositoryResponseList'
204
+ return_type = opts[:return_type] || 'InlineResponse2007'
205
205
 
206
206
  # auth_names
207
207
  auth_names = opts[:auth_names] || ['basicAuth']
@@ -166,7 +166,7 @@ module PulpContainerClient
166
166
  # @option opts [String] :pulp_created__range pulp_created__range
167
167
  # @option opts [String] :fields A list of fields to include in the response.
168
168
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
169
- # @return [PaginatedRepositoryVersionResponseList]
169
+ # @return [InlineResponse2008]
170
170
  def list(container_container_push_repository_href, opts = {})
171
171
  data, _status_code, _headers = list_with_http_info(container_container_push_repository_href, opts)
172
172
  data
@@ -195,7 +195,7 @@ module PulpContainerClient
195
195
  # @option opts [String] :pulp_created__range pulp_created__range
196
196
  # @option opts [String] :fields A list of fields to include in the response.
197
197
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
198
- # @return [Array<(PaginatedRepositoryVersionResponseList, Integer, Hash)>] PaginatedRepositoryVersionResponseList data, response status code and response headers
198
+ # @return [Array<(InlineResponse2008, Integer, Hash)>] InlineResponse2008 data, response status code and response headers
199
199
  def list_with_http_info(container_container_push_repository_href, opts = {})
200
200
  if @api_client.config.debugging
201
201
  @api_client.config.logger.debug 'Calling API: RepositoriesContainerVersionsApi.list ...'
@@ -241,7 +241,7 @@ module PulpContainerClient
241
241
  post_body = opts[:body]
242
242
 
243
243
  # return_type
244
- return_type = opts[:return_type] || 'PaginatedRepositoryVersionResponseList'
244
+ return_type = opts[:return_type] || 'InlineResponse2008'
245
245
 
246
246
  # auth_names
247
247
  auth_names = opts[:auth_names] || ['basicAuth']
@@ -285,7 +285,7 @@ module PulpContainerClient
285
285
  # @option opts [String] :pulp_created__range pulp_created__range
286
286
  # @option opts [String] :fields A list of fields to include in the response.
287
287
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
288
- # @return [PaginatedRepositoryVersionResponseList]
288
+ # @return [InlineResponse2008]
289
289
  def list_0(container_container_repository_href, opts = {})
290
290
  data, _status_code, _headers = list_0_with_http_info(container_container_repository_href, opts)
291
291
  data
@@ -314,7 +314,7 @@ module PulpContainerClient
314
314
  # @option opts [String] :pulp_created__range pulp_created__range
315
315
  # @option opts [String] :fields A list of fields to include in the response.
316
316
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
317
- # @return [Array<(PaginatedRepositoryVersionResponseList, Integer, Hash)>] PaginatedRepositoryVersionResponseList data, response status code and response headers
317
+ # @return [Array<(InlineResponse2008, Integer, Hash)>] InlineResponse2008 data, response status code and response headers
318
318
  def list_0_with_http_info(container_container_repository_href, opts = {})
319
319
  if @api_client.config.debugging
320
320
  @api_client.config.logger.debug 'Calling API: RepositoriesContainerVersionsApi.list_0 ...'
@@ -360,7 +360,7 @@ module PulpContainerClient
360
360
  post_body = opts[:body]
361
361
 
362
362
  # return_type
363
- return_type = opts[:return_type] || 'PaginatedRepositoryVersionResponseList'
363
+ return_type = opts[:return_type] || 'InlineResponse2008'
364
364
 
365
365
  # auth_names
366
366
  auth_names = opts[:auth_names] || ['basicAuth']
@@ -15,15 +15,15 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # A serializer for ContainerDistribution.
17
17
  class ContainerContainerDistribution
18
+ # An optional content-guard. If none is specified, a default one will be used.
19
+ attr_accessor :content_guard
20
+
18
21
  # The latest RepositoryVersion for this Repository will be served.
19
22
  attr_accessor :repository
20
23
 
21
24
  # A unique name. Ex, `rawhide` and `stable`.
22
25
  attr_accessor :name
23
26
 
24
- # An optional content-guard. If none is specified, a default one will be used.
25
- attr_accessor :content_guard
26
-
27
27
  # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
28
28
  attr_accessor :base_path
29
29
 
@@ -33,9 +33,9 @@ module PulpContainerClient
33
33
  # Attribute mapping from ruby-style variable name to JSON key.
34
34
  def self.attribute_map
35
35
  {
36
+ :'content_guard' => :'content_guard',
36
37
  :'repository' => :'repository',
37
38
  :'name' => :'name',
38
- :'content_guard' => :'content_guard',
39
39
  :'base_path' => :'base_path',
40
40
  :'repository_version' => :'repository_version'
41
41
  }
@@ -44,9 +44,9 @@ module PulpContainerClient
44
44
  # Attribute type mapping.
45
45
  def self.openapi_types
46
46
  {
47
+ :'content_guard' => :'String',
47
48
  :'repository' => :'String',
48
49
  :'name' => :'String',
49
- :'content_guard' => :'String',
50
50
  :'base_path' => :'String',
51
51
  :'repository_version' => :'String'
52
52
  }
@@ -75,6 +75,10 @@ module PulpContainerClient
75
75
  h[k.to_sym] = v
76
76
  }
77
77
 
78
+ if attributes.key?(:'content_guard')
79
+ self.content_guard = attributes[:'content_guard']
80
+ end
81
+
78
82
  if attributes.key?(:'repository')
79
83
  self.repository = attributes[:'repository']
80
84
  end
@@ -83,10 +87,6 @@ module PulpContainerClient
83
87
  self.name = attributes[:'name']
84
88
  end
85
89
 
86
- if attributes.key?(:'content_guard')
87
- self.content_guard = attributes[:'content_guard']
88
- end
89
-
90
90
  if attributes.key?(:'base_path')
91
91
  self.base_path = attributes[:'base_path']
92
92
  end
@@ -124,9 +124,9 @@ module PulpContainerClient
124
124
  def ==(o)
125
125
  return true if self.equal?(o)
126
126
  self.class == o.class &&
127
+ content_guard == o.content_guard &&
127
128
  repository == o.repository &&
128
129
  name == o.name &&
129
- content_guard == o.content_guard &&
130
130
  base_path == o.base_path &&
131
131
  repository_version == o.repository_version
132
132
  end
@@ -140,7 +140,7 @@ module PulpContainerClient
140
140
  # Calculates hash code according to all attributes.
141
141
  # @return [Integer] Hash code
142
142
  def hash
143
- [repository, name, content_guard, base_path, repository_version].hash
143
+ [content_guard, repository, name, base_path, repository_version].hash
144
144
  end
145
145
 
146
146
  # Builds the object from hash
@@ -15,7 +15,8 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # A serializer for ContainerDistribution.
17
17
  class ContainerContainerDistributionResponse
18
- attr_accessor :pulp_href
18
+ # An optional content-guard. If none is specified, a default one will be used.
19
+ attr_accessor :content_guard
19
20
 
20
21
  # The latest RepositoryVersion for this Repository will be served.
21
22
  attr_accessor :repository
@@ -23,17 +24,16 @@ module PulpContainerClient
23
24
  # A unique name. Ex, `rawhide` and `stable`.
24
25
  attr_accessor :name
25
26
 
26
- # An optional content-guard. If none is specified, a default one will be used.
27
- attr_accessor :content_guard
28
-
29
27
  # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
30
28
  attr_accessor :base_path
31
29
 
30
+ # Timestamp of creation.
31
+ attr_accessor :pulp_created
32
+
32
33
  # RepositoryVersion to be served
33
34
  attr_accessor :repository_version
34
35
 
35
- # Timestamp of creation.
36
- attr_accessor :pulp_created
36
+ attr_accessor :pulp_href
37
37
 
38
38
  # The Registry hostame/name/ to use with docker pull command defined by this distribution.
39
39
  attr_accessor :registry_path
@@ -41,13 +41,13 @@ module PulpContainerClient
41
41
  # Attribute mapping from ruby-style variable name to JSON key.
42
42
  def self.attribute_map
43
43
  {
44
- :'pulp_href' => :'pulp_href',
44
+ :'content_guard' => :'content_guard',
45
45
  :'repository' => :'repository',
46
46
  :'name' => :'name',
47
- :'content_guard' => :'content_guard',
48
47
  :'base_path' => :'base_path',
49
- :'repository_version' => :'repository_version',
50
48
  :'pulp_created' => :'pulp_created',
49
+ :'repository_version' => :'repository_version',
50
+ :'pulp_href' => :'pulp_href',
51
51
  :'registry_path' => :'registry_path'
52
52
  }
53
53
  end
@@ -55,13 +55,13 @@ module PulpContainerClient
55
55
  # Attribute type mapping.
56
56
  def self.openapi_types
57
57
  {
58
- :'pulp_href' => :'String',
58
+ :'content_guard' => :'String',
59
59
  :'repository' => :'String',
60
60
  :'name' => :'String',
61
- :'content_guard' => :'String',
62
61
  :'base_path' => :'String',
63
- :'repository_version' => :'String',
64
62
  :'pulp_created' => :'DateTime',
63
+ :'repository_version' => :'String',
64
+ :'pulp_href' => :'String',
65
65
  :'registry_path' => :'String'
66
66
  }
67
67
  end
@@ -89,8 +89,8 @@ module PulpContainerClient
89
89
  h[k.to_sym] = v
90
90
  }
91
91
 
92
- if attributes.key?(:'pulp_href')
93
- self.pulp_href = attributes[:'pulp_href']
92
+ if attributes.key?(:'content_guard')
93
+ self.content_guard = attributes[:'content_guard']
94
94
  end
95
95
 
96
96
  if attributes.key?(:'repository')
@@ -101,20 +101,20 @@ module PulpContainerClient
101
101
  self.name = attributes[:'name']
102
102
  end
103
103
 
104
- if attributes.key?(:'content_guard')
105
- self.content_guard = attributes[:'content_guard']
106
- end
107
-
108
104
  if attributes.key?(:'base_path')
109
105
  self.base_path = attributes[:'base_path']
110
106
  end
111
107
 
108
+ if attributes.key?(:'pulp_created')
109
+ self.pulp_created = attributes[:'pulp_created']
110
+ end
111
+
112
112
  if attributes.key?(:'repository_version')
113
113
  self.repository_version = attributes[:'repository_version']
114
114
  end
115
115
 
116
- if attributes.key?(:'pulp_created')
117
- self.pulp_created = attributes[:'pulp_created']
116
+ if attributes.key?(:'pulp_href')
117
+ self.pulp_href = attributes[:'pulp_href']
118
118
  end
119
119
 
120
120
  if attributes.key?(:'registry_path')
@@ -150,13 +150,13 @@ module PulpContainerClient
150
150
  def ==(o)
151
151
  return true if self.equal?(o)
152
152
  self.class == o.class &&
153
- pulp_href == o.pulp_href &&
153
+ content_guard == o.content_guard &&
154
154
  repository == o.repository &&
155
155
  name == o.name &&
156
- content_guard == o.content_guard &&
157
156
  base_path == o.base_path &&
158
- repository_version == o.repository_version &&
159
157
  pulp_created == o.pulp_created &&
158
+ repository_version == o.repository_version &&
159
+ pulp_href == o.pulp_href &&
160
160
  registry_path == o.registry_path
161
161
  end
162
162
 
@@ -169,7 +169,7 @@ module PulpContainerClient
169
169
  # Calculates hash code according to all attributes.
170
170
  # @return [Integer] Hash code
171
171
  def hash
172
- [pulp_href, repository, name, content_guard, base_path, repository_version, pulp_created, registry_path].hash
172
+ [content_guard, repository, name, base_path, pulp_created, repository_version, pulp_href, registry_path].hash
173
173
  end
174
174
 
175
175
  # Builds the object from hash