pulp_rpm_client 3.31.0 → 3.31.1

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 (67) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -5
  3. data/docs/AcsRpmApi.md +64 -28
  4. data/docs/ContentAdvisoriesApi.md +22 -8
  5. data/docs/ContentDistributionTreesApi.md +20 -8
  6. data/docs/ContentModulemdDefaultsApi.md +28 -12
  7. data/docs/ContentModulemdObsoletesApi.md +28 -12
  8. data/docs/ContentModulemdsApi.md +28 -12
  9. data/docs/ContentPackagecategoriesApi.md +20 -8
  10. data/docs/ContentPackageenvironmentsApi.md +20 -8
  11. data/docs/ContentPackagegroupsApi.md +20 -8
  12. data/docs/ContentPackagelangpacksApi.md +20 -8
  13. data/docs/ContentPackagesApi.md +24 -8
  14. data/docs/ContentRepoMetadataFilesApi.md +20 -8
  15. data/docs/DistributionsRpmApi.md +72 -32
  16. data/docs/PublicationsRpmApi.md +40 -16
  17. data/docs/RemotesRpmApi.md +72 -32
  18. data/docs/RemotesUlnApi.md +72 -32
  19. data/docs/RepositoriesRpmApi.md +88 -40
  20. data/docs/RepositoriesRpmVersionsApi.md +20 -8
  21. data/docs/RpmCompsApi.md +2 -0
  22. data/docs/RpmCopyApi.md +8 -4
  23. data/docs/RpmPruneApi.md +8 -4
  24. data/lib/pulp_rpm_client/api/acs_rpm_api.rb +33 -0
  25. data/lib/pulp_rpm_client/api/content_advisories_api.rb +15 -0
  26. data/lib/pulp_rpm_client/api/content_distribution_trees_api.rb +12 -0
  27. data/lib/pulp_rpm_client/api/content_modulemd_defaults_api.rb +15 -0
  28. data/lib/pulp_rpm_client/api/content_modulemd_obsoletes_api.rb +15 -0
  29. data/lib/pulp_rpm_client/api/content_modulemds_api.rb +15 -0
  30. data/lib/pulp_rpm_client/api/content_packagecategories_api.rb +12 -0
  31. data/lib/pulp_rpm_client/api/content_packageenvironments_api.rb +12 -0
  32. data/lib/pulp_rpm_client/api/content_packagegroups_api.rb +12 -0
  33. data/lib/pulp_rpm_client/api/content_packagelangpacks_api.rb +12 -0
  34. data/lib/pulp_rpm_client/api/content_packages_api.rb +18 -0
  35. data/lib/pulp_rpm_client/api/content_repo_metadata_files_api.rb +12 -0
  36. data/lib/pulp_rpm_client/api/distributions_rpm_api.rb +36 -0
  37. data/lib/pulp_rpm_client/api/publications_rpm_api.rb +24 -0
  38. data/lib/pulp_rpm_client/api/remotes_rpm_api.rb +36 -0
  39. data/lib/pulp_rpm_client/api/remotes_uln_api.rb +36 -0
  40. data/lib/pulp_rpm_client/api/repositories_rpm_api.rb +42 -0
  41. data/lib/pulp_rpm_client/api/repositories_rpm_versions_api.rb +12 -0
  42. data/lib/pulp_rpm_client/api/rpm_comps_api.rb +3 -0
  43. data/lib/pulp_rpm_client/api/rpm_copy_api.rb +3 -0
  44. data/lib/pulp_rpm_client/api/rpm_prune_api.rb +3 -0
  45. data/lib/pulp_rpm_client/version.rb +1 -1
  46. data/spec/api/acs_rpm_api_spec.rb +11 -0
  47. data/spec/api/content_advisories_api_spec.rb +5 -0
  48. data/spec/api/content_distribution_trees_api_spec.rb +4 -0
  49. data/spec/api/content_modulemd_defaults_api_spec.rb +5 -0
  50. data/spec/api/content_modulemd_obsoletes_api_spec.rb +5 -0
  51. data/spec/api/content_modulemds_api_spec.rb +5 -0
  52. data/spec/api/content_packagecategories_api_spec.rb +4 -0
  53. data/spec/api/content_packageenvironments_api_spec.rb +4 -0
  54. data/spec/api/content_packagegroups_api_spec.rb +4 -0
  55. data/spec/api/content_packagelangpacks_api_spec.rb +4 -0
  56. data/spec/api/content_packages_api_spec.rb +6 -0
  57. data/spec/api/content_repo_metadata_files_api_spec.rb +4 -0
  58. data/spec/api/distributions_rpm_api_spec.rb +12 -0
  59. data/spec/api/publications_rpm_api_spec.rb +8 -0
  60. data/spec/api/remotes_rpm_api_spec.rb +12 -0
  61. data/spec/api/remotes_uln_api_spec.rb +12 -0
  62. data/spec/api/repositories_rpm_api_spec.rb +14 -0
  63. data/spec/api/repositories_rpm_versions_api_spec.rb +4 -0
  64. data/spec/api/rpm_comps_api_spec.rb +1 -0
  65. data/spec/api/rpm_copy_api_spec.rb +1 -0
  66. data/spec/api/rpm_prune_api_spec.rb +1 -0
  67. metadata +2 -2
@@ -23,6 +23,7 @@ module PulpRpmClient
23
23
  # Trigger an asynchronous task to delete a repository version.
24
24
  # @param rpm_rpm_repository_version_href [String]
25
25
  # @param [Hash] opts the optional parameters
26
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
26
27
  # @return [AsyncOperationResponse]
27
28
  def delete(rpm_rpm_repository_version_href, opts = {})
28
29
  data, _status_code, _headers = delete_with_http_info(rpm_rpm_repository_version_href, opts)
@@ -33,6 +34,7 @@ module PulpRpmClient
33
34
  # Trigger an asynchronous task to delete a repository version.
34
35
  # @param rpm_rpm_repository_version_href [String]
35
36
  # @param [Hash] opts the optional parameters
37
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
36
38
  # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
37
39
  def delete_with_http_info(rpm_rpm_repository_version_href, opts = {})
38
40
  if @api_client.config.debugging
@@ -52,6 +54,7 @@ module PulpRpmClient
52
54
  header_params = opts[:header_params] || {}
53
55
  # HTTP header 'Accept' (if needed)
54
56
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
57
+ header_params[:'X-Task-Diagnostics'] = @api_client.build_collection_param(opts[:'x_task_diagnostics'], :csv) if !opts[:'x_task_diagnostics'].nil?
55
58
 
56
59
  # form parameters
57
60
  form_params = opts[:form_params] || {}
@@ -86,6 +89,7 @@ module PulpRpmClient
86
89
  # RpmRepositoryVersion represents a single rpm repository version.
87
90
  # @param rpm_rpm_repository_href [String]
88
91
  # @param [Hash] opts the optional parameters
92
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
89
93
  # @option opts [String] :content Content Unit referenced by HREF/PRN
90
94
  # @option opts [Array<String>] :content__in Multiple values may be separated by commas.
91
95
  # @option opts [Integer] :limit Number of results to return per page.
@@ -119,6 +123,7 @@ module PulpRpmClient
119
123
  # RpmRepositoryVersion represents a single rpm repository version.
120
124
  # @param rpm_rpm_repository_href [String]
121
125
  # @param [Hash] opts the optional parameters
126
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
122
127
  # @option opts [String] :content Content Unit referenced by HREF/PRN
123
128
  # @option opts [Array<String>] :content__in Multiple values may be separated by commas.
124
129
  # @option opts [Integer] :limit Number of results to return per page.
@@ -188,6 +193,7 @@ module PulpRpmClient
188
193
  header_params = opts[:header_params] || {}
189
194
  # HTTP header 'Accept' (if needed)
190
195
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
196
+ header_params[:'X-Task-Diagnostics'] = @api_client.build_collection_param(opts[:'x_task_diagnostics'], :csv) if !opts[:'x_task_diagnostics'].nil?
191
197
 
192
198
  # form parameters
193
199
  form_params = opts[:form_params] || {}
@@ -222,6 +228,7 @@ module PulpRpmClient
222
228
  # RpmRepositoryVersion represents a single rpm repository version.
223
229
  # @param rpm_rpm_repository_version_href [String]
224
230
  # @param [Hash] opts the optional parameters
231
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
225
232
  # @option opts [Array<String>] :fields A list of fields to include in the response.
226
233
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
227
234
  # @return [RepositoryVersionResponse]
@@ -234,6 +241,7 @@ module PulpRpmClient
234
241
  # RpmRepositoryVersion represents a single rpm repository version.
235
242
  # @param rpm_rpm_repository_version_href [String]
236
243
  # @param [Hash] opts the optional parameters
244
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
237
245
  # @option opts [Array<String>] :fields A list of fields to include in the response.
238
246
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
239
247
  # @return [Array<(RepositoryVersionResponse, Integer, Hash)>] RepositoryVersionResponse data, response status code and response headers
@@ -257,6 +265,7 @@ module PulpRpmClient
257
265
  header_params = opts[:header_params] || {}
258
266
  # HTTP header 'Accept' (if needed)
259
267
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
268
+ header_params[:'X-Task-Diagnostics'] = @api_client.build_collection_param(opts[:'x_task_diagnostics'], :csv) if !opts[:'x_task_diagnostics'].nil?
260
269
 
261
270
  # form parameters
262
271
  form_params = opts[:form_params] || {}
@@ -291,6 +300,7 @@ module PulpRpmClient
291
300
  # @param rpm_rpm_repository_version_href [String]
292
301
  # @param repair [Repair]
293
302
  # @param [Hash] opts the optional parameters
303
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
294
304
  # @return [AsyncOperationResponse]
295
305
  def repair(rpm_rpm_repository_version_href, repair, opts = {})
296
306
  data, _status_code, _headers = repair_with_http_info(rpm_rpm_repository_version_href, repair, opts)
@@ -301,6 +311,7 @@ module PulpRpmClient
301
311
  # @param rpm_rpm_repository_version_href [String]
302
312
  # @param repair [Repair]
303
313
  # @param [Hash] opts the optional parameters
314
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
304
315
  # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
305
316
  def repair_with_http_info(rpm_rpm_repository_version_href, repair, opts = {})
306
317
  if @api_client.config.debugging
@@ -329,6 +340,7 @@ module PulpRpmClient
329
340
  if !content_type.nil?
330
341
  header_params['Content-Type'] = content_type
331
342
  end
343
+ header_params[:'X-Task-Diagnostics'] = @api_client.build_collection_param(opts[:'x_task_diagnostics'], :csv) if !opts[:'x_task_diagnostics'].nil?
332
344
 
333
345
  # form parameters
334
346
  form_params = opts[:form_params] || {}
@@ -23,6 +23,7 @@ module PulpRpmClient
23
23
  # Trigger an asynchronous task to upload a comps.xml file.
24
24
  # @param file [File] Full path of a comps.xml file that may be parsed into comps.xml Content units.
25
25
  # @param [Hash] opts the optional parameters
26
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
26
27
  # @option opts [String] :repository URI of an RPM repository the comps.xml content units should be associated to.
27
28
  # @option opts [Boolean] :replace If true, incoming comps.xml replaces existing comps-related ContentUnits in the specified repository.
28
29
  # @return [AsyncOperationResponse]
@@ -35,6 +36,7 @@ module PulpRpmClient
35
36
  # Trigger an asynchronous task to upload a comps.xml file.
36
37
  # @param file [File] Full path of a comps.xml file that may be parsed into comps.xml Content units.
37
38
  # @param [Hash] opts the optional parameters
39
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
38
40
  # @option opts [String] :repository URI of an RPM repository the comps.xml content units should be associated to.
39
41
  # @option opts [Boolean] :replace If true, incoming comps.xml replaces existing comps-related ContentUnits in the specified repository.
40
42
  # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
@@ -61,6 +63,7 @@ module PulpRpmClient
61
63
  if !content_type.nil?
62
64
  header_params['Content-Type'] = content_type
63
65
  end
66
+ header_params[:'X-Task-Diagnostics'] = @api_client.build_collection_param(opts[:'x_task_diagnostics'], :csv) if !opts[:'x_task_diagnostics'].nil?
64
67
 
65
68
  # form parameters
66
69
  form_params = opts[:form_params] || {}
@@ -23,6 +23,7 @@ module PulpRpmClient
23
23
  # Trigger an asynchronous task to copy RPM contentfrom one repository into another, creating a newrepository version.
24
24
  # @param copy [Copy]
25
25
  # @param [Hash] opts the optional parameters
26
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
26
27
  # @return [AsyncOperationResponse]
27
28
  def copy_content(copy, opts = {})
28
29
  data, _status_code, _headers = copy_content_with_http_info(copy, opts)
@@ -33,6 +34,7 @@ module PulpRpmClient
33
34
  # Trigger an asynchronous task to copy RPM contentfrom one repository into another, creating a newrepository version.
34
35
  # @param copy [Copy]
35
36
  # @param [Hash] opts the optional parameters
37
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
36
38
  # @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
37
39
  def copy_content_with_http_info(copy, opts = {})
38
40
  if @api_client.config.debugging
@@ -57,6 +59,7 @@ module PulpRpmClient
57
59
  if !content_type.nil?
58
60
  header_params['Content-Type'] = content_type
59
61
  end
62
+ header_params[:'X-Task-Diagnostics'] = @api_client.build_collection_param(opts[:'x_task_diagnostics'], :csv) if !opts[:'x_task_diagnostics'].nil?
60
63
 
61
64
  # form parameters
62
65
  form_params = opts[:form_params] || {}
@@ -22,6 +22,7 @@ module PulpRpmClient
22
22
  # Trigger an asynchronous old-Package-prune operation.
23
23
  # @param prune_packages [PrunePackages]
24
24
  # @param [Hash] opts the optional parameters
25
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
25
26
  # @return [TaskGroupOperationResponse]
26
27
  def prune_packages(prune_packages, opts = {})
27
28
  data, _status_code, _headers = prune_packages_with_http_info(prune_packages, opts)
@@ -31,6 +32,7 @@ module PulpRpmClient
31
32
  # Trigger an asynchronous old-Package-prune operation.
32
33
  # @param prune_packages [PrunePackages]
33
34
  # @param [Hash] opts the optional parameters
35
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
34
36
  # @return [Array<(TaskGroupOperationResponse, Integer, Hash)>] TaskGroupOperationResponse data, response status code and response headers
35
37
  def prune_packages_with_http_info(prune_packages, opts = {})
36
38
  if @api_client.config.debugging
@@ -55,6 +57,7 @@ module PulpRpmClient
55
57
  if !content_type.nil?
56
58
  header_params['Content-Type'] = content_type
57
59
  end
60
+ header_params[:'X-Task-Diagnostics'] = @api_client.build_collection_param(opts[:'x_task_diagnostics'], :csv) if !opts[:'x_task_diagnostics'].nil?
58
61
 
59
62
  # form parameters
60
63
  form_params = opts[:form_params] || {}
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module PulpRpmClient
14
- VERSION = '3.31.0'
14
+ VERSION = '3.31.1'
15
15
  end
@@ -38,6 +38,7 @@ describe 'AcsRpmApi' do
38
38
  # @param rpm_rpm_alternate_content_source_href
39
39
  # @param nested_role
40
40
  # @param [Hash] opts the optional parameters
41
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
41
42
  # @return [NestedRoleResponse]
42
43
  describe 'add_role test' do
43
44
  it 'should work' do
@@ -50,6 +51,7 @@ describe 'AcsRpmApi' do
50
51
  # ViewSet for ACS.
51
52
  # @param rpm_rpm_alternate_content_source
52
53
  # @param [Hash] opts the optional parameters
54
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
53
55
  # @return [RpmRpmAlternateContentSourceResponse]
54
56
  describe 'create test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'AcsRpmApi' do
62
64
  # Trigger an asynchronous delete ACS task
63
65
  # @param rpm_rpm_alternate_content_source_href
64
66
  # @param [Hash] opts the optional parameters
67
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
68
  # @return [AsyncOperationResponse]
66
69
  describe 'delete test' do
67
70
  it 'should work' do
@@ -73,6 +76,7 @@ describe 'AcsRpmApi' do
73
76
  # List rpm alternate content sources
74
77
  # ViewSet for ACS.
75
78
  # @param [Hash] opts the optional parameters
79
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
76
80
  # @option opts [Integer] :limit Number of results to return per page.
77
81
  # @option opts [String] :name Filter results where name matches value
78
82
  # @option opts [String] :name__contains Filter results where name contains value
@@ -103,6 +107,7 @@ describe 'AcsRpmApi' do
103
107
  # List roles assigned to this object.
104
108
  # @param rpm_rpm_alternate_content_source_href
105
109
  # @param [Hash] opts the optional parameters
110
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
106
111
  # @option opts [Array<String>] :fields A list of fields to include in the response.
107
112
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
108
113
  # @return [ObjectRolesResponse]
@@ -117,6 +122,7 @@ describe 'AcsRpmApi' do
117
122
  # List permissions available to the current user on this object.
118
123
  # @param rpm_rpm_alternate_content_source_href
119
124
  # @param [Hash] opts the optional parameters
125
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
120
126
  # @option opts [Array<String>] :fields A list of fields to include in the response.
121
127
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
122
128
  # @return [MyPermissionsResponse]
@@ -132,6 +138,7 @@ describe 'AcsRpmApi' do
132
138
  # @param rpm_rpm_alternate_content_source_href
133
139
  # @param patchedrpm_rpm_alternate_content_source
134
140
  # @param [Hash] opts the optional parameters
141
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
135
142
  # @return [AsyncOperationResponse]
136
143
  describe 'partial_update test' do
137
144
  it 'should work' do
@@ -144,6 +151,7 @@ describe 'AcsRpmApi' do
144
151
  # ViewSet for ACS.
145
152
  # @param rpm_rpm_alternate_content_source_href
146
153
  # @param [Hash] opts the optional parameters
154
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
147
155
  # @option opts [Array<String>] :fields A list of fields to include in the response.
148
156
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
149
157
  # @return [RpmRpmAlternateContentSourceResponse]
@@ -157,6 +165,7 @@ describe 'AcsRpmApi' do
157
165
  # Trigger an asynchronous task to create Alternate Content Source content.
158
166
  # @param rpm_rpm_alternate_content_source_href
159
167
  # @param [Hash] opts the optional parameters
168
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
160
169
  # @return [TaskGroupOperationResponse]
161
170
  describe 'refresh test' do
162
171
  it 'should work' do
@@ -170,6 +179,7 @@ describe 'AcsRpmApi' do
170
179
  # @param rpm_rpm_alternate_content_source_href
171
180
  # @param nested_role
172
181
  # @param [Hash] opts the optional parameters
182
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
173
183
  # @return [NestedRoleResponse]
174
184
  describe 'remove_role test' do
175
185
  it 'should work' do
@@ -183,6 +193,7 @@ describe 'AcsRpmApi' do
183
193
  # @param rpm_rpm_alternate_content_source_href
184
194
  # @param rpm_rpm_alternate_content_source
185
195
  # @param [Hash] opts the optional parameters
196
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
186
197
  # @return [AsyncOperationResponse]
187
198
  describe 'update test' do
188
199
  it 'should work' do
@@ -36,6 +36,7 @@ describe 'ContentAdvisoriesApi' do
36
36
  # Create an update record
37
37
  # Trigger an asynchronous task to create content,optionally create new repository version.
38
38
  # @param [Hash] opts the optional parameters
39
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
39
40
  # @option opts [String] :repository A URI of a repository the new content unit should be associated with.
40
41
  # @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
41
42
  # @option opts [File] :file An uploaded file that may be turned into the content unit.
@@ -52,6 +53,7 @@ describe 'ContentAdvisoriesApi' do
52
53
  # List update records
53
54
  # A ViewSet for UpdateRecord. Define endpoint name which will appear in the API endpoint for this content type. For example:: http://pulp.example.com/pulp/api/v3/content/rpm/advisories/ Also specify queryset and serializer for UpdateRecord.
54
55
  # @param [Hash] opts the optional parameters
56
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
55
57
  # @option opts [String] :id Filter results where id matches value
56
58
  # @option opts [Array<String>] :id__in Filter results where id is in a comma-separated list of values
57
59
  # @option opts [Integer] :limit Number of results to return per page.
@@ -89,6 +91,7 @@ describe 'ContentAdvisoriesApi' do
89
91
  # A ViewSet for UpdateRecord. Define endpoint name which will appear in the API endpoint for this content type. For example:: http://pulp.example.com/pulp/api/v3/content/rpm/advisories/ Also specify queryset and serializer for UpdateRecord.
90
92
  # @param rpm_update_record_href
91
93
  # @param [Hash] opts the optional parameters
94
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
92
95
  # @option opts [Array<String>] :fields A list of fields to include in the response.
93
96
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
94
97
  # @return [RpmUpdateRecordResponse]
@@ -104,6 +107,7 @@ describe 'ContentAdvisoriesApi' do
104
107
  # @param rpm_update_record_href
105
108
  # @param set_label
106
109
  # @param [Hash] opts the optional parameters
110
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
107
111
  # @return [SetLabelResponse]
108
112
  describe 'set_label test' do
109
113
  it 'should work' do
@@ -117,6 +121,7 @@ describe 'ContentAdvisoriesApi' do
117
121
  # @param rpm_update_record_href
118
122
  # @param unset_label
119
123
  # @param [Hash] opts the optional parameters
124
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
120
125
  # @return [UnsetLabelResponse]
121
126
  describe 'unset_label test' do
122
127
  it 'should work' do
@@ -36,6 +36,7 @@ describe 'ContentDistributionTreesApi' do
36
36
  # List distribution trees
37
37
  # Distribution Tree Viewset.
38
38
  # @param [Hash] opts the optional parameters
39
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
39
40
  # @option opts [Integer] :limit Number of results to return per page.
40
41
  # @option opts [Integer] :offset The initial index from which to return the results.
41
42
  # @option opts [Array<String>] :ordering Ordering * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
@@ -62,6 +63,7 @@ describe 'ContentDistributionTreesApi' do
62
63
  # Distribution Tree Viewset.
63
64
  # @param rpm_distribution_tree_href
64
65
  # @param [Hash] opts the optional parameters
66
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
67
  # @option opts [Array<String>] :fields A list of fields to include in the response.
66
68
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
67
69
  # @return [RpmDistributionTreeResponse]
@@ -77,6 +79,7 @@ describe 'ContentDistributionTreesApi' do
77
79
  # @param rpm_distribution_tree_href
78
80
  # @param set_label
79
81
  # @param [Hash] opts the optional parameters
82
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
80
83
  # @return [SetLabelResponse]
81
84
  describe 'set_label test' do
82
85
  it 'should work' do
@@ -90,6 +93,7 @@ describe 'ContentDistributionTreesApi' do
90
93
  # @param rpm_distribution_tree_href
91
94
  # @param unset_label
92
95
  # @param [Hash] opts the optional parameters
96
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
93
97
  # @return [UnsetLabelResponse]
94
98
  describe 'unset_label test' do
95
99
  it 'should work' do
@@ -37,6 +37,7 @@ describe 'ContentModulemdDefaultsApi' do
37
37
  # Trigger an asynchronous task to create content,optionally create new repository version.
38
38
  # @param rpm_modulemd_defaults
39
39
  # @param [Hash] opts the optional parameters
40
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
40
41
  # @return [AsyncOperationResponse]
41
42
  describe 'create test' do
42
43
  it 'should work' do
@@ -48,6 +49,7 @@ describe 'ContentModulemdDefaultsApi' do
48
49
  # List modulemd defaultss
49
50
  # ViewSet for Modulemd.
50
51
  # @param [Hash] opts the optional parameters
52
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
51
53
  # @option opts [Integer] :limit Number of results to return per page.
52
54
  # @option opts [String] :_module Filter results where module matches value
53
55
  # @option opts [Array<String>] :module__in Filter results where module is in a comma-separated list of values
@@ -79,6 +81,7 @@ describe 'ContentModulemdDefaultsApi' do
79
81
  # ViewSet for Modulemd.
80
82
  # @param rpm_modulemd_defaults_href
81
83
  # @param [Hash] opts the optional parameters
84
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
82
85
  # @option opts [Array<String>] :fields A list of fields to include in the response.
83
86
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
84
87
  # @return [RpmModulemdDefaultsResponse]
@@ -94,6 +97,7 @@ describe 'ContentModulemdDefaultsApi' do
94
97
  # @param rpm_modulemd_defaults_href
95
98
  # @param set_label
96
99
  # @param [Hash] opts the optional parameters
100
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
97
101
  # @return [SetLabelResponse]
98
102
  describe 'set_label test' do
99
103
  it 'should work' do
@@ -107,6 +111,7 @@ describe 'ContentModulemdDefaultsApi' do
107
111
  # @param rpm_modulemd_defaults_href
108
112
  # @param unset_label
109
113
  # @param [Hash] opts the optional parameters
114
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
110
115
  # @return [UnsetLabelResponse]
111
116
  describe 'unset_label test' do
112
117
  it 'should work' do
@@ -37,6 +37,7 @@ describe 'ContentModulemdObsoletesApi' do
37
37
  # Trigger an asynchronous task to create content,optionally create new repository version.
38
38
  # @param rpm_modulemd_obsolete
39
39
  # @param [Hash] opts the optional parameters
40
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
40
41
  # @return [AsyncOperationResponse]
41
42
  describe 'create test' do
42
43
  it 'should work' do
@@ -48,6 +49,7 @@ describe 'ContentModulemdObsoletesApi' do
48
49
  # List modulemd obsoletes
49
50
  # ViewSet for Modulemd.
50
51
  # @param [Hash] opts the optional parameters
52
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
51
53
  # @option opts [Integer] :limit Number of results to return per page.
52
54
  # @option opts [Integer] :offset The initial index from which to return the results.
53
55
  # @option opts [Array<String>] :ordering Ordering * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
@@ -74,6 +76,7 @@ describe 'ContentModulemdObsoletesApi' do
74
76
  # ViewSet for Modulemd.
75
77
  # @param rpm_modulemd_obsolete_href
76
78
  # @param [Hash] opts the optional parameters
79
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
77
80
  # @option opts [Array<String>] :fields A list of fields to include in the response.
78
81
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
79
82
  # @return [RpmModulemdObsoleteResponse]
@@ -89,6 +92,7 @@ describe 'ContentModulemdObsoletesApi' do
89
92
  # @param rpm_modulemd_obsolete_href
90
93
  # @param set_label
91
94
  # @param [Hash] opts the optional parameters
95
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
92
96
  # @return [SetLabelResponse]
93
97
  describe 'set_label test' do
94
98
  it 'should work' do
@@ -102,6 +106,7 @@ describe 'ContentModulemdObsoletesApi' do
102
106
  # @param rpm_modulemd_obsolete_href
103
107
  # @param unset_label
104
108
  # @param [Hash] opts the optional parameters
109
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
105
110
  # @return [UnsetLabelResponse]
106
111
  describe 'unset_label test' do
107
112
  it 'should work' do
@@ -37,6 +37,7 @@ describe 'ContentModulemdsApi' do
37
37
  # Trigger an asynchronous task to create content,optionally create new repository version.
38
38
  # @param rpm_modulemd
39
39
  # @param [Hash] opts the optional parameters
40
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
40
41
  # @return [AsyncOperationResponse]
41
42
  describe 'create test' do
42
43
  it 'should work' do
@@ -48,6 +49,7 @@ describe 'ContentModulemdsApi' do
48
49
  # List modulemds
49
50
  # ViewSet for Modulemd.
50
51
  # @param [Hash] opts the optional parameters
52
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
51
53
  # @option opts [String] :arch Filter results where arch matches value
52
54
  # @option opts [Array<String>] :arch__in Filter results where arch is in a comma-separated list of values
53
55
  # @option opts [String] :context Filter results where context matches value
@@ -85,6 +87,7 @@ describe 'ContentModulemdsApi' do
85
87
  # ViewSet for Modulemd.
86
88
  # @param rpm_modulemd_href
87
89
  # @param [Hash] opts the optional parameters
90
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
88
91
  # @option opts [Array<String>] :fields A list of fields to include in the response.
89
92
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
90
93
  # @return [RpmModulemdResponse]
@@ -100,6 +103,7 @@ describe 'ContentModulemdsApi' do
100
103
  # @param rpm_modulemd_href
101
104
  # @param set_label
102
105
  # @param [Hash] opts the optional parameters
106
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
103
107
  # @return [SetLabelResponse]
104
108
  describe 'set_label test' do
105
109
  it 'should work' do
@@ -113,6 +117,7 @@ describe 'ContentModulemdsApi' do
113
117
  # @param rpm_modulemd_href
114
118
  # @param unset_label
115
119
  # @param [Hash] opts the optional parameters
120
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
116
121
  # @return [UnsetLabelResponse]
117
122
  describe 'unset_label test' do
118
123
  it 'should work' do
@@ -36,6 +36,7 @@ describe 'ContentPackagecategoriesApi' do
36
36
  # List package categorys
37
37
  # PackageCategory ViewSet.
38
38
  # @param [Hash] opts the optional parameters
39
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
39
40
  # @option opts [Integer] :limit Number of results to return per page.
40
41
  # @option opts [Integer] :offset The initial index from which to return the results.
41
42
  # @option opts [Array<String>] :ordering Ordering * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
@@ -62,6 +63,7 @@ describe 'ContentPackagecategoriesApi' do
62
63
  # PackageCategory ViewSet.
63
64
  # @param rpm_package_category_href
64
65
  # @param [Hash] opts the optional parameters
66
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
67
  # @option opts [Array<String>] :fields A list of fields to include in the response.
66
68
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
67
69
  # @return [RpmPackageCategoryResponse]
@@ -77,6 +79,7 @@ describe 'ContentPackagecategoriesApi' do
77
79
  # @param rpm_package_category_href
78
80
  # @param set_label
79
81
  # @param [Hash] opts the optional parameters
82
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
80
83
  # @return [SetLabelResponse]
81
84
  describe 'set_label test' do
82
85
  it 'should work' do
@@ -90,6 +93,7 @@ describe 'ContentPackagecategoriesApi' do
90
93
  # @param rpm_package_category_href
91
94
  # @param unset_label
92
95
  # @param [Hash] opts the optional parameters
96
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
93
97
  # @return [UnsetLabelResponse]
94
98
  describe 'unset_label test' do
95
99
  it 'should work' do
@@ -36,6 +36,7 @@ describe 'ContentPackageenvironmentsApi' do
36
36
  # List package environments
37
37
  # PackageEnvironment ViewSet.
38
38
  # @param [Hash] opts the optional parameters
39
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
39
40
  # @option opts [Integer] :limit Number of results to return per page.
40
41
  # @option opts [Integer] :offset The initial index from which to return the results.
41
42
  # @option opts [Array<String>] :ordering Ordering * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
@@ -62,6 +63,7 @@ describe 'ContentPackageenvironmentsApi' do
62
63
  # PackageEnvironment ViewSet.
63
64
  # @param rpm_package_environment_href
64
65
  # @param [Hash] opts the optional parameters
66
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
67
  # @option opts [Array<String>] :fields A list of fields to include in the response.
66
68
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
67
69
  # @return [RpmPackageEnvironmentResponse]
@@ -77,6 +79,7 @@ describe 'ContentPackageenvironmentsApi' do
77
79
  # @param rpm_package_environment_href
78
80
  # @param set_label
79
81
  # @param [Hash] opts the optional parameters
82
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
80
83
  # @return [SetLabelResponse]
81
84
  describe 'set_label test' do
82
85
  it 'should work' do
@@ -90,6 +93,7 @@ describe 'ContentPackageenvironmentsApi' do
90
93
  # @param rpm_package_environment_href
91
94
  # @param unset_label
92
95
  # @param [Hash] opts the optional parameters
96
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
93
97
  # @return [UnsetLabelResponse]
94
98
  describe 'unset_label test' do
95
99
  it 'should work' do
@@ -36,6 +36,7 @@ describe 'ContentPackagegroupsApi' do
36
36
  # List package groups
37
37
  # PackageGroup ViewSet.
38
38
  # @param [Hash] opts the optional parameters
39
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
39
40
  # @option opts [Integer] :limit Number of results to return per page.
40
41
  # @option opts [Integer] :offset The initial index from which to return the results.
41
42
  # @option opts [Array<String>] :ordering Ordering * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
@@ -62,6 +63,7 @@ describe 'ContentPackagegroupsApi' do
62
63
  # PackageGroup ViewSet.
63
64
  # @param rpm_package_group_href
64
65
  # @param [Hash] opts the optional parameters
66
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
67
  # @option opts [Array<String>] :fields A list of fields to include in the response.
66
68
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
67
69
  # @return [RpmPackageGroupResponse]
@@ -77,6 +79,7 @@ describe 'ContentPackagegroupsApi' do
77
79
  # @param rpm_package_group_href
78
80
  # @param set_label
79
81
  # @param [Hash] opts the optional parameters
82
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
80
83
  # @return [SetLabelResponse]
81
84
  describe 'set_label test' do
82
85
  it 'should work' do
@@ -90,6 +93,7 @@ describe 'ContentPackagegroupsApi' do
90
93
  # @param rpm_package_group_href
91
94
  # @param unset_label
92
95
  # @param [Hash] opts the optional parameters
96
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
93
97
  # @return [UnsetLabelResponse]
94
98
  describe 'unset_label test' do
95
99
  it 'should work' do
@@ -36,6 +36,7 @@ describe 'ContentPackagelangpacksApi' do
36
36
  # List package langpackss
37
37
  # PackageLangpacks ViewSet.
38
38
  # @param [Hash] opts the optional parameters
39
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
39
40
  # @option opts [Integer] :limit Number of results to return per page.
40
41
  # @option opts [Integer] :offset The initial index from which to return the results.
41
42
  # @option opts [Array<String>] :ordering Ordering * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
@@ -62,6 +63,7 @@ describe 'ContentPackagelangpacksApi' do
62
63
  # PackageLangpacks ViewSet.
63
64
  # @param rpm_package_langpacks_href
64
65
  # @param [Hash] opts the optional parameters
66
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
67
  # @option opts [Array<String>] :fields A list of fields to include in the response.
66
68
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
67
69
  # @return [RpmPackageLangpacksResponse]
@@ -77,6 +79,7 @@ describe 'ContentPackagelangpacksApi' do
77
79
  # @param rpm_package_langpacks_href
78
80
  # @param set_label
79
81
  # @param [Hash] opts the optional parameters
82
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
80
83
  # @return [SetLabelResponse]
81
84
  describe 'set_label test' do
82
85
  it 'should work' do
@@ -90,6 +93,7 @@ describe 'ContentPackagelangpacksApi' do
90
93
  # @param rpm_package_langpacks_href
91
94
  # @param unset_label
92
95
  # @param [Hash] opts the optional parameters
96
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
93
97
  # @return [UnsetLabelResponse]
94
98
  describe 'unset_label test' do
95
99
  it 'should work' do
@@ -36,6 +36,7 @@ describe 'ContentPackagesApi' do
36
36
  # Create a package
37
37
  # Trigger an asynchronous task to create an RPM package,optionally create new repository version.
38
38
  # @param [Hash] opts the optional parameters
39
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
39
40
  # @option opts [String] :repository A URI of a repository the new content unit should be associated with.
40
41
  # @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
41
42
  # @option opts [String] :artifact Artifact file representing the physical content
@@ -54,6 +55,7 @@ describe 'ContentPackagesApi' do
54
55
  # List packages
55
56
  # A ViewSet for Package. Define endpoint name which will appear in the API endpoint for this content type. For example:: http://pulp.example.com/pulp/api/v3/content/rpm/packages/ Also specify queryset and serializer for Package.
56
57
  # @param [Hash] opts the optional parameters
58
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
57
59
  # @option opts [String] :arch Filter results where arch matches value
58
60
  # @option opts [String] :arch__contains Filter results where arch contains value
59
61
  # @option opts [Array<String>] :arch__in Filter results where arch is in a comma-separated list of values
@@ -108,6 +110,7 @@ describe 'ContentPackagesApi' do
108
110
  # A ViewSet for Package. Define endpoint name which will appear in the API endpoint for this content type. For example:: http://pulp.example.com/pulp/api/v3/content/rpm/packages/ Also specify queryset and serializer for Package.
109
111
  # @param rpm_package_href
110
112
  # @param [Hash] opts the optional parameters
113
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
111
114
  # @option opts [Array<String>] :fields A list of fields to include in the response.
112
115
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
113
116
  # @return [RpmPackageResponse]
@@ -123,6 +126,7 @@ describe 'ContentPackagesApi' do
123
126
  # @param rpm_package_href
124
127
  # @param set_label
125
128
  # @param [Hash] opts the optional parameters
129
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
126
130
  # @return [SetLabelResponse]
127
131
  describe 'set_label test' do
128
132
  it 'should work' do
@@ -136,6 +140,7 @@ describe 'ContentPackagesApi' do
136
140
  # @param rpm_package_href
137
141
  # @param unset_label
138
142
  # @param [Hash] opts the optional parameters
143
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
139
144
  # @return [UnsetLabelResponse]
140
145
  describe 'unset_label test' do
141
146
  it 'should work' do
@@ -147,6 +152,7 @@ describe 'ContentPackagesApi' do
147
152
  # Upload an RPM package synchronously.
148
153
  # Synchronously upload an RPM package.
149
154
  # @param [Hash] opts the optional parameters
155
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
150
156
  # @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
151
157
  # @option opts [String] :artifact Artifact file representing the physical content
152
158
  # @option opts [File] :file An uploaded file that may be turned into the content unit.