pulp_container_client 2.16.0 → 2.16.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.
- checksums.yaml +4 -4
- data/README.md +36 -25
- data/docs/ContainerContainerDistribution.md +4 -4
- data/docs/ContainerContainerDistributionResponse.md +9 -9
- data/docs/ContainerContainerPushRepository.md +6 -6
- data/docs/ContainerContainerPushRepositoryResponse.md +10 -10
- data/docs/ContentBlobsApi.md +3 -1
- data/docs/ContentManifestsApi.md +3 -1
- data/docs/ContentSignaturesApi.md +7 -1
- data/docs/ContentTagsApi.md +3 -1
- data/docs/DistributionsContainerApi.md +132 -10
- data/docs/IndexDynamicApi.md +1 -1
- data/docs/IndexStaticApi.md +1 -1
- data/docs/PatchedcontainerContainerDistribution.md +4 -4
- data/docs/PatchedcontainerContainerPushRepository.md +6 -6
- data/docs/PulpContainerNamespacesApi.md +19 -9
- data/docs/RemotesContainerApi.md +131 -9
- data/docs/RepositoriesContainerApi.md +132 -10
- data/docs/RepositoriesContainerPushApi.md +20 -10
- data/docs/RepositoriesContainerPushVersionsApi.md +3 -1
- data/docs/RepositoriesContainerVersionsApi.md +3 -1
- data/docs/SetLabel.md +19 -0
- data/docs/SetLabelResponse.md +19 -0
- data/docs/TokenApi.md +1 -1
- data/docs/UnsetLabel.md +17 -0
- data/docs/UnsetLabelResponse.md +19 -0
- data/lib/pulp_container_client/api/content_blobs_api.rb +3 -0
- data/lib/pulp_container_client/api/content_manifests_api.rb +3 -0
- data/lib/pulp_container_client/api/content_signatures_api.rb +9 -0
- data/lib/pulp_container_client/api/content_tags_api.rb +3 -0
- data/lib/pulp_container_client/api/distributions_container_api.rb +157 -0
- data/lib/pulp_container_client/api/pulp_container_namespaces_api.rb +17 -0
- data/lib/pulp_container_client/api/remotes_container_api.rb +157 -0
- data/lib/pulp_container_client/api/repositories_container_api.rb +157 -0
- data/lib/pulp_container_client/api/repositories_container_push_api.rb +17 -0
- data/lib/pulp_container_client/api/repositories_container_push_versions_api.rb +3 -0
- data/lib/pulp_container_client/api/repositories_container_versions_api.rb +3 -0
- data/lib/pulp_container_client/configuration.rb +2 -2
- data/lib/pulp_container_client/models/container_container_distribution.rb +42 -42
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +40 -40
- data/lib/pulp_container_client/models/container_container_push_repository.rb +38 -38
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +42 -42
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +33 -33
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +38 -38
- data/lib/pulp_container_client/models/set_label.rb +252 -0
- data/lib/pulp_container_client/models/set_label_response.rb +243 -0
- data/lib/pulp_container_client/models/unset_label.rb +242 -0
- data/lib/pulp_container_client/models/unset_label_response.rb +242 -0
- data/lib/pulp_container_client/version.rb +1 -1
- data/lib/pulp_container_client.rb +4 -0
- data/spec/api/content_blobs_api_spec.rb +1 -0
- data/spec/api/content_manifests_api_spec.rb +1 -0
- data/spec/api/content_signatures_api_spec.rb +3 -0
- data/spec/api/content_tags_api_spec.rb +1 -0
- data/spec/api/distributions_container_api_spec.rb +33 -0
- data/spec/api/pulp_container_namespaces_api_spec.rb +7 -0
- data/spec/api/remotes_container_api_spec.rb +33 -0
- data/spec/api/repositories_container_api_spec.rb +33 -0
- data/spec/api/repositories_container_push_api_spec.rb +7 -0
- data/spec/api/repositories_container_push_versions_api_spec.rb +1 -0
- data/spec/api/repositories_container_versions_api_spec.rb +1 -0
- data/spec/configuration_spec.rb +3 -3
- data/spec/models/container_container_distribution_response_spec.rb +7 -7
- data/spec/models/container_container_distribution_spec.rb +3 -3
- data/spec/models/container_container_push_repository_response_spec.rb +7 -7
- data/spec/models/container_container_push_repository_spec.rb +5 -5
- data/spec/models/patchedcontainer_container_distribution_spec.rb +3 -3
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +5 -5
- data/spec/models/set_label_response_spec.rb +47 -0
- data/spec/models/set_label_spec.rb +47 -0
- data/spec/models/unset_label_response_spec.rb +47 -0
- data/spec/models/unset_label_spec.rb +41 -0
- metadata +60 -44
@@ -19,6 +19,7 @@ module PulpContainerClient
|
|
19
19
|
def initialize(api_client = ApiClient.default)
|
20
20
|
@api_client = api_client
|
21
21
|
end
|
22
|
+
# Add a role
|
22
23
|
# Add a role for this object to users/groups.
|
23
24
|
# @param container_container_remote_href [String]
|
24
25
|
# @param nested_role [NestedRole]
|
@@ -29,6 +30,7 @@ module PulpContainerClient
|
|
29
30
|
data
|
30
31
|
end
|
31
32
|
|
33
|
+
# Add a role
|
32
34
|
# Add a role for this object to users/groups.
|
33
35
|
# @param container_container_remote_href [String]
|
34
36
|
# @param nested_role [NestedRole]
|
@@ -220,7 +222,9 @@ module PulpContainerClient
|
|
220
222
|
# @option opts [String] :name Filter results where name matches value
|
221
223
|
# @option opts [String] :name__contains Filter results where name contains value
|
222
224
|
# @option opts [String] :name__icontains Filter results where name contains value
|
225
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
223
226
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
227
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
224
228
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
225
229
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
226
230
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `url` - Url * `-url` - Url (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `proxy_url` - Proxy url * `-proxy_url` - Proxy url (descending) * `proxy_username` - Proxy username * `-proxy_username` - Proxy username (descending) * `proxy_password` - Proxy password * `-proxy_password` - Proxy password (descending) * `download_concurrency` - Download concurrency * `-download_concurrency` - Download concurrency (descending) * `max_retries` - Max retries * `-max_retries` - Max retries (descending) * `policy` - Policy * `-policy` - Policy (descending) * `total_timeout` - Total timeout * `-total_timeout` - Total timeout (descending) * `connect_timeout` - Connect timeout * `-connect_timeout` - Connect timeout (descending) * `sock_connect_timeout` - Sock connect timeout * `-sock_connect_timeout` - Sock connect timeout (descending) * `sock_read_timeout` - Sock read timeout * `-sock_read_timeout` - Sock read timeout (descending) * `headers` - Headers * `-headers` - Headers (descending) * `rate_limit` - Rate limit * `-rate_limit` - Rate limit (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -233,6 +237,7 @@ module PulpContainerClient
|
|
233
237
|
# @option opts [DateTime] :pulp_last_updated__lt Filter results where pulp_last_updated is less than value
|
234
238
|
# @option opts [DateTime] :pulp_last_updated__lte Filter results where pulp_last_updated is less than or equal to value
|
235
239
|
# @option opts [Array<DateTime>] :pulp_last_updated__range Filter results where pulp_last_updated is between two comma separated values
|
240
|
+
# @option opts [String] :q
|
236
241
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
237
242
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
238
243
|
# @return [PaginatedcontainerContainerRemoteResponseList]
|
@@ -248,7 +253,9 @@ module PulpContainerClient
|
|
248
253
|
# @option opts [String] :name Filter results where name matches value
|
249
254
|
# @option opts [String] :name__contains Filter results where name contains value
|
250
255
|
# @option opts [String] :name__icontains Filter results where name contains value
|
256
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
251
257
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
258
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
252
259
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
253
260
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
254
261
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `url` - Url * `-url` - Url (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `proxy_url` - Proxy url * `-proxy_url` - Proxy url (descending) * `proxy_username` - Proxy username * `-proxy_username` - Proxy username (descending) * `proxy_password` - Proxy password * `-proxy_password` - Proxy password (descending) * `download_concurrency` - Download concurrency * `-download_concurrency` - Download concurrency (descending) * `max_retries` - Max retries * `-max_retries` - Max retries (descending) * `policy` - Policy * `-policy` - Policy (descending) * `total_timeout` - Total timeout * `-total_timeout` - Total timeout (descending) * `connect_timeout` - Connect timeout * `-connect_timeout` - Connect timeout (descending) * `sock_connect_timeout` - Sock connect timeout * `-sock_connect_timeout` - Sock connect timeout (descending) * `sock_read_timeout` - Sock read timeout * `-sock_read_timeout` - Sock read timeout (descending) * `headers` - Headers * `-headers` - Headers (descending) * `rate_limit` - Rate limit * `-rate_limit` - Rate limit (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -261,6 +268,7 @@ module PulpContainerClient
|
|
261
268
|
# @option opts [DateTime] :pulp_last_updated__lt Filter results where pulp_last_updated is less than value
|
262
269
|
# @option opts [DateTime] :pulp_last_updated__lte Filter results where pulp_last_updated is less than or equal to value
|
263
270
|
# @option opts [Array<DateTime>] :pulp_last_updated__range Filter results where pulp_last_updated is between two comma separated values
|
271
|
+
# @option opts [String] :q
|
264
272
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
265
273
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
266
274
|
# @return [Array<(PaginatedcontainerContainerRemoteResponseList, Integer, Hash)>] PaginatedcontainerContainerRemoteResponseList data, response status code and response headers
|
@@ -281,7 +289,9 @@ module PulpContainerClient
|
|
281
289
|
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
282
290
|
query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
|
283
291
|
query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
|
292
|
+
query_params[:'name__iexact'] = opts[:'name__iexact'] if !opts[:'name__iexact'].nil?
|
284
293
|
query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
|
294
|
+
query_params[:'name__istartswith'] = opts[:'name__istartswith'] if !opts[:'name__istartswith'].nil?
|
285
295
|
query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
|
286
296
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
287
297
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
@@ -294,6 +304,7 @@ module PulpContainerClient
|
|
294
304
|
query_params[:'pulp_last_updated__lt'] = opts[:'pulp_last_updated__lt'] if !opts[:'pulp_last_updated__lt'].nil?
|
295
305
|
query_params[:'pulp_last_updated__lte'] = opts[:'pulp_last_updated__lte'] if !opts[:'pulp_last_updated__lte'].nil?
|
296
306
|
query_params[:'pulp_last_updated__range'] = @api_client.build_collection_param(opts[:'pulp_last_updated__range'], :csv) if !opts[:'pulp_last_updated__range'].nil?
|
307
|
+
query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
|
297
308
|
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
298
309
|
query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
|
299
310
|
|
@@ -330,6 +341,7 @@ module PulpContainerClient
|
|
330
341
|
return data, status_code, headers
|
331
342
|
end
|
332
343
|
|
344
|
+
# List roles
|
333
345
|
# List roles assigned to this object.
|
334
346
|
# @param container_container_remote_href [String]
|
335
347
|
# @param [Hash] opts the optional parameters
|
@@ -341,6 +353,7 @@ module PulpContainerClient
|
|
341
353
|
data
|
342
354
|
end
|
343
355
|
|
356
|
+
# List roles
|
344
357
|
# List roles assigned to this object.
|
345
358
|
# @param container_container_remote_href [String]
|
346
359
|
# @param [Hash] opts the optional parameters
|
@@ -396,6 +409,7 @@ module PulpContainerClient
|
|
396
409
|
return data, status_code, headers
|
397
410
|
end
|
398
411
|
|
412
|
+
# List user permissions
|
399
413
|
# List permissions available to the current user on this object.
|
400
414
|
# @param container_container_remote_href [String]
|
401
415
|
# @param [Hash] opts the optional parameters
|
@@ -407,6 +421,7 @@ module PulpContainerClient
|
|
407
421
|
data
|
408
422
|
end
|
409
423
|
|
424
|
+
# List user permissions
|
410
425
|
# List permissions available to the current user on this object.
|
411
426
|
# @param container_container_remote_href [String]
|
412
427
|
# @param [Hash] opts the optional parameters
|
@@ -600,6 +615,7 @@ module PulpContainerClient
|
|
600
615
|
return data, status_code, headers
|
601
616
|
end
|
602
617
|
|
618
|
+
# Remove a role
|
603
619
|
# Remove a role for this object from users/groups.
|
604
620
|
# @param container_container_remote_href [String]
|
605
621
|
# @param nested_role [NestedRole]
|
@@ -610,6 +626,7 @@ module PulpContainerClient
|
|
610
626
|
data
|
611
627
|
end
|
612
628
|
|
629
|
+
# Remove a role
|
613
630
|
# Remove a role for this object from users/groups.
|
614
631
|
# @param container_container_remote_href [String]
|
615
632
|
# @param nested_role [NestedRole]
|
@@ -668,6 +685,146 @@ module PulpContainerClient
|
|
668
685
|
return data, status_code, headers
|
669
686
|
end
|
670
687
|
|
688
|
+
# Set a label
|
689
|
+
# Set a single pulp_label on the object to a specific value or null.
|
690
|
+
# @param container_container_remote_href [String]
|
691
|
+
# @param set_label [SetLabel]
|
692
|
+
# @param [Hash] opts the optional parameters
|
693
|
+
# @return [SetLabelResponse]
|
694
|
+
def set_label(container_container_remote_href, set_label, opts = {})
|
695
|
+
data, _status_code, _headers = set_label_with_http_info(container_container_remote_href, set_label, opts)
|
696
|
+
data
|
697
|
+
end
|
698
|
+
|
699
|
+
# Set a label
|
700
|
+
# Set a single pulp_label on the object to a specific value or null.
|
701
|
+
# @param container_container_remote_href [String]
|
702
|
+
# @param set_label [SetLabel]
|
703
|
+
# @param [Hash] opts the optional parameters
|
704
|
+
# @return [Array<(SetLabelResponse, Integer, Hash)>] SetLabelResponse data, response status code and response headers
|
705
|
+
def set_label_with_http_info(container_container_remote_href, set_label, opts = {})
|
706
|
+
if @api_client.config.debugging
|
707
|
+
@api_client.config.logger.debug 'Calling API: RemotesContainerApi.set_label ...'
|
708
|
+
end
|
709
|
+
# verify the required parameter 'container_container_remote_href' is set
|
710
|
+
if @api_client.config.client_side_validation && container_container_remote_href.nil?
|
711
|
+
fail ArgumentError, "Missing the required parameter 'container_container_remote_href' when calling RemotesContainerApi.set_label"
|
712
|
+
end
|
713
|
+
# verify the required parameter 'set_label' is set
|
714
|
+
if @api_client.config.client_side_validation && set_label.nil?
|
715
|
+
fail ArgumentError, "Missing the required parameter 'set_label' when calling RemotesContainerApi.set_label"
|
716
|
+
end
|
717
|
+
# resource path
|
718
|
+
local_var_path = '{container_container_remote_href}set_label/'.sub('{' + 'container_container_remote_href' + '}', CGI.escape(container_container_remote_href.to_s).gsub('%2F', '/'))
|
719
|
+
|
720
|
+
# query parameters
|
721
|
+
query_params = opts[:query_params] || {}
|
722
|
+
|
723
|
+
# header parameters
|
724
|
+
header_params = opts[:header_params] || {}
|
725
|
+
# HTTP header 'Accept' (if needed)
|
726
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
727
|
+
# HTTP header 'Content-Type'
|
728
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
|
729
|
+
|
730
|
+
# form parameters
|
731
|
+
form_params = opts[:form_params] || {}
|
732
|
+
|
733
|
+
# http body (model)
|
734
|
+
post_body = opts[:body] || @api_client.object_to_http_body(set_label)
|
735
|
+
|
736
|
+
# return_type
|
737
|
+
return_type = opts[:return_type] || 'SetLabelResponse'
|
738
|
+
|
739
|
+
# auth_names
|
740
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
741
|
+
|
742
|
+
new_options = opts.merge(
|
743
|
+
:header_params => header_params,
|
744
|
+
:query_params => query_params,
|
745
|
+
:form_params => form_params,
|
746
|
+
:body => post_body,
|
747
|
+
:auth_names => auth_names,
|
748
|
+
:return_type => return_type
|
749
|
+
)
|
750
|
+
|
751
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
752
|
+
if @api_client.config.debugging
|
753
|
+
@api_client.config.logger.debug "API called: RemotesContainerApi#set_label\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
754
|
+
end
|
755
|
+
return data, status_code, headers
|
756
|
+
end
|
757
|
+
|
758
|
+
# Unset a label
|
759
|
+
# Unset a single pulp_label on the object.
|
760
|
+
# @param container_container_remote_href [String]
|
761
|
+
# @param unset_label [UnsetLabel]
|
762
|
+
# @param [Hash] opts the optional parameters
|
763
|
+
# @return [UnsetLabelResponse]
|
764
|
+
def unset_label(container_container_remote_href, unset_label, opts = {})
|
765
|
+
data, _status_code, _headers = unset_label_with_http_info(container_container_remote_href, unset_label, opts)
|
766
|
+
data
|
767
|
+
end
|
768
|
+
|
769
|
+
# Unset a label
|
770
|
+
# Unset a single pulp_label on the object.
|
771
|
+
# @param container_container_remote_href [String]
|
772
|
+
# @param unset_label [UnsetLabel]
|
773
|
+
# @param [Hash] opts the optional parameters
|
774
|
+
# @return [Array<(UnsetLabelResponse, Integer, Hash)>] UnsetLabelResponse data, response status code and response headers
|
775
|
+
def unset_label_with_http_info(container_container_remote_href, unset_label, opts = {})
|
776
|
+
if @api_client.config.debugging
|
777
|
+
@api_client.config.logger.debug 'Calling API: RemotesContainerApi.unset_label ...'
|
778
|
+
end
|
779
|
+
# verify the required parameter 'container_container_remote_href' is set
|
780
|
+
if @api_client.config.client_side_validation && container_container_remote_href.nil?
|
781
|
+
fail ArgumentError, "Missing the required parameter 'container_container_remote_href' when calling RemotesContainerApi.unset_label"
|
782
|
+
end
|
783
|
+
# verify the required parameter 'unset_label' is set
|
784
|
+
if @api_client.config.client_side_validation && unset_label.nil?
|
785
|
+
fail ArgumentError, "Missing the required parameter 'unset_label' when calling RemotesContainerApi.unset_label"
|
786
|
+
end
|
787
|
+
# resource path
|
788
|
+
local_var_path = '{container_container_remote_href}unset_label/'.sub('{' + 'container_container_remote_href' + '}', CGI.escape(container_container_remote_href.to_s).gsub('%2F', '/'))
|
789
|
+
|
790
|
+
# query parameters
|
791
|
+
query_params = opts[:query_params] || {}
|
792
|
+
|
793
|
+
# header parameters
|
794
|
+
header_params = opts[:header_params] || {}
|
795
|
+
# HTTP header 'Accept' (if needed)
|
796
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
797
|
+
# HTTP header 'Content-Type'
|
798
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
|
799
|
+
|
800
|
+
# form parameters
|
801
|
+
form_params = opts[:form_params] || {}
|
802
|
+
|
803
|
+
# http body (model)
|
804
|
+
post_body = opts[:body] || @api_client.object_to_http_body(unset_label)
|
805
|
+
|
806
|
+
# return_type
|
807
|
+
return_type = opts[:return_type] || 'UnsetLabelResponse'
|
808
|
+
|
809
|
+
# auth_names
|
810
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
811
|
+
|
812
|
+
new_options = opts.merge(
|
813
|
+
:header_params => header_params,
|
814
|
+
:query_params => query_params,
|
815
|
+
:form_params => form_params,
|
816
|
+
:body => post_body,
|
817
|
+
:auth_names => auth_names,
|
818
|
+
:return_type => return_type
|
819
|
+
)
|
820
|
+
|
821
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
822
|
+
if @api_client.config.debugging
|
823
|
+
@api_client.config.logger.debug "API called: RemotesContainerApi#unset_label\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
824
|
+
end
|
825
|
+
return data, status_code, headers
|
826
|
+
end
|
827
|
+
|
671
828
|
# Update a container remote
|
672
829
|
# Trigger an asynchronous update task
|
673
830
|
# @param container_container_remote_href [String]
|
@@ -89,6 +89,7 @@ module PulpContainerClient
|
|
89
89
|
return data, status_code, headers
|
90
90
|
end
|
91
91
|
|
92
|
+
# Add a role
|
92
93
|
# Add a role for this object to users/groups.
|
93
94
|
# @param container_container_repository_href [String]
|
94
95
|
# @param nested_role [NestedRole]
|
@@ -99,6 +100,7 @@ module PulpContainerClient
|
|
99
100
|
data
|
100
101
|
end
|
101
102
|
|
103
|
+
# Add a role
|
102
104
|
# Add a role for this object to users/groups.
|
103
105
|
# @param container_container_repository_href [String]
|
104
106
|
# @param nested_role [NestedRole]
|
@@ -511,13 +513,16 @@ module PulpContainerClient
|
|
511
513
|
# @option opts [String] :name Filter results where name matches value
|
512
514
|
# @option opts [String] :name__contains Filter results where name contains value
|
513
515
|
# @option opts [String] :name__icontains Filter results where name contains value
|
516
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
514
517
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
518
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
515
519
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
516
520
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
517
521
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
518
522
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
519
523
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
520
524
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
525
|
+
# @option opts [String] :q
|
521
526
|
# @option opts [String] :remote Foreign Key referenced by HREF
|
522
527
|
# @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
|
523
528
|
# @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
|
@@ -544,13 +549,16 @@ module PulpContainerClient
|
|
544
549
|
# @option opts [String] :name Filter results where name matches value
|
545
550
|
# @option opts [String] :name__contains Filter results where name contains value
|
546
551
|
# @option opts [String] :name__icontains Filter results where name contains value
|
552
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
547
553
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
554
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
548
555
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
549
556
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
550
557
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
551
558
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
552
559
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
553
560
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
561
|
+
# @option opts [String] :q
|
554
562
|
# @option opts [String] :remote Foreign Key referenced by HREF
|
555
563
|
# @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
|
556
564
|
# @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
|
@@ -582,13 +590,16 @@ module PulpContainerClient
|
|
582
590
|
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
583
591
|
query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
|
584
592
|
query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
|
593
|
+
query_params[:'name__iexact'] = opts[:'name__iexact'] if !opts[:'name__iexact'].nil?
|
585
594
|
query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
|
595
|
+
query_params[:'name__istartswith'] = opts[:'name__istartswith'] if !opts[:'name__istartswith'].nil?
|
586
596
|
query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
|
587
597
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
588
598
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
589
599
|
query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
|
590
600
|
query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
|
591
601
|
query_params[:'pulp_label_select'] = opts[:'pulp_label_select'] if !opts[:'pulp_label_select'].nil?
|
602
|
+
query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
|
592
603
|
query_params[:'remote'] = opts[:'remote'] if !opts[:'remote'].nil?
|
593
604
|
query_params[:'retain_repo_versions'] = opts[:'retain_repo_versions'] if !opts[:'retain_repo_versions'].nil?
|
594
605
|
query_params[:'retain_repo_versions__gt'] = opts[:'retain_repo_versions__gt'] if !opts[:'retain_repo_versions__gt'].nil?
|
@@ -635,6 +646,7 @@ module PulpContainerClient
|
|
635
646
|
return data, status_code, headers
|
636
647
|
end
|
637
648
|
|
649
|
+
# List roles
|
638
650
|
# List roles assigned to this object.
|
639
651
|
# @param container_container_repository_href [String]
|
640
652
|
# @param [Hash] opts the optional parameters
|
@@ -646,6 +658,7 @@ module PulpContainerClient
|
|
646
658
|
data
|
647
659
|
end
|
648
660
|
|
661
|
+
# List roles
|
649
662
|
# List roles assigned to this object.
|
650
663
|
# @param container_container_repository_href [String]
|
651
664
|
# @param [Hash] opts the optional parameters
|
@@ -701,6 +714,7 @@ module PulpContainerClient
|
|
701
714
|
return data, status_code, headers
|
702
715
|
end
|
703
716
|
|
717
|
+
# List user permissions
|
704
718
|
# List permissions available to the current user on this object.
|
705
719
|
# @param container_container_repository_href [String]
|
706
720
|
# @param [Hash] opts the optional parameters
|
@@ -712,6 +726,7 @@ module PulpContainerClient
|
|
712
726
|
data
|
713
727
|
end
|
714
728
|
|
729
|
+
# List user permissions
|
715
730
|
# List permissions available to the current user on this object.
|
716
731
|
# @param container_container_repository_href [String]
|
717
732
|
# @param [Hash] opts the optional parameters
|
@@ -975,6 +990,7 @@ module PulpContainerClient
|
|
975
990
|
return data, status_code, headers
|
976
991
|
end
|
977
992
|
|
993
|
+
# Remove a role
|
978
994
|
# Remove a role for this object from users/groups.
|
979
995
|
# @param container_container_repository_href [String]
|
980
996
|
# @param nested_role [NestedRole]
|
@@ -985,6 +1001,7 @@ module PulpContainerClient
|
|
985
1001
|
data
|
986
1002
|
end
|
987
1003
|
|
1004
|
+
# Remove a role
|
988
1005
|
# Remove a role for this object from users/groups.
|
989
1006
|
# @param container_container_repository_href [String]
|
990
1007
|
# @param nested_role [NestedRole]
|
@@ -1043,6 +1060,76 @@ module PulpContainerClient
|
|
1043
1060
|
return data, status_code, headers
|
1044
1061
|
end
|
1045
1062
|
|
1063
|
+
# Set a label
|
1064
|
+
# Set a single pulp_label on the object to a specific value or null.
|
1065
|
+
# @param container_container_repository_href [String]
|
1066
|
+
# @param set_label [SetLabel]
|
1067
|
+
# @param [Hash] opts the optional parameters
|
1068
|
+
# @return [SetLabelResponse]
|
1069
|
+
def set_label(container_container_repository_href, set_label, opts = {})
|
1070
|
+
data, _status_code, _headers = set_label_with_http_info(container_container_repository_href, set_label, opts)
|
1071
|
+
data
|
1072
|
+
end
|
1073
|
+
|
1074
|
+
# Set a label
|
1075
|
+
# Set a single pulp_label on the object to a specific value or null.
|
1076
|
+
# @param container_container_repository_href [String]
|
1077
|
+
# @param set_label [SetLabel]
|
1078
|
+
# @param [Hash] opts the optional parameters
|
1079
|
+
# @return [Array<(SetLabelResponse, Integer, Hash)>] SetLabelResponse data, response status code and response headers
|
1080
|
+
def set_label_with_http_info(container_container_repository_href, set_label, opts = {})
|
1081
|
+
if @api_client.config.debugging
|
1082
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.set_label ...'
|
1083
|
+
end
|
1084
|
+
# verify the required parameter 'container_container_repository_href' is set
|
1085
|
+
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
1086
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.set_label"
|
1087
|
+
end
|
1088
|
+
# verify the required parameter 'set_label' is set
|
1089
|
+
if @api_client.config.client_side_validation && set_label.nil?
|
1090
|
+
fail ArgumentError, "Missing the required parameter 'set_label' when calling RepositoriesContainerApi.set_label"
|
1091
|
+
end
|
1092
|
+
# resource path
|
1093
|
+
local_var_path = '{container_container_repository_href}set_label/'.sub('{' + 'container_container_repository_href' + '}', CGI.escape(container_container_repository_href.to_s).gsub('%2F', '/'))
|
1094
|
+
|
1095
|
+
# query parameters
|
1096
|
+
query_params = opts[:query_params] || {}
|
1097
|
+
|
1098
|
+
# header parameters
|
1099
|
+
header_params = opts[:header_params] || {}
|
1100
|
+
# HTTP header 'Accept' (if needed)
|
1101
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
1102
|
+
# HTTP header 'Content-Type'
|
1103
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
|
1104
|
+
|
1105
|
+
# form parameters
|
1106
|
+
form_params = opts[:form_params] || {}
|
1107
|
+
|
1108
|
+
# http body (model)
|
1109
|
+
post_body = opts[:body] || @api_client.object_to_http_body(set_label)
|
1110
|
+
|
1111
|
+
# return_type
|
1112
|
+
return_type = opts[:return_type] || 'SetLabelResponse'
|
1113
|
+
|
1114
|
+
# auth_names
|
1115
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
1116
|
+
|
1117
|
+
new_options = opts.merge(
|
1118
|
+
:header_params => header_params,
|
1119
|
+
:query_params => query_params,
|
1120
|
+
:form_params => form_params,
|
1121
|
+
:body => post_body,
|
1122
|
+
:auth_names => auth_names,
|
1123
|
+
:return_type => return_type
|
1124
|
+
)
|
1125
|
+
|
1126
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
1127
|
+
if @api_client.config.debugging
|
1128
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#set_label\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1129
|
+
end
|
1130
|
+
return data, status_code, headers
|
1131
|
+
end
|
1132
|
+
|
1046
1133
|
# Sign images in the repo
|
1047
1134
|
# Trigger an asynchronous task to sign content.
|
1048
1135
|
# @param container_container_repository_href [String]
|
@@ -1253,6 +1340,76 @@ module PulpContainerClient
|
|
1253
1340
|
return data, status_code, headers
|
1254
1341
|
end
|
1255
1342
|
|
1343
|
+
# Unset a label
|
1344
|
+
# Unset a single pulp_label on the object.
|
1345
|
+
# @param container_container_repository_href [String]
|
1346
|
+
# @param unset_label [UnsetLabel]
|
1347
|
+
# @param [Hash] opts the optional parameters
|
1348
|
+
# @return [UnsetLabelResponse]
|
1349
|
+
def unset_label(container_container_repository_href, unset_label, opts = {})
|
1350
|
+
data, _status_code, _headers = unset_label_with_http_info(container_container_repository_href, unset_label, opts)
|
1351
|
+
data
|
1352
|
+
end
|
1353
|
+
|
1354
|
+
# Unset a label
|
1355
|
+
# Unset a single pulp_label on the object.
|
1356
|
+
# @param container_container_repository_href [String]
|
1357
|
+
# @param unset_label [UnsetLabel]
|
1358
|
+
# @param [Hash] opts the optional parameters
|
1359
|
+
# @return [Array<(UnsetLabelResponse, Integer, Hash)>] UnsetLabelResponse data, response status code and response headers
|
1360
|
+
def unset_label_with_http_info(container_container_repository_href, unset_label, opts = {})
|
1361
|
+
if @api_client.config.debugging
|
1362
|
+
@api_client.config.logger.debug 'Calling API: RepositoriesContainerApi.unset_label ...'
|
1363
|
+
end
|
1364
|
+
# verify the required parameter 'container_container_repository_href' is set
|
1365
|
+
if @api_client.config.client_side_validation && container_container_repository_href.nil?
|
1366
|
+
fail ArgumentError, "Missing the required parameter 'container_container_repository_href' when calling RepositoriesContainerApi.unset_label"
|
1367
|
+
end
|
1368
|
+
# verify the required parameter 'unset_label' is set
|
1369
|
+
if @api_client.config.client_side_validation && unset_label.nil?
|
1370
|
+
fail ArgumentError, "Missing the required parameter 'unset_label' when calling RepositoriesContainerApi.unset_label"
|
1371
|
+
end
|
1372
|
+
# resource path
|
1373
|
+
local_var_path = '{container_container_repository_href}unset_label/'.sub('{' + 'container_container_repository_href' + '}', CGI.escape(container_container_repository_href.to_s).gsub('%2F', '/'))
|
1374
|
+
|
1375
|
+
# query parameters
|
1376
|
+
query_params = opts[:query_params] || {}
|
1377
|
+
|
1378
|
+
# header parameters
|
1379
|
+
header_params = opts[:header_params] || {}
|
1380
|
+
# HTTP header 'Accept' (if needed)
|
1381
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
1382
|
+
# HTTP header 'Content-Type'
|
1383
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
|
1384
|
+
|
1385
|
+
# form parameters
|
1386
|
+
form_params = opts[:form_params] || {}
|
1387
|
+
|
1388
|
+
# http body (model)
|
1389
|
+
post_body = opts[:body] || @api_client.object_to_http_body(unset_label)
|
1390
|
+
|
1391
|
+
# return_type
|
1392
|
+
return_type = opts[:return_type] || 'UnsetLabelResponse'
|
1393
|
+
|
1394
|
+
# auth_names
|
1395
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
1396
|
+
|
1397
|
+
new_options = opts.merge(
|
1398
|
+
:header_params => header_params,
|
1399
|
+
:query_params => query_params,
|
1400
|
+
:form_params => form_params,
|
1401
|
+
:body => post_body,
|
1402
|
+
:auth_names => auth_names,
|
1403
|
+
:return_type => return_type
|
1404
|
+
)
|
1405
|
+
|
1406
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
1407
|
+
if @api_client.config.debugging
|
1408
|
+
@api_client.config.logger.debug "API called: RepositoriesContainerApi#unset_label\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
1409
|
+
end
|
1410
|
+
return data, status_code, headers
|
1411
|
+
end
|
1412
|
+
|
1256
1413
|
# Delete a tag
|
1257
1414
|
# Trigger an asynchronous task to untag an image in the repository
|
1258
1415
|
# @param container_container_repository_href [String]
|
@@ -19,6 +19,7 @@ module PulpContainerClient
|
|
19
19
|
def initialize(api_client = ApiClient.default)
|
20
20
|
@api_client = api_client
|
21
21
|
end
|
22
|
+
# Add a role
|
22
23
|
# Add a role for this object to users/groups.
|
23
24
|
# @param container_container_push_repository_href [String]
|
24
25
|
# @param nested_role [NestedRole]
|
@@ -29,6 +30,7 @@ module PulpContainerClient
|
|
29
30
|
data
|
30
31
|
end
|
31
32
|
|
33
|
+
# Add a role
|
32
34
|
# Add a role for this object to users/groups.
|
33
35
|
# @param container_container_push_repository_href [String]
|
34
36
|
# @param nested_role [NestedRole]
|
@@ -95,13 +97,16 @@ module PulpContainerClient
|
|
95
97
|
# @option opts [String] :name Filter results where name matches value
|
96
98
|
# @option opts [String] :name__contains Filter results where name contains value
|
97
99
|
# @option opts [String] :name__icontains Filter results where name contains value
|
100
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
98
101
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
102
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
99
103
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
100
104
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
101
105
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
102
106
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
103
107
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
104
108
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
109
|
+
# @option opts [String] :q
|
105
110
|
# @option opts [String] :remote Foreign Key referenced by HREF
|
106
111
|
# @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
|
107
112
|
# @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
|
@@ -128,13 +133,16 @@ module PulpContainerClient
|
|
128
133
|
# @option opts [String] :name Filter results where name matches value
|
129
134
|
# @option opts [String] :name__contains Filter results where name contains value
|
130
135
|
# @option opts [String] :name__icontains Filter results where name contains value
|
136
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
131
137
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
138
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
132
139
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
133
140
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
134
141
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
135
142
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
136
143
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
137
144
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
145
|
+
# @option opts [String] :q
|
138
146
|
# @option opts [String] :remote Foreign Key referenced by HREF
|
139
147
|
# @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
|
140
148
|
# @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
|
@@ -166,13 +174,16 @@ module PulpContainerClient
|
|
166
174
|
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
167
175
|
query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
|
168
176
|
query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
|
177
|
+
query_params[:'name__iexact'] = opts[:'name__iexact'] if !opts[:'name__iexact'].nil?
|
169
178
|
query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
|
179
|
+
query_params[:'name__istartswith'] = opts[:'name__istartswith'] if !opts[:'name__istartswith'].nil?
|
170
180
|
query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
|
171
181
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
172
182
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
173
183
|
query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
|
174
184
|
query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
|
175
185
|
query_params[:'pulp_label_select'] = opts[:'pulp_label_select'] if !opts[:'pulp_label_select'].nil?
|
186
|
+
query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
|
176
187
|
query_params[:'remote'] = opts[:'remote'] if !opts[:'remote'].nil?
|
177
188
|
query_params[:'retain_repo_versions'] = opts[:'retain_repo_versions'] if !opts[:'retain_repo_versions'].nil?
|
178
189
|
query_params[:'retain_repo_versions__gt'] = opts[:'retain_repo_versions__gt'] if !opts[:'retain_repo_versions__gt'].nil?
|
@@ -219,6 +230,7 @@ module PulpContainerClient
|
|
219
230
|
return data, status_code, headers
|
220
231
|
end
|
221
232
|
|
233
|
+
# List roles
|
222
234
|
# List roles assigned to this object.
|
223
235
|
# @param container_container_push_repository_href [String]
|
224
236
|
# @param [Hash] opts the optional parameters
|
@@ -230,6 +242,7 @@ module PulpContainerClient
|
|
230
242
|
data
|
231
243
|
end
|
232
244
|
|
245
|
+
# List roles
|
233
246
|
# List roles assigned to this object.
|
234
247
|
# @param container_container_push_repository_href [String]
|
235
248
|
# @param [Hash] opts the optional parameters
|
@@ -285,6 +298,7 @@ module PulpContainerClient
|
|
285
298
|
return data, status_code, headers
|
286
299
|
end
|
287
300
|
|
301
|
+
# List user permissions
|
288
302
|
# List permissions available to the current user on this object.
|
289
303
|
# @param container_container_push_repository_href [String]
|
290
304
|
# @param [Hash] opts the optional parameters
|
@@ -296,6 +310,7 @@ module PulpContainerClient
|
|
296
310
|
data
|
297
311
|
end
|
298
312
|
|
313
|
+
# List user permissions
|
299
314
|
# List permissions available to the current user on this object.
|
300
315
|
# @param container_container_push_repository_href [String]
|
301
316
|
# @param [Hash] opts the optional parameters
|
@@ -559,6 +574,7 @@ module PulpContainerClient
|
|
559
574
|
return data, status_code, headers
|
560
575
|
end
|
561
576
|
|
577
|
+
# Remove a role
|
562
578
|
# Remove a role for this object from users/groups.
|
563
579
|
# @param container_container_push_repository_href [String]
|
564
580
|
# @param nested_role [NestedRole]
|
@@ -569,6 +585,7 @@ module PulpContainerClient
|
|
569
585
|
data
|
570
586
|
end
|
571
587
|
|
588
|
+
# Remove a role
|
572
589
|
# Remove a role for this object from users/groups.
|
573
590
|
# @param container_container_push_repository_href [String]
|
574
591
|
# @param nested_role [NestedRole]
|