pulp-python-client 3.11.3__tar.gz → 3.12.1__tar.gz

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.

Potentially problematic release.


This version of pulp-python-client might be problematic. Click here for more details.

Files changed (122) hide show
  1. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/PKG-INFO +1 -1
  2. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/README.md +25 -5
  3. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulp_python_client.egg-info/PKG-INFO +1 -1
  4. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulp_python_client.egg-info/SOURCES.txt +8 -0
  5. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/__init__.py +5 -1
  6. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/api/distributions_pypi_api.py +506 -0
  7. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/api/publications_pypi_api.py +506 -0
  8. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/api/pypi_api.py +1 -1
  9. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/api/pypi_metadata_api.py +1 -1
  10. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/api/remotes_python_api.py +506 -0
  11. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/api/repositories_python_api.py +506 -0
  12. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/api_client.py +1 -1
  13. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/configuration.py +3 -3
  14. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/__init__.py +4 -0
  15. pulp_python-client-3.12.1/pulpcore/client/pulp_python/models/my_permissions_response.py +122 -0
  16. pulp_python-client-3.12.1/pulpcore/client/pulp_python/models/nested_role.py +177 -0
  17. pulp_python-client-3.12.1/pulpcore/client/pulp_python/models/nested_role_response.py +174 -0
  18. pulp_python-client-3.12.1/pulpcore/client/pulp_python/models/object_roles_response.py +122 -0
  19. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/package_upload_task_response.py +0 -4
  20. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/patchedpython_python_remote.py +8 -8
  21. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/python_python_remote.py +8 -8
  22. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/python_python_remote_response.py +8 -8
  23. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/setup.py +1 -1
  24. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_distributions_pypi_api.py +28 -0
  25. pulp_python-client-3.12.1/test/test_my_permissions_response.py +58 -0
  26. pulp_python-client-3.12.1/test/test_nested_role.py +60 -0
  27. pulp_python-client-3.12.1/test/test_nested_role_response.py +60 -0
  28. pulp_python-client-3.12.1/test/test_object_roles_response.py +72 -0
  29. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_package_metadata_response.py +6 -6
  30. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_paginatedpython_python_package_content_response_list.py +12 -12
  31. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_paginatedpython_python_remote_response_list.py +8 -8
  32. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_patchedpython_python_remote.py +4 -4
  33. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_publications_pypi_api.py +28 -0
  34. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_python_python_package_content.py +6 -6
  35. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_python_python_package_content_response.py +6 -6
  36. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_python_python_remote.py +4 -4
  37. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_python_python_remote_response.py +4 -4
  38. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_remotes_python_api.py +28 -0
  39. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_repositories_python_api.py +28 -0
  40. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulp_python_client.egg-info/dependency_links.txt +0 -0
  41. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulp_python_client.egg-info/requires.txt +0 -0
  42. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulp_python_client.egg-info/top_level.txt +0 -0
  43. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/__init__.py +0 -0
  44. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/__init__.py +0 -0
  45. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/api/__init__.py +0 -0
  46. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/api/content_packages_api.py +0 -0
  47. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/api/pypi_legacy_api.py +0 -0
  48. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/api/pypi_simple_api.py +0 -0
  49. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/api/repositories_python_versions_api.py +0 -0
  50. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/exceptions.py +0 -0
  51. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/async_operation_response.py +0 -0
  52. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/content_summary_response.py +0 -0
  53. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/exclude_platforms_enum.py +0 -0
  54. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/package_metadata_response.py +0 -0
  55. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/package_types_enum.py +0 -0
  56. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/package_upload.py +0 -0
  57. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/paginated_repository_version_response_list.py +0 -0
  58. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/paginatedpython_python_distribution_response_list.py +0 -0
  59. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/paginatedpython_python_package_content_response_list.py +0 -0
  60. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/paginatedpython_python_publication_response_list.py +0 -0
  61. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/paginatedpython_python_remote_response_list.py +0 -0
  62. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/paginatedpython_python_repository_response_list.py +0 -0
  63. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/patchedpython_python_distribution.py +0 -0
  64. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/patchedpython_python_repository.py +0 -0
  65. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/policy_enum.py +0 -0
  66. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/python_bander_remote.py +0 -0
  67. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/python_python_distribution.py +0 -0
  68. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/python_python_distribution_response.py +0 -0
  69. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/python_python_package_content.py +0 -0
  70. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/python_python_package_content_response.py +0 -0
  71. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/python_python_publication.py +0 -0
  72. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/python_python_publication_response.py +0 -0
  73. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/python_python_remote_response_hidden_fields.py +0 -0
  74. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/python_python_repository.py +0 -0
  75. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/python_python_repository_response.py +0 -0
  76. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/repair.py +0 -0
  77. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/repository_add_remove_content.py +0 -0
  78. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/repository_sync_url.py +0 -0
  79. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/repository_version_response.py +0 -0
  80. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/set_label.py +0 -0
  81. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/set_label_response.py +0 -0
  82. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/summary_response.py +0 -0
  83. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/unset_label.py +0 -0
  84. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/models/unset_label_response.py +0 -0
  85. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/pulpcore/client/pulp_python/rest.py +0 -0
  86. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/setup.cfg +0 -0
  87. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_async_operation_response.py +0 -0
  88. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_content_packages_api.py +0 -0
  89. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_content_summary_response.py +0 -0
  90. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_exclude_platforms_enum.py +0 -0
  91. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_package_types_enum.py +0 -0
  92. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_package_upload.py +0 -0
  93. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_package_upload_task_response.py +0 -0
  94. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_paginated_repository_version_response_list.py +0 -0
  95. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_paginatedpython_python_distribution_response_list.py +0 -0
  96. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_paginatedpython_python_publication_response_list.py +0 -0
  97. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_paginatedpython_python_repository_response_list.py +0 -0
  98. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_patchedpython_python_distribution.py +0 -0
  99. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_patchedpython_python_repository.py +0 -0
  100. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_policy_enum.py +0 -0
  101. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_pypi_api.py +0 -0
  102. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_pypi_legacy_api.py +0 -0
  103. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_pypi_metadata_api.py +0 -0
  104. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_pypi_simple_api.py +0 -0
  105. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_python_bander_remote.py +0 -0
  106. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_python_python_distribution.py +0 -0
  107. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_python_python_distribution_response.py +0 -0
  108. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_python_python_publication.py +0 -0
  109. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_python_python_publication_response.py +0 -0
  110. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_python_python_remote_response_hidden_fields.py +0 -0
  111. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_python_python_repository.py +0 -0
  112. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_python_python_repository_response.py +0 -0
  113. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_repair.py +0 -0
  114. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_repositories_python_versions_api.py +0 -0
  115. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_repository_add_remove_content.py +0 -0
  116. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_repository_sync_url.py +0 -0
  117. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_repository_version_response.py +0 -0
  118. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_set_label.py +0 -0
  119. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_set_label_response.py +0 -0
  120. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_summary_response.py +0 -0
  121. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_unset_label.py +0 -0
  122. {pulp_python-client-3.11.3 → pulp_python-client-3.12.1}/test/test_unset_label_response.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulp_python-client
3
- Version: 3.11.3
3
+ Version: 3.12.1
4
4
  Summary: Pulp 3 API
5
5
  Home-page:
6
6
  Author: Pulp Team
@@ -4,7 +4,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
4
4
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
5
5
 
6
6
  - API version: v3
7
- - Package version: 3.11.3
7
+ - Package version: 3.12.1
8
8
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
9
9
  For more information, please visit [https://pulpproject.org](https://pulpproject.org)
10
10
 
@@ -53,10 +53,10 @@ import pulpcore.client.pulp_python
53
53
  from pulpcore.client.pulp_python.rest import ApiException
54
54
  from pprint import pprint
55
55
 
56
- # Defining the host is optional and defaults to http://localhost:24817
56
+ # Defining the host is optional and defaults to http://pulp
57
57
  # See configuration.py for a list of all supported configuration parameters.
58
58
  configuration = pulpcore.client.pulp_python.Configuration(
59
- host = "http://localhost:24817"
59
+ host = "http://pulp"
60
60
  )
61
61
 
62
62
  # The client must configure the authentication and authorization parameters
@@ -72,7 +72,7 @@ configuration = pulpcore.client.pulp_python.Configuration(
72
72
 
73
73
  # Configure API key authorization: cookieAuth
74
74
  configuration = pulpcore.client.pulp_python.Configuration(
75
- host = "http://localhost:24817",
75
+ host = "http://pulp",
76
76
  api_key = {
77
77
  'sessionid': 'YOUR_API_KEY'
78
78
  }
@@ -124,46 +124,62 @@ classifiers = None # object | A JSON list containing classification values for a
124
124
 
125
125
  ## Documentation for API Endpoints
126
126
 
127
- All URIs are relative to *http://localhost:24817*
127
+ All URIs are relative to *http://pulp*
128
128
 
129
129
  Class | Method | HTTP request | Description
130
130
  ------------ | ------------- | ------------- | -------------
131
131
  *ContentPackagesApi* | [**create**](docs/ContentPackagesApi.md#create) | **POST** /pulp/api/v3/content/python/packages/ | Create a python package content
132
132
  *ContentPackagesApi* | [**list**](docs/ContentPackagesApi.md#list) | **GET** /pulp/api/v3/content/python/packages/ | List python package contents
133
133
  *ContentPackagesApi* | [**read**](docs/ContentPackagesApi.md#read) | **GET** {python_python_package_content_href} | Inspect a python package content
134
+ *DistributionsPypiApi* | [**add_role**](docs/DistributionsPypiApi.md#add_role) | **POST** {python_python_distribution_href}add_role/ | Add a role
134
135
  *DistributionsPypiApi* | [**create**](docs/DistributionsPypiApi.md#create) | **POST** /pulp/api/v3/distributions/python/pypi/ | Create a python distribution
135
136
  *DistributionsPypiApi* | [**delete**](docs/DistributionsPypiApi.md#delete) | **DELETE** {python_python_distribution_href} | Delete a python distribution
136
137
  *DistributionsPypiApi* | [**list**](docs/DistributionsPypiApi.md#list) | **GET** /pulp/api/v3/distributions/python/pypi/ | List python distributions
138
+ *DistributionsPypiApi* | [**list_roles**](docs/DistributionsPypiApi.md#list_roles) | **GET** {python_python_distribution_href}list_roles/ | List roles
139
+ *DistributionsPypiApi* | [**my_permissions**](docs/DistributionsPypiApi.md#my_permissions) | **GET** {python_python_distribution_href}my_permissions/ | List user permissions
137
140
  *DistributionsPypiApi* | [**partial_update**](docs/DistributionsPypiApi.md#partial_update) | **PATCH** {python_python_distribution_href} | Update a python distribution
138
141
  *DistributionsPypiApi* | [**read**](docs/DistributionsPypiApi.md#read) | **GET** {python_python_distribution_href} | Inspect a python distribution
142
+ *DistributionsPypiApi* | [**remove_role**](docs/DistributionsPypiApi.md#remove_role) | **POST** {python_python_distribution_href}remove_role/ | Remove a role
139
143
  *DistributionsPypiApi* | [**set_label**](docs/DistributionsPypiApi.md#set_label) | **POST** {python_python_distribution_href}set_label/ | Set a label
140
144
  *DistributionsPypiApi* | [**unset_label**](docs/DistributionsPypiApi.md#unset_label) | **POST** {python_python_distribution_href}unset_label/ | Unset a label
141
145
  *DistributionsPypiApi* | [**update**](docs/DistributionsPypiApi.md#update) | **PUT** {python_python_distribution_href} | Update a python distribution
146
+ *PublicationsPypiApi* | [**add_role**](docs/PublicationsPypiApi.md#add_role) | **POST** {python_python_publication_href}add_role/ | Add a role
142
147
  *PublicationsPypiApi* | [**create**](docs/PublicationsPypiApi.md#create) | **POST** /pulp/api/v3/publications/python/pypi/ | Create a python publication
143
148
  *PublicationsPypiApi* | [**delete**](docs/PublicationsPypiApi.md#delete) | **DELETE** {python_python_publication_href} | Delete a python publication
144
149
  *PublicationsPypiApi* | [**list**](docs/PublicationsPypiApi.md#list) | **GET** /pulp/api/v3/publications/python/pypi/ | List python publications
150
+ *PublicationsPypiApi* | [**list_roles**](docs/PublicationsPypiApi.md#list_roles) | **GET** {python_python_publication_href}list_roles/ | List roles
151
+ *PublicationsPypiApi* | [**my_permissions**](docs/PublicationsPypiApi.md#my_permissions) | **GET** {python_python_publication_href}my_permissions/ | List user permissions
145
152
  *PublicationsPypiApi* | [**read**](docs/PublicationsPypiApi.md#read) | **GET** {python_python_publication_href} | Inspect a python publication
153
+ *PublicationsPypiApi* | [**remove_role**](docs/PublicationsPypiApi.md#remove_role) | **POST** {python_python_publication_href}remove_role/ | Remove a role
146
154
  *PypiApi* | [**read**](docs/PypiApi.md#read) | **GET** /pypi/{path}/ | Get index summary
147
155
  *PypiLegacyApi* | [**create**](docs/PypiLegacyApi.md#create) | **POST** /pypi/{path}/legacy/ | Upload a package
148
156
  *PypiMetadataApi* | [**read**](docs/PypiMetadataApi.md#read) | **GET** /pypi/{path}/pypi/{meta}/ | Get package metadata
149
157
  *PypiSimpleApi* | [**create**](docs/PypiSimpleApi.md#create) | **POST** /pypi/{path}/simple/ | Upload a package
150
158
  *PypiSimpleApi* | [**pypi_simple_package_read**](docs/PypiSimpleApi.md#pypi_simple_package_read) | **GET** /pypi/{path}/simple/{package}/ | Get package simple page
151
159
  *PypiSimpleApi* | [**read**](docs/PypiSimpleApi.md#read) | **GET** /pypi/{path}/simple/ | Get index simple page
160
+ *RemotesPythonApi* | [**add_role**](docs/RemotesPythonApi.md#add_role) | **POST** {python_python_remote_href}add_role/ | Add a role
152
161
  *RemotesPythonApi* | [**create**](docs/RemotesPythonApi.md#create) | **POST** /pulp/api/v3/remotes/python/python/ | Create a python remote
153
162
  *RemotesPythonApi* | [**delete**](docs/RemotesPythonApi.md#delete) | **DELETE** {python_python_remote_href} | Delete a python remote
154
163
  *RemotesPythonApi* | [**from_bandersnatch**](docs/RemotesPythonApi.md#from_bandersnatch) | **POST** /pulp/api/v3/remotes/python/python/from_bandersnatch/ | Create from Bandersnatch
155
164
  *RemotesPythonApi* | [**list**](docs/RemotesPythonApi.md#list) | **GET** /pulp/api/v3/remotes/python/python/ | List python remotes
165
+ *RemotesPythonApi* | [**list_roles**](docs/RemotesPythonApi.md#list_roles) | **GET** {python_python_remote_href}list_roles/ | List roles
166
+ *RemotesPythonApi* | [**my_permissions**](docs/RemotesPythonApi.md#my_permissions) | **GET** {python_python_remote_href}my_permissions/ | List user permissions
156
167
  *RemotesPythonApi* | [**partial_update**](docs/RemotesPythonApi.md#partial_update) | **PATCH** {python_python_remote_href} | Update a python remote
157
168
  *RemotesPythonApi* | [**read**](docs/RemotesPythonApi.md#read) | **GET** {python_python_remote_href} | Inspect a python remote
169
+ *RemotesPythonApi* | [**remove_role**](docs/RemotesPythonApi.md#remove_role) | **POST** {python_python_remote_href}remove_role/ | Remove a role
158
170
  *RemotesPythonApi* | [**set_label**](docs/RemotesPythonApi.md#set_label) | **POST** {python_python_remote_href}set_label/ | Set a label
159
171
  *RemotesPythonApi* | [**unset_label**](docs/RemotesPythonApi.md#unset_label) | **POST** {python_python_remote_href}unset_label/ | Unset a label
160
172
  *RemotesPythonApi* | [**update**](docs/RemotesPythonApi.md#update) | **PUT** {python_python_remote_href} | Update a python remote
173
+ *RepositoriesPythonApi* | [**add_role**](docs/RepositoriesPythonApi.md#add_role) | **POST** {python_python_repository_href}add_role/ | Add a role
161
174
  *RepositoriesPythonApi* | [**create**](docs/RepositoriesPythonApi.md#create) | **POST** /pulp/api/v3/repositories/python/python/ | Create a python repository
162
175
  *RepositoriesPythonApi* | [**delete**](docs/RepositoriesPythonApi.md#delete) | **DELETE** {python_python_repository_href} | Delete a python repository
163
176
  *RepositoriesPythonApi* | [**list**](docs/RepositoriesPythonApi.md#list) | **GET** /pulp/api/v3/repositories/python/python/ | List python repositorys
177
+ *RepositoriesPythonApi* | [**list_roles**](docs/RepositoriesPythonApi.md#list_roles) | **GET** {python_python_repository_href}list_roles/ | List roles
164
178
  *RepositoriesPythonApi* | [**modify**](docs/RepositoriesPythonApi.md#modify) | **POST** {python_python_repository_href}modify/ | Modify Repository Content
179
+ *RepositoriesPythonApi* | [**my_permissions**](docs/RepositoriesPythonApi.md#my_permissions) | **GET** {python_python_repository_href}my_permissions/ | List user permissions
165
180
  *RepositoriesPythonApi* | [**partial_update**](docs/RepositoriesPythonApi.md#partial_update) | **PATCH** {python_python_repository_href} | Update a python repository
166
181
  *RepositoriesPythonApi* | [**read**](docs/RepositoriesPythonApi.md#read) | **GET** {python_python_repository_href} | Inspect a python repository
182
+ *RepositoriesPythonApi* | [**remove_role**](docs/RepositoriesPythonApi.md#remove_role) | **POST** {python_python_repository_href}remove_role/ | Remove a role
167
183
  *RepositoriesPythonApi* | [**set_label**](docs/RepositoriesPythonApi.md#set_label) | **POST** {python_python_repository_href}set_label/ | Set a label
168
184
  *RepositoriesPythonApi* | [**sync**](docs/RepositoriesPythonApi.md#sync) | **POST** {python_python_repository_href}sync/ | Sync from remote
169
185
  *RepositoriesPythonApi* | [**unset_label**](docs/RepositoriesPythonApi.md#unset_label) | **POST** {python_python_repository_href}unset_label/ | Unset a label
@@ -179,6 +195,10 @@ Class | Method | HTTP request | Description
179
195
  - [AsyncOperationResponse](docs/AsyncOperationResponse.md)
180
196
  - [ContentSummaryResponse](docs/ContentSummaryResponse.md)
181
197
  - [ExcludePlatformsEnum](docs/ExcludePlatformsEnum.md)
198
+ - [MyPermissionsResponse](docs/MyPermissionsResponse.md)
199
+ - [NestedRole](docs/NestedRole.md)
200
+ - [NestedRoleResponse](docs/NestedRoleResponse.md)
201
+ - [ObjectRolesResponse](docs/ObjectRolesResponse.md)
182
202
  - [PackageMetadataResponse](docs/PackageMetadataResponse.md)
183
203
  - [PackageTypesEnum](docs/PackageTypesEnum.md)
184
204
  - [PackageUpload](docs/PackageUpload.md)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulp-python-client
3
- Version: 3.11.3
3
+ Version: 3.12.1
4
4
  Summary: Pulp 3 API
5
5
  Home-page:
6
6
  Author: Pulp Team
@@ -28,6 +28,10 @@ pulpcore/client/pulp_python/models/__init__.py
28
28
  pulpcore/client/pulp_python/models/async_operation_response.py
29
29
  pulpcore/client/pulp_python/models/content_summary_response.py
30
30
  pulpcore/client/pulp_python/models/exclude_platforms_enum.py
31
+ pulpcore/client/pulp_python/models/my_permissions_response.py
32
+ pulpcore/client/pulp_python/models/nested_role.py
33
+ pulpcore/client/pulp_python/models/nested_role_response.py
34
+ pulpcore/client/pulp_python/models/object_roles_response.py
31
35
  pulpcore/client/pulp_python/models/package_metadata_response.py
32
36
  pulpcore/client/pulp_python/models/package_types_enum.py
33
37
  pulpcore/client/pulp_python/models/package_upload.py
@@ -68,6 +72,10 @@ test/test_content_packages_api.py
68
72
  test/test_content_summary_response.py
69
73
  test/test_distributions_pypi_api.py
70
74
  test/test_exclude_platforms_enum.py
75
+ test/test_my_permissions_response.py
76
+ test/test_nested_role.py
77
+ test/test_nested_role_response.py
78
+ test/test_object_roles_response.py
71
79
  test/test_package_metadata_response.py
72
80
  test/test_package_types_enum.py
73
81
  test/test_package_upload.py
@@ -15,7 +15,7 @@
15
15
 
16
16
  from __future__ import absolute_import
17
17
 
18
- __version__ = "3.11.3"
18
+ __version__ = "3.12.1"
19
19
 
20
20
  # import apis into sdk package
21
21
  from pulpcore.client.pulp_python.api.content_packages_api import ContentPackagesApi
@@ -41,6 +41,10 @@ from pulpcore.client.pulp_python.exceptions import ApiException
41
41
  from pulpcore.client.pulp_python.models.async_operation_response import AsyncOperationResponse
42
42
  from pulpcore.client.pulp_python.models.content_summary_response import ContentSummaryResponse
43
43
  from pulpcore.client.pulp_python.models.exclude_platforms_enum import ExcludePlatformsEnum
44
+ from pulpcore.client.pulp_python.models.my_permissions_response import MyPermissionsResponse
45
+ from pulpcore.client.pulp_python.models.nested_role import NestedRole
46
+ from pulpcore.client.pulp_python.models.nested_role_response import NestedRoleResponse
47
+ from pulpcore.client.pulp_python.models.object_roles_response import ObjectRolesResponse
44
48
  from pulpcore.client.pulp_python.models.package_metadata_response import PackageMetadataResponse
45
49
  from pulpcore.client.pulp_python.models.package_types_enum import PackageTypesEnum
46
50
  from pulpcore.client.pulp_python.models.package_upload import PackageUpload