pulpcore_client 3.81.0 → 3.82.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 (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 +14 -14
  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 +69 -69
  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 'GroupsApi' do
38
38
  # @param group_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 'GroupsApi' do
50
51
  # ViewSet for Group.
51
52
  # @param group
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 [GroupResponse]
54
56
  describe 'create test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'GroupsApi' do
62
64
  # ViewSet for Group.
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
  # @return [nil]
66
69
  describe 'delete test' do
67
70
  it 'should work' do
@@ -73,6 +76,7 @@ describe 'GroupsApi' do
73
76
  # List groups
74
77
  # ViewSet for Group.
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] :id Filter results where id matches value
77
81
  # @option opts [Array<Integer>] :id__in Filter results where id is in a comma-separated list of values
78
82
  # @option opts [Integer] :limit Number of results to return per page.
@@ -101,6 +105,7 @@ describe 'GroupsApi' do
101
105
  # List roles assigned to this object.
102
106
  # @param group_href
103
107
  # @param [Hash] opts the optional parameters
108
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
104
109
  # @option opts [Array<String>] :fields A list of fields to include in the response.
105
110
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
106
111
  # @return [ObjectRolesResponse]
@@ -115,6 +120,7 @@ describe 'GroupsApi' do
115
120
  # List permissions available to the current user on this object.
116
121
  # @param group_href
117
122
  # @param [Hash] opts the optional parameters
123
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
118
124
  # @option opts [Array<String>] :fields A list of fields to include in the response.
119
125
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
120
126
  # @return [MyPermissionsResponse]
@@ -130,6 +136,7 @@ describe 'GroupsApi' do
130
136
  # @param group_href
131
137
  # @param patched_group
132
138
  # @param [Hash] opts the optional parameters
139
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
133
140
  # @return [GroupResponse]
134
141
  describe 'partial_update test' do
135
142
  it 'should work' do
@@ -142,6 +149,7 @@ describe 'GroupsApi' do
142
149
  # ViewSet for Group.
143
150
  # @param group_href
144
151
  # @param [Hash] opts the optional parameters
152
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
145
153
  # @option opts [Array<String>] :fields A list of fields to include in the response.
146
154
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
147
155
  # @return [GroupResponse]
@@ -157,6 +165,7 @@ describe 'GroupsApi' do
157
165
  # @param group_href
158
166
  # @param nested_role
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 [NestedRoleResponse]
161
170
  describe 'remove_role test' do
162
171
  it 'should work' do
@@ -170,6 +179,7 @@ describe 'GroupsApi' do
170
179
  # @param group_href
171
180
  # @param group
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 [GroupResponse]
174
184
  describe 'update test' do
175
185
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'GroupsRolesApi' do
38
38
  # @param group_href
39
39
  # @param group_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 [GroupRoleResponse]
42
43
  describe 'create test' do
43
44
  it 'should work' do
@@ -50,6 +51,7 @@ describe 'GroupsRolesApi' do
50
51
  # ViewSet for GroupRole.
51
52
  # @param groups_group_role_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 'GroupsRolesApi' do
62
64
  # ViewSet for GroupRole.
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 [String] :content_object content_object
66
69
  # @option opts [String] :domain Foreign Key referenced by HREF
67
70
  # @option opts [Integer] :limit Number of results to return per page.
@@ -90,6 +93,7 @@ describe 'GroupsRolesApi' do
90
93
  # ViewSet for GroupRole.
91
94
  # @param groups_group_role_href
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
  # @option opts [Array<String>] :fields A list of fields to include in the response.
94
98
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
95
99
  # @return [GroupRoleResponse]
@@ -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