pulpcore_client 3.22.21 → 3.23.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 +26 -4
- data/docs/ArtifactDistributionResponse.md +6 -6
- data/docs/DistributionsApi.md +4 -0
- data/docs/DistributionsArtifactsApi.md +4 -0
- data/docs/Domain.md +27 -0
- data/docs/DomainResponse.md +31 -0
- data/docs/DomainsApi.md +362 -0
- data/docs/ExportersFilesystemApi.md +3 -3
- data/docs/ExportersFilesystemExportsApi.md +3 -3
- data/docs/GroupRole.md +3 -1
- data/docs/GroupRoleResponse.md +3 -1
- data/docs/GroupsApi.md +6 -6
- data/docs/GroupsRolesApi.md +6 -4
- data/docs/PaginatedDomainResponseList.md +23 -0
- data/docs/PaginatedUpstreamPulpResponseList.md +23 -0
- data/docs/PatchedDomain.md +27 -0
- data/docs/PatchedUpstreamPulp.md +37 -0
- data/docs/RepositoriesApi.md +16 -0
- data/docs/RepositoryResponse.md +1 -1
- data/docs/RolesApi.md +6 -6
- data/docs/StatusResponse.md +3 -1
- data/docs/StorageClassEnum.md +16 -0
- data/docs/TaskSchedulesApi.md +2 -2
- data/docs/TasksApi.md +1 -1
- data/docs/UpstreamPulp.md +37 -0
- data/docs/UpstreamPulpResponse.md +39 -0
- data/docs/UpstreamPulpsApi.md +405 -0
- data/docs/UserRole.md +4 -2
- data/docs/UserRoleResponse.md +4 -2
- data/docs/UsersApi.md +6 -6
- data/docs/UsersRolesApi.md +6 -4
- data/docs/VersionResponse.md +3 -1
- data/lib/pulpcore_client/api/distributions_api.rb +6 -0
- data/lib/pulpcore_client/api/distributions_artifacts_api.rb +6 -0
- data/lib/pulpcore_client/api/domains_api.rb +446 -0
- data/lib/pulpcore_client/api/exporters_filesystem_api.rb +6 -6
- data/lib/pulpcore_client/api/exporters_filesystem_exports_api.rb +6 -6
- data/lib/pulpcore_client/api/groups_api.rb +12 -12
- data/lib/pulpcore_client/api/groups_roles_api.rb +11 -8
- data/lib/pulpcore_client/api/repositories_api.rb +24 -0
- data/lib/pulpcore_client/api/roles_api.rb +12 -12
- data/lib/pulpcore_client/api/task_schedules_api.rb +4 -4
- data/lib/pulpcore_client/api/tasks_api.rb +2 -2
- data/lib/pulpcore_client/api/upstream_pulps_api.rb +492 -0
- data/lib/pulpcore_client/api/users_api.rb +12 -12
- data/lib/pulpcore_client/api/users_roles_api.rb +11 -8
- data/lib/pulpcore_client/api/workers_api.rb +1 -1
- data/lib/pulpcore_client/models/artifact_distribution_response.rb +29 -29
- data/lib/pulpcore_client/models/domain.rb +323 -0
- data/lib/pulpcore_client/models/domain_response.rb +318 -0
- data/lib/pulpcore_client/models/group_role.rb +16 -5
- data/lib/pulpcore_client/models/group_role_response.rb +15 -4
- data/lib/pulpcore_client/models/nested_role.rb +19 -0
- data/lib/pulpcore_client/models/paginated_domain_response_list.rb +237 -0
- data/lib/pulpcore_client/models/paginated_upstream_pulp_response_list.rb +237 -0
- data/lib/pulpcore_client/models/patched_domain.rb +304 -0
- data/lib/pulpcore_client/models/patched_upstream_pulp.rb +450 -0
- data/lib/pulpcore_client/models/repository_response.rb +1 -1
- data/lib/pulpcore_client/models/status_response.rb +19 -4
- data/lib/pulpcore_client/models/storage_class_enum.rb +37 -0
- data/lib/pulpcore_client/models/upstream_pulp.rb +477 -0
- data/lib/pulpcore_client/models/upstream_pulp_response.rb +338 -0
- data/lib/pulpcore_client/models/user_role.rb +17 -6
- data/lib/pulpcore_client/models/user_role_response.rb +16 -5
- data/lib/pulpcore_client/models/version_response.rb +19 -4
- data/lib/pulpcore_client/version.rb +1 -1
- data/lib/pulpcore_client.rb +11 -0
- data/spec/api/distributions_api_spec.rb +2 -0
- data/spec/api/distributions_artifacts_api_spec.rb +2 -0
- data/spec/api/domains_api_spec.rb +120 -0
- data/spec/api/exporters_filesystem_api_spec.rb +3 -3
- data/spec/api/exporters_filesystem_exports_api_spec.rb +3 -3
- data/spec/api/groups_api_spec.rb +6 -6
- data/spec/api/groups_roles_api_spec.rb +5 -4
- data/spec/api/repositories_api_spec.rb +8 -0
- data/spec/api/roles_api_spec.rb +6 -6
- data/spec/api/task_schedules_api_spec.rb +2 -2
- data/spec/api/tasks_api_spec.rb +1 -1
- data/spec/api/upstream_pulps_api_spec.rb +127 -0
- data/spec/api/users_api_spec.rb +6 -6
- data/spec/api/users_roles_api_spec.rb +5 -4
- data/spec/models/artifact_distribution_response_spec.rb +7 -7
- data/spec/models/domain_response_spec.rb +83 -0
- data/spec/models/domain_spec.rb +71 -0
- data/spec/models/group_role_response_spec.rb +6 -0
- data/spec/models/group_role_spec.rb +6 -0
- data/spec/models/paginated_domain_response_list_spec.rb +59 -0
- data/spec/models/paginated_upstream_pulp_response_list_spec.rb +59 -0
- data/spec/models/patched_domain_spec.rb +71 -0
- data/spec/models/patched_upstream_pulp_spec.rb +101 -0
- data/spec/models/status_response_spec.rb +6 -0
- data/spec/models/storage_class_enum_spec.rb +35 -0
- data/spec/models/upstream_pulp_response_spec.rb +107 -0
- data/spec/models/upstream_pulp_spec.rb +101 -0
- data/spec/models/user_role_response_spec.rb +6 -0
- data/spec/models/user_role_spec.rb +6 -0
- data/spec/models/version_response_spec.rb +6 -0
- metadata +173 -129
data/docs/GroupRole.md
CHANGED
|
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
|
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**role** | **String** | |
|
|
8
8
|
**content_object** | **String** | pulp_href of the object for which role permissions should be asserted. If set to 'null', permissions will act on the model-level. |
|
|
9
|
+
**domain** | **String** | Domain this role should be applied on, mutually exclusive with content_object. | [optional]
|
|
9
10
|
|
|
10
11
|
## Code Sample
|
|
11
12
|
|
|
@@ -13,7 +14,8 @@ Name | Type | Description | Notes
|
|
|
13
14
|
require 'PulpcoreClient'
|
|
14
15
|
|
|
15
16
|
instance = PulpcoreClient::GroupRole.new(role: null,
|
|
16
|
-
content_object: null
|
|
17
|
+
content_object: null,
|
|
18
|
+
domain: null)
|
|
17
19
|
```
|
|
18
20
|
|
|
19
21
|
|
data/docs/GroupRoleResponse.md
CHANGED
|
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
|
|
|
10
10
|
**content_object** | **String** | pulp_href of the object for which role permissions should be asserted. If set to 'null', permissions will act on the model-level. |
|
|
11
11
|
**description** | **String** | | [optional] [readonly]
|
|
12
12
|
**permissions** | **Array<String>** | | [optional] [readonly]
|
|
13
|
+
**domain** | **String** | Domain this role should be applied on, mutually exclusive with content_object. | [optional]
|
|
13
14
|
|
|
14
15
|
## Code Sample
|
|
15
16
|
|
|
@@ -21,7 +22,8 @@ instance = PulpcoreClient::GroupRoleResponse.new(pulp_href: null,
|
|
|
21
22
|
role: null,
|
|
22
23
|
content_object: null,
|
|
23
24
|
description: null,
|
|
24
|
-
permissions: null
|
|
25
|
+
permissions: null,
|
|
26
|
+
domain: null)
|
|
25
27
|
```
|
|
26
28
|
|
|
27
29
|
|
data/docs/GroupsApi.md
CHANGED
|
@@ -77,7 +77,7 @@ Name | Type | Description | Notes
|
|
|
77
77
|
|
|
78
78
|
Create a group
|
|
79
79
|
|
|
80
|
-
ViewSet for Group.
|
|
80
|
+
ViewSet for Group.
|
|
81
81
|
|
|
82
82
|
### Example
|
|
83
83
|
|
|
@@ -130,7 +130,7 @@ Name | Type | Description | Notes
|
|
|
130
130
|
|
|
131
131
|
Delete a group
|
|
132
132
|
|
|
133
|
-
ViewSet for Group.
|
|
133
|
+
ViewSet for Group.
|
|
134
134
|
|
|
135
135
|
### Example
|
|
136
136
|
|
|
@@ -182,7 +182,7 @@ nil (empty response body)
|
|
|
182
182
|
|
|
183
183
|
List groups
|
|
184
184
|
|
|
185
|
-
ViewSet for Group.
|
|
185
|
+
ViewSet for Group.
|
|
186
186
|
|
|
187
187
|
### Example
|
|
188
188
|
|
|
@@ -375,7 +375,7 @@ Name | Type | Description | Notes
|
|
|
375
375
|
|
|
376
376
|
Update a group
|
|
377
377
|
|
|
378
|
-
ViewSet for Group.
|
|
378
|
+
ViewSet for Group.
|
|
379
379
|
|
|
380
380
|
### Example
|
|
381
381
|
|
|
@@ -430,7 +430,7 @@ Name | Type | Description | Notes
|
|
|
430
430
|
|
|
431
431
|
Inspect a group
|
|
432
432
|
|
|
433
|
-
ViewSet for Group.
|
|
433
|
+
ViewSet for Group.
|
|
434
434
|
|
|
435
435
|
### Example
|
|
436
436
|
|
|
@@ -543,7 +543,7 @@ Name | Type | Description | Notes
|
|
|
543
543
|
|
|
544
544
|
Update a group
|
|
545
545
|
|
|
546
|
-
ViewSet for Group.
|
|
546
|
+
ViewSet for Group.
|
|
547
547
|
|
|
548
548
|
### Example
|
|
549
549
|
|
data/docs/GroupsRolesApi.md
CHANGED
|
@@ -17,7 +17,7 @@ Method | HTTP request | Description
|
|
|
17
17
|
|
|
18
18
|
Create a group role
|
|
19
19
|
|
|
20
|
-
ViewSet for GroupRole.
|
|
20
|
+
ViewSet for GroupRole.
|
|
21
21
|
|
|
22
22
|
### Example
|
|
23
23
|
|
|
@@ -72,7 +72,7 @@ Name | Type | Description | Notes
|
|
|
72
72
|
|
|
73
73
|
Delete a group role
|
|
74
74
|
|
|
75
|
-
ViewSet for GroupRole.
|
|
75
|
+
ViewSet for GroupRole.
|
|
76
76
|
|
|
77
77
|
### Example
|
|
78
78
|
|
|
@@ -124,7 +124,7 @@ nil (empty response body)
|
|
|
124
124
|
|
|
125
125
|
List group roles
|
|
126
126
|
|
|
127
|
-
ViewSet for GroupRole.
|
|
127
|
+
ViewSet for GroupRole.
|
|
128
128
|
|
|
129
129
|
### Example
|
|
130
130
|
|
|
@@ -142,6 +142,7 @@ api_instance = PulpcoreClient::GroupsRolesApi.new
|
|
|
142
142
|
group_href = 'group_href_example' # String |
|
|
143
143
|
opts = {
|
|
144
144
|
content_object: 'content_object_example', # String | content_object
|
|
145
|
+
domain: 'domain_example', # String | Foreign Key referenced by HREF
|
|
145
146
|
limit: 56, # Integer | Number of results to return per page.
|
|
146
147
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
147
148
|
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
@@ -170,6 +171,7 @@ Name | Type | Description | Notes
|
|
|
170
171
|
------------- | ------------- | ------------- | -------------
|
|
171
172
|
**group_href** | **String**| |
|
|
172
173
|
**content_object** | **String**| content_object | [optional]
|
|
174
|
+
**domain** | **String**| Foreign Key referenced by HREF | [optional]
|
|
173
175
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
174
176
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
175
177
|
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
@@ -201,7 +203,7 @@ Name | Type | Description | Notes
|
|
|
201
203
|
|
|
202
204
|
Inspect a group role
|
|
203
205
|
|
|
204
|
-
ViewSet for GroupRole.
|
|
206
|
+
ViewSet for GroupRole.
|
|
205
207
|
|
|
206
208
|
### Example
|
|
207
209
|
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# PulpcoreClient::PaginatedDomainResponseList
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**count** | **Integer** | | [optional]
|
|
8
|
+
**_next** | **String** | | [optional]
|
|
9
|
+
**previous** | **String** | | [optional]
|
|
10
|
+
**results** | [**Array<DomainResponse>**](DomainResponse.md) | | [optional]
|
|
11
|
+
|
|
12
|
+
## Code Sample
|
|
13
|
+
|
|
14
|
+
```ruby
|
|
15
|
+
require 'PulpcoreClient'
|
|
16
|
+
|
|
17
|
+
instance = PulpcoreClient::PaginatedDomainResponseList.new(count: 123,
|
|
18
|
+
_next: http://api.example.org/accounts/?offset=400&limit=100,
|
|
19
|
+
previous: http://api.example.org/accounts/?offset=200&limit=100,
|
|
20
|
+
results: null)
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# PulpcoreClient::PaginatedUpstreamPulpResponseList
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**count** | **Integer** | | [optional]
|
|
8
|
+
**_next** | **String** | | [optional]
|
|
9
|
+
**previous** | **String** | | [optional]
|
|
10
|
+
**results** | [**Array<UpstreamPulpResponse>**](UpstreamPulpResponse.md) | | [optional]
|
|
11
|
+
|
|
12
|
+
## Code Sample
|
|
13
|
+
|
|
14
|
+
```ruby
|
|
15
|
+
require 'PulpcoreClient'
|
|
16
|
+
|
|
17
|
+
instance = PulpcoreClient::PaginatedUpstreamPulpResponseList.new(count: 123,
|
|
18
|
+
_next: http://api.example.org/accounts/?offset=400&limit=100,
|
|
19
|
+
previous: http://api.example.org/accounts/?offset=200&limit=100,
|
|
20
|
+
results: null)
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# PulpcoreClient::PatchedDomain
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**name** | **String** | A name for this domain. | [optional]
|
|
8
|
+
**description** | **String** | An optional description. | [optional]
|
|
9
|
+
**storage_class** | [**StorageClassEnum**](StorageClassEnum.md) | Backend storage class for domain. | [optional]
|
|
10
|
+
**storage_settings** | [**Object**](.md) | Settings for storage class. | [optional]
|
|
11
|
+
**redirect_to_object_storage** | **Boolean** | Boolean to have the content app redirect to object storage. | [optional] [default to true]
|
|
12
|
+
**hide_guarded_distributions** | **Boolean** | Boolean to hide distributions with a content guard in the content app. | [optional] [default to false]
|
|
13
|
+
|
|
14
|
+
## Code Sample
|
|
15
|
+
|
|
16
|
+
```ruby
|
|
17
|
+
require 'PulpcoreClient'
|
|
18
|
+
|
|
19
|
+
instance = PulpcoreClient::PatchedDomain.new(name: null,
|
|
20
|
+
description: null,
|
|
21
|
+
storage_class: null,
|
|
22
|
+
storage_settings: null,
|
|
23
|
+
redirect_to_object_storage: null,
|
|
24
|
+
hide_guarded_distributions: null)
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# PulpcoreClient::PatchedUpstreamPulp
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**name** | **String** | A unique name for this Pulp server. | [optional]
|
|
8
|
+
**base_url** | **String** | The transport, hostname, and an optional port of the Pulp server. e.g. https://example.com | [optional]
|
|
9
|
+
**api_root** | **String** | The API root. Defaults to '/pulp/'. | [optional]
|
|
10
|
+
**domain** | **String** | The domain of the Pulp server if enabled. | [optional]
|
|
11
|
+
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
|
12
|
+
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
|
13
|
+
**client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
|
|
14
|
+
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
|
15
|
+
**username** | **String** | The username to be used for authentication when syncing. | [optional]
|
|
16
|
+
**password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional]
|
|
17
|
+
**pulp_label_select** | **String** | One or more comma separated labels that will be used to filter distributions on the upstream Pulp. E.g. \"foo=bar,key=val\" or \"foo,key\" | [optional]
|
|
18
|
+
|
|
19
|
+
## Code Sample
|
|
20
|
+
|
|
21
|
+
```ruby
|
|
22
|
+
require 'PulpcoreClient'
|
|
23
|
+
|
|
24
|
+
instance = PulpcoreClient::PatchedUpstreamPulp.new(name: null,
|
|
25
|
+
base_url: null,
|
|
26
|
+
api_root: null,
|
|
27
|
+
domain: null,
|
|
28
|
+
ca_cert: null,
|
|
29
|
+
client_cert: null,
|
|
30
|
+
client_key: null,
|
|
31
|
+
tls_validation: null,
|
|
32
|
+
username: null,
|
|
33
|
+
password: null,
|
|
34
|
+
pulp_label_select: null)
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
|
data/docs/RepositoriesApi.md
CHANGED
|
@@ -40,6 +40,14 @@ opts = {
|
|
|
40
40
|
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
41
41
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
|
42
42
|
remote: 'remote_example', # String | Foreign Key referenced by HREF
|
|
43
|
+
retain_repo_versions: 56, # Integer | Filter results where retain_repo_versions matches value
|
|
44
|
+
retain_repo_versions__gt: 56, # Integer | Filter results where retain_repo_versions is greater than value
|
|
45
|
+
retain_repo_versions__gte: 56, # Integer | Filter results where retain_repo_versions is greater than or equal to value
|
|
46
|
+
retain_repo_versions__isnull: true, # Boolean | Filter results where retain_repo_versions has a null value
|
|
47
|
+
retain_repo_versions__lt: 56, # Integer | Filter results where retain_repo_versions is less than value
|
|
48
|
+
retain_repo_versions__lte: 56, # Integer | Filter results where retain_repo_versions is less than or equal to value
|
|
49
|
+
retain_repo_versions__ne: 56, # Integer | Filter results where retain_repo_versions not equal to value
|
|
50
|
+
retain_repo_versions__range: [56], # Array<Integer> | Filter results where retain_repo_versions is between two comma separated values
|
|
43
51
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
44
52
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
45
53
|
}
|
|
@@ -68,6 +76,14 @@ Name | Type | Description | Notes
|
|
|
68
76
|
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
69
77
|
**pulp_label_select** | **String**| Filter labels by search string | [optional]
|
|
70
78
|
**remote** | **String**| Foreign Key referenced by HREF | [optional]
|
|
79
|
+
**retain_repo_versions** | **Integer**| Filter results where retain_repo_versions matches value | [optional]
|
|
80
|
+
**retain_repo_versions__gt** | **Integer**| Filter results where retain_repo_versions is greater than value | [optional]
|
|
81
|
+
**retain_repo_versions__gte** | **Integer**| Filter results where retain_repo_versions is greater than or equal to value | [optional]
|
|
82
|
+
**retain_repo_versions__isnull** | **Boolean**| Filter results where retain_repo_versions has a null value | [optional]
|
|
83
|
+
**retain_repo_versions__lt** | **Integer**| Filter results where retain_repo_versions is less than value | [optional]
|
|
84
|
+
**retain_repo_versions__lte** | **Integer**| Filter results where retain_repo_versions is less than or equal to value | [optional]
|
|
85
|
+
**retain_repo_versions__ne** | **Integer**| Filter results where retain_repo_versions not equal to value | [optional]
|
|
86
|
+
**retain_repo_versions__range** | [**Array<Integer>**](Integer.md)| Filter results where retain_repo_versions is between two comma separated values | [optional]
|
|
71
87
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
72
88
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
73
89
|
|
data/docs/RepositoryResponse.md
CHANGED
|
@@ -11,7 +11,7 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**latest_version_href** | **String** | | [optional] [readonly]
|
|
12
12
|
**name** | **String** | A unique name for this repository. |
|
|
13
13
|
**description** | **String** | An optional description. | [optional]
|
|
14
|
-
**retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions.
|
|
14
|
+
**retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. | [optional]
|
|
15
15
|
**remote** | **String** | An optional remote to use by default when syncing. | [optional]
|
|
16
16
|
|
|
17
17
|
## Code Sample
|
data/docs/RolesApi.md
CHANGED
|
@@ -19,7 +19,7 @@ Method | HTTP request | Description
|
|
|
19
19
|
|
|
20
20
|
Create a role
|
|
21
21
|
|
|
22
|
-
ViewSet for Role.
|
|
22
|
+
ViewSet for Role.
|
|
23
23
|
|
|
24
24
|
### Example
|
|
25
25
|
|
|
@@ -72,7 +72,7 @@ Name | Type | Description | Notes
|
|
|
72
72
|
|
|
73
73
|
Delete a role
|
|
74
74
|
|
|
75
|
-
ViewSet for Role.
|
|
75
|
+
ViewSet for Role.
|
|
76
76
|
|
|
77
77
|
### Example
|
|
78
78
|
|
|
@@ -124,7 +124,7 @@ nil (empty response body)
|
|
|
124
124
|
|
|
125
125
|
List roles
|
|
126
126
|
|
|
127
|
-
ViewSet for Role.
|
|
127
|
+
ViewSet for Role.
|
|
128
128
|
|
|
129
129
|
### Example
|
|
130
130
|
|
|
@@ -211,7 +211,7 @@ Name | Type | Description | Notes
|
|
|
211
211
|
|
|
212
212
|
Update a role
|
|
213
213
|
|
|
214
|
-
ViewSet for Role.
|
|
214
|
+
ViewSet for Role.
|
|
215
215
|
|
|
216
216
|
### Example
|
|
217
217
|
|
|
@@ -266,7 +266,7 @@ Name | Type | Description | Notes
|
|
|
266
266
|
|
|
267
267
|
Inspect a role
|
|
268
268
|
|
|
269
|
-
ViewSet for Role.
|
|
269
|
+
ViewSet for Role.
|
|
270
270
|
|
|
271
271
|
### Example
|
|
272
272
|
|
|
@@ -325,7 +325,7 @@ Name | Type | Description | Notes
|
|
|
325
325
|
|
|
326
326
|
Update a role
|
|
327
327
|
|
|
328
|
-
ViewSet for Role.
|
|
328
|
+
ViewSet for Role.
|
|
329
329
|
|
|
330
330
|
### Example
|
|
331
331
|
|
data/docs/StatusResponse.md
CHANGED
|
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**redis_connection** | [**RedisConnectionResponse**](RedisConnectionResponse.md) | Redis connection information | [optional]
|
|
12
12
|
**storage** | [**StorageResponse**](StorageResponse.md) | Storage information | [optional]
|
|
13
13
|
**content_settings** | [**ContentSettingsResponse**](ContentSettingsResponse.md) | Content-app settings |
|
|
14
|
+
**domain_enabled** | **Boolean** | Is Domains enabled |
|
|
14
15
|
|
|
15
16
|
## Code Sample
|
|
16
17
|
|
|
@@ -23,7 +24,8 @@ instance = PulpcoreClient::StatusResponse.new(versions: null,
|
|
|
23
24
|
database_connection: null,
|
|
24
25
|
redis_connection: null,
|
|
25
26
|
storage: null,
|
|
26
|
-
content_settings: null
|
|
27
|
+
content_settings: null,
|
|
28
|
+
domain_enabled: null)
|
|
27
29
|
```
|
|
28
30
|
|
|
29
31
|
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# PulpcoreClient::StorageClassEnum
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
|
|
8
|
+
## Code Sample
|
|
9
|
+
|
|
10
|
+
```ruby
|
|
11
|
+
require 'PulpcoreClient'
|
|
12
|
+
|
|
13
|
+
instance = PulpcoreClient::StorageClassEnum.new()
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
|
data/docs/TaskSchedulesApi.md
CHANGED
|
@@ -73,7 +73,7 @@ Name | Type | Description | Notes
|
|
|
73
73
|
|
|
74
74
|
List task schedules
|
|
75
75
|
|
|
76
|
-
ViewSet to monitor task schedules.
|
|
76
|
+
ViewSet to monitor task schedules.
|
|
77
77
|
|
|
78
78
|
### Example
|
|
79
79
|
|
|
@@ -260,7 +260,7 @@ Name | Type | Description | Notes
|
|
|
260
260
|
|
|
261
261
|
Inspect a task schedule
|
|
262
262
|
|
|
263
|
-
ViewSet to monitor task schedules.
|
|
263
|
+
ViewSet to monitor task schedules.
|
|
264
264
|
|
|
265
265
|
### Example
|
|
266
266
|
|
data/docs/TasksApi.md
CHANGED
|
@@ -371,7 +371,7 @@ Name | Type | Description | Notes
|
|
|
371
371
|
|
|
372
372
|
Purge Completed Tasks
|
|
373
373
|
|
|
374
|
-
Trigger an asynchronous task that deletes completed tasks that finished prior to a specified timestamp
|
|
374
|
+
Trigger an asynchronous task that deletes completed tasks that finished prior to a specified timestamp.
|
|
375
375
|
|
|
376
376
|
### Example
|
|
377
377
|
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# PulpcoreClient::UpstreamPulp
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**name** | **String** | A unique name for this Pulp server. |
|
|
8
|
+
**base_url** | **String** | The transport, hostname, and an optional port of the Pulp server. e.g. https://example.com |
|
|
9
|
+
**api_root** | **String** | The API root. Defaults to '/pulp/'. |
|
|
10
|
+
**domain** | **String** | The domain of the Pulp server if enabled. | [optional]
|
|
11
|
+
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
|
12
|
+
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
|
13
|
+
**client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
|
|
14
|
+
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
|
15
|
+
**username** | **String** | The username to be used for authentication when syncing. | [optional]
|
|
16
|
+
**password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional]
|
|
17
|
+
**pulp_label_select** | **String** | One or more comma separated labels that will be used to filter distributions on the upstream Pulp. E.g. \"foo=bar,key=val\" or \"foo,key\" | [optional]
|
|
18
|
+
|
|
19
|
+
## Code Sample
|
|
20
|
+
|
|
21
|
+
```ruby
|
|
22
|
+
require 'PulpcoreClient'
|
|
23
|
+
|
|
24
|
+
instance = PulpcoreClient::UpstreamPulp.new(name: null,
|
|
25
|
+
base_url: null,
|
|
26
|
+
api_root: null,
|
|
27
|
+
domain: null,
|
|
28
|
+
ca_cert: null,
|
|
29
|
+
client_cert: null,
|
|
30
|
+
client_key: null,
|
|
31
|
+
tls_validation: null,
|
|
32
|
+
username: null,
|
|
33
|
+
password: null,
|
|
34
|
+
pulp_label_select: null)
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# PulpcoreClient::UpstreamPulpResponse
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
Name | Type | Description | Notes
|
|
6
|
+
------------ | ------------- | ------------- | -------------
|
|
7
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
|
8
|
+
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
|
9
|
+
**name** | **String** | A unique name for this Pulp server. |
|
|
10
|
+
**base_url** | **String** | The transport, hostname, and an optional port of the Pulp server. e.g. https://example.com |
|
|
11
|
+
**api_root** | **String** | The API root. Defaults to '/pulp/'. |
|
|
12
|
+
**domain** | **String** | The domain of the Pulp server if enabled. | [optional]
|
|
13
|
+
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
|
14
|
+
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
|
15
|
+
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
|
16
|
+
**pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
|
|
17
|
+
**hidden_fields** | [**Array<RemoteResponseHiddenFields>**](RemoteResponseHiddenFields.md) | List of hidden (write only) fields | [optional] [readonly]
|
|
18
|
+
**pulp_label_select** | **String** | One or more comma separated labels that will be used to filter distributions on the upstream Pulp. E.g. \"foo=bar,key=val\" or \"foo,key\" | [optional]
|
|
19
|
+
|
|
20
|
+
## Code Sample
|
|
21
|
+
|
|
22
|
+
```ruby
|
|
23
|
+
require 'PulpcoreClient'
|
|
24
|
+
|
|
25
|
+
instance = PulpcoreClient::UpstreamPulpResponse.new(pulp_href: null,
|
|
26
|
+
pulp_created: null,
|
|
27
|
+
name: null,
|
|
28
|
+
base_url: null,
|
|
29
|
+
api_root: null,
|
|
30
|
+
domain: null,
|
|
31
|
+
ca_cert: null,
|
|
32
|
+
client_cert: null,
|
|
33
|
+
tls_validation: null,
|
|
34
|
+
pulp_last_updated: null,
|
|
35
|
+
hidden_fields: null,
|
|
36
|
+
pulp_label_select: null)
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
|