pulp_gem_client 0.2.0 → 0.4.0
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 +35 -5
- data/docs/ContentGemApi.md +3 -1
- data/docs/DistributionsGemApi.md +355 -1
- data/docs/MyPermissionsResponse.md +17 -0
- data/docs/NestedRole.md +21 -0
- data/docs/NestedRoleResponse.md +21 -0
- data/docs/ObjectRolesResponse.md +17 -0
- data/docs/PublicationsGemApi.md +235 -1
- data/docs/RemotesGemApi.md +355 -1
- data/docs/RepositoriesGemApi.md +355 -1
- data/docs/RepositoriesGemVersionsApi.md +3 -1
- data/docs/SetLabel.md +19 -0
- data/docs/SetLabelResponse.md +19 -0
- data/docs/UnsetLabel.md +17 -0
- data/docs/UnsetLabelResponse.md +19 -0
- data/lib/pulp_gem_client/api/content_gem_api.rb +3 -0
- data/lib/pulp_gem_client/api/distributions_gem_api.rb +431 -0
- data/lib/pulp_gem_client/api/publications_gem_api.rb +279 -0
- data/lib/pulp_gem_client/api/remotes_gem_api.rb +431 -0
- data/lib/pulp_gem_client/api/repositories_gem_api.rb +431 -0
- data/lib/pulp_gem_client/api/repositories_gem_versions_api.rb +3 -0
- data/lib/pulp_gem_client/configuration.rb +2 -2
- data/lib/pulp_gem_client/models/my_permissions_response.rb +213 -0
- data/lib/pulp_gem_client/models/nested_role.rb +253 -0
- data/lib/pulp_gem_client/models/nested_role_response.rb +234 -0
- data/lib/pulp_gem_client/models/object_roles_response.rb +213 -0
- data/lib/pulp_gem_client/models/set_label.rb +252 -0
- data/lib/pulp_gem_client/models/set_label_response.rb +243 -0
- data/lib/pulp_gem_client/models/unset_label.rb +242 -0
- data/lib/pulp_gem_client/models/unset_label_response.rb +242 -0
- data/lib/pulp_gem_client/version.rb +1 -1
- data/lib/pulp_gem_client.rb +8 -0
- data/spec/api/content_gem_api_spec.rb +1 -0
- data/spec/api/distributions_gem_api_spec.rb +85 -0
- data/spec/api/publications_gem_api_spec.rb +55 -0
- data/spec/api/remotes_gem_api_spec.rb +85 -0
- data/spec/api/repositories_gem_api_spec.rb +85 -0
- data/spec/api/repositories_gem_versions_api_spec.rb +1 -0
- data/spec/configuration_spec.rb +3 -3
- data/spec/models/my_permissions_response_spec.rb +41 -0
- data/spec/models/nested_role_response_spec.rb +53 -0
- data/spec/models/nested_role_spec.rb +53 -0
- data/spec/models/object_roles_response_spec.rb +41 -0
- 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 +57 -25
@@ -19,6 +19,76 @@ module PulpGemClient
|
|
19
19
|
def initialize(api_client = ApiClient.default)
|
20
20
|
@api_client = api_client
|
21
21
|
end
|
22
|
+
# Add a role
|
23
|
+
# Add a role for this object to users/groups.
|
24
|
+
# @param gem_gem_distribution_href [String]
|
25
|
+
# @param nested_role [NestedRole]
|
26
|
+
# @param [Hash] opts the optional parameters
|
27
|
+
# @return [NestedRoleResponse]
|
28
|
+
def add_role(gem_gem_distribution_href, nested_role, opts = {})
|
29
|
+
data, _status_code, _headers = add_role_with_http_info(gem_gem_distribution_href, nested_role, opts)
|
30
|
+
data
|
31
|
+
end
|
32
|
+
|
33
|
+
# Add a role
|
34
|
+
# Add a role for this object to users/groups.
|
35
|
+
# @param gem_gem_distribution_href [String]
|
36
|
+
# @param nested_role [NestedRole]
|
37
|
+
# @param [Hash] opts the optional parameters
|
38
|
+
# @return [Array<(NestedRoleResponse, Integer, Hash)>] NestedRoleResponse data, response status code and response headers
|
39
|
+
def add_role_with_http_info(gem_gem_distribution_href, nested_role, opts = {})
|
40
|
+
if @api_client.config.debugging
|
41
|
+
@api_client.config.logger.debug 'Calling API: DistributionsGemApi.add_role ...'
|
42
|
+
end
|
43
|
+
# verify the required parameter 'gem_gem_distribution_href' is set
|
44
|
+
if @api_client.config.client_side_validation && gem_gem_distribution_href.nil?
|
45
|
+
fail ArgumentError, "Missing the required parameter 'gem_gem_distribution_href' when calling DistributionsGemApi.add_role"
|
46
|
+
end
|
47
|
+
# verify the required parameter 'nested_role' is set
|
48
|
+
if @api_client.config.client_side_validation && nested_role.nil?
|
49
|
+
fail ArgumentError, "Missing the required parameter 'nested_role' when calling DistributionsGemApi.add_role"
|
50
|
+
end
|
51
|
+
# resource path
|
52
|
+
local_var_path = '{gem_gem_distribution_href}add_role/'.sub('{' + 'gem_gem_distribution_href' + '}', CGI.escape(gem_gem_distribution_href.to_s).gsub('%2F', '/'))
|
53
|
+
|
54
|
+
# query parameters
|
55
|
+
query_params = opts[:query_params] || {}
|
56
|
+
|
57
|
+
# header parameters
|
58
|
+
header_params = opts[:header_params] || {}
|
59
|
+
# HTTP header 'Accept' (if needed)
|
60
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
61
|
+
# HTTP header 'Content-Type'
|
62
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
|
63
|
+
|
64
|
+
# form parameters
|
65
|
+
form_params = opts[:form_params] || {}
|
66
|
+
|
67
|
+
# http body (model)
|
68
|
+
post_body = opts[:body] || @api_client.object_to_http_body(nested_role)
|
69
|
+
|
70
|
+
# return_type
|
71
|
+
return_type = opts[:return_type] || 'NestedRoleResponse'
|
72
|
+
|
73
|
+
# auth_names
|
74
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
75
|
+
|
76
|
+
new_options = opts.merge(
|
77
|
+
:header_params => header_params,
|
78
|
+
:query_params => query_params,
|
79
|
+
:form_params => form_params,
|
80
|
+
:body => post_body,
|
81
|
+
:auth_names => auth_names,
|
82
|
+
:return_type => return_type
|
83
|
+
)
|
84
|
+
|
85
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
86
|
+
if @api_client.config.debugging
|
87
|
+
@api_client.config.logger.debug "API called: DistributionsGemApi#add_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
88
|
+
end
|
89
|
+
return data, status_code, headers
|
90
|
+
end
|
91
|
+
|
22
92
|
# Create a gem distribution
|
23
93
|
# Trigger an asynchronous create task
|
24
94
|
# @param gem_gem_distribution [GemGemDistribution]
|
@@ -156,13 +226,18 @@ module PulpGemClient
|
|
156
226
|
# @option opts [String] :name Filter results where name matches value
|
157
227
|
# @option opts [String] :name__contains Filter results where name contains value
|
158
228
|
# @option opts [String] :name__icontains Filter results where name contains value
|
229
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
159
230
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
231
|
+
# @option opts [String] :name__iregex Filter results where name matches regex value
|
232
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
233
|
+
# @option opts [String] :name__regex Filter results where name matches regex value
|
160
234
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
161
235
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
162
236
|
# @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) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
163
237
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
164
238
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
165
239
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
240
|
+
# @option opts [String] :q
|
166
241
|
# @option opts [String] :repository Filter results where repository matches value
|
167
242
|
# @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
|
168
243
|
# @option opts [String] :with_content Filter distributions based on the content served by them
|
@@ -185,13 +260,18 @@ module PulpGemClient
|
|
185
260
|
# @option opts [String] :name Filter results where name matches value
|
186
261
|
# @option opts [String] :name__contains Filter results where name contains value
|
187
262
|
# @option opts [String] :name__icontains Filter results where name contains value
|
263
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
188
264
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
265
|
+
# @option opts [String] :name__iregex Filter results where name matches regex value
|
266
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
267
|
+
# @option opts [String] :name__regex Filter results where name matches regex value
|
189
268
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
190
269
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
191
270
|
# @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) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
192
271
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
193
272
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
194
273
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
274
|
+
# @option opts [String] :q
|
195
275
|
# @option opts [String] :repository Filter results where repository matches value
|
196
276
|
# @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
|
197
277
|
# @option opts [String] :with_content Filter distributions based on the content served by them
|
@@ -219,13 +299,18 @@ module PulpGemClient
|
|
219
299
|
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
220
300
|
query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
|
221
301
|
query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
|
302
|
+
query_params[:'name__iexact'] = opts[:'name__iexact'] if !opts[:'name__iexact'].nil?
|
222
303
|
query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
|
304
|
+
query_params[:'name__iregex'] = opts[:'name__iregex'] if !opts[:'name__iregex'].nil?
|
305
|
+
query_params[:'name__istartswith'] = opts[:'name__istartswith'] if !opts[:'name__istartswith'].nil?
|
306
|
+
query_params[:'name__regex'] = opts[:'name__regex'] if !opts[:'name__regex'].nil?
|
223
307
|
query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
|
224
308
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
225
309
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
226
310
|
query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
|
227
311
|
query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
|
228
312
|
query_params[:'pulp_label_select'] = opts[:'pulp_label_select'] if !opts[:'pulp_label_select'].nil?
|
313
|
+
query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
|
229
314
|
query_params[:'repository'] = opts[:'repository'] if !opts[:'repository'].nil?
|
230
315
|
query_params[:'repository__in'] = @api_client.build_collection_param(opts[:'repository__in'], :csv) if !opts[:'repository__in'].nil?
|
231
316
|
query_params[:'with_content'] = opts[:'with_content'] if !opts[:'with_content'].nil?
|
@@ -265,6 +350,142 @@ module PulpGemClient
|
|
265
350
|
return data, status_code, headers
|
266
351
|
end
|
267
352
|
|
353
|
+
# List roles
|
354
|
+
# List roles assigned to this object.
|
355
|
+
# @param gem_gem_distribution_href [String]
|
356
|
+
# @param [Hash] opts the optional parameters
|
357
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
358
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
359
|
+
# @return [ObjectRolesResponse]
|
360
|
+
def list_roles(gem_gem_distribution_href, opts = {})
|
361
|
+
data, _status_code, _headers = list_roles_with_http_info(gem_gem_distribution_href, opts)
|
362
|
+
data
|
363
|
+
end
|
364
|
+
|
365
|
+
# List roles
|
366
|
+
# List roles assigned to this object.
|
367
|
+
# @param gem_gem_distribution_href [String]
|
368
|
+
# @param [Hash] opts the optional parameters
|
369
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
370
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
371
|
+
# @return [Array<(ObjectRolesResponse, Integer, Hash)>] ObjectRolesResponse data, response status code and response headers
|
372
|
+
def list_roles_with_http_info(gem_gem_distribution_href, opts = {})
|
373
|
+
if @api_client.config.debugging
|
374
|
+
@api_client.config.logger.debug 'Calling API: DistributionsGemApi.list_roles ...'
|
375
|
+
end
|
376
|
+
# verify the required parameter 'gem_gem_distribution_href' is set
|
377
|
+
if @api_client.config.client_side_validation && gem_gem_distribution_href.nil?
|
378
|
+
fail ArgumentError, "Missing the required parameter 'gem_gem_distribution_href' when calling DistributionsGemApi.list_roles"
|
379
|
+
end
|
380
|
+
# resource path
|
381
|
+
local_var_path = '{gem_gem_distribution_href}list_roles/'.sub('{' + 'gem_gem_distribution_href' + '}', CGI.escape(gem_gem_distribution_href.to_s).gsub('%2F', '/'))
|
382
|
+
|
383
|
+
# query parameters
|
384
|
+
query_params = opts[:query_params] || {}
|
385
|
+
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
386
|
+
query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
|
387
|
+
|
388
|
+
# header parameters
|
389
|
+
header_params = opts[:header_params] || {}
|
390
|
+
# HTTP header 'Accept' (if needed)
|
391
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
392
|
+
|
393
|
+
# form parameters
|
394
|
+
form_params = opts[:form_params] || {}
|
395
|
+
|
396
|
+
# http body (model)
|
397
|
+
post_body = opts[:body]
|
398
|
+
|
399
|
+
# return_type
|
400
|
+
return_type = opts[:return_type] || 'ObjectRolesResponse'
|
401
|
+
|
402
|
+
# auth_names
|
403
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
404
|
+
|
405
|
+
new_options = opts.merge(
|
406
|
+
:header_params => header_params,
|
407
|
+
:query_params => query_params,
|
408
|
+
:form_params => form_params,
|
409
|
+
:body => post_body,
|
410
|
+
:auth_names => auth_names,
|
411
|
+
:return_type => return_type
|
412
|
+
)
|
413
|
+
|
414
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
415
|
+
if @api_client.config.debugging
|
416
|
+
@api_client.config.logger.debug "API called: DistributionsGemApi#list_roles\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
417
|
+
end
|
418
|
+
return data, status_code, headers
|
419
|
+
end
|
420
|
+
|
421
|
+
# List user permissions
|
422
|
+
# List permissions available to the current user on this object.
|
423
|
+
# @param gem_gem_distribution_href [String]
|
424
|
+
# @param [Hash] opts the optional parameters
|
425
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
426
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
427
|
+
# @return [MyPermissionsResponse]
|
428
|
+
def my_permissions(gem_gem_distribution_href, opts = {})
|
429
|
+
data, _status_code, _headers = my_permissions_with_http_info(gem_gem_distribution_href, opts)
|
430
|
+
data
|
431
|
+
end
|
432
|
+
|
433
|
+
# List user permissions
|
434
|
+
# List permissions available to the current user on this object.
|
435
|
+
# @param gem_gem_distribution_href [String]
|
436
|
+
# @param [Hash] opts the optional parameters
|
437
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
438
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
439
|
+
# @return [Array<(MyPermissionsResponse, Integer, Hash)>] MyPermissionsResponse data, response status code and response headers
|
440
|
+
def my_permissions_with_http_info(gem_gem_distribution_href, opts = {})
|
441
|
+
if @api_client.config.debugging
|
442
|
+
@api_client.config.logger.debug 'Calling API: DistributionsGemApi.my_permissions ...'
|
443
|
+
end
|
444
|
+
# verify the required parameter 'gem_gem_distribution_href' is set
|
445
|
+
if @api_client.config.client_side_validation && gem_gem_distribution_href.nil?
|
446
|
+
fail ArgumentError, "Missing the required parameter 'gem_gem_distribution_href' when calling DistributionsGemApi.my_permissions"
|
447
|
+
end
|
448
|
+
# resource path
|
449
|
+
local_var_path = '{gem_gem_distribution_href}my_permissions/'.sub('{' + 'gem_gem_distribution_href' + '}', CGI.escape(gem_gem_distribution_href.to_s).gsub('%2F', '/'))
|
450
|
+
|
451
|
+
# query parameters
|
452
|
+
query_params = opts[:query_params] || {}
|
453
|
+
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
454
|
+
query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
|
455
|
+
|
456
|
+
# header parameters
|
457
|
+
header_params = opts[:header_params] || {}
|
458
|
+
# HTTP header 'Accept' (if needed)
|
459
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
460
|
+
|
461
|
+
# form parameters
|
462
|
+
form_params = opts[:form_params] || {}
|
463
|
+
|
464
|
+
# http body (model)
|
465
|
+
post_body = opts[:body]
|
466
|
+
|
467
|
+
# return_type
|
468
|
+
return_type = opts[:return_type] || 'MyPermissionsResponse'
|
469
|
+
|
470
|
+
# auth_names
|
471
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
472
|
+
|
473
|
+
new_options = opts.merge(
|
474
|
+
:header_params => header_params,
|
475
|
+
:query_params => query_params,
|
476
|
+
:form_params => form_params,
|
477
|
+
:body => post_body,
|
478
|
+
:auth_names => auth_names,
|
479
|
+
:return_type => return_type
|
480
|
+
)
|
481
|
+
|
482
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
483
|
+
if @api_client.config.debugging
|
484
|
+
@api_client.config.logger.debug "API called: DistributionsGemApi#my_permissions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
485
|
+
end
|
486
|
+
return data, status_code, headers
|
487
|
+
end
|
488
|
+
|
268
489
|
# Update a gem distribution
|
269
490
|
# Trigger an asynchronous partial update task
|
270
491
|
# @param gem_gem_distribution_href [String]
|
@@ -403,6 +624,216 @@ module PulpGemClient
|
|
403
624
|
return data, status_code, headers
|
404
625
|
end
|
405
626
|
|
627
|
+
# Remove a role
|
628
|
+
# Remove a role for this object from users/groups.
|
629
|
+
# @param gem_gem_distribution_href [String]
|
630
|
+
# @param nested_role [NestedRole]
|
631
|
+
# @param [Hash] opts the optional parameters
|
632
|
+
# @return [NestedRoleResponse]
|
633
|
+
def remove_role(gem_gem_distribution_href, nested_role, opts = {})
|
634
|
+
data, _status_code, _headers = remove_role_with_http_info(gem_gem_distribution_href, nested_role, opts)
|
635
|
+
data
|
636
|
+
end
|
637
|
+
|
638
|
+
# Remove a role
|
639
|
+
# Remove a role for this object from users/groups.
|
640
|
+
# @param gem_gem_distribution_href [String]
|
641
|
+
# @param nested_role [NestedRole]
|
642
|
+
# @param [Hash] opts the optional parameters
|
643
|
+
# @return [Array<(NestedRoleResponse, Integer, Hash)>] NestedRoleResponse data, response status code and response headers
|
644
|
+
def remove_role_with_http_info(gem_gem_distribution_href, nested_role, opts = {})
|
645
|
+
if @api_client.config.debugging
|
646
|
+
@api_client.config.logger.debug 'Calling API: DistributionsGemApi.remove_role ...'
|
647
|
+
end
|
648
|
+
# verify the required parameter 'gem_gem_distribution_href' is set
|
649
|
+
if @api_client.config.client_side_validation && gem_gem_distribution_href.nil?
|
650
|
+
fail ArgumentError, "Missing the required parameter 'gem_gem_distribution_href' when calling DistributionsGemApi.remove_role"
|
651
|
+
end
|
652
|
+
# verify the required parameter 'nested_role' is set
|
653
|
+
if @api_client.config.client_side_validation && nested_role.nil?
|
654
|
+
fail ArgumentError, "Missing the required parameter 'nested_role' when calling DistributionsGemApi.remove_role"
|
655
|
+
end
|
656
|
+
# resource path
|
657
|
+
local_var_path = '{gem_gem_distribution_href}remove_role/'.sub('{' + 'gem_gem_distribution_href' + '}', CGI.escape(gem_gem_distribution_href.to_s).gsub('%2F', '/'))
|
658
|
+
|
659
|
+
# query parameters
|
660
|
+
query_params = opts[:query_params] || {}
|
661
|
+
|
662
|
+
# header parameters
|
663
|
+
header_params = opts[:header_params] || {}
|
664
|
+
# HTTP header 'Accept' (if needed)
|
665
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
666
|
+
# HTTP header 'Content-Type'
|
667
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
|
668
|
+
|
669
|
+
# form parameters
|
670
|
+
form_params = opts[:form_params] || {}
|
671
|
+
|
672
|
+
# http body (model)
|
673
|
+
post_body = opts[:body] || @api_client.object_to_http_body(nested_role)
|
674
|
+
|
675
|
+
# return_type
|
676
|
+
return_type = opts[:return_type] || 'NestedRoleResponse'
|
677
|
+
|
678
|
+
# auth_names
|
679
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
680
|
+
|
681
|
+
new_options = opts.merge(
|
682
|
+
:header_params => header_params,
|
683
|
+
:query_params => query_params,
|
684
|
+
:form_params => form_params,
|
685
|
+
:body => post_body,
|
686
|
+
:auth_names => auth_names,
|
687
|
+
:return_type => return_type
|
688
|
+
)
|
689
|
+
|
690
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
691
|
+
if @api_client.config.debugging
|
692
|
+
@api_client.config.logger.debug "API called: DistributionsGemApi#remove_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
693
|
+
end
|
694
|
+
return data, status_code, headers
|
695
|
+
end
|
696
|
+
|
697
|
+
# Set a label
|
698
|
+
# Set a single pulp_label on the object to a specific value or null.
|
699
|
+
# @param gem_gem_distribution_href [String]
|
700
|
+
# @param set_label [SetLabel]
|
701
|
+
# @param [Hash] opts the optional parameters
|
702
|
+
# @return [SetLabelResponse]
|
703
|
+
def set_label(gem_gem_distribution_href, set_label, opts = {})
|
704
|
+
data, _status_code, _headers = set_label_with_http_info(gem_gem_distribution_href, set_label, opts)
|
705
|
+
data
|
706
|
+
end
|
707
|
+
|
708
|
+
# Set a label
|
709
|
+
# Set a single pulp_label on the object to a specific value or null.
|
710
|
+
# @param gem_gem_distribution_href [String]
|
711
|
+
# @param set_label [SetLabel]
|
712
|
+
# @param [Hash] opts the optional parameters
|
713
|
+
# @return [Array<(SetLabelResponse, Integer, Hash)>] SetLabelResponse data, response status code and response headers
|
714
|
+
def set_label_with_http_info(gem_gem_distribution_href, set_label, opts = {})
|
715
|
+
if @api_client.config.debugging
|
716
|
+
@api_client.config.logger.debug 'Calling API: DistributionsGemApi.set_label ...'
|
717
|
+
end
|
718
|
+
# verify the required parameter 'gem_gem_distribution_href' is set
|
719
|
+
if @api_client.config.client_side_validation && gem_gem_distribution_href.nil?
|
720
|
+
fail ArgumentError, "Missing the required parameter 'gem_gem_distribution_href' when calling DistributionsGemApi.set_label"
|
721
|
+
end
|
722
|
+
# verify the required parameter 'set_label' is set
|
723
|
+
if @api_client.config.client_side_validation && set_label.nil?
|
724
|
+
fail ArgumentError, "Missing the required parameter 'set_label' when calling DistributionsGemApi.set_label"
|
725
|
+
end
|
726
|
+
# resource path
|
727
|
+
local_var_path = '{gem_gem_distribution_href}set_label/'.sub('{' + 'gem_gem_distribution_href' + '}', CGI.escape(gem_gem_distribution_href.to_s).gsub('%2F', '/'))
|
728
|
+
|
729
|
+
# query parameters
|
730
|
+
query_params = opts[:query_params] || {}
|
731
|
+
|
732
|
+
# header parameters
|
733
|
+
header_params = opts[:header_params] || {}
|
734
|
+
# HTTP header 'Accept' (if needed)
|
735
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
736
|
+
# HTTP header 'Content-Type'
|
737
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
|
738
|
+
|
739
|
+
# form parameters
|
740
|
+
form_params = opts[:form_params] || {}
|
741
|
+
|
742
|
+
# http body (model)
|
743
|
+
post_body = opts[:body] || @api_client.object_to_http_body(set_label)
|
744
|
+
|
745
|
+
# return_type
|
746
|
+
return_type = opts[:return_type] || 'SetLabelResponse'
|
747
|
+
|
748
|
+
# auth_names
|
749
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
750
|
+
|
751
|
+
new_options = opts.merge(
|
752
|
+
:header_params => header_params,
|
753
|
+
:query_params => query_params,
|
754
|
+
:form_params => form_params,
|
755
|
+
:body => post_body,
|
756
|
+
:auth_names => auth_names,
|
757
|
+
:return_type => return_type
|
758
|
+
)
|
759
|
+
|
760
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
761
|
+
if @api_client.config.debugging
|
762
|
+
@api_client.config.logger.debug "API called: DistributionsGemApi#set_label\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
763
|
+
end
|
764
|
+
return data, status_code, headers
|
765
|
+
end
|
766
|
+
|
767
|
+
# Unset a label
|
768
|
+
# Unset a single pulp_label on the object.
|
769
|
+
# @param gem_gem_distribution_href [String]
|
770
|
+
# @param unset_label [UnsetLabel]
|
771
|
+
# @param [Hash] opts the optional parameters
|
772
|
+
# @return [UnsetLabelResponse]
|
773
|
+
def unset_label(gem_gem_distribution_href, unset_label, opts = {})
|
774
|
+
data, _status_code, _headers = unset_label_with_http_info(gem_gem_distribution_href, unset_label, opts)
|
775
|
+
data
|
776
|
+
end
|
777
|
+
|
778
|
+
# Unset a label
|
779
|
+
# Unset a single pulp_label on the object.
|
780
|
+
# @param gem_gem_distribution_href [String]
|
781
|
+
# @param unset_label [UnsetLabel]
|
782
|
+
# @param [Hash] opts the optional parameters
|
783
|
+
# @return [Array<(UnsetLabelResponse, Integer, Hash)>] UnsetLabelResponse data, response status code and response headers
|
784
|
+
def unset_label_with_http_info(gem_gem_distribution_href, unset_label, opts = {})
|
785
|
+
if @api_client.config.debugging
|
786
|
+
@api_client.config.logger.debug 'Calling API: DistributionsGemApi.unset_label ...'
|
787
|
+
end
|
788
|
+
# verify the required parameter 'gem_gem_distribution_href' is set
|
789
|
+
if @api_client.config.client_side_validation && gem_gem_distribution_href.nil?
|
790
|
+
fail ArgumentError, "Missing the required parameter 'gem_gem_distribution_href' when calling DistributionsGemApi.unset_label"
|
791
|
+
end
|
792
|
+
# verify the required parameter 'unset_label' is set
|
793
|
+
if @api_client.config.client_side_validation && unset_label.nil?
|
794
|
+
fail ArgumentError, "Missing the required parameter 'unset_label' when calling DistributionsGemApi.unset_label"
|
795
|
+
end
|
796
|
+
# resource path
|
797
|
+
local_var_path = '{gem_gem_distribution_href}unset_label/'.sub('{' + 'gem_gem_distribution_href' + '}', CGI.escape(gem_gem_distribution_href.to_s).gsub('%2F', '/'))
|
798
|
+
|
799
|
+
# query parameters
|
800
|
+
query_params = opts[:query_params] || {}
|
801
|
+
|
802
|
+
# header parameters
|
803
|
+
header_params = opts[:header_params] || {}
|
804
|
+
# HTTP header 'Accept' (if needed)
|
805
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
806
|
+
# HTTP header 'Content-Type'
|
807
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
|
808
|
+
|
809
|
+
# form parameters
|
810
|
+
form_params = opts[:form_params] || {}
|
811
|
+
|
812
|
+
# http body (model)
|
813
|
+
post_body = opts[:body] || @api_client.object_to_http_body(unset_label)
|
814
|
+
|
815
|
+
# return_type
|
816
|
+
return_type = opts[:return_type] || 'UnsetLabelResponse'
|
817
|
+
|
818
|
+
# auth_names
|
819
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
820
|
+
|
821
|
+
new_options = opts.merge(
|
822
|
+
:header_params => header_params,
|
823
|
+
:query_params => query_params,
|
824
|
+
:form_params => form_params,
|
825
|
+
:body => post_body,
|
826
|
+
:auth_names => auth_names,
|
827
|
+
:return_type => return_type
|
828
|
+
)
|
829
|
+
|
830
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
831
|
+
if @api_client.config.debugging
|
832
|
+
@api_client.config.logger.debug "API called: DistributionsGemApi#unset_label\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
833
|
+
end
|
834
|
+
return data, status_code, headers
|
835
|
+
end
|
836
|
+
|
406
837
|
# Update a gem distribution
|
407
838
|
# Trigger an asynchronous update task
|
408
839
|
# @param gem_gem_distribution_href [String]
|