pulp_python_client 3.11.8 → 3.12.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.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +31 -12
  3. data/docs/ContentPackagesApi.md +13 -19
  4. data/docs/DistributionsPypiApi.md +245 -41
  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/PackageMetadataResponse.md +3 -3
  10. data/docs/PublicationsPypiApi.md +237 -17
  11. data/docs/PypiApi.md +8 -4
  12. data/docs/PypiLegacyApi.md +1 -3
  13. data/docs/PypiMetadataApi.md +8 -4
  14. data/docs/PypiSimpleApi.md +1 -7
  15. data/docs/PythonPythonPackageContent.md +6 -6
  16. data/docs/PythonPythonPackageContentResponse.md +6 -6
  17. data/docs/RemotesPythonApi.md +245 -43
  18. data/docs/RepositoriesPythonApi.md +249 -53
  19. data/docs/RepositoriesPythonVersionsApi.md +5 -17
  20. data/lib/pulp_python_client/api/content_packages_api.rb +12 -21
  21. data/lib/pulp_python_client/api/distributions_pypi_api.rb +276 -24
  22. data/lib/pulp_python_client/api/publications_pypi_api.rb +276 -12
  23. data/lib/pulp_python_client/api/pypi_api.rb +1 -4
  24. data/lib/pulp_python_client/api/pypi_legacy_api.rb +0 -3
  25. data/lib/pulp_python_client/api/pypi_metadata_api.rb +1 -4
  26. data/lib/pulp_python_client/api/pypi_simple_api.rb +0 -9
  27. data/lib/pulp_python_client/api/remotes_python_api.rb +276 -27
  28. data/lib/pulp_python_client/api/repositories_python_api.rb +276 -30
  29. data/lib/pulp_python_client/api/repositories_python_versions_api.rb +0 -12
  30. data/lib/pulp_python_client/configuration.rb +2 -2
  31. data/lib/pulp_python_client/models/my_permissions_response.rb +213 -0
  32. data/lib/pulp_python_client/models/nested_role.rb +253 -0
  33. data/lib/pulp_python_client/models/nested_role_response.rb +234 -0
  34. data/lib/pulp_python_client/models/object_roles_response.rb +213 -0
  35. data/lib/pulp_python_client/models/package_metadata_response.rb +3 -3
  36. data/lib/pulp_python_client/models/package_upload_task_response.rb +2 -10
  37. data/lib/pulp_python_client/models/python_python_package_content.rb +6 -6
  38. data/lib/pulp_python_client/models/python_python_package_content_response.rb +6 -6
  39. data/lib/pulp_python_client/version.rb +1 -1
  40. data/lib/pulp_python_client.rb +4 -0
  41. data/spec/api/content_packages_api_spec.rb +6 -9
  42. data/spec/api/distributions_pypi_api_spec.rb +54 -8
  43. data/spec/api/publications_pypi_api_spec.rb +54 -4
  44. data/spec/api/pypi_api_spec.rb +0 -1
  45. data/spec/api/pypi_legacy_api_spec.rb +0 -1
  46. data/spec/api/pypi_metadata_api_spec.rb +0 -1
  47. data/spec/api/pypi_simple_api_spec.rb +0 -3
  48. data/spec/api/remotes_python_api_spec.rb +54 -9
  49. data/spec/api/repositories_python_api_spec.rb +54 -10
  50. data/spec/api/repositories_python_versions_api_spec.rb +0 -4
  51. data/spec/configuration_spec.rb +3 -3
  52. data/spec/models/my_permissions_response_spec.rb +41 -0
  53. data/spec/models/nested_role_response_spec.rb +53 -0
  54. data/spec/models/nested_role_spec.rb +53 -0
  55. data/spec/models/object_roles_response_spec.rb +41 -0
  56. metadata +68 -52
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dea29f7679baaa7a1bdb5997a5a5713d21523ce8befe40f2e132764d19a83fb8
4
- data.tar.gz: 58129ee8ec68b0b432ce98b9afa49a81e4abd76104aae35967c1cc8f37529de7
3
+ metadata.gz: c1a750d6b6d4a7110a6faabcf0a5f4634b097501e685e6332cd69bab7d92d477
4
+ data.tar.gz: ce3abfcacfffc2a937c99fe6418bf2f7fbb5ebe7cae539d6fd136e7bb8d72ed6
5
5
  SHA512:
6
- metadata.gz: 47abcd58548833697e383907975a6246ee709c171aabd76cbe5654dded42ea0e5e60c9d568b6fb5cf7a668003954727fe6b1412976e9dfe0b5bf938d4d001e1c
7
- data.tar.gz: 4ac2d9460c1585bbd1587915992fd04834e8ecda813ef7200481c73e0a0e02c7a756dda528e908348d10cac7a35864ae669e8b3b30b1336b86e2cace160f8552
6
+ metadata.gz: e476276f6ead0e1cb94d9cb772d6cd0c432294cf812ff3548a0ad6e480f1f9ad3aa137d5704ede85b1bbcc2ba38f43d4ef9a73351a1b74e2a9c70a35e6a73410
7
+ data.tar.gz: 1480d47f402ef4ee306c87f76d4101bf7d7e878dfce5fdd8834ee3927db6722745ebfd3bdb0184937fc8a8e9fcfe384186f478efb9ed6748fa56d82e0850f3a1
data/README.md CHANGED
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: v3
10
- - Package version: 3.11.8
10
+ - Package version: 3.12.0
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [https://pulpproject.org](https://pulpproject.org)
13
13
 
@@ -24,16 +24,16 @@ gem build pulp_python_client.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./pulp_python_client-3.11.8.gem
27
+ gem install ./pulp_python_client-3.12.0.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulp_python_client-3.11.8.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulp_python_client-3.12.0.gem` to install the development dependencies)
31
31
 
32
32
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
33
33
 
34
34
  Finally add this to the Gemfile:
35
35
 
36
- gem 'pulp_python_client', '~> 3.11.8'
36
+ gem 'pulp_python_client', '~> 3.12.0'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -67,7 +67,6 @@ end
67
67
  api_instance = PulpPythonClient::ContentPackagesApi.new
68
68
  relative_path = 'relative_path_example' # String | Path where the artifact is located relative to distributions base_path
69
69
  opts = {
70
- x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
71
70
  repository: 'repository_example', # String | A URI of a repository the new content unit should be associated with.
72
71
  artifact: 'artifact_example', # String | Artifact file representing the physical content
73
72
  file: File.new('/path/to/file'), # File | An uploaded file that may be turned into the content unit.
@@ -86,14 +85,14 @@ opts = {
86
85
  license: 'license_example', # String | Text indicating the license covering the distribution
87
86
  requires_python: 'requires_python_example', # String | The Python version(s) that the distribution is guaranteed to be compatible with.
88
87
  project_url: 'project_url_example', # String | A browsable URL for the project and a label for it, separated by a comma.
89
- project_urls: nil, # Object | A dictionary of labels and URLs for the project.
88
+ project_urls: PulpPythonClient::AnyType.new, # AnyType | A dictionary of labels and URLs for the project.
90
89
  platform: 'platform_example', # String | A comma-separated list of platform specifications, summarizing the operating systems supported by the package.
91
90
  supported_platform: 'supported_platform_example', # String | Field to specify the OS and CPU for which the binary package was compiled.
92
- requires_dist: nil, # Object | A JSON list containing names of some other distutils project required by this distribution.
93
- provides_dist: nil, # Object | A JSON list containing names of a Distutils project which is contained within this distribution.
94
- obsoletes_dist: nil, # Object | A JSON list containing names of a distutils project's distribution which this distribution renders obsolete, meaning that the two projects should not be installed at the same time.
95
- requires_external: nil, # Object | A JSON list containing some dependency in the system that the distribution is to be used.
96
- classifiers: nil # Object | A JSON list containing classification values for a Python package.
91
+ requires_dist: PulpPythonClient::AnyType.new, # AnyType | A JSON list containing names of some other distutils project required by this distribution.
92
+ provides_dist: PulpPythonClient::AnyType.new, # AnyType | A JSON list containing names of a Distutils project which is contained within this distribution.
93
+ obsoletes_dist: PulpPythonClient::AnyType.new, # AnyType | A JSON list containing names of a distutils project's distribution which this distribution renders obsolete, meaning that the two projects should not be installed at the same time.
94
+ requires_external: PulpPythonClient::AnyType.new, # AnyType | A JSON list containing some dependency in the system that the distribution is to be used.
95
+ classifiers: PulpPythonClient::AnyType.new # AnyType | A JSON list containing classification values for a Python package.
97
96
  }
98
97
 
99
98
  begin
@@ -108,46 +107,62 @@ end
108
107
 
109
108
  ## Documentation for API Endpoints
110
109
 
111
- All URIs are relative to *http://localhost:24817*
110
+ All URIs are relative to *http://pulp*
112
111
 
113
112
  Class | Method | HTTP request | Description
114
113
  ------------ | ------------- | ------------- | -------------
115
114
  *PulpPythonClient::ContentPackagesApi* | [**create**](docs/ContentPackagesApi.md#create) | **POST** /pulp/api/v3/content/python/packages/ | Create a python package content
116
115
  *PulpPythonClient::ContentPackagesApi* | [**list**](docs/ContentPackagesApi.md#list) | **GET** /pulp/api/v3/content/python/packages/ | List python package contents
117
116
  *PulpPythonClient::ContentPackagesApi* | [**read**](docs/ContentPackagesApi.md#read) | **GET** {python_python_package_content_href} | Inspect a python package content
117
+ *PulpPythonClient::DistributionsPypiApi* | [**add_role**](docs/DistributionsPypiApi.md#add_role) | **POST** {python_python_distribution_href}add_role/ | Add a role
118
118
  *PulpPythonClient::DistributionsPypiApi* | [**create**](docs/DistributionsPypiApi.md#create) | **POST** /pulp/api/v3/distributions/python/pypi/ | Create a python distribution
119
119
  *PulpPythonClient::DistributionsPypiApi* | [**delete**](docs/DistributionsPypiApi.md#delete) | **DELETE** {python_python_distribution_href} | Delete a python distribution
120
120
  *PulpPythonClient::DistributionsPypiApi* | [**list**](docs/DistributionsPypiApi.md#list) | **GET** /pulp/api/v3/distributions/python/pypi/ | List python distributions
121
+ *PulpPythonClient::DistributionsPypiApi* | [**list_roles**](docs/DistributionsPypiApi.md#list_roles) | **GET** {python_python_distribution_href}list_roles/ | List roles
122
+ *PulpPythonClient::DistributionsPypiApi* | [**my_permissions**](docs/DistributionsPypiApi.md#my_permissions) | **GET** {python_python_distribution_href}my_permissions/ | List user permissions
121
123
  *PulpPythonClient::DistributionsPypiApi* | [**partial_update**](docs/DistributionsPypiApi.md#partial_update) | **PATCH** {python_python_distribution_href} | Update a python distribution
122
124
  *PulpPythonClient::DistributionsPypiApi* | [**read**](docs/DistributionsPypiApi.md#read) | **GET** {python_python_distribution_href} | Inspect a python distribution
125
+ *PulpPythonClient::DistributionsPypiApi* | [**remove_role**](docs/DistributionsPypiApi.md#remove_role) | **POST** {python_python_distribution_href}remove_role/ | Remove a role
123
126
  *PulpPythonClient::DistributionsPypiApi* | [**set_label**](docs/DistributionsPypiApi.md#set_label) | **POST** {python_python_distribution_href}set_label/ | Set a label
124
127
  *PulpPythonClient::DistributionsPypiApi* | [**unset_label**](docs/DistributionsPypiApi.md#unset_label) | **POST** {python_python_distribution_href}unset_label/ | Unset a label
125
128
  *PulpPythonClient::DistributionsPypiApi* | [**update**](docs/DistributionsPypiApi.md#update) | **PUT** {python_python_distribution_href} | Update a python distribution
129
+ *PulpPythonClient::PublicationsPypiApi* | [**add_role**](docs/PublicationsPypiApi.md#add_role) | **POST** {python_python_publication_href}add_role/ | Add a role
126
130
  *PulpPythonClient::PublicationsPypiApi* | [**create**](docs/PublicationsPypiApi.md#create) | **POST** /pulp/api/v3/publications/python/pypi/ | Create a python publication
127
131
  *PulpPythonClient::PublicationsPypiApi* | [**delete**](docs/PublicationsPypiApi.md#delete) | **DELETE** {python_python_publication_href} | Delete a python publication
128
132
  *PulpPythonClient::PublicationsPypiApi* | [**list**](docs/PublicationsPypiApi.md#list) | **GET** /pulp/api/v3/publications/python/pypi/ | List python publications
133
+ *PulpPythonClient::PublicationsPypiApi* | [**list_roles**](docs/PublicationsPypiApi.md#list_roles) | **GET** {python_python_publication_href}list_roles/ | List roles
134
+ *PulpPythonClient::PublicationsPypiApi* | [**my_permissions**](docs/PublicationsPypiApi.md#my_permissions) | **GET** {python_python_publication_href}my_permissions/ | List user permissions
129
135
  *PulpPythonClient::PublicationsPypiApi* | [**read**](docs/PublicationsPypiApi.md#read) | **GET** {python_python_publication_href} | Inspect a python publication
136
+ *PulpPythonClient::PublicationsPypiApi* | [**remove_role**](docs/PublicationsPypiApi.md#remove_role) | **POST** {python_python_publication_href}remove_role/ | Remove a role
130
137
  *PulpPythonClient::PypiApi* | [**read**](docs/PypiApi.md#read) | **GET** /pypi/{path}/ | Get index summary
131
138
  *PulpPythonClient::PypiLegacyApi* | [**create**](docs/PypiLegacyApi.md#create) | **POST** /pypi/{path}/legacy/ | Upload a package
132
139
  *PulpPythonClient::PypiMetadataApi* | [**read**](docs/PypiMetadataApi.md#read) | **GET** /pypi/{path}/pypi/{meta}/ | Get package metadata
133
140
  *PulpPythonClient::PypiSimpleApi* | [**create**](docs/PypiSimpleApi.md#create) | **POST** /pypi/{path}/simple/ | Upload a package
134
141
  *PulpPythonClient::PypiSimpleApi* | [**pypi_simple_package_read**](docs/PypiSimpleApi.md#pypi_simple_package_read) | **GET** /pypi/{path}/simple/{package}/ | Get package simple page
135
142
  *PulpPythonClient::PypiSimpleApi* | [**read**](docs/PypiSimpleApi.md#read) | **GET** /pypi/{path}/simple/ | Get index simple page
143
+ *PulpPythonClient::RemotesPythonApi* | [**add_role**](docs/RemotesPythonApi.md#add_role) | **POST** {python_python_remote_href}add_role/ | Add a role
136
144
  *PulpPythonClient::RemotesPythonApi* | [**create**](docs/RemotesPythonApi.md#create) | **POST** /pulp/api/v3/remotes/python/python/ | Create a python remote
137
145
  *PulpPythonClient::RemotesPythonApi* | [**delete**](docs/RemotesPythonApi.md#delete) | **DELETE** {python_python_remote_href} | Delete a python remote
138
146
  *PulpPythonClient::RemotesPythonApi* | [**from_bandersnatch**](docs/RemotesPythonApi.md#from_bandersnatch) | **POST** /pulp/api/v3/remotes/python/python/from_bandersnatch/ | Create from Bandersnatch
139
147
  *PulpPythonClient::RemotesPythonApi* | [**list**](docs/RemotesPythonApi.md#list) | **GET** /pulp/api/v3/remotes/python/python/ | List python remotes
148
+ *PulpPythonClient::RemotesPythonApi* | [**list_roles**](docs/RemotesPythonApi.md#list_roles) | **GET** {python_python_remote_href}list_roles/ | List roles
149
+ *PulpPythonClient::RemotesPythonApi* | [**my_permissions**](docs/RemotesPythonApi.md#my_permissions) | **GET** {python_python_remote_href}my_permissions/ | List user permissions
140
150
  *PulpPythonClient::RemotesPythonApi* | [**partial_update**](docs/RemotesPythonApi.md#partial_update) | **PATCH** {python_python_remote_href} | Update a python remote
141
151
  *PulpPythonClient::RemotesPythonApi* | [**read**](docs/RemotesPythonApi.md#read) | **GET** {python_python_remote_href} | Inspect a python remote
152
+ *PulpPythonClient::RemotesPythonApi* | [**remove_role**](docs/RemotesPythonApi.md#remove_role) | **POST** {python_python_remote_href}remove_role/ | Remove a role
142
153
  *PulpPythonClient::RemotesPythonApi* | [**set_label**](docs/RemotesPythonApi.md#set_label) | **POST** {python_python_remote_href}set_label/ | Set a label
143
154
  *PulpPythonClient::RemotesPythonApi* | [**unset_label**](docs/RemotesPythonApi.md#unset_label) | **POST** {python_python_remote_href}unset_label/ | Unset a label
144
155
  *PulpPythonClient::RemotesPythonApi* | [**update**](docs/RemotesPythonApi.md#update) | **PUT** {python_python_remote_href} | Update a python remote
156
+ *PulpPythonClient::RepositoriesPythonApi* | [**add_role**](docs/RepositoriesPythonApi.md#add_role) | **POST** {python_python_repository_href}add_role/ | Add a role
145
157
  *PulpPythonClient::RepositoriesPythonApi* | [**create**](docs/RepositoriesPythonApi.md#create) | **POST** /pulp/api/v3/repositories/python/python/ | Create a python repository
146
158
  *PulpPythonClient::RepositoriesPythonApi* | [**delete**](docs/RepositoriesPythonApi.md#delete) | **DELETE** {python_python_repository_href} | Delete a python repository
147
159
  *PulpPythonClient::RepositoriesPythonApi* | [**list**](docs/RepositoriesPythonApi.md#list) | **GET** /pulp/api/v3/repositories/python/python/ | List python repositorys
160
+ *PulpPythonClient::RepositoriesPythonApi* | [**list_roles**](docs/RepositoriesPythonApi.md#list_roles) | **GET** {python_python_repository_href}list_roles/ | List roles
148
161
  *PulpPythonClient::RepositoriesPythonApi* | [**modify**](docs/RepositoriesPythonApi.md#modify) | **POST** {python_python_repository_href}modify/ | Modify Repository Content
162
+ *PulpPythonClient::RepositoriesPythonApi* | [**my_permissions**](docs/RepositoriesPythonApi.md#my_permissions) | **GET** {python_python_repository_href}my_permissions/ | List user permissions
149
163
  *PulpPythonClient::RepositoriesPythonApi* | [**partial_update**](docs/RepositoriesPythonApi.md#partial_update) | **PATCH** {python_python_repository_href} | Update a python repository
150
164
  *PulpPythonClient::RepositoriesPythonApi* | [**read**](docs/RepositoriesPythonApi.md#read) | **GET** {python_python_repository_href} | Inspect a python repository
165
+ *PulpPythonClient::RepositoriesPythonApi* | [**remove_role**](docs/RepositoriesPythonApi.md#remove_role) | **POST** {python_python_repository_href}remove_role/ | Remove a role
151
166
  *PulpPythonClient::RepositoriesPythonApi* | [**set_label**](docs/RepositoriesPythonApi.md#set_label) | **POST** {python_python_repository_href}set_label/ | Set a label
152
167
  *PulpPythonClient::RepositoriesPythonApi* | [**sync**](docs/RepositoriesPythonApi.md#sync) | **POST** {python_python_repository_href}sync/ | Sync from remote
153
168
  *PulpPythonClient::RepositoriesPythonApi* | [**unset_label**](docs/RepositoriesPythonApi.md#unset_label) | **POST** {python_python_repository_href}unset_label/ | Unset a label
@@ -163,6 +178,10 @@ Class | Method | HTTP request | Description
163
178
  - [PulpPythonClient::AsyncOperationResponse](docs/AsyncOperationResponse.md)
164
179
  - [PulpPythonClient::ContentSummaryResponse](docs/ContentSummaryResponse.md)
165
180
  - [PulpPythonClient::ExcludePlatformsEnum](docs/ExcludePlatformsEnum.md)
181
+ - [PulpPythonClient::MyPermissionsResponse](docs/MyPermissionsResponse.md)
182
+ - [PulpPythonClient::NestedRole](docs/NestedRole.md)
183
+ - [PulpPythonClient::NestedRoleResponse](docs/NestedRoleResponse.md)
184
+ - [PulpPythonClient::ObjectRolesResponse](docs/ObjectRolesResponse.md)
166
185
  - [PulpPythonClient::PackageMetadataResponse](docs/PackageMetadataResponse.md)
167
186
  - [PulpPythonClient::PackageTypesEnum](docs/PackageTypesEnum.md)
168
187
  - [PulpPythonClient::PackageUpload](docs/PackageUpload.md)
@@ -1,6 +1,6 @@
1
1
  # PulpPythonClient::ContentPackagesApi
2
2
 
3
- All URIs are relative to *http://localhost:24817*
3
+ All URIs are relative to *http://pulp*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -33,7 +33,6 @@ end
33
33
  api_instance = PulpPythonClient::ContentPackagesApi.new
34
34
  relative_path = 'relative_path_example' # String | Path where the artifact is located relative to distributions base_path
35
35
  opts = {
36
- x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
37
36
  repository: 'repository_example', # String | A URI of a repository the new content unit should be associated with.
38
37
  artifact: 'artifact_example', # String | Artifact file representing the physical content
39
38
  file: File.new('/path/to/file'), # File | An uploaded file that may be turned into the content unit.
@@ -52,14 +51,14 @@ opts = {
52
51
  license: 'license_example', # String | Text indicating the license covering the distribution
53
52
  requires_python: 'requires_python_example', # String | The Python version(s) that the distribution is guaranteed to be compatible with.
54
53
  project_url: 'project_url_example', # String | A browsable URL for the project and a label for it, separated by a comma.
55
- project_urls: nil, # Object | A dictionary of labels and URLs for the project.
54
+ project_urls: PulpPythonClient::AnyType.new, # AnyType | A dictionary of labels and URLs for the project.
56
55
  platform: 'platform_example', # String | A comma-separated list of platform specifications, summarizing the operating systems supported by the package.
57
56
  supported_platform: 'supported_platform_example', # String | Field to specify the OS and CPU for which the binary package was compiled.
58
- requires_dist: nil, # Object | A JSON list containing names of some other distutils project required by this distribution.
59
- provides_dist: nil, # Object | A JSON list containing names of a Distutils project which is contained within this distribution.
60
- obsoletes_dist: nil, # Object | A JSON list containing names of a distutils project's distribution which this distribution renders obsolete, meaning that the two projects should not be installed at the same time.
61
- requires_external: nil, # Object | A JSON list containing some dependency in the system that the distribution is to be used.
62
- classifiers: nil # Object | A JSON list containing classification values for a Python package.
57
+ requires_dist: PulpPythonClient::AnyType.new, # AnyType | A JSON list containing names of some other distutils project required by this distribution.
58
+ provides_dist: PulpPythonClient::AnyType.new, # AnyType | A JSON list containing names of a Distutils project which is contained within this distribution.
59
+ obsoletes_dist: PulpPythonClient::AnyType.new, # AnyType | A JSON list containing names of a distutils project's distribution which this distribution renders obsolete, meaning that the two projects should not be installed at the same time.
60
+ requires_external: PulpPythonClient::AnyType.new, # AnyType | A JSON list containing some dependency in the system that the distribution is to be used.
61
+ classifiers: PulpPythonClient::AnyType.new # AnyType | A JSON list containing classification values for a Python package.
63
62
  }
64
63
 
65
64
  begin
@@ -77,7 +76,6 @@ end
77
76
  Name | Type | Description | Notes
78
77
  ------------- | ------------- | ------------- | -------------
79
78
  **relative_path** | **String**| Path where the artifact is located relative to distributions base_path |
80
- **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
81
79
  **repository** | **String**| A URI of a repository the new content unit should be associated with. | [optional]
82
80
  **artifact** | **String**| Artifact file representing the physical content | [optional]
83
81
  **file** | **File**| An uploaded file that may be turned into the content unit. | [optional]
@@ -96,14 +94,14 @@ Name | Type | Description | Notes
96
94
  **license** | **String**| Text indicating the license covering the distribution | [optional]
97
95
  **requires_python** | **String**| The Python version(s) that the distribution is guaranteed to be compatible with. | [optional]
98
96
  **project_url** | **String**| A browsable URL for the project and a label for it, separated by a comma. | [optional]
99
- **project_urls** | [**Object**](Object.md)| A dictionary of labels and URLs for the project. | [optional]
97
+ **project_urls** | [**AnyType**](AnyType.md)| A dictionary of labels and URLs for the project. | [optional]
100
98
  **platform** | **String**| A comma-separated list of platform specifications, summarizing the operating systems supported by the package. | [optional]
101
99
  **supported_platform** | **String**| Field to specify the OS and CPU for which the binary package was compiled. | [optional]
102
- **requires_dist** | [**Object**](Object.md)| A JSON list containing names of some other distutils project required by this distribution. | [optional]
103
- **provides_dist** | [**Object**](Object.md)| A JSON list containing names of a Distutils project which is contained within this distribution. | [optional]
104
- **obsoletes_dist** | [**Object**](Object.md)| A JSON list containing names of a distutils project&#39;s distribution which this distribution renders obsolete, meaning that the two projects should not be installed at the same time. | [optional]
105
- **requires_external** | [**Object**](Object.md)| A JSON list containing some dependency in the system that the distribution is to be used. | [optional]
106
- **classifiers** | [**Object**](Object.md)| A JSON list containing classification values for a Python package. | [optional]
100
+ **requires_dist** | [**AnyType**](AnyType.md)| A JSON list containing names of some other distutils project required by this distribution. | [optional]
101
+ **provides_dist** | [**AnyType**](AnyType.md)| A JSON list containing names of a Distutils project which is contained within this distribution. | [optional]
102
+ **obsoletes_dist** | [**AnyType**](AnyType.md)| A JSON list containing names of a distutils project&#39;s distribution which this distribution renders obsolete, meaning that the two projects should not be installed at the same time. | [optional]
103
+ **requires_external** | [**AnyType**](AnyType.md)| A JSON list containing some dependency in the system that the distribution is to be used. | [optional]
104
+ **classifiers** | [**AnyType**](AnyType.md)| A JSON list containing classification values for a Python package. | [optional]
107
105
 
108
106
  ### Return type
109
107
 
@@ -141,7 +139,6 @@ end
141
139
 
142
140
  api_instance = PulpPythonClient::ContentPackagesApi.new
143
141
  opts = {
144
- x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
145
142
  author: 'author_example', # String | Filter results where author matches value
146
143
  author__in: ['author__in_example'], # Array<String> | Filter results where author is in a comma-separated list of values
147
144
  filename: 'filename_example', # String | Filter results where filename matches value
@@ -191,7 +188,6 @@ end
191
188
 
192
189
  Name | Type | Description | Notes
193
190
  ------------- | ------------- | ------------- | -------------
194
- **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
195
191
  **author** | **String**| Filter results where author matches value | [optional]
196
192
  **author__in** | [**Array&lt;String&gt;**](String.md)| Filter results where author is in a comma-separated list of values | [optional]
197
193
  **filename** | **String**| Filter results where filename matches value | [optional]
@@ -263,7 +259,6 @@ end
263
259
  api_instance = PulpPythonClient::ContentPackagesApi.new
264
260
  python_python_package_content_href = 'python_python_package_content_href_example' # String |
265
261
  opts = {
266
- x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
267
262
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
268
263
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
269
264
  }
@@ -283,7 +278,6 @@ end
283
278
  Name | Type | Description | Notes
284
279
  ------------- | ------------- | ------------- | -------------
285
280
  **python_python_package_content_href** | **String**| |
286
- **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
287
281
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
288
282
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
289
283