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
@@ -21,7 +21,7 @@ All URIs are relative to *http://localhost:24817*
21
21
 
22
22
  ## add_role
23
23
 
24
- > <NestedRoleResponse> add_role(open_p_g_p_keyring_href, nested_role)
24
+ > <NestedRoleResponse> add_role(open_p_g_p_keyring_href, nested_role, opts)
25
25
 
26
26
  Add a role
27
27
 
@@ -42,10 +42,13 @@ end
42
42
  api_instance = PulpcoreClient::RepositoriesOpenpgpKeyringApi.new
43
43
  open_p_g_p_keyring_href = 'open_p_g_p_keyring_href_example' # String |
44
44
  nested_role = PulpcoreClient::NestedRole.new({role: 'role_example'}) # NestedRole |
45
+ opts = {
46
+ x_task_diagnostics: ['inner_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(open_p_g_p_keyring_href, nested_role)
51
+ result = api_instance.add_role(open_p_g_p_keyring_href, nested_role, opts)
49
52
  p result
50
53
  rescue PulpcoreClient::ApiError => e
51
54
  puts "Error when calling RepositoriesOpenpgpKeyringApi->add_role: #{e}"
@@ -56,12 +59,12 @@ end
56
59
 
57
60
  This returns an Array which contains the response data, status code and headers.
58
61
 
59
- > <Array(<NestedRoleResponse>, Integer, Hash)> add_role_with_http_info(open_p_g_p_keyring_href, nested_role)
62
+ > <Array(<NestedRoleResponse>, Integer, Hash)> add_role_with_http_info(open_p_g_p_keyring_href, nested_role, opts)
60
63
 
61
64
  ```ruby
62
65
  begin
63
66
  # Add a role
64
- data, status_code, headers = api_instance.add_role_with_http_info(open_p_g_p_keyring_href, nested_role)
67
+ data, status_code, headers = api_instance.add_role_with_http_info(open_p_g_p_keyring_href, nested_role, opts)
65
68
  p status_code # => 2xx
66
69
  p headers # => { ... }
67
70
  p data # => <NestedRoleResponse>
@@ -76,6 +79,7 @@ end
76
79
  | ---- | ---- | ----------- | ----- |
77
80
  | **open_p_g_p_keyring_href** | **String** | | |
78
81
  | **nested_role** | [**NestedRole**](NestedRole.md) | | |
82
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
79
83
 
80
84
  ### Return type
81
85
 
@@ -93,7 +97,7 @@ end
93
97
 
94
98
  ## create
95
99
 
96
- > <OpenPGPKeyringResponse> create(open_pgp_keyring)
100
+ > <OpenPGPKeyringResponse> create(open_pgp_keyring, opts)
97
101
 
98
102
  Create an open pgp keyring
99
103
 
@@ -113,10 +117,13 @@ end
113
117
 
114
118
  api_instance = PulpcoreClient::RepositoriesOpenpgpKeyringApi.new
115
119
  open_pgp_keyring = PulpcoreClient::OpenPGPKeyring.new({name: 'name_example'}) # OpenPGPKeyring |
120
+ opts = {
121
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
122
+ }
116
123
 
117
124
  begin
118
125
  # Create an open pgp keyring
119
- result = api_instance.create(open_pgp_keyring)
126
+ result = api_instance.create(open_pgp_keyring, opts)
120
127
  p result
121
128
  rescue PulpcoreClient::ApiError => e
122
129
  puts "Error when calling RepositoriesOpenpgpKeyringApi->create: #{e}"
@@ -127,12 +134,12 @@ end
127
134
 
128
135
  This returns an Array which contains the response data, status code and headers.
129
136
 
130
- > <Array(<OpenPGPKeyringResponse>, Integer, Hash)> create_with_http_info(open_pgp_keyring)
137
+ > <Array(<OpenPGPKeyringResponse>, Integer, Hash)> create_with_http_info(open_pgp_keyring, opts)
131
138
 
132
139
  ```ruby
133
140
  begin
134
141
  # Create an open pgp keyring
135
- data, status_code, headers = api_instance.create_with_http_info(open_pgp_keyring)
142
+ data, status_code, headers = api_instance.create_with_http_info(open_pgp_keyring, opts)
136
143
  p status_code # => 2xx
137
144
  p headers # => { ... }
138
145
  p data # => <OpenPGPKeyringResponse>
@@ -146,6 +153,7 @@ end
146
153
  | Name | Type | Description | Notes |
147
154
  | ---- | ---- | ----------- | ----- |
148
155
  | **open_pgp_keyring** | [**OpenPGPKeyring**](OpenPGPKeyring.md) | | |
156
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
149
157
 
150
158
  ### Return type
151
159
 
@@ -163,7 +171,7 @@ end
163
171
 
164
172
  ## delete
165
173
 
166
- > <AsyncOperationResponse> delete(open_p_g_p_keyring_href)
174
+ > <AsyncOperationResponse> delete(open_p_g_p_keyring_href, opts)
167
175
 
168
176
  Delete an open pgp keyring
169
177
 
@@ -183,10 +191,13 @@ end
183
191
 
184
192
  api_instance = PulpcoreClient::RepositoriesOpenpgpKeyringApi.new
185
193
  open_p_g_p_keyring_href = 'open_p_g_p_keyring_href_example' # String |
194
+ opts = {
195
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
196
+ }
186
197
 
187
198
  begin
188
199
  # Delete an open pgp keyring
189
- result = api_instance.delete(open_p_g_p_keyring_href)
200
+ result = api_instance.delete(open_p_g_p_keyring_href, opts)
190
201
  p result
191
202
  rescue PulpcoreClient::ApiError => e
192
203
  puts "Error when calling RepositoriesOpenpgpKeyringApi->delete: #{e}"
@@ -197,12 +208,12 @@ end
197
208
 
198
209
  This returns an Array which contains the response data, status code and headers.
199
210
 
200
- > <Array(<AsyncOperationResponse>, Integer, Hash)> delete_with_http_info(open_p_g_p_keyring_href)
211
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> delete_with_http_info(open_p_g_p_keyring_href, opts)
201
212
 
202
213
  ```ruby
203
214
  begin
204
215
  # Delete an open pgp keyring
205
- data, status_code, headers = api_instance.delete_with_http_info(open_p_g_p_keyring_href)
216
+ data, status_code, headers = api_instance.delete_with_http_info(open_p_g_p_keyring_href, opts)
206
217
  p status_code # => 2xx
207
218
  p headers # => { ... }
208
219
  p data # => <AsyncOperationResponse>
@@ -216,6 +227,7 @@ end
216
227
  | Name | Type | Description | Notes |
217
228
  | ---- | ---- | ----------- | ----- |
218
229
  | **open_p_g_p_keyring_href** | **String** | | |
230
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
219
231
 
220
232
  ### Return type
221
233
 
@@ -253,6 +265,7 @@ end
253
265
 
254
266
  api_instance = PulpcoreClient::RepositoriesOpenpgpKeyringApi.new
255
267
  opts = {
268
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
256
269
  latest_with_content: 'latest_with_content_example', # String | Content Unit referenced by HREF/PRN
257
270
  limit: 56, # Integer | Number of results to return per page.
258
271
  name: 'name_example', # String | Filter results where name matches value
@@ -316,6 +329,7 @@ end
316
329
 
317
330
  | Name | Type | Description | Notes |
318
331
  | ---- | ---- | ----------- | ----- |
332
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
319
333
  | **latest_with_content** | **String** | Content Unit referenced by HREF/PRN | [optional] |
320
334
  | **limit** | **Integer** | Number of results to return per page. | [optional] |
321
335
  | **name** | **String** | Filter results where name matches value | [optional] |
@@ -384,6 +398,7 @@ end
384
398
  api_instance = PulpcoreClient::RepositoriesOpenpgpKeyringApi.new
385
399
  open_p_g_p_keyring_href = 'open_p_g_p_keyring_href_example' # String |
386
400
  opts = {
401
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
387
402
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
388
403
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
389
404
  }
@@ -420,6 +435,7 @@ end
420
435
  | Name | Type | Description | Notes |
421
436
  | ---- | ---- | ----------- | ----- |
422
437
  | **open_p_g_p_keyring_href** | **String** | | |
438
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
423
439
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
424
440
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
425
441
 
@@ -439,7 +455,7 @@ end
439
455
 
440
456
  ## modify
441
457
 
442
- > <AsyncOperationResponse> modify(open_p_g_p_keyring_href, repository_add_remove_content)
458
+ > <AsyncOperationResponse> modify(open_p_g_p_keyring_href, repository_add_remove_content, opts)
443
459
 
444
460
  Modify Repository Content
445
461
 
@@ -460,10 +476,13 @@ end
460
476
  api_instance = PulpcoreClient::RepositoriesOpenpgpKeyringApi.new
461
477
  open_p_g_p_keyring_href = 'open_p_g_p_keyring_href_example' # String |
462
478
  repository_add_remove_content = PulpcoreClient::RepositoryAddRemoveContent.new # RepositoryAddRemoveContent |
479
+ opts = {
480
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
481
+ }
463
482
 
464
483
  begin
465
484
  # Modify Repository Content
466
- result = api_instance.modify(open_p_g_p_keyring_href, repository_add_remove_content)
485
+ result = api_instance.modify(open_p_g_p_keyring_href, repository_add_remove_content, opts)
467
486
  p result
468
487
  rescue PulpcoreClient::ApiError => e
469
488
  puts "Error when calling RepositoriesOpenpgpKeyringApi->modify: #{e}"
@@ -474,12 +493,12 @@ end
474
493
 
475
494
  This returns an Array which contains the response data, status code and headers.
476
495
 
477
- > <Array(<AsyncOperationResponse>, Integer, Hash)> modify_with_http_info(open_p_g_p_keyring_href, repository_add_remove_content)
496
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> modify_with_http_info(open_p_g_p_keyring_href, repository_add_remove_content, opts)
478
497
 
479
498
  ```ruby
480
499
  begin
481
500
  # Modify Repository Content
482
- data, status_code, headers = api_instance.modify_with_http_info(open_p_g_p_keyring_href, repository_add_remove_content)
501
+ data, status_code, headers = api_instance.modify_with_http_info(open_p_g_p_keyring_href, repository_add_remove_content, opts)
483
502
  p status_code # => 2xx
484
503
  p headers # => { ... }
485
504
  p data # => <AsyncOperationResponse>
@@ -494,6 +513,7 @@ end
494
513
  | ---- | ---- | ----------- | ----- |
495
514
  | **open_p_g_p_keyring_href** | **String** | | |
496
515
  | **repository_add_remove_content** | [**RepositoryAddRemoveContent**](RepositoryAddRemoveContent.md) | | |
516
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
497
517
 
498
518
  ### Return type
499
519
 
@@ -532,6 +552,7 @@ end
532
552
  api_instance = PulpcoreClient::RepositoriesOpenpgpKeyringApi.new
533
553
  open_p_g_p_keyring_href = 'open_p_g_p_keyring_href_example' # String |
534
554
  opts = {
555
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
535
556
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
536
557
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
537
558
  }
@@ -568,6 +589,7 @@ end
568
589
  | Name | Type | Description | Notes |
569
590
  | ---- | ---- | ----------- | ----- |
570
591
  | **open_p_g_p_keyring_href** | **String** | | |
592
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
571
593
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
572
594
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
573
595
 
@@ -587,7 +609,7 @@ end
587
609
 
588
610
  ## partial_update
589
611
 
590
- > <AsyncOperationResponse> partial_update(open_p_g_p_keyring_href, patched_open_pgp_keyring)
612
+ > <AsyncOperationResponse> partial_update(open_p_g_p_keyring_href, patched_open_pgp_keyring, opts)
591
613
 
592
614
  Update an open pgp keyring
593
615
 
@@ -608,10 +630,13 @@ end
608
630
  api_instance = PulpcoreClient::RepositoriesOpenpgpKeyringApi.new
609
631
  open_p_g_p_keyring_href = 'open_p_g_p_keyring_href_example' # String |
610
632
  patched_open_pgp_keyring = PulpcoreClient::PatchedOpenPGPKeyring.new # PatchedOpenPGPKeyring |
633
+ opts = {
634
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
635
+ }
611
636
 
612
637
  begin
613
638
  # Update an open pgp keyring
614
- result = api_instance.partial_update(open_p_g_p_keyring_href, patched_open_pgp_keyring)
639
+ result = api_instance.partial_update(open_p_g_p_keyring_href, patched_open_pgp_keyring, opts)
615
640
  p result
616
641
  rescue PulpcoreClient::ApiError => e
617
642
  puts "Error when calling RepositoriesOpenpgpKeyringApi->partial_update: #{e}"
@@ -622,12 +647,12 @@ end
622
647
 
623
648
  This returns an Array which contains the response data, status code and headers.
624
649
 
625
- > <Array(<AsyncOperationResponse>, Integer, Hash)> partial_update_with_http_info(open_p_g_p_keyring_href, patched_open_pgp_keyring)
650
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> partial_update_with_http_info(open_p_g_p_keyring_href, patched_open_pgp_keyring, opts)
626
651
 
627
652
  ```ruby
628
653
  begin
629
654
  # Update an open pgp keyring
630
- data, status_code, headers = api_instance.partial_update_with_http_info(open_p_g_p_keyring_href, patched_open_pgp_keyring)
655
+ data, status_code, headers = api_instance.partial_update_with_http_info(open_p_g_p_keyring_href, patched_open_pgp_keyring, opts)
631
656
  p status_code # => 2xx
632
657
  p headers # => { ... }
633
658
  p data # => <AsyncOperationResponse>
@@ -642,6 +667,7 @@ end
642
667
  | ---- | ---- | ----------- | ----- |
643
668
  | **open_p_g_p_keyring_href** | **String** | | |
644
669
  | **patched_open_pgp_keyring** | [**PatchedOpenPGPKeyring**](PatchedOpenPGPKeyring.md) | | |
670
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
645
671
 
646
672
  ### Return type
647
673
 
@@ -680,6 +706,7 @@ end
680
706
  api_instance = PulpcoreClient::RepositoriesOpenpgpKeyringApi.new
681
707
  open_p_g_p_keyring_href = 'open_p_g_p_keyring_href_example' # String |
682
708
  opts = {
709
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
683
710
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
684
711
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
685
712
  }
@@ -716,6 +743,7 @@ end
716
743
  | Name | Type | Description | Notes |
717
744
  | ---- | ---- | ----------- | ----- |
718
745
  | **open_p_g_p_keyring_href** | **String** | | |
746
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
719
747
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
720
748
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
721
749
 
@@ -735,7 +763,7 @@ end
735
763
 
736
764
  ## remove_role
737
765
 
738
- > <NestedRoleResponse> remove_role(open_p_g_p_keyring_href, nested_role)
766
+ > <NestedRoleResponse> remove_role(open_p_g_p_keyring_href, nested_role, opts)
739
767
 
740
768
  Remove a role
741
769
 
@@ -756,10 +784,13 @@ end
756
784
  api_instance = PulpcoreClient::RepositoriesOpenpgpKeyringApi.new
757
785
  open_p_g_p_keyring_href = 'open_p_g_p_keyring_href_example' # String |
758
786
  nested_role = PulpcoreClient::NestedRole.new({role: 'role_example'}) # NestedRole |
787
+ opts = {
788
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
789
+ }
759
790
 
760
791
  begin
761
792
  # Remove a role
762
- result = api_instance.remove_role(open_p_g_p_keyring_href, nested_role)
793
+ result = api_instance.remove_role(open_p_g_p_keyring_href, nested_role, opts)
763
794
  p result
764
795
  rescue PulpcoreClient::ApiError => e
765
796
  puts "Error when calling RepositoriesOpenpgpKeyringApi->remove_role: #{e}"
@@ -770,12 +801,12 @@ end
770
801
 
771
802
  This returns an Array which contains the response data, status code and headers.
772
803
 
773
- > <Array(<NestedRoleResponse>, Integer, Hash)> remove_role_with_http_info(open_p_g_p_keyring_href, nested_role)
804
+ > <Array(<NestedRoleResponse>, Integer, Hash)> remove_role_with_http_info(open_p_g_p_keyring_href, nested_role, opts)
774
805
 
775
806
  ```ruby
776
807
  begin
777
808
  # Remove a role
778
- data, status_code, headers = api_instance.remove_role_with_http_info(open_p_g_p_keyring_href, nested_role)
809
+ data, status_code, headers = api_instance.remove_role_with_http_info(open_p_g_p_keyring_href, nested_role, opts)
779
810
  p status_code # => 2xx
780
811
  p headers # => { ... }
781
812
  p data # => <NestedRoleResponse>
@@ -790,6 +821,7 @@ end
790
821
  | ---- | ---- | ----------- | ----- |
791
822
  | **open_p_g_p_keyring_href** | **String** | | |
792
823
  | **nested_role** | [**NestedRole**](NestedRole.md) | | |
824
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
793
825
 
794
826
  ### Return type
795
827
 
@@ -807,7 +839,7 @@ end
807
839
 
808
840
  ## set_label
809
841
 
810
- > <SetLabelResponse> set_label(open_p_g_p_keyring_href, set_label)
842
+ > <SetLabelResponse> set_label(open_p_g_p_keyring_href, set_label, opts)
811
843
 
812
844
  Set a label
813
845
 
@@ -828,10 +860,13 @@ end
828
860
  api_instance = PulpcoreClient::RepositoriesOpenpgpKeyringApi.new
829
861
  open_p_g_p_keyring_href = 'open_p_g_p_keyring_href_example' # String |
830
862
  set_label = PulpcoreClient::SetLabel.new({key: 'key_example', value: 'value_example'}) # SetLabel |
863
+ opts = {
864
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
865
+ }
831
866
 
832
867
  begin
833
868
  # Set a label
834
- result = api_instance.set_label(open_p_g_p_keyring_href, set_label)
869
+ result = api_instance.set_label(open_p_g_p_keyring_href, set_label, opts)
835
870
  p result
836
871
  rescue PulpcoreClient::ApiError => e
837
872
  puts "Error when calling RepositoriesOpenpgpKeyringApi->set_label: #{e}"
@@ -842,12 +877,12 @@ end
842
877
 
843
878
  This returns an Array which contains the response data, status code and headers.
844
879
 
845
- > <Array(<SetLabelResponse>, Integer, Hash)> set_label_with_http_info(open_p_g_p_keyring_href, set_label)
880
+ > <Array(<SetLabelResponse>, Integer, Hash)> set_label_with_http_info(open_p_g_p_keyring_href, set_label, opts)
846
881
 
847
882
  ```ruby
848
883
  begin
849
884
  # Set a label
850
- data, status_code, headers = api_instance.set_label_with_http_info(open_p_g_p_keyring_href, set_label)
885
+ data, status_code, headers = api_instance.set_label_with_http_info(open_p_g_p_keyring_href, set_label, opts)
851
886
  p status_code # => 2xx
852
887
  p headers # => { ... }
853
888
  p data # => <SetLabelResponse>
@@ -862,6 +897,7 @@ end
862
897
  | ---- | ---- | ----------- | ----- |
863
898
  | **open_p_g_p_keyring_href** | **String** | | |
864
899
  | **set_label** | [**SetLabel**](SetLabel.md) | | |
900
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
865
901
 
866
902
  ### Return type
867
903
 
@@ -879,7 +915,7 @@ end
879
915
 
880
916
  ## unset_label
881
917
 
882
- > <UnsetLabelResponse> unset_label(open_p_g_p_keyring_href, unset_label)
918
+ > <UnsetLabelResponse> unset_label(open_p_g_p_keyring_href, unset_label, opts)
883
919
 
884
920
  Unset a label
885
921
 
@@ -900,10 +936,13 @@ end
900
936
  api_instance = PulpcoreClient::RepositoriesOpenpgpKeyringApi.new
901
937
  open_p_g_p_keyring_href = 'open_p_g_p_keyring_href_example' # String |
902
938
  unset_label = PulpcoreClient::UnsetLabel.new({key: 'key_example'}) # UnsetLabel |
939
+ opts = {
940
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
941
+ }
903
942
 
904
943
  begin
905
944
  # Unset a label
906
- result = api_instance.unset_label(open_p_g_p_keyring_href, unset_label)
945
+ result = api_instance.unset_label(open_p_g_p_keyring_href, unset_label, opts)
907
946
  p result
908
947
  rescue PulpcoreClient::ApiError => e
909
948
  puts "Error when calling RepositoriesOpenpgpKeyringApi->unset_label: #{e}"
@@ -914,12 +953,12 @@ end
914
953
 
915
954
  This returns an Array which contains the response data, status code and headers.
916
955
 
917
- > <Array(<UnsetLabelResponse>, Integer, Hash)> unset_label_with_http_info(open_p_g_p_keyring_href, unset_label)
956
+ > <Array(<UnsetLabelResponse>, Integer, Hash)> unset_label_with_http_info(open_p_g_p_keyring_href, unset_label, opts)
918
957
 
919
958
  ```ruby
920
959
  begin
921
960
  # Unset a label
922
- data, status_code, headers = api_instance.unset_label_with_http_info(open_p_g_p_keyring_href, unset_label)
961
+ data, status_code, headers = api_instance.unset_label_with_http_info(open_p_g_p_keyring_href, unset_label, opts)
923
962
  p status_code # => 2xx
924
963
  p headers # => { ... }
925
964
  p data # => <UnsetLabelResponse>
@@ -934,6 +973,7 @@ end
934
973
  | ---- | ---- | ----------- | ----- |
935
974
  | **open_p_g_p_keyring_href** | **String** | | |
936
975
  | **unset_label** | [**UnsetLabel**](UnsetLabel.md) | | |
976
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
937
977
 
938
978
  ### Return type
939
979
 
@@ -951,7 +991,7 @@ end
951
991
 
952
992
  ## update
953
993
 
954
- > <AsyncOperationResponse> update(open_p_g_p_keyring_href, open_pgp_keyring)
994
+ > <AsyncOperationResponse> update(open_p_g_p_keyring_href, open_pgp_keyring, opts)
955
995
 
956
996
  Update an open pgp keyring
957
997
 
@@ -972,10 +1012,13 @@ end
972
1012
  api_instance = PulpcoreClient::RepositoriesOpenpgpKeyringApi.new
973
1013
  open_p_g_p_keyring_href = 'open_p_g_p_keyring_href_example' # String |
974
1014
  open_pgp_keyring = PulpcoreClient::OpenPGPKeyring.new({name: 'name_example'}) # OpenPGPKeyring |
1015
+ opts = {
1016
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
1017
+ }
975
1018
 
976
1019
  begin
977
1020
  # Update an open pgp keyring
978
- result = api_instance.update(open_p_g_p_keyring_href, open_pgp_keyring)
1021
+ result = api_instance.update(open_p_g_p_keyring_href, open_pgp_keyring, opts)
979
1022
  p result
980
1023
  rescue PulpcoreClient::ApiError => e
981
1024
  puts "Error when calling RepositoriesOpenpgpKeyringApi->update: #{e}"
@@ -986,12 +1029,12 @@ end
986
1029
 
987
1030
  This returns an Array which contains the response data, status code and headers.
988
1031
 
989
- > <Array(<AsyncOperationResponse>, Integer, Hash)> update_with_http_info(open_p_g_p_keyring_href, open_pgp_keyring)
1032
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> update_with_http_info(open_p_g_p_keyring_href, open_pgp_keyring, opts)
990
1033
 
991
1034
  ```ruby
992
1035
  begin
993
1036
  # Update an open pgp keyring
994
- data, status_code, headers = api_instance.update_with_http_info(open_p_g_p_keyring_href, open_pgp_keyring)
1037
+ data, status_code, headers = api_instance.update_with_http_info(open_p_g_p_keyring_href, open_pgp_keyring, opts)
995
1038
  p status_code # => 2xx
996
1039
  p headers # => { ... }
997
1040
  p data # => <AsyncOperationResponse>
@@ -1006,6 +1049,7 @@ end
1006
1049
  | ---- | ---- | ----------- | ----- |
1007
1050
  | **open_p_g_p_keyring_href** | **String** | | |
1008
1051
  | **open_pgp_keyring** | [**OpenPGPKeyring**](OpenPGPKeyring.md) | | |
1052
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
1009
1053
 
1010
1054
  ### Return type
1011
1055
 
@@ -9,7 +9,7 @@ All URIs are relative to *http://localhost:24817*
9
9
 
10
10
  ## reclaim
11
11
 
12
- > <AsyncOperationResponse> reclaim(reclaim_space)
12
+ > <AsyncOperationResponse> reclaim(reclaim_space, opts)
13
13
 
14
14
 
15
15
 
@@ -29,10 +29,13 @@ end
29
29
 
30
30
  api_instance = PulpcoreClient::RepositoriesReclaimSpaceApi.new
31
31
  reclaim_space = PulpcoreClient::ReclaimSpace.new({repo_hrefs: [3.56]}) # ReclaimSpace |
32
+ opts = {
33
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
34
+ }
32
35
 
33
36
  begin
34
37
 
35
- result = api_instance.reclaim(reclaim_space)
38
+ result = api_instance.reclaim(reclaim_space, opts)
36
39
  p result
37
40
  rescue PulpcoreClient::ApiError => e
38
41
  puts "Error when calling RepositoriesReclaimSpaceApi->reclaim: #{e}"
@@ -43,12 +46,12 @@ end
43
46
 
44
47
  This returns an Array which contains the response data, status code and headers.
45
48
 
46
- > <Array(<AsyncOperationResponse>, Integer, Hash)> reclaim_with_http_info(reclaim_space)
49
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> reclaim_with_http_info(reclaim_space, opts)
47
50
 
48
51
  ```ruby
49
52
  begin
50
53
 
51
- data, status_code, headers = api_instance.reclaim_with_http_info(reclaim_space)
54
+ data, status_code, headers = api_instance.reclaim_with_http_info(reclaim_space, opts)
52
55
  p status_code # => 2xx
53
56
  p headers # => { ... }
54
57
  p data # => <AsyncOperationResponse>
@@ -62,6 +65,7 @@ end
62
65
  | Name | Type | Description | Notes |
63
66
  | ---- | ---- | ----------- | ----- |
64
67
  | **reclaim_space** | [**ReclaimSpace**](ReclaimSpace.md) | | |
68
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
65
69
 
66
70
  ### Return type
67
71
 
@@ -29,6 +29,7 @@ end
29
29
 
30
30
  api_instance = PulpcoreClient::RepositoryVersionsApi.new
31
31
  opts = {
32
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
32
33
  content: 'content_example', # String | Content Unit referenced by HREF/PRN
33
34
  content__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
34
35
  limit: 56, # Integer | Number of results to return per page.
@@ -85,6 +86,7 @@ end
85
86
 
86
87
  | Name | Type | Description | Notes |
87
88
  | ---- | ---- | ----------- | ----- |
89
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
88
90
  | **content** | **String** | Content Unit referenced by HREF/PRN | [optional] |
89
91
  | **content__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
90
92
  | **limit** | **Integer** | Number of results to return per page. | [optional] |