pulp_rpm_client 3.31.0 → 3.31.2
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.
- checksums.yaml +4 -4
- data/README.md +8 -5
- data/docs/AcsRpmApi.md +64 -28
- data/docs/ContentAdvisoriesApi.md +22 -8
- data/docs/ContentDistributionTreesApi.md +20 -8
- data/docs/ContentModulemdDefaultsApi.md +28 -12
- data/docs/ContentModulemdObsoletesApi.md +28 -12
- data/docs/ContentModulemdsApi.md +28 -12
- data/docs/ContentPackagecategoriesApi.md +20 -8
- data/docs/ContentPackageenvironmentsApi.md +20 -8
- data/docs/ContentPackagegroupsApi.md +20 -8
- data/docs/ContentPackagelangpacksApi.md +20 -8
- data/docs/ContentPackagesApi.md +24 -8
- data/docs/ContentRepoMetadataFilesApi.md +20 -8
- data/docs/DistributionsRpmApi.md +72 -32
- data/docs/PublicationsRpmApi.md +40 -16
- data/docs/RemotesRpmApi.md +72 -32
- data/docs/RemotesUlnApi.md +72 -32
- data/docs/RepositoriesRpmApi.md +88 -40
- data/docs/RepositoriesRpmVersionsApi.md +22 -10
- data/docs/RpmCompsApi.md +2 -0
- data/docs/RpmCopyApi.md +8 -4
- data/docs/RpmPruneApi.md +8 -4
- data/lib/pulp_rpm_client/api/acs_rpm_api.rb +33 -0
- data/lib/pulp_rpm_client/api/content_advisories_api.rb +15 -0
- data/lib/pulp_rpm_client/api/content_distribution_trees_api.rb +12 -0
- data/lib/pulp_rpm_client/api/content_modulemd_defaults_api.rb +15 -0
- data/lib/pulp_rpm_client/api/content_modulemd_obsoletes_api.rb +15 -0
- data/lib/pulp_rpm_client/api/content_modulemds_api.rb +15 -0
- data/lib/pulp_rpm_client/api/content_packagecategories_api.rb +12 -0
- data/lib/pulp_rpm_client/api/content_packageenvironments_api.rb +12 -0
- data/lib/pulp_rpm_client/api/content_packagegroups_api.rb +12 -0
- data/lib/pulp_rpm_client/api/content_packagelangpacks_api.rb +12 -0
- data/lib/pulp_rpm_client/api/content_packages_api.rb +18 -0
- data/lib/pulp_rpm_client/api/content_repo_metadata_files_api.rb +12 -0
- data/lib/pulp_rpm_client/api/distributions_rpm_api.rb +36 -0
- data/lib/pulp_rpm_client/api/publications_rpm_api.rb +24 -0
- data/lib/pulp_rpm_client/api/remotes_rpm_api.rb +36 -0
- data/lib/pulp_rpm_client/api/remotes_uln_api.rb +36 -0
- data/lib/pulp_rpm_client/api/repositories_rpm_api.rb +42 -0
- data/lib/pulp_rpm_client/api/repositories_rpm_versions_api.rb +15 -3
- data/lib/pulp_rpm_client/api/rpm_comps_api.rb +3 -0
- data/lib/pulp_rpm_client/api/rpm_copy_api.rb +3 -0
- data/lib/pulp_rpm_client/api/rpm_prune_api.rb +3 -0
- data/lib/pulp_rpm_client/version.rb +1 -1
- data/spec/api/acs_rpm_api_spec.rb +11 -0
- data/spec/api/content_advisories_api_spec.rb +5 -0
- data/spec/api/content_distribution_trees_api_spec.rb +4 -0
- data/spec/api/content_modulemd_defaults_api_spec.rb +5 -0
- data/spec/api/content_modulemd_obsoletes_api_spec.rb +5 -0
- data/spec/api/content_modulemds_api_spec.rb +5 -0
- data/spec/api/content_packagecategories_api_spec.rb +4 -0
- data/spec/api/content_packageenvironments_api_spec.rb +4 -0
- data/spec/api/content_packagegroups_api_spec.rb +4 -0
- data/spec/api/content_packagelangpacks_api_spec.rb +4 -0
- data/spec/api/content_packages_api_spec.rb +6 -0
- data/spec/api/content_repo_metadata_files_api_spec.rb +4 -0
- data/spec/api/distributions_rpm_api_spec.rb +12 -0
- data/spec/api/publications_rpm_api_spec.rb +8 -0
- data/spec/api/remotes_rpm_api_spec.rb +12 -0
- data/spec/api/remotes_uln_api_spec.rb +12 -0
- data/spec/api/repositories_rpm_api_spec.rb +14 -0
- data/spec/api/repositories_rpm_versions_api_spec.rb +5 -1
- data/spec/api/rpm_comps_api_spec.rb +1 -0
- data/spec/api/rpm_copy_api_spec.rb +1 -0
- data/spec/api/rpm_prune_api_spec.rb +1 -0
- metadata +78 -78
@@ -36,6 +36,7 @@ describe 'ContentPackagesApi' do
|
|
36
36
|
# Create a package
|
37
37
|
# Trigger an asynchronous task to create an RPM package,optionally create new repository version.
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
39
40
|
# @option opts [String] :repository A URI of a repository the new content unit should be associated with.
|
40
41
|
# @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
|
41
42
|
# @option opts [String] :artifact Artifact file representing the physical content
|
@@ -54,6 +55,7 @@ describe 'ContentPackagesApi' do
|
|
54
55
|
# List packages
|
55
56
|
# A ViewSet for Package. Define endpoint name which will appear in the API endpoint for this content type. For example:: http://pulp.example.com/pulp/api/v3/content/rpm/packages/ Also specify queryset and serializer for Package.
|
56
57
|
# @param [Hash] opts the optional parameters
|
58
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
57
59
|
# @option opts [String] :arch Filter results where arch matches value
|
58
60
|
# @option opts [String] :arch__contains Filter results where arch contains value
|
59
61
|
# @option opts [Array<String>] :arch__in Filter results where arch is in a comma-separated list of values
|
@@ -108,6 +110,7 @@ describe 'ContentPackagesApi' do
|
|
108
110
|
# A ViewSet for Package. Define endpoint name which will appear in the API endpoint for this content type. For example:: http://pulp.example.com/pulp/api/v3/content/rpm/packages/ Also specify queryset and serializer for Package.
|
109
111
|
# @param rpm_package_href
|
110
112
|
# @param [Hash] opts the optional parameters
|
113
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
111
114
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
112
115
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
113
116
|
# @return [RpmPackageResponse]
|
@@ -123,6 +126,7 @@ describe 'ContentPackagesApi' do
|
|
123
126
|
# @param rpm_package_href
|
124
127
|
# @param set_label
|
125
128
|
# @param [Hash] opts the optional parameters
|
129
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
126
130
|
# @return [SetLabelResponse]
|
127
131
|
describe 'set_label test' do
|
128
132
|
it 'should work' do
|
@@ -136,6 +140,7 @@ describe 'ContentPackagesApi' do
|
|
136
140
|
# @param rpm_package_href
|
137
141
|
# @param unset_label
|
138
142
|
# @param [Hash] opts the optional parameters
|
143
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
139
144
|
# @return [UnsetLabelResponse]
|
140
145
|
describe 'unset_label test' do
|
141
146
|
it 'should work' do
|
@@ -147,6 +152,7 @@ describe 'ContentPackagesApi' do
|
|
147
152
|
# Upload an RPM package synchronously.
|
148
153
|
# Synchronously upload an RPM package.
|
149
154
|
# @param [Hash] opts the optional parameters
|
155
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
150
156
|
# @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
|
151
157
|
# @option opts [String] :artifact Artifact file representing the physical content
|
152
158
|
# @option opts [File] :file An uploaded file that may be turned into the content unit.
|
@@ -36,6 +36,7 @@ describe 'ContentRepoMetadataFilesApi' do
|
|
36
36
|
# List repo metadata files
|
37
37
|
# RepoMetadataFile Viewset.
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
39
40
|
# @option opts [Integer] :limit Number of results to return per page.
|
40
41
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
41
42
|
# @option opts [Array<String>] :ordering Ordering * `pk` - Pk * `-pk` - Pk (descending)
|
@@ -62,6 +63,7 @@ describe 'ContentRepoMetadataFilesApi' do
|
|
62
63
|
# RepoMetadataFile Viewset.
|
63
64
|
# @param rpm_repo_metadata_file_href
|
64
65
|
# @param [Hash] opts the optional parameters
|
66
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
65
67
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
66
68
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
67
69
|
# @return [RpmRepoMetadataFileResponse]
|
@@ -77,6 +79,7 @@ describe 'ContentRepoMetadataFilesApi' do
|
|
77
79
|
# @param rpm_repo_metadata_file_href
|
78
80
|
# @param set_label
|
79
81
|
# @param [Hash] opts the optional parameters
|
82
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
80
83
|
# @return [SetLabelResponse]
|
81
84
|
describe 'set_label test' do
|
82
85
|
it 'should work' do
|
@@ -90,6 +93,7 @@ describe 'ContentRepoMetadataFilesApi' do
|
|
90
93
|
# @param rpm_repo_metadata_file_href
|
91
94
|
# @param unset_label
|
92
95
|
# @param [Hash] opts the optional parameters
|
96
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
93
97
|
# @return [UnsetLabelResponse]
|
94
98
|
describe 'unset_label test' do
|
95
99
|
it 'should work' do
|
@@ -38,6 +38,7 @@ describe 'DistributionsRpmApi' do
|
|
38
38
|
# @param rpm_rpm_distribution_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 'DistributionsRpmApi' do
|
|
50
51
|
# Trigger an asynchronous create task
|
51
52
|
# @param rpm_rpm_distribution
|
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 [AsyncOperationResponse]
|
54
56
|
describe 'create test' do
|
55
57
|
it 'should work' do
|
@@ -62,6 +64,7 @@ describe 'DistributionsRpmApi' do
|
|
62
64
|
# Trigger an asynchronous delete task
|
63
65
|
# @param rpm_rpm_distribution_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 'DistributionsRpmApi' do
|
|
73
76
|
# List rpm distributions
|
74
77
|
# ViewSet for RPM Distributions.
|
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] :base_path Filter results where base_path matches value
|
77
81
|
# @option opts [String] :base_path__contains Filter results where base_path contains value
|
78
82
|
# @option opts [String] :base_path__icontains Filter results where base_path contains value
|
@@ -112,6 +116,7 @@ describe 'DistributionsRpmApi' do
|
|
112
116
|
# List roles assigned to this object.
|
113
117
|
# @param rpm_rpm_distribution_href
|
114
118
|
# @param [Hash] opts the optional parameters
|
119
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
115
120
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
116
121
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
117
122
|
# @return [ObjectRolesResponse]
|
@@ -126,6 +131,7 @@ describe 'DistributionsRpmApi' do
|
|
126
131
|
# List permissions available to the current user on this object.
|
127
132
|
# @param rpm_rpm_distribution_href
|
128
133
|
# @param [Hash] opts the optional parameters
|
134
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
129
135
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
130
136
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
131
137
|
# @return [MyPermissionsResponse]
|
@@ -141,6 +147,7 @@ describe 'DistributionsRpmApi' do
|
|
141
147
|
# @param rpm_rpm_distribution_href
|
142
148
|
# @param patchedrpm_rpm_distribution
|
143
149
|
# @param [Hash] opts the optional parameters
|
150
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
144
151
|
# @return [AsyncOperationResponse]
|
145
152
|
describe 'partial_update test' do
|
146
153
|
it 'should work' do
|
@@ -153,6 +160,7 @@ describe 'DistributionsRpmApi' do
|
|
153
160
|
# ViewSet for RPM Distributions.
|
154
161
|
# @param rpm_rpm_distribution_href
|
155
162
|
# @param [Hash] opts the optional parameters
|
163
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
156
164
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
157
165
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
158
166
|
# @return [RpmRpmDistributionResponse]
|
@@ -168,6 +176,7 @@ describe 'DistributionsRpmApi' do
|
|
168
176
|
# @param rpm_rpm_distribution_href
|
169
177
|
# @param nested_role
|
170
178
|
# @param [Hash] opts the optional parameters
|
179
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
171
180
|
# @return [NestedRoleResponse]
|
172
181
|
describe 'remove_role test' do
|
173
182
|
it 'should work' do
|
@@ -181,6 +190,7 @@ describe 'DistributionsRpmApi' do
|
|
181
190
|
# @param rpm_rpm_distribution_href
|
182
191
|
# @param set_label
|
183
192
|
# @param [Hash] opts the optional parameters
|
193
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
184
194
|
# @return [SetLabelResponse]
|
185
195
|
describe 'set_label test' do
|
186
196
|
it 'should work' do
|
@@ -194,6 +204,7 @@ describe 'DistributionsRpmApi' do
|
|
194
204
|
# @param rpm_rpm_distribution_href
|
195
205
|
# @param unset_label
|
196
206
|
# @param [Hash] opts the optional parameters
|
207
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
197
208
|
# @return [UnsetLabelResponse]
|
198
209
|
describe 'unset_label test' do
|
199
210
|
it 'should work' do
|
@@ -207,6 +218,7 @@ describe 'DistributionsRpmApi' do
|
|
207
218
|
# @param rpm_rpm_distribution_href
|
208
219
|
# @param rpm_rpm_distribution
|
209
220
|
# @param [Hash] opts the optional parameters
|
221
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
210
222
|
# @return [AsyncOperationResponse]
|
211
223
|
describe 'update test' do
|
212
224
|
it 'should work' do
|
@@ -38,6 +38,7 @@ describe 'PublicationsRpmApi' do
|
|
38
38
|
# @param rpm_rpm_publication_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 'PublicationsRpmApi' do
|
|
50
51
|
# Trigger an asynchronous task to create a new RPM content publication.
|
51
52
|
# @param rpm_rpm_publication
|
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 [AsyncOperationResponse]
|
54
56
|
describe 'create test' do
|
55
57
|
it 'should work' do
|
@@ -62,6 +64,7 @@ describe 'PublicationsRpmApi' do
|
|
62
64
|
# ViewSet for Rpm Publications.
|
63
65
|
# @param rpm_rpm_publication_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 'PublicationsRpmApi' do
|
|
73
76
|
# List rpm publications
|
74
77
|
# ViewSet for Rpm Publications.
|
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 [Boolean] :checkpoint Filter results where checkpoint matches value
|
77
81
|
# @option opts [String] :content Content Unit referenced by HREF/PRN
|
78
82
|
# @option opts [Array<String>] :content__in Multiple values may be separated by commas.
|
@@ -106,6 +110,7 @@ describe 'PublicationsRpmApi' do
|
|
106
110
|
# List roles assigned to this object.
|
107
111
|
# @param rpm_rpm_publication_href
|
108
112
|
# @param [Hash] opts the optional parameters
|
113
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
109
114
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
110
115
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
111
116
|
# @return [ObjectRolesResponse]
|
@@ -120,6 +125,7 @@ describe 'PublicationsRpmApi' do
|
|
120
125
|
# List permissions available to the current user on this object.
|
121
126
|
# @param rpm_rpm_publication_href
|
122
127
|
# @param [Hash] opts the optional parameters
|
128
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
123
129
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
124
130
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
125
131
|
# @return [MyPermissionsResponse]
|
@@ -134,6 +140,7 @@ describe 'PublicationsRpmApi' do
|
|
134
140
|
# ViewSet for Rpm Publications.
|
135
141
|
# @param rpm_rpm_publication_href
|
136
142
|
# @param [Hash] opts the optional parameters
|
143
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
137
144
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
138
145
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
139
146
|
# @return [RpmRpmPublicationResponse]
|
@@ -149,6 +156,7 @@ describe 'PublicationsRpmApi' do
|
|
149
156
|
# @param rpm_rpm_publication_href
|
150
157
|
# @param nested_role
|
151
158
|
# @param [Hash] opts the optional parameters
|
159
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
152
160
|
# @return [NestedRoleResponse]
|
153
161
|
describe 'remove_role test' do
|
154
162
|
it 'should work' do
|
@@ -38,6 +38,7 @@ describe 'RemotesRpmApi' do
|
|
38
38
|
# @param rpm_rpm_remote_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 'RemotesRpmApi' do
|
|
50
51
|
# A ViewSet for RpmRemote.
|
51
52
|
# @param rpm_rpm_remote
|
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 [RpmRpmRemoteResponse]
|
54
56
|
describe 'create test' do
|
55
57
|
it 'should work' do
|
@@ -62,6 +64,7 @@ describe 'RemotesRpmApi' do
|
|
62
64
|
# Trigger an asynchronous delete task
|
63
65
|
# @param rpm_rpm_remote_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 'RemotesRpmApi' do
|
|
73
76
|
# List rpm remotes
|
74
77
|
# A ViewSet for RpmRemote.
|
75
78
|
# @param [Hash] opts the optional parameters
|
79
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
76
80
|
# @option opts [Integer] :limit Number of results to return per page.
|
77
81
|
# @option opts [String] :name Filter results where name matches value
|
78
82
|
# @option opts [String] :name__contains Filter results where name contains value
|
@@ -111,6 +115,7 @@ describe 'RemotesRpmApi' do
|
|
111
115
|
# List roles assigned to this object.
|
112
116
|
# @param rpm_rpm_remote_href
|
113
117
|
# @param [Hash] opts the optional parameters
|
118
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
114
119
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
115
120
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
116
121
|
# @return [ObjectRolesResponse]
|
@@ -125,6 +130,7 @@ describe 'RemotesRpmApi' do
|
|
125
130
|
# List permissions available to the current user on this object.
|
126
131
|
# @param rpm_rpm_remote_href
|
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
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
129
135
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
130
136
|
# @return [MyPermissionsResponse]
|
@@ -140,6 +146,7 @@ describe 'RemotesRpmApi' do
|
|
140
146
|
# @param rpm_rpm_remote_href
|
141
147
|
# @param patchedrpm_rpm_remote
|
142
148
|
# @param [Hash] opts the optional parameters
|
149
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
143
150
|
# @return [AsyncOperationResponse]
|
144
151
|
describe 'partial_update test' do
|
145
152
|
it 'should work' do
|
@@ -152,6 +159,7 @@ describe 'RemotesRpmApi' do
|
|
152
159
|
# A ViewSet for RpmRemote.
|
153
160
|
# @param rpm_rpm_remote_href
|
154
161
|
# @param [Hash] opts the optional parameters
|
162
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
155
163
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
156
164
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
157
165
|
# @return [RpmRpmRemoteResponse]
|
@@ -167,6 +175,7 @@ describe 'RemotesRpmApi' do
|
|
167
175
|
# @param rpm_rpm_remote_href
|
168
176
|
# @param nested_role
|
169
177
|
# @param [Hash] opts the optional parameters
|
178
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
170
179
|
# @return [NestedRoleResponse]
|
171
180
|
describe 'remove_role test' do
|
172
181
|
it 'should work' do
|
@@ -180,6 +189,7 @@ describe 'RemotesRpmApi' do
|
|
180
189
|
# @param rpm_rpm_remote_href
|
181
190
|
# @param set_label
|
182
191
|
# @param [Hash] opts the optional parameters
|
192
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
183
193
|
# @return [SetLabelResponse]
|
184
194
|
describe 'set_label test' do
|
185
195
|
it 'should work' do
|
@@ -193,6 +203,7 @@ describe 'RemotesRpmApi' do
|
|
193
203
|
# @param rpm_rpm_remote_href
|
194
204
|
# @param unset_label
|
195
205
|
# @param [Hash] opts the optional parameters
|
206
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
196
207
|
# @return [UnsetLabelResponse]
|
197
208
|
describe 'unset_label test' do
|
198
209
|
it 'should work' do
|
@@ -206,6 +217,7 @@ describe 'RemotesRpmApi' do
|
|
206
217
|
# @param rpm_rpm_remote_href
|
207
218
|
# @param rpm_rpm_remote
|
208
219
|
# @param [Hash] opts the optional parameters
|
220
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
209
221
|
# @return [AsyncOperationResponse]
|
210
222
|
describe 'update test' do
|
211
223
|
it 'should work' do
|
@@ -38,6 +38,7 @@ describe 'RemotesUlnApi' do
|
|
38
38
|
# @param rpm_uln_remote_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 'RemotesUlnApi' do
|
|
50
51
|
# A ViewSet for UlnRemote.
|
51
52
|
# @param rpm_uln_remote
|
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 [RpmUlnRemoteResponse]
|
54
56
|
describe 'create test' do
|
55
57
|
it 'should work' do
|
@@ -62,6 +64,7 @@ describe 'RemotesUlnApi' do
|
|
62
64
|
# Trigger an asynchronous delete task
|
63
65
|
# @param rpm_uln_remote_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 'RemotesUlnApi' do
|
|
73
76
|
# List uln remotes
|
74
77
|
# A ViewSet for UlnRemote.
|
75
78
|
# @param [Hash] opts the optional parameters
|
79
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
76
80
|
# @option opts [Integer] :limit Number of results to return per page.
|
77
81
|
# @option opts [String] :name Filter results where name matches value
|
78
82
|
# @option opts [String] :name__contains Filter results where name contains value
|
@@ -111,6 +115,7 @@ describe 'RemotesUlnApi' do
|
|
111
115
|
# List roles assigned to this object.
|
112
116
|
# @param rpm_uln_remote_href
|
113
117
|
# @param [Hash] opts the optional parameters
|
118
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
114
119
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
115
120
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
116
121
|
# @return [ObjectRolesResponse]
|
@@ -125,6 +130,7 @@ describe 'RemotesUlnApi' do
|
|
125
130
|
# List permissions available to the current user on this object.
|
126
131
|
# @param rpm_uln_remote_href
|
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
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
129
135
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
130
136
|
# @return [MyPermissionsResponse]
|
@@ -140,6 +146,7 @@ describe 'RemotesUlnApi' do
|
|
140
146
|
# @param rpm_uln_remote_href
|
141
147
|
# @param patchedrpm_uln_remote
|
142
148
|
# @param [Hash] opts the optional parameters
|
149
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
143
150
|
# @return [AsyncOperationResponse]
|
144
151
|
describe 'partial_update test' do
|
145
152
|
it 'should work' do
|
@@ -152,6 +159,7 @@ describe 'RemotesUlnApi' do
|
|
152
159
|
# A ViewSet for UlnRemote.
|
153
160
|
# @param rpm_uln_remote_href
|
154
161
|
# @param [Hash] opts the optional parameters
|
162
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
155
163
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
156
164
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
157
165
|
# @return [RpmUlnRemoteResponse]
|
@@ -167,6 +175,7 @@ describe 'RemotesUlnApi' do
|
|
167
175
|
# @param rpm_uln_remote_href
|
168
176
|
# @param nested_role
|
169
177
|
# @param [Hash] opts the optional parameters
|
178
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
170
179
|
# @return [NestedRoleResponse]
|
171
180
|
describe 'remove_role test' do
|
172
181
|
it 'should work' do
|
@@ -180,6 +189,7 @@ describe 'RemotesUlnApi' do
|
|
180
189
|
# @param rpm_uln_remote_href
|
181
190
|
# @param set_label
|
182
191
|
# @param [Hash] opts the optional parameters
|
192
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
183
193
|
# @return [SetLabelResponse]
|
184
194
|
describe 'set_label test' do
|
185
195
|
it 'should work' do
|
@@ -193,6 +203,7 @@ describe 'RemotesUlnApi' do
|
|
193
203
|
# @param rpm_uln_remote_href
|
194
204
|
# @param unset_label
|
195
205
|
# @param [Hash] opts the optional parameters
|
206
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
196
207
|
# @return [UnsetLabelResponse]
|
197
208
|
describe 'unset_label test' do
|
198
209
|
it 'should work' do
|
@@ -206,6 +217,7 @@ describe 'RemotesUlnApi' do
|
|
206
217
|
# @param rpm_uln_remote_href
|
207
218
|
# @param rpm_uln_remote
|
208
219
|
# @param [Hash] opts the optional parameters
|
220
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
209
221
|
# @return [AsyncOperationResponse]
|
210
222
|
describe 'update test' do
|
211
223
|
it 'should work' do
|
@@ -38,6 +38,7 @@ describe 'RepositoriesRpmApi' do
|
|
38
38
|
# @param rpm_rpm_repository_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 'RepositoriesRpmApi' do
|
|
50
51
|
# A ViewSet for RpmRepository.
|
51
52
|
# @param rpm_rpm_repository
|
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 [RpmRpmRepositoryResponse]
|
54
56
|
describe 'create test' do
|
55
57
|
it 'should work' do
|
@@ -62,6 +64,7 @@ describe 'RepositoriesRpmApi' do
|
|
62
64
|
# Trigger an asynchronous delete task
|
63
65
|
# @param rpm_rpm_repository_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 'RepositoriesRpmApi' do
|
|
73
76
|
# List rpm repositorys
|
74
77
|
# A ViewSet for RpmRepository.
|
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 'RepositoriesRpmApi' do
|
|
115
119
|
# List roles assigned to this object.
|
116
120
|
# @param rpm_rpm_repository_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 'RepositoriesRpmApi' do
|
|
130
135
|
# @param rpm_rpm_repository_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 'RepositoriesRpmApi' do
|
|
142
148
|
# List permissions available to the current user on this object.
|
143
149
|
# @param rpm_rpm_repository_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 'RepositoriesRpmApi' do
|
|
157
164
|
# @param rpm_rpm_repository_href
|
158
165
|
# @param patchedrpm_rpm_repository
|
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 'RepositoriesRpmApi' do
|
|
169
177
|
# A ViewSet for RpmRepository.
|
170
178
|
# @param rpm_rpm_repository_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 [RpmRpmRepositoryResponse]
|
@@ -184,6 +193,7 @@ describe 'RepositoriesRpmApi' do
|
|
184
193
|
# @param rpm_rpm_repository_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 'RepositoriesRpmApi' do
|
|
197
207
|
# @param rpm_rpm_repository_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 'RepositoriesRpmApi' do
|
|
210
221
|
# @param rpm_rpm_repository_href
|
211
222
|
# @param rpm_repository_sync_url
|
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 [AsyncOperationResponse]
|
214
226
|
describe 'sync test' do
|
215
227
|
it 'should work' do
|
@@ -223,6 +235,7 @@ describe 'RepositoriesRpmApi' do
|
|
223
235
|
# @param rpm_rpm_repository_href
|
224
236
|
# @param unset_label
|
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 [UnsetLabelResponse]
|
227
240
|
describe 'unset_label test' do
|
228
241
|
it 'should work' do
|
@@ -236,6 +249,7 @@ describe 'RepositoriesRpmApi' do
|
|
236
249
|
# @param rpm_rpm_repository_href
|
237
250
|
# @param rpm_rpm_repository
|
238
251
|
# @param [Hash] opts the optional parameters
|
252
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
239
253
|
# @return [AsyncOperationResponse]
|
240
254
|
describe 'update test' do
|
241
255
|
it 'should work' do
|
@@ -37,6 +37,7 @@ describe 'RepositoriesRpmVersionsApi' do
|
|
37
37
|
# Trigger an asynchronous task to delete a repository version.
|
38
38
|
# @param rpm_rpm_repository_version_href
|
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 'delete test' do
|
42
43
|
it 'should work' do
|
@@ -49,6 +50,7 @@ describe 'RepositoriesRpmVersionsApi' do
|
|
49
50
|
# RpmRepositoryVersion represents a single rpm repository version.
|
50
51
|
# @param rpm_rpm_repository_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
|
# @option opts [String] :content Content Unit referenced by HREF/PRN
|
53
55
|
# @option opts [Array<String>] :content__in Multiple values may be separated by commas.
|
54
56
|
# @option opts [Integer] :limit Number of results to return per page.
|
@@ -59,7 +61,7 @@ describe 'RepositoriesRpmVersionsApi' do
|
|
59
61
|
# @option opts [Integer] :number__lte Filter results where number is less than or equal to value
|
60
62
|
# @option opts [Array<Integer>] :number__range Filter results where number is between two comma separated values
|
61
63
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
62
|
-
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
64
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `content_ids` - Content ids * `-content_ids` - Content ids (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
63
65
|
# @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
|
64
66
|
# @option opts [Time] :pulp_created Filter results where pulp_created matches value
|
65
67
|
# @option opts [Time] :pulp_created__gt Filter results where pulp_created is greater than value
|
@@ -84,6 +86,7 @@ describe 'RepositoriesRpmVersionsApi' do
|
|
84
86
|
# RpmRepositoryVersion represents a single rpm repository version.
|
85
87
|
# @param rpm_rpm_repository_version_href
|
86
88
|
# @param [Hash] opts the optional parameters
|
89
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
87
90
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
88
91
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
89
92
|
# @return [RepositoryVersionResponse]
|
@@ -98,6 +101,7 @@ describe 'RepositoriesRpmVersionsApi' do
|
|
98
101
|
# @param rpm_rpm_repository_version_href
|
99
102
|
# @param repair
|
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 [AsyncOperationResponse]
|
102
106
|
describe 'repair test' do
|
103
107
|
it 'should work' do
|
@@ -37,6 +37,7 @@ describe 'RpmCompsApi' do
|
|
37
37
|
# Trigger an asynchronous task to upload a comps.xml file.
|
38
38
|
# @param file Full path of a comps.xml file that may be parsed into comps.xml Content units.
|
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
|
# @option opts [String] :repository URI of an RPM repository the comps.xml content units should be associated to.
|
41
42
|
# @option opts [Boolean] :replace If true, incoming comps.xml replaces existing comps-related ContentUnits in the specified repository.
|
42
43
|
# @return [AsyncOperationResponse]
|
@@ -37,6 +37,7 @@ describe 'RpmCopyApi' do
|
|
37
37
|
# Trigger an asynchronous task to copy RPM contentfrom one repository into another, creating a newrepository version.
|
38
38
|
# @param copy
|
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 'copy_content test' do
|
42
43
|
it 'should work' do
|
@@ -36,6 +36,7 @@ describe 'RpmPruneApi' do
|
|
36
36
|
# Trigger an asynchronous old-Package-prune operation.
|
37
37
|
# @param prune_packages
|
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 [TaskGroupOperationResponse]
|
40
41
|
describe 'prune_packages test' do
|
41
42
|
it 'should work' do
|