pulp_container_client 2.20.6 → 2.20.7

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 (94) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -6
  3. data/docs/ContainerContainerDistribution.md +5 -5
  4. data/docs/ContainerContainerDistributionResponse.md +9 -9
  5. data/docs/ContainerContainerPullThroughDistribution.md +5 -5
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +9 -9
  7. data/docs/ContainerContainerPullThroughRemote.md +1 -1
  8. data/docs/ContainerContainerPullThroughRemoteResponse.md +1 -1
  9. data/docs/ContainerContainerPushRepository.md +7 -7
  10. data/docs/ContainerContainerPushRepositoryResponse.md +12 -12
  11. data/docs/ContainerContainerRemote.md +1 -1
  12. data/docs/ContainerContainerRemoteResponse.md +1 -1
  13. data/docs/ContentBlobsApi.md +4 -0
  14. data/docs/ContentManifestsApi.md +4 -0
  15. data/docs/ContentSignaturesApi.md +4 -0
  16. data/docs/ContentTagsApi.md +4 -0
  17. data/docs/DistributionsContainerApi.md +56 -16
  18. data/docs/DistributionsPullThroughApi.md +56 -16
  19. data/docs/OCIBuildImage.md +1 -1
  20. data/docs/PatchedcontainerContainerDistribution.md +5 -5
  21. data/docs/PatchedcontainerContainerPullThroughDistribution.md +5 -5
  22. data/docs/PatchedcontainerContainerPullThroughRemote.md +1 -1
  23. data/docs/PatchedcontainerContainerPushRepository.md +7 -7
  24. data/docs/PatchedcontainerContainerRemote.md +1 -1
  25. data/docs/{Policy762Enum.md → Policy692Enum.md} +2 -2
  26. data/docs/{Policy8e2Enum.md → Policy7e0Enum.md} +2 -2
  27. data/docs/PulpContainerNamespacesApi.md +32 -8
  28. data/docs/RemotesContainerApi.md +56 -16
  29. data/docs/RemotesPullThroughApi.md +56 -16
  30. data/docs/RepositoriesContainerApi.md +108 -34
  31. data/docs/RepositoriesContainerPushApi.md +62 -18
  32. data/docs/RepositoriesContainerPushVersionsApi.md +16 -4
  33. data/docs/RepositoriesContainerVersionsApi.md +16 -4
  34. data/docs/TokenApi.md +13 -3
  35. data/lib/pulp_container_client/api/content_blobs_api.rb +6 -0
  36. data/lib/pulp_container_client/api/content_manifests_api.rb +6 -0
  37. data/lib/pulp_container_client/api/content_signatures_api.rb +6 -0
  38. data/lib/pulp_container_client/api/content_tags_api.rb +6 -0
  39. data/lib/pulp_container_client/api/distributions_container_api.rb +36 -0
  40. data/lib/pulp_container_client/api/distributions_pull_through_api.rb +36 -0
  41. data/lib/pulp_container_client/api/pulp_container_namespaces_api.rb +24 -0
  42. data/lib/pulp_container_client/api/remotes_container_api.rb +36 -0
  43. data/lib/pulp_container_client/api/remotes_pull_through_api.rb +36 -0
  44. data/lib/pulp_container_client/api/repositories_container_api.rb +65 -2
  45. data/lib/pulp_container_client/api/repositories_container_push_api.rb +39 -0
  46. data/lib/pulp_container_client/api/repositories_container_push_versions_api.rb +12 -0
  47. data/lib/pulp_container_client/api/repositories_container_versions_api.rb +12 -0
  48. data/lib/pulp_container_client/api/token_api.rb +9 -0
  49. data/lib/pulp_container_client/models/container_container_distribution.rb +22 -22
  50. data/lib/pulp_container_client/models/container_container_distribution_response.rb +42 -42
  51. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +22 -22
  52. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +42 -42
  53. data/lib/pulp_container_client/models/container_container_pull_through_remote.rb +1 -1
  54. data/lib/pulp_container_client/models/container_container_pull_through_remote_response.rb +1 -1
  55. data/lib/pulp_container_client/models/container_container_push_repository.rb +44 -44
  56. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +49 -49
  57. data/lib/pulp_container_client/models/container_container_remote.rb +1 -1
  58. data/lib/pulp_container_client/models/container_container_remote_response.rb +1 -1
  59. data/lib/pulp_container_client/models/oci_build_image.rb +1 -1
  60. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +22 -22
  61. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +22 -22
  62. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_remote.rb +1 -1
  63. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +44 -44
  64. data/lib/pulp_container_client/models/patchedcontainer_container_remote.rb +1 -1
  65. data/lib/pulp_container_client/models/{policy762_enum.rb → policy692_enum.rb} +3 -3
  66. data/lib/pulp_container_client/models/{policy8e2_enum.rb → policy7e0_enum.rb} +3 -3
  67. data/lib/pulp_container_client/version.rb +1 -1
  68. data/lib/pulp_container_client.rb +2 -2
  69. data/spec/api/content_blobs_api_spec.rb +2 -0
  70. data/spec/api/content_manifests_api_spec.rb +2 -0
  71. data/spec/api/content_signatures_api_spec.rb +2 -0
  72. data/spec/api/content_tags_api_spec.rb +2 -0
  73. data/spec/api/distributions_container_api_spec.rb +12 -0
  74. data/spec/api/distributions_pull_through_api_spec.rb +12 -0
  75. data/spec/api/pulp_container_namespaces_api_spec.rb +8 -0
  76. data/spec/api/remotes_container_api_spec.rb +12 -0
  77. data/spec/api/remotes_pull_through_api_spec.rb +12 -0
  78. data/spec/api/repositories_container_api_spec.rb +22 -1
  79. data/spec/api/repositories_container_push_api_spec.rb +13 -0
  80. data/spec/api/repositories_container_push_versions_api_spec.rb +4 -0
  81. data/spec/api/repositories_container_versions_api_spec.rb +4 -0
  82. data/spec/api/token_api_spec.rb +3 -0
  83. data/spec/models/container_container_distribution_response_spec.rb +8 -8
  84. data/spec/models/container_container_distribution_spec.rb +6 -6
  85. data/spec/models/container_container_pull_through_distribution_response_spec.rb +8 -8
  86. data/spec/models/container_container_pull_through_distribution_spec.rb +6 -6
  87. data/spec/models/container_container_push_repository_response_spec.rb +10 -10
  88. data/spec/models/container_container_push_repository_spec.rb +4 -4
  89. data/spec/models/patchedcontainer_container_distribution_spec.rb +6 -6
  90. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +6 -6
  91. data/spec/models/patchedcontainer_container_push_repository_spec.rb +4 -4
  92. data/spec/models/{policy762_enum_spec.rb → policy692_enum_spec.rb} +6 -6
  93. data/spec/models/{policy8e2_enum_spec.rb → policy7e0_enum_spec.rb} +6 -6
  94. metadata +67 -67
@@ -4,12 +4,12 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
+ **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
7
8
  **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
8
9
  **name** | **String** | A unique name. Ex, `rawhide` and `stable`. | [optional]
9
10
  **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
10
- **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\") | [optional]
11
- **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
12
11
  **pulp_labels** | **Hash<String, String>** | | [optional]
12
+ **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\") | [optional]
13
13
  **remote** | **String** | Remote that can be used to fetch content when using pull-through caching. | [optional]
14
14
  **distributions** | **Array<String>** | Distributions created after pulling content through cache | [optional]
15
15
  **private** | **Boolean** | Restrict pull access to explicitly authorized users. Related distributions inherit this value. Defaults to unrestricted pull access. | [optional]
@@ -20,12 +20,12 @@ Name | Type | Description | Notes
20
20
  ```ruby
21
21
  require 'PulpContainerClient'
22
22
 
23
- instance = PulpContainerClient::PatchedcontainerContainerPullThroughDistribution.new(content_guard: null,
23
+ instance = PulpContainerClient::PatchedcontainerContainerPullThroughDistribution.new(hidden: null,
24
+ content_guard: null,
24
25
  name: null,
25
26
  repository: null,
26
- base_path: null,
27
- hidden: null,
28
27
  pulp_labels: null,
28
+ base_path: null,
29
29
  remote: null,
30
30
  distributions: null,
31
31
  private: null,
@@ -18,7 +18,7 @@ Name | Type | Description | Notes
18
18
  **pulp_labels** | **Hash<String, String>** | | [optional]
19
19
  **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
20
20
  **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
21
- **policy** | [**Policy8e2Enum**](Policy8e2Enum.md) | | [optional]
21
+ **policy** | [**Policy7e0Enum**](Policy7e0Enum.md) | | [optional]
22
22
  **total_timeout** | **Float** | aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
23
23
  **connect_timeout** | **Float** | aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
24
24
  **sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
@@ -4,22 +4,22 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **name** | **String** | A unique name for this repository. | [optional]
8
- **description** | **String** | An optional description. | [optional]
9
7
  **manifest_signing_service** | **String** | A reference to an associated signing service. | [optional]
10
- **retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. | [optional]
8
+ **description** | **String** | An optional description. | [optional]
9
+ **name** | **String** | A unique name for this repository. | [optional]
11
10
  **pulp_labels** | **Hash<String, String>** | | [optional]
11
+ **retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. | [optional]
12
12
 
13
13
  ## Code Sample
14
14
 
15
15
  ```ruby
16
16
  require 'PulpContainerClient'
17
17
 
18
- instance = PulpContainerClient::PatchedcontainerContainerPushRepository.new(name: null,
18
+ instance = PulpContainerClient::PatchedcontainerContainerPushRepository.new(manifest_signing_service: null,
19
19
  description: null,
20
- manifest_signing_service: null,
21
- retain_repo_versions: null,
22
- pulp_labels: null)
20
+ name: null,
21
+ pulp_labels: null,
22
+ retain_repo_versions: null)
23
23
  ```
24
24
 
25
25
 
@@ -18,7 +18,7 @@ Name | Type | Description | Notes
18
18
  **pulp_labels** | **Hash<String, String>** | | [optional]
19
19
  **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
20
20
  **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
21
- **policy** | [**Policy762Enum**](Policy762Enum.md) | immediate - All manifests and blobs are downloaded and saved during a sync. on_demand - Only tags and manifests are downloaded. Blobs are not downloaded until they are requested for the first time by a client. streamed - Blobs are streamed to the client with every request and never saved. * `immediate` - When syncing, download all metadata and content now. * `on_demand` - When syncing, download metadata, but do not download content now. Instead, download content as clients request it, and save it in Pulp to be served for future client requests. * `streamed` - When syncing, download metadata, but do not download content now. Instead,download content as clients request it, but never save it in Pulp. This causes future requests for that same content to have to be downloaded again. | [optional]
21
+ **policy** | [**Policy692Enum**](Policy692Enum.md) | immediate - All manifests and blobs are downloaded and saved during a sync. on_demand - Only tags and manifests are downloaded. Blobs are not downloaded until they are requested for the first time by a client. streamed - Blobs are streamed to the client with every request and never saved. * `immediate` - When syncing, download all metadata and content now. * `on_demand` - When syncing, download metadata, but do not download content now. Instead, download content as clients request it, and save it in Pulp to be served for future client requests. * `streamed` - When syncing, download metadata, but do not download content now. Instead,download content as clients request it, but never save it in Pulp. This causes future requests for that same content to have to be downloaded again. | [optional]
22
22
  **total_timeout** | **Float** | aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
23
23
  **connect_timeout** | **Float** | aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
24
24
  **sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
@@ -1,4 +1,4 @@
1
- # PulpContainerClient::Policy762Enum
1
+ # PulpContainerClient::Policy692Enum
2
2
 
3
3
  ## Properties
4
4
 
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
10
10
  ```ruby
11
11
  require 'PulpContainerClient'
12
12
 
13
- instance = PulpContainerClient::Policy762Enum.new()
13
+ instance = PulpContainerClient::Policy692Enum.new()
14
14
  ```
15
15
 
16
16
 
@@ -1,4 +1,4 @@
1
- # PulpContainerClient::Policy8e2Enum
1
+ # PulpContainerClient::Policy7e0Enum
2
2
 
3
3
  ## Properties
4
4
 
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
10
10
  ```ruby
11
11
  require 'PulpContainerClient'
12
12
 
13
- instance = PulpContainerClient::Policy8e2Enum.new()
13
+ instance = PulpContainerClient::Policy7e0Enum.new()
14
14
  ```
15
15
 
16
16
 
@@ -17,7 +17,7 @@ Method | HTTP request | Description
17
17
 
18
18
  ## add_role
19
19
 
20
- > NestedRoleResponse add_role(container_container_namespace_href, nested_role)
20
+ > NestedRoleResponse add_role(container_container_namespace_href, nested_role, opts)
21
21
 
22
22
  Add a role
23
23
 
@@ -38,10 +38,13 @@ end
38
38
  api_instance = PulpContainerClient::PulpContainerNamespacesApi.new
39
39
  container_container_namespace_href = 'container_container_namespace_href_example' # String |
40
40
  nested_role = PulpContainerClient::NestedRole.new # NestedRole |
41
+ opts = {
42
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
43
+ }
41
44
 
42
45
  begin
43
46
  #Add a role
44
- result = api_instance.add_role(container_container_namespace_href, nested_role)
47
+ result = api_instance.add_role(container_container_namespace_href, nested_role, opts)
45
48
  p result
46
49
  rescue PulpContainerClient::ApiError => e
47
50
  puts "Exception when calling PulpContainerNamespacesApi->add_role: #{e}"
@@ -55,6 +58,7 @@ Name | Type | Description | Notes
55
58
  ------------- | ------------- | ------------- | -------------
56
59
  **container_container_namespace_href** | **String**| |
57
60
  **nested_role** | [**NestedRole**](NestedRole.md)| |
61
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
58
62
 
59
63
  ### Return type
60
64
 
@@ -72,7 +76,7 @@ Name | Type | Description | Notes
72
76
 
73
77
  ## create
74
78
 
75
- > ContainerContainerNamespaceResponse create(container_container_namespace)
79
+ > ContainerContainerNamespaceResponse create(container_container_namespace, opts)
76
80
 
77
81
  Create a container namespace
78
82
 
@@ -92,10 +96,13 @@ end
92
96
 
93
97
  api_instance = PulpContainerClient::PulpContainerNamespacesApi.new
94
98
  container_container_namespace = PulpContainerClient::ContainerContainerNamespace.new # ContainerContainerNamespace |
99
+ opts = {
100
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
101
+ }
95
102
 
96
103
  begin
97
104
  #Create a container namespace
98
- result = api_instance.create(container_container_namespace)
105
+ result = api_instance.create(container_container_namespace, opts)
99
106
  p result
100
107
  rescue PulpContainerClient::ApiError => e
101
108
  puts "Exception when calling PulpContainerNamespacesApi->create: #{e}"
@@ -108,6 +115,7 @@ end
108
115
  Name | Type | Description | Notes
109
116
  ------------- | ------------- | ------------- | -------------
110
117
  **container_container_namespace** | [**ContainerContainerNamespace**](ContainerContainerNamespace.md)| |
118
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
111
119
 
112
120
  ### Return type
113
121
 
@@ -125,7 +133,7 @@ Name | Type | Description | Notes
125
133
 
126
134
  ## delete
127
135
 
128
- > AsyncOperationResponse delete(container_container_namespace_href)
136
+ > AsyncOperationResponse delete(container_container_namespace_href, opts)
129
137
 
130
138
  Delete a container namespace
131
139
 
@@ -145,10 +153,13 @@ end
145
153
 
146
154
  api_instance = PulpContainerClient::PulpContainerNamespacesApi.new
147
155
  container_container_namespace_href = 'container_container_namespace_href_example' # String |
156
+ opts = {
157
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
158
+ }
148
159
 
149
160
  begin
150
161
  #Delete a container namespace
151
- result = api_instance.delete(container_container_namespace_href)
162
+ result = api_instance.delete(container_container_namespace_href, opts)
152
163
  p result
153
164
  rescue PulpContainerClient::ApiError => e
154
165
  puts "Exception when calling PulpContainerNamespacesApi->delete: #{e}"
@@ -161,6 +172,7 @@ end
161
172
  Name | Type | Description | Notes
162
173
  ------------- | ------------- | ------------- | -------------
163
174
  **container_container_namespace_href** | **String**| |
175
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
164
176
 
165
177
  ### Return type
166
178
 
@@ -198,6 +210,7 @@ end
198
210
 
199
211
  api_instance = PulpContainerClient::PulpContainerNamespacesApi.new
200
212
  opts = {
213
+ x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
201
214
  limit: 56, # Integer | Number of results to return per page.
202
215
  name: 'name_example', # String | Filter results where name matches value
203
216
  name__contains: 'name__contains_example', # String | Filter results where name contains value
@@ -231,6 +244,7 @@ end
231
244
 
232
245
  Name | Type | Description | Notes
233
246
  ------------- | ------------- | ------------- | -------------
247
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
234
248
  **limit** | **Integer**| Number of results to return per page. | [optional]
235
249
  **name** | **String**| Filter results where name matches value | [optional]
236
250
  **name__contains** | **String**| Filter results where name contains value | [optional]
@@ -286,6 +300,7 @@ end
286
300
  api_instance = PulpContainerClient::PulpContainerNamespacesApi.new
287
301
  container_container_namespace_href = 'container_container_namespace_href_example' # String |
288
302
  opts = {
303
+ x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
289
304
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
290
305
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
291
306
  }
@@ -305,6 +320,7 @@ end
305
320
  Name | Type | Description | Notes
306
321
  ------------- | ------------- | ------------- | -------------
307
322
  **container_container_namespace_href** | **String**| |
323
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
308
324
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
309
325
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
310
326
 
@@ -345,6 +361,7 @@ end
345
361
  api_instance = PulpContainerClient::PulpContainerNamespacesApi.new
346
362
  container_container_namespace_href = 'container_container_namespace_href_example' # String |
347
363
  opts = {
364
+ x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
348
365
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
349
366
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
350
367
  }
@@ -364,6 +381,7 @@ end
364
381
  Name | Type | Description | Notes
365
382
  ------------- | ------------- | ------------- | -------------
366
383
  **container_container_namespace_href** | **String**| |
384
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
367
385
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
368
386
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
369
387
 
@@ -404,6 +422,7 @@ end
404
422
  api_instance = PulpContainerClient::PulpContainerNamespacesApi.new
405
423
  container_container_namespace_href = 'container_container_namespace_href_example' # String |
406
424
  opts = {
425
+ x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
407
426
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
408
427
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
409
428
  }
@@ -423,6 +442,7 @@ end
423
442
  Name | Type | Description | Notes
424
443
  ------------- | ------------- | ------------- | -------------
425
444
  **container_container_namespace_href** | **String**| |
445
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
426
446
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
427
447
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
428
448
 
@@ -442,7 +462,7 @@ Name | Type | Description | Notes
442
462
 
443
463
  ## remove_role
444
464
 
445
- > NestedRoleResponse remove_role(container_container_namespace_href, nested_role)
465
+ > NestedRoleResponse remove_role(container_container_namespace_href, nested_role, opts)
446
466
 
447
467
  Remove a role
448
468
 
@@ -463,10 +483,13 @@ end
463
483
  api_instance = PulpContainerClient::PulpContainerNamespacesApi.new
464
484
  container_container_namespace_href = 'container_container_namespace_href_example' # String |
465
485
  nested_role = PulpContainerClient::NestedRole.new # NestedRole |
486
+ opts = {
487
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
488
+ }
466
489
 
467
490
  begin
468
491
  #Remove a role
469
- result = api_instance.remove_role(container_container_namespace_href, nested_role)
492
+ result = api_instance.remove_role(container_container_namespace_href, nested_role, opts)
470
493
  p result
471
494
  rescue PulpContainerClient::ApiError => e
472
495
  puts "Exception when calling PulpContainerNamespacesApi->remove_role: #{e}"
@@ -480,6 +503,7 @@ Name | Type | Description | Notes
480
503
  ------------- | ------------- | ------------- | -------------
481
504
  **container_container_namespace_href** | **String**| |
482
505
  **nested_role** | [**NestedRole**](NestedRole.md)| |
506
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
483
507
 
484
508
  ### Return type
485
509
 
@@ -21,7 +21,7 @@ Method | HTTP request | Description
21
21
 
22
22
  ## add_role
23
23
 
24
- > NestedRoleResponse add_role(container_container_remote_href, nested_role)
24
+ > NestedRoleResponse add_role(container_container_remote_href, nested_role, opts)
25
25
 
26
26
  Add a role
27
27
 
@@ -42,10 +42,13 @@ end
42
42
  api_instance = PulpContainerClient::RemotesContainerApi.new
43
43
  container_container_remote_href = 'container_container_remote_href_example' # String |
44
44
  nested_role = PulpContainerClient::NestedRole.new # NestedRole |
45
+ opts = {
46
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
47
+ }
45
48
 
46
49
  begin
47
50
  #Add a role
48
- result = api_instance.add_role(container_container_remote_href, nested_role)
51
+ result = api_instance.add_role(container_container_remote_href, nested_role, opts)
49
52
  p result
50
53
  rescue PulpContainerClient::ApiError => e
51
54
  puts "Exception when calling RemotesContainerApi->add_role: #{e}"
@@ -59,6 +62,7 @@ Name | Type | Description | Notes
59
62
  ------------- | ------------- | ------------- | -------------
60
63
  **container_container_remote_href** | **String**| |
61
64
  **nested_role** | [**NestedRole**](NestedRole.md)| |
65
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
62
66
 
63
67
  ### Return type
64
68
 
@@ -76,7 +80,7 @@ Name | Type | Description | Notes
76
80
 
77
81
  ## create
78
82
 
79
- > ContainerContainerRemoteResponse create(container_container_remote)
83
+ > ContainerContainerRemoteResponse create(container_container_remote, opts)
80
84
 
81
85
  Create a container remote
82
86
 
@@ -96,10 +100,13 @@ end
96
100
 
97
101
  api_instance = PulpContainerClient::RemotesContainerApi.new
98
102
  container_container_remote = PulpContainerClient::ContainerContainerRemote.new # ContainerContainerRemote |
103
+ opts = {
104
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
105
+ }
99
106
 
100
107
  begin
101
108
  #Create a container remote
102
- result = api_instance.create(container_container_remote)
109
+ result = api_instance.create(container_container_remote, opts)
103
110
  p result
104
111
  rescue PulpContainerClient::ApiError => e
105
112
  puts "Exception when calling RemotesContainerApi->create: #{e}"
@@ -112,6 +119,7 @@ end
112
119
  Name | Type | Description | Notes
113
120
  ------------- | ------------- | ------------- | -------------
114
121
  **container_container_remote** | [**ContainerContainerRemote**](ContainerContainerRemote.md)| |
122
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
115
123
 
116
124
  ### Return type
117
125
 
@@ -129,7 +137,7 @@ Name | Type | Description | Notes
129
137
 
130
138
  ## delete
131
139
 
132
- > AsyncOperationResponse delete(container_container_remote_href)
140
+ > AsyncOperationResponse delete(container_container_remote_href, opts)
133
141
 
134
142
  Delete a container remote
135
143
 
@@ -149,10 +157,13 @@ end
149
157
 
150
158
  api_instance = PulpContainerClient::RemotesContainerApi.new
151
159
  container_container_remote_href = 'container_container_remote_href_example' # String |
160
+ opts = {
161
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
162
+ }
152
163
 
153
164
  begin
154
165
  #Delete a container remote
155
- result = api_instance.delete(container_container_remote_href)
166
+ result = api_instance.delete(container_container_remote_href, opts)
156
167
  p result
157
168
  rescue PulpContainerClient::ApiError => e
158
169
  puts "Exception when calling RemotesContainerApi->delete: #{e}"
@@ -165,6 +176,7 @@ end
165
176
  Name | Type | Description | Notes
166
177
  ------------- | ------------- | ------------- | -------------
167
178
  **container_container_remote_href** | **String**| |
179
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
168
180
 
169
181
  ### Return type
170
182
 
@@ -202,6 +214,7 @@ end
202
214
 
203
215
  api_instance = PulpContainerClient::RemotesContainerApi.new
204
216
  opts = {
217
+ x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
205
218
  limit: 56, # Integer | Number of results to return per page.
206
219
  name: 'name_example', # String | Filter results where name matches value
207
220
  name__contains: 'name__contains_example', # String | Filter results where name contains value
@@ -242,6 +255,7 @@ end
242
255
 
243
256
  Name | Type | Description | Notes
244
257
  ------------- | ------------- | ------------- | -------------
258
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
245
259
  **limit** | **Integer**| Number of results to return per page. | [optional]
246
260
  **name** | **String**| Filter results where name matches value | [optional]
247
261
  **name__contains** | **String**| Filter results where name contains value | [optional]
@@ -304,6 +318,7 @@ end
304
318
  api_instance = PulpContainerClient::RemotesContainerApi.new
305
319
  container_container_remote_href = 'container_container_remote_href_example' # String |
306
320
  opts = {
321
+ x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
307
322
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
308
323
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
309
324
  }
@@ -323,6 +338,7 @@ end
323
338
  Name | Type | Description | Notes
324
339
  ------------- | ------------- | ------------- | -------------
325
340
  **container_container_remote_href** | **String**| |
341
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
326
342
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
327
343
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
328
344
 
@@ -363,6 +379,7 @@ end
363
379
  api_instance = PulpContainerClient::RemotesContainerApi.new
364
380
  container_container_remote_href = 'container_container_remote_href_example' # String |
365
381
  opts = {
382
+ x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
366
383
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
367
384
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
368
385
  }
@@ -382,6 +399,7 @@ end
382
399
  Name | Type | Description | Notes
383
400
  ------------- | ------------- | ------------- | -------------
384
401
  **container_container_remote_href** | **String**| |
402
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
385
403
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
386
404
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
387
405
 
@@ -401,7 +419,7 @@ Name | Type | Description | Notes
401
419
 
402
420
  ## partial_update
403
421
 
404
- > AsyncOperationResponse partial_update(container_container_remote_href, patchedcontainer_container_remote)
422
+ > AsyncOperationResponse partial_update(container_container_remote_href, patchedcontainer_container_remote, opts)
405
423
 
406
424
  Update a container remote
407
425
 
@@ -422,10 +440,13 @@ end
422
440
  api_instance = PulpContainerClient::RemotesContainerApi.new
423
441
  container_container_remote_href = 'container_container_remote_href_example' # String |
424
442
  patchedcontainer_container_remote = PulpContainerClient::PatchedcontainerContainerRemote.new # PatchedcontainerContainerRemote |
443
+ opts = {
444
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
445
+ }
425
446
 
426
447
  begin
427
448
  #Update a container remote
428
- result = api_instance.partial_update(container_container_remote_href, patchedcontainer_container_remote)
449
+ result = api_instance.partial_update(container_container_remote_href, patchedcontainer_container_remote, opts)
429
450
  p result
430
451
  rescue PulpContainerClient::ApiError => e
431
452
  puts "Exception when calling RemotesContainerApi->partial_update: #{e}"
@@ -439,6 +460,7 @@ Name | Type | Description | Notes
439
460
  ------------- | ------------- | ------------- | -------------
440
461
  **container_container_remote_href** | **String**| |
441
462
  **patchedcontainer_container_remote** | [**PatchedcontainerContainerRemote**](PatchedcontainerContainerRemote.md)| |
463
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
442
464
 
443
465
  ### Return type
444
466
 
@@ -477,6 +499,7 @@ end
477
499
  api_instance = PulpContainerClient::RemotesContainerApi.new
478
500
  container_container_remote_href = 'container_container_remote_href_example' # String |
479
501
  opts = {
502
+ x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
480
503
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
481
504
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
482
505
  }
@@ -496,6 +519,7 @@ end
496
519
  Name | Type | Description | Notes
497
520
  ------------- | ------------- | ------------- | -------------
498
521
  **container_container_remote_href** | **String**| |
522
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
499
523
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
500
524
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
501
525
 
@@ -515,7 +539,7 @@ Name | Type | Description | Notes
515
539
 
516
540
  ## remove_role
517
541
 
518
- > NestedRoleResponse remove_role(container_container_remote_href, nested_role)
542
+ > NestedRoleResponse remove_role(container_container_remote_href, nested_role, opts)
519
543
 
520
544
  Remove a role
521
545
 
@@ -536,10 +560,13 @@ end
536
560
  api_instance = PulpContainerClient::RemotesContainerApi.new
537
561
  container_container_remote_href = 'container_container_remote_href_example' # String |
538
562
  nested_role = PulpContainerClient::NestedRole.new # NestedRole |
563
+ opts = {
564
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
565
+ }
539
566
 
540
567
  begin
541
568
  #Remove a role
542
- result = api_instance.remove_role(container_container_remote_href, nested_role)
569
+ result = api_instance.remove_role(container_container_remote_href, nested_role, opts)
543
570
  p result
544
571
  rescue PulpContainerClient::ApiError => e
545
572
  puts "Exception when calling RemotesContainerApi->remove_role: #{e}"
@@ -553,6 +580,7 @@ Name | Type | Description | Notes
553
580
  ------------- | ------------- | ------------- | -------------
554
581
  **container_container_remote_href** | **String**| |
555
582
  **nested_role** | [**NestedRole**](NestedRole.md)| |
583
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
556
584
 
557
585
  ### Return type
558
586
 
@@ -570,7 +598,7 @@ Name | Type | Description | Notes
570
598
 
571
599
  ## set_label
572
600
 
573
- > SetLabelResponse set_label(container_container_remote_href, set_label)
601
+ > SetLabelResponse set_label(container_container_remote_href, set_label, opts)
574
602
 
575
603
  Set a label
576
604
 
@@ -591,10 +619,13 @@ end
591
619
  api_instance = PulpContainerClient::RemotesContainerApi.new
592
620
  container_container_remote_href = 'container_container_remote_href_example' # String |
593
621
  set_label = PulpContainerClient::SetLabel.new # SetLabel |
622
+ opts = {
623
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
624
+ }
594
625
 
595
626
  begin
596
627
  #Set a label
597
- result = api_instance.set_label(container_container_remote_href, set_label)
628
+ result = api_instance.set_label(container_container_remote_href, set_label, opts)
598
629
  p result
599
630
  rescue PulpContainerClient::ApiError => e
600
631
  puts "Exception when calling RemotesContainerApi->set_label: #{e}"
@@ -608,6 +639,7 @@ Name | Type | Description | Notes
608
639
  ------------- | ------------- | ------------- | -------------
609
640
  **container_container_remote_href** | **String**| |
610
641
  **set_label** | [**SetLabel**](SetLabel.md)| |
642
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
611
643
 
612
644
  ### Return type
613
645
 
@@ -625,7 +657,7 @@ Name | Type | Description | Notes
625
657
 
626
658
  ## unset_label
627
659
 
628
- > UnsetLabelResponse unset_label(container_container_remote_href, unset_label)
660
+ > UnsetLabelResponse unset_label(container_container_remote_href, unset_label, opts)
629
661
 
630
662
  Unset a label
631
663
 
@@ -646,10 +678,13 @@ end
646
678
  api_instance = PulpContainerClient::RemotesContainerApi.new
647
679
  container_container_remote_href = 'container_container_remote_href_example' # String |
648
680
  unset_label = PulpContainerClient::UnsetLabel.new # UnsetLabel |
681
+ opts = {
682
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
683
+ }
649
684
 
650
685
  begin
651
686
  #Unset a label
652
- result = api_instance.unset_label(container_container_remote_href, unset_label)
687
+ result = api_instance.unset_label(container_container_remote_href, unset_label, opts)
653
688
  p result
654
689
  rescue PulpContainerClient::ApiError => e
655
690
  puts "Exception when calling RemotesContainerApi->unset_label: #{e}"
@@ -663,6 +698,7 @@ Name | Type | Description | Notes
663
698
  ------------- | ------------- | ------------- | -------------
664
699
  **container_container_remote_href** | **String**| |
665
700
  **unset_label** | [**UnsetLabel**](UnsetLabel.md)| |
701
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
666
702
 
667
703
  ### Return type
668
704
 
@@ -680,7 +716,7 @@ Name | Type | Description | Notes
680
716
 
681
717
  ## update
682
718
 
683
- > AsyncOperationResponse update(container_container_remote_href, container_container_remote)
719
+ > AsyncOperationResponse update(container_container_remote_href, container_container_remote, opts)
684
720
 
685
721
  Update a container remote
686
722
 
@@ -701,10 +737,13 @@ end
701
737
  api_instance = PulpContainerClient::RemotesContainerApi.new
702
738
  container_container_remote_href = 'container_container_remote_href_example' # String |
703
739
  container_container_remote = PulpContainerClient::ContainerContainerRemote.new # ContainerContainerRemote |
740
+ opts = {
741
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
742
+ }
704
743
 
705
744
  begin
706
745
  #Update a container remote
707
- result = api_instance.update(container_container_remote_href, container_container_remote)
746
+ result = api_instance.update(container_container_remote_href, container_container_remote, opts)
708
747
  p result
709
748
  rescue PulpContainerClient::ApiError => e
710
749
  puts "Exception when calling RemotesContainerApi->update: #{e}"
@@ -718,6 +757,7 @@ Name | Type | Description | Notes
718
757
  ------------- | ------------- | ------------- | -------------
719
758
  **container_container_remote_href** | **String**| |
720
759
  **container_container_remote** | [**ContainerContainerRemote**](ContainerContainerRemote.md)| |
760
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
721
761
 
722
762
  ### Return type
723
763