pulp_python_client 3.12.3 → 3.12.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -10
- data/docs/ContentPackagesApi.md +22 -20
- data/docs/DistributionsPypiApi.md +4 -2
- data/docs/PackageMetadataResponse.md +3 -3
- data/docs/PublicationsPypiApi.md +12 -10
- 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 -0
- data/docs/PythonPythonRepositoryResponse.md +2 -0
- data/docs/RemotesPythonApi.md +4 -2
- data/docs/RepositoriesPythonApi.md +8 -6
- data/docs/RepositoriesPythonVersionsApi.md +8 -6
- data/docs/RepositoryVersionResponse.md +2 -0
- data/lib/pulp_python_client/api/content_packages_api.rb +23 -20
- data/lib/pulp_python_client/api/distributions_pypi_api.rb +5 -2
- data/lib/pulp_python_client/api/publications_pypi_api.rb +14 -11
- data/lib/pulp_python_client/api/remotes_python_api.rb +5 -2
- data/lib/pulp_python_client/api/repositories_python_api.rb +9 -6
- data/lib/pulp_python_client/api/repositories_python_versions_api.rb +10 -7
- data/lib/pulp_python_client/models/package_metadata_response.rb +3 -3
- 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 -1
- data/lib/pulp_python_client/models/python_python_repository_response.rb +11 -1
- data/lib/pulp_python_client/models/repository_add_remove_content.rb +1 -1
- data/lib/pulp_python_client/models/repository_version_response.rb +12 -2
- data/lib/pulp_python_client/version.rb +1 -1
- data/spec/api/content_packages_api_spec.rb +11 -10
- data/spec/api/distributions_pypi_api_spec.rb +2 -1
- data/spec/api/publications_pypi_api_spec.rb +6 -5
- data/spec/api/remotes_python_api_spec.rb +2 -1
- data/spec/api/repositories_python_api_spec.rb +4 -3
- data/spec/api/repositories_python_versions_api_spec.rb +4 -3
- 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 -0
- data/spec/models/python_python_repository_response_spec.rb +6 -0
- data/spec/models/repository_version_response_spec.rb +6 -0
- metadata +36 -36
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6df877eac2c3c6d723e4bbd0b8b91a30f49ac39b0cc046255af8cb2ea30467fd
|
4
|
+
data.tar.gz: e11f81f4ed120ba43167180aac90417c081756e729903ce19a2925dc5d02214e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d6889e9ed1bc4559456a294d7829589f87721ec7c4395f463e3c05f47fa8b21494239abc84af03ea8150f97b4850fc36d48d3b495f44a26d6585def6442c77b
|
7
|
+
data.tar.gz: d28612967048a458317d13f504cc453438384cf63e918a14a7f5471a2be09859614f24dbd0a82ff8b5831f4a929dbb2d3356710f200e6cd88e367ac0c5a9451c
|
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.12.
|
10
|
+
- Package version: 3.12.5
|
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.12.
|
27
|
+
gem install ./pulp_python_client-3.12.5.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_python_client-3.12.
|
30
|
+
(for development, run `gem install --dev ./pulp_python_client-3.12.5.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.12.
|
36
|
+
gem 'pulp_python_client', '~> 3.12.5'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -86,14 +86,14 @@ opts = {
|
|
86
86
|
license: 'license_example', # String | Text indicating the license covering the distribution
|
87
87
|
requires_python: 'requires_python_example', # String | The Python version(s) that the distribution is guaranteed to be compatible with.
|
88
88
|
project_url: 'project_url_example', # String | A browsable URL for the project and a label for it, separated by a comma.
|
89
|
-
project_urls:
|
89
|
+
project_urls: nil, # Object | A dictionary of labels and URLs for the project.
|
90
90
|
platform: 'platform_example', # String | A comma-separated list of platform specifications, summarizing the operating systems supported by the package.
|
91
91
|
supported_platform: 'supported_platform_example', # String | Field to specify the OS and CPU for which the binary package was compiled.
|
92
|
-
requires_dist:
|
93
|
-
provides_dist:
|
94
|
-
obsoletes_dist:
|
95
|
-
requires_external:
|
96
|
-
classifiers:
|
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.
|
97
97
|
}
|
98
98
|
|
99
99
|
begin
|
data/docs/ContentPackagesApi.md
CHANGED
@@ -52,14 +52,14 @@ opts = {
|
|
52
52
|
license: 'license_example', # String | Text indicating the license covering the distribution
|
53
53
|
requires_python: 'requires_python_example', # String | The Python version(s) that the distribution is guaranteed to be compatible with.
|
54
54
|
project_url: 'project_url_example', # String | A browsable URL for the project and a label for it, separated by a comma.
|
55
|
-
project_urls:
|
55
|
+
project_urls: nil, # Object | A dictionary of labels and URLs for the project.
|
56
56
|
platform: 'platform_example', # String | A comma-separated list of platform specifications, summarizing the operating systems supported by the package.
|
57
57
|
supported_platform: 'supported_platform_example', # String | Field to specify the OS and CPU for which the binary package was compiled.
|
58
|
-
requires_dist:
|
59
|
-
provides_dist:
|
60
|
-
obsoletes_dist:
|
61
|
-
requires_external:
|
62
|
-
classifiers:
|
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.
|
63
63
|
}
|
64
64
|
|
65
65
|
begin
|
@@ -96,14 +96,14 @@ Name | Type | Description | Notes
|
|
96
96
|
**license** | **String**| Text indicating the license covering the distribution | [optional]
|
97
97
|
**requires_python** | **String**| The Python version(s) that the distribution is guaranteed to be compatible with. | [optional]
|
98
98
|
**project_url** | **String**| A browsable URL for the project and a label for it, separated by a comma. | [optional]
|
99
|
-
**project_urls** | [**
|
99
|
+
**project_urls** | [**Object**](Object.md)| A dictionary of labels and URLs for the project. | [optional]
|
100
100
|
**platform** | **String**| A comma-separated list of platform specifications, summarizing the operating systems supported by the package. | [optional]
|
101
101
|
**supported_platform** | **String**| Field to specify the OS and CPU for which the binary package was compiled. | [optional]
|
102
|
-
**requires_dist** | [**
|
103
|
-
**provides_dist** | [**
|
104
|
-
**obsoletes_dist** | [**
|
105
|
-
**requires_external** | [**
|
106
|
-
**classifiers** | [**
|
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'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]
|
107
107
|
|
108
108
|
### Return type
|
109
109
|
|
@@ -156,12 +156,13 @@ opts = {
|
|
156
156
|
orphaned_for: 3.4, # Float | Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
|
157
157
|
packagetype: 'packagetype_example', # String | Filter results where packagetype matches value * `bdist_dmg` - bdist_dmg * `bdist_dumb` - bdist_dumb * `bdist_egg` - bdist_egg * `bdist_msi` - bdist_msi * `bdist_rpm` - bdist_rpm * `bdist_wheel` - bdist_wheel * `bdist_wininst` - bdist_wininst * `sdist` - sdist
|
158
158
|
packagetype__in: ['packagetype__in_example'], # Array<String> | Filter results where packagetype is in a comma-separated list of values
|
159
|
+
prn__in: ['prn__in_example'], # Array<String> | Multiple values may be separated by commas.
|
159
160
|
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
160
161
|
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
161
|
-
q: 'q_example', # String |
|
162
|
-
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
|
163
|
-
repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
|
164
|
-
repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
|
162
|
+
q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
|
163
|
+
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF/PRN
|
164
|
+
repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
|
165
|
+
repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
|
165
166
|
requires_python: 'requires_python_example', # String | Filter results where requires_python matches value
|
166
167
|
requires_python__contains: 'requires_python__contains_example', # String | Filter results where requires_python contains value
|
167
168
|
requires_python__in: ['requires_python__in_example'], # Array<String> | Filter results where requires_python is in a comma-separated list of values
|
@@ -205,12 +206,13 @@ Name | Type | Description | Notes
|
|
205
206
|
**orphaned_for** | **Float**| Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME. | [optional]
|
206
207
|
**packagetype** | **String**| Filter results where packagetype matches value * `bdist_dmg` - bdist_dmg * `bdist_dumb` - bdist_dumb * `bdist_egg` - bdist_egg * `bdist_msi` - bdist_msi * `bdist_rpm` - bdist_rpm * `bdist_wheel` - bdist_wheel * `bdist_wininst` - bdist_wininst * `sdist` - sdist | [optional]
|
207
208
|
**packagetype__in** | [**Array<String>**](String.md)| Filter results where packagetype is in a comma-separated list of values | [optional]
|
209
|
+
**prn__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
208
210
|
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
209
211
|
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
210
|
-
**q** | **String**|
|
211
|
-
**repository_version** | **String**| Repository Version referenced by HREF | [optional]
|
212
|
-
**repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
|
213
|
-
**repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
|
212
|
+
**q** | **String**| Filter results by using NOT, AND and OR operations on other filters | [optional]
|
213
|
+
**repository_version** | **String**| Repository Version referenced by HREF/PRN | [optional]
|
214
|
+
**repository_version_added** | **String**| Repository Version referenced by HREF/PRN | [optional]
|
215
|
+
**repository_version_removed** | **String**| Repository Version referenced by HREF/PRN | [optional]
|
214
216
|
**requires_python** | **String**| Filter results where requires_python matches value | [optional]
|
215
217
|
**requires_python__contains** | **String**| Filter results where requires_python contains value | [optional]
|
216
218
|
**requires_python__in** | [**Array<String>**](String.md)| Filter results where requires_python is in a comma-separated list of values | [optional]
|
@@ -218,10 +218,11 @@ opts = {
|
|
218
218
|
name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
|
219
219
|
offset: 56, # Integer | The initial index from which to return the results.
|
220
220
|
ordering: ['ordering_example'], # Array<String> | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
221
|
+
prn__in: ['prn__in_example'], # Array<String> | Multiple values may be separated by commas.
|
221
222
|
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
222
223
|
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
223
224
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
224
|
-
q: 'q_example', # String |
|
225
|
+
q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
|
225
226
|
repository: 'repository_example', # String | Filter results where repository matches value
|
226
227
|
repository__in: ['repository__in_example'], # Array<String> | Filter results where repository is in a comma-separated list of values
|
227
228
|
with_content: 'with_content_example', # String | Filter distributions based on the content served by them
|
@@ -259,10 +260,11 @@ Name | Type | Description | Notes
|
|
259
260
|
**name__startswith** | **String**| Filter results where name starts with value | [optional]
|
260
261
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
261
262
|
**ordering** | [**Array<String>**](String.md)| Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
263
|
+
**prn__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
262
264
|
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
263
265
|
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
264
266
|
**pulp_label_select** | **String**| Filter labels by search string | [optional]
|
265
|
-
**q** | **String**|
|
267
|
+
**q** | **String**| Filter results by using NOT, AND and OR operations on other filters | [optional]
|
266
268
|
**repository** | [**String**](.md)| Filter results where repository matches value | [optional]
|
267
269
|
**repository__in** | [**Array<String>**](String.md)| Filter results where repository is in a comma-separated list of values | [optional]
|
268
270
|
**with_content** | **String**| Filter distributions based on the content served by them | [optional]
|
@@ -5,9 +5,9 @@
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
7
|
**last_serial** | **Integer** | Cache value from last PyPI sync |
|
8
|
-
**info** | [**
|
9
|
-
**releases** | [**
|
10
|
-
**urls** | [**
|
8
|
+
**info** | [**Object**](.md) | Core metadata of the package |
|
9
|
+
**releases** | [**Object**](.md) | List of all the releases of the package |
|
10
|
+
**urls** | [**Object**](.md) | |
|
11
11
|
|
12
12
|
## Code Sample
|
13
13
|
|
data/docs/PublicationsPypiApi.md
CHANGED
@@ -197,11 +197,12 @@ end
|
|
197
197
|
|
198
198
|
api_instance = PulpPythonClient::PublicationsPypiApi.new
|
199
199
|
opts = {
|
200
|
-
content: 'content_example', # String | Content Unit referenced by HREF
|
201
|
-
content__in: 'content__in_example', # String |
|
200
|
+
content: 'content_example', # String | Content Unit referenced by HREF/PRN
|
201
|
+
content__in: ['content__in_example'], # Array<String> | Multiple values may be separated by commas.
|
202
202
|
limit: 56, # Integer | Number of results to return per page.
|
203
203
|
offset: 56, # Integer | The initial index from which to return the results.
|
204
204
|
ordering: ['ordering_example'], # Array<String> | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `complete` - Complete * `-complete` - Complete (descending) * `pass_through` - Pass through * `-pass_through` - Pass through (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
205
|
+
prn__in: ['prn__in_example'], # Array<String> | Multiple values may be separated by commas.
|
205
206
|
pulp_created: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created matches value
|
206
207
|
pulp_created__gt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is greater than value
|
207
208
|
pulp_created__gte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is greater than or equal to value
|
@@ -210,9 +211,9 @@ opts = {
|
|
210
211
|
pulp_created__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where pulp_created is between two comma separated values
|
211
212
|
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
212
213
|
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
213
|
-
q: 'q_example', # String |
|
214
|
-
repository: 'repository_example', # String | Repository referenced by HREF
|
215
|
-
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
|
214
|
+
q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
|
215
|
+
repository: 'repository_example', # String | Repository referenced by HREF/PRN
|
216
|
+
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF/PRN
|
216
217
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
217
218
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
218
219
|
}
|
@@ -231,11 +232,12 @@ end
|
|
231
232
|
|
232
233
|
Name | Type | Description | Notes
|
233
234
|
------------- | ------------- | ------------- | -------------
|
234
|
-
**content** | **String**| Content Unit referenced by HREF | [optional]
|
235
|
-
**content__in** | **String
|
235
|
+
**content** | **String**| Content Unit referenced by HREF/PRN | [optional]
|
236
|
+
**content__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
236
237
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
237
238
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
238
239
|
**ordering** | [**Array<String>**](String.md)| Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `complete` - Complete * `-complete` - Complete (descending) * `pass_through` - Pass through * `-pass_through` - Pass through (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
240
|
+
**prn__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
239
241
|
**pulp_created** | **DateTime**| Filter results where pulp_created matches value | [optional]
|
240
242
|
**pulp_created__gt** | **DateTime**| Filter results where pulp_created is greater than value | [optional]
|
241
243
|
**pulp_created__gte** | **DateTime**| Filter results where pulp_created is greater than or equal to value | [optional]
|
@@ -244,9 +246,9 @@ Name | Type | Description | Notes
|
|
244
246
|
**pulp_created__range** | [**Array<DateTime>**](DateTime.md)| Filter results where pulp_created is between two comma separated values | [optional]
|
245
247
|
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
246
248
|
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
247
|
-
**q** | **String**|
|
248
|
-
**repository** | **String**| Repository referenced by HREF | [optional]
|
249
|
-
**repository_version** | [**String**](.md)| Repository Version referenced by HREF | [optional]
|
249
|
+
**q** | **String**| Filter results by using NOT, AND and OR operations on other filters | [optional]
|
250
|
+
**repository** | **String**| Repository referenced by HREF/PRN | [optional]
|
251
|
+
**repository_version** | [**String**](.md)| Repository Version referenced by HREF/PRN | [optional]
|
250
252
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
251
253
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
252
254
|
|
@@ -5,6 +5,7 @@
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
7
|
**pulp_href** | **String** | | [optional] [readonly]
|
8
|
+
**prn** | **String** | The Pulp Resource Name (PRN). | [optional] [readonly]
|
8
9
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
9
10
|
**pulp_last_updated** | **DateTime** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional] [readonly]
|
10
11
|
**base_path** | **String** | The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\") |
|
@@ -25,6 +26,7 @@ Name | Type | Description | Notes
|
|
25
26
|
require 'PulpPythonClient'
|
26
27
|
|
27
28
|
instance = PulpPythonClient::PythonPythonDistributionResponse.new(pulp_href: null,
|
29
|
+
prn: null,
|
28
30
|
pulp_created: null,
|
29
31
|
pulp_last_updated: null,
|
30
32
|
base_path: null,
|
@@ -24,14 +24,14 @@ Name | Type | Description | Notes
|
|
24
24
|
**license** | **String** | Text indicating the license covering the distribution | [optional]
|
25
25
|
**requires_python** | **String** | The Python version(s) that the distribution is guaranteed to be compatible with. | [optional]
|
26
26
|
**project_url** | **String** | A browsable URL for the project and a label for it, separated by a comma. | [optional]
|
27
|
-
**project_urls** | [**
|
27
|
+
**project_urls** | [**Object**](.md) | A dictionary of labels and URLs for the project. | [optional]
|
28
28
|
**platform** | **String** | A comma-separated list of platform specifications, summarizing the operating systems supported by the package. | [optional]
|
29
29
|
**supported_platform** | **String** | Field to specify the OS and CPU for which the binary package was compiled. | [optional]
|
30
|
-
**requires_dist** | [**
|
31
|
-
**provides_dist** | [**
|
32
|
-
**obsoletes_dist** | [**
|
33
|
-
**requires_external** | [**
|
34
|
-
**classifiers** | [**
|
30
|
+
**requires_dist** | [**Object**](.md) | A JSON list containing names of some other distutils project required by this distribution. | [optional]
|
31
|
+
**provides_dist** | [**Object**](.md) | A JSON list containing names of a Distutils project which is contained within this distribution. | [optional]
|
32
|
+
**obsoletes_dist** | [**Object**](.md) | 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. | [optional]
|
33
|
+
**requires_external** | [**Object**](.md) | A JSON list containing some dependency in the system that the distribution is to be used. | [optional]
|
34
|
+
**classifiers** | [**Object**](.md) | A JSON list containing classification values for a Python package. | [optional]
|
35
35
|
|
36
36
|
## Code Sample
|
37
37
|
|
@@ -5,6 +5,7 @@
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
7
|
**pulp_href** | **String** | | [optional] [readonly]
|
8
|
+
**prn** | **String** | The Pulp Resource Name (PRN). | [optional] [readonly]
|
8
9
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
9
10
|
**pulp_last_updated** | **DateTime** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional] [readonly]
|
10
11
|
**artifact** | **String** | Artifact file representing the physical content | [optional]
|
@@ -27,14 +28,14 @@ Name | Type | Description | Notes
|
|
27
28
|
**license** | **String** | Text indicating the license covering the distribution | [optional]
|
28
29
|
**requires_python** | **String** | The Python version(s) that the distribution is guaranteed to be compatible with. | [optional]
|
29
30
|
**project_url** | **String** | A browsable URL for the project and a label for it, separated by a comma. | [optional]
|
30
|
-
**project_urls** | [**
|
31
|
+
**project_urls** | [**Object**](.md) | A dictionary of labels and URLs for the project. | [optional]
|
31
32
|
**platform** | **String** | A comma-separated list of platform specifications, summarizing the operating systems supported by the package. | [optional]
|
32
33
|
**supported_platform** | **String** | Field to specify the OS and CPU for which the binary package was compiled. | [optional]
|
33
|
-
**requires_dist** | [**
|
34
|
-
**provides_dist** | [**
|
35
|
-
**obsoletes_dist** | [**
|
36
|
-
**requires_external** | [**
|
37
|
-
**classifiers** | [**
|
34
|
+
**requires_dist** | [**Object**](.md) | A JSON list containing names of some other distutils project required by this distribution. | [optional]
|
35
|
+
**provides_dist** | [**Object**](.md) | A JSON list containing names of a Distutils project which is contained within this distribution. | [optional]
|
36
|
+
**obsoletes_dist** | [**Object**](.md) | 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. | [optional]
|
37
|
+
**requires_external** | [**Object**](.md) | A JSON list containing some dependency in the system that the distribution is to be used. | [optional]
|
38
|
+
**classifiers** | [**Object**](.md) | A JSON list containing classification values for a Python package. | [optional]
|
38
39
|
|
39
40
|
## Code Sample
|
40
41
|
|
@@ -42,6 +43,7 @@ Name | Type | Description | Notes
|
|
42
43
|
require 'PulpPythonClient'
|
43
44
|
|
44
45
|
instance = PulpPythonClient::PythonPythonPackageContentResponse.new(pulp_href: null,
|
46
|
+
prn: null,
|
45
47
|
pulp_created: null,
|
46
48
|
pulp_last_updated: null,
|
47
49
|
artifact: null,
|
@@ -5,6 +5,7 @@
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
7
|
**pulp_href** | **String** | | [optional] [readonly]
|
8
|
+
**prn** | **String** | The Pulp Resource Name (PRN). | [optional] [readonly]
|
8
9
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
9
10
|
**pulp_last_updated** | **DateTime** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional] [readonly]
|
10
11
|
**repository_version** | **String** | | [optional]
|
@@ -17,6 +18,7 @@ Name | Type | Description | Notes
|
|
17
18
|
require 'PulpPythonClient'
|
18
19
|
|
19
20
|
instance = PulpPythonClient::PythonPythonPublicationResponse.new(pulp_href: null,
|
21
|
+
prn: null,
|
20
22
|
pulp_created: null,
|
21
23
|
pulp_last_updated: null,
|
22
24
|
repository_version: null,
|
@@ -5,6 +5,7 @@
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
7
|
**pulp_href** | **String** | | [optional] [readonly]
|
8
|
+
**prn** | **String** | The Pulp Resource Name (PRN). | [optional] [readonly]
|
8
9
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
9
10
|
**pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
|
10
11
|
**name** | **String** | A unique name for this remote. |
|
@@ -37,6 +38,7 @@ Name | Type | Description | Notes
|
|
37
38
|
require 'PulpPythonClient'
|
38
39
|
|
39
40
|
instance = PulpPythonClient::PythonPythonRemoteResponse.new(pulp_href: null,
|
41
|
+
prn: null,
|
40
42
|
pulp_created: null,
|
41
43
|
pulp_last_updated: null,
|
42
44
|
name: null,
|
@@ -5,6 +5,7 @@
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
7
|
**pulp_href** | **String** | | [optional] [readonly]
|
8
|
+
**prn** | **String** | The Pulp Resource Name (PRN). | [optional] [readonly]
|
8
9
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
9
10
|
**pulp_last_updated** | **DateTime** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional] [readonly]
|
10
11
|
**versions_href** | **String** | | [optional] [readonly]
|
@@ -22,6 +23,7 @@ Name | Type | Description | Notes
|
|
22
23
|
require 'PulpPythonClient'
|
23
24
|
|
24
25
|
instance = PulpPythonClient::PythonPythonRepositoryResponse.new(pulp_href: null,
|
26
|
+
prn: null,
|
25
27
|
pulp_created: null,
|
26
28
|
pulp_last_updated: null,
|
27
29
|
versions_href: null,
|
data/docs/RemotesPythonApi.md
CHANGED
@@ -274,6 +274,7 @@ opts = {
|
|
274
274
|
name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
|
275
275
|
offset: 56, # Integer | The initial index from which to return the results.
|
276
276
|
ordering: ['ordering_example'], # Array<String> | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `url` - Url * `-url` - Url (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `proxy_url` - Proxy url * `-proxy_url` - Proxy url (descending) * `proxy_username` - Proxy username * `-proxy_username` - Proxy username (descending) * `proxy_password` - Proxy password * `-proxy_password` - Proxy password (descending) * `download_concurrency` - Download concurrency * `-download_concurrency` - Download concurrency (descending) * `max_retries` - Max retries * `-max_retries` - Max retries (descending) * `policy` - Policy * `-policy` - Policy (descending) * `total_timeout` - Total timeout * `-total_timeout` - Total timeout (descending) * `connect_timeout` - Connect timeout * `-connect_timeout` - Connect timeout (descending) * `sock_connect_timeout` - Sock connect timeout * `-sock_connect_timeout` - Sock connect timeout (descending) * `sock_read_timeout` - Sock read timeout * `-sock_read_timeout` - Sock read timeout (descending) * `headers` - Headers * `-headers` - Headers (descending) * `rate_limit` - Rate limit * `-rate_limit` - Rate limit (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
277
|
+
prn__in: ['prn__in_example'], # Array<String> | Multiple values may be separated by commas.
|
277
278
|
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
278
279
|
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
279
280
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
@@ -283,7 +284,7 @@ opts = {
|
|
283
284
|
pulp_last_updated__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is less than value
|
284
285
|
pulp_last_updated__lte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is less than or equal to value
|
285
286
|
pulp_last_updated__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where pulp_last_updated is between two comma separated values
|
286
|
-
q: 'q_example', # String |
|
287
|
+
q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
|
287
288
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
288
289
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
289
290
|
}
|
@@ -314,6 +315,7 @@ Name | Type | Description | Notes
|
|
314
315
|
**name__startswith** | **String**| Filter results where name starts with value | [optional]
|
315
316
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
316
317
|
**ordering** | [**Array<String>**](String.md)| Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `url` - Url * `-url` - Url (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `proxy_url` - Proxy url * `-proxy_url` - Proxy url (descending) * `proxy_username` - Proxy username * `-proxy_username` - Proxy username (descending) * `proxy_password` - Proxy password * `-proxy_password` - Proxy password (descending) * `download_concurrency` - Download concurrency * `-download_concurrency` - Download concurrency (descending) * `max_retries` - Max retries * `-max_retries` - Max retries (descending) * `policy` - Policy * `-policy` - Policy (descending) * `total_timeout` - Total timeout * `-total_timeout` - Total timeout (descending) * `connect_timeout` - Connect timeout * `-connect_timeout` - Connect timeout (descending) * `sock_connect_timeout` - Sock connect timeout * `-sock_connect_timeout` - Sock connect timeout (descending) * `sock_read_timeout` - Sock read timeout * `-sock_read_timeout` - Sock read timeout (descending) * `headers` - Headers * `-headers` - Headers (descending) * `rate_limit` - Rate limit * `-rate_limit` - Rate limit (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
318
|
+
**prn__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
317
319
|
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
318
320
|
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
319
321
|
**pulp_label_select** | **String**| Filter labels by search string | [optional]
|
@@ -323,7 +325,7 @@ Name | Type | Description | Notes
|
|
323
325
|
**pulp_last_updated__lt** | **DateTime**| Filter results where pulp_last_updated is less than value | [optional]
|
324
326
|
**pulp_last_updated__lte** | **DateTime**| Filter results where pulp_last_updated is less than or equal to value | [optional]
|
325
327
|
**pulp_last_updated__range** | [**Array<DateTime>**](DateTime.md)| Filter results where pulp_last_updated is between two comma separated values | [optional]
|
326
|
-
**q** | **String**|
|
328
|
+
**q** | **String**| Filter results by using NOT, AND and OR operations on other filters | [optional]
|
327
329
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
328
330
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
329
331
|
|
@@ -204,7 +204,7 @@ end
|
|
204
204
|
|
205
205
|
api_instance = PulpPythonClient::RepositoriesPythonApi.new
|
206
206
|
opts = {
|
207
|
-
latest_with_content: 'latest_with_content_example', # String | Content Unit referenced by HREF
|
207
|
+
latest_with_content: 'latest_with_content_example', # String | Content Unit referenced by HREF/PRN
|
208
208
|
limit: 56, # Integer | Number of results to return per page.
|
209
209
|
name: 'name_example', # String | Filter results where name matches value
|
210
210
|
name__contains: 'name__contains_example', # String | Filter results where name contains value
|
@@ -217,10 +217,11 @@ opts = {
|
|
217
217
|
name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
|
218
218
|
offset: 56, # Integer | The initial index from which to return the results.
|
219
219
|
ordering: ['ordering_example'], # Array<String> | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
220
|
+
prn__in: ['prn__in_example'], # Array<String> | Multiple values may be separated by commas.
|
220
221
|
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
221
222
|
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
222
223
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
223
|
-
q: 'q_example', # String |
|
224
|
+
q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
|
224
225
|
remote: 'remote_example', # String | Foreign Key referenced by HREF
|
225
226
|
retain_repo_versions: 56, # Integer | Filter results where retain_repo_versions matches value
|
226
227
|
retain_repo_versions__gt: 56, # Integer | Filter results where retain_repo_versions is greater than value
|
@@ -230,7 +231,7 @@ opts = {
|
|
230
231
|
retain_repo_versions__lte: 56, # Integer | Filter results where retain_repo_versions is less than or equal to value
|
231
232
|
retain_repo_versions__ne: 56, # Integer | Filter results where retain_repo_versions not equal to value
|
232
233
|
retain_repo_versions__range: [56], # Array<Integer> | Filter results where retain_repo_versions is between two comma separated values
|
233
|
-
with_content: 'with_content_example', # String | Content Unit referenced by HREF
|
234
|
+
with_content: 'with_content_example', # String | Content Unit referenced by HREF/PRN
|
234
235
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
235
236
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
236
237
|
}
|
@@ -249,7 +250,7 @@ end
|
|
249
250
|
|
250
251
|
Name | Type | Description | Notes
|
251
252
|
------------- | ------------- | ------------- | -------------
|
252
|
-
**latest_with_content** | **String**| Content Unit referenced by HREF | [optional]
|
253
|
+
**latest_with_content** | **String**| Content Unit referenced by HREF/PRN | [optional]
|
253
254
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
254
255
|
**name** | **String**| Filter results where name matches value | [optional]
|
255
256
|
**name__contains** | **String**| Filter results where name contains value | [optional]
|
@@ -262,10 +263,11 @@ Name | Type | Description | Notes
|
|
262
263
|
**name__startswith** | **String**| Filter results where name starts with value | [optional]
|
263
264
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
264
265
|
**ordering** | [**Array<String>**](String.md)| Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
266
|
+
**prn__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
265
267
|
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
266
268
|
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
267
269
|
**pulp_label_select** | **String**| Filter labels by search string | [optional]
|
268
|
-
**q** | **String**|
|
270
|
+
**q** | **String**| Filter results by using NOT, AND and OR operations on other filters | [optional]
|
269
271
|
**remote** | [**String**](.md)| Foreign Key referenced by HREF | [optional]
|
270
272
|
**retain_repo_versions** | **Integer**| Filter results where retain_repo_versions matches value | [optional]
|
271
273
|
**retain_repo_versions__gt** | **Integer**| Filter results where retain_repo_versions is greater than value | [optional]
|
@@ -275,7 +277,7 @@ Name | Type | Description | Notes
|
|
275
277
|
**retain_repo_versions__lte** | **Integer**| Filter results where retain_repo_versions is less than or equal to value | [optional]
|
276
278
|
**retain_repo_versions__ne** | **Integer**| Filter results where retain_repo_versions not equal to value | [optional]
|
277
279
|
**retain_repo_versions__range** | [**Array<Integer>**](Integer.md)| Filter results where retain_repo_versions is between two comma separated values | [optional]
|
278
|
-
**with_content** | **String**| Content Unit referenced by HREF | [optional]
|
280
|
+
**with_content** | **String**| Content Unit referenced by HREF/PRN | [optional]
|
279
281
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
280
282
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
281
283
|
|
@@ -87,8 +87,8 @@ end
|
|
87
87
|
api_instance = PulpPythonClient::RepositoriesPythonVersionsApi.new
|
88
88
|
python_python_repository_href = 'python_python_repository_href_example' # String |
|
89
89
|
opts = {
|
90
|
-
content: 'content_example', # String | Content Unit referenced by HREF
|
91
|
-
content__in: 'content__in_example', # String |
|
90
|
+
content: 'content_example', # String | Content Unit referenced by HREF/PRN
|
91
|
+
content__in: ['content__in_example'], # Array<String> | Multiple values may be separated by commas.
|
92
92
|
limit: 56, # Integer | Number of results to return per page.
|
93
93
|
number: 56, # Integer | Filter results where number matches value
|
94
94
|
number__gt: 56, # Integer | Filter results where number is greater than value
|
@@ -98,6 +98,7 @@ opts = {
|
|
98
98
|
number__range: [56], # Array<Integer> | Filter results where number is between two comma separated values
|
99
99
|
offset: 56, # Integer | The initial index from which to return the results.
|
100
100
|
ordering: ['ordering_example'], # Array<String> | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
101
|
+
prn__in: ['prn__in_example'], # Array<String> | Multiple values may be separated by commas.
|
101
102
|
pulp_created: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created matches value
|
102
103
|
pulp_created__gt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is greater than value
|
103
104
|
pulp_created__gte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is greater than or equal to value
|
@@ -105,7 +106,7 @@ opts = {
|
|
105
106
|
pulp_created__lte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is less than or equal to value
|
106
107
|
pulp_created__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where pulp_created is between two comma separated values
|
107
108
|
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
108
|
-
q: 'q_example', # String |
|
109
|
+
q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
|
109
110
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
110
111
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
111
112
|
}
|
@@ -125,8 +126,8 @@ end
|
|
125
126
|
Name | Type | Description | Notes
|
126
127
|
------------- | ------------- | ------------- | -------------
|
127
128
|
**python_python_repository_href** | **String**| |
|
128
|
-
**content** | **String**| Content Unit referenced by HREF | [optional]
|
129
|
-
**content__in** | **String
|
129
|
+
**content** | **String**| Content Unit referenced by HREF/PRN | [optional]
|
130
|
+
**content__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
130
131
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
131
132
|
**number** | **Integer**| Filter results where number matches value | [optional]
|
132
133
|
**number__gt** | **Integer**| Filter results where number is greater than value | [optional]
|
@@ -136,6 +137,7 @@ Name | Type | Description | Notes
|
|
136
137
|
**number__range** | [**Array<Integer>**](Integer.md)| Filter results where number is between two comma separated values | [optional]
|
137
138
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
138
139
|
**ordering** | [**Array<String>**](String.md)| Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
140
|
+
**prn__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
139
141
|
**pulp_created** | **DateTime**| Filter results where pulp_created matches value | [optional]
|
140
142
|
**pulp_created__gt** | **DateTime**| Filter results where pulp_created is greater than value | [optional]
|
141
143
|
**pulp_created__gte** | **DateTime**| Filter results where pulp_created is greater than or equal to value | [optional]
|
@@ -143,7 +145,7 @@ Name | Type | Description | Notes
|
|
143
145
|
**pulp_created__lte** | **DateTime**| Filter results where pulp_created is less than or equal to value | [optional]
|
144
146
|
**pulp_created__range** | [**Array<DateTime>**](DateTime.md)| Filter results where pulp_created is between two comma separated values | [optional]
|
145
147
|
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
146
|
-
**q** | **String**|
|
148
|
+
**q** | **String**| Filter results by using NOT, AND and OR operations on other filters | [optional]
|
147
149
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
148
150
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
149
151
|
|
@@ -5,6 +5,7 @@
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
7
|
**pulp_href** | **String** | | [optional] [readonly]
|
8
|
+
**prn** | **String** | The Pulp Resource Name (PRN). | [optional] [readonly]
|
8
9
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
9
10
|
**pulp_last_updated** | **DateTime** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional] [readonly]
|
10
11
|
**number** | **Integer** | | [optional] [readonly]
|
@@ -18,6 +19,7 @@ Name | Type | Description | Notes
|
|
18
19
|
require 'PulpPythonClient'
|
19
20
|
|
20
21
|
instance = PulpPythonClient::RepositoryVersionResponse.new(pulp_href: null,
|
22
|
+
prn: null,
|
21
23
|
pulp_created: null,
|
22
24
|
pulp_last_updated: null,
|
23
25
|
number: null,
|