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
@@ -32,6 +32,7 @@ end
32
32
 
33
33
  api_instance = PulpcoreClient::ContentOpenpgpSignatureApi.new
34
34
  opts = {
35
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
35
36
  issuer: 'issuer_example', # String | Filter results where issuer matches value
36
37
  limit: 56, # Integer | Number of results to return per page.
37
38
  offset: 56, # Integer | The initial index from which to return the results.
@@ -80,6 +81,7 @@ end
80
81
 
81
82
  | Name | Type | Description | Notes |
82
83
  | ---- | ---- | ----------- | ----- |
84
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
83
85
  | **issuer** | **String** | Filter results where issuer matches value | [optional] |
84
86
  | **limit** | **Integer** | Number of results to return per page. | [optional] |
85
87
  | **offset** | **Integer** | The initial index from which to return the results. | [optional] |
@@ -133,6 +135,7 @@ end
133
135
  api_instance = PulpcoreClient::ContentOpenpgpSignatureApi.new
134
136
  open_p_g_p_signature_href = 'open_p_g_p_signature_href_example' # String |
135
137
  opts = {
138
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
136
139
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
137
140
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
138
141
  }
@@ -169,6 +172,7 @@ end
169
172
  | Name | Type | Description | Notes |
170
173
  | ---- | ---- | ----------- | ----- |
171
174
  | **open_p_g_p_signature_href** | **String** | | |
175
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
172
176
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
173
177
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
174
178
 
@@ -188,7 +192,7 @@ end
188
192
 
189
193
  ## set_label
190
194
 
191
- > <SetLabelResponse> set_label(open_p_g_p_signature_href, set_label)
195
+ > <SetLabelResponse> set_label(open_p_g_p_signature_href, set_label, opts)
192
196
 
193
197
  Set a label
194
198
 
@@ -209,10 +213,13 @@ end
209
213
  api_instance = PulpcoreClient::ContentOpenpgpSignatureApi.new
210
214
  open_p_g_p_signature_href = 'open_p_g_p_signature_href_example' # String |
211
215
  set_label = PulpcoreClient::SetLabel.new({key: 'key_example', value: 'value_example'}) # SetLabel |
216
+ opts = {
217
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
218
+ }
212
219
 
213
220
  begin
214
221
  # Set a label
215
- result = api_instance.set_label(open_p_g_p_signature_href, set_label)
222
+ result = api_instance.set_label(open_p_g_p_signature_href, set_label, opts)
216
223
  p result
217
224
  rescue PulpcoreClient::ApiError => e
218
225
  puts "Error when calling ContentOpenpgpSignatureApi->set_label: #{e}"
@@ -223,12 +230,12 @@ end
223
230
 
224
231
  This returns an Array which contains the response data, status code and headers.
225
232
 
226
- > <Array(<SetLabelResponse>, Integer, Hash)> set_label_with_http_info(open_p_g_p_signature_href, set_label)
233
+ > <Array(<SetLabelResponse>, Integer, Hash)> set_label_with_http_info(open_p_g_p_signature_href, set_label, opts)
227
234
 
228
235
  ```ruby
229
236
  begin
230
237
  # Set a label
231
- data, status_code, headers = api_instance.set_label_with_http_info(open_p_g_p_signature_href, set_label)
238
+ data, status_code, headers = api_instance.set_label_with_http_info(open_p_g_p_signature_href, set_label, opts)
232
239
  p status_code # => 2xx
233
240
  p headers # => { ... }
234
241
  p data # => <SetLabelResponse>
@@ -243,6 +250,7 @@ end
243
250
  | ---- | ---- | ----------- | ----- |
244
251
  | **open_p_g_p_signature_href** | **String** | | |
245
252
  | **set_label** | [**SetLabel**](SetLabel.md) | | |
253
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
246
254
 
247
255
  ### Return type
248
256
 
@@ -260,7 +268,7 @@ end
260
268
 
261
269
  ## unset_label
262
270
 
263
- > <UnsetLabelResponse> unset_label(open_p_g_p_signature_href, unset_label)
271
+ > <UnsetLabelResponse> unset_label(open_p_g_p_signature_href, unset_label, opts)
264
272
 
265
273
  Unset a label
266
274
 
@@ -281,10 +289,13 @@ end
281
289
  api_instance = PulpcoreClient::ContentOpenpgpSignatureApi.new
282
290
  open_p_g_p_signature_href = 'open_p_g_p_signature_href_example' # String |
283
291
  unset_label = PulpcoreClient::UnsetLabel.new({key: 'key_example'}) # UnsetLabel |
292
+ opts = {
293
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
294
+ }
284
295
 
285
296
  begin
286
297
  # Unset a label
287
- result = api_instance.unset_label(open_p_g_p_signature_href, unset_label)
298
+ result = api_instance.unset_label(open_p_g_p_signature_href, unset_label, opts)
288
299
  p result
289
300
  rescue PulpcoreClient::ApiError => e
290
301
  puts "Error when calling ContentOpenpgpSignatureApi->unset_label: #{e}"
@@ -295,12 +306,12 @@ end
295
306
 
296
307
  This returns an Array which contains the response data, status code and headers.
297
308
 
298
- > <Array(<UnsetLabelResponse>, Integer, Hash)> unset_label_with_http_info(open_p_g_p_signature_href, unset_label)
309
+ > <Array(<UnsetLabelResponse>, Integer, Hash)> unset_label_with_http_info(open_p_g_p_signature_href, unset_label, opts)
299
310
 
300
311
  ```ruby
301
312
  begin
302
313
  # Unset a label
303
- data, status_code, headers = api_instance.unset_label_with_http_info(open_p_g_p_signature_href, unset_label)
314
+ data, status_code, headers = api_instance.unset_label_with_http_info(open_p_g_p_signature_href, unset_label, opts)
304
315
  p status_code # => 2xx
305
316
  p headers # => { ... }
306
317
  p data # => <UnsetLabelResponse>
@@ -315,6 +326,7 @@ end
315
326
  | ---- | ---- | ----------- | ----- |
316
327
  | **open_p_g_p_signature_href** | **String** | | |
317
328
  | **unset_label** | [**UnsetLabel**](UnsetLabel.md) | | |
329
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
318
330
 
319
331
  ### Return type
320
332
 
@@ -32,6 +32,7 @@ end
32
32
 
33
33
  api_instance = PulpcoreClient::ContentOpenpgpUserattributeApi.new
34
34
  opts = {
35
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
35
36
  limit: 56, # Integer | Number of results to return per page.
36
37
  offset: 56, # Integer | The initial index from which to return the results.
37
38
  ordering: ['-pk'], # Array<String> | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `raw_data` - Raw data * `-raw_data` - Raw data (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `pk` - Pk * `-pk` - Pk (descending)
@@ -80,6 +81,7 @@ end
80
81
 
81
82
  | Name | Type | Description | Notes |
82
83
  | ---- | ---- | ----------- | ----- |
84
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
83
85
  | **limit** | **Integer** | Number of results to return per page. | [optional] |
84
86
  | **offset** | **Integer** | The initial index from which to return the results. | [optional] |
85
87
  | **ordering** | [**Array&lt;String&gt;**](String.md) | Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;raw_data&#x60; - Raw data * &#x60;-raw_data&#x60; - Raw data (descending) * &#x60;sha256&#x60; - Sha256 * &#x60;-sha256&#x60; - Sha256 (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending) | [optional] |
@@ -133,6 +135,7 @@ end
133
135
  api_instance = PulpcoreClient::ContentOpenpgpUserattributeApi.new
134
136
  open_p_g_p_user_attribute_href = 'open_p_g_p_user_attribute_href_example' # String |
135
137
  opts = {
138
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
136
139
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
137
140
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
138
141
  }
@@ -169,6 +172,7 @@ end
169
172
  | Name | Type | Description | Notes |
170
173
  | ---- | ---- | ----------- | ----- |
171
174
  | **open_p_g_p_user_attribute_href** | **String** | | |
175
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
172
176
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
173
177
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
174
178
 
@@ -188,7 +192,7 @@ end
188
192
 
189
193
  ## set_label
190
194
 
191
- > <SetLabelResponse> set_label(open_p_g_p_user_attribute_href, set_label)
195
+ > <SetLabelResponse> set_label(open_p_g_p_user_attribute_href, set_label, opts)
192
196
 
193
197
  Set a label
194
198
 
@@ -209,10 +213,13 @@ end
209
213
  api_instance = PulpcoreClient::ContentOpenpgpUserattributeApi.new
210
214
  open_p_g_p_user_attribute_href = 'open_p_g_p_user_attribute_href_example' # String |
211
215
  set_label = PulpcoreClient::SetLabel.new({key: 'key_example', value: 'value_example'}) # SetLabel |
216
+ opts = {
217
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
218
+ }
212
219
 
213
220
  begin
214
221
  # Set a label
215
- result = api_instance.set_label(open_p_g_p_user_attribute_href, set_label)
222
+ result = api_instance.set_label(open_p_g_p_user_attribute_href, set_label, opts)
216
223
  p result
217
224
  rescue PulpcoreClient::ApiError => e
218
225
  puts "Error when calling ContentOpenpgpUserattributeApi->set_label: #{e}"
@@ -223,12 +230,12 @@ end
223
230
 
224
231
  This returns an Array which contains the response data, status code and headers.
225
232
 
226
- > <Array(<SetLabelResponse>, Integer, Hash)> set_label_with_http_info(open_p_g_p_user_attribute_href, set_label)
233
+ > <Array(<SetLabelResponse>, Integer, Hash)> set_label_with_http_info(open_p_g_p_user_attribute_href, set_label, opts)
227
234
 
228
235
  ```ruby
229
236
  begin
230
237
  # Set a label
231
- data, status_code, headers = api_instance.set_label_with_http_info(open_p_g_p_user_attribute_href, set_label)
238
+ data, status_code, headers = api_instance.set_label_with_http_info(open_p_g_p_user_attribute_href, set_label, opts)
232
239
  p status_code # => 2xx
233
240
  p headers # => { ... }
234
241
  p data # => <SetLabelResponse>
@@ -243,6 +250,7 @@ end
243
250
  | ---- | ---- | ----------- | ----- |
244
251
  | **open_p_g_p_user_attribute_href** | **String** | | |
245
252
  | **set_label** | [**SetLabel**](SetLabel.md) | | |
253
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
246
254
 
247
255
  ### Return type
248
256
 
@@ -260,7 +268,7 @@ end
260
268
 
261
269
  ## unset_label
262
270
 
263
- > <UnsetLabelResponse> unset_label(open_p_g_p_user_attribute_href, unset_label)
271
+ > <UnsetLabelResponse> unset_label(open_p_g_p_user_attribute_href, unset_label, opts)
264
272
 
265
273
  Unset a label
266
274
 
@@ -281,10 +289,13 @@ end
281
289
  api_instance = PulpcoreClient::ContentOpenpgpUserattributeApi.new
282
290
  open_p_g_p_user_attribute_href = 'open_p_g_p_user_attribute_href_example' # String |
283
291
  unset_label = PulpcoreClient::UnsetLabel.new({key: 'key_example'}) # UnsetLabel |
292
+ opts = {
293
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
294
+ }
284
295
 
285
296
  begin
286
297
  # Unset a label
287
- result = api_instance.unset_label(open_p_g_p_user_attribute_href, unset_label)
298
+ result = api_instance.unset_label(open_p_g_p_user_attribute_href, unset_label, opts)
288
299
  p result
289
300
  rescue PulpcoreClient::ApiError => e
290
301
  puts "Error when calling ContentOpenpgpUserattributeApi->unset_label: #{e}"
@@ -295,12 +306,12 @@ end
295
306
 
296
307
  This returns an Array which contains the response data, status code and headers.
297
308
 
298
- > <Array(<UnsetLabelResponse>, Integer, Hash)> unset_label_with_http_info(open_p_g_p_user_attribute_href, unset_label)
309
+ > <Array(<UnsetLabelResponse>, Integer, Hash)> unset_label_with_http_info(open_p_g_p_user_attribute_href, unset_label, opts)
299
310
 
300
311
  ```ruby
301
312
  begin
302
313
  # Unset a label
303
- data, status_code, headers = api_instance.unset_label_with_http_info(open_p_g_p_user_attribute_href, unset_label)
314
+ data, status_code, headers = api_instance.unset_label_with_http_info(open_p_g_p_user_attribute_href, unset_label, opts)
304
315
  p status_code # => 2xx
305
316
  p headers # => { ... }
306
317
  p data # => <UnsetLabelResponse>
@@ -315,6 +326,7 @@ end
315
326
  | ---- | ---- | ----------- | ----- |
316
327
  | **open_p_g_p_user_attribute_href** | **String** | | |
317
328
  | **unset_label** | [**UnsetLabel**](UnsetLabel.md) | | |
329
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
318
330
 
319
331
  ### Return type
320
332
 
@@ -32,6 +32,7 @@ end
32
32
 
33
33
  api_instance = PulpcoreClient::ContentOpenpgpUseridApi.new
34
34
  opts = {
35
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
35
36
  limit: 56, # Integer | Number of results to return per page.
36
37
  offset: 56, # Integer | The initial index from which to return the results.
37
38
  ordering: ['-pk'], # Array<String> | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `raw_data` - Raw data * `-raw_data` - Raw data (descending) * `user_id` - User id * `-user_id` - User id (descending) * `pk` - Pk * `-pk` - Pk (descending)
@@ -88,6 +89,7 @@ end
88
89
 
89
90
  | Name | Type | Description | Notes |
90
91
  | ---- | ---- | ----------- | ----- |
92
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
91
93
  | **limit** | **Integer** | Number of results to return per page. | [optional] |
92
94
  | **offset** | **Integer** | The initial index from which to return the results. | [optional] |
93
95
  | **ordering** | [**Array&lt;String&gt;**](String.md) | Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;raw_data&#x60; - Raw data * &#x60;-raw_data&#x60; - Raw data (descending) * &#x60;user_id&#x60; - User id * &#x60;-user_id&#x60; - User id (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending) | [optional] |
@@ -149,6 +151,7 @@ end
149
151
  api_instance = PulpcoreClient::ContentOpenpgpUseridApi.new
150
152
  open_p_g_p_user_i_d_href = 'open_p_g_p_user_i_d_href_example' # String |
151
153
  opts = {
154
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
152
155
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
153
156
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
154
157
  }
@@ -185,6 +188,7 @@ end
185
188
  | Name | Type | Description | Notes |
186
189
  | ---- | ---- | ----------- | ----- |
187
190
  | **open_p_g_p_user_i_d_href** | **String** | | |
191
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
188
192
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
189
193
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
190
194
 
@@ -204,7 +208,7 @@ end
204
208
 
205
209
  ## set_label
206
210
 
207
- > <SetLabelResponse> set_label(open_p_g_p_user_i_d_href, set_label)
211
+ > <SetLabelResponse> set_label(open_p_g_p_user_i_d_href, set_label, opts)
208
212
 
209
213
  Set a label
210
214
 
@@ -225,10 +229,13 @@ end
225
229
  api_instance = PulpcoreClient::ContentOpenpgpUseridApi.new
226
230
  open_p_g_p_user_i_d_href = 'open_p_g_p_user_i_d_href_example' # String |
227
231
  set_label = PulpcoreClient::SetLabel.new({key: 'key_example', value: 'value_example'}) # SetLabel |
232
+ opts = {
233
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
234
+ }
228
235
 
229
236
  begin
230
237
  # Set a label
231
- result = api_instance.set_label(open_p_g_p_user_i_d_href, set_label)
238
+ result = api_instance.set_label(open_p_g_p_user_i_d_href, set_label, opts)
232
239
  p result
233
240
  rescue PulpcoreClient::ApiError => e
234
241
  puts "Error when calling ContentOpenpgpUseridApi->set_label: #{e}"
@@ -239,12 +246,12 @@ end
239
246
 
240
247
  This returns an Array which contains the response data, status code and headers.
241
248
 
242
- > <Array(<SetLabelResponse>, Integer, Hash)> set_label_with_http_info(open_p_g_p_user_i_d_href, set_label)
249
+ > <Array(<SetLabelResponse>, Integer, Hash)> set_label_with_http_info(open_p_g_p_user_i_d_href, set_label, opts)
243
250
 
244
251
  ```ruby
245
252
  begin
246
253
  # Set a label
247
- data, status_code, headers = api_instance.set_label_with_http_info(open_p_g_p_user_i_d_href, set_label)
254
+ data, status_code, headers = api_instance.set_label_with_http_info(open_p_g_p_user_i_d_href, set_label, opts)
248
255
  p status_code # => 2xx
249
256
  p headers # => { ... }
250
257
  p data # => <SetLabelResponse>
@@ -259,6 +266,7 @@ end
259
266
  | ---- | ---- | ----------- | ----- |
260
267
  | **open_p_g_p_user_i_d_href** | **String** | | |
261
268
  | **set_label** | [**SetLabel**](SetLabel.md) | | |
269
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
262
270
 
263
271
  ### Return type
264
272
 
@@ -276,7 +284,7 @@ end
276
284
 
277
285
  ## unset_label
278
286
 
279
- > <UnsetLabelResponse> unset_label(open_p_g_p_user_i_d_href, unset_label)
287
+ > <UnsetLabelResponse> unset_label(open_p_g_p_user_i_d_href, unset_label, opts)
280
288
 
281
289
  Unset a label
282
290
 
@@ -297,10 +305,13 @@ end
297
305
  api_instance = PulpcoreClient::ContentOpenpgpUseridApi.new
298
306
  open_p_g_p_user_i_d_href = 'open_p_g_p_user_i_d_href_example' # String |
299
307
  unset_label = PulpcoreClient::UnsetLabel.new({key: 'key_example'}) # UnsetLabel |
308
+ opts = {
309
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
310
+ }
300
311
 
301
312
  begin
302
313
  # Unset a label
303
- result = api_instance.unset_label(open_p_g_p_user_i_d_href, unset_label)
314
+ result = api_instance.unset_label(open_p_g_p_user_i_d_href, unset_label, opts)
304
315
  p result
305
316
  rescue PulpcoreClient::ApiError => e
306
317
  puts "Error when calling ContentOpenpgpUseridApi->unset_label: #{e}"
@@ -311,12 +322,12 @@ end
311
322
 
312
323
  This returns an Array which contains the response data, status code and headers.
313
324
 
314
- > <Array(<UnsetLabelResponse>, Integer, Hash)> unset_label_with_http_info(open_p_g_p_user_i_d_href, unset_label)
325
+ > <Array(<UnsetLabelResponse>, Integer, Hash)> unset_label_with_http_info(open_p_g_p_user_i_d_href, unset_label, opts)
315
326
 
316
327
  ```ruby
317
328
  begin
318
329
  # Unset a label
319
- data, status_code, headers = api_instance.unset_label_with_http_info(open_p_g_p_user_i_d_href, unset_label)
330
+ data, status_code, headers = api_instance.unset_label_with_http_info(open_p_g_p_user_i_d_href, unset_label, opts)
320
331
  p status_code # => 2xx
321
332
  p headers # => { ... }
322
333
  p data # => <UnsetLabelResponse>
@@ -331,6 +342,7 @@ end
331
342
  | ---- | ---- | ----------- | ----- |
332
343
  | **open_p_g_p_user_i_d_href** | **String** | | |
333
344
  | **unset_label** | [**UnsetLabel**](UnsetLabel.md) | | |
345
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
334
346
 
335
347
  ### Return type
336
348
 
@@ -29,6 +29,7 @@ end
29
29
 
30
30
  api_instance = PulpcoreClient::ContentguardsApi.new
31
31
  opts = {
32
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
32
33
  limit: 56, # Integer | Number of results to return per page.
33
34
  name: 'name_example', # String | Filter results where name matches value
34
35
  name__contains: 'name__contains_example', # String | Filter results where name contains value
@@ -82,6 +83,7 @@ end
82
83
 
83
84
  | Name | Type | Description | Notes |
84
85
  | ---- | ---- | ----------- | ----- |
86
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
85
87
  | **limit** | **Integer** | Number of results to return per page. | [optional] |
86
88
  | **name** | **String** | Filter results where name matches value | [optional] |
87
89
  | **name__contains** | **String** | Filter results where name contains value | [optional] |