pulpcore_client 3.31.0 → 3.32.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 +28 -28
- data/docs/ArtifactDistributionResponse.md +10 -10
- data/docs/ContentguardsContentRedirectApi.md +12 -8
- data/docs/ContentguardsRbacApi.md +12 -8
- data/docs/GroupsApi.md +12 -8
- data/docs/TaskSchedulesApi.md +12 -8
- data/docs/TasksApi.md +12 -8
- data/docs/UploadsApi.md +12 -8
- data/lib/pulpcore_client/api/contentguards_content_redirect_api.rb +8 -0
- data/lib/pulpcore_client/api/contentguards_rbac_api.rb +8 -0
- data/lib/pulpcore_client/api/groups_api.rb +8 -0
- data/lib/pulpcore_client/api/task_schedules_api.rb +8 -0
- data/lib/pulpcore_client/api/tasks_api.rb +8 -0
- data/lib/pulpcore_client/api/uploads_api.rb +8 -0
- data/lib/pulpcore_client/models/artifact_distribution_response.rb +48 -48
- data/lib/pulpcore_client/version.rb +1 -1
- data/spec/api/contentguards_content_redirect_api_spec.rb +4 -0
- data/spec/api/contentguards_rbac_api_spec.rb +4 -0
- data/spec/api/groups_api_spec.rb +4 -0
- data/spec/api/task_schedules_api_spec.rb +4 -0
- data/spec/api/tasks_api_spec.rb +4 -0
- data/spec/api/uploads_api_spec.rb +4 -0
- data/spec/models/artifact_distribution_response_spec.rb +7 -7
- metadata +138 -138
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 339340c62a26694c306793039f3f16dfd2fe9e28adce8289d0fecb0ef0fbc3ab
|
4
|
+
data.tar.gz: fa19bf753b86e56e8ca601acec6f14781c0d221ff6ec5516f3266e6eaf454199
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c53e7284607304d8da68e7b6b7ce34e483a5775d830560ccd4c2b7ec54eb42e663d38e4bddda7cdf89289e568c8700794cd967fc523d657bd7ffff7d43f57213
|
7
|
+
data.tar.gz: 0dc32816b0dae114cc6df634df99446228384c048138c5191ae6dffea38676549437837801ef5ae6f277601dec86716cf28082737f4e7309e1a593bdbb56dc98
|
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.32.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.32.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.32.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.32.0'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -108,25 +108,25 @@ Class | Method | HTTP request | Description
|
|
108
108
|
*PulpcoreClient::ArtifactsApi* | [**read**](docs/ArtifactsApi.md#read) | **GET** {artifact_href} | Inspect an artifact
|
109
109
|
*PulpcoreClient::ContentApi* | [**list**](docs/ContentApi.md#list) | **GET** /pulp/api/v3/content/ | List content
|
110
110
|
*PulpcoreClient::ContentguardsApi* | [**list**](docs/ContentguardsApi.md#list) | **GET** /pulp/api/v3/contentguards/ | List content guards
|
111
|
-
*PulpcoreClient::ContentguardsContentRedirectApi* | [**add_role**](docs/ContentguardsContentRedirectApi.md#add_role) | **POST** {content_redirect_content_guard_href}add_role/ |
|
111
|
+
*PulpcoreClient::ContentguardsContentRedirectApi* | [**add_role**](docs/ContentguardsContentRedirectApi.md#add_role) | **POST** {content_redirect_content_guard_href}add_role/ | Add a role
|
112
112
|
*PulpcoreClient::ContentguardsContentRedirectApi* | [**create**](docs/ContentguardsContentRedirectApi.md#create) | **POST** /pulp/api/v3/contentguards/core/content_redirect/ | Create a content redirect content guard
|
113
113
|
*PulpcoreClient::ContentguardsContentRedirectApi* | [**delete**](docs/ContentguardsContentRedirectApi.md#delete) | **DELETE** {content_redirect_content_guard_href} | Delete a content redirect content guard
|
114
114
|
*PulpcoreClient::ContentguardsContentRedirectApi* | [**list**](docs/ContentguardsContentRedirectApi.md#list) | **GET** /pulp/api/v3/contentguards/core/content_redirect/ | List content redirect content guards
|
115
|
-
*PulpcoreClient::ContentguardsContentRedirectApi* | [**list_roles**](docs/ContentguardsContentRedirectApi.md#list_roles) | **GET** {content_redirect_content_guard_href}list_roles/ |
|
116
|
-
*PulpcoreClient::ContentguardsContentRedirectApi* | [**my_permissions**](docs/ContentguardsContentRedirectApi.md#my_permissions) | **GET** {content_redirect_content_guard_href}my_permissions/ |
|
115
|
+
*PulpcoreClient::ContentguardsContentRedirectApi* | [**list_roles**](docs/ContentguardsContentRedirectApi.md#list_roles) | **GET** {content_redirect_content_guard_href}list_roles/ | List roles
|
116
|
+
*PulpcoreClient::ContentguardsContentRedirectApi* | [**my_permissions**](docs/ContentguardsContentRedirectApi.md#my_permissions) | **GET** {content_redirect_content_guard_href}my_permissions/ | List user permissions
|
117
117
|
*PulpcoreClient::ContentguardsContentRedirectApi* | [**partial_update**](docs/ContentguardsContentRedirectApi.md#partial_update) | **PATCH** {content_redirect_content_guard_href} | Update a content redirect content guard
|
118
118
|
*PulpcoreClient::ContentguardsContentRedirectApi* | [**read**](docs/ContentguardsContentRedirectApi.md#read) | **GET** {content_redirect_content_guard_href} | Inspect a content redirect content guard
|
119
|
-
*PulpcoreClient::ContentguardsContentRedirectApi* | [**remove_role**](docs/ContentguardsContentRedirectApi.md#remove_role) | **POST** {content_redirect_content_guard_href}remove_role/ |
|
119
|
+
*PulpcoreClient::ContentguardsContentRedirectApi* | [**remove_role**](docs/ContentguardsContentRedirectApi.md#remove_role) | **POST** {content_redirect_content_guard_href}remove_role/ | Remove a role
|
120
120
|
*PulpcoreClient::ContentguardsContentRedirectApi* | [**update**](docs/ContentguardsContentRedirectApi.md#update) | **PUT** {content_redirect_content_guard_href} | Update a content redirect content guard
|
121
|
-
*PulpcoreClient::ContentguardsRbacApi* | [**add_role**](docs/ContentguardsRbacApi.md#add_role) | **POST** {r_b_a_c_content_guard_href}add_role/ |
|
121
|
+
*PulpcoreClient::ContentguardsRbacApi* | [**add_role**](docs/ContentguardsRbacApi.md#add_role) | **POST** {r_b_a_c_content_guard_href}add_role/ | Add a role
|
122
122
|
*PulpcoreClient::ContentguardsRbacApi* | [**create**](docs/ContentguardsRbacApi.md#create) | **POST** /pulp/api/v3/contentguards/core/rbac/ | Create a rbac content guard
|
123
123
|
*PulpcoreClient::ContentguardsRbacApi* | [**delete**](docs/ContentguardsRbacApi.md#delete) | **DELETE** {r_b_a_c_content_guard_href} | Delete a rbac content guard
|
124
124
|
*PulpcoreClient::ContentguardsRbacApi* | [**list**](docs/ContentguardsRbacApi.md#list) | **GET** /pulp/api/v3/contentguards/core/rbac/ | List rbac content guards
|
125
|
-
*PulpcoreClient::ContentguardsRbacApi* | [**list_roles**](docs/ContentguardsRbacApi.md#list_roles) | **GET** {r_b_a_c_content_guard_href}list_roles/ |
|
126
|
-
*PulpcoreClient::ContentguardsRbacApi* | [**my_permissions**](docs/ContentguardsRbacApi.md#my_permissions) | **GET** {r_b_a_c_content_guard_href}my_permissions/ |
|
125
|
+
*PulpcoreClient::ContentguardsRbacApi* | [**list_roles**](docs/ContentguardsRbacApi.md#list_roles) | **GET** {r_b_a_c_content_guard_href}list_roles/ | List roles
|
126
|
+
*PulpcoreClient::ContentguardsRbacApi* | [**my_permissions**](docs/ContentguardsRbacApi.md#my_permissions) | **GET** {r_b_a_c_content_guard_href}my_permissions/ | List user permissions
|
127
127
|
*PulpcoreClient::ContentguardsRbacApi* | [**partial_update**](docs/ContentguardsRbacApi.md#partial_update) | **PATCH** {r_b_a_c_content_guard_href} | Update a rbac content guard
|
128
128
|
*PulpcoreClient::ContentguardsRbacApi* | [**read**](docs/ContentguardsRbacApi.md#read) | **GET** {r_b_a_c_content_guard_href} | Inspect a rbac content guard
|
129
|
-
*PulpcoreClient::ContentguardsRbacApi* | [**remove_role**](docs/ContentguardsRbacApi.md#remove_role) | **POST** {r_b_a_c_content_guard_href}remove_role/ |
|
129
|
+
*PulpcoreClient::ContentguardsRbacApi* | [**remove_role**](docs/ContentguardsRbacApi.md#remove_role) | **POST** {r_b_a_c_content_guard_href}remove_role/ | Remove a role
|
130
130
|
*PulpcoreClient::ContentguardsRbacApi* | [**update**](docs/ContentguardsRbacApi.md#update) | **PUT** {r_b_a_c_content_guard_href} | Update a rbac content guard
|
131
131
|
*PulpcoreClient::DistributionsApi* | [**list**](docs/DistributionsApi.md#list) | **GET** /pulp/api/v3/distributions/ | List distributions
|
132
132
|
*PulpcoreClient::DistributionsArtifactsApi* | [**list**](docs/DistributionsArtifactsApi.md#list) | **GET** /pulp/api/v3/distributions/core/artifacts/ | List artifact distributions
|
@@ -157,15 +157,15 @@ Class | Method | HTTP request | Description
|
|
157
157
|
*PulpcoreClient::ExportersPulpExportsApi* | [**delete**](docs/ExportersPulpExportsApi.md#delete) | **DELETE** {pulp_pulp_export_href} | Delete a pulp export
|
158
158
|
*PulpcoreClient::ExportersPulpExportsApi* | [**list**](docs/ExportersPulpExportsApi.md#list) | **GET** {pulp_exporter_href}exports/ | List pulp exports
|
159
159
|
*PulpcoreClient::ExportersPulpExportsApi* | [**read**](docs/ExportersPulpExportsApi.md#read) | **GET** {pulp_pulp_export_href} | Inspect a pulp export
|
160
|
-
*PulpcoreClient::GroupsApi* | [**add_role**](docs/GroupsApi.md#add_role) | **POST** {group_href}add_role/ |
|
160
|
+
*PulpcoreClient::GroupsApi* | [**add_role**](docs/GroupsApi.md#add_role) | **POST** {group_href}add_role/ | Add a role
|
161
161
|
*PulpcoreClient::GroupsApi* | [**create**](docs/GroupsApi.md#create) | **POST** /pulp/api/v3/groups/ | Create a group
|
162
162
|
*PulpcoreClient::GroupsApi* | [**delete**](docs/GroupsApi.md#delete) | **DELETE** {group_href} | Delete a group
|
163
163
|
*PulpcoreClient::GroupsApi* | [**list**](docs/GroupsApi.md#list) | **GET** /pulp/api/v3/groups/ | List groups
|
164
|
-
*PulpcoreClient::GroupsApi* | [**list_roles**](docs/GroupsApi.md#list_roles) | **GET** {group_href}list_roles/ |
|
165
|
-
*PulpcoreClient::GroupsApi* | [**my_permissions**](docs/GroupsApi.md#my_permissions) | **GET** {group_href}my_permissions/ |
|
164
|
+
*PulpcoreClient::GroupsApi* | [**list_roles**](docs/GroupsApi.md#list_roles) | **GET** {group_href}list_roles/ | List roles
|
165
|
+
*PulpcoreClient::GroupsApi* | [**my_permissions**](docs/GroupsApi.md#my_permissions) | **GET** {group_href}my_permissions/ | List user permissions
|
166
166
|
*PulpcoreClient::GroupsApi* | [**partial_update**](docs/GroupsApi.md#partial_update) | **PATCH** {group_href} | Update a group
|
167
167
|
*PulpcoreClient::GroupsApi* | [**read**](docs/GroupsApi.md#read) | **GET** {group_href} | Inspect a group
|
168
|
-
*PulpcoreClient::GroupsApi* | [**remove_role**](docs/GroupsApi.md#remove_role) | **POST** {group_href}remove_role/ |
|
168
|
+
*PulpcoreClient::GroupsApi* | [**remove_role**](docs/GroupsApi.md#remove_role) | **POST** {group_href}remove_role/ | Remove a role
|
169
169
|
*PulpcoreClient::GroupsApi* | [**update**](docs/GroupsApi.md#update) | **PUT** {group_href} | Update a group
|
170
170
|
*PulpcoreClient::GroupsRolesApi* | [**create**](docs/GroupsRolesApi.md#create) | **POST** {group_href}roles/ | Create a group role
|
171
171
|
*PulpcoreClient::GroupsRolesApi* | [**delete**](docs/GroupsRolesApi.md#delete) | **DELETE** {groups_group_role_href} | Delete a group role
|
@@ -204,30 +204,30 @@ Class | Method | HTTP request | Description
|
|
204
204
|
*PulpcoreClient::StatusApi* | [**status_read**](docs/StatusApi.md#status_read) | **GET** /pulp/api/v3/status/ | Inspect status of Pulp
|
205
205
|
*PulpcoreClient::TaskGroupsApi* | [**list**](docs/TaskGroupsApi.md#list) | **GET** /pulp/api/v3/task-groups/ | List task groups
|
206
206
|
*PulpcoreClient::TaskGroupsApi* | [**read**](docs/TaskGroupsApi.md#read) | **GET** {task_group_href} | Inspect a task group
|
207
|
-
*PulpcoreClient::TaskSchedulesApi* | [**add_role**](docs/TaskSchedulesApi.md#add_role) | **POST** {task_schedule_href}add_role/ |
|
207
|
+
*PulpcoreClient::TaskSchedulesApi* | [**add_role**](docs/TaskSchedulesApi.md#add_role) | **POST** {task_schedule_href}add_role/ | Add a role
|
208
208
|
*PulpcoreClient::TaskSchedulesApi* | [**list**](docs/TaskSchedulesApi.md#list) | **GET** /pulp/api/v3/task-schedules/ | List task schedules
|
209
|
-
*PulpcoreClient::TaskSchedulesApi* | [**list_roles**](docs/TaskSchedulesApi.md#list_roles) | **GET** {task_schedule_href}list_roles/ |
|
210
|
-
*PulpcoreClient::TaskSchedulesApi* | [**my_permissions**](docs/TaskSchedulesApi.md#my_permissions) | **GET** {task_schedule_href}my_permissions/ |
|
209
|
+
*PulpcoreClient::TaskSchedulesApi* | [**list_roles**](docs/TaskSchedulesApi.md#list_roles) | **GET** {task_schedule_href}list_roles/ | List roles
|
210
|
+
*PulpcoreClient::TaskSchedulesApi* | [**my_permissions**](docs/TaskSchedulesApi.md#my_permissions) | **GET** {task_schedule_href}my_permissions/ | List user permissions
|
211
211
|
*PulpcoreClient::TaskSchedulesApi* | [**read**](docs/TaskSchedulesApi.md#read) | **GET** {task_schedule_href} | Inspect a task schedule
|
212
|
-
*PulpcoreClient::TaskSchedulesApi* | [**remove_role**](docs/TaskSchedulesApi.md#remove_role) | **POST** {task_schedule_href}remove_role/ |
|
213
|
-
*PulpcoreClient::TasksApi* | [**add_role**](docs/TasksApi.md#add_role) | **POST** {task_href}add_role/ |
|
212
|
+
*PulpcoreClient::TaskSchedulesApi* | [**remove_role**](docs/TaskSchedulesApi.md#remove_role) | **POST** {task_schedule_href}remove_role/ | Remove a role
|
213
|
+
*PulpcoreClient::TasksApi* | [**add_role**](docs/TasksApi.md#add_role) | **POST** {task_href}add_role/ | Add a role
|
214
214
|
*PulpcoreClient::TasksApi* | [**delete**](docs/TasksApi.md#delete) | **DELETE** {task_href} | Delete a task
|
215
215
|
*PulpcoreClient::TasksApi* | [**list**](docs/TasksApi.md#list) | **GET** /pulp/api/v3/tasks/ | List tasks
|
216
|
-
*PulpcoreClient::TasksApi* | [**list_roles**](docs/TasksApi.md#list_roles) | **GET** {task_href}list_roles/ |
|
217
|
-
*PulpcoreClient::TasksApi* | [**my_permissions**](docs/TasksApi.md#my_permissions) | **GET** {task_href}my_permissions/ |
|
216
|
+
*PulpcoreClient::TasksApi* | [**list_roles**](docs/TasksApi.md#list_roles) | **GET** {task_href}list_roles/ | List roles
|
217
|
+
*PulpcoreClient::TasksApi* | [**my_permissions**](docs/TasksApi.md#my_permissions) | **GET** {task_href}my_permissions/ | List user permissions
|
218
218
|
*PulpcoreClient::TasksApi* | [**purge**](docs/TasksApi.md#purge) | **POST** /pulp/api/v3/tasks/purge/ | Purge Completed Tasks
|
219
219
|
*PulpcoreClient::TasksApi* | [**read**](docs/TasksApi.md#read) | **GET** {task_href} | Inspect a task
|
220
|
-
*PulpcoreClient::TasksApi* | [**remove_role**](docs/TasksApi.md#remove_role) | **POST** {task_href}remove_role/ |
|
220
|
+
*PulpcoreClient::TasksApi* | [**remove_role**](docs/TasksApi.md#remove_role) | **POST** {task_href}remove_role/ | Remove a role
|
221
221
|
*PulpcoreClient::TasksApi* | [**tasks_cancel**](docs/TasksApi.md#tasks_cancel) | **PATCH** {task_href} | Cancel a task
|
222
|
-
*PulpcoreClient::UploadsApi* | [**add_role**](docs/UploadsApi.md#add_role) | **POST** {upload_href}add_role/ |
|
222
|
+
*PulpcoreClient::UploadsApi* | [**add_role**](docs/UploadsApi.md#add_role) | **POST** {upload_href}add_role/ | Add a role
|
223
223
|
*PulpcoreClient::UploadsApi* | [**commit**](docs/UploadsApi.md#commit) | **POST** {upload_href}commit/ | Finish an Upload
|
224
224
|
*PulpcoreClient::UploadsApi* | [**create**](docs/UploadsApi.md#create) | **POST** /pulp/api/v3/uploads/ | Create an upload
|
225
225
|
*PulpcoreClient::UploadsApi* | [**delete**](docs/UploadsApi.md#delete) | **DELETE** {upload_href} | Delete an upload
|
226
226
|
*PulpcoreClient::UploadsApi* | [**list**](docs/UploadsApi.md#list) | **GET** /pulp/api/v3/uploads/ | List uploads
|
227
|
-
*PulpcoreClient::UploadsApi* | [**list_roles**](docs/UploadsApi.md#list_roles) | **GET** {upload_href}list_roles/ |
|
228
|
-
*PulpcoreClient::UploadsApi* | [**my_permissions**](docs/UploadsApi.md#my_permissions) | **GET** {upload_href}my_permissions/ |
|
227
|
+
*PulpcoreClient::UploadsApi* | [**list_roles**](docs/UploadsApi.md#list_roles) | **GET** {upload_href}list_roles/ | List roles
|
228
|
+
*PulpcoreClient::UploadsApi* | [**my_permissions**](docs/UploadsApi.md#my_permissions) | **GET** {upload_href}my_permissions/ | List user permissions
|
229
229
|
*PulpcoreClient::UploadsApi* | [**read**](docs/UploadsApi.md#read) | **GET** {upload_href} | Inspect an upload
|
230
|
-
*PulpcoreClient::UploadsApi* | [**remove_role**](docs/UploadsApi.md#remove_role) | **POST** {upload_href}remove_role/ |
|
230
|
+
*PulpcoreClient::UploadsApi* | [**remove_role**](docs/UploadsApi.md#remove_role) | **POST** {upload_href}remove_role/ | Remove a role
|
231
231
|
*PulpcoreClient::UploadsApi* | [**update**](docs/UploadsApi.md#update) | **PUT** {upload_href} | Upload a file chunk
|
232
232
|
*PulpcoreClient::UpstreamPulpsApi* | [**create**](docs/UpstreamPulpsApi.md#create) | **POST** /pulp/api/v3/upstream-pulps/ | Create an upstream pulp
|
233
233
|
*PulpcoreClient::UpstreamPulpsApi* | [**delete**](docs/UpstreamPulpsApi.md#delete) | **DELETE** {upstream_pulp_href} | Delete an upstream pulp
|
@@ -4,28 +4,28 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**
|
8
|
-
**
|
7
|
+
**hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
|
8
|
+
**base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
|
9
9
|
**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\") |
|
10
|
+
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
11
|
+
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
10
12
|
**content_guard** | **String** | An optional content-guard. | [optional]
|
11
13
|
**pulp_labels** | **Hash<String, String>** | | [optional]
|
12
|
-
**
|
13
|
-
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
14
|
-
**base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional] [readonly]
|
14
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
15
15
|
|
16
16
|
## Code Sample
|
17
17
|
|
18
18
|
```ruby
|
19
19
|
require 'PulpcoreClient'
|
20
20
|
|
21
|
-
instance = PulpcoreClient::ArtifactDistributionResponse.new(
|
22
|
-
|
21
|
+
instance = PulpcoreClient::ArtifactDistributionResponse.new(hidden: null,
|
22
|
+
base_url: null,
|
23
23
|
base_path: null,
|
24
|
+
pulp_created: null,
|
25
|
+
name: null,
|
24
26
|
content_guard: null,
|
25
27
|
pulp_labels: null,
|
26
|
-
|
27
|
-
pulp_created: null,
|
28
|
-
base_url: null)
|
28
|
+
pulp_href: null)
|
29
29
|
```
|
30
30
|
|
31
31
|
|
@@ -4,15 +4,15 @@ All URIs are relative to *https://pulp*
|
|
4
4
|
|
5
5
|
Method | HTTP request | Description
|
6
6
|
------------- | ------------- | -------------
|
7
|
-
[**add_role**](ContentguardsContentRedirectApi.md#add_role) | **POST** {content_redirect_content_guard_href}add_role/ |
|
7
|
+
[**add_role**](ContentguardsContentRedirectApi.md#add_role) | **POST** {content_redirect_content_guard_href}add_role/ | Add a role
|
8
8
|
[**create**](ContentguardsContentRedirectApi.md#create) | **POST** /pulp/api/v3/contentguards/core/content_redirect/ | Create a content redirect content guard
|
9
9
|
[**delete**](ContentguardsContentRedirectApi.md#delete) | **DELETE** {content_redirect_content_guard_href} | Delete a content redirect content guard
|
10
10
|
[**list**](ContentguardsContentRedirectApi.md#list) | **GET** /pulp/api/v3/contentguards/core/content_redirect/ | List content redirect content guards
|
11
|
-
[**list_roles**](ContentguardsContentRedirectApi.md#list_roles) | **GET** {content_redirect_content_guard_href}list_roles/ |
|
12
|
-
[**my_permissions**](ContentguardsContentRedirectApi.md#my_permissions) | **GET** {content_redirect_content_guard_href}my_permissions/ |
|
11
|
+
[**list_roles**](ContentguardsContentRedirectApi.md#list_roles) | **GET** {content_redirect_content_guard_href}list_roles/ | List roles
|
12
|
+
[**my_permissions**](ContentguardsContentRedirectApi.md#my_permissions) | **GET** {content_redirect_content_guard_href}my_permissions/ | List user permissions
|
13
13
|
[**partial_update**](ContentguardsContentRedirectApi.md#partial_update) | **PATCH** {content_redirect_content_guard_href} | Update a content redirect content guard
|
14
14
|
[**read**](ContentguardsContentRedirectApi.md#read) | **GET** {content_redirect_content_guard_href} | Inspect a content redirect content guard
|
15
|
-
[**remove_role**](ContentguardsContentRedirectApi.md#remove_role) | **POST** {content_redirect_content_guard_href}remove_role/ |
|
15
|
+
[**remove_role**](ContentguardsContentRedirectApi.md#remove_role) | **POST** {content_redirect_content_guard_href}remove_role/ | Remove a role
|
16
16
|
[**update**](ContentguardsContentRedirectApi.md#update) | **PUT** {content_redirect_content_guard_href} | Update a content redirect content guard
|
17
17
|
|
18
18
|
|
@@ -21,7 +21,7 @@ Method | HTTP request | Description
|
|
21
21
|
|
22
22
|
> NestedRoleResponse add_role(content_redirect_content_guard_href, nested_role)
|
23
23
|
|
24
|
-
|
24
|
+
Add a role
|
25
25
|
|
26
26
|
Add a role for this object to users/groups.
|
27
27
|
|
@@ -42,6 +42,7 @@ content_redirect_content_guard_href = 'content_redirect_content_guard_href_examp
|
|
42
42
|
nested_role = PulpcoreClient::NestedRole.new # NestedRole |
|
43
43
|
|
44
44
|
begin
|
45
|
+
#Add a role
|
45
46
|
result = api_instance.add_role(content_redirect_content_guard_href, nested_role)
|
46
47
|
p result
|
47
48
|
rescue PulpcoreClient::ApiError => e
|
@@ -257,7 +258,7 @@ Name | Type | Description | Notes
|
|
257
258
|
|
258
259
|
> ObjectRolesResponse list_roles(content_redirect_content_guard_href, opts)
|
259
260
|
|
260
|
-
|
261
|
+
List roles
|
261
262
|
|
262
263
|
List roles assigned to this object.
|
263
264
|
|
@@ -281,6 +282,7 @@ opts = {
|
|
281
282
|
}
|
282
283
|
|
283
284
|
begin
|
285
|
+
#List roles
|
284
286
|
result = api_instance.list_roles(content_redirect_content_guard_href, opts)
|
285
287
|
p result
|
286
288
|
rescue PulpcoreClient::ApiError => e
|
@@ -315,7 +317,7 @@ Name | Type | Description | Notes
|
|
315
317
|
|
316
318
|
> MyPermissionsResponse my_permissions(content_redirect_content_guard_href, opts)
|
317
319
|
|
318
|
-
|
320
|
+
List user permissions
|
319
321
|
|
320
322
|
List permissions available to the current user on this object.
|
321
323
|
|
@@ -339,6 +341,7 @@ opts = {
|
|
339
341
|
}
|
340
342
|
|
341
343
|
begin
|
344
|
+
#List user permissions
|
342
345
|
result = api_instance.my_permissions(content_redirect_content_guard_href, opts)
|
343
346
|
p result
|
344
347
|
rescue PulpcoreClient::ApiError => e
|
@@ -487,7 +490,7 @@ Name | Type | Description | Notes
|
|
487
490
|
|
488
491
|
> NestedRoleResponse remove_role(content_redirect_content_guard_href, nested_role)
|
489
492
|
|
490
|
-
|
493
|
+
Remove a role
|
491
494
|
|
492
495
|
Remove a role for this object from users/groups.
|
493
496
|
|
@@ -508,6 +511,7 @@ content_redirect_content_guard_href = 'content_redirect_content_guard_href_examp
|
|
508
511
|
nested_role = PulpcoreClient::NestedRole.new # NestedRole |
|
509
512
|
|
510
513
|
begin
|
514
|
+
#Remove a role
|
511
515
|
result = api_instance.remove_role(content_redirect_content_guard_href, nested_role)
|
512
516
|
p result
|
513
517
|
rescue PulpcoreClient::ApiError => e
|
@@ -4,15 +4,15 @@ All URIs are relative to *https://pulp*
|
|
4
4
|
|
5
5
|
Method | HTTP request | Description
|
6
6
|
------------- | ------------- | -------------
|
7
|
-
[**add_role**](ContentguardsRbacApi.md#add_role) | **POST** {r_b_a_c_content_guard_href}add_role/ |
|
7
|
+
[**add_role**](ContentguardsRbacApi.md#add_role) | **POST** {r_b_a_c_content_guard_href}add_role/ | Add a role
|
8
8
|
[**create**](ContentguardsRbacApi.md#create) | **POST** /pulp/api/v3/contentguards/core/rbac/ | Create a rbac content guard
|
9
9
|
[**delete**](ContentguardsRbacApi.md#delete) | **DELETE** {r_b_a_c_content_guard_href} | Delete a rbac content guard
|
10
10
|
[**list**](ContentguardsRbacApi.md#list) | **GET** /pulp/api/v3/contentguards/core/rbac/ | List rbac content guards
|
11
|
-
[**list_roles**](ContentguardsRbacApi.md#list_roles) | **GET** {r_b_a_c_content_guard_href}list_roles/ |
|
12
|
-
[**my_permissions**](ContentguardsRbacApi.md#my_permissions) | **GET** {r_b_a_c_content_guard_href}my_permissions/ |
|
11
|
+
[**list_roles**](ContentguardsRbacApi.md#list_roles) | **GET** {r_b_a_c_content_guard_href}list_roles/ | List roles
|
12
|
+
[**my_permissions**](ContentguardsRbacApi.md#my_permissions) | **GET** {r_b_a_c_content_guard_href}my_permissions/ | List user permissions
|
13
13
|
[**partial_update**](ContentguardsRbacApi.md#partial_update) | **PATCH** {r_b_a_c_content_guard_href} | Update a rbac content guard
|
14
14
|
[**read**](ContentguardsRbacApi.md#read) | **GET** {r_b_a_c_content_guard_href} | Inspect a rbac content guard
|
15
|
-
[**remove_role**](ContentguardsRbacApi.md#remove_role) | **POST** {r_b_a_c_content_guard_href}remove_role/ |
|
15
|
+
[**remove_role**](ContentguardsRbacApi.md#remove_role) | **POST** {r_b_a_c_content_guard_href}remove_role/ | Remove a role
|
16
16
|
[**update**](ContentguardsRbacApi.md#update) | **PUT** {r_b_a_c_content_guard_href} | Update a rbac content guard
|
17
17
|
|
18
18
|
|
@@ -21,7 +21,7 @@ Method | HTTP request | Description
|
|
21
21
|
|
22
22
|
> NestedRoleResponse add_role(r_b_a_c_content_guard_href, nested_role)
|
23
23
|
|
24
|
-
|
24
|
+
Add a role
|
25
25
|
|
26
26
|
Add a role for this object to users/groups.
|
27
27
|
|
@@ -42,6 +42,7 @@ r_b_a_c_content_guard_href = 'r_b_a_c_content_guard_href_example' # String |
|
|
42
42
|
nested_role = PulpcoreClient::NestedRole.new # NestedRole |
|
43
43
|
|
44
44
|
begin
|
45
|
+
#Add a role
|
45
46
|
result = api_instance.add_role(r_b_a_c_content_guard_href, nested_role)
|
46
47
|
p result
|
47
48
|
rescue PulpcoreClient::ApiError => e
|
@@ -257,7 +258,7 @@ Name | Type | Description | Notes
|
|
257
258
|
|
258
259
|
> ObjectRolesResponse list_roles(r_b_a_c_content_guard_href, opts)
|
259
260
|
|
260
|
-
|
261
|
+
List roles
|
261
262
|
|
262
263
|
List roles assigned to this object.
|
263
264
|
|
@@ -281,6 +282,7 @@ opts = {
|
|
281
282
|
}
|
282
283
|
|
283
284
|
begin
|
285
|
+
#List roles
|
284
286
|
result = api_instance.list_roles(r_b_a_c_content_guard_href, opts)
|
285
287
|
p result
|
286
288
|
rescue PulpcoreClient::ApiError => e
|
@@ -315,7 +317,7 @@ Name | Type | Description | Notes
|
|
315
317
|
|
316
318
|
> MyPermissionsResponse my_permissions(r_b_a_c_content_guard_href, opts)
|
317
319
|
|
318
|
-
|
320
|
+
List user permissions
|
319
321
|
|
320
322
|
List permissions available to the current user on this object.
|
321
323
|
|
@@ -339,6 +341,7 @@ opts = {
|
|
339
341
|
}
|
340
342
|
|
341
343
|
begin
|
344
|
+
#List user permissions
|
342
345
|
result = api_instance.my_permissions(r_b_a_c_content_guard_href, opts)
|
343
346
|
p result
|
344
347
|
rescue PulpcoreClient::ApiError => e
|
@@ -487,7 +490,7 @@ Name | Type | Description | Notes
|
|
487
490
|
|
488
491
|
> NestedRoleResponse remove_role(r_b_a_c_content_guard_href, nested_role)
|
489
492
|
|
490
|
-
|
493
|
+
Remove a role
|
491
494
|
|
492
495
|
Remove a role for this object from users/groups.
|
493
496
|
|
@@ -508,6 +511,7 @@ r_b_a_c_content_guard_href = 'r_b_a_c_content_guard_href_example' # String |
|
|
508
511
|
nested_role = PulpcoreClient::NestedRole.new # NestedRole |
|
509
512
|
|
510
513
|
begin
|
514
|
+
#Remove a role
|
511
515
|
result = api_instance.remove_role(r_b_a_c_content_guard_href, nested_role)
|
512
516
|
p result
|
513
517
|
rescue PulpcoreClient::ApiError => e
|
data/docs/GroupsApi.md
CHANGED
@@ -4,15 +4,15 @@ All URIs are relative to *https://pulp*
|
|
4
4
|
|
5
5
|
Method | HTTP request | Description
|
6
6
|
------------- | ------------- | -------------
|
7
|
-
[**add_role**](GroupsApi.md#add_role) | **POST** {group_href}add_role/ |
|
7
|
+
[**add_role**](GroupsApi.md#add_role) | **POST** {group_href}add_role/ | Add a role
|
8
8
|
[**create**](GroupsApi.md#create) | **POST** /pulp/api/v3/groups/ | Create a group
|
9
9
|
[**delete**](GroupsApi.md#delete) | **DELETE** {group_href} | Delete a group
|
10
10
|
[**list**](GroupsApi.md#list) | **GET** /pulp/api/v3/groups/ | List groups
|
11
|
-
[**list_roles**](GroupsApi.md#list_roles) | **GET** {group_href}list_roles/ |
|
12
|
-
[**my_permissions**](GroupsApi.md#my_permissions) | **GET** {group_href}my_permissions/ |
|
11
|
+
[**list_roles**](GroupsApi.md#list_roles) | **GET** {group_href}list_roles/ | List roles
|
12
|
+
[**my_permissions**](GroupsApi.md#my_permissions) | **GET** {group_href}my_permissions/ | List user permissions
|
13
13
|
[**partial_update**](GroupsApi.md#partial_update) | **PATCH** {group_href} | Update a group
|
14
14
|
[**read**](GroupsApi.md#read) | **GET** {group_href} | Inspect a group
|
15
|
-
[**remove_role**](GroupsApi.md#remove_role) | **POST** {group_href}remove_role/ |
|
15
|
+
[**remove_role**](GroupsApi.md#remove_role) | **POST** {group_href}remove_role/ | Remove a role
|
16
16
|
[**update**](GroupsApi.md#update) | **PUT** {group_href} | Update a group
|
17
17
|
|
18
18
|
|
@@ -21,7 +21,7 @@ Method | HTTP request | Description
|
|
21
21
|
|
22
22
|
> NestedRoleResponse add_role(group_href, nested_role)
|
23
23
|
|
24
|
-
|
24
|
+
Add a role
|
25
25
|
|
26
26
|
Add a role for this object to users/groups.
|
27
27
|
|
@@ -42,6 +42,7 @@ group_href = 'group_href_example' # String |
|
|
42
42
|
nested_role = PulpcoreClient::NestedRole.new # NestedRole |
|
43
43
|
|
44
44
|
begin
|
45
|
+
#Add a role
|
45
46
|
result = api_instance.add_role(group_href, nested_role)
|
46
47
|
p result
|
47
48
|
rescue PulpcoreClient::ApiError => e
|
@@ -261,7 +262,7 @@ Name | Type | Description | Notes
|
|
261
262
|
|
262
263
|
> ObjectRolesResponse list_roles(group_href, opts)
|
263
264
|
|
264
|
-
|
265
|
+
List roles
|
265
266
|
|
266
267
|
List roles assigned to this object.
|
267
268
|
|
@@ -285,6 +286,7 @@ opts = {
|
|
285
286
|
}
|
286
287
|
|
287
288
|
begin
|
289
|
+
#List roles
|
288
290
|
result = api_instance.list_roles(group_href, opts)
|
289
291
|
p result
|
290
292
|
rescue PulpcoreClient::ApiError => e
|
@@ -319,7 +321,7 @@ Name | Type | Description | Notes
|
|
319
321
|
|
320
322
|
> MyPermissionsResponse my_permissions(group_href, opts)
|
321
323
|
|
322
|
-
|
324
|
+
List user permissions
|
323
325
|
|
324
326
|
List permissions available to the current user on this object.
|
325
327
|
|
@@ -343,6 +345,7 @@ opts = {
|
|
343
345
|
}
|
344
346
|
|
345
347
|
begin
|
348
|
+
#List user permissions
|
346
349
|
result = api_instance.my_permissions(group_href, opts)
|
347
350
|
p result
|
348
351
|
rescue PulpcoreClient::ApiError => e
|
@@ -491,7 +494,7 @@ Name | Type | Description | Notes
|
|
491
494
|
|
492
495
|
> NestedRoleResponse remove_role(group_href, nested_role)
|
493
496
|
|
494
|
-
|
497
|
+
Remove a role
|
495
498
|
|
496
499
|
Remove a role for this object from users/groups.
|
497
500
|
|
@@ -512,6 +515,7 @@ group_href = 'group_href_example' # String |
|
|
512
515
|
nested_role = PulpcoreClient::NestedRole.new # NestedRole |
|
513
516
|
|
514
517
|
begin
|
518
|
+
#Remove a role
|
515
519
|
result = api_instance.remove_role(group_href, nested_role)
|
516
520
|
p result
|
517
521
|
rescue PulpcoreClient::ApiError => e
|
data/docs/TaskSchedulesApi.md
CHANGED
@@ -4,12 +4,12 @@ All URIs are relative to *https://pulp*
|
|
4
4
|
|
5
5
|
Method | HTTP request | Description
|
6
6
|
------------- | ------------- | -------------
|
7
|
-
[**add_role**](TaskSchedulesApi.md#add_role) | **POST** {task_schedule_href}add_role/ |
|
7
|
+
[**add_role**](TaskSchedulesApi.md#add_role) | **POST** {task_schedule_href}add_role/ | Add a role
|
8
8
|
[**list**](TaskSchedulesApi.md#list) | **GET** /pulp/api/v3/task-schedules/ | List task schedules
|
9
|
-
[**list_roles**](TaskSchedulesApi.md#list_roles) | **GET** {task_schedule_href}list_roles/ |
|
10
|
-
[**my_permissions**](TaskSchedulesApi.md#my_permissions) | **GET** {task_schedule_href}my_permissions/ |
|
9
|
+
[**list_roles**](TaskSchedulesApi.md#list_roles) | **GET** {task_schedule_href}list_roles/ | List roles
|
10
|
+
[**my_permissions**](TaskSchedulesApi.md#my_permissions) | **GET** {task_schedule_href}my_permissions/ | List user permissions
|
11
11
|
[**read**](TaskSchedulesApi.md#read) | **GET** {task_schedule_href} | Inspect a task schedule
|
12
|
-
[**remove_role**](TaskSchedulesApi.md#remove_role) | **POST** {task_schedule_href}remove_role/ |
|
12
|
+
[**remove_role**](TaskSchedulesApi.md#remove_role) | **POST** {task_schedule_href}remove_role/ | Remove a role
|
13
13
|
|
14
14
|
|
15
15
|
|
@@ -17,7 +17,7 @@ Method | HTTP request | Description
|
|
17
17
|
|
18
18
|
> NestedRoleResponse add_role(task_schedule_href, nested_role)
|
19
19
|
|
20
|
-
|
20
|
+
Add a role
|
21
21
|
|
22
22
|
Add a role for this object to users/groups.
|
23
23
|
|
@@ -38,6 +38,7 @@ task_schedule_href = 'task_schedule_href_example' # String |
|
|
38
38
|
nested_role = PulpcoreClient::NestedRole.new # NestedRole |
|
39
39
|
|
40
40
|
begin
|
41
|
+
#Add a role
|
41
42
|
result = api_instance.add_role(task_schedule_href, nested_role)
|
42
43
|
p result
|
43
44
|
rescue PulpcoreClient::ApiError => e
|
@@ -146,7 +147,7 @@ Name | Type | Description | Notes
|
|
146
147
|
|
147
148
|
> ObjectRolesResponse list_roles(task_schedule_href, opts)
|
148
149
|
|
149
|
-
|
150
|
+
List roles
|
150
151
|
|
151
152
|
List roles assigned to this object.
|
152
153
|
|
@@ -170,6 +171,7 @@ opts = {
|
|
170
171
|
}
|
171
172
|
|
172
173
|
begin
|
174
|
+
#List roles
|
173
175
|
result = api_instance.list_roles(task_schedule_href, opts)
|
174
176
|
p result
|
175
177
|
rescue PulpcoreClient::ApiError => e
|
@@ -204,7 +206,7 @@ Name | Type | Description | Notes
|
|
204
206
|
|
205
207
|
> MyPermissionsResponse my_permissions(task_schedule_href, opts)
|
206
208
|
|
207
|
-
|
209
|
+
List user permissions
|
208
210
|
|
209
211
|
List permissions available to the current user on this object.
|
210
212
|
|
@@ -228,6 +230,7 @@ opts = {
|
|
228
230
|
}
|
229
231
|
|
230
232
|
begin
|
233
|
+
#List user permissions
|
231
234
|
result = api_instance.my_permissions(task_schedule_href, opts)
|
232
235
|
p result
|
233
236
|
rescue PulpcoreClient::ApiError => e
|
@@ -321,7 +324,7 @@ Name | Type | Description | Notes
|
|
321
324
|
|
322
325
|
> NestedRoleResponse remove_role(task_schedule_href, nested_role)
|
323
326
|
|
324
|
-
|
327
|
+
Remove a role
|
325
328
|
|
326
329
|
Remove a role for this object from users/groups.
|
327
330
|
|
@@ -342,6 +345,7 @@ task_schedule_href = 'task_schedule_href_example' # String |
|
|
342
345
|
nested_role = PulpcoreClient::NestedRole.new # NestedRole |
|
343
346
|
|
344
347
|
begin
|
348
|
+
#Remove a role
|
345
349
|
result = api_instance.remove_role(task_schedule_href, nested_role)
|
346
350
|
p result
|
347
351
|
rescue PulpcoreClient::ApiError => e
|
data/docs/TasksApi.md
CHANGED
@@ -4,14 +4,14 @@ All URIs are relative to *https://pulp*
|
|
4
4
|
|
5
5
|
Method | HTTP request | Description
|
6
6
|
------------- | ------------- | -------------
|
7
|
-
[**add_role**](TasksApi.md#add_role) | **POST** {task_href}add_role/ |
|
7
|
+
[**add_role**](TasksApi.md#add_role) | **POST** {task_href}add_role/ | Add a role
|
8
8
|
[**delete**](TasksApi.md#delete) | **DELETE** {task_href} | Delete a task
|
9
9
|
[**list**](TasksApi.md#list) | **GET** /pulp/api/v3/tasks/ | List tasks
|
10
|
-
[**list_roles**](TasksApi.md#list_roles) | **GET** {task_href}list_roles/ |
|
11
|
-
[**my_permissions**](TasksApi.md#my_permissions) | **GET** {task_href}my_permissions/ |
|
10
|
+
[**list_roles**](TasksApi.md#list_roles) | **GET** {task_href}list_roles/ | List roles
|
11
|
+
[**my_permissions**](TasksApi.md#my_permissions) | **GET** {task_href}my_permissions/ | List user permissions
|
12
12
|
[**purge**](TasksApi.md#purge) | **POST** /pulp/api/v3/tasks/purge/ | Purge Completed Tasks
|
13
13
|
[**read**](TasksApi.md#read) | **GET** {task_href} | Inspect a task
|
14
|
-
[**remove_role**](TasksApi.md#remove_role) | **POST** {task_href}remove_role/ |
|
14
|
+
[**remove_role**](TasksApi.md#remove_role) | **POST** {task_href}remove_role/ | Remove a role
|
15
15
|
[**tasks_cancel**](TasksApi.md#tasks_cancel) | **PATCH** {task_href} | Cancel a task
|
16
16
|
|
17
17
|
|
@@ -20,7 +20,7 @@ Method | HTTP request | Description
|
|
20
20
|
|
21
21
|
> NestedRoleResponse add_role(task_href, nested_role)
|
22
22
|
|
23
|
-
|
23
|
+
Add a role
|
24
24
|
|
25
25
|
Add a role for this object to users/groups.
|
26
26
|
|
@@ -41,6 +41,7 @@ task_href = 'task_href_example' # String |
|
|
41
41
|
nested_role = PulpcoreClient::NestedRole.new # NestedRole |
|
42
42
|
|
43
43
|
begin
|
44
|
+
#Add a role
|
44
45
|
result = api_instance.add_role(task_href, nested_role)
|
45
46
|
p result
|
46
47
|
rescue PulpcoreClient::ApiError => e
|
@@ -257,7 +258,7 @@ Name | Type | Description | Notes
|
|
257
258
|
|
258
259
|
> ObjectRolesResponse list_roles(task_href, opts)
|
259
260
|
|
260
|
-
|
261
|
+
List roles
|
261
262
|
|
262
263
|
List roles assigned to this object.
|
263
264
|
|
@@ -281,6 +282,7 @@ opts = {
|
|
281
282
|
}
|
282
283
|
|
283
284
|
begin
|
285
|
+
#List roles
|
284
286
|
result = api_instance.list_roles(task_href, opts)
|
285
287
|
p result
|
286
288
|
rescue PulpcoreClient::ApiError => e
|
@@ -315,7 +317,7 @@ Name | Type | Description | Notes
|
|
315
317
|
|
316
318
|
> MyPermissionsResponse my_permissions(task_href, opts)
|
317
319
|
|
318
|
-
|
320
|
+
List user permissions
|
319
321
|
|
320
322
|
List permissions available to the current user on this object.
|
321
323
|
|
@@ -339,6 +341,7 @@ opts = {
|
|
339
341
|
}
|
340
342
|
|
341
343
|
begin
|
344
|
+
#List user permissions
|
342
345
|
result = api_instance.my_permissions(task_href, opts)
|
343
346
|
p result
|
344
347
|
rescue PulpcoreClient::ApiError => e
|
@@ -485,7 +488,7 @@ Name | Type | Description | Notes
|
|
485
488
|
|
486
489
|
> NestedRoleResponse remove_role(task_href, nested_role)
|
487
490
|
|
488
|
-
|
491
|
+
Remove a role
|
489
492
|
|
490
493
|
Remove a role for this object from users/groups.
|
491
494
|
|
@@ -506,6 +509,7 @@ task_href = 'task_href_example' # String |
|
|
506
509
|
nested_role = PulpcoreClient::NestedRole.new # NestedRole |
|
507
510
|
|
508
511
|
begin
|
512
|
+
#Remove a role
|
509
513
|
result = api_instance.remove_role(task_href, nested_role)
|
510
514
|
p result
|
511
515
|
rescue PulpcoreClient::ApiError => e
|