pulpcore_client 3.80.2 → 3.82.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 (161) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -4
  3. data/docs/AccessPoliciesApi.md +28 -12
  4. data/docs/ArtifactDistributionResponse.md +13 -13
  5. data/docs/ArtifactsApi.md +14 -4
  6. data/docs/ContentApi.md +2 -0
  7. data/docs/ContentOpenpgpPublickeyApi.md +22 -8
  8. data/docs/ContentOpenpgpPublicsubkeyApi.md +20 -8
  9. data/docs/ContentOpenpgpSignatureApi.md +20 -8
  10. data/docs/ContentOpenpgpUserattributeApi.md +20 -8
  11. data/docs/ContentOpenpgpUseridApi.md +20 -8
  12. data/docs/ContentguardsApi.md +2 -0
  13. data/docs/ContentguardsCompositeApi.md +56 -24
  14. data/docs/ContentguardsContentRedirectApi.md +56 -24
  15. data/docs/ContentguardsHeaderApi.md +56 -24
  16. data/docs/ContentguardsRbacApi.md +56 -24
  17. data/docs/DistributionsApi.md +2 -0
  18. data/docs/DistributionsArtifactsApi.md +4 -0
  19. data/docs/DistributionsOpenpgpApi.md +52 -24
  20. data/docs/DomainsApi.md +60 -28
  21. data/docs/ExportersFilesystemApi.md +36 -16
  22. data/docs/ExportersFilesystemExportsApi.md +20 -8
  23. data/docs/ExportersPulpApi.md +36 -16
  24. data/docs/ExportersPulpExportsApi.md +20 -8
  25. data/docs/GroupsApi.md +56 -24
  26. data/docs/GroupsRolesApi.md +20 -8
  27. data/docs/GroupsUsersApi.md +18 -8
  28. data/docs/ImportersPulpApi.md +36 -16
  29. data/docs/ImportersPulpImportCheckApi.md +8 -4
  30. data/docs/ImportersPulpImportsApi.md +20 -8
  31. data/docs/LivezApi.md +14 -5
  32. data/docs/LoginApi.md +34 -15
  33. data/docs/OrphansApi.md +10 -5
  34. data/docs/OrphansCleanupApi.md +8 -4
  35. data/docs/PublicationsApi.md +2 -0
  36. data/docs/RemotesApi.md +2 -0
  37. data/docs/RepairApi.md +8 -4
  38. data/docs/RepositoriesApi.md +2 -0
  39. data/docs/RepositoriesOpenpgpKeyringApi.md +80 -36
  40. data/docs/RepositoriesReclaimSpaceApi.md +8 -4
  41. data/docs/RepositoryVersionsApi.md +2 -0
  42. data/docs/RolesApi.md +36 -16
  43. data/docs/SigningServicesApi.md +4 -0
  44. data/docs/StatusApi.md +14 -5
  45. data/docs/TaskGroupsApi.md +12 -4
  46. data/docs/TaskSchedulesApi.md +24 -8
  47. data/docs/TasksApi.md +52 -22
  48. data/docs/UploadsApi.md +50 -20
  49. data/docs/UpstreamPulpsApi.md +64 -28
  50. data/docs/UsersApi.md +36 -16
  51. data/docs/UsersRolesApi.md +20 -8
  52. data/docs/WorkersApi.md +4 -0
  53. data/lib/pulpcore_client/api/access_policies_api.rb +15 -0
  54. data/lib/pulpcore_client/api/artifacts_api.rb +12 -0
  55. data/lib/pulpcore_client/api/content_api.rb +3 -0
  56. data/lib/pulpcore_client/api/content_openpgp_publickey_api.rb +15 -0
  57. data/lib/pulpcore_client/api/content_openpgp_publicsubkey_api.rb +12 -0
  58. data/lib/pulpcore_client/api/content_openpgp_signature_api.rb +12 -0
  59. data/lib/pulpcore_client/api/content_openpgp_userattribute_api.rb +12 -0
  60. data/lib/pulpcore_client/api/content_openpgp_userid_api.rb +12 -0
  61. data/lib/pulpcore_client/api/contentguards_api.rb +3 -0
  62. data/lib/pulpcore_client/api/contentguards_composite_api.rb +30 -0
  63. data/lib/pulpcore_client/api/contentguards_content_redirect_api.rb +30 -0
  64. data/lib/pulpcore_client/api/contentguards_header_api.rb +30 -0
  65. data/lib/pulpcore_client/api/contentguards_rbac_api.rb +30 -0
  66. data/lib/pulpcore_client/api/distributions_api.rb +3 -0
  67. data/lib/pulpcore_client/api/distributions_artifacts_api.rb +6 -0
  68. data/lib/pulpcore_client/api/distributions_openpgp_api.rb +24 -0
  69. data/lib/pulpcore_client/api/domains_api.rb +27 -0
  70. data/lib/pulpcore_client/api/exporters_filesystem_api.rb +18 -0
  71. data/lib/pulpcore_client/api/exporters_filesystem_exports_api.rb +12 -0
  72. data/lib/pulpcore_client/api/exporters_pulp_api.rb +18 -0
  73. data/lib/pulpcore_client/api/exporters_pulp_exports_api.rb +12 -0
  74. data/lib/pulpcore_client/api/groups_api.rb +30 -0
  75. data/lib/pulpcore_client/api/groups_roles_api.rb +12 -0
  76. data/lib/pulpcore_client/api/groups_users_api.rb +9 -0
  77. data/lib/pulpcore_client/api/importers_pulp_api.rb +18 -0
  78. data/lib/pulpcore_client/api/importers_pulp_import_check_api.rb +3 -0
  79. data/lib/pulpcore_client/api/importers_pulp_imports_api.rb +12 -0
  80. data/lib/pulpcore_client/api/livez_api.rb +9 -0
  81. data/lib/pulpcore_client/api/login_api.rb +15 -0
  82. data/lib/pulpcore_client/api/orphans_api.rb +3 -0
  83. data/lib/pulpcore_client/api/orphans_cleanup_api.rb +3 -0
  84. data/lib/pulpcore_client/api/publications_api.rb +3 -0
  85. data/lib/pulpcore_client/api/remotes_api.rb +3 -0
  86. data/lib/pulpcore_client/api/repair_api.rb +3 -0
  87. data/lib/pulpcore_client/api/repositories_api.rb +3 -0
  88. data/lib/pulpcore_client/api/repositories_openpgp_keyring_api.rb +39 -0
  89. data/lib/pulpcore_client/api/repositories_reclaim_space_api.rb +3 -0
  90. data/lib/pulpcore_client/api/repository_versions_api.rb +3 -0
  91. data/lib/pulpcore_client/api/roles_api.rb +18 -0
  92. data/lib/pulpcore_client/api/signing_services_api.rb +6 -0
  93. data/lib/pulpcore_client/api/status_api.rb +9 -0
  94. data/lib/pulpcore_client/api/task_groups_api.rb +9 -0
  95. data/lib/pulpcore_client/api/task_schedules_api.rb +18 -0
  96. data/lib/pulpcore_client/api/tasks_api.rb +33 -3
  97. data/lib/pulpcore_client/api/uploads_api.rb +30 -0
  98. data/lib/pulpcore_client/api/upstream_pulps_api.rb +33 -0
  99. data/lib/pulpcore_client/api/users_api.rb +18 -0
  100. data/lib/pulpcore_client/api/users_roles_api.rb +12 -0
  101. data/lib/pulpcore_client/api/workers_api.rb +6 -0
  102. data/lib/pulpcore_client/models/artifact_distribution_response.rb +61 -61
  103. data/lib/pulpcore_client/models/composite_content_guard.rb +1 -1
  104. data/lib/pulpcore_client/models/composite_content_guard_response.rb +1 -1
  105. data/lib/pulpcore_client/models/content_guard_response.rb +1 -1
  106. data/lib/pulpcore_client/models/patched_composite_content_guard.rb +1 -1
  107. data/lib/pulpcore_client/models/patched_rbac_content_guard.rb +1 -1
  108. data/lib/pulpcore_client/models/rbac_content_guard.rb +1 -1
  109. data/lib/pulpcore_client/models/rbac_content_guard_response.rb +1 -1
  110. data/lib/pulpcore_client/version.rb +1 -1
  111. data/spec/api/access_policies_api_spec.rb +5 -0
  112. data/spec/api/artifacts_api_spec.rb +4 -0
  113. data/spec/api/content_api_spec.rb +1 -0
  114. data/spec/api/content_openpgp_publickey_api_spec.rb +5 -0
  115. data/spec/api/content_openpgp_publicsubkey_api_spec.rb +4 -0
  116. data/spec/api/content_openpgp_signature_api_spec.rb +4 -0
  117. data/spec/api/content_openpgp_userattribute_api_spec.rb +4 -0
  118. data/spec/api/content_openpgp_userid_api_spec.rb +4 -0
  119. data/spec/api/contentguards_api_spec.rb +1 -0
  120. data/spec/api/contentguards_composite_api_spec.rb +10 -0
  121. data/spec/api/contentguards_content_redirect_api_spec.rb +10 -0
  122. data/spec/api/contentguards_header_api_spec.rb +10 -0
  123. data/spec/api/contentguards_rbac_api_spec.rb +10 -0
  124. data/spec/api/distributions_api_spec.rb +1 -0
  125. data/spec/api/distributions_artifacts_api_spec.rb +2 -0
  126. data/spec/api/distributions_openpgp_api_spec.rb +8 -0
  127. data/spec/api/domains_api_spec.rb +9 -0
  128. data/spec/api/exporters_filesystem_api_spec.rb +6 -0
  129. data/spec/api/exporters_filesystem_exports_api_spec.rb +4 -0
  130. data/spec/api/exporters_pulp_api_spec.rb +6 -0
  131. data/spec/api/exporters_pulp_exports_api_spec.rb +4 -0
  132. data/spec/api/groups_api_spec.rb +10 -0
  133. data/spec/api/groups_roles_api_spec.rb +4 -0
  134. data/spec/api/groups_users_api_spec.rb +3 -0
  135. data/spec/api/importers_pulp_api_spec.rb +6 -0
  136. data/spec/api/importers_pulp_import_check_api_spec.rb +1 -0
  137. data/spec/api/importers_pulp_imports_api_spec.rb +4 -0
  138. data/spec/api/livez_api_spec.rb +3 -0
  139. data/spec/api/login_api_spec.rb +5 -0
  140. data/spec/api/orphans_api_spec.rb +1 -0
  141. data/spec/api/orphans_cleanup_api_spec.rb +1 -0
  142. data/spec/api/publications_api_spec.rb +1 -0
  143. data/spec/api/remotes_api_spec.rb +1 -0
  144. data/spec/api/repair_api_spec.rb +1 -0
  145. data/spec/api/repositories_api_spec.rb +1 -0
  146. data/spec/api/repositories_openpgp_keyring_api_spec.rb +13 -0
  147. data/spec/api/repositories_reclaim_space_api_spec.rb +1 -0
  148. data/spec/api/repository_versions_api_spec.rb +1 -0
  149. data/spec/api/roles_api_spec.rb +6 -0
  150. data/spec/api/signing_services_api_spec.rb +2 -0
  151. data/spec/api/status_api_spec.rb +3 -0
  152. data/spec/api/task_groups_api_spec.rb +3 -0
  153. data/spec/api/task_schedules_api_spec.rb +6 -0
  154. data/spec/api/tasks_api_spec.rb +11 -1
  155. data/spec/api/uploads_api_spec.rb +10 -0
  156. data/spec/api/upstream_pulps_api_spec.rb +11 -0
  157. data/spec/api/users_api_spec.rb +6 -0
  158. data/spec/api/users_roles_api_spec.rb +4 -0
  159. data/spec/api/workers_api_spec.rb +2 -0
  160. data/spec/models/artifact_distribution_response_spec.rb +11 -11
  161. metadata +190 -190
data/docs/DomainsApi.md CHANGED
@@ -17,7 +17,7 @@ All URIs are relative to *http://localhost:24817*
17
17
 
18
18
  ## create
19
19
 
20
- > <DomainResponse> create(domain)
20
+ > <DomainResponse> create(domain, opts)
21
21
 
22
22
  Create a domain
23
23
 
@@ -37,10 +37,13 @@ end
37
37
 
38
38
  api_instance = PulpcoreClient::DomainsApi.new
39
39
  domain = PulpcoreClient::Domain.new({name: 'name_example', storage_class: PulpcoreClient::StorageClassEnum::PULPCORE_APP_MODELS_STORAGE_FILE_SYSTEM, storage_settings: 3.56}) # Domain |
40
+ opts = {
41
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
42
+ }
40
43
 
41
44
  begin
42
45
  # Create a domain
43
- result = api_instance.create(domain)
46
+ result = api_instance.create(domain, opts)
44
47
  p result
45
48
  rescue PulpcoreClient::ApiError => e
46
49
  puts "Error when calling DomainsApi->create: #{e}"
@@ -51,12 +54,12 @@ end
51
54
 
52
55
  This returns an Array which contains the response data, status code and headers.
53
56
 
54
- > <Array(<DomainResponse>, Integer, Hash)> create_with_http_info(domain)
57
+ > <Array(<DomainResponse>, Integer, Hash)> create_with_http_info(domain, opts)
55
58
 
56
59
  ```ruby
57
60
  begin
58
61
  # Create a domain
59
- data, status_code, headers = api_instance.create_with_http_info(domain)
62
+ data, status_code, headers = api_instance.create_with_http_info(domain, opts)
60
63
  p status_code # => 2xx
61
64
  p headers # => { ... }
62
65
  p data # => <DomainResponse>
@@ -70,6 +73,7 @@ end
70
73
  | Name | Type | Description | Notes |
71
74
  | ---- | ---- | ----------- | ----- |
72
75
  | **domain** | [**Domain**](Domain.md) | | |
76
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
73
77
 
74
78
  ### Return type
75
79
 
@@ -87,7 +91,7 @@ end
87
91
 
88
92
  ## delete
89
93
 
90
- > <AsyncOperationResponse> delete(domain_href)
94
+ > <AsyncOperationResponse> delete(domain_href, opts)
91
95
 
92
96
  Delete a domain
93
97
 
@@ -107,10 +111,13 @@ end
107
111
 
108
112
  api_instance = PulpcoreClient::DomainsApi.new
109
113
  domain_href = 'domain_href_example' # String |
114
+ opts = {
115
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
116
+ }
110
117
 
111
118
  begin
112
119
  # Delete a domain
113
- result = api_instance.delete(domain_href)
120
+ result = api_instance.delete(domain_href, opts)
114
121
  p result
115
122
  rescue PulpcoreClient::ApiError => e
116
123
  puts "Error when calling DomainsApi->delete: #{e}"
@@ -121,12 +128,12 @@ end
121
128
 
122
129
  This returns an Array which contains the response data, status code and headers.
123
130
 
124
- > <Array(<AsyncOperationResponse>, Integer, Hash)> delete_with_http_info(domain_href)
131
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> delete_with_http_info(domain_href, opts)
125
132
 
126
133
  ```ruby
127
134
  begin
128
135
  # Delete a domain
129
- data, status_code, headers = api_instance.delete_with_http_info(domain_href)
136
+ data, status_code, headers = api_instance.delete_with_http_info(domain_href, opts)
130
137
  p status_code # => 2xx
131
138
  p headers # => { ... }
132
139
  p data # => <AsyncOperationResponse>
@@ -140,6 +147,7 @@ end
140
147
  | Name | Type | Description | Notes |
141
148
  | ---- | ---- | ----------- | ----- |
142
149
  | **domain_href** | **String** | | |
150
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
143
151
 
144
152
  ### Return type
145
153
 
@@ -177,6 +185,7 @@ end
177
185
 
178
186
  api_instance = PulpcoreClient::DomainsApi.new
179
187
  opts = {
188
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
180
189
  limit: 56, # Integer | Number of results to return per page.
181
190
  name: 'name_example', # String | Filter results where name matches value
182
191
  name__contains: 'name__contains_example', # String | Filter results where name contains value
@@ -229,6 +238,7 @@ end
229
238
 
230
239
  | Name | Type | Description | Notes |
231
240
  | ---- | ---- | ----------- | ----- |
241
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
232
242
  | **limit** | **Integer** | Number of results to return per page. | [optional] |
233
243
  | **name** | **String** | Filter results where name matches value | [optional] |
234
244
  | **name__contains** | **String** | Filter results where name contains value | [optional] |
@@ -265,7 +275,7 @@ end
265
275
 
266
276
  ## migrate
267
277
 
268
- > <AsyncOperationResponse> migrate(domain_backend_migrator)
278
+ > <AsyncOperationResponse> migrate(domain_backend_migrator, opts)
269
279
 
270
280
  Migrate storage backend
271
281
 
@@ -285,10 +295,13 @@ end
285
295
 
286
296
  api_instance = PulpcoreClient::DomainsApi.new
287
297
  domain_backend_migrator = PulpcoreClient::DomainBackendMigrator.new({storage_class: PulpcoreClient::StorageClassEnum::PULPCORE_APP_MODELS_STORAGE_FILE_SYSTEM, storage_settings: 3.56}) # DomainBackendMigrator |
298
+ opts = {
299
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
300
+ }
288
301
 
289
302
  begin
290
303
  # Migrate storage backend
291
- result = api_instance.migrate(domain_backend_migrator)
304
+ result = api_instance.migrate(domain_backend_migrator, opts)
292
305
  p result
293
306
  rescue PulpcoreClient::ApiError => e
294
307
  puts "Error when calling DomainsApi->migrate: #{e}"
@@ -299,12 +312,12 @@ end
299
312
 
300
313
  This returns an Array which contains the response data, status code and headers.
301
314
 
302
- > <Array(<AsyncOperationResponse>, Integer, Hash)> migrate_with_http_info(domain_backend_migrator)
315
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> migrate_with_http_info(domain_backend_migrator, opts)
303
316
 
304
317
  ```ruby
305
318
  begin
306
319
  # Migrate storage backend
307
- data, status_code, headers = api_instance.migrate_with_http_info(domain_backend_migrator)
320
+ data, status_code, headers = api_instance.migrate_with_http_info(domain_backend_migrator, opts)
308
321
  p status_code # => 2xx
309
322
  p headers # => { ... }
310
323
  p data # => <AsyncOperationResponse>
@@ -318,6 +331,7 @@ end
318
331
  | Name | Type | Description | Notes |
319
332
  | ---- | ---- | ----------- | ----- |
320
333
  | **domain_backend_migrator** | [**DomainBackendMigrator**](DomainBackendMigrator.md) | | |
334
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
321
335
 
322
336
  ### Return type
323
337
 
@@ -335,7 +349,7 @@ end
335
349
 
336
350
  ## partial_update
337
351
 
338
- > <AsyncOperationResponse> partial_update(domain_href, patched_domain)
352
+ > <AsyncOperationResponse> partial_update(domain_href, patched_domain, opts)
339
353
 
340
354
  Update a domain
341
355
 
@@ -356,10 +370,13 @@ end
356
370
  api_instance = PulpcoreClient::DomainsApi.new
357
371
  domain_href = 'domain_href_example' # String |
358
372
  patched_domain = PulpcoreClient::PatchedDomain.new # PatchedDomain |
373
+ opts = {
374
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
375
+ }
359
376
 
360
377
  begin
361
378
  # Update a domain
362
- result = api_instance.partial_update(domain_href, patched_domain)
379
+ result = api_instance.partial_update(domain_href, patched_domain, opts)
363
380
  p result
364
381
  rescue PulpcoreClient::ApiError => e
365
382
  puts "Error when calling DomainsApi->partial_update: #{e}"
@@ -370,12 +387,12 @@ end
370
387
 
371
388
  This returns an Array which contains the response data, status code and headers.
372
389
 
373
- > <Array(<AsyncOperationResponse>, Integer, Hash)> partial_update_with_http_info(domain_href, patched_domain)
390
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> partial_update_with_http_info(domain_href, patched_domain, opts)
374
391
 
375
392
  ```ruby
376
393
  begin
377
394
  # Update a domain
378
- data, status_code, headers = api_instance.partial_update_with_http_info(domain_href, patched_domain)
395
+ data, status_code, headers = api_instance.partial_update_with_http_info(domain_href, patched_domain, opts)
379
396
  p status_code # => 2xx
380
397
  p headers # => { ... }
381
398
  p data # => <AsyncOperationResponse>
@@ -390,6 +407,7 @@ end
390
407
  | ---- | ---- | ----------- | ----- |
391
408
  | **domain_href** | **String** | | |
392
409
  | **patched_domain** | [**PatchedDomain**](PatchedDomain.md) | | |
410
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
393
411
 
394
412
  ### Return type
395
413
 
@@ -428,6 +446,7 @@ end
428
446
  api_instance = PulpcoreClient::DomainsApi.new
429
447
  domain_href = 'domain_href_example' # String |
430
448
  opts = {
449
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
431
450
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
432
451
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
433
452
  }
@@ -464,6 +483,7 @@ end
464
483
  | Name | Type | Description | Notes |
465
484
  | ---- | ---- | ----------- | ----- |
466
485
  | **domain_href** | **String** | | |
486
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
467
487
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
468
488
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
469
489
 
@@ -483,7 +503,7 @@ end
483
503
 
484
504
  ## set_label
485
505
 
486
- > <SetLabelResponse> set_label(domain_href, set_label)
506
+ > <SetLabelResponse> set_label(domain_href, set_label, opts)
487
507
 
488
508
  Set a label
489
509
 
@@ -504,10 +524,13 @@ end
504
524
  api_instance = PulpcoreClient::DomainsApi.new
505
525
  domain_href = 'domain_href_example' # String |
506
526
  set_label = PulpcoreClient::SetLabel.new({key: 'key_example', value: 'value_example'}) # SetLabel |
527
+ opts = {
528
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
529
+ }
507
530
 
508
531
  begin
509
532
  # Set a label
510
- result = api_instance.set_label(domain_href, set_label)
533
+ result = api_instance.set_label(domain_href, set_label, opts)
511
534
  p result
512
535
  rescue PulpcoreClient::ApiError => e
513
536
  puts "Error when calling DomainsApi->set_label: #{e}"
@@ -518,12 +541,12 @@ end
518
541
 
519
542
  This returns an Array which contains the response data, status code and headers.
520
543
 
521
- > <Array(<SetLabelResponse>, Integer, Hash)> set_label_with_http_info(domain_href, set_label)
544
+ > <Array(<SetLabelResponse>, Integer, Hash)> set_label_with_http_info(domain_href, set_label, opts)
522
545
 
523
546
  ```ruby
524
547
  begin
525
548
  # Set a label
526
- data, status_code, headers = api_instance.set_label_with_http_info(domain_href, set_label)
549
+ data, status_code, headers = api_instance.set_label_with_http_info(domain_href, set_label, opts)
527
550
  p status_code # => 2xx
528
551
  p headers # => { ... }
529
552
  p data # => <SetLabelResponse>
@@ -538,6 +561,7 @@ end
538
561
  | ---- | ---- | ----------- | ----- |
539
562
  | **domain_href** | **String** | | |
540
563
  | **set_label** | [**SetLabel**](SetLabel.md) | | |
564
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
541
565
 
542
566
  ### Return type
543
567
 
@@ -555,7 +579,7 @@ end
555
579
 
556
580
  ## unset_label
557
581
 
558
- > <UnsetLabelResponse> unset_label(domain_href, unset_label)
582
+ > <UnsetLabelResponse> unset_label(domain_href, unset_label, opts)
559
583
 
560
584
  Unset a label
561
585
 
@@ -576,10 +600,13 @@ end
576
600
  api_instance = PulpcoreClient::DomainsApi.new
577
601
  domain_href = 'domain_href_example' # String |
578
602
  unset_label = PulpcoreClient::UnsetLabel.new({key: 'key_example'}) # UnsetLabel |
603
+ opts = {
604
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
605
+ }
579
606
 
580
607
  begin
581
608
  # Unset a label
582
- result = api_instance.unset_label(domain_href, unset_label)
609
+ result = api_instance.unset_label(domain_href, unset_label, opts)
583
610
  p result
584
611
  rescue PulpcoreClient::ApiError => e
585
612
  puts "Error when calling DomainsApi->unset_label: #{e}"
@@ -590,12 +617,12 @@ end
590
617
 
591
618
  This returns an Array which contains the response data, status code and headers.
592
619
 
593
- > <Array(<UnsetLabelResponse>, Integer, Hash)> unset_label_with_http_info(domain_href, unset_label)
620
+ > <Array(<UnsetLabelResponse>, Integer, Hash)> unset_label_with_http_info(domain_href, unset_label, opts)
594
621
 
595
622
  ```ruby
596
623
  begin
597
624
  # Unset a label
598
- data, status_code, headers = api_instance.unset_label_with_http_info(domain_href, unset_label)
625
+ data, status_code, headers = api_instance.unset_label_with_http_info(domain_href, unset_label, opts)
599
626
  p status_code # => 2xx
600
627
  p headers # => { ... }
601
628
  p data # => <UnsetLabelResponse>
@@ -610,6 +637,7 @@ end
610
637
  | ---- | ---- | ----------- | ----- |
611
638
  | **domain_href** | **String** | | |
612
639
  | **unset_label** | [**UnsetLabel**](UnsetLabel.md) | | |
640
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
613
641
 
614
642
  ### Return type
615
643
 
@@ -627,7 +655,7 @@ end
627
655
 
628
656
  ## update
629
657
 
630
- > <AsyncOperationResponse> update(domain_href, domain)
658
+ > <AsyncOperationResponse> update(domain_href, domain, opts)
631
659
 
632
660
  Update a domain
633
661
 
@@ -648,10 +676,13 @@ end
648
676
  api_instance = PulpcoreClient::DomainsApi.new
649
677
  domain_href = 'domain_href_example' # String |
650
678
  domain = PulpcoreClient::Domain.new({name: 'name_example', storage_class: PulpcoreClient::StorageClassEnum::PULPCORE_APP_MODELS_STORAGE_FILE_SYSTEM, storage_settings: 3.56}) # Domain |
679
+ opts = {
680
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
681
+ }
651
682
 
652
683
  begin
653
684
  # Update a domain
654
- result = api_instance.update(domain_href, domain)
685
+ result = api_instance.update(domain_href, domain, opts)
655
686
  p result
656
687
  rescue PulpcoreClient::ApiError => e
657
688
  puts "Error when calling DomainsApi->update: #{e}"
@@ -662,12 +693,12 @@ end
662
693
 
663
694
  This returns an Array which contains the response data, status code and headers.
664
695
 
665
- > <Array(<AsyncOperationResponse>, Integer, Hash)> update_with_http_info(domain_href, domain)
696
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> update_with_http_info(domain_href, domain, opts)
666
697
 
667
698
  ```ruby
668
699
  begin
669
700
  # Update a domain
670
- data, status_code, headers = api_instance.update_with_http_info(domain_href, domain)
701
+ data, status_code, headers = api_instance.update_with_http_info(domain_href, domain, opts)
671
702
  p status_code # => 2xx
672
703
  p headers # => { ... }
673
704
  p data # => <AsyncOperationResponse>
@@ -682,6 +713,7 @@ end
682
713
  | ---- | ---- | ----------- | ----- |
683
714
  | **domain_href** | **String** | | |
684
715
  | **domain** | [**Domain**](Domain.md) | | |
716
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
685
717
 
686
718
  ### Return type
687
719
 
@@ -14,7 +14,7 @@ All URIs are relative to *http://localhost:24817*
14
14
 
15
15
  ## create
16
16
 
17
- > <FilesystemExporterResponse> create(filesystem_exporter)
17
+ > <FilesystemExporterResponse> create(filesystem_exporter, opts)
18
18
 
19
19
  Create a filesystem exporter
20
20
 
@@ -34,10 +34,13 @@ end
34
34
 
35
35
  api_instance = PulpcoreClient::ExportersFilesystemApi.new
36
36
  filesystem_exporter = PulpcoreClient::FilesystemExporter.new({name: 'name_example', path: 'path_example'}) # FilesystemExporter |
37
+ opts = {
38
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
39
+ }
37
40
 
38
41
  begin
39
42
  # Create a filesystem exporter
40
- result = api_instance.create(filesystem_exporter)
43
+ result = api_instance.create(filesystem_exporter, opts)
41
44
  p result
42
45
  rescue PulpcoreClient::ApiError => e
43
46
  puts "Error when calling ExportersFilesystemApi->create: #{e}"
@@ -48,12 +51,12 @@ end
48
51
 
49
52
  This returns an Array which contains the response data, status code and headers.
50
53
 
51
- > <Array(<FilesystemExporterResponse>, Integer, Hash)> create_with_http_info(filesystem_exporter)
54
+ > <Array(<FilesystemExporterResponse>, Integer, Hash)> create_with_http_info(filesystem_exporter, opts)
52
55
 
53
56
  ```ruby
54
57
  begin
55
58
  # Create a filesystem exporter
56
- data, status_code, headers = api_instance.create_with_http_info(filesystem_exporter)
59
+ data, status_code, headers = api_instance.create_with_http_info(filesystem_exporter, opts)
57
60
  p status_code # => 2xx
58
61
  p headers # => { ... }
59
62
  p data # => <FilesystemExporterResponse>
@@ -67,6 +70,7 @@ end
67
70
  | Name | Type | Description | Notes |
68
71
  | ---- | ---- | ----------- | ----- |
69
72
  | **filesystem_exporter** | [**FilesystemExporter**](FilesystemExporter.md) | | |
73
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
70
74
 
71
75
  ### Return type
72
76
 
@@ -84,7 +88,7 @@ end
84
88
 
85
89
  ## delete
86
90
 
87
- > <AsyncOperationResponse> delete(filesystem_exporter_href)
91
+ > <AsyncOperationResponse> delete(filesystem_exporter_href, opts)
88
92
 
89
93
  Delete a filesystem exporter
90
94
 
@@ -104,10 +108,13 @@ end
104
108
 
105
109
  api_instance = PulpcoreClient::ExportersFilesystemApi.new
106
110
  filesystem_exporter_href = 'filesystem_exporter_href_example' # String |
111
+ opts = {
112
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
113
+ }
107
114
 
108
115
  begin
109
116
  # Delete a filesystem exporter
110
- result = api_instance.delete(filesystem_exporter_href)
117
+ result = api_instance.delete(filesystem_exporter_href, opts)
111
118
  p result
112
119
  rescue PulpcoreClient::ApiError => e
113
120
  puts "Error when calling ExportersFilesystemApi->delete: #{e}"
@@ -118,12 +125,12 @@ end
118
125
 
119
126
  This returns an Array which contains the response data, status code and headers.
120
127
 
121
- > <Array(<AsyncOperationResponse>, Integer, Hash)> delete_with_http_info(filesystem_exporter_href)
128
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> delete_with_http_info(filesystem_exporter_href, opts)
122
129
 
123
130
  ```ruby
124
131
  begin
125
132
  # Delete a filesystem exporter
126
- data, status_code, headers = api_instance.delete_with_http_info(filesystem_exporter_href)
133
+ data, status_code, headers = api_instance.delete_with_http_info(filesystem_exporter_href, opts)
127
134
  p status_code # => 2xx
128
135
  p headers # => { ... }
129
136
  p data # => <AsyncOperationResponse>
@@ -137,6 +144,7 @@ end
137
144
  | Name | Type | Description | Notes |
138
145
  | ---- | ---- | ----------- | ----- |
139
146
  | **filesystem_exporter_href** | **String** | | |
147
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
140
148
 
141
149
  ### Return type
142
150
 
@@ -174,6 +182,7 @@ end
174
182
 
175
183
  api_instance = PulpcoreClient::ExportersFilesystemApi.new
176
184
  opts = {
185
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
177
186
  limit: 56, # Integer | Number of results to return per page.
178
187
  name: 'name_example', # String | Filter results where name matches value
179
188
  name__contains: 'name__contains_example', # String | Filter results where name contains value
@@ -225,6 +234,7 @@ end
225
234
 
226
235
  | Name | Type | Description | Notes |
227
236
  | ---- | ---- | ----------- | ----- |
237
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
228
238
  | **limit** | **Integer** | Number of results to return per page. | [optional] |
229
239
  | **name** | **String** | Filter results where name matches value | [optional] |
230
240
  | **name__contains** | **String** | Filter results where name contains value | [optional] |
@@ -260,7 +270,7 @@ end
260
270
 
261
271
  ## partial_update
262
272
 
263
- > <AsyncOperationResponse> partial_update(filesystem_exporter_href, patched_filesystem_exporter)
273
+ > <AsyncOperationResponse> partial_update(filesystem_exporter_href, patched_filesystem_exporter, opts)
264
274
 
265
275
  Update a filesystem exporter
266
276
 
@@ -281,10 +291,13 @@ end
281
291
  api_instance = PulpcoreClient::ExportersFilesystemApi.new
282
292
  filesystem_exporter_href = 'filesystem_exporter_href_example' # String |
283
293
  patched_filesystem_exporter = PulpcoreClient::PatchedFilesystemExporter.new # PatchedFilesystemExporter |
294
+ opts = {
295
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
296
+ }
284
297
 
285
298
  begin
286
299
  # Update a filesystem exporter
287
- result = api_instance.partial_update(filesystem_exporter_href, patched_filesystem_exporter)
300
+ result = api_instance.partial_update(filesystem_exporter_href, patched_filesystem_exporter, opts)
288
301
  p result
289
302
  rescue PulpcoreClient::ApiError => e
290
303
  puts "Error when calling ExportersFilesystemApi->partial_update: #{e}"
@@ -295,12 +308,12 @@ end
295
308
 
296
309
  This returns an Array which contains the response data, status code and headers.
297
310
 
298
- > <Array(<AsyncOperationResponse>, Integer, Hash)> partial_update_with_http_info(filesystem_exporter_href, patched_filesystem_exporter)
311
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> partial_update_with_http_info(filesystem_exporter_href, patched_filesystem_exporter, opts)
299
312
 
300
313
  ```ruby
301
314
  begin
302
315
  # Update a filesystem exporter
303
- data, status_code, headers = api_instance.partial_update_with_http_info(filesystem_exporter_href, patched_filesystem_exporter)
316
+ data, status_code, headers = api_instance.partial_update_with_http_info(filesystem_exporter_href, patched_filesystem_exporter, opts)
304
317
  p status_code # => 2xx
305
318
  p headers # => { ... }
306
319
  p data # => <AsyncOperationResponse>
@@ -315,6 +328,7 @@ end
315
328
  | ---- | ---- | ----------- | ----- |
316
329
  | **filesystem_exporter_href** | **String** | | |
317
330
  | **patched_filesystem_exporter** | [**PatchedFilesystemExporter**](PatchedFilesystemExporter.md) | | |
331
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
318
332
 
319
333
  ### Return type
320
334
 
@@ -353,6 +367,7 @@ end
353
367
  api_instance = PulpcoreClient::ExportersFilesystemApi.new
354
368
  filesystem_exporter_href = 'filesystem_exporter_href_example' # String |
355
369
  opts = {
370
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
356
371
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
357
372
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
358
373
  }
@@ -389,6 +404,7 @@ end
389
404
  | Name | Type | Description | Notes |
390
405
  | ---- | ---- | ----------- | ----- |
391
406
  | **filesystem_exporter_href** | **String** | | |
407
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
392
408
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
393
409
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
394
410
 
@@ -408,7 +424,7 @@ end
408
424
 
409
425
  ## update
410
426
 
411
- > <AsyncOperationResponse> update(filesystem_exporter_href, filesystem_exporter)
427
+ > <AsyncOperationResponse> update(filesystem_exporter_href, filesystem_exporter, opts)
412
428
 
413
429
  Update a filesystem exporter
414
430
 
@@ -429,10 +445,13 @@ end
429
445
  api_instance = PulpcoreClient::ExportersFilesystemApi.new
430
446
  filesystem_exporter_href = 'filesystem_exporter_href_example' # String |
431
447
  filesystem_exporter = PulpcoreClient::FilesystemExporter.new({name: 'name_example', path: 'path_example'}) # FilesystemExporter |
448
+ opts = {
449
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
450
+ }
432
451
 
433
452
  begin
434
453
  # Update a filesystem exporter
435
- result = api_instance.update(filesystem_exporter_href, filesystem_exporter)
454
+ result = api_instance.update(filesystem_exporter_href, filesystem_exporter, opts)
436
455
  p result
437
456
  rescue PulpcoreClient::ApiError => e
438
457
  puts "Error when calling ExportersFilesystemApi->update: #{e}"
@@ -443,12 +462,12 @@ end
443
462
 
444
463
  This returns an Array which contains the response data, status code and headers.
445
464
 
446
- > <Array(<AsyncOperationResponse>, Integer, Hash)> update_with_http_info(filesystem_exporter_href, filesystem_exporter)
465
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> update_with_http_info(filesystem_exporter_href, filesystem_exporter, opts)
447
466
 
448
467
  ```ruby
449
468
  begin
450
469
  # Update a filesystem exporter
451
- data, status_code, headers = api_instance.update_with_http_info(filesystem_exporter_href, filesystem_exporter)
470
+ data, status_code, headers = api_instance.update_with_http_info(filesystem_exporter_href, filesystem_exporter, opts)
452
471
  p status_code # => 2xx
453
472
  p headers # => { ... }
454
473
  p data # => <AsyncOperationResponse>
@@ -463,6 +482,7 @@ end
463
482
  | ---- | ---- | ----------- | ----- |
464
483
  | **filesystem_exporter_href** | **String** | | |
465
484
  | **filesystem_exporter** | [**FilesystemExporter**](FilesystemExporter.md) | | |
485
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
466
486
 
467
487
  ### Return type
468
488
 
@@ -12,7 +12,7 @@ All URIs are relative to *http://localhost:24817*
12
12
 
13
13
  ## create
14
14
 
15
- > <AsyncOperationResponse> create(filesystem_exporter_href, filesystem_export)
15
+ > <AsyncOperationResponse> create(filesystem_exporter_href, filesystem_export, opts)
16
16
 
17
17
  Create a filesystem export
18
18
 
@@ -33,10 +33,13 @@ end
33
33
  api_instance = PulpcoreClient::ExportersFilesystemExportsApi.new
34
34
  filesystem_exporter_href = 'filesystem_exporter_href_example' # String |
35
35
  filesystem_export = PulpcoreClient::FilesystemExport.new # FilesystemExport |
36
+ opts = {
37
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
38
+ }
36
39
 
37
40
  begin
38
41
  # Create a filesystem export
39
- result = api_instance.create(filesystem_exporter_href, filesystem_export)
42
+ result = api_instance.create(filesystem_exporter_href, filesystem_export, opts)
40
43
  p result
41
44
  rescue PulpcoreClient::ApiError => e
42
45
  puts "Error when calling ExportersFilesystemExportsApi->create: #{e}"
@@ -47,12 +50,12 @@ end
47
50
 
48
51
  This returns an Array which contains the response data, status code and headers.
49
52
 
50
- > <Array(<AsyncOperationResponse>, Integer, Hash)> create_with_http_info(filesystem_exporter_href, filesystem_export)
53
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> create_with_http_info(filesystem_exporter_href, filesystem_export, opts)
51
54
 
52
55
  ```ruby
53
56
  begin
54
57
  # Create a filesystem export
55
- data, status_code, headers = api_instance.create_with_http_info(filesystem_exporter_href, filesystem_export)
58
+ data, status_code, headers = api_instance.create_with_http_info(filesystem_exporter_href, filesystem_export, opts)
56
59
  p status_code # => 2xx
57
60
  p headers # => { ... }
58
61
  p data # => <AsyncOperationResponse>
@@ -67,6 +70,7 @@ end
67
70
  | ---- | ---- | ----------- | ----- |
68
71
  | **filesystem_exporter_href** | **String** | | |
69
72
  | **filesystem_export** | [**FilesystemExport**](FilesystemExport.md) | | |
73
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
70
74
 
71
75
  ### Return type
72
76
 
@@ -84,7 +88,7 @@ end
84
88
 
85
89
  ## delete
86
90
 
87
- > delete(filesystem_filesystem_export_href)
91
+ > delete(filesystem_filesystem_export_href, opts)
88
92
 
89
93
  Delete a filesystem export
90
94
 
@@ -104,10 +108,13 @@ end
104
108
 
105
109
  api_instance = PulpcoreClient::ExportersFilesystemExportsApi.new
106
110
  filesystem_filesystem_export_href = 'filesystem_filesystem_export_href_example' # String |
111
+ opts = {
112
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
113
+ }
107
114
 
108
115
  begin
109
116
  # Delete a filesystem export
110
- api_instance.delete(filesystem_filesystem_export_href)
117
+ api_instance.delete(filesystem_filesystem_export_href, opts)
111
118
  rescue PulpcoreClient::ApiError => e
112
119
  puts "Error when calling ExportersFilesystemExportsApi->delete: #{e}"
113
120
  end
@@ -117,12 +124,12 @@ end
117
124
 
118
125
  This returns an Array which contains the response data (`nil` in this case), status code and headers.
119
126
 
120
- > <Array(nil, Integer, Hash)> delete_with_http_info(filesystem_filesystem_export_href)
127
+ > <Array(nil, Integer, Hash)> delete_with_http_info(filesystem_filesystem_export_href, opts)
121
128
 
122
129
  ```ruby
123
130
  begin
124
131
  # Delete a filesystem export
125
- data, status_code, headers = api_instance.delete_with_http_info(filesystem_filesystem_export_href)
132
+ data, status_code, headers = api_instance.delete_with_http_info(filesystem_filesystem_export_href, opts)
126
133
  p status_code # => 2xx
127
134
  p headers # => { ... }
128
135
  p data # => nil
@@ -136,6 +143,7 @@ end
136
143
  | Name | Type | Description | Notes |
137
144
  | ---- | ---- | ----------- | ----- |
138
145
  | **filesystem_filesystem_export_href** | **String** | | |
146
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
139
147
 
140
148
  ### Return type
141
149
 
@@ -174,6 +182,7 @@ end
174
182
  api_instance = PulpcoreClient::ExportersFilesystemExportsApi.new
175
183
  filesystem_exporter_href = 'filesystem_exporter_href_example' # String |
176
184
  opts = {
185
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
177
186
  limit: 56, # Integer | Number of results to return per page.
178
187
  offset: 56, # Integer | The initial index from which to return the results.
179
188
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
@@ -212,6 +221,7 @@ end
212
221
  | Name | Type | Description | Notes |
213
222
  | ---- | ---- | ----------- | ----- |
214
223
  | **filesystem_exporter_href** | **String** | | |
224
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
215
225
  | **limit** | **Integer** | Number of results to return per page. | [optional] |
216
226
  | **offset** | **Integer** | The initial index from which to return the results. | [optional] |
217
227
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
@@ -254,6 +264,7 @@ end
254
264
  api_instance = PulpcoreClient::ExportersFilesystemExportsApi.new
255
265
  filesystem_filesystem_export_href = 'filesystem_filesystem_export_href_example' # String |
256
266
  opts = {
267
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
257
268
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
258
269
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
259
270
  }
@@ -290,6 +301,7 @@ end
290
301
  | Name | Type | Description | Notes |
291
302
  | ---- | ---- | ----------- | ----- |
292
303
  | **filesystem_filesystem_export_href** | **String** | | |
304
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
293
305
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
294
306
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
295
307