pulpcore_client 3.19.1 → 3.20.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 +93 -16
- data/docs/AccessPoliciesApi.md +2 -2
- data/docs/AccessPolicy.md +3 -1
- data/docs/AccessPolicyResponse.md +3 -1
- data/docs/AcsApi.md +417 -0
- data/docs/AlternateContentSource.md +23 -0
- data/docs/AlternateContentSourceResponse.md +27 -0
- data/docs/ArtifactsApi.md +2 -2
- data/docs/ContentApi.md +117 -3
- data/docs/ContentGuard.md +19 -0
- data/docs/ContentguardsApi.md +282 -3
- data/docs/ContentguardsContentRedirectApi.md +230 -2
- data/docs/ContentguardsRbacApi.md +2 -2
- data/docs/Distribution.md +25 -0
- data/docs/DistributionsApi.md +283 -3
- data/docs/Export.md +17 -0
- data/docs/ExportResponse.md +25 -0
- data/docs/Exporter.md +17 -0
- data/docs/ExporterResponse.md +21 -0
- data/docs/ExportersApi.md +362 -0
- data/docs/{GroupsModelPermissionsApi.md → ExportersExportsApi.md} +46 -48
- data/docs/ExportersFilesystemApi.md +2 -2
- data/docs/ExportersFilesystemExportsApi.md +0 -2
- data/docs/ExportersPulpApi.md +2 -2
- data/docs/ExportersPulpExportsApi.md +0 -2
- data/docs/GroupRole.md +1 -1
- data/docs/GroupRoleResponse.md +6 -2
- data/docs/GroupsApi.md +2 -2
- data/docs/GroupsRolesApi.md +2 -2
- data/docs/GroupsUsersApi.md +0 -2
- data/docs/Import.md +19 -0
- data/docs/Importer.md +17 -0
- data/docs/ImporterResponse.md +21 -0
- data/docs/ImportersApi.md +361 -0
- data/docs/{GroupsObjectPermissionsApi.md → ImportersImportsApi.md} +46 -48
- data/docs/ImportersPulpApi.md +2 -2
- data/docs/ImportersPulpImportsApi.md +0 -2
- data/docs/MultipleArtifactContent.md +17 -0
- data/docs/OrphansCleanup.md +1 -1
- data/docs/PaginatedAlternateContentSourceResponseList.md +23 -0
- data/docs/{PaginatedPermissionResponseList.md → PaginatedExportResponseList.md} +3 -3
- data/docs/PaginatedExporterResponseList.md +23 -0
- data/docs/PaginatedImporterResponseList.md +23 -0
- data/docs/PaginatedRemoteResponseList.md +23 -0
- data/docs/PatchedAccessPolicy.md +3 -1
- data/docs/PatchedAlternateContentSource.md +23 -0
- data/docs/PatchedContentGuard.md +19 -0
- data/docs/PatchedDistribution.md +25 -0
- data/docs/PatchedExporter.md +17 -0
- data/docs/PatchedImporter.md +17 -0
- data/docs/PatchedRemote.md +57 -0
- data/docs/PatchedRepository.md +25 -0
- data/docs/PolicyEnum.md +16 -0
- data/docs/PublicationsApi.md +117 -2
- data/docs/Remote.md +57 -0
- data/docs/RemoteResponse.md +53 -0
- data/docs/RemotesApi.md +376 -0
- data/docs/RepositoriesApi.md +283 -3
- data/docs/RepositoriesVersionsApi.md +271 -0
- data/docs/Repository.md +25 -0
- data/docs/RepositoryVersionsApi.md +2 -0
- data/docs/RolesApi.md +6 -2
- data/docs/SigningServicesApi.md +0 -2
- data/docs/TaskGroupsApi.md +2 -2
- data/docs/TaskSchedulesApi.md +2 -2
- data/docs/TasksApi.md +2 -2
- data/docs/UploadsApi.md +0 -2
- data/docs/UserRole.md +1 -1
- data/docs/UserRoleResponse.md +6 -2
- data/docs/UsersApi.md +2 -61
- data/docs/UsersRolesApi.md +2 -2
- data/docs/VersionResponse.md +3 -1
- data/docs/WorkersApi.md +2 -2
- data/lib/pulpcore_client/api/access_policies_api.rb +7 -3
- data/lib/pulpcore_client/api/acs_api.rb +514 -0
- data/lib/pulpcore_client/api/artifacts_api.rb +7 -3
- data/lib/pulpcore_client/api/content_api.rb +141 -5
- data/lib/pulpcore_client/api/contentguards_api.rb +341 -5
- data/lib/pulpcore_client/api/contentguards_content_redirect_api.rb +275 -3
- data/lib/pulpcore_client/api/contentguards_rbac_api.rb +7 -3
- data/lib/pulpcore_client/api/distributions_api.rb +343 -5
- data/lib/pulpcore_client/api/exporters_api.rb +446 -0
- data/lib/pulpcore_client/api/{groups_model_permissions_api.rb → exporters_exports_api.rb} +76 -79
- data/lib/pulpcore_client/api/exporters_filesystem_api.rb +7 -3
- data/lib/pulpcore_client/api/exporters_filesystem_exports_api.rb +0 -3
- data/lib/pulpcore_client/api/exporters_pulp_api.rb +7 -3
- data/lib/pulpcore_client/api/exporters_pulp_exports_api.rb +0 -3
- data/lib/pulpcore_client/api/groups_api.rb +7 -3
- data/lib/pulpcore_client/api/groups_roles_api.rb +7 -3
- data/lib/pulpcore_client/api/groups_users_api.rb +0 -3
- data/lib/pulpcore_client/api/importers_api.rb +444 -0
- data/lib/pulpcore_client/api/{groups_object_permissions_api.rb → importers_imports_api.rb} +76 -79
- data/lib/pulpcore_client/api/importers_pulp_api.rb +7 -3
- data/lib/pulpcore_client/api/importers_pulp_imports_api.rb +0 -3
- data/lib/pulpcore_client/api/publications_api.rb +138 -3
- data/lib/pulpcore_client/api/remotes_api.rb +467 -0
- data/lib/pulpcore_client/api/repositories_api.rb +343 -5
- data/lib/pulpcore_client/api/repositories_versions_api.rb +343 -0
- data/lib/pulpcore_client/api/repository_versions_api.rb +7 -0
- data/lib/pulpcore_client/api/roles_api.rb +13 -3
- data/lib/pulpcore_client/api/signing_services_api.rb +0 -3
- data/lib/pulpcore_client/api/task_groups_api.rb +7 -3
- data/lib/pulpcore_client/api/task_schedules_api.rb +7 -3
- data/lib/pulpcore_client/api/tasks_api.rb +7 -3
- data/lib/pulpcore_client/api/uploads_api.rb +0 -3
- data/lib/pulpcore_client/api/users_api.rb +7 -69
- data/lib/pulpcore_client/api/users_roles_api.rb +7 -3
- data/lib/pulpcore_client/api/workers_api.rb +7 -3
- data/lib/pulpcore_client/models/access_policy.rb +14 -4
- data/lib/pulpcore_client/models/access_policy_response.rb +14 -4
- data/lib/pulpcore_client/models/alternate_content_source.rb +270 -0
- data/lib/pulpcore_client/models/alternate_content_source_response.rb +270 -0
- data/lib/pulpcore_client/models/content_guard.rb +258 -0
- data/lib/pulpcore_client/models/distribution.rb +297 -0
- data/lib/pulpcore_client/models/export.rb +209 -0
- data/lib/pulpcore_client/models/export_response.rb +250 -0
- data/lib/pulpcore_client/models/exporter.rb +232 -0
- data/lib/pulpcore_client/models/{permission_response.rb → exporter_response.rb} +24 -27
- data/lib/pulpcore_client/models/group_role.rb +1 -1
- data/lib/pulpcore_client/models/group_role_response.rb +26 -6
- data/lib/pulpcore_client/models/import.rb +228 -0
- data/lib/pulpcore_client/models/importer.rb +232 -0
- data/lib/pulpcore_client/models/importer_response.rb +232 -0
- data/lib/pulpcore_client/models/multiple_artifact_content.rb +213 -0
- data/lib/pulpcore_client/models/orphans_cleanup.rb +0 -2
- data/lib/pulpcore_client/models/paginated_alternate_content_source_response_list.rb +237 -0
- data/lib/pulpcore_client/models/{paginated_permission_response_list.rb → paginated_export_response_list.rb} +4 -4
- data/lib/pulpcore_client/models/paginated_exporter_response_list.rb +237 -0
- data/lib/pulpcore_client/models/paginated_importer_response_list.rb +237 -0
- data/lib/pulpcore_client/models/paginated_remote_response_list.rb +237 -0
- data/lib/pulpcore_client/models/patched_access_policy.rb +14 -4
- data/lib/pulpcore_client/models/patched_alternate_content_source.rb +256 -0
- data/lib/pulpcore_client/models/patched_content_guard.rb +249 -0
- data/lib/pulpcore_client/models/patched_distribution.rb +279 -0
- data/lib/pulpcore_client/models/patched_exporter.rb +223 -0
- data/lib/pulpcore_client/models/patched_importer.rb +223 -0
- data/lib/pulpcore_client/models/patched_remote.rb +649 -0
- data/lib/pulpcore_client/models/patched_repository.rb +295 -0
- data/lib/pulpcore_client/models/policy_enum.rb +36 -0
- data/lib/pulpcore_client/models/remote.rb +667 -0
- data/lib/pulpcore_client/models/remote_response.rb +483 -0
- data/lib/pulpcore_client/models/repository.rb +304 -0
- data/lib/pulpcore_client/models/user_role.rb +1 -1
- data/lib/pulpcore_client/models/user_role_response.rb +26 -6
- data/lib/pulpcore_client/models/version_response.rb +19 -4
- data/lib/pulpcore_client/version.rb +1 -1
- data/lib/pulpcore_client.rb +35 -4
- data/spec/api/access_policies_api_spec.rb +1 -1
- data/spec/api/acs_api_spec.rb +132 -0
- data/spec/api/artifacts_api_spec.rb +1 -1
- data/spec/api/content_api_spec.rb +28 -2
- data/spec/api/contentguards_api_spec.rb +66 -2
- data/spec/api/contentguards_content_redirect_api_spec.rb +51 -1
- data/spec/api/contentguards_rbac_api_spec.rb +1 -1
- data/spec/api/distributions_api_spec.rb +66 -2
- data/spec/api/exporters_api_spec.rb +120 -0
- data/spec/api/{groups_model_permissions_api_spec.rb → exporters_exports_api_spec.rb} +22 -23
- data/spec/api/exporters_filesystem_api_spec.rb +1 -1
- data/spec/api/exporters_filesystem_exports_api_spec.rb +0 -1
- data/spec/api/exporters_pulp_api_spec.rb +1 -1
- data/spec/api/exporters_pulp_exports_api_spec.rb +0 -1
- data/spec/api/groups_api_spec.rb +1 -1
- data/spec/api/groups_roles_api_spec.rb +1 -1
- data/spec/api/groups_users_api_spec.rb +0 -1
- data/spec/api/importers_api_spec.rb +120 -0
- data/spec/api/{groups_object_permissions_api_spec.rb → importers_imports_api_spec.rb} +22 -23
- data/spec/api/importers_pulp_api_spec.rb +1 -1
- data/spec/api/importers_pulp_imports_api_spec.rb +0 -1
- data/spec/api/publications_api_spec.rb +28 -1
- data/spec/api/remotes_api_spec.rb +127 -0
- data/spec/api/repositories_api_spec.rb +66 -2
- data/spec/api/repositories_versions_api_spec.rb +104 -0
- data/spec/api/repository_versions_api_spec.rb +1 -0
- data/spec/api/roles_api_spec.rb +3 -1
- data/spec/api/signing_services_api_spec.rb +0 -1
- data/spec/api/task_groups_api_spec.rb +1 -1
- data/spec/api/task_schedules_api_spec.rb +1 -1
- data/spec/api/tasks_api_spec.rb +1 -1
- data/spec/api/uploads_api_spec.rb +0 -1
- data/spec/api/users_api_spec.rb +1 -14
- data/spec/api/users_roles_api_spec.rb +1 -1
- data/spec/api/workers_api_spec.rb +1 -1
- data/spec/models/access_policy_response_spec.rb +6 -0
- data/spec/models/access_policy_spec.rb +6 -0
- data/spec/models/alternate_content_source_response_spec.rb +71 -0
- data/spec/models/{permission_response_spec.rb → alternate_content_source_spec.rb} +10 -10
- data/spec/models/content_guard_spec.rb +47 -0
- data/spec/models/distribution_spec.rb +65 -0
- data/spec/models/export_response_spec.rb +65 -0
- data/spec/models/export_spec.rb +41 -0
- data/spec/models/exporter_response_spec.rb +53 -0
- data/spec/models/exporter_spec.rb +41 -0
- data/spec/models/group_role_response_spec.rb +12 -0
- data/spec/models/import_spec.rb +47 -0
- data/spec/models/importer_response_spec.rb +53 -0
- data/spec/models/importer_spec.rb +41 -0
- data/spec/models/multiple_artifact_content_spec.rb +41 -0
- data/spec/models/paginated_alternate_content_source_response_list_spec.rb +59 -0
- data/spec/models/{paginated_permission_response_list_spec.rb → paginated_export_response_list_spec.rb} +6 -6
- data/spec/models/paginated_exporter_response_list_spec.rb +59 -0
- data/spec/models/paginated_importer_response_list_spec.rb +59 -0
- data/spec/models/paginated_remote_response_list_spec.rb +59 -0
- data/spec/models/patched_access_policy_spec.rb +6 -0
- data/spec/models/patched_alternate_content_source_spec.rb +59 -0
- data/spec/models/patched_content_guard_spec.rb +47 -0
- data/spec/models/patched_distribution_spec.rb +65 -0
- data/spec/models/patched_exporter_spec.rb +41 -0
- data/spec/models/patched_importer_spec.rb +41 -0
- data/spec/models/patched_remote_spec.rb +161 -0
- data/spec/models/patched_repository_spec.rb +65 -0
- data/spec/models/policy_enum_spec.rb +35 -0
- data/spec/models/remote_response_spec.rb +149 -0
- data/spec/models/remote_spec.rb +161 -0
- data/spec/models/repository_spec.rb +65 -0
- data/spec/models/user_role_response_spec.rb +12 -0
- data/spec/models/version_response_spec.rb +6 -0
- metadata +263 -139
- data/docs/PermissionResponse.md +0 -23
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d5f68645085ba31ded8bda9ce63c4338c4308509a877c6313fee316600d3d11b
|
|
4
|
+
data.tar.gz: 818cb23244eb34327f773f1b1bd82a42b84b1096b84a30d6b7e4841576dc9c89
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 43f21247ee836aee2227eb27b60eaa92daa5cb70527758dc302f8839e85913fe4564c687e3ff59d4e60f2dc670d5a34b6c69ecba60f017ad66230f2fed147bbe
|
|
7
|
+
data.tar.gz: eb5c958ab3b4dac6b278d4f652a57e284c3eba53e4bee037da6807046baa0cd6729ad6c4cebf58666c5f772ce573bde3e26733d6e5aa9b7c8c75d20007ac2ab3
|
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.20.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.20.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.20.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.20.0'
|
|
37
37
|
|
|
38
38
|
### Install from Git
|
|
39
39
|
|
|
@@ -69,7 +69,7 @@ opts = {
|
|
|
69
69
|
customized: true, # Boolean |
|
|
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', # String |
|
|
72
|
+
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
73
73
|
viewset_name: 'viewset_name_example', # String | Filter results where viewset_name matches value
|
|
74
74
|
viewset_name__contains: 'viewset_name__contains_example', # String | Filter results where viewset_name contains value
|
|
75
75
|
viewset_name__icontains: 'viewset_name__icontains_example', # String | Filter results where viewset_name contains value
|
|
@@ -100,17 +100,35 @@ Class | Method | HTTP request | Description
|
|
|
100
100
|
*PulpcoreClient::AccessPoliciesApi* | [**read**](docs/AccessPoliciesApi.md#read) | **GET** {access_policy_href} | Inspect an access policy
|
|
101
101
|
*PulpcoreClient::AccessPoliciesApi* | [**reset**](docs/AccessPoliciesApi.md#reset) | **POST** {access_policy_href}reset/ |
|
|
102
102
|
*PulpcoreClient::AccessPoliciesApi* | [**update**](docs/AccessPoliciesApi.md#update) | **PUT** {access_policy_href} | Update an access policy
|
|
103
|
+
*PulpcoreClient::AcsApi* | [**create**](docs/AcsApi.md#create) | **POST** /pulp/api/v3/acs/ | Create an alternate content source
|
|
104
|
+
*PulpcoreClient::AcsApi* | [**delete**](docs/AcsApi.md#delete) | **DELETE** {alternate_content_source_href} | Delete an alternate content source
|
|
105
|
+
*PulpcoreClient::AcsApi* | [**list**](docs/AcsApi.md#list) | **GET** /pulp/api/v3/acs/ | List acs
|
|
106
|
+
*PulpcoreClient::AcsApi* | [**partial_update**](docs/AcsApi.md#partial_update) | **PATCH** {alternate_content_source_href} | Update an alternate content source
|
|
107
|
+
*PulpcoreClient::AcsApi* | [**read**](docs/AcsApi.md#read) | **GET** {alternate_content_source_href} | Inspect an alternate content source
|
|
108
|
+
*PulpcoreClient::AcsApi* | [**refresh**](docs/AcsApi.md#refresh) | **POST** {alternate_content_source_href}refresh/ |
|
|
109
|
+
*PulpcoreClient::AcsApi* | [**update**](docs/AcsApi.md#update) | **PUT** {alternate_content_source_href} | Update an alternate content source
|
|
103
110
|
*PulpcoreClient::ArtifactsApi* | [**create**](docs/ArtifactsApi.md#create) | **POST** /pulp/api/v3/artifacts/ | Create an artifact
|
|
104
111
|
*PulpcoreClient::ArtifactsApi* | [**delete**](docs/ArtifactsApi.md#delete) | **DELETE** {artifact_href} | Delete an artifact
|
|
105
112
|
*PulpcoreClient::ArtifactsApi* | [**list**](docs/ArtifactsApi.md#list) | **GET** /pulp/api/v3/artifacts/ | List artifacts
|
|
106
113
|
*PulpcoreClient::ArtifactsApi* | [**read**](docs/ArtifactsApi.md#read) | **GET** {artifact_href} | Inspect an artifact
|
|
114
|
+
*PulpcoreClient::ContentApi* | [**create**](docs/ContentApi.md#create) | **POST** /pulp/api/v3/content/ | Create a content
|
|
107
115
|
*PulpcoreClient::ContentApi* | [**list**](docs/ContentApi.md#list) | **GET** /pulp/api/v3/content/ | List content
|
|
116
|
+
*PulpcoreClient::ContentApi* | [**read**](docs/ContentApi.md#read) | **GET** {content_href} | Inspect a content
|
|
117
|
+
*PulpcoreClient::ContentguardsApi* | [**create**](docs/ContentguardsApi.md#create) | **POST** /pulp/api/v3/contentguards/ | Create a content guard
|
|
118
|
+
*PulpcoreClient::ContentguardsApi* | [**delete**](docs/ContentguardsApi.md#delete) | **DELETE** {content_guard_href} | Delete a content guard
|
|
108
119
|
*PulpcoreClient::ContentguardsApi* | [**list**](docs/ContentguardsApi.md#list) | **GET** /pulp/api/v3/contentguards/ | List content guards
|
|
120
|
+
*PulpcoreClient::ContentguardsApi* | [**partial_update**](docs/ContentguardsApi.md#partial_update) | **PATCH** {content_guard_href} | Update a content guard
|
|
121
|
+
*PulpcoreClient::ContentguardsApi* | [**read**](docs/ContentguardsApi.md#read) | **GET** {content_guard_href} | Inspect a content guard
|
|
122
|
+
*PulpcoreClient::ContentguardsApi* | [**update**](docs/ContentguardsApi.md#update) | **PUT** {content_guard_href} | Update a content guard
|
|
123
|
+
*PulpcoreClient::ContentguardsContentRedirectApi* | [**add_role**](docs/ContentguardsContentRedirectApi.md#add_role) | **POST** {content_redirect_content_guard_href}add_role/ |
|
|
109
124
|
*PulpcoreClient::ContentguardsContentRedirectApi* | [**create**](docs/ContentguardsContentRedirectApi.md#create) | **POST** /pulp/api/v3/contentguards/core/content_redirect/ | Create a content redirect content guard
|
|
110
125
|
*PulpcoreClient::ContentguardsContentRedirectApi* | [**delete**](docs/ContentguardsContentRedirectApi.md#delete) | **DELETE** {content_redirect_content_guard_href} | Delete a content redirect content guard
|
|
111
126
|
*PulpcoreClient::ContentguardsContentRedirectApi* | [**list**](docs/ContentguardsContentRedirectApi.md#list) | **GET** /pulp/api/v3/contentguards/core/content_redirect/ | List content redirect content guards
|
|
127
|
+
*PulpcoreClient::ContentguardsContentRedirectApi* | [**list_roles**](docs/ContentguardsContentRedirectApi.md#list_roles) | **GET** {content_redirect_content_guard_href}list_roles/ |
|
|
128
|
+
*PulpcoreClient::ContentguardsContentRedirectApi* | [**my_permissions**](docs/ContentguardsContentRedirectApi.md#my_permissions) | **GET** {content_redirect_content_guard_href}my_permissions/ |
|
|
112
129
|
*PulpcoreClient::ContentguardsContentRedirectApi* | [**partial_update**](docs/ContentguardsContentRedirectApi.md#partial_update) | **PATCH** {content_redirect_content_guard_href} | Update a content redirect content guard
|
|
113
130
|
*PulpcoreClient::ContentguardsContentRedirectApi* | [**read**](docs/ContentguardsContentRedirectApi.md#read) | **GET** {content_redirect_content_guard_href} | Inspect a content redirect content guard
|
|
131
|
+
*PulpcoreClient::ContentguardsContentRedirectApi* | [**remove_role**](docs/ContentguardsContentRedirectApi.md#remove_role) | **POST** {content_redirect_content_guard_href}remove_role/ |
|
|
114
132
|
*PulpcoreClient::ContentguardsContentRedirectApi* | [**update**](docs/ContentguardsContentRedirectApi.md#update) | **PUT** {content_redirect_content_guard_href} | Update a content redirect content guard
|
|
115
133
|
*PulpcoreClient::ContentguardsRbacApi* | [**add_role**](docs/ContentguardsRbacApi.md#add_role) | **POST** {r_b_a_c_content_guard_href}add_role/ |
|
|
116
134
|
*PulpcoreClient::ContentguardsRbacApi* | [**create**](docs/ContentguardsRbacApi.md#create) | **POST** /pulp/api/v3/contentguards/core/rbac/ | Create a rbac content guard
|
|
@@ -122,7 +140,22 @@ Class | Method | HTTP request | Description
|
|
|
122
140
|
*PulpcoreClient::ContentguardsRbacApi* | [**read**](docs/ContentguardsRbacApi.md#read) | **GET** {r_b_a_c_content_guard_href} | Inspect a rbac content guard
|
|
123
141
|
*PulpcoreClient::ContentguardsRbacApi* | [**remove_role**](docs/ContentguardsRbacApi.md#remove_role) | **POST** {r_b_a_c_content_guard_href}remove_role/ |
|
|
124
142
|
*PulpcoreClient::ContentguardsRbacApi* | [**update**](docs/ContentguardsRbacApi.md#update) | **PUT** {r_b_a_c_content_guard_href} | Update a rbac content guard
|
|
143
|
+
*PulpcoreClient::DistributionsApi* | [**create**](docs/DistributionsApi.md#create) | **POST** /pulp/api/v3/distributions/ | Create a distribution
|
|
144
|
+
*PulpcoreClient::DistributionsApi* | [**delete**](docs/DistributionsApi.md#delete) | **DELETE** {distribution_href} | Delete a distribution
|
|
125
145
|
*PulpcoreClient::DistributionsApi* | [**list**](docs/DistributionsApi.md#list) | **GET** /pulp/api/v3/distributions/ | List distributions
|
|
146
|
+
*PulpcoreClient::DistributionsApi* | [**partial_update**](docs/DistributionsApi.md#partial_update) | **PATCH** {distribution_href} | Update a distribution
|
|
147
|
+
*PulpcoreClient::DistributionsApi* | [**read**](docs/DistributionsApi.md#read) | **GET** {distribution_href} | Inspect a distribution
|
|
148
|
+
*PulpcoreClient::DistributionsApi* | [**update**](docs/DistributionsApi.md#update) | **PUT** {distribution_href} | Update a distribution
|
|
149
|
+
*PulpcoreClient::ExportersApi* | [**create**](docs/ExportersApi.md#create) | **POST** /pulp/api/v3/exporters/ | Create an exporter
|
|
150
|
+
*PulpcoreClient::ExportersApi* | [**delete**](docs/ExportersApi.md#delete) | **DELETE** {exporter_href} | Delete an exporter
|
|
151
|
+
*PulpcoreClient::ExportersApi* | [**list**](docs/ExportersApi.md#list) | **GET** /pulp/api/v3/exporters/ | List exporters
|
|
152
|
+
*PulpcoreClient::ExportersApi* | [**partial_update**](docs/ExportersApi.md#partial_update) | **PATCH** {exporter_href} | Update an exporter
|
|
153
|
+
*PulpcoreClient::ExportersApi* | [**read**](docs/ExportersApi.md#read) | **GET** {exporter_href} | Inspect an exporter
|
|
154
|
+
*PulpcoreClient::ExportersApi* | [**update**](docs/ExportersApi.md#update) | **PUT** {exporter_href} | Update an exporter
|
|
155
|
+
*PulpcoreClient::ExportersExportsApi* | [**create**](docs/ExportersExportsApi.md#create) | **POST** {exporter_href}exports/ | Create an export
|
|
156
|
+
*PulpcoreClient::ExportersExportsApi* | [**delete**](docs/ExportersExportsApi.md#delete) | **DELETE** {exporters_export_href} | Delete an export
|
|
157
|
+
*PulpcoreClient::ExportersExportsApi* | [**list**](docs/ExportersExportsApi.md#list) | **GET** {exporter_href}exports/ | List exports
|
|
158
|
+
*PulpcoreClient::ExportersExportsApi* | [**read**](docs/ExportersExportsApi.md#read) | **GET** {exporters_export_href} | Inspect an export
|
|
126
159
|
*PulpcoreClient::ExportersFilesystemApi* | [**create**](docs/ExportersFilesystemApi.md#create) | **POST** /pulp/api/v3/exporters/core/filesystem/ | Create a filesystem exporter
|
|
127
160
|
*PulpcoreClient::ExportersFilesystemApi* | [**delete**](docs/ExportersFilesystemApi.md#delete) | **DELETE** {filesystem_exporter_href} | Delete a filesystem exporter
|
|
128
161
|
*PulpcoreClient::ExportersFilesystemApi* | [**list**](docs/ExportersFilesystemApi.md#list) | **GET** /pulp/api/v3/exporters/core/filesystem/ | List filesystem exporters
|
|
@@ -153,14 +186,6 @@ Class | Method | HTTP request | Description
|
|
|
153
186
|
*PulpcoreClient::GroupsApi* | [**read**](docs/GroupsApi.md#read) | **GET** {group_href} | Inspect a group
|
|
154
187
|
*PulpcoreClient::GroupsApi* | [**remove_role**](docs/GroupsApi.md#remove_role) | **POST** {group_href}remove_role/ |
|
|
155
188
|
*PulpcoreClient::GroupsApi* | [**update**](docs/GroupsApi.md#update) | **PUT** {group_href} | Update a group
|
|
156
|
-
*PulpcoreClient::GroupsModelPermissionsApi* | [**create**](docs/GroupsModelPermissionsApi.md#create) | **POST** {group_href}model_permissions/ | Create a permission
|
|
157
|
-
*PulpcoreClient::GroupsModelPermissionsApi* | [**delete**](docs/GroupsModelPermissionsApi.md#delete) | **DELETE** {groups_model_permission_href} | Delete a permission
|
|
158
|
-
*PulpcoreClient::GroupsModelPermissionsApi* | [**list**](docs/GroupsModelPermissionsApi.md#list) | **GET** {group_href}model_permissions/ | List permissions
|
|
159
|
-
*PulpcoreClient::GroupsModelPermissionsApi* | [**read**](docs/GroupsModelPermissionsApi.md#read) | **GET** {groups_model_permission_href} | Inspect a permission
|
|
160
|
-
*PulpcoreClient::GroupsObjectPermissionsApi* | [**create**](docs/GroupsObjectPermissionsApi.md#create) | **POST** {group_href}object_permissions/ | Create a permission
|
|
161
|
-
*PulpcoreClient::GroupsObjectPermissionsApi* | [**delete**](docs/GroupsObjectPermissionsApi.md#delete) | **DELETE** {groups_object_permission_href} | Delete a permission
|
|
162
|
-
*PulpcoreClient::GroupsObjectPermissionsApi* | [**list**](docs/GroupsObjectPermissionsApi.md#list) | **GET** {group_href}object_permissions/ | List permissions
|
|
163
|
-
*PulpcoreClient::GroupsObjectPermissionsApi* | [**read**](docs/GroupsObjectPermissionsApi.md#read) | **GET** {groups_object_permission_href} | Inspect a permission
|
|
164
189
|
*PulpcoreClient::GroupsRolesApi* | [**create**](docs/GroupsRolesApi.md#create) | **POST** {group_href}roles/ | Create a group role
|
|
165
190
|
*PulpcoreClient::GroupsRolesApi* | [**delete**](docs/GroupsRolesApi.md#delete) | **DELETE** {groups_group_role_href} | Delete a group role
|
|
166
191
|
*PulpcoreClient::GroupsRolesApi* | [**list**](docs/GroupsRolesApi.md#list) | **GET** {group_href}roles/ | List group roles
|
|
@@ -168,6 +193,16 @@ Class | Method | HTTP request | Description
|
|
|
168
193
|
*PulpcoreClient::GroupsUsersApi* | [**create**](docs/GroupsUsersApi.md#create) | **POST** {group_href}users/ | Create an user
|
|
169
194
|
*PulpcoreClient::GroupsUsersApi* | [**delete**](docs/GroupsUsersApi.md#delete) | **DELETE** {groups_user_href} | Delete an user
|
|
170
195
|
*PulpcoreClient::GroupsUsersApi* | [**list**](docs/GroupsUsersApi.md#list) | **GET** {group_href}users/ | List users
|
|
196
|
+
*PulpcoreClient::ImportersApi* | [**create**](docs/ImportersApi.md#create) | **POST** /pulp/api/v3/importers/ | Create an importer
|
|
197
|
+
*PulpcoreClient::ImportersApi* | [**delete**](docs/ImportersApi.md#delete) | **DELETE** {importer_href} | Delete an importer
|
|
198
|
+
*PulpcoreClient::ImportersApi* | [**list**](docs/ImportersApi.md#list) | **GET** /pulp/api/v3/importers/ | List importers
|
|
199
|
+
*PulpcoreClient::ImportersApi* | [**partial_update**](docs/ImportersApi.md#partial_update) | **PATCH** {importer_href} | Update an importer
|
|
200
|
+
*PulpcoreClient::ImportersApi* | [**read**](docs/ImportersApi.md#read) | **GET** {importer_href} | Inspect an importer
|
|
201
|
+
*PulpcoreClient::ImportersApi* | [**update**](docs/ImportersApi.md#update) | **PUT** {importer_href} | Update an importer
|
|
202
|
+
*PulpcoreClient::ImportersImportsApi* | [**create**](docs/ImportersImportsApi.md#create) | **POST** {importer_href}imports/ | Create an import
|
|
203
|
+
*PulpcoreClient::ImportersImportsApi* | [**delete**](docs/ImportersImportsApi.md#delete) | **DELETE** {importers_import_href} | Delete an import
|
|
204
|
+
*PulpcoreClient::ImportersImportsApi* | [**list**](docs/ImportersImportsApi.md#list) | **GET** {importer_href}imports/ | List imports
|
|
205
|
+
*PulpcoreClient::ImportersImportsApi* | [**read**](docs/ImportersImportsApi.md#read) | **GET** {importers_import_href} | Inspect an import
|
|
171
206
|
*PulpcoreClient::ImportersPulpApi* | [**create**](docs/ImportersPulpApi.md#create) | **POST** /pulp/api/v3/importers/core/pulp/ | Create a pulp importer
|
|
172
207
|
*PulpcoreClient::ImportersPulpApi* | [**delete**](docs/ImportersPulpApi.md#delete) | **DELETE** {pulp_importer_href} | Delete a pulp importer
|
|
173
208
|
*PulpcoreClient::ImportersPulpApi* | [**list**](docs/ImportersPulpApi.md#list) | **GET** /pulp/api/v3/importers/core/pulp/ | List pulp importers
|
|
@@ -181,10 +216,27 @@ Class | Method | HTTP request | Description
|
|
|
181
216
|
*PulpcoreClient::ImportersPulpImportsApi* | [**read**](docs/ImportersPulpImportsApi.md#read) | **GET** {pulp_pulp_import_href} | Inspect a pulp import
|
|
182
217
|
*PulpcoreClient::OrphansApi* | [**delete**](docs/OrphansApi.md#delete) | **DELETE** /pulp/api/v3/orphans/ | Delete orphans
|
|
183
218
|
*PulpcoreClient::OrphansCleanupApi* | [**cleanup**](docs/OrphansCleanupApi.md#cleanup) | **POST** /pulp/api/v3/orphans/cleanup/ |
|
|
219
|
+
*PulpcoreClient::PublicationsApi* | [**delete**](docs/PublicationsApi.md#delete) | **DELETE** {publication_href} | Delete a publication
|
|
184
220
|
*PulpcoreClient::PublicationsApi* | [**list**](docs/PublicationsApi.md#list) | **GET** /pulp/api/v3/publications/ | List publications
|
|
221
|
+
*PulpcoreClient::PublicationsApi* | [**read**](docs/PublicationsApi.md#read) | **GET** {publication_href} | Inspect a publication
|
|
222
|
+
*PulpcoreClient::RemotesApi* | [**create**](docs/RemotesApi.md#create) | **POST** /pulp/api/v3/remotes/ | Create a remote
|
|
223
|
+
*PulpcoreClient::RemotesApi* | [**delete**](docs/RemotesApi.md#delete) | **DELETE** {remote_href} | Delete a remote
|
|
224
|
+
*PulpcoreClient::RemotesApi* | [**list**](docs/RemotesApi.md#list) | **GET** /pulp/api/v3/remotes/ | List remotes
|
|
225
|
+
*PulpcoreClient::RemotesApi* | [**partial_update**](docs/RemotesApi.md#partial_update) | **PATCH** {remote_href} | Update a remote
|
|
226
|
+
*PulpcoreClient::RemotesApi* | [**read**](docs/RemotesApi.md#read) | **GET** {remote_href} | Inspect a remote
|
|
227
|
+
*PulpcoreClient::RemotesApi* | [**update**](docs/RemotesApi.md#update) | **PUT** {remote_href} | Update a remote
|
|
185
228
|
*PulpcoreClient::RepairApi* | [**post**](docs/RepairApi.md#post) | **POST** /pulp/api/v3/repair/ | Repair Artifact Storage
|
|
229
|
+
*PulpcoreClient::RepositoriesApi* | [**create**](docs/RepositoriesApi.md#create) | **POST** /pulp/api/v3/repositories/ | Create a repository
|
|
230
|
+
*PulpcoreClient::RepositoriesApi* | [**delete**](docs/RepositoriesApi.md#delete) | **DELETE** {repository_href} | Delete a repository
|
|
186
231
|
*PulpcoreClient::RepositoriesApi* | [**list**](docs/RepositoriesApi.md#list) | **GET** /pulp/api/v3/repositories/ | List repositories
|
|
232
|
+
*PulpcoreClient::RepositoriesApi* | [**partial_update**](docs/RepositoriesApi.md#partial_update) | **PATCH** {repository_href} | Update a repository
|
|
233
|
+
*PulpcoreClient::RepositoriesApi* | [**read**](docs/RepositoriesApi.md#read) | **GET** {repository_href} | Inspect a repository
|
|
234
|
+
*PulpcoreClient::RepositoriesApi* | [**update**](docs/RepositoriesApi.md#update) | **PUT** {repository_href} | Update a repository
|
|
187
235
|
*PulpcoreClient::RepositoriesReclaimSpaceApi* | [**reclaim**](docs/RepositoriesReclaimSpaceApi.md#reclaim) | **POST** /pulp/api/v3/repositories/reclaim_space/ |
|
|
236
|
+
*PulpcoreClient::RepositoriesVersionsApi* | [**delete**](docs/RepositoriesVersionsApi.md#delete) | **DELETE** {repositories_repository_version_href} | Delete a repository version
|
|
237
|
+
*PulpcoreClient::RepositoriesVersionsApi* | [**list**](docs/RepositoriesVersionsApi.md#list) | **GET** {repository_href}versions/ | List repository versions
|
|
238
|
+
*PulpcoreClient::RepositoriesVersionsApi* | [**read**](docs/RepositoriesVersionsApi.md#read) | **GET** {repositories_repository_version_href} | Inspect a repository version
|
|
239
|
+
*PulpcoreClient::RepositoriesVersionsApi* | [**repair**](docs/RepositoriesVersionsApi.md#repair) | **POST** {repositories_repository_version_href}repair/ |
|
|
188
240
|
*PulpcoreClient::RepositoryVersionsApi* | [**list**](docs/RepositoryVersionsApi.md#list) | **GET** /pulp/api/v3/repository_versions/ | List repository versions
|
|
189
241
|
*PulpcoreClient::RolesApi* | [**create**](docs/RolesApi.md#create) | **POST** /pulp/api/v3/roles/ | Create a role
|
|
190
242
|
*PulpcoreClient::RolesApi* | [**delete**](docs/RolesApi.md#delete) | **DELETE** {role_href} | Delete a role
|
|
@@ -222,7 +274,6 @@ Class | Method | HTTP request | Description
|
|
|
222
274
|
*PulpcoreClient::UsersApi* | [**delete**](docs/UsersApi.md#delete) | **DELETE** {auth_user_href} | Delete an user
|
|
223
275
|
*PulpcoreClient::UsersApi* | [**list**](docs/UsersApi.md#list) | **GET** /pulp/api/v3/users/ | List users
|
|
224
276
|
*PulpcoreClient::UsersApi* | [**partial_update**](docs/UsersApi.md#partial_update) | **PATCH** {auth_user_href} | Update an user
|
|
225
|
-
*PulpcoreClient::UsersApi* | [**permissions**](docs/UsersApi.md#permissions) | **GET** {auth_user_href}permissions/ |
|
|
226
277
|
*PulpcoreClient::UsersApi* | [**read**](docs/UsersApi.md#read) | **GET** {auth_user_href} | Inspect an user
|
|
227
278
|
*PulpcoreClient::UsersApi* | [**update**](docs/UsersApi.md#update) | **PUT** {auth_user_href} | Update an user
|
|
228
279
|
*PulpcoreClient::UsersRolesApi* | [**create**](docs/UsersRolesApi.md#create) | **POST** {auth_user_href}roles/ | Create an user role
|
|
@@ -237,17 +288,25 @@ Class | Method | HTTP request | Description
|
|
|
237
288
|
|
|
238
289
|
- [PulpcoreClient::AccessPolicy](docs/AccessPolicy.md)
|
|
239
290
|
- [PulpcoreClient::AccessPolicyResponse](docs/AccessPolicyResponse.md)
|
|
291
|
+
- [PulpcoreClient::AlternateContentSource](docs/AlternateContentSource.md)
|
|
292
|
+
- [PulpcoreClient::AlternateContentSourceResponse](docs/AlternateContentSourceResponse.md)
|
|
240
293
|
- [PulpcoreClient::Artifact](docs/Artifact.md)
|
|
241
294
|
- [PulpcoreClient::ArtifactResponse](docs/ArtifactResponse.md)
|
|
242
295
|
- [PulpcoreClient::AsyncOperationResponse](docs/AsyncOperationResponse.md)
|
|
243
296
|
- [PulpcoreClient::ContentAppStatusResponse](docs/ContentAppStatusResponse.md)
|
|
297
|
+
- [PulpcoreClient::ContentGuard](docs/ContentGuard.md)
|
|
244
298
|
- [PulpcoreClient::ContentGuardResponse](docs/ContentGuardResponse.md)
|
|
245
299
|
- [PulpcoreClient::ContentRedirectContentGuard](docs/ContentRedirectContentGuard.md)
|
|
246
300
|
- [PulpcoreClient::ContentRedirectContentGuardResponse](docs/ContentRedirectContentGuardResponse.md)
|
|
247
301
|
- [PulpcoreClient::ContentSummaryResponse](docs/ContentSummaryResponse.md)
|
|
248
302
|
- [PulpcoreClient::DatabaseConnectionResponse](docs/DatabaseConnectionResponse.md)
|
|
303
|
+
- [PulpcoreClient::Distribution](docs/Distribution.md)
|
|
249
304
|
- [PulpcoreClient::DistributionResponse](docs/DistributionResponse.md)
|
|
250
305
|
- [PulpcoreClient::EvaluationResponse](docs/EvaluationResponse.md)
|
|
306
|
+
- [PulpcoreClient::Export](docs/Export.md)
|
|
307
|
+
- [PulpcoreClient::ExportResponse](docs/ExportResponse.md)
|
|
308
|
+
- [PulpcoreClient::Exporter](docs/Exporter.md)
|
|
309
|
+
- [PulpcoreClient::ExporterResponse](docs/ExporterResponse.md)
|
|
251
310
|
- [PulpcoreClient::FilesystemExport](docs/FilesystemExport.md)
|
|
252
311
|
- [PulpcoreClient::FilesystemExportResponse](docs/FilesystemExportResponse.md)
|
|
253
312
|
- [PulpcoreClient::FilesystemExporter](docs/FilesystemExporter.md)
|
|
@@ -259,9 +318,13 @@ Class | Method | HTTP request | Description
|
|
|
259
318
|
- [PulpcoreClient::GroupRoleResponse](docs/GroupRoleResponse.md)
|
|
260
319
|
- [PulpcoreClient::GroupUser](docs/GroupUser.md)
|
|
261
320
|
- [PulpcoreClient::GroupUserResponse](docs/GroupUserResponse.md)
|
|
321
|
+
- [PulpcoreClient::Import](docs/Import.md)
|
|
262
322
|
- [PulpcoreClient::ImportResponse](docs/ImportResponse.md)
|
|
323
|
+
- [PulpcoreClient::Importer](docs/Importer.md)
|
|
324
|
+
- [PulpcoreClient::ImporterResponse](docs/ImporterResponse.md)
|
|
263
325
|
- [PulpcoreClient::MethodEnum](docs/MethodEnum.md)
|
|
264
326
|
- [PulpcoreClient::MinimalTaskResponse](docs/MinimalTaskResponse.md)
|
|
327
|
+
- [PulpcoreClient::MultipleArtifactContent](docs/MultipleArtifactContent.md)
|
|
265
328
|
- [PulpcoreClient::MultipleArtifactContentResponse](docs/MultipleArtifactContentResponse.md)
|
|
266
329
|
- [PulpcoreClient::MyPermissionsResponse](docs/MyPermissionsResponse.md)
|
|
267
330
|
- [PulpcoreClient::NestedRole](docs/NestedRole.md)
|
|
@@ -269,23 +332,27 @@ Class | Method | HTTP request | Description
|
|
|
269
332
|
- [PulpcoreClient::ObjectRolesResponse](docs/ObjectRolesResponse.md)
|
|
270
333
|
- [PulpcoreClient::OrphansCleanup](docs/OrphansCleanup.md)
|
|
271
334
|
- [PulpcoreClient::PaginatedAccessPolicyResponseList](docs/PaginatedAccessPolicyResponseList.md)
|
|
335
|
+
- [PulpcoreClient::PaginatedAlternateContentSourceResponseList](docs/PaginatedAlternateContentSourceResponseList.md)
|
|
272
336
|
- [PulpcoreClient::PaginatedArtifactResponseList](docs/PaginatedArtifactResponseList.md)
|
|
273
337
|
- [PulpcoreClient::PaginatedContentGuardResponseList](docs/PaginatedContentGuardResponseList.md)
|
|
274
338
|
- [PulpcoreClient::PaginatedContentRedirectContentGuardResponseList](docs/PaginatedContentRedirectContentGuardResponseList.md)
|
|
275
339
|
- [PulpcoreClient::PaginatedDistributionResponseList](docs/PaginatedDistributionResponseList.md)
|
|
340
|
+
- [PulpcoreClient::PaginatedExportResponseList](docs/PaginatedExportResponseList.md)
|
|
341
|
+
- [PulpcoreClient::PaginatedExporterResponseList](docs/PaginatedExporterResponseList.md)
|
|
276
342
|
- [PulpcoreClient::PaginatedFilesystemExportResponseList](docs/PaginatedFilesystemExportResponseList.md)
|
|
277
343
|
- [PulpcoreClient::PaginatedFilesystemExporterResponseList](docs/PaginatedFilesystemExporterResponseList.md)
|
|
278
344
|
- [PulpcoreClient::PaginatedGroupResponseList](docs/PaginatedGroupResponseList.md)
|
|
279
345
|
- [PulpcoreClient::PaginatedGroupRoleResponseList](docs/PaginatedGroupRoleResponseList.md)
|
|
280
346
|
- [PulpcoreClient::PaginatedGroupUserResponseList](docs/PaginatedGroupUserResponseList.md)
|
|
281
347
|
- [PulpcoreClient::PaginatedImportResponseList](docs/PaginatedImportResponseList.md)
|
|
348
|
+
- [PulpcoreClient::PaginatedImporterResponseList](docs/PaginatedImporterResponseList.md)
|
|
282
349
|
- [PulpcoreClient::PaginatedMultipleArtifactContentResponseList](docs/PaginatedMultipleArtifactContentResponseList.md)
|
|
283
|
-
- [PulpcoreClient::PaginatedPermissionResponseList](docs/PaginatedPermissionResponseList.md)
|
|
284
350
|
- [PulpcoreClient::PaginatedPublicationResponseList](docs/PaginatedPublicationResponseList.md)
|
|
285
351
|
- [PulpcoreClient::PaginatedPulpExportResponseList](docs/PaginatedPulpExportResponseList.md)
|
|
286
352
|
- [PulpcoreClient::PaginatedPulpExporterResponseList](docs/PaginatedPulpExporterResponseList.md)
|
|
287
353
|
- [PulpcoreClient::PaginatedPulpImporterResponseList](docs/PaginatedPulpImporterResponseList.md)
|
|
288
354
|
- [PulpcoreClient::PaginatedRBACContentGuardResponseList](docs/PaginatedRBACContentGuardResponseList.md)
|
|
355
|
+
- [PulpcoreClient::PaginatedRemoteResponseList](docs/PaginatedRemoteResponseList.md)
|
|
289
356
|
- [PulpcoreClient::PaginatedRepositoryResponseList](docs/PaginatedRepositoryResponseList.md)
|
|
290
357
|
- [PulpcoreClient::PaginatedRepositoryVersionResponseList](docs/PaginatedRepositoryVersionResponseList.md)
|
|
291
358
|
- [PulpcoreClient::PaginatedRoleResponseList](docs/PaginatedRoleResponseList.md)
|
|
@@ -298,16 +365,23 @@ Class | Method | HTTP request | Description
|
|
|
298
365
|
- [PulpcoreClient::PaginatedUserRoleResponseList](docs/PaginatedUserRoleResponseList.md)
|
|
299
366
|
- [PulpcoreClient::PaginatedWorkerResponseList](docs/PaginatedWorkerResponseList.md)
|
|
300
367
|
- [PulpcoreClient::PatchedAccessPolicy](docs/PatchedAccessPolicy.md)
|
|
368
|
+
- [PulpcoreClient::PatchedAlternateContentSource](docs/PatchedAlternateContentSource.md)
|
|
369
|
+
- [PulpcoreClient::PatchedContentGuard](docs/PatchedContentGuard.md)
|
|
301
370
|
- [PulpcoreClient::PatchedContentRedirectContentGuard](docs/PatchedContentRedirectContentGuard.md)
|
|
371
|
+
- [PulpcoreClient::PatchedDistribution](docs/PatchedDistribution.md)
|
|
372
|
+
- [PulpcoreClient::PatchedExporter](docs/PatchedExporter.md)
|
|
302
373
|
- [PulpcoreClient::PatchedFilesystemExporter](docs/PatchedFilesystemExporter.md)
|
|
303
374
|
- [PulpcoreClient::PatchedGroup](docs/PatchedGroup.md)
|
|
375
|
+
- [PulpcoreClient::PatchedImporter](docs/PatchedImporter.md)
|
|
304
376
|
- [PulpcoreClient::PatchedPulpExporter](docs/PatchedPulpExporter.md)
|
|
305
377
|
- [PulpcoreClient::PatchedPulpImporter](docs/PatchedPulpImporter.md)
|
|
306
378
|
- [PulpcoreClient::PatchedRBACContentGuard](docs/PatchedRBACContentGuard.md)
|
|
379
|
+
- [PulpcoreClient::PatchedRemote](docs/PatchedRemote.md)
|
|
380
|
+
- [PulpcoreClient::PatchedRepository](docs/PatchedRepository.md)
|
|
307
381
|
- [PulpcoreClient::PatchedRole](docs/PatchedRole.md)
|
|
308
382
|
- [PulpcoreClient::PatchedTaskCancel](docs/PatchedTaskCancel.md)
|
|
309
383
|
- [PulpcoreClient::PatchedUser](docs/PatchedUser.md)
|
|
310
|
-
- [PulpcoreClient::
|
|
384
|
+
- [PulpcoreClient::PolicyEnum](docs/PolicyEnum.md)
|
|
311
385
|
- [PulpcoreClient::ProgressReportResponse](docs/ProgressReportResponse.md)
|
|
312
386
|
- [PulpcoreClient::PublicationResponse](docs/PublicationResponse.md)
|
|
313
387
|
- [PulpcoreClient::PulpExport](docs/PulpExport.md)
|
|
@@ -324,7 +398,10 @@ Class | Method | HTTP request | Description
|
|
|
324
398
|
- [PulpcoreClient::RBACContentGuardResponse](docs/RBACContentGuardResponse.md)
|
|
325
399
|
- [PulpcoreClient::ReclaimSpace](docs/ReclaimSpace.md)
|
|
326
400
|
- [PulpcoreClient::RedisConnectionResponse](docs/RedisConnectionResponse.md)
|
|
401
|
+
- [PulpcoreClient::Remote](docs/Remote.md)
|
|
402
|
+
- [PulpcoreClient::RemoteResponse](docs/RemoteResponse.md)
|
|
327
403
|
- [PulpcoreClient::Repair](docs/Repair.md)
|
|
404
|
+
- [PulpcoreClient::Repository](docs/Repository.md)
|
|
328
405
|
- [PulpcoreClient::RepositoryResponse](docs/RepositoryResponse.md)
|
|
329
406
|
- [PulpcoreClient::RepositoryVersionResponse](docs/RepositoryVersionResponse.md)
|
|
330
407
|
- [PulpcoreClient::Role](docs/Role.md)
|
data/docs/AccessPoliciesApi.md
CHANGED
|
@@ -37,7 +37,7 @@ opts = {
|
|
|
37
37
|
customized: true, # Boolean |
|
|
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', # String |
|
|
40
|
+
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
41
41
|
viewset_name: 'viewset_name_example', # String | Filter results where viewset_name matches value
|
|
42
42
|
viewset_name__contains: 'viewset_name__contains_example', # String | Filter results where viewset_name contains value
|
|
43
43
|
viewset_name__icontains: 'viewset_name__icontains_example', # String | Filter results where viewset_name contains value
|
|
@@ -64,7 +64,7 @@ Name | Type | Description | Notes
|
|
|
64
64
|
**customized** | **Boolean**| | [optional]
|
|
65
65
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
66
66
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
67
|
-
**ordering** | **String
|
|
67
|
+
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
68
68
|
**viewset_name** | **String**| Filter results where viewset_name matches value | [optional]
|
|
69
69
|
**viewset_name__contains** | **String**| Filter results where viewset_name contains value | [optional]
|
|
70
70
|
**viewset_name__icontains** | **String**| Filter results where viewset_name contains value | [optional]
|
data/docs/AccessPolicy.md
CHANGED
|
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
**permissions_assignment** | **Array<Object>** | List of callables that define the new permissions to be created for new objects.This is deprecated. Use `creation_hooks` instead. | [optional]
|
|
8
8
|
**creation_hooks** | **Array<Object>** | List of callables that may associate user roles for new objects. | [optional]
|
|
9
9
|
**statements** | **Array<Object>** | List of policy statements defining the policy. |
|
|
10
|
+
**queryset_scoping** | [**Object**](.md) | A callable for performing queryset scoping. See plugin documentation for valid callables. Set to blank to turn off queryset scoping. | [optional]
|
|
10
11
|
|
|
11
12
|
## Code Sample
|
|
12
13
|
|
|
@@ -15,7 +16,8 @@ require 'PulpcoreClient'
|
|
|
15
16
|
|
|
16
17
|
instance = PulpcoreClient::AccessPolicy.new(permissions_assignment: null,
|
|
17
18
|
creation_hooks: null,
|
|
18
|
-
statements: null
|
|
19
|
+
statements: null,
|
|
20
|
+
queryset_scoping: null)
|
|
19
21
|
```
|
|
20
22
|
|
|
21
23
|
|
|
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**statements** | **Array<Object>** | List of policy statements defining the policy. |
|
|
12
12
|
**viewset_name** | **String** | The name of ViewSet this AccessPolicy authorizes. | [optional] [readonly]
|
|
13
13
|
**customized** | **Boolean** | True if the AccessPolicy has been user-modified. False otherwise. | [optional] [readonly]
|
|
14
|
+
**queryset_scoping** | [**Object**](.md) | A callable for performing queryset scoping. See plugin documentation for valid callables. Set to blank to turn off queryset scoping. | [optional]
|
|
14
15
|
|
|
15
16
|
## Code Sample
|
|
16
17
|
|
|
@@ -23,7 +24,8 @@ instance = PulpcoreClient::AccessPolicyResponse.new(pulp_href: null,
|
|
|
23
24
|
creation_hooks: null,
|
|
24
25
|
statements: null,
|
|
25
26
|
viewset_name: null,
|
|
26
|
-
customized: null
|
|
27
|
+
customized: null,
|
|
28
|
+
queryset_scoping: null)
|
|
27
29
|
```
|
|
28
30
|
|
|
29
31
|
|