pulp_python_client 3.11.0 → 3.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +30 -10
- data/docs/ContentPackagesApi.md +14 -12
- data/docs/DistributionsPypiApi.md +232 -0
- 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/PackageMetadataResponse.md +3 -3
- data/docs/PaginatedRepositoryVersionResponseList.md +2 -2
- data/docs/PaginatedpythonPythonDistributionResponseList.md +2 -2
- data/docs/PaginatedpythonPythonPackageContentResponseList.md +2 -2
- data/docs/PaginatedpythonPythonPublicationResponseList.md +2 -2
- data/docs/PaginatedpythonPythonRemoteResponseList.md +2 -2
- data/docs/PaginatedpythonPythonRepositoryResponseList.md +2 -2
- data/docs/PublicationsPypiApi.md +232 -0
- data/docs/PypiApi.md +7 -1
- data/docs/PypiMetadataApi.md +7 -1
- data/docs/PythonPythonDistributionResponse.md +2 -0
- data/docs/PythonPythonPackageContent.md +6 -6
- data/docs/PythonPythonPackageContentResponse.md +8 -6
- data/docs/PythonPythonPublicationResponse.md +2 -0
- data/docs/PythonPythonRemoteResponse.md +2 -2
- data/docs/PythonPythonRemoteResponseHiddenFields.md +2 -2
- data/docs/PythonPythonRepositoryResponse.md +2 -0
- data/docs/RemotesPythonApi.md +232 -0
- data/docs/RepositoriesPythonApi.md +232 -0
- data/docs/RepositoryVersionResponse.md +2 -0
- data/lib/pulp_python_client/api/content_packages_api.rb +15 -12
- data/lib/pulp_python_client/api/distributions_pypi_api.rb +276 -0
- data/lib/pulp_python_client/api/publications_pypi_api.rb +276 -0
- data/lib/pulp_python_client/api/pypi_api.rb +1 -1
- data/lib/pulp_python_client/api/pypi_metadata_api.rb +1 -1
- data/lib/pulp_python_client/api/remotes_python_api.rb +276 -0
- data/lib/pulp_python_client/api/repositories_python_api.rb +276 -0
- data/lib/pulp_python_client/models/my_permissions_response.rb +213 -0
- data/lib/pulp_python_client/models/nested_role.rb +253 -0
- data/lib/pulp_python_client/models/nested_role_response.rb +234 -0
- data/lib/pulp_python_client/models/object_roles_response.rb +213 -0
- data/lib/pulp_python_client/models/package_metadata_response.rb +3 -3
- data/lib/pulp_python_client/models/package_upload_task_response.rb +2 -10
- data/lib/pulp_python_client/models/paginated_repository_version_response_list.rb +10 -0
- data/lib/pulp_python_client/models/paginatedpython_python_distribution_response_list.rb +10 -0
- data/lib/pulp_python_client/models/paginatedpython_python_package_content_response_list.rb +10 -0
- data/lib/pulp_python_client/models/paginatedpython_python_publication_response_list.rb +10 -0
- data/lib/pulp_python_client/models/paginatedpython_python_remote_response_list.rb +10 -0
- data/lib/pulp_python_client/models/paginatedpython_python_repository_response_list.rb +10 -0
- data/lib/pulp_python_client/models/python_python_distribution_response.rb +11 -1
- data/lib/pulp_python_client/models/python_python_package_content.rb +6 -6
- data/lib/pulp_python_client/models/python_python_package_content_response.rb +17 -7
- data/lib/pulp_python_client/models/python_python_publication_response.rb +11 -1
- data/lib/pulp_python_client/models/python_python_remote_response.rb +11 -11
- data/lib/pulp_python_client/models/python_python_remote_response_hidden_fields.rb +10 -0
- data/lib/pulp_python_client/models/python_python_repository_response.rb +11 -1
- data/lib/pulp_python_client/models/repository_version_response.rb +11 -1
- data/lib/pulp_python_client/version.rb +1 -1
- data/lib/pulp_python_client.rb +4 -0
- data/spec/api/content_packages_api_spec.rb +7 -6
- data/spec/api/distributions_pypi_api_spec.rb +54 -0
- data/spec/api/publications_pypi_api_spec.rb +54 -0
- data/spec/api/remotes_python_api_spec.rb +54 -0
- data/spec/api/repositories_python_api_spec.rb +54 -0
- 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/python_python_distribution_response_spec.rb +6 -0
- data/spec/models/python_python_package_content_response_spec.rb +6 -0
- data/spec/models/python_python_publication_response_spec.rb +6 -0
- data/spec/models/python_python_remote_response_spec.rb +6 -6
- data/spec/models/python_python_repository_response_spec.rb +6 -0
- data/spec/models/repository_version_response_spec.rb +6 -0
- metadata +52 -36
@@ -19,6 +19,76 @@ module PulpPythonClient
|
|
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 python_python_distribution_href [String]
|
25
|
+
# @param nested_role [NestedRole]
|
26
|
+
# @param [Hash] opts the optional parameters
|
27
|
+
# @return [NestedRoleResponse]
|
28
|
+
def add_role(python_python_distribution_href, nested_role, opts = {})
|
29
|
+
data, _status_code, _headers = add_role_with_http_info(python_python_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 python_python_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(python_python_distribution_href, nested_role, opts = {})
|
40
|
+
if @api_client.config.debugging
|
41
|
+
@api_client.config.logger.debug 'Calling API: DistributionsPypiApi.add_role ...'
|
42
|
+
end
|
43
|
+
# verify the required parameter 'python_python_distribution_href' is set
|
44
|
+
if @api_client.config.client_side_validation && python_python_distribution_href.nil?
|
45
|
+
fail ArgumentError, "Missing the required parameter 'python_python_distribution_href' when calling DistributionsPypiApi.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 DistributionsPypiApi.add_role"
|
50
|
+
end
|
51
|
+
# resource path
|
52
|
+
local_var_path = '{python_python_distribution_href}add_role/'.sub('{' + 'python_python_distribution_href' + '}', CGI.escape(python_python_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: DistributionsPypiApi#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 python distribution
|
23
93
|
# Trigger an asynchronous create task
|
24
94
|
# @param python_python_distribution [PythonPythonDistribution]
|
@@ -280,6 +350,142 @@ module PulpPythonClient
|
|
280
350
|
return data, status_code, headers
|
281
351
|
end
|
282
352
|
|
353
|
+
# List roles
|
354
|
+
# List roles assigned to this object.
|
355
|
+
# @param python_python_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(python_python_distribution_href, opts = {})
|
361
|
+
data, _status_code, _headers = list_roles_with_http_info(python_python_distribution_href, opts)
|
362
|
+
data
|
363
|
+
end
|
364
|
+
|
365
|
+
# List roles
|
366
|
+
# List roles assigned to this object.
|
367
|
+
# @param python_python_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(python_python_distribution_href, opts = {})
|
373
|
+
if @api_client.config.debugging
|
374
|
+
@api_client.config.logger.debug 'Calling API: DistributionsPypiApi.list_roles ...'
|
375
|
+
end
|
376
|
+
# verify the required parameter 'python_python_distribution_href' is set
|
377
|
+
if @api_client.config.client_side_validation && python_python_distribution_href.nil?
|
378
|
+
fail ArgumentError, "Missing the required parameter 'python_python_distribution_href' when calling DistributionsPypiApi.list_roles"
|
379
|
+
end
|
380
|
+
# resource path
|
381
|
+
local_var_path = '{python_python_distribution_href}list_roles/'.sub('{' + 'python_python_distribution_href' + '}', CGI.escape(python_python_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: DistributionsPypiApi#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 python_python_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(python_python_distribution_href, opts = {})
|
429
|
+
data, _status_code, _headers = my_permissions_with_http_info(python_python_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 python_python_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(python_python_distribution_href, opts = {})
|
441
|
+
if @api_client.config.debugging
|
442
|
+
@api_client.config.logger.debug 'Calling API: DistributionsPypiApi.my_permissions ...'
|
443
|
+
end
|
444
|
+
# verify the required parameter 'python_python_distribution_href' is set
|
445
|
+
if @api_client.config.client_side_validation && python_python_distribution_href.nil?
|
446
|
+
fail ArgumentError, "Missing the required parameter 'python_python_distribution_href' when calling DistributionsPypiApi.my_permissions"
|
447
|
+
end
|
448
|
+
# resource path
|
449
|
+
local_var_path = '{python_python_distribution_href}my_permissions/'.sub('{' + 'python_python_distribution_href' + '}', CGI.escape(python_python_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: DistributionsPypiApi#my_permissions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
485
|
+
end
|
486
|
+
return data, status_code, headers
|
487
|
+
end
|
488
|
+
|
283
489
|
# Update a python distribution
|
284
490
|
# Trigger an asynchronous partial update task
|
285
491
|
# @param python_python_distribution_href [String]
|
@@ -418,6 +624,76 @@ module PulpPythonClient
|
|
418
624
|
return data, status_code, headers
|
419
625
|
end
|
420
626
|
|
627
|
+
# Remove a role
|
628
|
+
# Remove a role for this object from users/groups.
|
629
|
+
# @param python_python_distribution_href [String]
|
630
|
+
# @param nested_role [NestedRole]
|
631
|
+
# @param [Hash] opts the optional parameters
|
632
|
+
# @return [NestedRoleResponse]
|
633
|
+
def remove_role(python_python_distribution_href, nested_role, opts = {})
|
634
|
+
data, _status_code, _headers = remove_role_with_http_info(python_python_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 python_python_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(python_python_distribution_href, nested_role, opts = {})
|
645
|
+
if @api_client.config.debugging
|
646
|
+
@api_client.config.logger.debug 'Calling API: DistributionsPypiApi.remove_role ...'
|
647
|
+
end
|
648
|
+
# verify the required parameter 'python_python_distribution_href' is set
|
649
|
+
if @api_client.config.client_side_validation && python_python_distribution_href.nil?
|
650
|
+
fail ArgumentError, "Missing the required parameter 'python_python_distribution_href' when calling DistributionsPypiApi.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 DistributionsPypiApi.remove_role"
|
655
|
+
end
|
656
|
+
# resource path
|
657
|
+
local_var_path = '{python_python_distribution_href}remove_role/'.sub('{' + 'python_python_distribution_href' + '}', CGI.escape(python_python_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: DistributionsPypiApi#remove_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
693
|
+
end
|
694
|
+
return data, status_code, headers
|
695
|
+
end
|
696
|
+
|
421
697
|
# Set a label
|
422
698
|
# Set a single pulp_label on the object to a specific value or null.
|
423
699
|
# @param python_python_distribution_href [String]
|
@@ -19,6 +19,76 @@ module PulpPythonClient
|
|
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 python_python_publication_href [String]
|
25
|
+
# @param nested_role [NestedRole]
|
26
|
+
# @param [Hash] opts the optional parameters
|
27
|
+
# @return [NestedRoleResponse]
|
28
|
+
def add_role(python_python_publication_href, nested_role, opts = {})
|
29
|
+
data, _status_code, _headers = add_role_with_http_info(python_python_publication_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 python_python_publication_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(python_python_publication_href, nested_role, opts = {})
|
40
|
+
if @api_client.config.debugging
|
41
|
+
@api_client.config.logger.debug 'Calling API: PublicationsPypiApi.add_role ...'
|
42
|
+
end
|
43
|
+
# verify the required parameter 'python_python_publication_href' is set
|
44
|
+
if @api_client.config.client_side_validation && python_python_publication_href.nil?
|
45
|
+
fail ArgumentError, "Missing the required parameter 'python_python_publication_href' when calling PublicationsPypiApi.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 PublicationsPypiApi.add_role"
|
50
|
+
end
|
51
|
+
# resource path
|
52
|
+
local_var_path = '{python_python_publication_href}add_role/'.sub('{' + 'python_python_publication_href' + '}', CGI.escape(python_python_publication_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: PublicationsPypiApi#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 python publication
|
23
93
|
# Dispatches a publish task, which generates metadata that will be used by pip.
|
24
94
|
# @param python_python_publication [PythonPythonPublication]
|
@@ -257,6 +327,142 @@ module PulpPythonClient
|
|
257
327
|
return data, status_code, headers
|
258
328
|
end
|
259
329
|
|
330
|
+
# List roles
|
331
|
+
# List roles assigned to this object.
|
332
|
+
# @param python_python_publication_href [String]
|
333
|
+
# @param [Hash] opts the optional parameters
|
334
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
335
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
336
|
+
# @return [ObjectRolesResponse]
|
337
|
+
def list_roles(python_python_publication_href, opts = {})
|
338
|
+
data, _status_code, _headers = list_roles_with_http_info(python_python_publication_href, opts)
|
339
|
+
data
|
340
|
+
end
|
341
|
+
|
342
|
+
# List roles
|
343
|
+
# List roles assigned to this object.
|
344
|
+
# @param python_python_publication_href [String]
|
345
|
+
# @param [Hash] opts the optional parameters
|
346
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
347
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
348
|
+
# @return [Array<(ObjectRolesResponse, Integer, Hash)>] ObjectRolesResponse data, response status code and response headers
|
349
|
+
def list_roles_with_http_info(python_python_publication_href, opts = {})
|
350
|
+
if @api_client.config.debugging
|
351
|
+
@api_client.config.logger.debug 'Calling API: PublicationsPypiApi.list_roles ...'
|
352
|
+
end
|
353
|
+
# verify the required parameter 'python_python_publication_href' is set
|
354
|
+
if @api_client.config.client_side_validation && python_python_publication_href.nil?
|
355
|
+
fail ArgumentError, "Missing the required parameter 'python_python_publication_href' when calling PublicationsPypiApi.list_roles"
|
356
|
+
end
|
357
|
+
# resource path
|
358
|
+
local_var_path = '{python_python_publication_href}list_roles/'.sub('{' + 'python_python_publication_href' + '}', CGI.escape(python_python_publication_href.to_s).gsub('%2F', '/'))
|
359
|
+
|
360
|
+
# query parameters
|
361
|
+
query_params = opts[:query_params] || {}
|
362
|
+
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
363
|
+
query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
|
364
|
+
|
365
|
+
# header parameters
|
366
|
+
header_params = opts[:header_params] || {}
|
367
|
+
# HTTP header 'Accept' (if needed)
|
368
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
369
|
+
|
370
|
+
# form parameters
|
371
|
+
form_params = opts[:form_params] || {}
|
372
|
+
|
373
|
+
# http body (model)
|
374
|
+
post_body = opts[:body]
|
375
|
+
|
376
|
+
# return_type
|
377
|
+
return_type = opts[:return_type] || 'ObjectRolesResponse'
|
378
|
+
|
379
|
+
# auth_names
|
380
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
381
|
+
|
382
|
+
new_options = opts.merge(
|
383
|
+
:header_params => header_params,
|
384
|
+
:query_params => query_params,
|
385
|
+
:form_params => form_params,
|
386
|
+
:body => post_body,
|
387
|
+
:auth_names => auth_names,
|
388
|
+
:return_type => return_type
|
389
|
+
)
|
390
|
+
|
391
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
392
|
+
if @api_client.config.debugging
|
393
|
+
@api_client.config.logger.debug "API called: PublicationsPypiApi#list_roles\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
394
|
+
end
|
395
|
+
return data, status_code, headers
|
396
|
+
end
|
397
|
+
|
398
|
+
# List user permissions
|
399
|
+
# List permissions available to the current user on this object.
|
400
|
+
# @param python_python_publication_href [String]
|
401
|
+
# @param [Hash] opts the optional parameters
|
402
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
403
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
404
|
+
# @return [MyPermissionsResponse]
|
405
|
+
def my_permissions(python_python_publication_href, opts = {})
|
406
|
+
data, _status_code, _headers = my_permissions_with_http_info(python_python_publication_href, opts)
|
407
|
+
data
|
408
|
+
end
|
409
|
+
|
410
|
+
# List user permissions
|
411
|
+
# List permissions available to the current user on this object.
|
412
|
+
# @param python_python_publication_href [String]
|
413
|
+
# @param [Hash] opts the optional parameters
|
414
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
415
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
416
|
+
# @return [Array<(MyPermissionsResponse, Integer, Hash)>] MyPermissionsResponse data, response status code and response headers
|
417
|
+
def my_permissions_with_http_info(python_python_publication_href, opts = {})
|
418
|
+
if @api_client.config.debugging
|
419
|
+
@api_client.config.logger.debug 'Calling API: PublicationsPypiApi.my_permissions ...'
|
420
|
+
end
|
421
|
+
# verify the required parameter 'python_python_publication_href' is set
|
422
|
+
if @api_client.config.client_side_validation && python_python_publication_href.nil?
|
423
|
+
fail ArgumentError, "Missing the required parameter 'python_python_publication_href' when calling PublicationsPypiApi.my_permissions"
|
424
|
+
end
|
425
|
+
# resource path
|
426
|
+
local_var_path = '{python_python_publication_href}my_permissions/'.sub('{' + 'python_python_publication_href' + '}', CGI.escape(python_python_publication_href.to_s).gsub('%2F', '/'))
|
427
|
+
|
428
|
+
# query parameters
|
429
|
+
query_params = opts[:query_params] || {}
|
430
|
+
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
431
|
+
query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
|
432
|
+
|
433
|
+
# header parameters
|
434
|
+
header_params = opts[:header_params] || {}
|
435
|
+
# HTTP header 'Accept' (if needed)
|
436
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
437
|
+
|
438
|
+
# form parameters
|
439
|
+
form_params = opts[:form_params] || {}
|
440
|
+
|
441
|
+
# http body (model)
|
442
|
+
post_body = opts[:body]
|
443
|
+
|
444
|
+
# return_type
|
445
|
+
return_type = opts[:return_type] || 'MyPermissionsResponse'
|
446
|
+
|
447
|
+
# auth_names
|
448
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
449
|
+
|
450
|
+
new_options = opts.merge(
|
451
|
+
:header_params => header_params,
|
452
|
+
:query_params => query_params,
|
453
|
+
:form_params => form_params,
|
454
|
+
:body => post_body,
|
455
|
+
:auth_names => auth_names,
|
456
|
+
:return_type => return_type
|
457
|
+
)
|
458
|
+
|
459
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
460
|
+
if @api_client.config.debugging
|
461
|
+
@api_client.config.logger.debug "API called: PublicationsPypiApi#my_permissions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
462
|
+
end
|
463
|
+
return data, status_code, headers
|
464
|
+
end
|
465
|
+
|
260
466
|
# Inspect a python publication
|
261
467
|
# Python Publications refer to the Python Package content in a repository version, and include metadata about that content.
|
262
468
|
# @param python_python_publication_href [String]
|
@@ -324,5 +530,75 @@ module PulpPythonClient
|
|
324
530
|
end
|
325
531
|
return data, status_code, headers
|
326
532
|
end
|
533
|
+
|
534
|
+
# Remove a role
|
535
|
+
# Remove a role for this object from users/groups.
|
536
|
+
# @param python_python_publication_href [String]
|
537
|
+
# @param nested_role [NestedRole]
|
538
|
+
# @param [Hash] opts the optional parameters
|
539
|
+
# @return [NestedRoleResponse]
|
540
|
+
def remove_role(python_python_publication_href, nested_role, opts = {})
|
541
|
+
data, _status_code, _headers = remove_role_with_http_info(python_python_publication_href, nested_role, opts)
|
542
|
+
data
|
543
|
+
end
|
544
|
+
|
545
|
+
# Remove a role
|
546
|
+
# Remove a role for this object from users/groups.
|
547
|
+
# @param python_python_publication_href [String]
|
548
|
+
# @param nested_role [NestedRole]
|
549
|
+
# @param [Hash] opts the optional parameters
|
550
|
+
# @return [Array<(NestedRoleResponse, Integer, Hash)>] NestedRoleResponse data, response status code and response headers
|
551
|
+
def remove_role_with_http_info(python_python_publication_href, nested_role, opts = {})
|
552
|
+
if @api_client.config.debugging
|
553
|
+
@api_client.config.logger.debug 'Calling API: PublicationsPypiApi.remove_role ...'
|
554
|
+
end
|
555
|
+
# verify the required parameter 'python_python_publication_href' is set
|
556
|
+
if @api_client.config.client_side_validation && python_python_publication_href.nil?
|
557
|
+
fail ArgumentError, "Missing the required parameter 'python_python_publication_href' when calling PublicationsPypiApi.remove_role"
|
558
|
+
end
|
559
|
+
# verify the required parameter 'nested_role' is set
|
560
|
+
if @api_client.config.client_side_validation && nested_role.nil?
|
561
|
+
fail ArgumentError, "Missing the required parameter 'nested_role' when calling PublicationsPypiApi.remove_role"
|
562
|
+
end
|
563
|
+
# resource path
|
564
|
+
local_var_path = '{python_python_publication_href}remove_role/'.sub('{' + 'python_python_publication_href' + '}', CGI.escape(python_python_publication_href.to_s).gsub('%2F', '/'))
|
565
|
+
|
566
|
+
# query parameters
|
567
|
+
query_params = opts[:query_params] || {}
|
568
|
+
|
569
|
+
# header parameters
|
570
|
+
header_params = opts[:header_params] || {}
|
571
|
+
# HTTP header 'Accept' (if needed)
|
572
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
573
|
+
# HTTP header 'Content-Type'
|
574
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
|
575
|
+
|
576
|
+
# form parameters
|
577
|
+
form_params = opts[:form_params] || {}
|
578
|
+
|
579
|
+
# http body (model)
|
580
|
+
post_body = opts[:body] || @api_client.object_to_http_body(nested_role)
|
581
|
+
|
582
|
+
# return_type
|
583
|
+
return_type = opts[:return_type] || 'NestedRoleResponse'
|
584
|
+
|
585
|
+
# auth_names
|
586
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
587
|
+
|
588
|
+
new_options = opts.merge(
|
589
|
+
:header_params => header_params,
|
590
|
+
:query_params => query_params,
|
591
|
+
:form_params => form_params,
|
592
|
+
:body => post_body,
|
593
|
+
:auth_names => auth_names,
|
594
|
+
:return_type => return_type
|
595
|
+
)
|
596
|
+
|
597
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
598
|
+
if @api_client.config.debugging
|
599
|
+
@api_client.config.logger.debug "API called: PublicationsPypiApi#remove_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
600
|
+
end
|
601
|
+
return data, status_code, headers
|
602
|
+
end
|
327
603
|
end
|
328
604
|
end
|
@@ -75,7 +75,7 @@ module PulpPythonClient
|
|
75
75
|
return_type = opts[:return_type] || 'PackageMetadataResponse'
|
76
76
|
|
77
77
|
# auth_names
|
78
|
-
auth_names = opts[:auth_names] || []
|
78
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
79
79
|
|
80
80
|
new_options = opts.merge(
|
81
81
|
:header_params => header_params,
|