pulp_container_client 2.0.1 → 2.0.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 (29) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContainerContainerDistribution.md +5 -5
  4. data/docs/ContainerContainerDistributionResponse.md +8 -8
  5. data/docs/DistributionsContainerApi.md +6 -54
  6. data/docs/PatchedcontainerContainerDistribution.md +5 -5
  7. data/docs/RemotesContainerApi.md +6 -66
  8. data/docs/RepositoriesContainerApi.md +6 -30
  9. data/docs/RepositoriesContainerPushApi.md +2 -10
  10. data/docs/RepositoriesContainerVersionsApi.md +4 -68
  11. data/lib/pulp_container_client/api/distributions_container_api.rb +0 -63
  12. data/lib/pulp_container_client/api/remotes_container_api.rb +0 -81
  13. data/lib/pulp_container_client/api/repositories_container_api.rb +0 -27
  14. data/lib/pulp_container_client/api/repositories_container_push_api.rb +0 -9
  15. data/lib/pulp_container_client/api/repositories_container_versions_api.rb +0 -90
  16. data/lib/pulp_container_client/models/container_container_distribution.rb +19 -19
  17. data/lib/pulp_container_client/models/container_container_distribution_response.rb +31 -31
  18. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +19 -19
  19. data/lib/pulp_container_client/models/repository_sync_url.rb +1 -0
  20. data/lib/pulp_container_client/version.rb +1 -1
  21. data/spec/api/distributions_container_api_spec.rb +0 -21
  22. data/spec/api/remotes_container_api_spec.rb +0 -27
  23. data/spec/api/repositories_container_api_spec.rb +0 -9
  24. data/spec/api/repositories_container_push_api_spec.rb +0 -3
  25. data/spec/api/repositories_container_versions_api_spec.rb +0 -30
  26. data/spec/models/container_container_distribution_response_spec.rb +6 -6
  27. data/spec/models/container_container_distribution_spec.rb +3 -3
  28. data/spec/models/patchedcontainer_container_distribution_spec.rb +3 -3
  29. metadata +2 -2
@@ -66,7 +66,7 @@ Name | Type | Description | Notes
66
66
 
67
67
  ## delete
68
68
 
69
- > AsyncOperationResponse delete(container_container_push_repository_href, opts)
69
+ > AsyncOperationResponse delete(container_container_push_repository_href)
70
70
 
71
71
  Delete a container push repository
72
72
 
@@ -86,15 +86,10 @@ end
86
86
 
87
87
  api_instance = PulpContainerClient::RepositoriesContainerPushApi.new
88
88
  container_container_push_repository_href = 'container_container_push_repository_href_example' # String |
89
- opts = {
90
- name: 'name_example', # String | name
91
- name__in: 'name__in_example', # String | name__in
92
- ordering: 'ordering_example' # String | Which field to use when ordering the results.
93
- }
94
89
 
95
90
  begin
96
91
  #Delete a container push repository
97
- result = api_instance.delete(container_container_push_repository_href, opts)
92
+ result = api_instance.delete(container_container_push_repository_href)
98
93
  p result
99
94
  rescue PulpContainerClient::ApiError => e
100
95
  puts "Exception when calling RepositoriesContainerPushApi->delete: #{e}"
@@ -107,9 +102,6 @@ end
107
102
  Name | Type | Description | Notes
108
103
  ------------- | ------------- | ------------- | -------------
109
104
  **container_container_push_repository_href** | **String**| |
110
- **name** | **String**| name | [optional]
111
- **name__in** | **String**| name__in | [optional]
112
- **ordering** | **String**| Which field to use when ordering the results. | [optional]
113
105
 
114
106
  ### Return type
115
107
 
@@ -17,7 +17,7 @@ Method | HTTP request | Description
17
17
 
18
18
  ## delete
19
19
 
20
- > AsyncOperationResponse delete(container_container_push_repository_version_href, opts)
20
+ > AsyncOperationResponse delete(container_container_push_repository_version_href)
21
21
 
22
22
  Delete a repository version
23
23
 
@@ -37,27 +37,10 @@ end
37
37
 
38
38
  api_instance = PulpContainerClient::RepositoriesContainerVersionsApi.new
39
39
  container_container_push_repository_version_href = 'container_container_push_repository_version_href_example' # String |
40
- opts = {
41
- content: 'content_example', # String | content
42
- content__in: 'content__in_example', # String | content__in
43
- number: 'number_example', # String | number
44
- number__gt: 'number__gt_example', # String | number__gt
45
- number__gte: 'number__gte_example', # String | number__gte
46
- number__lt: 'number__lt_example', # String | number__lt
47
- number__lte: 'number__lte_example', # String | number__lte
48
- number__range: 'number__range_example', # String | number__range
49
- ordering: 'ordering_example', # String | Which field to use when ordering the results.
50
- pulp_created: 'pulp_created_example', # String | pulp_created
51
- pulp_created__gt: 'pulp_created__gt_example', # String | pulp_created__gt
52
- pulp_created__gte: 'pulp_created__gte_example', # String | pulp_created__gte
53
- pulp_created__lt: 'pulp_created__lt_example', # String | pulp_created__lt
54
- pulp_created__lte: 'pulp_created__lte_example', # String | pulp_created__lte
55
- pulp_created__range: 'pulp_created__range_example' # String | pulp_created__range
56
- }
57
40
 
58
41
  begin
59
42
  #Delete a repository version
60
- result = api_instance.delete(container_container_push_repository_version_href, opts)
43
+ result = api_instance.delete(container_container_push_repository_version_href)
61
44
  p result
62
45
  rescue PulpContainerClient::ApiError => e
63
46
  puts "Exception when calling RepositoriesContainerVersionsApi->delete: #{e}"
@@ -70,21 +53,6 @@ end
70
53
  Name | Type | Description | Notes
71
54
  ------------- | ------------- | ------------- | -------------
72
55
  **container_container_push_repository_version_href** | **String**| |
73
- **content** | **String**| content | [optional]
74
- **content__in** | **String**| content__in | [optional]
75
- **number** | **String**| number | [optional]
76
- **number__gt** | **String**| number__gt | [optional]
77
- **number__gte** | **String**| number__gte | [optional]
78
- **number__lt** | **String**| number__lt | [optional]
79
- **number__lte** | **String**| number__lte | [optional]
80
- **number__range** | **String**| number__range | [optional]
81
- **ordering** | **String**| Which field to use when ordering the results. | [optional]
82
- **pulp_created** | **String**| pulp_created | [optional]
83
- **pulp_created__gt** | **String**| pulp_created__gt | [optional]
84
- **pulp_created__gte** | **String**| pulp_created__gte | [optional]
85
- **pulp_created__lt** | **String**| pulp_created__lt | [optional]
86
- **pulp_created__lte** | **String**| pulp_created__lte | [optional]
87
- **pulp_created__range** | **String**| pulp_created__range | [optional]
88
56
 
89
57
  ### Return type
90
58
 
@@ -102,7 +70,7 @@ Name | Type | Description | Notes
102
70
 
103
71
  ## delete_0
104
72
 
105
- > AsyncOperationResponse delete_0(container_container_repository_version_href, opts)
73
+ > AsyncOperationResponse delete_0(container_container_repository_version_href)
106
74
 
107
75
  Delete a repository version
108
76
 
@@ -122,27 +90,10 @@ end
122
90
 
123
91
  api_instance = PulpContainerClient::RepositoriesContainerVersionsApi.new
124
92
  container_container_repository_version_href = 'container_container_repository_version_href_example' # String |
125
- opts = {
126
- content: 'content_example', # String | content
127
- content__in: 'content__in_example', # String | content__in
128
- number: 'number_example', # String | number
129
- number__gt: 'number__gt_example', # String | number__gt
130
- number__gte: 'number__gte_example', # String | number__gte
131
- number__lt: 'number__lt_example', # String | number__lt
132
- number__lte: 'number__lte_example', # String | number__lte
133
- number__range: 'number__range_example', # String | number__range
134
- ordering: 'ordering_example', # String | Which field to use when ordering the results.
135
- pulp_created: 'pulp_created_example', # String | pulp_created
136
- pulp_created__gt: 'pulp_created__gt_example', # String | pulp_created__gt
137
- pulp_created__gte: 'pulp_created__gte_example', # String | pulp_created__gte
138
- pulp_created__lt: 'pulp_created__lt_example', # String | pulp_created__lt
139
- pulp_created__lte: 'pulp_created__lte_example', # String | pulp_created__lte
140
- pulp_created__range: 'pulp_created__range_example' # String | pulp_created__range
141
- }
142
93
 
143
94
  begin
144
95
  #Delete a repository version
145
- result = api_instance.delete_0(container_container_repository_version_href, opts)
96
+ result = api_instance.delete_0(container_container_repository_version_href)
146
97
  p result
147
98
  rescue PulpContainerClient::ApiError => e
148
99
  puts "Exception when calling RepositoriesContainerVersionsApi->delete_0: #{e}"
@@ -155,21 +106,6 @@ end
155
106
  Name | Type | Description | Notes
156
107
  ------------- | ------------- | ------------- | -------------
157
108
  **container_container_repository_version_href** | **String**| |
158
- **content** | **String**| content | [optional]
159
- **content__in** | **String**| content__in | [optional]
160
- **number** | **String**| number | [optional]
161
- **number__gt** | **String**| number__gt | [optional]
162
- **number__gte** | **String**| number__gte | [optional]
163
- **number__lt** | **String**| number__lt | [optional]
164
- **number__lte** | **String**| number__lte | [optional]
165
- **number__range** | **String**| number__range | [optional]
166
- **ordering** | **String**| Which field to use when ordering the results. | [optional]
167
- **pulp_created** | **String**| pulp_created | [optional]
168
- **pulp_created__gt** | **String**| pulp_created__gt | [optional]
169
- **pulp_created__gte** | **String**| pulp_created__gte | [optional]
170
- **pulp_created__lt** | **String**| pulp_created__lt | [optional]
171
- **pulp_created__lte** | **String**| pulp_created__lte | [optional]
172
- **pulp_created__range** | **String**| pulp_created__range | [optional]
173
109
 
174
110
  ### Return type
175
111
 
@@ -87,13 +87,6 @@ module PulpContainerClient
87
87
  # Trigger an asynchronous delete task
88
88
  # @param container_container_distribution_href [String]
89
89
  # @param [Hash] opts the optional parameters
90
- # @option opts [String] :base_path base_path
91
- # @option opts [String] :base_path__contains base_path__contains
92
- # @option opts [String] :base_path__icontains base_path__icontains
93
- # @option opts [String] :base_path__in base_path__in
94
- # @option opts [String] :name name
95
- # @option opts [String] :name__in name__in
96
- # @option opts [String] :ordering Which field to use when ordering the results.
97
90
  # @return [AsyncOperationResponse]
98
91
  def delete(container_container_distribution_href, opts = {})
99
92
  data, _status_code, _headers = delete_with_http_info(container_container_distribution_href, opts)
@@ -104,13 +97,6 @@ module PulpContainerClient
104
97
  # Trigger an asynchronous delete task
105
98
  # @param container_container_distribution_href [String]
106
99
  # @param [Hash] opts the optional parameters
107
- # @option opts [String] :base_path base_path
108
- # @option opts [String] :base_path__contains base_path__contains
109
- # @option opts [String] :base_path__icontains base_path__icontains
110
- # @option opts [String] :base_path__in base_path__in
111
- # @option opts [String] :name name
112
- # @option opts [String] :name__in name__in
113
- # @option opts [String] :ordering Which field to use when ordering the results.
114
100
  # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
115
101
  def delete_with_http_info(container_container_distribution_href, opts = {})
116
102
  if @api_client.config.debugging
@@ -125,13 +111,6 @@ module PulpContainerClient
125
111
 
126
112
  # query parameters
127
113
  query_params = opts[:query_params] || {}
128
- query_params[:'base_path'] = opts[:'base_path'] if !opts[:'base_path'].nil?
129
- query_params[:'base_path__contains'] = opts[:'base_path__contains'] if !opts[:'base_path__contains'].nil?
130
- query_params[:'base_path__icontains'] = opts[:'base_path__icontains'] if !opts[:'base_path__icontains'].nil?
131
- query_params[:'base_path__in'] = opts[:'base_path__in'] if !opts[:'base_path__in'].nil?
132
- query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
133
- query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
134
- query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
135
114
 
136
115
  # header parameters
137
116
  header_params = opts[:header_params] || {}
@@ -260,13 +239,6 @@ module PulpContainerClient
260
239
  # @param container_container_distribution_href [String]
261
240
  # @param patchedcontainer_container_distribution [PatchedcontainerContainerDistribution]
262
241
  # @param [Hash] opts the optional parameters
263
- # @option opts [String] :base_path base_path
264
- # @option opts [String] :base_path__contains base_path__contains
265
- # @option opts [String] :base_path__icontains base_path__icontains
266
- # @option opts [String] :base_path__in base_path__in
267
- # @option opts [String] :name name
268
- # @option opts [String] :name__in name__in
269
- # @option opts [String] :ordering Which field to use when ordering the results.
270
242
  # @return [AsyncOperationResponse]
271
243
  def partial_update(container_container_distribution_href, patchedcontainer_container_distribution, opts = {})
272
244
  data, _status_code, _headers = partial_update_with_http_info(container_container_distribution_href, patchedcontainer_container_distribution, opts)
@@ -278,13 +250,6 @@ module PulpContainerClient
278
250
  # @param container_container_distribution_href [String]
279
251
  # @param patchedcontainer_container_distribution [PatchedcontainerContainerDistribution]
280
252
  # @param [Hash] opts the optional parameters
281
- # @option opts [String] :base_path base_path
282
- # @option opts [String] :base_path__contains base_path__contains
283
- # @option opts [String] :base_path__icontains base_path__icontains
284
- # @option opts [String] :base_path__in base_path__in
285
- # @option opts [String] :name name
286
- # @option opts [String] :name__in name__in
287
- # @option opts [String] :ordering Which field to use when ordering the results.
288
253
  # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
289
254
  def partial_update_with_http_info(container_container_distribution_href, patchedcontainer_container_distribution, opts = {})
290
255
  if @api_client.config.debugging
@@ -303,13 +268,6 @@ module PulpContainerClient
303
268
 
304
269
  # query parameters
305
270
  query_params = opts[:query_params] || {}
306
- query_params[:'base_path'] = opts[:'base_path'] if !opts[:'base_path'].nil?
307
- query_params[:'base_path__contains'] = opts[:'base_path__contains'] if !opts[:'base_path__contains'].nil?
308
- query_params[:'base_path__icontains'] = opts[:'base_path__icontains'] if !opts[:'base_path__icontains'].nil?
309
- query_params[:'base_path__in'] = opts[:'base_path__in'] if !opts[:'base_path__in'].nil?
310
- query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
311
- query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
312
- query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
313
271
 
314
272
  # header parameters
315
273
  header_params = opts[:header_params] || {}
@@ -419,13 +377,6 @@ module PulpContainerClient
419
377
  # @param container_container_distribution_href [String]
420
378
  # @param container_container_distribution [ContainerContainerDistribution]
421
379
  # @param [Hash] opts the optional parameters
422
- # @option opts [String] :base_path base_path
423
- # @option opts [String] :base_path__contains base_path__contains
424
- # @option opts [String] :base_path__icontains base_path__icontains
425
- # @option opts [String] :base_path__in base_path__in
426
- # @option opts [String] :name name
427
- # @option opts [String] :name__in name__in
428
- # @option opts [String] :ordering Which field to use when ordering the results.
429
380
  # @return [AsyncOperationResponse]
430
381
  def update(container_container_distribution_href, container_container_distribution, opts = {})
431
382
  data, _status_code, _headers = update_with_http_info(container_container_distribution_href, container_container_distribution, opts)
@@ -437,13 +388,6 @@ module PulpContainerClient
437
388
  # @param container_container_distribution_href [String]
438
389
  # @param container_container_distribution [ContainerContainerDistribution]
439
390
  # @param [Hash] opts the optional parameters
440
- # @option opts [String] :base_path base_path
441
- # @option opts [String] :base_path__contains base_path__contains
442
- # @option opts [String] :base_path__icontains base_path__icontains
443
- # @option opts [String] :base_path__in base_path__in
444
- # @option opts [String] :name name
445
- # @option opts [String] :name__in name__in
446
- # @option opts [String] :ordering Which field to use when ordering the results.
447
391
  # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
448
392
  def update_with_http_info(container_container_distribution_href, container_container_distribution, opts = {})
449
393
  if @api_client.config.debugging
@@ -462,13 +406,6 @@ module PulpContainerClient
462
406
 
463
407
  # query parameters
464
408
  query_params = opts[:query_params] || {}
465
- query_params[:'base_path'] = opts[:'base_path'] if !opts[:'base_path'].nil?
466
- query_params[:'base_path__contains'] = opts[:'base_path__contains'] if !opts[:'base_path__contains'].nil?
467
- query_params[:'base_path__icontains'] = opts[:'base_path__icontains'] if !opts[:'base_path__icontains'].nil?
468
- query_params[:'base_path__in'] = opts[:'base_path__in'] if !opts[:'base_path__in'].nil?
469
- query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
470
- query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
471
- query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
472
409
 
473
410
  # header parameters
474
411
  header_params = opts[:header_params] || {}
@@ -87,15 +87,6 @@ module PulpContainerClient
87
87
  # Trigger an asynchronous delete task
88
88
  # @param container_container_remote_href [String]
89
89
  # @param [Hash] opts the optional parameters
90
- # @option opts [String] :name name
91
- # @option opts [String] :name__in name__in
92
- # @option opts [String] :ordering Which field to use when ordering the results.
93
- # @option opts [String] :pulp_last_updated pulp_last_updated
94
- # @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
95
- # @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
96
- # @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
97
- # @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
98
- # @option opts [String] :pulp_last_updated__range pulp_last_updated__range
99
90
  # @return [AsyncOperationResponse]
100
91
  def delete(container_container_remote_href, opts = {})
101
92
  data, _status_code, _headers = delete_with_http_info(container_container_remote_href, opts)
@@ -106,15 +97,6 @@ module PulpContainerClient
106
97
  # Trigger an asynchronous delete task
107
98
  # @param container_container_remote_href [String]
108
99
  # @param [Hash] opts the optional parameters
109
- # @option opts [String] :name name
110
- # @option opts [String] :name__in name__in
111
- # @option opts [String] :ordering Which field to use when ordering the results.
112
- # @option opts [String] :pulp_last_updated pulp_last_updated
113
- # @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
114
- # @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
115
- # @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
116
- # @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
117
- # @option opts [String] :pulp_last_updated__range pulp_last_updated__range
118
100
  # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
119
101
  def delete_with_http_info(container_container_remote_href, opts = {})
120
102
  if @api_client.config.debugging
@@ -129,15 +111,6 @@ module PulpContainerClient
129
111
 
130
112
  # query parameters
131
113
  query_params = opts[:query_params] || {}
132
- query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
133
- query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
134
- query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
135
- query_params[:'pulp_last_updated'] = opts[:'pulp_last_updated'] if !opts[:'pulp_last_updated'].nil?
136
- query_params[:'pulp_last_updated__gt'] = opts[:'pulp_last_updated__gt'] if !opts[:'pulp_last_updated__gt'].nil?
137
- query_params[:'pulp_last_updated__gte'] = opts[:'pulp_last_updated__gte'] if !opts[:'pulp_last_updated__gte'].nil?
138
- query_params[:'pulp_last_updated__lt'] = opts[:'pulp_last_updated__lt'] if !opts[:'pulp_last_updated__lt'].nil?
139
- query_params[:'pulp_last_updated__lte'] = opts[:'pulp_last_updated__lte'] if !opts[:'pulp_last_updated__lte'].nil?
140
- query_params[:'pulp_last_updated__range'] = opts[:'pulp_last_updated__range'] if !opts[:'pulp_last_updated__range'].nil?
141
114
 
142
115
  # header parameters
143
116
  header_params = opts[:header_params] || {}
@@ -272,15 +245,6 @@ module PulpContainerClient
272
245
  # @param container_container_remote_href [String]
273
246
  # @param patchedcontainer_container_remote [PatchedcontainerContainerRemote]
274
247
  # @param [Hash] opts the optional parameters
275
- # @option opts [String] :name name
276
- # @option opts [String] :name__in name__in
277
- # @option opts [String] :ordering Which field to use when ordering the results.
278
- # @option opts [String] :pulp_last_updated pulp_last_updated
279
- # @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
280
- # @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
281
- # @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
282
- # @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
283
- # @option opts [String] :pulp_last_updated__range pulp_last_updated__range
284
248
  # @return [AsyncOperationResponse]
285
249
  def partial_update(container_container_remote_href, patchedcontainer_container_remote, opts = {})
286
250
  data, _status_code, _headers = partial_update_with_http_info(container_container_remote_href, patchedcontainer_container_remote, opts)
@@ -292,15 +256,6 @@ module PulpContainerClient
292
256
  # @param container_container_remote_href [String]
293
257
  # @param patchedcontainer_container_remote [PatchedcontainerContainerRemote]
294
258
  # @param [Hash] opts the optional parameters
295
- # @option opts [String] :name name
296
- # @option opts [String] :name__in name__in
297
- # @option opts [String] :ordering Which field to use when ordering the results.
298
- # @option opts [String] :pulp_last_updated pulp_last_updated
299
- # @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
300
- # @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
301
- # @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
302
- # @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
303
- # @option opts [String] :pulp_last_updated__range pulp_last_updated__range
304
259
  # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
305
260
  def partial_update_with_http_info(container_container_remote_href, patchedcontainer_container_remote, opts = {})
306
261
  if @api_client.config.debugging
@@ -319,15 +274,6 @@ module PulpContainerClient
319
274
 
320
275
  # query parameters
321
276
  query_params = opts[:query_params] || {}
322
- query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
323
- query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
324
- query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
325
- query_params[:'pulp_last_updated'] = opts[:'pulp_last_updated'] if !opts[:'pulp_last_updated'].nil?
326
- query_params[:'pulp_last_updated__gt'] = opts[:'pulp_last_updated__gt'] if !opts[:'pulp_last_updated__gt'].nil?
327
- query_params[:'pulp_last_updated__gte'] = opts[:'pulp_last_updated__gte'] if !opts[:'pulp_last_updated__gte'].nil?
328
- query_params[:'pulp_last_updated__lt'] = opts[:'pulp_last_updated__lt'] if !opts[:'pulp_last_updated__lt'].nil?
329
- query_params[:'pulp_last_updated__lte'] = opts[:'pulp_last_updated__lte'] if !opts[:'pulp_last_updated__lte'].nil?
330
- query_params[:'pulp_last_updated__range'] = opts[:'pulp_last_updated__range'] if !opts[:'pulp_last_updated__range'].nil?
331
277
 
332
278
  # header parameters
333
279
  header_params = opts[:header_params] || {}
@@ -437,15 +383,6 @@ module PulpContainerClient
437
383
  # @param container_container_remote_href [String]
438
384
  # @param container_container_remote [ContainerContainerRemote]
439
385
  # @param [Hash] opts the optional parameters
440
- # @option opts [String] :name name
441
- # @option opts [String] :name__in name__in
442
- # @option opts [String] :ordering Which field to use when ordering the results.
443
- # @option opts [String] :pulp_last_updated pulp_last_updated
444
- # @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
445
- # @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
446
- # @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
447
- # @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
448
- # @option opts [String] :pulp_last_updated__range pulp_last_updated__range
449
386
  # @return [AsyncOperationResponse]
450
387
  def update(container_container_remote_href, container_container_remote, opts = {})
451
388
  data, _status_code, _headers = update_with_http_info(container_container_remote_href, container_container_remote, opts)
@@ -457,15 +394,6 @@ module PulpContainerClient
457
394
  # @param container_container_remote_href [String]
458
395
  # @param container_container_remote [ContainerContainerRemote]
459
396
  # @param [Hash] opts the optional parameters
460
- # @option opts [String] :name name
461
- # @option opts [String] :name__in name__in
462
- # @option opts [String] :ordering Which field to use when ordering the results.
463
- # @option opts [String] :pulp_last_updated pulp_last_updated
464
- # @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
465
- # @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
466
- # @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
467
- # @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
468
- # @option opts [String] :pulp_last_updated__range pulp_last_updated__range
469
397
  # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
470
398
  def update_with_http_info(container_container_remote_href, container_container_remote, opts = {})
471
399
  if @api_client.config.debugging
@@ -484,15 +412,6 @@ module PulpContainerClient
484
412
 
485
413
  # query parameters
486
414
  query_params = opts[:query_params] || {}
487
- query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
488
- query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
489
- query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
490
- query_params[:'pulp_last_updated'] = opts[:'pulp_last_updated'] if !opts[:'pulp_last_updated'].nil?
491
- query_params[:'pulp_last_updated__gt'] = opts[:'pulp_last_updated__gt'] if !opts[:'pulp_last_updated__gt'].nil?
492
- query_params[:'pulp_last_updated__gte'] = opts[:'pulp_last_updated__gte'] if !opts[:'pulp_last_updated__gte'].nil?
493
- query_params[:'pulp_last_updated__lt'] = opts[:'pulp_last_updated__lt'] if !opts[:'pulp_last_updated__lt'].nil?
494
- query_params[:'pulp_last_updated__lte'] = opts[:'pulp_last_updated__lte'] if !opts[:'pulp_last_updated__lte'].nil?
495
- query_params[:'pulp_last_updated__range'] = opts[:'pulp_last_updated__range'] if !opts[:'pulp_last_updated__range'].nil?
496
415
 
497
416
  # header parameters
498
417
  header_params = opts[:header_params] || {}
@@ -373,9 +373,6 @@ module PulpContainerClient
373
373
  # Trigger an asynchronous delete task
374
374
  # @param container_container_repository_href [String]
375
375
  # @param [Hash] opts the optional parameters
376
- # @option opts [String] :name name
377
- # @option opts [String] :name__in name__in
378
- # @option opts [String] :ordering Which field to use when ordering the results.
379
376
  # @return [AsyncOperationResponse]
380
377
  def delete(container_container_repository_href, opts = {})
381
378
  data, _status_code, _headers = delete_with_http_info(container_container_repository_href, opts)
@@ -386,9 +383,6 @@ module PulpContainerClient
386
383
  # Trigger an asynchronous delete task
387
384
  # @param container_container_repository_href [String]
388
385
  # @param [Hash] opts the optional parameters
389
- # @option opts [String] :name name
390
- # @option opts [String] :name__in name__in
391
- # @option opts [String] :ordering Which field to use when ordering the results.
392
386
  # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
393
387
  def delete_with_http_info(container_container_repository_href, opts = {})
394
388
  if @api_client.config.debugging
@@ -403,9 +397,6 @@ module PulpContainerClient
403
397
 
404
398
  # query parameters
405
399
  query_params = opts[:query_params] || {}
406
- query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
407
- query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
408
- query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
409
400
 
410
401
  # header parameters
411
402
  header_params = opts[:header_params] || {}
@@ -522,9 +513,6 @@ module PulpContainerClient
522
513
  # @param container_container_repository_href [String]
523
514
  # @param patchedcontainer_container_repository [PatchedcontainerContainerRepository]
524
515
  # @param [Hash] opts the optional parameters
525
- # @option opts [String] :name name
526
- # @option opts [String] :name__in name__in
527
- # @option opts [String] :ordering Which field to use when ordering the results.
528
516
  # @return [AsyncOperationResponse]
529
517
  def partial_update(container_container_repository_href, patchedcontainer_container_repository, opts = {})
530
518
  data, _status_code, _headers = partial_update_with_http_info(container_container_repository_href, patchedcontainer_container_repository, opts)
@@ -536,9 +524,6 @@ module PulpContainerClient
536
524
  # @param container_container_repository_href [String]
537
525
  # @param patchedcontainer_container_repository [PatchedcontainerContainerRepository]
538
526
  # @param [Hash] opts the optional parameters
539
- # @option opts [String] :name name
540
- # @option opts [String] :name__in name__in
541
- # @option opts [String] :ordering Which field to use when ordering the results.
542
527
  # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
543
528
  def partial_update_with_http_info(container_container_repository_href, patchedcontainer_container_repository, opts = {})
544
529
  if @api_client.config.debugging
@@ -557,9 +542,6 @@ module PulpContainerClient
557
542
 
558
543
  # query parameters
559
544
  query_params = opts[:query_params] || {}
560
- query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
561
- query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
562
- query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
563
545
 
564
546
  # header parameters
565
547
  header_params = opts[:header_params] || {}
@@ -949,9 +931,6 @@ module PulpContainerClient
949
931
  # @param container_container_repository_href [String]
950
932
  # @param container_container_repository [ContainerContainerRepository]
951
933
  # @param [Hash] opts the optional parameters
952
- # @option opts [String] :name name
953
- # @option opts [String] :name__in name__in
954
- # @option opts [String] :ordering Which field to use when ordering the results.
955
934
  # @return [AsyncOperationResponse]
956
935
  def update(container_container_repository_href, container_container_repository, opts = {})
957
936
  data, _status_code, _headers = update_with_http_info(container_container_repository_href, container_container_repository, opts)
@@ -963,9 +942,6 @@ module PulpContainerClient
963
942
  # @param container_container_repository_href [String]
964
943
  # @param container_container_repository [ContainerContainerRepository]
965
944
  # @param [Hash] opts the optional parameters
966
- # @option opts [String] :name name
967
- # @option opts [String] :name__in name__in
968
- # @option opts [String] :ordering Which field to use when ordering the results.
969
945
  # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
970
946
  def update_with_http_info(container_container_repository_href, container_container_repository, opts = {})
971
947
  if @api_client.config.debugging
@@ -984,9 +960,6 @@ module PulpContainerClient
984
960
 
985
961
  # query parameters
986
962
  query_params = opts[:query_params] || {}
987
- query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
988
- query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
989
- query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
990
963
 
991
964
  # header parameters
992
965
  header_params = opts[:header_params] || {}