pulpcore_client 3.23.24 → 3.24.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.
- checksums.yaml +4 -4
- data/README.md +7 -5
- data/docs/AccessPoliciesApi.md +6 -2
- data/docs/ArtifactDistributionResponse.md +9 -9
- data/docs/ArtifactsApi.md +6 -2
- data/docs/ContentApi.md +8 -2
- data/docs/ContentguardsApi.md +8 -2
- data/docs/ContentguardsContentRedirectApi.md +6 -2
- data/docs/ContentguardsRbacApi.md +6 -2
- data/docs/DistributionsApi.md +8 -2
- data/docs/DistributionsArtifactsApi.md +6 -2
- data/docs/Domain.md +1 -1
- data/docs/DomainResponse.md +1 -1
- data/docs/DomainsApi.md +6 -2
- data/docs/ExportersFilesystemApi.md +6 -2
- data/docs/ExportersPulpApi.md +6 -2
- data/docs/FilesystemExporter.md +1 -1
- data/docs/FilesystemExporterResponse.md +1 -1
- data/docs/GroupsApi.md +6 -2
- data/docs/GroupsRolesApi.md +6 -2
- data/docs/ImportersPulpApi.md +6 -2
- data/docs/PatchedDomain.md +1 -1
- data/docs/PatchedFilesystemExporter.md +1 -1
- data/docs/PublicationsApi.md +9 -3
- data/docs/RemoteResponse.md +1 -1
- data/docs/RemotesApi.md +8 -2
- data/docs/RepositoriesApi.md +8 -2
- data/docs/RepositoryVersionsApi.md +6 -2
- data/docs/RolesApi.md +6 -2
- data/docs/SigningServicesApi.md +6 -2
- data/docs/TaskSchedulesApi.md +6 -2
- data/docs/TasksApi.md +8 -4
- data/docs/UploadsApi.md +6 -2
- data/docs/UpstreamPulpsApi.md +6 -4
- data/docs/UsersApi.md +6 -2
- data/docs/UsersRolesApi.md +6 -2
- data/docs/WorkersApi.md +6 -2
- data/lib/pulpcore_client/api/access_policies_api.rb +8 -2
- data/lib/pulpcore_client/api/artifacts_api.rb +8 -2
- data/lib/pulpcore_client/api/content_api.rb +15 -2
- data/lib/pulpcore_client/api/contentguards_api.rb +15 -2
- data/lib/pulpcore_client/api/contentguards_content_redirect_api.rb +8 -2
- data/lib/pulpcore_client/api/contentguards_rbac_api.rb +8 -2
- data/lib/pulpcore_client/api/distributions_api.rb +15 -2
- data/lib/pulpcore_client/api/distributions_artifacts_api.rb +8 -2
- data/lib/pulpcore_client/api/domains_api.rb +8 -2
- data/lib/pulpcore_client/api/exporters_filesystem_api.rb +8 -2
- data/lib/pulpcore_client/api/exporters_pulp_api.rb +8 -2
- data/lib/pulpcore_client/api/groups_api.rb +8 -2
- data/lib/pulpcore_client/api/groups_roles_api.rb +8 -2
- data/lib/pulpcore_client/api/importers_pulp_api.rb +8 -2
- data/lib/pulpcore_client/api/publications_api.rb +17 -4
- data/lib/pulpcore_client/api/remotes_api.rb +15 -2
- data/lib/pulpcore_client/api/repositories_api.rb +15 -2
- data/lib/pulpcore_client/api/repository_versions_api.rb +7 -2
- data/lib/pulpcore_client/api/roles_api.rb +8 -2
- data/lib/pulpcore_client/api/signing_services_api.rb +8 -2
- data/lib/pulpcore_client/api/task_schedules_api.rb +8 -2
- data/lib/pulpcore_client/api/tasks_api.rb +10 -4
- data/lib/pulpcore_client/api/uploads_api.rb +8 -2
- data/lib/pulpcore_client/api/upstream_pulps_api.rb +15 -7
- data/lib/pulpcore_client/api/users_api.rb +8 -2
- data/lib/pulpcore_client/api/users_roles_api.rb +8 -2
- data/lib/pulpcore_client/api/workers_api.rb +8 -2
- data/lib/pulpcore_client/models/artifact_distribution_response.rb +42 -42
- data/lib/pulpcore_client/models/domain.rb +1 -1
- data/lib/pulpcore_client/models/domain_response.rb +1 -1
- data/lib/pulpcore_client/models/filesystem_exporter.rb +1 -1
- data/lib/pulpcore_client/models/filesystem_exporter_response.rb +1 -1
- data/lib/pulpcore_client/models/patched_domain.rb +1 -1
- data/lib/pulpcore_client/models/patched_filesystem_exporter.rb +1 -1
- data/lib/pulpcore_client/models/remote_response.rb +1 -1
- data/lib/pulpcore_client/version.rb +1 -1
- data/spec/api/access_policies_api_spec.rb +3 -1
- data/spec/api/artifacts_api_spec.rb +3 -1
- data/spec/api/content_api_spec.rb +4 -1
- data/spec/api/contentguards_api_spec.rb +4 -1
- data/spec/api/contentguards_content_redirect_api_spec.rb +3 -1
- data/spec/api/contentguards_rbac_api_spec.rb +3 -1
- data/spec/api/distributions_api_spec.rb +4 -1
- data/spec/api/distributions_artifacts_api_spec.rb +3 -1
- data/spec/api/domains_api_spec.rb +3 -1
- data/spec/api/exporters_filesystem_api_spec.rb +3 -1
- data/spec/api/exporters_pulp_api_spec.rb +3 -1
- data/spec/api/groups_api_spec.rb +3 -1
- data/spec/api/groups_roles_api_spec.rb +3 -1
- data/spec/api/importers_pulp_api_spec.rb +3 -1
- data/spec/api/publications_api_spec.rb +5 -2
- data/spec/api/remotes_api_spec.rb +4 -1
- data/spec/api/repositories_api_spec.rb +4 -1
- data/spec/api/repository_versions_api_spec.rb +3 -1
- data/spec/api/roles_api_spec.rb +3 -1
- data/spec/api/signing_services_api_spec.rb +3 -1
- data/spec/api/task_schedules_api_spec.rb +3 -1
- data/spec/api/tasks_api_spec.rb +4 -2
- data/spec/api/uploads_api_spec.rb +3 -1
- data/spec/api/upstream_pulps_api_spec.rb +2 -1
- data/spec/api/users_api_spec.rb +3 -1
- data/spec/api/users_roles_api_spec.rb +3 -1
- data/spec/api/workers_api_spec.rb +3 -1
- data/spec/models/artifact_distribution_response_spec.rb +6 -6
- metadata +143 -143
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 74ccb3c71cbaa8c395ed0dd79b1b1ed207981a6c8c5d3c740ccfbb1f3af28874
|
|
4
|
+
data.tar.gz: 0c58beacfe3db4b5f7ca8cadfaae2d64e1f4b777c4f8fee31010e1daf734e789
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ed3b75f9716e3d061d96c30bd59fad0e44f4fd38029b15d906b5a3195bbe5b5ae4f22f2d340e6659af436fdc3ae101c8cf093040b6897d5d28353dc6bb35e38
|
|
7
|
+
data.tar.gz: 4873993ab4a8acd0545431846c9ea231a1fbf33eb22ae6a4c950d80b132c01aa2f2398b1beb484efe030abb2f767aa120ab80920b42a85862a9d6e2c30a0ae41
|
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.
|
|
10
|
+
- Package version: 3.24.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 pulpcore_client.gemspec
|
|
|
24
24
|
Then either install the gem locally:
|
|
25
25
|
|
|
26
26
|
```shell
|
|
27
|
-
gem install ./pulpcore_client-3.
|
|
27
|
+
gem install ./pulpcore_client-3.24.0.gem
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
(for development, run `gem install --dev ./pulpcore_client-3.
|
|
30
|
+
(for development, run `gem install --dev ./pulpcore_client-3.24.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 'pulpcore_client', '~> 3.
|
|
36
|
+
gem 'pulpcore_client', '~> 3.24.0'
|
|
37
37
|
|
|
38
38
|
### Install from Git
|
|
39
39
|
|
|
@@ -69,7 +69,9 @@ opts = {
|
|
|
69
69
|
customized: true, # Boolean | Filter results where customized matches value
|
|
70
70
|
limit: 56, # Integer | Number of results to return per page.
|
|
71
71
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
72
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
72
|
+
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) * `creation_hooks` - Creation hooks * `-creation_hooks` - Creation hooks (descending) * `statements` - Statements * `-statements` - Statements (descending) * `viewset_name` - Viewset name * `-viewset_name` - Viewset name (descending) * `customized` - Customized * `-customized` - Customized (descending) * `queryset_scoping` - Queryset scoping * `-queryset_scoping` - Queryset scoping (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
73
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
74
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
73
75
|
viewset_name: 'viewset_name_example', # String | Filter results where viewset_name matches value
|
|
74
76
|
viewset_name__contains: 'viewset_name__contains_example', # String | Filter results where viewset_name contains value
|
|
75
77
|
viewset_name__icontains: 'viewset_name__icontains_example', # String | Filter results where viewset_name contains value
|
data/docs/AccessPoliciesApi.md
CHANGED
|
@@ -37,7 +37,9 @@ opts = {
|
|
|
37
37
|
customized: true, # Boolean | Filter results where customized matches value
|
|
38
38
|
limit: 56, # Integer | Number of results to return per page.
|
|
39
39
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
40
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
40
|
+
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) * `creation_hooks` - Creation hooks * `-creation_hooks` - Creation hooks (descending) * `statements` - Statements * `-statements` - Statements (descending) * `viewset_name` - Viewset name * `-viewset_name` - Viewset name (descending) * `customized` - Customized * `-customized` - Customized (descending) * `queryset_scoping` - Queryset scoping * `-queryset_scoping` - Queryset scoping (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
41
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
42
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
41
43
|
viewset_name: 'viewset_name_example', # String | Filter results where viewset_name matches value
|
|
42
44
|
viewset_name__contains: 'viewset_name__contains_example', # String | Filter results where viewset_name contains value
|
|
43
45
|
viewset_name__icontains: 'viewset_name__icontains_example', # String | Filter results where viewset_name contains value
|
|
@@ -64,7 +66,9 @@ Name | Type | Description | Notes
|
|
|
64
66
|
**customized** | **Boolean**| Filter results where customized matches value | [optional]
|
|
65
67
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
66
68
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
67
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
69
|
+
**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) * `creation_hooks` - Creation hooks * `-creation_hooks` - Creation hooks (descending) * `statements` - Statements * `-statements` - Statements (descending) * `viewset_name` - Viewset name * `-viewset_name` - Viewset name (descending) * `customized` - Customized * `-customized` - Customized (descending) * `queryset_scoping` - Queryset scoping * `-queryset_scoping` - Queryset scoping (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
70
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
71
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
68
72
|
**viewset_name** | **String**| Filter results where viewset_name matches value | [optional]
|
|
69
73
|
**viewset_name__contains** | **String**| Filter results where viewset_name contains value | [optional]
|
|
70
74
|
**viewset_name__icontains** | **String**| Filter results where viewset_name contains value | [optional]
|
|
@@ -4,26 +4,26 @@
|
|
|
4
4
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
|
-
**pulp_href** | **String** | | [optional] [readonly]
|
|
8
|
-
**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\") |
|
|
9
|
-
**base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
|
|
10
7
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
|
11
|
-
**
|
|
8
|
+
**base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
|
|
12
9
|
**content_guard** | **String** | An optional content-guard. | [optional]
|
|
10
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
|
11
|
+
**pulp_labels** | **Hash<String, String>** | | [optional]
|
|
13
12
|
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
|
13
|
+
**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\") |
|
|
14
14
|
|
|
15
15
|
## Code Sample
|
|
16
16
|
|
|
17
17
|
```ruby
|
|
18
18
|
require 'PulpcoreClient'
|
|
19
19
|
|
|
20
|
-
instance = PulpcoreClient::ArtifactDistributionResponse.new(
|
|
21
|
-
base_path: null,
|
|
20
|
+
instance = PulpcoreClient::ArtifactDistributionResponse.new(pulp_created: null,
|
|
22
21
|
base_url: null,
|
|
23
|
-
pulp_created: null,
|
|
24
|
-
pulp_labels: null,
|
|
25
22
|
content_guard: null,
|
|
26
|
-
|
|
23
|
+
pulp_href: null,
|
|
24
|
+
pulp_labels: null,
|
|
25
|
+
name: null,
|
|
26
|
+
base_path: null)
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
|
data/docs/ArtifactsApi.md
CHANGED
|
@@ -157,7 +157,9 @@ opts = {
|
|
|
157
157
|
limit: 56, # Integer | Number of results to return per page.
|
|
158
158
|
md5: 'md5_example', # String | Filter results where md5 matches value
|
|
159
159
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
160
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
160
|
+
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) * `file` - File * `-file` - File (descending) * `size` - Size * `-size` - Size (descending) * `md5` - Md5 * `-md5` - Md5 (descending) * `sha1` - Sha1 * `-sha1` - Sha1 (descending) * `sha224` - Sha224 * `-sha224` - Sha224 (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `sha384` - Sha384 * `-sha384` - Sha384 (descending) * `sha512` - Sha512 * `-sha512` - Sha512 (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
161
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
162
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
161
163
|
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
|
|
162
164
|
sha1: 'sha1_example', # String | Filter results where sha1 matches value
|
|
163
165
|
sha224: 'sha224_example', # String | Filter results where sha224 matches value
|
|
@@ -185,7 +187,9 @@ Name | Type | Description | Notes
|
|
|
185
187
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
186
188
|
**md5** | **String**| Filter results where md5 matches value | [optional]
|
|
187
189
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
188
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
190
|
+
**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) * `file` - File * `-file` - File (descending) * `size` - Size * `-size` - Size (descending) * `md5` - Md5 * `-md5` - Md5 (descending) * `sha1` - Sha1 * `-sha1` - Sha1 (descending) * `sha224` - Sha224 * `-sha224` - Sha224 (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `sha384` - Sha384 * `-sha384` - Sha384 (descending) * `sha512` - Sha512 * `-sha512` - Sha512 (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
191
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
192
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
189
193
|
**repository_version** | **String**| Repository Version referenced by HREF | [optional]
|
|
190
194
|
**sha1** | **String**| Filter results where sha1 matches value | [optional]
|
|
191
195
|
**sha224** | **String**| Filter results where sha224 matches value | [optional]
|
data/docs/ContentApi.md
CHANGED
|
@@ -32,7 +32,10 @@ api_instance = PulpcoreClient::ContentApi.new
|
|
|
32
32
|
opts = {
|
|
33
33
|
limit: 56, # Integer | Number of results to return per page.
|
|
34
34
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
35
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
35
|
+
ordering: ['ordering_example'], # Array<String> | Ordering * `pk` - Pk * `-pk` - Pk (descending)
|
|
36
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
37
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
38
|
+
pulp_type__in: ['pulp_type__in_example'], # Array<String> | Pulp type is in * `core.publishedmetadata` - core.publishedmetadata * `file.file` - file.file
|
|
36
39
|
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
|
|
37
40
|
repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
|
|
38
41
|
repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
|
|
@@ -56,7 +59,10 @@ Name | Type | Description | Notes
|
|
|
56
59
|
------------- | ------------- | ------------- | -------------
|
|
57
60
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
58
61
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
59
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
62
|
+
**ordering** | [**Array<String>**](String.md)| Ordering * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
63
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
64
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
65
|
+
**pulp_type__in** | [**Array<String>**](String.md)| Pulp type is in * `core.publishedmetadata` - core.publishedmetadata * `file.file` - file.file | [optional]
|
|
60
66
|
**repository_version** | **String**| Repository Version referenced by HREF | [optional]
|
|
61
67
|
**repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
|
|
62
68
|
**repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
|
data/docs/ContentguardsApi.md
CHANGED
|
@@ -37,7 +37,10 @@ opts = {
|
|
|
37
37
|
name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
|
|
38
38
|
name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
|
|
39
39
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
40
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
40
|
+
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) * `description` - Description * `-description` - Description (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
41
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
42
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
43
|
+
pulp_type__in: ['pulp_type__in_example'], # Array<String> | Pulp type is in * `core.rbac` - core.rbac * `core.content_redirect` - core.content_redirect * `certguard.rhsm` - certguard.rhsm * `certguard.x509` - certguard.x509
|
|
41
44
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
42
45
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
43
46
|
}
|
|
@@ -63,7 +66,10 @@ Name | Type | Description | Notes
|
|
|
63
66
|
**name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
|
|
64
67
|
**name__startswith** | **String**| Filter results where name starts with value | [optional]
|
|
65
68
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
66
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
69
|
+
**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) * `description` - Description * `-description` - Description (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
70
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
71
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
72
|
+
**pulp_type__in** | [**Array<String>**](String.md)| Pulp type is in * `core.rbac` - core.rbac * `core.content_redirect` - core.content_redirect * `certguard.rhsm` - certguard.rhsm * `certguard.x509` - certguard.x509 | [optional]
|
|
67
73
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
68
74
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
69
75
|
|
|
@@ -205,7 +205,9 @@ opts = {
|
|
|
205
205
|
name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
|
|
206
206
|
name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
|
|
207
207
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
208
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
208
|
+
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) * `description` - Description * `-description` - Description (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
209
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
210
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
209
211
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
210
212
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
211
213
|
}
|
|
@@ -231,7 +233,9 @@ Name | Type | Description | Notes
|
|
|
231
233
|
**name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
|
|
232
234
|
**name__startswith** | **String**| Filter results where name starts with value | [optional]
|
|
233
235
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
234
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
236
|
+
**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) * `description` - Description * `-description` - Description (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
237
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
238
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
235
239
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
236
240
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
237
241
|
|
|
@@ -205,7 +205,9 @@ opts = {
|
|
|
205
205
|
name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
|
|
206
206
|
name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
|
|
207
207
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
208
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
208
|
+
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) * `description` - Description * `-description` - Description (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
209
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
210
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
209
211
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
210
212
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
211
213
|
}
|
|
@@ -231,7 +233,9 @@ Name | Type | Description | Notes
|
|
|
231
233
|
**name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
|
|
232
234
|
**name__startswith** | **String**| Filter results where name starts with value | [optional]
|
|
233
235
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
234
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
236
|
+
**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) * `description` - Description * `-description` - Description (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
237
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
238
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
235
239
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
236
240
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
237
241
|
|
data/docs/DistributionsApi.md
CHANGED
|
@@ -41,8 +41,11 @@ opts = {
|
|
|
41
41
|
name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
|
|
42
42
|
name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
|
|
43
43
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
44
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
44
|
+
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) * `pk` - Pk * `-pk` - Pk (descending)
|
|
45
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
46
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
45
47
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
|
48
|
+
pulp_type__in: ['pulp_type__in_example'], # Array<String> | Pulp type is in * `core.artifact` - core.artifact * `file.file` - file.file
|
|
46
49
|
repository: 'repository_example', # String | Filter results where repository matches value
|
|
47
50
|
repository__in: ['repository__in_example'], # Array<String> | Filter results where repository is in a comma-separated list of values
|
|
48
51
|
with_content: 'with_content_example', # String | Filter distributions based on the content served by them
|
|
@@ -75,8 +78,11 @@ Name | Type | Description | Notes
|
|
|
75
78
|
**name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
|
|
76
79
|
**name__startswith** | **String**| Filter results where name starts with value | [optional]
|
|
77
80
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
78
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
81
|
+
**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) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
82
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
83
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
79
84
|
**pulp_label_select** | **String**| Filter labels by search string | [optional]
|
|
85
|
+
**pulp_type__in** | [**Array<String>**](String.md)| Pulp type is in * `core.artifact` - core.artifact * `file.file` - file.file | [optional]
|
|
80
86
|
**repository** | **String**| Filter results where repository matches value | [optional]
|
|
81
87
|
**repository__in** | [**Array<String>**](String.md)| Filter results where repository is in a comma-separated list of values | [optional]
|
|
82
88
|
**with_content** | **String**| Filter distributions based on the content served by them | [optional]
|
|
@@ -42,7 +42,9 @@ opts = {
|
|
|
42
42
|
name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
|
|
43
43
|
name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
|
|
44
44
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
45
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
45
|
+
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) * `pk` - Pk * `-pk` - Pk (descending)
|
|
46
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
47
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
46
48
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
|
47
49
|
repository: 'repository_example', # String | Filter results where repository matches value
|
|
48
50
|
repository__in: ['repository__in_example'], # Array<String> | Filter results where repository is in a comma-separated list of values
|
|
@@ -76,7 +78,9 @@ Name | Type | Description | Notes
|
|
|
76
78
|
**name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
|
|
77
79
|
**name__startswith** | **String**| Filter results where name starts with value | [optional]
|
|
78
80
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
79
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
81
|
+
**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) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
82
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
83
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
80
84
|
**pulp_label_select** | **String**| Filter labels by search string | [optional]
|
|
81
85
|
**repository** | **String**| Filter results where repository matches value | [optional]
|
|
82
86
|
**repository__in** | [**Array<String>**](String.md)| Filter results where repository is in a comma-separated list of values | [optional]
|
data/docs/Domain.md
CHANGED
|
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
|
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**name** | **String** | A name for this domain. |
|
|
8
8
|
**description** | **String** | An optional description. | [optional]
|
|
9
|
-
**storage_class** | [**StorageClassEnum**](StorageClassEnum.md) | Backend storage class for domain. |
|
|
9
|
+
**storage_class** | [**StorageClassEnum**](StorageClassEnum.md) | Backend storage class for domain. * `pulpcore.app.models.storage.FileSystem` - Use local filesystem as storage * `storages.backends.s3boto3.S3Boto3Storage` - Use Amazon S3 as storage * `storages.backends.azure_storage.AzureStorage` - Use Azure Blob as storage |
|
|
10
10
|
**storage_settings** | [**Object**](.md) | Settings for storage class. |
|
|
11
11
|
**redirect_to_object_storage** | **Boolean** | Boolean to have the content app redirect to object storage. | [optional] [default to true]
|
|
12
12
|
**hide_guarded_distributions** | **Boolean** | Boolean to hide distributions with a content guard in the content app. | [optional] [default to false]
|
data/docs/DomainResponse.md
CHANGED
|
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
|
|
|
8
8
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
|
9
9
|
**name** | **String** | A name for this domain. |
|
|
10
10
|
**description** | **String** | An optional description. | [optional]
|
|
11
|
-
**storage_class** | [**StorageClassEnum**](StorageClassEnum.md) | Backend storage class for domain. |
|
|
11
|
+
**storage_class** | [**StorageClassEnum**](StorageClassEnum.md) | Backend storage class for domain. * `pulpcore.app.models.storage.FileSystem` - Use local filesystem as storage * `storages.backends.s3boto3.S3Boto3Storage` - Use Amazon S3 as storage * `storages.backends.azure_storage.AzureStorage` - Use Azure Blob as storage |
|
|
12
12
|
**storage_settings** | [**Object**](.md) | Settings for storage class. |
|
|
13
13
|
**redirect_to_object_storage** | **Boolean** | Boolean to have the content app redirect to object storage. | [optional] [default to true]
|
|
14
14
|
**hide_guarded_distributions** | **Boolean** | Boolean to hide distributions with a content guard in the content app. | [optional] [default to false]
|
data/docs/DomainsApi.md
CHANGED
|
@@ -148,7 +148,9 @@ opts = {
|
|
|
148
148
|
name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
|
|
149
149
|
name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
|
|
150
150
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
151
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
151
|
+
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) * `name` - Name * `-name` - Name (descending) * `description` - Description * `-description` - Description (descending) * `storage_class` - Storage class * `-storage_class` - Storage class (descending) * `storage_settings` - Storage settings * `-storage_settings` - Storage settings (descending) * `redirect_to_object_storage` - Redirect to object storage * `-redirect_to_object_storage` - Redirect to object storage (descending) * `hide_guarded_distributions` - Hide guarded distributions * `-hide_guarded_distributions` - Hide guarded distributions (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
152
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
153
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
152
154
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
153
155
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
154
156
|
}
|
|
@@ -174,7 +176,9 @@ Name | Type | Description | Notes
|
|
|
174
176
|
**name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
|
|
175
177
|
**name__startswith** | **String**| Filter results where name starts with value | [optional]
|
|
176
178
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
177
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
179
|
+
**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) * `name` - Name * `-name` - Name (descending) * `description` - Description * `-description` - Description (descending) * `storage_class` - Storage class * `-storage_class` - Storage class (descending) * `storage_settings` - Storage settings * `-storage_settings` - Storage settings (descending) * `redirect_to_object_storage` - Redirect to object storage * `-redirect_to_object_storage` - Redirect to object storage (descending) * `hide_guarded_distributions` - Hide guarded distributions * `-hide_guarded_distributions` - Hide guarded distributions (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
180
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
181
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
178
182
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
179
183
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
180
184
|
|
|
@@ -148,7 +148,9 @@ opts = {
|
|
|
148
148
|
name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
|
|
149
149
|
name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
|
|
150
150
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
151
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
151
|
+
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) * `path` - Path * `-path` - Path (descending) * `method` - Method * `-method` - Method (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
152
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
153
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
152
154
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
153
155
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
154
156
|
}
|
|
@@ -174,7 +176,9 @@ Name | Type | Description | Notes
|
|
|
174
176
|
**name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
|
|
175
177
|
**name__startswith** | **String**| Filter results where name starts with value | [optional]
|
|
176
178
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
177
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
179
|
+
**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) * `path` - Path * `-path` - Path (descending) * `method` - Method * `-method` - Method (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
180
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
181
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
178
182
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
179
183
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
180
184
|
|
data/docs/ExportersPulpApi.md
CHANGED
|
@@ -148,7 +148,9 @@ opts = {
|
|
|
148
148
|
name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
|
|
149
149
|
name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
|
|
150
150
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
151
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
151
|
+
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) * `path` - Path * `-path` - Path (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
152
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
153
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
152
154
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
153
155
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
154
156
|
}
|
|
@@ -174,7 +176,9 @@ Name | Type | Description | Notes
|
|
|
174
176
|
**name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
|
|
175
177
|
**name__startswith** | **String**| Filter results where name starts with value | [optional]
|
|
176
178
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
177
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
179
|
+
**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) * `path` - Path * `-path` - Path (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
180
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
181
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
178
182
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
179
183
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
180
184
|
|
data/docs/FilesystemExporter.md
CHANGED
|
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
|
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**name** | **String** | Unique name of the file system exporter. |
|
|
8
8
|
**path** | **String** | File system location to export to. |
|
|
9
|
-
**method** | [**MethodEnum**](MethodEnum.md) | Method of exporting | [optional]
|
|
9
|
+
**method** | [**MethodEnum**](MethodEnum.md) | Method of exporting * `write` - Export by writing * `hardlink` - Export by hardlinking * `symlink` - Export by symlinking | [optional]
|
|
10
10
|
|
|
11
11
|
## Code Sample
|
|
12
12
|
|
|
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
|
|
|
8
8
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
|
9
9
|
**name** | **String** | Unique name of the file system exporter. |
|
|
10
10
|
**path** | **String** | File system location to export to. |
|
|
11
|
-
**method** | [**MethodEnum**](MethodEnum.md) | Method of exporting | [optional]
|
|
11
|
+
**method** | [**MethodEnum**](MethodEnum.md) | Method of exporting * `write` - Export by writing * `hardlink` - Export by hardlinking * `symlink` - Export by symlinking | [optional]
|
|
12
12
|
|
|
13
13
|
## Code Sample
|
|
14
14
|
|
data/docs/GroupsApi.md
CHANGED
|
@@ -207,7 +207,9 @@ opts = {
|
|
|
207
207
|
name__iexact: 'name__iexact_example', # String | Filter results where name matches value
|
|
208
208
|
name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
|
|
209
209
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
210
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
210
|
+
ordering: ['ordering_example'], # Array<String> | Ordering * `id` - Id * `-id` - Id (descending) * `name` - Name * `-name` - Name (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
211
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
212
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
211
213
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
212
214
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
213
215
|
}
|
|
@@ -235,7 +237,9 @@ Name | Type | Description | Notes
|
|
|
235
237
|
**name__iexact** | **String**| Filter results where name matches value | [optional]
|
|
236
238
|
**name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
|
|
237
239
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
238
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
240
|
+
**ordering** | [**Array<String>**](String.md)| Ordering * `id` - Id * `-id` - Id (descending) * `name` - Name * `-name` - Name (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
241
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
242
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
239
243
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
240
244
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
241
245
|
|
data/docs/GroupsRolesApi.md
CHANGED
|
@@ -145,7 +145,9 @@ opts = {
|
|
|
145
145
|
domain: 'domain_example', # String | Foreign Key referenced by HREF
|
|
146
146
|
limit: 56, # Integer | Number of results to return per page.
|
|
147
147
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
148
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
148
|
+
ordering: ['ordering_example'], # Array<String> | Ordering * `role` - Role * `-role` - Role (descending) * `description` - Description * `-description` - Description (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
149
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
150
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
149
151
|
role: 'role_example', # String |
|
|
150
152
|
role__contains: 'role__contains_example', # String |
|
|
151
153
|
role__icontains: 'role__icontains_example', # String |
|
|
@@ -174,7 +176,9 @@ Name | Type | Description | Notes
|
|
|
174
176
|
**domain** | **String**| Foreign Key referenced by HREF | [optional]
|
|
175
177
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
176
178
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
177
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
179
|
+
**ordering** | [**Array<String>**](String.md)| Ordering * `role` - Role * `-role` - Role (descending) * `description` - Description * `-description` - Description (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
180
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
181
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
178
182
|
**role** | **String**| | [optional]
|
|
179
183
|
**role__contains** | **String**| | [optional]
|
|
180
184
|
**role__icontains** | **String**| | [optional]
|
data/docs/ImportersPulpApi.md
CHANGED
|
@@ -147,7 +147,9 @@ opts = {
|
|
|
147
147
|
name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
|
|
148
148
|
name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
|
|
149
149
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
150
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
150
|
+
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) * `pk` - Pk * `-pk` - Pk (descending)
|
|
151
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
152
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
151
153
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
152
154
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
153
155
|
}
|
|
@@ -173,7 +175,9 @@ Name | Type | Description | Notes
|
|
|
173
175
|
**name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
|
|
174
176
|
**name__startswith** | **String**| Filter results where name starts with value | [optional]
|
|
175
177
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
176
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
178
|
+
**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) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
179
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
180
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
177
181
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
178
182
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
179
183
|
|
data/docs/PatchedDomain.md
CHANGED
|
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
|
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**name** | **String** | A name for this domain. | [optional]
|
|
8
8
|
**description** | **String** | An optional description. | [optional]
|
|
9
|
-
**storage_class** | [**StorageClassEnum**](StorageClassEnum.md) | Backend storage class for domain. | [optional]
|
|
9
|
+
**storage_class** | [**StorageClassEnum**](StorageClassEnum.md) | Backend storage class for domain. * `pulpcore.app.models.storage.FileSystem` - Use local filesystem as storage * `storages.backends.s3boto3.S3Boto3Storage` - Use Amazon S3 as storage * `storages.backends.azure_storage.AzureStorage` - Use Azure Blob as storage | [optional]
|
|
10
10
|
**storage_settings** | [**Object**](.md) | Settings for storage class. | [optional]
|
|
11
11
|
**redirect_to_object_storage** | **Boolean** | Boolean to have the content app redirect to object storage. | [optional] [default to true]
|
|
12
12
|
**hide_guarded_distributions** | **Boolean** | Boolean to hide distributions with a content guard in the content app. | [optional] [default to false]
|
|
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
|
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**name** | **String** | Unique name of the file system exporter. | [optional]
|
|
8
8
|
**path** | **String** | File system location to export to. | [optional]
|
|
9
|
-
**method** | [**MethodEnum**](MethodEnum.md) | Method of exporting | [optional]
|
|
9
|
+
**method** | [**MethodEnum**](MethodEnum.md) | Method of exporting * `write` - Export by writing * `hardlink` - Export by hardlinking * `symlink` - Export by symlinking | [optional]
|
|
10
10
|
|
|
11
11
|
## Code Sample
|
|
12
12
|
|
data/docs/PublicationsApi.md
CHANGED
|
@@ -14,7 +14,7 @@ Method | HTTP request | Description
|
|
|
14
14
|
|
|
15
15
|
List publications
|
|
16
16
|
|
|
17
|
-
A
|
|
17
|
+
A base class for any publication viewset.
|
|
18
18
|
|
|
19
19
|
### Example
|
|
20
20
|
|
|
@@ -34,13 +34,16 @@ opts = {
|
|
|
34
34
|
content__in: 'content__in_example', # String | Content Unit referenced by HREF
|
|
35
35
|
limit: 56, # Integer | Number of results to return per page.
|
|
36
36
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
37
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
37
|
+
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)
|
|
38
38
|
pulp_created: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created matches value
|
|
39
39
|
pulp_created__gt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is greater than value
|
|
40
40
|
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
|
|
41
41
|
pulp_created__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is less than value
|
|
42
42
|
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
|
|
43
43
|
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
|
|
44
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
45
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
46
|
+
pulp_type__in: ['pulp_type__in_example'], # Array<String> | Pulp type is in * `file.file` - file.file
|
|
44
47
|
repository: 'repository_example', # String | Repository referenced by HREF
|
|
45
48
|
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
|
|
46
49
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
@@ -65,13 +68,16 @@ Name | Type | Description | Notes
|
|
|
65
68
|
**content__in** | **String**| Content Unit referenced by HREF | [optional]
|
|
66
69
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
67
70
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
68
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
71
|
+
**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]
|
|
69
72
|
**pulp_created** | **DateTime**| Filter results where pulp_created matches value | [optional]
|
|
70
73
|
**pulp_created__gt** | **DateTime**| Filter results where pulp_created is greater than value | [optional]
|
|
71
74
|
**pulp_created__gte** | **DateTime**| Filter results where pulp_created is greater than or equal to value | [optional]
|
|
72
75
|
**pulp_created__lt** | **DateTime**| Filter results where pulp_created is less than value | [optional]
|
|
73
76
|
**pulp_created__lte** | **DateTime**| Filter results where pulp_created is less than or equal to value | [optional]
|
|
74
77
|
**pulp_created__range** | [**Array<DateTime>**](DateTime.md)| Filter results where pulp_created is between two comma separated values | [optional]
|
|
78
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
79
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
80
|
+
**pulp_type__in** | [**Array<String>**](String.md)| Pulp type is in * `file.file` - file.file | [optional]
|
|
75
81
|
**repository** | **String**| Repository referenced by HREF | [optional]
|
|
76
82
|
**repository_version** | [**String**](.md)| Repository Version referenced by HREF | [optional]
|
|
77
83
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
data/docs/RemoteResponse.md
CHANGED
|
@@ -16,7 +16,7 @@ Name | Type | Description | Notes
|
|
|
16
16
|
**pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
|
|
17
17
|
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
|
18
18
|
**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
|
|
19
|
-
**policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. | [optional]
|
|
19
|
+
**policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. * `immediate` - immediate * `When syncing, download all metadata and content now.` - When syncing, download all metadata and content now. | [optional]
|
|
20
20
|
**total_timeout** | **Float** | aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
|
21
21
|
**connect_timeout** | **Float** | aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|
|
22
22
|
**sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
|