pulp_rpm_client 3.19.0.dev1662960501 → 3.19.0.dev1663133026

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pulp_rpm_client might be problematic. Click here for more details.

Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +36 -8
  3. data/docs/AcsRpmApi.md +228 -0
  4. data/docs/DistributionsRpmApi.md +228 -0
  5. data/docs/MyPermissionsResponse.md +17 -0
  6. data/docs/NestedRole.md +21 -0
  7. data/docs/NestedRoleResponse.md +21 -0
  8. data/docs/ObjectRolesResponse.md +17 -0
  9. data/docs/PublicationsRpmApi.md +228 -0
  10. data/docs/RemotesRpmApi.md +228 -0
  11. data/docs/RemotesUlnApi.md +228 -0
  12. data/docs/RepositoriesRpmApi.md +228 -0
  13. data/lib/pulp_rpm_client/api/acs_rpm_api.rb +268 -0
  14. data/lib/pulp_rpm_client/api/distributions_rpm_api.rb +268 -0
  15. data/lib/pulp_rpm_client/api/publications_rpm_api.rb +268 -0
  16. data/lib/pulp_rpm_client/api/remotes_rpm_api.rb +268 -0
  17. data/lib/pulp_rpm_client/api/remotes_uln_api.rb +268 -0
  18. data/lib/pulp_rpm_client/api/repositories_rpm_api.rb +268 -0
  19. data/lib/pulp_rpm_client/models/my_permissions_response.rb +213 -0
  20. data/lib/pulp_rpm_client/models/nested_role.rb +234 -0
  21. data/lib/pulp_rpm_client/models/nested_role_response.rb +234 -0
  22. data/lib/pulp_rpm_client/models/object_roles_response.rb +213 -0
  23. data/lib/pulp_rpm_client/version.rb +1 -1
  24. data/lib/pulp_rpm_client.rb +4 -0
  25. data/spec/api/acs_rpm_api_spec.rb +50 -0
  26. data/spec/api/distributions_rpm_api_spec.rb +50 -0
  27. data/spec/api/publications_rpm_api_spec.rb +50 -0
  28. data/spec/api/remotes_rpm_api_spec.rb +50 -0
  29. data/spec/api/remotes_uln_api_spec.rb +50 -0
  30. data/spec/api/repositories_rpm_api_spec.rb +50 -0
  31. data/spec/models/my_permissions_response_spec.rb +41 -0
  32. data/spec/models/nested_role_response_spec.rb +53 -0
  33. data/spec/models/nested_role_spec.rb +53 -0
  34. data/spec/models/object_roles_response_spec.rb +41 -0
  35. metadata +18 -2
@@ -19,6 +19,74 @@ module PulpRpmClient
19
19
  def initialize(api_client = ApiClient.default)
20
20
  @api_client = api_client
21
21
  end
22
+ # Add a role for this object to users/groups.
23
+ # @param rpm_rpm_publication_href [String]
24
+ # @param nested_role [NestedRole]
25
+ # @param [Hash] opts the optional parameters
26
+ # @return [NestedRoleResponse]
27
+ def add_role(rpm_rpm_publication_href, nested_role, opts = {})
28
+ data, _status_code, _headers = add_role_with_http_info(rpm_rpm_publication_href, nested_role, opts)
29
+ data
30
+ end
31
+
32
+ # Add a role for this object to users/groups.
33
+ # @param rpm_rpm_publication_href [String]
34
+ # @param nested_role [NestedRole]
35
+ # @param [Hash] opts the optional parameters
36
+ # @return [Array<(NestedRoleResponse, Integer, Hash)>] NestedRoleResponse data, response status code and response headers
37
+ def add_role_with_http_info(rpm_rpm_publication_href, nested_role, opts = {})
38
+ if @api_client.config.debugging
39
+ @api_client.config.logger.debug 'Calling API: PublicationsRpmApi.add_role ...'
40
+ end
41
+ # verify the required parameter 'rpm_rpm_publication_href' is set
42
+ if @api_client.config.client_side_validation && rpm_rpm_publication_href.nil?
43
+ fail ArgumentError, "Missing the required parameter 'rpm_rpm_publication_href' when calling PublicationsRpmApi.add_role"
44
+ end
45
+ # verify the required parameter 'nested_role' is set
46
+ if @api_client.config.client_side_validation && nested_role.nil?
47
+ fail ArgumentError, "Missing the required parameter 'nested_role' when calling PublicationsRpmApi.add_role"
48
+ end
49
+ # resource path
50
+ local_var_path = '{rpm_rpm_publication_href}add_role/'.sub('{' + 'rpm_rpm_publication_href' + '}', CGI.escape(rpm_rpm_publication_href.to_s).gsub('%2F', '/'))
51
+
52
+ # query parameters
53
+ query_params = opts[:query_params] || {}
54
+
55
+ # header parameters
56
+ header_params = opts[:header_params] || {}
57
+ # HTTP header 'Accept' (if needed)
58
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
59
+ # HTTP header 'Content-Type'
60
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
61
+
62
+ # form parameters
63
+ form_params = opts[:form_params] || {}
64
+
65
+ # http body (model)
66
+ post_body = opts[:body] || @api_client.object_to_http_body(nested_role)
67
+
68
+ # return_type
69
+ return_type = opts[:return_type] || 'NestedRoleResponse'
70
+
71
+ # auth_names
72
+ auth_names = opts[:auth_names] || ['basicAuth']
73
+
74
+ new_options = opts.merge(
75
+ :header_params => header_params,
76
+ :query_params => query_params,
77
+ :form_params => form_params,
78
+ :body => post_body,
79
+ :auth_names => auth_names,
80
+ :return_type => return_type
81
+ )
82
+
83
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
84
+ if @api_client.config.debugging
85
+ @api_client.config.logger.debug "API called: PublicationsRpmApi#add_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
86
+ end
87
+ return data, status_code, headers
88
+ end
89
+
22
90
  # Create a rpm publication
23
91
  # Trigger an asynchronous task to create a new RPM content publication.
24
92
  # @param rpm_rpm_publication [RpmRpmPublication]
@@ -248,6 +316,138 @@ module PulpRpmClient
248
316
  return data, status_code, headers
249
317
  end
250
318
 
319
+ # List roles assigned to this object.
320
+ # @param rpm_rpm_publication_href [String]
321
+ # @param [Hash] opts the optional parameters
322
+ # @option opts [String] :fields A list of fields to include in the response.
323
+ # @option opts [String] :exclude_fields A list of fields to exclude from the response.
324
+ # @return [ObjectRolesResponse]
325
+ def list_roles(rpm_rpm_publication_href, opts = {})
326
+ data, _status_code, _headers = list_roles_with_http_info(rpm_rpm_publication_href, opts)
327
+ data
328
+ end
329
+
330
+ # List roles assigned to this object.
331
+ # @param rpm_rpm_publication_href [String]
332
+ # @param [Hash] opts the optional parameters
333
+ # @option opts [String] :fields A list of fields to include in the response.
334
+ # @option opts [String] :exclude_fields A list of fields to exclude from the response.
335
+ # @return [Array<(ObjectRolesResponse, Integer, Hash)>] ObjectRolesResponse data, response status code and response headers
336
+ def list_roles_with_http_info(rpm_rpm_publication_href, opts = {})
337
+ if @api_client.config.debugging
338
+ @api_client.config.logger.debug 'Calling API: PublicationsRpmApi.list_roles ...'
339
+ end
340
+ # verify the required parameter 'rpm_rpm_publication_href' is set
341
+ if @api_client.config.client_side_validation && rpm_rpm_publication_href.nil?
342
+ fail ArgumentError, "Missing the required parameter 'rpm_rpm_publication_href' when calling PublicationsRpmApi.list_roles"
343
+ end
344
+ # resource path
345
+ local_var_path = '{rpm_rpm_publication_href}list_roles/'.sub('{' + 'rpm_rpm_publication_href' + '}', CGI.escape(rpm_rpm_publication_href.to_s).gsub('%2F', '/'))
346
+
347
+ # query parameters
348
+ query_params = opts[:query_params] || {}
349
+ query_params[:'fields'] = opts[:'fields'] if !opts[:'fields'].nil?
350
+ query_params[:'exclude_fields'] = opts[:'exclude_fields'] if !opts[:'exclude_fields'].nil?
351
+
352
+ # header parameters
353
+ header_params = opts[:header_params] || {}
354
+ # HTTP header 'Accept' (if needed)
355
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
356
+
357
+ # form parameters
358
+ form_params = opts[:form_params] || {}
359
+
360
+ # http body (model)
361
+ post_body = opts[:body]
362
+
363
+ # return_type
364
+ return_type = opts[:return_type] || 'ObjectRolesResponse'
365
+
366
+ # auth_names
367
+ auth_names = opts[:auth_names] || ['basicAuth']
368
+
369
+ new_options = opts.merge(
370
+ :header_params => header_params,
371
+ :query_params => query_params,
372
+ :form_params => form_params,
373
+ :body => post_body,
374
+ :auth_names => auth_names,
375
+ :return_type => return_type
376
+ )
377
+
378
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
379
+ if @api_client.config.debugging
380
+ @api_client.config.logger.debug "API called: PublicationsRpmApi#list_roles\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
381
+ end
382
+ return data, status_code, headers
383
+ end
384
+
385
+ # List permissions available to the current user on this object.
386
+ # @param rpm_rpm_publication_href [String]
387
+ # @param [Hash] opts the optional parameters
388
+ # @option opts [String] :fields A list of fields to include in the response.
389
+ # @option opts [String] :exclude_fields A list of fields to exclude from the response.
390
+ # @return [MyPermissionsResponse]
391
+ def my_permissions(rpm_rpm_publication_href, opts = {})
392
+ data, _status_code, _headers = my_permissions_with_http_info(rpm_rpm_publication_href, opts)
393
+ data
394
+ end
395
+
396
+ # List permissions available to the current user on this object.
397
+ # @param rpm_rpm_publication_href [String]
398
+ # @param [Hash] opts the optional parameters
399
+ # @option opts [String] :fields A list of fields to include in the response.
400
+ # @option opts [String] :exclude_fields A list of fields to exclude from the response.
401
+ # @return [Array<(MyPermissionsResponse, Integer, Hash)>] MyPermissionsResponse data, response status code and response headers
402
+ def my_permissions_with_http_info(rpm_rpm_publication_href, opts = {})
403
+ if @api_client.config.debugging
404
+ @api_client.config.logger.debug 'Calling API: PublicationsRpmApi.my_permissions ...'
405
+ end
406
+ # verify the required parameter 'rpm_rpm_publication_href' is set
407
+ if @api_client.config.client_side_validation && rpm_rpm_publication_href.nil?
408
+ fail ArgumentError, "Missing the required parameter 'rpm_rpm_publication_href' when calling PublicationsRpmApi.my_permissions"
409
+ end
410
+ # resource path
411
+ local_var_path = '{rpm_rpm_publication_href}my_permissions/'.sub('{' + 'rpm_rpm_publication_href' + '}', CGI.escape(rpm_rpm_publication_href.to_s).gsub('%2F', '/'))
412
+
413
+ # query parameters
414
+ query_params = opts[:query_params] || {}
415
+ query_params[:'fields'] = opts[:'fields'] if !opts[:'fields'].nil?
416
+ query_params[:'exclude_fields'] = opts[:'exclude_fields'] if !opts[:'exclude_fields'].nil?
417
+
418
+ # header parameters
419
+ header_params = opts[:header_params] || {}
420
+ # HTTP header 'Accept' (if needed)
421
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
422
+
423
+ # form parameters
424
+ form_params = opts[:form_params] || {}
425
+
426
+ # http body (model)
427
+ post_body = opts[:body]
428
+
429
+ # return_type
430
+ return_type = opts[:return_type] || 'MyPermissionsResponse'
431
+
432
+ # auth_names
433
+ auth_names = opts[:auth_names] || ['basicAuth']
434
+
435
+ new_options = opts.merge(
436
+ :header_params => header_params,
437
+ :query_params => query_params,
438
+ :form_params => form_params,
439
+ :body => post_body,
440
+ :auth_names => auth_names,
441
+ :return_type => return_type
442
+ )
443
+
444
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
445
+ if @api_client.config.debugging
446
+ @api_client.config.logger.debug "API called: PublicationsRpmApi#my_permissions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
447
+ end
448
+ return data, status_code, headers
449
+ end
450
+
251
451
  # Inspect a rpm publication
252
452
  # ViewSet for Rpm Publications.
253
453
  # @param rpm_rpm_publication_href [String]
@@ -315,5 +515,73 @@ module PulpRpmClient
315
515
  end
316
516
  return data, status_code, headers
317
517
  end
518
+
519
+ # Remove a role for this object from users/groups.
520
+ # @param rpm_rpm_publication_href [String]
521
+ # @param nested_role [NestedRole]
522
+ # @param [Hash] opts the optional parameters
523
+ # @return [NestedRoleResponse]
524
+ def remove_role(rpm_rpm_publication_href, nested_role, opts = {})
525
+ data, _status_code, _headers = remove_role_with_http_info(rpm_rpm_publication_href, nested_role, opts)
526
+ data
527
+ end
528
+
529
+ # Remove a role for this object from users/groups.
530
+ # @param rpm_rpm_publication_href [String]
531
+ # @param nested_role [NestedRole]
532
+ # @param [Hash] opts the optional parameters
533
+ # @return [Array<(NestedRoleResponse, Integer, Hash)>] NestedRoleResponse data, response status code and response headers
534
+ def remove_role_with_http_info(rpm_rpm_publication_href, nested_role, opts = {})
535
+ if @api_client.config.debugging
536
+ @api_client.config.logger.debug 'Calling API: PublicationsRpmApi.remove_role ...'
537
+ end
538
+ # verify the required parameter 'rpm_rpm_publication_href' is set
539
+ if @api_client.config.client_side_validation && rpm_rpm_publication_href.nil?
540
+ fail ArgumentError, "Missing the required parameter 'rpm_rpm_publication_href' when calling PublicationsRpmApi.remove_role"
541
+ end
542
+ # verify the required parameter 'nested_role' is set
543
+ if @api_client.config.client_side_validation && nested_role.nil?
544
+ fail ArgumentError, "Missing the required parameter 'nested_role' when calling PublicationsRpmApi.remove_role"
545
+ end
546
+ # resource path
547
+ local_var_path = '{rpm_rpm_publication_href}remove_role/'.sub('{' + 'rpm_rpm_publication_href' + '}', CGI.escape(rpm_rpm_publication_href.to_s).gsub('%2F', '/'))
548
+
549
+ # query parameters
550
+ query_params = opts[:query_params] || {}
551
+
552
+ # header parameters
553
+ header_params = opts[:header_params] || {}
554
+ # HTTP header 'Accept' (if needed)
555
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
556
+ # HTTP header 'Content-Type'
557
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
558
+
559
+ # form parameters
560
+ form_params = opts[:form_params] || {}
561
+
562
+ # http body (model)
563
+ post_body = opts[:body] || @api_client.object_to_http_body(nested_role)
564
+
565
+ # return_type
566
+ return_type = opts[:return_type] || 'NestedRoleResponse'
567
+
568
+ # auth_names
569
+ auth_names = opts[:auth_names] || ['basicAuth']
570
+
571
+ new_options = opts.merge(
572
+ :header_params => header_params,
573
+ :query_params => query_params,
574
+ :form_params => form_params,
575
+ :body => post_body,
576
+ :auth_names => auth_names,
577
+ :return_type => return_type
578
+ )
579
+
580
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
581
+ if @api_client.config.debugging
582
+ @api_client.config.logger.debug "API called: PublicationsRpmApi#remove_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
583
+ end
584
+ return data, status_code, headers
585
+ end
318
586
  end
319
587
  end
@@ -19,6 +19,74 @@ module PulpRpmClient
19
19
  def initialize(api_client = ApiClient.default)
20
20
  @api_client = api_client
21
21
  end
22
+ # Add a role for this object to users/groups.
23
+ # @param rpm_rpm_remote_href [String]
24
+ # @param nested_role [NestedRole]
25
+ # @param [Hash] opts the optional parameters
26
+ # @return [NestedRoleResponse]
27
+ def add_role(rpm_rpm_remote_href, nested_role, opts = {})
28
+ data, _status_code, _headers = add_role_with_http_info(rpm_rpm_remote_href, nested_role, opts)
29
+ data
30
+ end
31
+
32
+ # Add a role for this object to users/groups.
33
+ # @param rpm_rpm_remote_href [String]
34
+ # @param nested_role [NestedRole]
35
+ # @param [Hash] opts the optional parameters
36
+ # @return [Array<(NestedRoleResponse, Integer, Hash)>] NestedRoleResponse data, response status code and response headers
37
+ def add_role_with_http_info(rpm_rpm_remote_href, nested_role, opts = {})
38
+ if @api_client.config.debugging
39
+ @api_client.config.logger.debug 'Calling API: RemotesRpmApi.add_role ...'
40
+ end
41
+ # verify the required parameter 'rpm_rpm_remote_href' is set
42
+ if @api_client.config.client_side_validation && rpm_rpm_remote_href.nil?
43
+ fail ArgumentError, "Missing the required parameter 'rpm_rpm_remote_href' when calling RemotesRpmApi.add_role"
44
+ end
45
+ # verify the required parameter 'nested_role' is set
46
+ if @api_client.config.client_side_validation && nested_role.nil?
47
+ fail ArgumentError, "Missing the required parameter 'nested_role' when calling RemotesRpmApi.add_role"
48
+ end
49
+ # resource path
50
+ local_var_path = '{rpm_rpm_remote_href}add_role/'.sub('{' + 'rpm_rpm_remote_href' + '}', CGI.escape(rpm_rpm_remote_href.to_s).gsub('%2F', '/'))
51
+
52
+ # query parameters
53
+ query_params = opts[:query_params] || {}
54
+
55
+ # header parameters
56
+ header_params = opts[:header_params] || {}
57
+ # HTTP header 'Accept' (if needed)
58
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
59
+ # HTTP header 'Content-Type'
60
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
61
+
62
+ # form parameters
63
+ form_params = opts[:form_params] || {}
64
+
65
+ # http body (model)
66
+ post_body = opts[:body] || @api_client.object_to_http_body(nested_role)
67
+
68
+ # return_type
69
+ return_type = opts[:return_type] || 'NestedRoleResponse'
70
+
71
+ # auth_names
72
+ auth_names = opts[:auth_names] || ['basicAuth']
73
+
74
+ new_options = opts.merge(
75
+ :header_params => header_params,
76
+ :query_params => query_params,
77
+ :form_params => form_params,
78
+ :body => post_body,
79
+ :auth_names => auth_names,
80
+ :return_type => return_type
81
+ )
82
+
83
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
84
+ if @api_client.config.debugging
85
+ @api_client.config.logger.debug "API called: RemotesRpmApi#add_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
86
+ end
87
+ return data, status_code, headers
88
+ end
89
+
22
90
  # Create a rpm remote
23
91
  # A ViewSet for RpmRemote.
24
92
  # @param rpm_rpm_remote [RpmRpmRemote]
@@ -256,6 +324,138 @@ module PulpRpmClient
256
324
  return data, status_code, headers
257
325
  end
258
326
 
327
+ # List roles assigned to this object.
328
+ # @param rpm_rpm_remote_href [String]
329
+ # @param [Hash] opts the optional parameters
330
+ # @option opts [String] :fields A list of fields to include in the response.
331
+ # @option opts [String] :exclude_fields A list of fields to exclude from the response.
332
+ # @return [ObjectRolesResponse]
333
+ def list_roles(rpm_rpm_remote_href, opts = {})
334
+ data, _status_code, _headers = list_roles_with_http_info(rpm_rpm_remote_href, opts)
335
+ data
336
+ end
337
+
338
+ # List roles assigned to this object.
339
+ # @param rpm_rpm_remote_href [String]
340
+ # @param [Hash] opts the optional parameters
341
+ # @option opts [String] :fields A list of fields to include in the response.
342
+ # @option opts [String] :exclude_fields A list of fields to exclude from the response.
343
+ # @return [Array<(ObjectRolesResponse, Integer, Hash)>] ObjectRolesResponse data, response status code and response headers
344
+ def list_roles_with_http_info(rpm_rpm_remote_href, opts = {})
345
+ if @api_client.config.debugging
346
+ @api_client.config.logger.debug 'Calling API: RemotesRpmApi.list_roles ...'
347
+ end
348
+ # verify the required parameter 'rpm_rpm_remote_href' is set
349
+ if @api_client.config.client_side_validation && rpm_rpm_remote_href.nil?
350
+ fail ArgumentError, "Missing the required parameter 'rpm_rpm_remote_href' when calling RemotesRpmApi.list_roles"
351
+ end
352
+ # resource path
353
+ local_var_path = '{rpm_rpm_remote_href}list_roles/'.sub('{' + 'rpm_rpm_remote_href' + '}', CGI.escape(rpm_rpm_remote_href.to_s).gsub('%2F', '/'))
354
+
355
+ # query parameters
356
+ query_params = opts[:query_params] || {}
357
+ query_params[:'fields'] = opts[:'fields'] if !opts[:'fields'].nil?
358
+ query_params[:'exclude_fields'] = opts[:'exclude_fields'] if !opts[:'exclude_fields'].nil?
359
+
360
+ # header parameters
361
+ header_params = opts[:header_params] || {}
362
+ # HTTP header 'Accept' (if needed)
363
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
364
+
365
+ # form parameters
366
+ form_params = opts[:form_params] || {}
367
+
368
+ # http body (model)
369
+ post_body = opts[:body]
370
+
371
+ # return_type
372
+ return_type = opts[:return_type] || 'ObjectRolesResponse'
373
+
374
+ # auth_names
375
+ auth_names = opts[:auth_names] || ['basicAuth']
376
+
377
+ new_options = opts.merge(
378
+ :header_params => header_params,
379
+ :query_params => query_params,
380
+ :form_params => form_params,
381
+ :body => post_body,
382
+ :auth_names => auth_names,
383
+ :return_type => return_type
384
+ )
385
+
386
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
387
+ if @api_client.config.debugging
388
+ @api_client.config.logger.debug "API called: RemotesRpmApi#list_roles\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
389
+ end
390
+ return data, status_code, headers
391
+ end
392
+
393
+ # List permissions available to the current user on this object.
394
+ # @param rpm_rpm_remote_href [String]
395
+ # @param [Hash] opts the optional parameters
396
+ # @option opts [String] :fields A list of fields to include in the response.
397
+ # @option opts [String] :exclude_fields A list of fields to exclude from the response.
398
+ # @return [MyPermissionsResponse]
399
+ def my_permissions(rpm_rpm_remote_href, opts = {})
400
+ data, _status_code, _headers = my_permissions_with_http_info(rpm_rpm_remote_href, opts)
401
+ data
402
+ end
403
+
404
+ # List permissions available to the current user on this object.
405
+ # @param rpm_rpm_remote_href [String]
406
+ # @param [Hash] opts the optional parameters
407
+ # @option opts [String] :fields A list of fields to include in the response.
408
+ # @option opts [String] :exclude_fields A list of fields to exclude from the response.
409
+ # @return [Array<(MyPermissionsResponse, Integer, Hash)>] MyPermissionsResponse data, response status code and response headers
410
+ def my_permissions_with_http_info(rpm_rpm_remote_href, opts = {})
411
+ if @api_client.config.debugging
412
+ @api_client.config.logger.debug 'Calling API: RemotesRpmApi.my_permissions ...'
413
+ end
414
+ # verify the required parameter 'rpm_rpm_remote_href' is set
415
+ if @api_client.config.client_side_validation && rpm_rpm_remote_href.nil?
416
+ fail ArgumentError, "Missing the required parameter 'rpm_rpm_remote_href' when calling RemotesRpmApi.my_permissions"
417
+ end
418
+ # resource path
419
+ local_var_path = '{rpm_rpm_remote_href}my_permissions/'.sub('{' + 'rpm_rpm_remote_href' + '}', CGI.escape(rpm_rpm_remote_href.to_s).gsub('%2F', '/'))
420
+
421
+ # query parameters
422
+ query_params = opts[:query_params] || {}
423
+ query_params[:'fields'] = opts[:'fields'] if !opts[:'fields'].nil?
424
+ query_params[:'exclude_fields'] = opts[:'exclude_fields'] if !opts[:'exclude_fields'].nil?
425
+
426
+ # header parameters
427
+ header_params = opts[:header_params] || {}
428
+ # HTTP header 'Accept' (if needed)
429
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
430
+
431
+ # form parameters
432
+ form_params = opts[:form_params] || {}
433
+
434
+ # http body (model)
435
+ post_body = opts[:body]
436
+
437
+ # return_type
438
+ return_type = opts[:return_type] || 'MyPermissionsResponse'
439
+
440
+ # auth_names
441
+ auth_names = opts[:auth_names] || ['basicAuth']
442
+
443
+ new_options = opts.merge(
444
+ :header_params => header_params,
445
+ :query_params => query_params,
446
+ :form_params => form_params,
447
+ :body => post_body,
448
+ :auth_names => auth_names,
449
+ :return_type => return_type
450
+ )
451
+
452
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
453
+ if @api_client.config.debugging
454
+ @api_client.config.logger.debug "API called: RemotesRpmApi#my_permissions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
455
+ end
456
+ return data, status_code, headers
457
+ end
458
+
259
459
  # Update a rpm remote
260
460
  # Trigger an asynchronous partial update task
261
461
  # @param rpm_rpm_remote_href [String]
@@ -394,6 +594,74 @@ module PulpRpmClient
394
594
  return data, status_code, headers
395
595
  end
396
596
 
597
+ # Remove a role for this object from users/groups.
598
+ # @param rpm_rpm_remote_href [String]
599
+ # @param nested_role [NestedRole]
600
+ # @param [Hash] opts the optional parameters
601
+ # @return [NestedRoleResponse]
602
+ def remove_role(rpm_rpm_remote_href, nested_role, opts = {})
603
+ data, _status_code, _headers = remove_role_with_http_info(rpm_rpm_remote_href, nested_role, opts)
604
+ data
605
+ end
606
+
607
+ # Remove a role for this object from users/groups.
608
+ # @param rpm_rpm_remote_href [String]
609
+ # @param nested_role [NestedRole]
610
+ # @param [Hash] opts the optional parameters
611
+ # @return [Array<(NestedRoleResponse, Integer, Hash)>] NestedRoleResponse data, response status code and response headers
612
+ def remove_role_with_http_info(rpm_rpm_remote_href, nested_role, opts = {})
613
+ if @api_client.config.debugging
614
+ @api_client.config.logger.debug 'Calling API: RemotesRpmApi.remove_role ...'
615
+ end
616
+ # verify the required parameter 'rpm_rpm_remote_href' is set
617
+ if @api_client.config.client_side_validation && rpm_rpm_remote_href.nil?
618
+ fail ArgumentError, "Missing the required parameter 'rpm_rpm_remote_href' when calling RemotesRpmApi.remove_role"
619
+ end
620
+ # verify the required parameter 'nested_role' is set
621
+ if @api_client.config.client_side_validation && nested_role.nil?
622
+ fail ArgumentError, "Missing the required parameter 'nested_role' when calling RemotesRpmApi.remove_role"
623
+ end
624
+ # resource path
625
+ local_var_path = '{rpm_rpm_remote_href}remove_role/'.sub('{' + 'rpm_rpm_remote_href' + '}', CGI.escape(rpm_rpm_remote_href.to_s).gsub('%2F', '/'))
626
+
627
+ # query parameters
628
+ query_params = opts[:query_params] || {}
629
+
630
+ # header parameters
631
+ header_params = opts[:header_params] || {}
632
+ # HTTP header 'Accept' (if needed)
633
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
634
+ # HTTP header 'Content-Type'
635
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
636
+
637
+ # form parameters
638
+ form_params = opts[:form_params] || {}
639
+
640
+ # http body (model)
641
+ post_body = opts[:body] || @api_client.object_to_http_body(nested_role)
642
+
643
+ # return_type
644
+ return_type = opts[:return_type] || 'NestedRoleResponse'
645
+
646
+ # auth_names
647
+ auth_names = opts[:auth_names] || ['basicAuth']
648
+
649
+ new_options = opts.merge(
650
+ :header_params => header_params,
651
+ :query_params => query_params,
652
+ :form_params => form_params,
653
+ :body => post_body,
654
+ :auth_names => auth_names,
655
+ :return_type => return_type
656
+ )
657
+
658
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
659
+ if @api_client.config.debugging
660
+ @api_client.config.logger.debug "API called: RemotesRpmApi#remove_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
661
+ end
662
+ return data, status_code, headers
663
+ end
664
+
397
665
  # Update a rpm remote
398
666
  # Trigger an asynchronous update task
399
667
  # @param rpm_rpm_remote_href [String]