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.
Files changed (99) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +26 -4
  3. data/docs/ArtifactDistributionResponse.md +6 -6
  4. data/docs/DistributionsApi.md +4 -0
  5. data/docs/DistributionsArtifactsApi.md +4 -0
  6. data/docs/Domain.md +27 -0
  7. data/docs/DomainResponse.md +31 -0
  8. data/docs/DomainsApi.md +362 -0
  9. data/docs/ExportersFilesystemApi.md +3 -3
  10. data/docs/ExportersFilesystemExportsApi.md +3 -3
  11. data/docs/GroupRole.md +3 -1
  12. data/docs/GroupRoleResponse.md +3 -1
  13. data/docs/GroupsApi.md +6 -6
  14. data/docs/GroupsRolesApi.md +6 -4
  15. data/docs/PaginatedDomainResponseList.md +23 -0
  16. data/docs/PaginatedUpstreamPulpResponseList.md +23 -0
  17. data/docs/PatchedDomain.md +27 -0
  18. data/docs/PatchedUpstreamPulp.md +37 -0
  19. data/docs/RepositoriesApi.md +16 -0
  20. data/docs/RepositoryResponse.md +1 -1
  21. data/docs/RolesApi.md +6 -6
  22. data/docs/StatusResponse.md +3 -1
  23. data/docs/StorageClassEnum.md +16 -0
  24. data/docs/TaskSchedulesApi.md +2 -2
  25. data/docs/TasksApi.md +1 -1
  26. data/docs/UpstreamPulp.md +37 -0
  27. data/docs/UpstreamPulpResponse.md +39 -0
  28. data/docs/UpstreamPulpsApi.md +405 -0
  29. data/docs/UserRole.md +4 -2
  30. data/docs/UserRoleResponse.md +4 -2
  31. data/docs/UsersApi.md +6 -6
  32. data/docs/UsersRolesApi.md +6 -4
  33. data/docs/VersionResponse.md +3 -1
  34. data/lib/pulpcore_client/api/distributions_api.rb +6 -0
  35. data/lib/pulpcore_client/api/distributions_artifacts_api.rb +6 -0
  36. data/lib/pulpcore_client/api/domains_api.rb +446 -0
  37. data/lib/pulpcore_client/api/exporters_filesystem_api.rb +6 -6
  38. data/lib/pulpcore_client/api/exporters_filesystem_exports_api.rb +6 -6
  39. data/lib/pulpcore_client/api/groups_api.rb +12 -12
  40. data/lib/pulpcore_client/api/groups_roles_api.rb +11 -8
  41. data/lib/pulpcore_client/api/repositories_api.rb +24 -0
  42. data/lib/pulpcore_client/api/roles_api.rb +12 -12
  43. data/lib/pulpcore_client/api/task_schedules_api.rb +4 -4
  44. data/lib/pulpcore_client/api/tasks_api.rb +2 -2
  45. data/lib/pulpcore_client/api/upstream_pulps_api.rb +492 -0
  46. data/lib/pulpcore_client/api/users_api.rb +12 -12
  47. data/lib/pulpcore_client/api/users_roles_api.rb +11 -8
  48. data/lib/pulpcore_client/api/workers_api.rb +1 -1
  49. data/lib/pulpcore_client/models/artifact_distribution_response.rb +29 -29
  50. data/lib/pulpcore_client/models/domain.rb +323 -0
  51. data/lib/pulpcore_client/models/domain_response.rb +318 -0
  52. data/lib/pulpcore_client/models/group_role.rb +16 -5
  53. data/lib/pulpcore_client/models/group_role_response.rb +15 -4
  54. data/lib/pulpcore_client/models/nested_role.rb +19 -0
  55. data/lib/pulpcore_client/models/paginated_domain_response_list.rb +237 -0
  56. data/lib/pulpcore_client/models/paginated_upstream_pulp_response_list.rb +237 -0
  57. data/lib/pulpcore_client/models/patched_domain.rb +304 -0
  58. data/lib/pulpcore_client/models/patched_upstream_pulp.rb +450 -0
  59. data/lib/pulpcore_client/models/repository_response.rb +1 -1
  60. data/lib/pulpcore_client/models/status_response.rb +19 -4
  61. data/lib/pulpcore_client/models/storage_class_enum.rb +37 -0
  62. data/lib/pulpcore_client/models/upstream_pulp.rb +477 -0
  63. data/lib/pulpcore_client/models/upstream_pulp_response.rb +338 -0
  64. data/lib/pulpcore_client/models/user_role.rb +17 -6
  65. data/lib/pulpcore_client/models/user_role_response.rb +16 -5
  66. data/lib/pulpcore_client/models/version_response.rb +19 -4
  67. data/lib/pulpcore_client/version.rb +1 -1
  68. data/lib/pulpcore_client.rb +11 -0
  69. data/spec/api/distributions_api_spec.rb +2 -0
  70. data/spec/api/distributions_artifacts_api_spec.rb +2 -0
  71. data/spec/api/domains_api_spec.rb +120 -0
  72. data/spec/api/exporters_filesystem_api_spec.rb +3 -3
  73. data/spec/api/exporters_filesystem_exports_api_spec.rb +3 -3
  74. data/spec/api/groups_api_spec.rb +6 -6
  75. data/spec/api/groups_roles_api_spec.rb +5 -4
  76. data/spec/api/repositories_api_spec.rb +8 -0
  77. data/spec/api/roles_api_spec.rb +6 -6
  78. data/spec/api/task_schedules_api_spec.rb +2 -2
  79. data/spec/api/tasks_api_spec.rb +1 -1
  80. data/spec/api/upstream_pulps_api_spec.rb +127 -0
  81. data/spec/api/users_api_spec.rb +6 -6
  82. data/spec/api/users_roles_api_spec.rb +5 -4
  83. data/spec/models/artifact_distribution_response_spec.rb +7 -7
  84. data/spec/models/domain_response_spec.rb +83 -0
  85. data/spec/models/domain_spec.rb +71 -0
  86. data/spec/models/group_role_response_spec.rb +6 -0
  87. data/spec/models/group_role_spec.rb +6 -0
  88. data/spec/models/paginated_domain_response_list_spec.rb +59 -0
  89. data/spec/models/paginated_upstream_pulp_response_list_spec.rb +59 -0
  90. data/spec/models/patched_domain_spec.rb +71 -0
  91. data/spec/models/patched_upstream_pulp_spec.rb +101 -0
  92. data/spec/models/status_response_spec.rb +6 -0
  93. data/spec/models/storage_class_enum_spec.rb +35 -0
  94. data/spec/models/upstream_pulp_response_spec.rb +107 -0
  95. data/spec/models/upstream_pulp_spec.rb +101 -0
  96. data/spec/models/user_role_response_spec.rb +6 -0
  97. data/spec/models/user_role_spec.rb +6 -0
  98. data/spec/models/version_response_spec.rb +6 -0
  99. 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
 
@@ -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. NOTE: This API endpoint is in \"tech preview\" and subject to change
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. NOTE: This API endpoint is in \"tech preview\" and subject to change
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. NOTE: This API endpoint is in \"tech preview\" and subject to change
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. NOTE: This API endpoint is in \"tech preview\" and subject to change
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. NOTE: This API endpoint is in \"tech preview\" and subject to change
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. NOTE: This API endpoint is in \"tech preview\" and subject to change
546
+ ViewSet for Group.
547
547
 
548
548
  ### Example
549
549
 
@@ -17,7 +17,7 @@ Method | HTTP request | Description
17
17
 
18
18
  Create a group role
19
19
 
20
- ViewSet for GroupRole. NOTE: This API endpoint is in \"tech preview\" and subject to change
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. NOTE: This API endpoint is in \"tech preview\" and subject to change
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. NOTE: This API endpoint is in \"tech preview\" and subject to change
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&lt;String&gt;**](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. NOTE: This API endpoint is in \"tech preview\" and subject to change
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&lt;DomainResponse&gt;**](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&#x3D;400&amp;limit&#x3D;100,
19
+ previous: http://api.example.org/accounts/?offset&#x3D;200&amp;limit&#x3D;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&lt;UpstreamPulpResponse&gt;**](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&#x3D;400&amp;limit&#x3D;100,
19
+ previous: http://api.example.org/accounts/?offset&#x3D;200&amp;limit&#x3D;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 &#39;/pulp/&#39;. | [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. \&quot;foo&#x3D;bar,key&#x3D;val\&quot; or \&quot;foo,key\&quot; | [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
+
@@ -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&lt;String&gt;**](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&lt;Integer&gt;**](Integer.md)| Filter results where retain_repo_versions is between two comma separated values | [optional]
71
87
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
72
88
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
73
89
 
@@ -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. This is provided as a tech preview in Pulp 3 and may change in the future. | [optional]
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. NOTE: This API endpoint is in \"tech preview\" and subject to change
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. NOTE: This API endpoint is in \"tech preview\" and subject to change
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. NOTE: This API endpoint is in \"tech preview\" and subject to change
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. NOTE: This API endpoint is in \"tech preview\" and subject to change
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. NOTE: This API endpoint is in \"tech preview\" and subject to change
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. NOTE: This API endpoint is in \"tech preview\" and subject to change
328
+ ViewSet for Role.
329
329
 
330
330
  ### Example
331
331
 
@@ -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
+
@@ -73,7 +73,7 @@ Name | Type | Description | Notes
73
73
 
74
74
  List task schedules
75
75
 
76
- ViewSet to monitor task schedules. NOTE: This feature is in tech-preview and may change in backwards incompatible ways.
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. NOTE: This feature is in tech-preview and may change in backwards incompatible ways.
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 (tech-preview, may change in the future).
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 &#39;/pulp/&#39;. |
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. \&quot;foo&#x3D;bar,key&#x3D;val\&quot; or \&quot;foo,key\&quot; | [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 &#39;/pulp/&#39;. |
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&lt;RemoteResponseHiddenFields&gt;**](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. \&quot;foo&#x3D;bar,key&#x3D;val\&quot; or \&quot;foo,key\&quot; | [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
+