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
@@ -38,6 +38,7 @@ describe 'GroupsUsersApi' do
38
38
  # @param group_href
39
39
  # @param group_user
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 [GroupUserResponse]
42
43
  describe 'create test' do
43
44
  it 'should work' do
@@ -50,6 +51,7 @@ describe 'GroupsUsersApi' do
50
51
  # Remove a user from a group.
51
52
  # @param groups_user_href
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 [nil]
54
56
  describe 'delete test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'GroupsUsersApi' do
62
64
  # List group users.
63
65
  # @param group_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
  # @option opts [Integer] :limit Number of results to return per page.
66
69
  # @option opts [Integer] :offset The initial index from which to return the results.
67
70
  # @option opts [Array<String>] :fields A list of fields to include in the response.
@@ -37,6 +37,7 @@ describe 'ImportersPulpApi' do
37
37
  # ViewSet for PulpImporters.
38
38
  # @param pulp_importer
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 [PulpImporterResponse]
41
42
  describe 'create test' do
42
43
  it 'should work' do
@@ -49,6 +50,7 @@ describe 'ImportersPulpApi' do
49
50
  # ViewSet for PulpImporters.
50
51
  # @param pulp_importer_href
51
52
  # @param [Hash] opts the optional parameters
53
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
52
54
  # @return [nil]
53
55
  describe 'delete test' do
54
56
  it 'should work' do
@@ -60,6 +62,7 @@ describe 'ImportersPulpApi' do
60
62
  # List pulp importers
61
63
  # ViewSet for PulpImporters.
62
64
  # @param [Hash] opts the optional parameters
65
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
63
66
  # @option opts [Integer] :limit Number of results to return per page.
64
67
  # @option opts [String] :name Filter results where name matches value
65
68
  # @option opts [String] :name__contains Filter results where name contains value
@@ -91,6 +94,7 @@ describe 'ImportersPulpApi' do
91
94
  # @param pulp_importer_href
92
95
  # @param patched_pulp_importer
93
96
  # @param [Hash] opts the optional parameters
97
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
94
98
  # @return [PulpImporterResponse]
95
99
  describe 'partial_update test' do
96
100
  it 'should work' do
@@ -103,6 +107,7 @@ describe 'ImportersPulpApi' do
103
107
  # ViewSet for PulpImporters.
104
108
  # @param pulp_importer_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 [PulpImporterResponse]
@@ -118,6 +123,7 @@ describe 'ImportersPulpApi' do
118
123
  # @param pulp_importer_href
119
124
  # @param pulp_importer
120
125
  # @param [Hash] opts the optional parameters
126
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
121
127
  # @return [PulpImporterResponse]
122
128
  describe 'update test' do
123
129
  it 'should work' do
@@ -37,6 +37,7 @@ describe 'ImportersPulpImportCheckApi' do
37
37
  # Evaluates validity of proposed PulpImport parameters &#39;toc&#39;, &#39;path&#39;, and &#39;repo_mapping&#39;. * Checks that toc, path are in ALLOWED_IMPORT_PATHS * if ALLOWED: * Checks that toc, path exist and are readable * If toc specified, checks that containing dir is writeable * Checks that repo_mapping is valid JSON
38
38
  # @param pulp_import_check
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 [PulpImportCheckResponse]
41
42
  describe 'pulp_import_check_post test' do
42
43
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'ImportersPulpImportsApi' do
38
38
  # @param pulp_importer_href
39
39
  # @param pulp_import
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 [TaskGroupOperationResponse]
42
43
  describe 'create test' do
43
44
  it 'should work' do
@@ -50,6 +51,7 @@ describe 'ImportersPulpImportsApi' do
50
51
  # ViewSet for PulpImports.
51
52
  # @param pulp_pulp_import_href
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 [nil]
54
56
  describe 'delete test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'ImportersPulpImportsApi' do
62
64
  # ViewSet for PulpImports.
63
65
  # @param pulp_importer_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
  # @option opts [Integer] :limit Number of results to return per page.
66
69
  # @option opts [Integer] :offset The initial index from which to return the results.
67
70
  # @option opts [Array<String>] :fields A list of fields to include in the response.
@@ -78,6 +81,7 @@ describe 'ImportersPulpImportsApi' do
78
81
  # ViewSet for PulpImports.
79
82
  # @param pulp_pulp_import_href
80
83
  # @param [Hash] opts the optional parameters
84
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
81
85
  # @option opts [Array<String>] :fields A list of fields to include in the response.
82
86
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
83
87
  # @return [ImportResponse]
@@ -36,6 +36,9 @@ describe 'LivezApi' do
36
36
  # Inspect liveness of Pulp&#39;s REST API.
37
37
  # Returns 200 OK when API is alive.
38
38
  # @param [Hash] opts the optional parameters
39
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
40
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
41
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
39
42
  # @return [nil]
40
43
  describe 'livez_read test' do
41
44
  it 'should work' do
@@ -34,6 +34,7 @@ describe 'LoginApi' do
34
34
 
35
35
  # unit tests for login
36
36
  # @param [Hash] opts the optional parameters
37
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
37
38
  # @return [LoginResponse]
38
39
  describe 'login test' do
39
40
  it 'should work' do
@@ -43,6 +44,9 @@ describe 'LoginApi' do
43
44
 
44
45
  # unit tests for login_read
45
46
  # @param [Hash] opts the optional parameters
47
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
48
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
49
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
46
50
  # @return [LoginResponse]
47
51
  describe 'login_read test' do
48
52
  it 'should work' do
@@ -52,6 +56,7 @@ describe 'LoginApi' do
52
56
 
53
57
  # unit tests for logout
54
58
  # @param [Hash] opts the optional parameters
59
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
55
60
  # @return [nil]
56
61
  describe 'logout test' do
57
62
  it 'should work' do
@@ -36,6 +36,7 @@ describe 'OrphansApi' do
36
36
  # Delete orphans
37
37
  # DEPRECATED! Trigger an asynchronous task that deletes all orphaned content and artifacts. Use the &#x60;POST /pulp/api/v3/orphans/cleanup/&#x60; call instead.
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
  # @return [AsyncOperationResponse]
40
41
  describe 'delete test' do
41
42
  it 'should work' do
@@ -36,6 +36,7 @@ describe 'OrphansCleanupApi' do
36
36
  # Trigger an asynchronous orphan cleanup operation.
37
37
  # @param orphans_cleanup
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
  # @return [AsyncOperationResponse]
40
41
  describe 'cleanup test' do
41
42
  it 'should work' do
@@ -36,6 +36,7 @@ describe 'PublicationsApi' do
36
36
  # List publications
37
37
  # A base class for any publication 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 [Boolean] :checkpoint Filter results where checkpoint matches value
40
41
  # @option opts [String] :content Content Unit referenced by HREF/PRN
41
42
  # @option opts [Array<String>] :content__in Multiple values may be separated by commas.
@@ -36,6 +36,7 @@ describe 'RemotesApi' do
36
36
  # List remotes
37
37
  # A customized named ModelViewSet that knows how to register itself with the Pulp API router. This viewset is discoverable by its name. \&quot;Normal\&quot; Django Models and Master/Detail models are supported by the &#x60;&#x60;register_with&#x60;&#x60; method. Attributes: lookup_field (str): The name of the field by which an object should be looked up, in addition to any parent lookups if this ViewSet is nested. Defaults to &#39;pk&#39; endpoint_name (str): The name of the final path segment that should identify the ViewSet&#39;s collection endpoint. nest_prefix (str): Optional prefix under which this ViewSet should be nested. This must correspond to the \&quot;parent_prefix\&quot; of a router with rest_framework_nested.NestedMixin. None indicates this ViewSet should not be nested. parent_lookup_kwargs (dict): Optional mapping of key names that would appear in self.kwargs to django model filter expressions that can be used with the corresponding value from self.kwargs, used only by a nested ViewSet to filter based on the parent object&#39;s identity. schema (DefaultSchema): The schema class to use by default in a 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 [String] :name Filter results where name matches value
41
42
  # @option opts [String] :name__contains Filter results where name contains value
@@ -37,6 +37,7 @@ describe 'RepairApi' do
37
37
  # Trigger an asynchronous task that checks for missing or corrupted artifacts, and attempts to redownload them.
38
38
  # @param repair
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 'post test' do
42
43
  it 'should work' do
@@ -36,6 +36,7 @@ describe 'RepositoriesApi' do
36
36
  # List repositories
37
37
  # Endpoint to list all repositories.
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] :latest_with_content Content Unit referenced by HREF/PRN
40
41
  # @option opts [Integer] :limit Number of results to return per page.
41
42
  # @option opts [String] :name Filter results where name matches value
@@ -38,6 +38,7 @@ describe 'RepositoriesOpenpgpKeyringApi' do
38
38
  # @param open_p_g_p_keyring_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 'RepositoriesOpenpgpKeyringApi' do
50
51
  # A ViewSet for an ordinary repository.
51
52
  # @param open_pgp_keyring
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 [OpenPGPKeyringResponse]
54
56
  describe 'create test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'RepositoriesOpenpgpKeyringApi' do
62
64
  # Trigger an asynchronous delete task
63
65
  # @param open_p_g_p_keyring_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 'RepositoriesOpenpgpKeyringApi' do
73
76
  # List open pgp keyrings
74
77
  # A ViewSet for an ordinary repository.
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 [String] :latest_with_content Content Unit referenced by HREF/PRN
77
81
  # @option opts [Integer] :limit Number of results to return per page.
78
82
  # @option opts [String] :name Filter results where name matches value
@@ -115,6 +119,7 @@ describe 'RepositoriesOpenpgpKeyringApi' do
115
119
  # List roles assigned to this object.
116
120
  # @param open_p_g_p_keyring_href
117
121
  # @param [Hash] opts the optional parameters
122
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
118
123
  # @option opts [Array<String>] :fields A list of fields to include in the response.
119
124
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
120
125
  # @return [ObjectRolesResponse]
@@ -130,6 +135,7 @@ describe 'RepositoriesOpenpgpKeyringApi' do
130
135
  # @param open_p_g_p_keyring_href
131
136
  # @param repository_add_remove_content
132
137
  # @param [Hash] opts the optional parameters
138
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
133
139
  # @return [AsyncOperationResponse]
134
140
  describe 'modify test' do
135
141
  it 'should work' do
@@ -142,6 +148,7 @@ describe 'RepositoriesOpenpgpKeyringApi' do
142
148
  # List permissions available to the current user on this object.
143
149
  # @param open_p_g_p_keyring_href
144
150
  # @param [Hash] opts the optional parameters
151
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
145
152
  # @option opts [Array<String>] :fields A list of fields to include in the response.
146
153
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
147
154
  # @return [MyPermissionsResponse]
@@ -157,6 +164,7 @@ describe 'RepositoriesOpenpgpKeyringApi' do
157
164
  # @param open_p_g_p_keyring_href
158
165
  # @param patched_open_pgp_keyring
159
166
  # @param [Hash] opts the optional parameters
167
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
160
168
  # @return [AsyncOperationResponse]
161
169
  describe 'partial_update test' do
162
170
  it 'should work' do
@@ -169,6 +177,7 @@ describe 'RepositoriesOpenpgpKeyringApi' do
169
177
  # A ViewSet for an ordinary repository.
170
178
  # @param open_p_g_p_keyring_href
171
179
  # @param [Hash] opts the optional parameters
180
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
172
181
  # @option opts [Array<String>] :fields A list of fields to include in the response.
173
182
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
174
183
  # @return [OpenPGPKeyringResponse]
@@ -184,6 +193,7 @@ describe 'RepositoriesOpenpgpKeyringApi' do
184
193
  # @param open_p_g_p_keyring_href
185
194
  # @param nested_role
186
195
  # @param [Hash] opts the optional parameters
196
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
187
197
  # @return [NestedRoleResponse]
188
198
  describe 'remove_role test' do
189
199
  it 'should work' do
@@ -197,6 +207,7 @@ describe 'RepositoriesOpenpgpKeyringApi' do
197
207
  # @param open_p_g_p_keyring_href
198
208
  # @param set_label
199
209
  # @param [Hash] opts the optional parameters
210
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
200
211
  # @return [SetLabelResponse]
201
212
  describe 'set_label test' do
202
213
  it 'should work' do
@@ -210,6 +221,7 @@ describe 'RepositoriesOpenpgpKeyringApi' do
210
221
  # @param open_p_g_p_keyring_href
211
222
  # @param unset_label
212
223
  # @param [Hash] opts the optional parameters
224
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
213
225
  # @return [UnsetLabelResponse]
214
226
  describe 'unset_label test' do
215
227
  it 'should work' do
@@ -223,6 +235,7 @@ describe 'RepositoriesOpenpgpKeyringApi' do
223
235
  # @param open_p_g_p_keyring_href
224
236
  # @param open_pgp_keyring
225
237
  # @param [Hash] opts the optional parameters
238
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
226
239
  # @return [AsyncOperationResponse]
227
240
  describe 'update test' do
228
241
  it 'should work' do
@@ -36,6 +36,7 @@ describe 'RepositoriesReclaimSpaceApi' do
36
36
  # Trigger an asynchronous space reclaim operation.
37
37
  # @param reclaim_space
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
  # @return [AsyncOperationResponse]
40
41
  describe 'reclaim test' do
41
42
  it 'should work' do
@@ -36,6 +36,7 @@ describe 'RepositoryVersionsApi' do
36
36
  # List repository versions
37
37
  # A mixin to hold the shared get_queryset logic used by RepositoryVersionViewSets.
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] :content Content Unit referenced by HREF/PRN
40
41
  # @option opts [Array<String>] :content__in Multiple values may be separated by commas.
41
42
  # @option opts [Integer] :limit Number of results to return per page.
@@ -37,6 +37,7 @@ describe 'RolesApi' do
37
37
  # ViewSet for Role.
38
38
  # @param role
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 [RoleResponse]
41
42
  describe 'create test' do
42
43
  it 'should work' do
@@ -49,6 +50,7 @@ describe 'RolesApi' do
49
50
  # ViewSet for Role.
50
51
  # @param role_href
51
52
  # @param [Hash] opts the optional parameters
53
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
52
54
  # @return [nil]
53
55
  describe 'delete test' do
54
56
  it 'should work' do
@@ -60,6 +62,7 @@ describe 'RolesApi' do
60
62
  # List roles
61
63
  # ViewSet for Role.
62
64
  # @param [Hash] opts the optional parameters
65
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
63
66
  # @option opts [Array<String>] :contains_permission Filter roles that have any of the permissions in the list.
64
67
  # @option opts [String] :description Filter results where description matches value
65
68
  # @option opts [String] :description__contains Filter results where description contains value
@@ -98,6 +101,7 @@ describe 'RolesApi' do
98
101
  # @param role_href
99
102
  # @param patched_role
100
103
  # @param [Hash] opts the optional parameters
104
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
101
105
  # @return [RoleResponse]
102
106
  describe 'partial_update test' do
103
107
  it 'should work' do
@@ -110,6 +114,7 @@ describe 'RolesApi' do
110
114
  # ViewSet for Role.
111
115
  # @param role_href
112
116
  # @param [Hash] opts the optional parameters
117
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
113
118
  # @option opts [Array<String>] :fields A list of fields to include in the response.
114
119
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
115
120
  # @return [RoleResponse]
@@ -125,6 +130,7 @@ describe 'RolesApi' do
125
130
  # @param role_href
126
131
  # @param role
127
132
  # @param [Hash] opts the optional parameters
133
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
128
134
  # @return [RoleResponse]
129
135
  describe 'update test' do
130
136
  it 'should work' do
@@ -36,6 +36,7 @@ describe 'SigningServicesApi' do
36
36
  # List signing services
37
37
  # A ViewSet that supports browsing of existing signing services.
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 [String] :name Filter results where name matches value
41
42
  # @option opts [Integer] :offset The initial index from which to return the results.
@@ -58,6 +59,7 @@ describe 'SigningServicesApi' do
58
59
  # A ViewSet that supports browsing of existing signing services.
59
60
  # @param signing_service_href
60
61
  # @param [Hash] opts the optional parameters
62
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
61
63
  # @option opts [Array<String>] :fields A list of fields to include in the response.
62
64
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
63
65
  # @return [SigningServiceResponse]
@@ -36,6 +36,9 @@ describe 'StatusApi' do
36
36
  # Inspect status of Pulp
37
37
  # Returns status and app information about Pulp. Information includes: * version of pulpcore and loaded pulp plugins * known workers * known content apps * database connection status * redis connection status * disk usage information
38
38
  # @param [Hash] opts the optional parameters
39
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
40
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
41
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
39
42
  # @return [StatusResponse]
40
43
  describe 'status_read test' do
41
44
  it 'should work' do
@@ -35,6 +35,7 @@ describe 'TaskGroupsApi' do
35
35
  # unit tests for list
36
36
  # List task groups
37
37
  # @param [Hash] opts the optional parameters
38
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
38
39
  # @option opts [Integer] :limit Number of results to return per page.
39
40
  # @option opts [Integer] :offset The initial index from which to return the results.
40
41
  # @option opts [Array<String>] :fields A list of fields to include in the response.
@@ -50,6 +51,7 @@ describe 'TaskGroupsApi' do
50
51
  # Inspect a task group
51
52
  # @param task_group_href
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
  # @option opts [Array<String>] :fields A list of fields to include in the response.
54
56
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
55
57
  # @return [TaskGroupResponse]
@@ -65,6 +67,7 @@ describe 'TaskGroupsApi' do
65
67
  # @param task_group_href
66
68
  # @param patched_task_cancel
67
69
  # @param [Hash] opts the optional parameters
70
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
68
71
  # @return [TaskGroupResponse]
69
72
  describe 'task_groups_cancel test' do
70
73
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'TaskSchedulesApi' do
38
38
  # @param task_schedule_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
@@ -49,6 +50,7 @@ describe 'TaskSchedulesApi' do
49
50
  # List task schedules
50
51
  # ViewSet to monitor task schedules.
51
52
  # @param [Hash] opts the optional parameters
53
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
52
54
  # @option opts [Integer] :limit Number of results to return per page.
53
55
  # @option opts [String] :name Filter results where name matches value
54
56
  # @option opts [String] :name__contains Filter results where name contains value
@@ -74,6 +76,7 @@ describe 'TaskSchedulesApi' do
74
76
  # List roles assigned to this object.
75
77
  # @param task_schedule_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 [ObjectRolesResponse]
@@ -88,6 +91,7 @@ describe 'TaskSchedulesApi' do
88
91
  # List permissions available to the current user on this object.
89
92
  # @param task_schedule_href
90
93
  # @param [Hash] opts the optional parameters
94
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
91
95
  # @option opts [Array<String>] :fields A list of fields to include in the response.
92
96
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
93
97
  # @return [MyPermissionsResponse]
@@ -102,6 +106,7 @@ describe 'TaskSchedulesApi' do
102
106
  # ViewSet to monitor task schedules.
103
107
  # @param task_schedule_href
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
  # @option opts [Array<String>] :fields A list of fields to include in the response.
106
111
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
107
112
  # @return [TaskScheduleResponse]
@@ -117,6 +122,7 @@ describe 'TaskSchedulesApi' do
117
122
  # @param task_schedule_href
118
123
  # @param nested_role
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
  # @return [NestedRoleResponse]
121
127
  describe 'remove_role test' do
122
128
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'TasksApi' do
38
38
  # @param task_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 'TasksApi' do
50
51
  # A customized named ModelViewSet that knows how to register itself with the Pulp API router. This viewset is discoverable by its name. \&quot;Normal\&quot; Django Models and Master/Detail models are supported by the &#x60;&#x60;register_with&#x60;&#x60; method. Attributes: lookup_field (str): The name of the field by which an object should be looked up, in addition to any parent lookups if this ViewSet is nested. Defaults to &#39;pk&#39; endpoint_name (str): The name of the final path segment that should identify the ViewSet&#39;s collection endpoint. nest_prefix (str): Optional prefix under which this ViewSet should be nested. This must correspond to the \&quot;parent_prefix\&quot; of a router with rest_framework_nested.NestedMixin. None indicates this ViewSet should not be nested. parent_lookup_kwargs (dict): Optional mapping of key names that would appear in self.kwargs to django model filter expressions that can be used with the corresponding value from self.kwargs, used only by a nested ViewSet to filter based on the parent object&#39;s identity. schema (DefaultSchema): The schema class to use by default in a viewset.
51
52
  # @param task_href
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 [nil]
54
56
  describe 'delete test' do
55
57
  it 'should work' do
@@ -61,6 +63,7 @@ describe 'TasksApi' do
61
63
  # List tasks
62
64
  # A customized named ModelViewSet that knows how to register itself with the Pulp API router. This viewset is discoverable by its name. \&quot;Normal\&quot; Django Models and Master/Detail models are supported by the &#x60;&#x60;register_with&#x60;&#x60; method. Attributes: lookup_field (str): The name of the field by which an object should be looked up, in addition to any parent lookups if this ViewSet is nested. Defaults to &#39;pk&#39; endpoint_name (str): The name of the final path segment that should identify the ViewSet&#39;s collection endpoint. nest_prefix (str): Optional prefix under which this ViewSet should be nested. This must correspond to the \&quot;parent_prefix\&quot; of a router with rest_framework_nested.NestedMixin. None indicates this ViewSet should not be nested. parent_lookup_kwargs (dict): Optional mapping of key names that would appear in self.kwargs to django model filter expressions that can be used with the corresponding value from self.kwargs, used only by a nested ViewSet to filter based on the parent object&#39;s identity. schema (DefaultSchema): The schema class to use by default in a viewset.
63
65
  # @param [Hash] opts the optional parameters
66
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
64
67
  # @option opts [String] :child_tasks Filter results where child_tasks matches value
65
68
  # @option opts [String] :created_resources
66
69
  # @option opts [String] :exclusive_resources
@@ -80,7 +83,7 @@ describe 'TasksApi' do
80
83
  # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
81
84
  # @option opts [String] :name__ne Filter results where name not equal to value
82
85
  # @option opts [Integer] :offset The initial index from which to return the results.
83
- # @option opts [Array<String>] :ordering 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;state&#x60; - State * &#x60;-state&#x60; - State (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;logging_cid&#x60; - Logging cid * &#x60;-logging_cid&#x60; - Logging cid (descending) * &#x60;unblocked_at&#x60; - Unblocked at * &#x60;-unblocked_at&#x60; - Unblocked at (descending) * &#x60;started_at&#x60; - Started at * &#x60;-started_at&#x60; - Started at (descending) * &#x60;finished_at&#x60; - Finished at * &#x60;-finished_at&#x60; - Finished at (descending) * &#x60;error&#x60; - Error * &#x60;-error&#x60; - Error (descending) * &#x60;enc_args&#x60; - Enc args * &#x60;-enc_args&#x60; - Enc args (descending) * &#x60;enc_kwargs&#x60; - Enc kwargs * &#x60;-enc_kwargs&#x60; - Enc kwargs (descending) * &#x60;reserved_resources_record&#x60; - Reserved resources record * &#x60;-reserved_resources_record&#x60; - Reserved resources record (descending) * &#x60;versions&#x60; - Versions * &#x60;-versions&#x60; - Versions (descending) * &#x60;immediate&#x60; - Immediate * &#x60;-immediate&#x60; - Immediate (descending) * &#x60;deferred&#x60; - Deferred * &#x60;-deferred&#x60; - Deferred (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
86
+ # @option opts [Array<String>] :ordering 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;state&#x60; - State * &#x60;-state&#x60; - State (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;logging_cid&#x60; - Logging cid * &#x60;-logging_cid&#x60; - Logging cid (descending) * &#x60;unblocked_at&#x60; - Unblocked at * &#x60;-unblocked_at&#x60; - Unblocked at (descending) * &#x60;started_at&#x60; - Started at * &#x60;-started_at&#x60; - Started at (descending) * &#x60;finished_at&#x60; - Finished at * &#x60;-finished_at&#x60; - Finished at (descending) * &#x60;error&#x60; - Error * &#x60;-error&#x60; - Error (descending) * &#x60;enc_args&#x60; - Enc args * &#x60;-enc_args&#x60; - Enc args (descending) * &#x60;enc_kwargs&#x60; - Enc kwargs * &#x60;-enc_kwargs&#x60; - Enc kwargs (descending) * &#x60;reserved_resources_record&#x60; - Reserved resources record * &#x60;-reserved_resources_record&#x60; - Reserved resources record (descending) * &#x60;versions&#x60; - Versions * &#x60;-versions&#x60; - Versions (descending) * &#x60;profile_options&#x60; - Profile options * &#x60;-profile_options&#x60; - Profile options (descending) * &#x60;immediate&#x60; - Immediate * &#x60;-immediate&#x60; - Immediate (descending) * &#x60;deferred&#x60; - Deferred * &#x60;-deferred&#x60; - Deferred (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
84
87
  # @option opts [String] :parent_task Filter results where parent_task matches value
85
88
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
86
89
  # @option opts [Time] :pulp_created Filter results where pulp_created matches value
@@ -132,6 +135,7 @@ describe 'TasksApi' do
132
135
  # List roles assigned to this object.
133
136
  # @param task_href
134
137
  # @param [Hash] opts the optional parameters
138
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
135
139
  # @option opts [Array<String>] :fields A list of fields to include in the response.
136
140
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
137
141
  # @return [ObjectRolesResponse]
@@ -146,6 +150,7 @@ describe 'TasksApi' do
146
150
  # List permissions available to the current user on this object.
147
151
  # @param task_href
148
152
  # @param [Hash] opts the optional parameters
153
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
149
154
  # @option opts [Array<String>] :fields A list of fields to include in the response.
150
155
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
151
156
  # @return [MyPermissionsResponse]
@@ -160,6 +165,7 @@ describe 'TasksApi' do
160
165
  # Return pre-signed URLs used for downloading raw profile artifacts.
161
166
  # @param task_href
162
167
  # @param [Hash] opts the optional parameters
168
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
163
169
  # @option opts [Array<String>] :fields A list of fields to include in the response.
164
170
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
165
171
  # @return [ProfileArtifactResponse]
@@ -174,6 +180,7 @@ describe 'TasksApi' do
174
180
  # Trigger an asynchronous task that deletes completed tasks that finished prior to a specified timestamp.
175
181
  # @param purge
176
182
  # @param [Hash] opts the optional parameters
183
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
177
184
  # @return [AsyncOperationResponse]
178
185
  describe 'purge test' do
179
186
  it 'should work' do
@@ -186,6 +193,7 @@ describe 'TasksApi' do
186
193
  # A customized named ModelViewSet that knows how to register itself with the Pulp API router. This viewset is discoverable by its name. \&quot;Normal\&quot; Django Models and Master/Detail models are supported by the &#x60;&#x60;register_with&#x60;&#x60; method. Attributes: lookup_field (str): The name of the field by which an object should be looked up, in addition to any parent lookups if this ViewSet is nested. Defaults to &#39;pk&#39; endpoint_name (str): The name of the final path segment that should identify the ViewSet&#39;s collection endpoint. nest_prefix (str): Optional prefix under which this ViewSet should be nested. This must correspond to the \&quot;parent_prefix\&quot; of a router with rest_framework_nested.NestedMixin. None indicates this ViewSet should not be nested. parent_lookup_kwargs (dict): Optional mapping of key names that would appear in self.kwargs to django model filter expressions that can be used with the corresponding value from self.kwargs, used only by a nested ViewSet to filter based on the parent object&#39;s identity. schema (DefaultSchema): The schema class to use by default in a viewset.
187
194
  # @param task_href
188
195
  # @param [Hash] opts the optional parameters
196
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
189
197
  # @option opts [Array<String>] :fields A list of fields to include in the response.
190
198
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
191
199
  # @return [TaskResponse]
@@ -201,6 +209,7 @@ describe 'TasksApi' do
201
209
  # @param task_href
202
210
  # @param nested_role
203
211
  # @param [Hash] opts the optional parameters
212
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
204
213
  # @return [NestedRoleResponse]
205
214
  describe 'remove_role test' do
206
215
  it 'should work' do
@@ -214,6 +223,7 @@ describe 'TasksApi' do
214
223
  # @param task_href
215
224
  # @param patched_task_cancel
216
225
  # @param [Hash] opts the optional parameters
226
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
217
227
  # @return [TaskResponse]
218
228
  describe 'tasks_cancel test' do
219
229
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'UploadsApi' do
38
38
  # @param upload_href
39
39
  # @param upload
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
@@ -51,6 +52,7 @@ describe 'UploadsApi' do
51
52
  # @param upload_href
52
53
  # @param upload_commit
53
54
  # @param [Hash] opts the optional parameters
55
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
54
56
  # @return [AsyncOperationResponse]
55
57
  describe 'commit test' do
56
58
  it 'should work' do
@@ -63,6 +65,7 @@ describe 'UploadsApi' do
63
65
  # View for chunked uploads.
64
66
  # @param upload
65
67
  # @param [Hash] opts the optional parameters
68
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
66
69
  # @return [UploadResponse]
67
70
  describe 'create test' do
68
71
  it 'should work' do
@@ -75,6 +78,7 @@ describe 'UploadsApi' do
75
78
  # View for chunked uploads.
76
79
  # @param upload_href
77
80
  # @param [Hash] opts the optional parameters
81
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
78
82
  # @return [nil]
79
83
  describe 'delete test' do
80
84
  it 'should work' do
@@ -86,6 +90,7 @@ describe 'UploadsApi' do
86
90
  # List uploads
87
91
  # View for chunked uploads.
88
92
  # @param [Hash] opts the optional parameters
93
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
89
94
  # @option opts [Integer] :limit Number of results to return per page.
90
95
  # @option opts [Integer] :offset The initial index from which to return the results.
91
96
  # @option opts [Array<String>] :ordering 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;size&#x60; - Size * &#x60;-size&#x60; - Size (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
@@ -111,6 +116,7 @@ describe 'UploadsApi' do
111
116
  # List roles assigned to this object.
112
117
  # @param upload_href
113
118
  # @param [Hash] opts the optional parameters
119
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
114
120
  # @option opts [Array<String>] :fields A list of fields to include in the response.
115
121
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
116
122
  # @return [ObjectRolesResponse]
@@ -125,6 +131,7 @@ describe 'UploadsApi' do
125
131
  # List permissions available to the current user on this object.
126
132
  # @param upload_href
127
133
  # @param [Hash] opts the optional parameters
134
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
128
135
  # @option opts [Array<String>] :fields A list of fields to include in the response.
129
136
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
130
137
  # @return [MyPermissionsResponse]
@@ -139,6 +146,7 @@ describe 'UploadsApi' do
139
146
  # View for chunked uploads.
140
147
  # @param upload_href
141
148
  # @param [Hash] opts the optional parameters
149
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
142
150
  # @option opts [Array<String>] :fields A list of fields to include in the response.
143
151
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
144
152
  # @return [UploadDetailResponse]
@@ -154,6 +162,7 @@ describe 'UploadsApi' do
154
162
  # @param upload_href
155
163
  # @param upload
156
164
  # @param [Hash] opts the optional parameters
165
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
157
166
  # @return [NestedRoleResponse]
158
167
  describe 'remove_role test' do
159
168
  it 'should work' do
@@ -168,6 +177,7 @@ describe 'UploadsApi' do
168
177
  # @param upload_href
169
178
  # @param file A chunk of the uploaded file.
170
179
  # @param [Hash] opts the optional parameters
180
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
171
181
  # @option opts [String] :sha256 The SHA-256 checksum of the chunk if available.
172
182
  # @return [UploadResponse]
173
183
  describe 'update test' do