pulp_deb_client 3.5.2 → 3.5.3
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 +5 -4
- data/docs/ContentGenericContentsApi.md +22 -8
- data/docs/ContentInstallerFileIndicesApi.md +28 -12
- data/docs/ContentInstallerPackagesApi.md +22 -8
- data/docs/ContentPackageIndicesApi.md +28 -12
- data/docs/ContentPackageReleaseComponentsApi.md +28 -12
- data/docs/ContentPackagesApi.md +22 -8
- data/docs/ContentReleaseArchitecturesApi.md +28 -12
- data/docs/ContentReleaseComponentsApi.md +28 -12
- data/docs/ContentReleaseFilesApi.md +28 -12
- data/docs/ContentReleasesApi.md +28 -12
- data/docs/ContentSourceIndicesApi.md +28 -12
- data/docs/ContentSourcePackagesApi.md +28 -12
- data/docs/ContentSourceReleaseComponentsApi.md +28 -12
- data/docs/DebCopyApi.md +8 -4
- data/docs/DistributionsAptApi.md +72 -32
- data/docs/PublicationsAptApi.md +40 -16
- data/docs/PublicationsVerbatimApi.md +40 -16
- data/docs/RemotesAptApi.md +72 -32
- data/docs/RepositoriesAptApi.md +88 -40
- data/docs/RepositoriesAptVersionsApi.md +22 -10
- data/lib/pulp_deb_client/api/content_generic_contents_api.rb +15 -0
- data/lib/pulp_deb_client/api/content_installer_file_indices_api.rb +15 -0
- data/lib/pulp_deb_client/api/content_installer_packages_api.rb +15 -0
- data/lib/pulp_deb_client/api/content_package_indices_api.rb +15 -0
- data/lib/pulp_deb_client/api/content_package_release_components_api.rb +15 -0
- data/lib/pulp_deb_client/api/content_packages_api.rb +15 -0
- data/lib/pulp_deb_client/api/content_release_architectures_api.rb +15 -0
- data/lib/pulp_deb_client/api/content_release_components_api.rb +15 -0
- data/lib/pulp_deb_client/api/content_release_files_api.rb +15 -0
- data/lib/pulp_deb_client/api/content_releases_api.rb +15 -0
- data/lib/pulp_deb_client/api/content_source_indices_api.rb +15 -0
- data/lib/pulp_deb_client/api/content_source_packages_api.rb +15 -0
- data/lib/pulp_deb_client/api/content_source_release_components_api.rb +15 -0
- data/lib/pulp_deb_client/api/deb_copy_api.rb +3 -0
- data/lib/pulp_deb_client/api/distributions_apt_api.rb +36 -0
- data/lib/pulp_deb_client/api/publications_apt_api.rb +24 -0
- data/lib/pulp_deb_client/api/publications_verbatim_api.rb +24 -0
- data/lib/pulp_deb_client/api/remotes_apt_api.rb +36 -0
- data/lib/pulp_deb_client/api/repositories_apt_api.rb +42 -0
- data/lib/pulp_deb_client/api/repositories_apt_versions_api.rb +15 -3
- data/lib/pulp_deb_client/version.rb +1 -1
- data/spec/api/content_generic_contents_api_spec.rb +5 -0
- data/spec/api/content_installer_file_indices_api_spec.rb +5 -0
- data/spec/api/content_installer_packages_api_spec.rb +5 -0
- data/spec/api/content_package_indices_api_spec.rb +5 -0
- data/spec/api/content_package_release_components_api_spec.rb +5 -0
- data/spec/api/content_packages_api_spec.rb +5 -0
- data/spec/api/content_release_architectures_api_spec.rb +5 -0
- data/spec/api/content_release_components_api_spec.rb +5 -0
- data/spec/api/content_release_files_api_spec.rb +5 -0
- data/spec/api/content_releases_api_spec.rb +5 -0
- data/spec/api/content_source_indices_api_spec.rb +5 -0
- data/spec/api/content_source_packages_api_spec.rb +5 -0
- data/spec/api/content_source_release_components_api_spec.rb +5 -0
- data/spec/api/deb_copy_api_spec.rb +1 -0
- data/spec/api/distributions_apt_api_spec.rb +12 -0
- data/spec/api/publications_apt_api_spec.rb +8 -0
- data/spec/api/publications_verbatim_api_spec.rb +8 -0
- data/spec/api/remotes_apt_api_spec.rb +12 -0
- data/spec/api/repositories_apt_api_spec.rb +14 -0
- data/spec/api/repositories_apt_versions_api_spec.rb +5 -1
- metadata +73 -73
|
@@ -23,6 +23,7 @@ module PulpDebClient
|
|
|
23
23
|
# Trigger an asynchronous task to delete a repository version.
|
|
24
24
|
# @param deb_apt_repository_version_href [String]
|
|
25
25
|
# @param [Hash] opts the optional parameters
|
|
26
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
26
27
|
# @return [AsyncOperationResponse]
|
|
27
28
|
def delete(deb_apt_repository_version_href, opts = {})
|
|
28
29
|
data, _status_code, _headers = delete_with_http_info(deb_apt_repository_version_href, opts)
|
|
@@ -33,6 +34,7 @@ module PulpDebClient
|
|
|
33
34
|
# Trigger an asynchronous task to delete a repository version.
|
|
34
35
|
# @param deb_apt_repository_version_href [String]
|
|
35
36
|
# @param [Hash] opts the optional parameters
|
|
37
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
36
38
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
|
37
39
|
def delete_with_http_info(deb_apt_repository_version_href, opts = {})
|
|
38
40
|
if @api_client.config.debugging
|
|
@@ -52,6 +54,7 @@ module PulpDebClient
|
|
|
52
54
|
header_params = opts[:header_params] || {}
|
|
53
55
|
# HTTP header 'Accept' (if needed)
|
|
54
56
|
header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
|
|
57
|
+
header_params[:'X-Task-Diagnostics'] = @api_client.build_collection_param(opts[:'x_task_diagnostics'], :csv) if !opts[:'x_task_diagnostics'].nil?
|
|
55
58
|
|
|
56
59
|
# form parameters
|
|
57
60
|
form_params = opts[:form_params] || {}
|
|
@@ -86,6 +89,7 @@ module PulpDebClient
|
|
|
86
89
|
# An AptRepositoryVersion represents a single APT repository version as stored by Pulp. It may be used as the basis for the creation of Pulp distributions in order to actually serve the content contained within the repository version.
|
|
87
90
|
# @param deb_apt_repository_href [String]
|
|
88
91
|
# @param [Hash] opts the optional parameters
|
|
92
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
89
93
|
# @option opts [String] :content Content Unit referenced by HREF/PRN
|
|
90
94
|
# @option opts [Array<String>] :content__in Multiple values may be separated by commas.
|
|
91
95
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
@@ -96,7 +100,7 @@ module PulpDebClient
|
|
|
96
100
|
# @option opts [Integer] :number__lte Filter results where number is less than or equal to value
|
|
97
101
|
# @option opts [Array<Integer>] :number__range Filter results where number is between two comma separated values
|
|
98
102
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
99
|
-
# @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)
|
|
103
|
+
# @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)
|
|
100
104
|
# @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
|
|
101
105
|
# @option opts [Time] :pulp_created Filter results where pulp_created matches value
|
|
102
106
|
# @option opts [Time] :pulp_created__gt Filter results where pulp_created is greater than value
|
|
@@ -119,6 +123,7 @@ module PulpDebClient
|
|
|
119
123
|
# An AptRepositoryVersion represents a single APT repository version as stored by Pulp. It may be used as the basis for the creation of Pulp distributions in order to actually serve the content contained within the repository version.
|
|
120
124
|
# @param deb_apt_repository_href [String]
|
|
121
125
|
# @param [Hash] opts the optional parameters
|
|
126
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
122
127
|
# @option opts [String] :content Content Unit referenced by HREF/PRN
|
|
123
128
|
# @option opts [Array<String>] :content__in Multiple values may be separated by commas.
|
|
124
129
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
@@ -129,7 +134,7 @@ module PulpDebClient
|
|
|
129
134
|
# @option opts [Integer] :number__lte Filter results where number is less than or equal to value
|
|
130
135
|
# @option opts [Array<Integer>] :number__range Filter results where number is between two comma separated values
|
|
131
136
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
132
|
-
# @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)
|
|
137
|
+
# @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)
|
|
133
138
|
# @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
|
|
134
139
|
# @option opts [Time] :pulp_created Filter results where pulp_created matches value
|
|
135
140
|
# @option opts [Time] :pulp_created__gt Filter results where pulp_created is greater than value
|
|
@@ -151,7 +156,7 @@ module PulpDebClient
|
|
|
151
156
|
if @api_client.config.client_side_validation && deb_apt_repository_href.nil?
|
|
152
157
|
fail ArgumentError, "Missing the required parameter 'deb_apt_repository_href' when calling RepositoriesAptVersionsApi.list"
|
|
153
158
|
end
|
|
154
|
-
allowable_values = ["-complete", "-info", "-number", "-pk", "-pulp_created", "-pulp_id", "-pulp_last_updated", "complete", "info", "number", "pk", "pulp_created", "pulp_id", "pulp_last_updated"]
|
|
159
|
+
allowable_values = ["-complete", "-content_ids", "-info", "-number", "-pk", "-pulp_created", "-pulp_id", "-pulp_last_updated", "complete", "content_ids", "info", "number", "pk", "pulp_created", "pulp_id", "pulp_last_updated"]
|
|
155
160
|
if @api_client.config.client_side_validation && opts[:'ordering'] && !opts[:'ordering'].all? { |item| allowable_values.include?(item) }
|
|
156
161
|
fail ArgumentError, "invalid value for \"ordering\", must include one of #{allowable_values}"
|
|
157
162
|
end
|
|
@@ -188,6 +193,7 @@ module PulpDebClient
|
|
|
188
193
|
header_params = opts[:header_params] || {}
|
|
189
194
|
# HTTP header 'Accept' (if needed)
|
|
190
195
|
header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
|
|
196
|
+
header_params[:'X-Task-Diagnostics'] = @api_client.build_collection_param(opts[:'x_task_diagnostics'], :csv) if !opts[:'x_task_diagnostics'].nil?
|
|
191
197
|
|
|
192
198
|
# form parameters
|
|
193
199
|
form_params = opts[:form_params] || {}
|
|
@@ -222,6 +228,7 @@ module PulpDebClient
|
|
|
222
228
|
# An AptRepositoryVersion represents a single APT repository version as stored by Pulp. It may be used as the basis for the creation of Pulp distributions in order to actually serve the content contained within the repository version.
|
|
223
229
|
# @param deb_apt_repository_version_href [String]
|
|
224
230
|
# @param [Hash] opts the optional parameters
|
|
231
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
225
232
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
226
233
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
227
234
|
# @return [RepositoryVersionResponse]
|
|
@@ -234,6 +241,7 @@ module PulpDebClient
|
|
|
234
241
|
# An AptRepositoryVersion represents a single APT repository version as stored by Pulp. It may be used as the basis for the creation of Pulp distributions in order to actually serve the content contained within the repository version.
|
|
235
242
|
# @param deb_apt_repository_version_href [String]
|
|
236
243
|
# @param [Hash] opts the optional parameters
|
|
244
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
237
245
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
238
246
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
239
247
|
# @return [Array<(RepositoryVersionResponse, Integer, Hash)>] RepositoryVersionResponse data, response status code and response headers
|
|
@@ -257,6 +265,7 @@ module PulpDebClient
|
|
|
257
265
|
header_params = opts[:header_params] || {}
|
|
258
266
|
# HTTP header 'Accept' (if needed)
|
|
259
267
|
header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
|
|
268
|
+
header_params[:'X-Task-Diagnostics'] = @api_client.build_collection_param(opts[:'x_task_diagnostics'], :csv) if !opts[:'x_task_diagnostics'].nil?
|
|
260
269
|
|
|
261
270
|
# form parameters
|
|
262
271
|
form_params = opts[:form_params] || {}
|
|
@@ -291,6 +300,7 @@ module PulpDebClient
|
|
|
291
300
|
# @param deb_apt_repository_version_href [String]
|
|
292
301
|
# @param repair [Repair]
|
|
293
302
|
# @param [Hash] opts the optional parameters
|
|
303
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
294
304
|
# @return [AsyncOperationResponse]
|
|
295
305
|
def repair(deb_apt_repository_version_href, repair, opts = {})
|
|
296
306
|
data, _status_code, _headers = repair_with_http_info(deb_apt_repository_version_href, repair, opts)
|
|
@@ -301,6 +311,7 @@ module PulpDebClient
|
|
|
301
311
|
# @param deb_apt_repository_version_href [String]
|
|
302
312
|
# @param repair [Repair]
|
|
303
313
|
# @param [Hash] opts the optional parameters
|
|
314
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
304
315
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
|
305
316
|
def repair_with_http_info(deb_apt_repository_version_href, repair, opts = {})
|
|
306
317
|
if @api_client.config.debugging
|
|
@@ -329,6 +340,7 @@ module PulpDebClient
|
|
|
329
340
|
if !content_type.nil?
|
|
330
341
|
header_params['Content-Type'] = content_type
|
|
331
342
|
end
|
|
343
|
+
header_params[:'X-Task-Diagnostics'] = @api_client.build_collection_param(opts[:'x_task_diagnostics'], :csv) if !opts[:'x_task_diagnostics'].nil?
|
|
332
344
|
|
|
333
345
|
# form parameters
|
|
334
346
|
form_params = opts[:form_params] || {}
|
|
@@ -37,6 +37,7 @@ describe 'ContentGenericContentsApi' do
|
|
|
37
37
|
# Trigger an asynchronous task to create content,optionally create new repository version.
|
|
38
38
|
# @param relative_path Path where the artifact is located relative to distributions base_path
|
|
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 A URI of a repository the new content unit should be associated with.
|
|
41
42
|
# @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
|
|
42
43
|
# @option opts [String] :artifact Artifact file representing the physical content
|
|
@@ -54,6 +55,7 @@ describe 'ContentGenericContentsApi' do
|
|
|
54
55
|
# List generic contents
|
|
55
56
|
# GenericContent is a catch all category for storing files not covered by any other type. Associated artifacts: Exactly one arbitrary file that does not match any other type. This is needed to store arbitrary files for use with the verbatim publisher. If you are not using the verbatim publisher, you may ignore this type.
|
|
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 [Integer] :limit Number of results to return per page.
|
|
58
60
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
59
61
|
# @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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `relative_path` - Relative path * `-relative_path` - Relative path (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
@@ -82,6 +84,7 @@ describe 'ContentGenericContentsApi' do
|
|
|
82
84
|
# GenericContent is a catch all category for storing files not covered by any other type. Associated artifacts: Exactly one arbitrary file that does not match any other type. This is needed to store arbitrary files for use with the verbatim publisher. If you are not using the verbatim publisher, you may ignore this type.
|
|
83
85
|
# @param deb_generic_content_href
|
|
84
86
|
# @param [Hash] opts the optional parameters
|
|
87
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
85
88
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
86
89
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
87
90
|
# @return [DebGenericContentResponse]
|
|
@@ -97,6 +100,7 @@ describe 'ContentGenericContentsApi' do
|
|
|
97
100
|
# @param deb_generic_content_href
|
|
98
101
|
# @param set_label
|
|
99
102
|
# @param [Hash] opts the optional parameters
|
|
103
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
100
104
|
# @return [SetLabelResponse]
|
|
101
105
|
describe 'set_label test' do
|
|
102
106
|
it 'should work' do
|
|
@@ -110,6 +114,7 @@ describe 'ContentGenericContentsApi' do
|
|
|
110
114
|
# @param deb_generic_content_href
|
|
111
115
|
# @param unset_label
|
|
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
|
# @return [UnsetLabelResponse]
|
|
114
119
|
describe 'unset_label test' do
|
|
115
120
|
it 'should work' do
|
|
@@ -37,6 +37,7 @@ describe 'ContentInstallerFileIndicesApi' do
|
|
|
37
37
|
# An InstallerFileIndex represents the indices for a set of installer files. Associated artifacts: Exactly one 'SHA256SUMS' and/or 'MD5SUMS' file. Each InstallerFileIndes is associated with a single component-architecture combination within a single Release. Note that installer files are currently used exclusively for verbatim publications. The APT publisher (both simple and structured mode) does not make use of installer content.
|
|
38
38
|
# @param deb_installer_file_index
|
|
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 [DebInstallerFileIndexResponse]
|
|
41
42
|
describe 'create test' do
|
|
42
43
|
it 'should work' do
|
|
@@ -48,6 +49,7 @@ describe 'ContentInstallerFileIndicesApi' do
|
|
|
48
49
|
# List InstallerFileIndices
|
|
49
50
|
# An InstallerFileIndex represents the indices for a set of installer files. Associated artifacts: Exactly one 'SHA256SUMS' and/or 'MD5SUMS' file. Each InstallerFileIndes is associated with a single component-architecture combination within a single Release. Note that installer files are currently used exclusively for verbatim publications. The APT publisher (both simple and structured mode) does not make use of installer content.
|
|
50
51
|
# @param [Hash] opts the optional parameters
|
|
52
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
51
53
|
# @option opts [String] :architecture Filter results where architecture matches value
|
|
52
54
|
# @option opts [String] :component Filter results where component matches value
|
|
53
55
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
@@ -78,6 +80,7 @@ describe 'ContentInstallerFileIndicesApi' do
|
|
|
78
80
|
# An InstallerFileIndex represents the indices for a set of installer files. Associated artifacts: Exactly one 'SHA256SUMS' and/or 'MD5SUMS' file. Each InstallerFileIndes is associated with a single component-architecture combination within a single Release. Note that installer files are currently used exclusively for verbatim publications. The APT publisher (both simple and structured mode) does not make use of installer content.
|
|
79
81
|
# @param deb_installer_file_index_href
|
|
80
82
|
# @param [Hash] opts the optional parameters
|
|
83
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
81
84
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
82
85
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
83
86
|
# @return [DebInstallerFileIndexResponse]
|
|
@@ -93,6 +96,7 @@ describe 'ContentInstallerFileIndicesApi' do
|
|
|
93
96
|
# @param deb_installer_file_index_href
|
|
94
97
|
# @param set_label
|
|
95
98
|
# @param [Hash] opts the optional parameters
|
|
99
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
96
100
|
# @return [SetLabelResponse]
|
|
97
101
|
describe 'set_label test' do
|
|
98
102
|
it 'should work' do
|
|
@@ -106,6 +110,7 @@ describe 'ContentInstallerFileIndicesApi' do
|
|
|
106
110
|
# @param deb_installer_file_index_href
|
|
107
111
|
# @param unset_label
|
|
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
|
# @return [UnsetLabelResponse]
|
|
110
115
|
describe 'unset_label test' do
|
|
111
116
|
it 'should work' do
|
|
@@ -36,6 +36,7 @@ describe 'ContentInstallerPackagesApi' do
|
|
|
36
36
|
# Create an installer package
|
|
37
37
|
# Trigger an asynchronous task to create content,optionally create new repository version.
|
|
38
38
|
# @param [Hash] opts the optional parameters
|
|
39
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
39
40
|
# @option opts [String] :repository A URI of a repository the new content unit should be associated with.
|
|
40
41
|
# @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
|
|
41
42
|
# @option opts [String] :artifact Artifact file representing the physical content
|
|
@@ -54,6 +55,7 @@ describe 'ContentInstallerPackagesApi' do
|
|
|
54
55
|
# List installer packages
|
|
55
56
|
# An InstallerPackage represents a '.udeb' installer package. Associated artifacts: Exactly one '.udeb' installer package file. Note that installer packages are currently used exclusively for verbatim publications. The APT publisher (both simple and structured mode) will not include these packages.
|
|
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] :architecture Filter results where architecture matches value
|
|
58
60
|
# @option opts [String] :auto_built_package Filter results where auto_built_package matches value
|
|
59
61
|
# @option opts [Boolean] :build_essential Filter results where build_essential matches value * `True` - yes * `False` - no
|
|
@@ -97,6 +99,7 @@ describe 'ContentInstallerPackagesApi' do
|
|
|
97
99
|
# An InstallerPackage represents a '.udeb' installer package. Associated artifacts: Exactly one '.udeb' installer package file. Note that installer packages are currently used exclusively for verbatim publications. The APT publisher (both simple and structured mode) will not include these packages.
|
|
98
100
|
# @param deb_installer_package_href
|
|
99
101
|
# @param [Hash] opts the optional parameters
|
|
102
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
100
103
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
101
104
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
102
105
|
# @return [DebInstallerPackageResponse]
|
|
@@ -112,6 +115,7 @@ describe 'ContentInstallerPackagesApi' do
|
|
|
112
115
|
# @param deb_installer_package_href
|
|
113
116
|
# @param set_label
|
|
114
117
|
# @param [Hash] opts the optional parameters
|
|
118
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
115
119
|
# @return [SetLabelResponse]
|
|
116
120
|
describe 'set_label test' do
|
|
117
121
|
it 'should work' do
|
|
@@ -125,6 +129,7 @@ describe 'ContentInstallerPackagesApi' do
|
|
|
125
129
|
# @param deb_installer_package_href
|
|
126
130
|
# @param unset_label
|
|
127
131
|
# @param [Hash] opts the optional parameters
|
|
132
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
128
133
|
# @return [UnsetLabelResponse]
|
|
129
134
|
describe 'unset_label test' do
|
|
130
135
|
it 'should work' do
|
|
@@ -37,6 +37,7 @@ describe 'ContentPackageIndicesApi' do
|
|
|
37
37
|
# A PackageIndex represents the package indices of a single component-architecture combination. Associated artifacts: Exactly one 'Packages' file. May optionally include one or more of 'Packages.gz', 'Packages.xz', 'Release'. If included, the 'Release' file is a legacy per-component-and-architecture Release file. Note: The verbatim publisher will republish all associated artifacts, while the APT publisher (both simple and structured mode) will generate any 'Packages' files it needs when creating the publication. It does not make use of PackageIndex content.
|
|
38
38
|
# @param deb_package_index
|
|
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 [DebPackageIndexResponse]
|
|
41
42
|
describe 'create test' do
|
|
42
43
|
it 'should work' do
|
|
@@ -48,6 +49,7 @@ describe 'ContentPackageIndicesApi' do
|
|
|
48
49
|
# List PackageIndices
|
|
49
50
|
# A PackageIndex represents the package indices of a single component-architecture combination. Associated artifacts: Exactly one 'Packages' file. May optionally include one or more of 'Packages.gz', 'Packages.xz', 'Release'. If included, the 'Release' file is a legacy per-component-and-architecture Release file. Note: The verbatim publisher will republish all associated artifacts, while the APT publisher (both simple and structured mode) will generate any 'Packages' files it needs when creating the publication. It does not make use of PackageIndex content.
|
|
50
51
|
# @param [Hash] opts the optional parameters
|
|
52
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
51
53
|
# @option opts [String] :architecture Filter results where architecture matches value
|
|
52
54
|
# @option opts [String] :component Filter results where component matches value
|
|
53
55
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
@@ -78,6 +80,7 @@ describe 'ContentPackageIndicesApi' do
|
|
|
78
80
|
# A PackageIndex represents the package indices of a single component-architecture combination. Associated artifacts: Exactly one 'Packages' file. May optionally include one or more of 'Packages.gz', 'Packages.xz', 'Release'. If included, the 'Release' file is a legacy per-component-and-architecture Release file. Note: The verbatim publisher will republish all associated artifacts, while the APT publisher (both simple and structured mode) will generate any 'Packages' files it needs when creating the publication. It does not make use of PackageIndex content.
|
|
79
81
|
# @param deb_package_index_href
|
|
80
82
|
# @param [Hash] opts the optional parameters
|
|
83
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
81
84
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
82
85
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
83
86
|
# @return [DebPackageIndexResponse]
|
|
@@ -93,6 +96,7 @@ describe 'ContentPackageIndicesApi' do
|
|
|
93
96
|
# @param deb_package_index_href
|
|
94
97
|
# @param set_label
|
|
95
98
|
# @param [Hash] opts the optional parameters
|
|
99
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
96
100
|
# @return [SetLabelResponse]
|
|
97
101
|
describe 'set_label test' do
|
|
98
102
|
it 'should work' do
|
|
@@ -106,6 +110,7 @@ describe 'ContentPackageIndicesApi' do
|
|
|
106
110
|
# @param deb_package_index_href
|
|
107
111
|
# @param unset_label
|
|
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
|
# @return [UnsetLabelResponse]
|
|
110
115
|
describe 'unset_label test' do
|
|
111
116
|
it 'should work' do
|
|
@@ -37,6 +37,7 @@ describe 'ContentPackageReleaseComponentsApi' do
|
|
|
37
37
|
# A PackageReleaseComponent associates a Package with a ReleaseComponent. Associated artifacts: None; contains only metadata. This simply stores the information which packages are part of which components.
|
|
38
38
|
# @param deb_package_release_component
|
|
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 [DebPackageReleaseComponentResponse]
|
|
41
42
|
describe 'create test' do
|
|
42
43
|
it 'should work' do
|
|
@@ -48,6 +49,7 @@ describe 'ContentPackageReleaseComponentsApi' do
|
|
|
48
49
|
# List package release components
|
|
49
50
|
# A PackageReleaseComponent associates a Package with a ReleaseComponent. Associated artifacts: None; contains only metadata. This simply stores the information which packages are part of which components.
|
|
50
51
|
# @param [Hash] opts the optional parameters
|
|
52
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
51
53
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
52
54
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
53
55
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
@@ -76,6 +78,7 @@ describe 'ContentPackageReleaseComponentsApi' do
|
|
|
76
78
|
# A PackageReleaseComponent associates a Package with a ReleaseComponent. Associated artifacts: None; contains only metadata. This simply stores the information which packages are part of which components.
|
|
77
79
|
# @param deb_package_release_component_href
|
|
78
80
|
# @param [Hash] opts the optional parameters
|
|
81
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
79
82
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
80
83
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
81
84
|
# @return [DebPackageReleaseComponentResponse]
|
|
@@ -91,6 +94,7 @@ describe 'ContentPackageReleaseComponentsApi' do
|
|
|
91
94
|
# @param deb_package_release_component_href
|
|
92
95
|
# @param set_label
|
|
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 [SetLabelResponse]
|
|
95
99
|
describe 'set_label test' do
|
|
96
100
|
it 'should work' do
|
|
@@ -104,6 +108,7 @@ describe 'ContentPackageReleaseComponentsApi' do
|
|
|
104
108
|
# @param deb_package_release_component_href
|
|
105
109
|
# @param unset_label
|
|
106
110
|
# @param [Hash] opts the optional parameters
|
|
111
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
107
112
|
# @return [UnsetLabelResponse]
|
|
108
113
|
describe 'unset_label test' do
|
|
109
114
|
it 'should work' do
|
|
@@ -36,6 +36,7 @@ describe 'ContentPackagesApi' do
|
|
|
36
36
|
# Create a package
|
|
37
37
|
# Trigger an asynchronous task to create content,optionally create new repository version.
|
|
38
38
|
# @param [Hash] opts the optional parameters
|
|
39
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
39
40
|
# @option opts [String] :repository A URI of a repository the new content unit should be associated with.
|
|
40
41
|
# @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
|
|
41
42
|
# @option opts [String] :artifact Artifact file representing the physical content
|
|
@@ -56,6 +57,7 @@ describe 'ContentPackagesApi' do
|
|
|
56
57
|
# List packages
|
|
57
58
|
# A Package represents a '.deb' binary package. Associated artifacts: Exactly one '.deb' package file.
|
|
58
59
|
# @param [Hash] opts the optional parameters
|
|
60
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
59
61
|
# @option opts [String] :architecture Filter results where architecture matches value
|
|
60
62
|
# @option opts [String] :auto_built_package Filter results where auto_built_package matches value
|
|
61
63
|
# @option opts [Boolean] :build_essential Filter results where build_essential matches value * `True` - yes * `False` - no
|
|
@@ -110,6 +112,7 @@ describe 'ContentPackagesApi' do
|
|
|
110
112
|
# A Package represents a '.deb' binary package. Associated artifacts: Exactly one '.deb' package file.
|
|
111
113
|
# @param deb_package_href
|
|
112
114
|
# @param [Hash] opts the optional parameters
|
|
115
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
113
116
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
114
117
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
115
118
|
# @return [DebPackageResponse]
|
|
@@ -125,6 +128,7 @@ describe 'ContentPackagesApi' do
|
|
|
125
128
|
# @param deb_package_href
|
|
126
129
|
# @param set_label
|
|
127
130
|
# @param [Hash] opts the optional parameters
|
|
131
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
128
132
|
# @return [SetLabelResponse]
|
|
129
133
|
describe 'set_label test' do
|
|
130
134
|
it 'should work' do
|
|
@@ -138,6 +142,7 @@ describe 'ContentPackagesApi' do
|
|
|
138
142
|
# @param deb_package_href
|
|
139
143
|
# @param unset_label
|
|
140
144
|
# @param [Hash] opts the optional parameters
|
|
145
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
141
146
|
# @return [UnsetLabelResponse]
|
|
142
147
|
describe 'unset_label test' do
|
|
143
148
|
it 'should work' do
|
|
@@ -37,6 +37,7 @@ describe 'ContentReleaseArchitecturesApi' do
|
|
|
37
37
|
# Trigger an asynchronous task to create content,optionally create new repository version.
|
|
38
38
|
# @param deb_release_architecture
|
|
39
39
|
# @param [Hash] opts the optional parameters
|
|
40
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
40
41
|
# @return [AsyncOperationResponse]
|
|
41
42
|
describe 'create test' do
|
|
42
43
|
it 'should work' do
|
|
@@ -48,6 +49,7 @@ describe 'ContentReleaseArchitecturesApi' do
|
|
|
48
49
|
# List release architectures
|
|
49
50
|
# A ReleaseArchitecture represents a single dpkg architecture string. Associated artifacts: None; contains only metadata. Every ReleaseArchitecture is always associated with exactly one Release. This indicates that the release/distribution in question supports this architecture.
|
|
50
51
|
# @param [Hash] opts the optional parameters
|
|
52
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
51
53
|
# @option opts [String] :architecture Filter results where architecture matches value
|
|
52
54
|
# @option opts [String] :distribution Filter results where distribution matches value
|
|
53
55
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
@@ -76,6 +78,7 @@ describe 'ContentReleaseArchitecturesApi' do
|
|
|
76
78
|
# A ReleaseArchitecture represents a single dpkg architecture string. Associated artifacts: None; contains only metadata. Every ReleaseArchitecture is always associated with exactly one Release. This indicates that the release/distribution in question supports this architecture.
|
|
77
79
|
# @param deb_release_architecture_href
|
|
78
80
|
# @param [Hash] opts the optional parameters
|
|
81
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
79
82
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
80
83
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
81
84
|
# @return [DebReleaseArchitectureResponse]
|
|
@@ -91,6 +94,7 @@ describe 'ContentReleaseArchitecturesApi' do
|
|
|
91
94
|
# @param deb_release_architecture_href
|
|
92
95
|
# @param set_label
|
|
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 [SetLabelResponse]
|
|
95
99
|
describe 'set_label test' do
|
|
96
100
|
it 'should work' do
|
|
@@ -104,6 +108,7 @@ describe 'ContentReleaseArchitecturesApi' do
|
|
|
104
108
|
# @param deb_release_architecture_href
|
|
105
109
|
# @param unset_label
|
|
106
110
|
# @param [Hash] opts the optional parameters
|
|
111
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
107
112
|
# @return [UnsetLabelResponse]
|
|
108
113
|
describe 'unset_label test' do
|
|
109
114
|
it 'should work' do
|
|
@@ -37,6 +37,7 @@ describe 'ContentReleaseComponentsApi' do
|
|
|
37
37
|
# Trigger an asynchronous task to create content,optionally create new repository version.
|
|
38
38
|
# @param deb_release_component
|
|
39
39
|
# @param [Hash] opts the optional parameters
|
|
40
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
40
41
|
# @return [AsyncOperationResponse]
|
|
41
42
|
describe 'create test' do
|
|
42
43
|
it 'should work' do
|
|
@@ -48,6 +49,7 @@ describe 'ContentReleaseComponentsApi' do
|
|
|
48
49
|
# List release components
|
|
49
50
|
# A ReleaseComponent represents a single APT repository component. Associated artifacts: None; contains only metadata.
|
|
50
51
|
# @param [Hash] opts the optional parameters
|
|
52
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
51
53
|
# @option opts [String] :component Filter results where component matches value
|
|
52
54
|
# @option opts [String] :distribution Filter results where distribution matches value
|
|
53
55
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
@@ -77,6 +79,7 @@ describe 'ContentReleaseComponentsApi' do
|
|
|
77
79
|
# A ReleaseComponent represents a single APT repository component. Associated artifacts: None; contains only metadata.
|
|
78
80
|
# @param deb_release_component_href
|
|
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
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
81
84
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
82
85
|
# @return [DebReleaseComponentResponse]
|
|
@@ -92,6 +95,7 @@ describe 'ContentReleaseComponentsApi' do
|
|
|
92
95
|
# @param deb_release_component_href
|
|
93
96
|
# @param set_label
|
|
94
97
|
# @param [Hash] opts the optional parameters
|
|
98
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
95
99
|
# @return [SetLabelResponse]
|
|
96
100
|
describe 'set_label test' do
|
|
97
101
|
it 'should work' do
|
|
@@ -105,6 +109,7 @@ describe 'ContentReleaseComponentsApi' do
|
|
|
105
109
|
# @param deb_release_component_href
|
|
106
110
|
# @param unset_label
|
|
107
111
|
# @param [Hash] opts the optional parameters
|
|
112
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
108
113
|
# @return [UnsetLabelResponse]
|
|
109
114
|
describe 'unset_label test' do
|
|
110
115
|
it 'should work' do
|
|
@@ -37,6 +37,7 @@ describe 'ContentReleaseFilesApi' do
|
|
|
37
37
|
# A ReleaseFile represents the Release file(s) from a single APT distribution. Associated artifacts: At least one of 'Release' and 'InRelease' file. If the 'Release' file is present, then there may also be a 'Release.gpg' detached signature file for it. Note: The verbatim publisher will republish all associated artifacts, while the APT publisher (both simple and structured mode) will generate any 'Release' files it needs when creating the publication. It does not make use of ReleaseFile content.
|
|
38
38
|
# @param deb_release_file
|
|
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 [DebReleaseFileResponse]
|
|
41
42
|
describe 'create test' do
|
|
42
43
|
it 'should work' do
|
|
@@ -48,6 +49,7 @@ describe 'ContentReleaseFilesApi' do
|
|
|
48
49
|
# List release files
|
|
49
50
|
# A ReleaseFile represents the Release file(s) from a single APT distribution. Associated artifacts: At least one of 'Release' and 'InRelease' file. If the 'Release' file is present, then there may also be a 'Release.gpg' detached signature file for it. Note: The verbatim publisher will republish all associated artifacts, while the APT publisher (both simple and structured mode) will generate any 'Release' files it needs when creating the publication. It does not make use of ReleaseFile content.
|
|
50
51
|
# @param [Hash] opts the optional parameters
|
|
52
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
51
53
|
# @option opts [String] :codename Filter results where codename matches value
|
|
52
54
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
53
55
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
@@ -78,6 +80,7 @@ describe 'ContentReleaseFilesApi' do
|
|
|
78
80
|
# A ReleaseFile represents the Release file(s) from a single APT distribution. Associated artifacts: At least one of 'Release' and 'InRelease' file. If the 'Release' file is present, then there may also be a 'Release.gpg' detached signature file for it. Note: The verbatim publisher will republish all associated artifacts, while the APT publisher (both simple and structured mode) will generate any 'Release' files it needs when creating the publication. It does not make use of ReleaseFile content.
|
|
79
81
|
# @param deb_release_file_href
|
|
80
82
|
# @param [Hash] opts the optional parameters
|
|
83
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
81
84
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
82
85
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
83
86
|
# @return [DebReleaseFileResponse]
|
|
@@ -93,6 +96,7 @@ describe 'ContentReleaseFilesApi' do
|
|
|
93
96
|
# @param deb_release_file_href
|
|
94
97
|
# @param set_label
|
|
95
98
|
# @param [Hash] opts the optional parameters
|
|
99
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
96
100
|
# @return [SetLabelResponse]
|
|
97
101
|
describe 'set_label test' do
|
|
98
102
|
it 'should work' do
|
|
@@ -106,6 +110,7 @@ describe 'ContentReleaseFilesApi' do
|
|
|
106
110
|
# @param deb_release_file_href
|
|
107
111
|
# @param unset_label
|
|
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
|
# @return [UnsetLabelResponse]
|
|
110
115
|
describe 'unset_label test' do
|
|
111
116
|
it 'should work' do
|
|
@@ -37,6 +37,7 @@ describe 'ContentReleasesApi' do
|
|
|
37
37
|
# Trigger an asynchronous task to create content,optionally create new repository version.
|
|
38
38
|
# @param deb_release
|
|
39
39
|
# @param [Hash] opts the optional parameters
|
|
40
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
40
41
|
# @return [AsyncOperationResponse]
|
|
41
42
|
describe 'create test' do
|
|
42
43
|
it 'should work' do
|
|
@@ -48,6 +49,7 @@ describe 'ContentReleasesApi' do
|
|
|
48
49
|
# List releases
|
|
49
50
|
# The Release contains release file fields, that are not relevant to the APT repo structure. Associated artifacts: None; contains only metadata. By non-structure relevant release file fields, we mean anything other than the Components and Architectures fields. These are handled by their own models and are not part of this model. Note that the distribution field is part of this model, but is not added to any published release files. The \"distribution\" is defined as the path between 'dists/' and some 'Release' file. As such, it encodes the path to the relevant release file within the APT repository. It is often (but not always) equal to the \"codename\" or the \"suite\".
|
|
50
51
|
# @param [Hash] opts the optional parameters
|
|
52
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
51
53
|
# @option opts [String] :codename Filter results where codename matches value
|
|
52
54
|
# @option opts [String] :distribution Filter results where distribution matches value
|
|
53
55
|
# @option opts [String] :label Filter results where label matches value
|
|
@@ -81,6 +83,7 @@ describe 'ContentReleasesApi' do
|
|
|
81
83
|
# The Release contains release file fields, that are not relevant to the APT repo structure. Associated artifacts: None; contains only metadata. By non-structure relevant release file fields, we mean anything other than the Components and Architectures fields. These are handled by their own models and are not part of this model. Note that the distribution field is part of this model, but is not added to any published release files. The \"distribution\" is defined as the path between 'dists/' and some 'Release' file. As such, it encodes the path to the relevant release file within the APT repository. It is often (but not always) equal to the \"codename\" or the \"suite\".
|
|
82
84
|
# @param deb_release_href
|
|
83
85
|
# @param [Hash] opts the optional parameters
|
|
86
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
84
87
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
85
88
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
86
89
|
# @return [DebReleaseResponse]
|
|
@@ -96,6 +99,7 @@ describe 'ContentReleasesApi' do
|
|
|
96
99
|
# @param deb_release_href
|
|
97
100
|
# @param set_label
|
|
98
101
|
# @param [Hash] opts the optional parameters
|
|
102
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
99
103
|
# @return [SetLabelResponse]
|
|
100
104
|
describe 'set_label test' do
|
|
101
105
|
it 'should work' do
|
|
@@ -109,6 +113,7 @@ describe 'ContentReleasesApi' do
|
|
|
109
113
|
# @param deb_release_href
|
|
110
114
|
# @param unset_label
|
|
111
115
|
# @param [Hash] opts the optional parameters
|
|
116
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
112
117
|
# @return [UnsetLabelResponse]
|
|
113
118
|
describe 'unset_label test' do
|
|
114
119
|
it 'should work' do
|
|
@@ -37,6 +37,7 @@ describe 'ContentSourceIndicesApi' do
|
|
|
37
37
|
# A SourceIndex represents the source indices of a single component. Associated artifacts: Exactly one 'Sources' file. May optionally include one or more of 'Sources.gz', 'Sources.xz', 'Release'. If included, the 'Release' file is a legacy per-component-and-architecture Release file (with architecture always being 'source'). Note: The verbatim publisher will republish all associated artifacts, while the APT publisher (both simple and structured mode) will generate any 'Sources' files it needs when creating the publication. It does not make use of SourceIndex content.
|
|
38
38
|
# @param deb_source_index
|
|
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 [DebSourceIndexResponse]
|
|
41
42
|
describe 'create test' do
|
|
42
43
|
it 'should work' do
|
|
@@ -48,6 +49,7 @@ describe 'ContentSourceIndicesApi' do
|
|
|
48
49
|
# List SourceIndices
|
|
49
50
|
# A SourceIndex represents the source indices of a single component. Associated artifacts: Exactly one 'Sources' file. May optionally include one or more of 'Sources.gz', 'Sources.xz', 'Release'. If included, the 'Release' file is a legacy per-component-and-architecture Release file (with architecture always being 'source'). Note: The verbatim publisher will republish all associated artifacts, while the APT publisher (both simple and structured mode) will generate any 'Sources' files it needs when creating the publication. It does not make use of SourceIndex content.
|
|
50
51
|
# @param [Hash] opts the optional parameters
|
|
52
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
51
53
|
# @option opts [String] :component Filter results where component matches value
|
|
52
54
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
53
55
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
@@ -77,6 +79,7 @@ describe 'ContentSourceIndicesApi' do
|
|
|
77
79
|
# A SourceIndex represents the source indices of a single component. Associated artifacts: Exactly one 'Sources' file. May optionally include one or more of 'Sources.gz', 'Sources.xz', 'Release'. If included, the 'Release' file is a legacy per-component-and-architecture Release file (with architecture always being 'source'). Note: The verbatim publisher will republish all associated artifacts, while the APT publisher (both simple and structured mode) will generate any 'Sources' files it needs when creating the publication. It does not make use of SourceIndex content.
|
|
78
80
|
# @param deb_source_index_href
|
|
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
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
81
84
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
82
85
|
# @return [DebSourceIndexResponse]
|
|
@@ -92,6 +95,7 @@ describe 'ContentSourceIndicesApi' do
|
|
|
92
95
|
# @param deb_source_index_href
|
|
93
96
|
# @param set_label
|
|
94
97
|
# @param [Hash] opts the optional parameters
|
|
98
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
95
99
|
# @return [SetLabelResponse]
|
|
96
100
|
describe 'set_label test' do
|
|
97
101
|
it 'should work' do
|
|
@@ -105,6 +109,7 @@ describe 'ContentSourceIndicesApi' do
|
|
|
105
109
|
# @param deb_source_index_href
|
|
106
110
|
# @param unset_label
|
|
107
111
|
# @param [Hash] opts the optional parameters
|
|
112
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
108
113
|
# @return [UnsetLabelResponse]
|
|
109
114
|
describe 'unset_label test' do
|
|
110
115
|
it 'should work' do
|
|
@@ -37,6 +37,7 @@ describe 'ContentSourcePackagesApi' do
|
|
|
37
37
|
# Trigger an asynchronous task to create content,optionally create new repository version.
|
|
38
38
|
# @param deb_source_package
|
|
39
39
|
# @param [Hash] opts the optional parameters
|
|
40
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
40
41
|
# @return [AsyncOperationResponse]
|
|
41
42
|
describe 'create test' do
|
|
42
43
|
it 'should work' do
|
|
@@ -48,6 +49,7 @@ describe 'ContentSourcePackagesApi' do
|
|
|
48
49
|
# List source packages
|
|
49
50
|
# A Debian Source Package file represents a '.dsc' file along with its associated artifacts such as orig.tar.gz, debian.tar.gz... Associated artifacts: Exactly one '.dsc' file.
|
|
50
51
|
# @param [Hash] opts the optional parameters
|
|
52
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
51
53
|
# @option opts [String] :architecture Filter results where architecture matches value
|
|
52
54
|
# @option opts [String] :binary Filter results where binary matches value
|
|
53
55
|
# @option opts [String] :build_conflicts Filter results where build_conflicts matches value
|
|
@@ -104,6 +106,7 @@ describe 'ContentSourcePackagesApi' do
|
|
|
104
106
|
# A Debian Source Package file represents a '.dsc' file along with its associated artifacts such as orig.tar.gz, debian.tar.gz... Associated artifacts: Exactly one '.dsc' file.
|
|
105
107
|
# @param deb_source_package_href
|
|
106
108
|
# @param [Hash] opts the optional parameters
|
|
109
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
107
110
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
108
111
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
109
112
|
# @return [DebSourcePackageResponse]
|
|
@@ -119,6 +122,7 @@ describe 'ContentSourcePackagesApi' do
|
|
|
119
122
|
# @param deb_source_package_href
|
|
120
123
|
# @param set_label
|
|
121
124
|
# @param [Hash] opts the optional parameters
|
|
125
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
122
126
|
# @return [SetLabelResponse]
|
|
123
127
|
describe 'set_label test' do
|
|
124
128
|
it 'should work' do
|
|
@@ -132,6 +136,7 @@ describe 'ContentSourcePackagesApi' do
|
|
|
132
136
|
# @param deb_source_package_href
|
|
133
137
|
# @param unset_label
|
|
134
138
|
# @param [Hash] opts the optional parameters
|
|
139
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
135
140
|
# @return [UnsetLabelResponse]
|
|
136
141
|
describe 'unset_label test' do
|
|
137
142
|
it 'should work' do
|