pulp_deb_client 3.5.2 → 3.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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/DebAptDistribution.md +3 -1
- data/docs/DebAptDistributionResponse.md +3 -1
- data/docs/DebAptPublication.md +2 -0
- data/docs/DebAptPublicationResponse.md +2 -0
- data/docs/DebCopyApi.md +8 -4
- data/docs/DistributionsAptApi.md +72 -32
- data/docs/PatcheddebAptDistribution.md +3 -1
- 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/models/deb_apt_distribution.rb +14 -5
- data/lib/pulp_deb_client/models/deb_apt_distribution_response.rb +14 -5
- data/lib/pulp_deb_client/models/deb_apt_publication.rb +10 -1
- data/lib/pulp_deb_client/models/deb_apt_publication_response.rb +10 -1
- data/lib/pulp_deb_client/models/patcheddeb_apt_distribution.rb +14 -5
- 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
- data/spec/models/deb_apt_distribution_response_spec.rb +6 -0
- data/spec/models/deb_apt_distribution_spec.rb +6 -0
- data/spec/models/deb_apt_publication_response_spec.rb +6 -0
- data/spec/models/deb_apt_publication_spec.rb +6 -0
- data/spec/models/patcheddeb_apt_distribution_spec.rb +6 -0
- metadata +75 -75
@@ -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
|
@@ -37,6 +37,7 @@ describe 'ContentSourceReleaseComponentsApi' do
|
|
37
37
|
# A SourcePackageReleaseComponent associates a SourcePackage with a ReleaseComponent. Associated artifacts: None; contains only metadata. This simply stores the information on which source packages are part of which components.
|
38
38
|
# @param deb_source_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 [DebSourcePackageReleaseComponentResponse]
|
41
42
|
describe 'create test' do
|
42
43
|
it 'should work' do
|
@@ -48,6 +49,7 @@ describe 'ContentSourceReleaseComponentsApi' do
|
|
48
49
|
# List source package release components
|
49
50
|
# A SourcePackageReleaseComponent associates a SourcePackage with a ReleaseComponent. Associated artifacts: None; contains only metadata. This simply stores the information on which source 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 'ContentSourceReleaseComponentsApi' do
|
|
76
78
|
# A SourcePackageReleaseComponent associates a SourcePackage with a ReleaseComponent. Associated artifacts: None; contains only metadata. This simply stores the information on which source packages are part of which components.
|
77
79
|
# @param deb_source_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 [DebSourcePackageReleaseComponentResponse]
|
@@ -91,6 +94,7 @@ describe 'ContentSourceReleaseComponentsApi' do
|
|
91
94
|
# @param deb_source_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 'ContentSourceReleaseComponentsApi' do
|
|
104
108
|
# @param deb_source_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
|
@@ -37,6 +37,7 @@ describe 'DebCopyApi' do
|
|
37
37
|
# Trigger an asynchronous task to copy APT 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
|
@@ -38,6 +38,7 @@ describe 'DistributionsAptApi' do
|
|
38
38
|
# @param deb_apt_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 'DistributionsAptApi' do
|
|
50
51
|
# Trigger an asynchronous create task
|
51
52
|
# @param deb_apt_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 'DistributionsAptApi' do
|
|
62
64
|
# Trigger an asynchronous delete task
|
63
65
|
# @param deb_apt_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 'DistributionsAptApi' do
|
|
73
76
|
# List apt distributions
|
74
77
|
# An AptDistribution is just an AptPublication made available via the content app. Creating an AptDistribution is a comparatively quick action. This way Pulp users may take as much time as is needed to prepare a VerbatimPublication or AptPublication, and then control the exact moment when that publication is made available.
|
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 'DistributionsAptApi' do
|
|
112
116
|
# List roles assigned to this object.
|
113
117
|
# @param deb_apt_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 'DistributionsAptApi' do
|
|
126
131
|
# List permissions available to the current user on this object.
|
127
132
|
# @param deb_apt_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 'DistributionsAptApi' do
|
|
141
147
|
# @param deb_apt_distribution_href
|
142
148
|
# @param patcheddeb_apt_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 'DistributionsAptApi' do
|
|
153
160
|
# An AptDistribution is just an AptPublication made available via the content app. Creating an AptDistribution is a comparatively quick action. This way Pulp users may take as much time as is needed to prepare a VerbatimPublication or AptPublication, and then control the exact moment when that publication is made available.
|
154
161
|
# @param deb_apt_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 [DebAptDistributionResponse]
|
@@ -168,6 +176,7 @@ describe 'DistributionsAptApi' do
|
|
168
176
|
# @param deb_apt_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 'DistributionsAptApi' do
|
|
181
190
|
# @param deb_apt_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 'DistributionsAptApi' do
|
|
194
204
|
# @param deb_apt_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 'DistributionsAptApi' do
|
|
207
218
|
# @param deb_apt_distribution_href
|
208
219
|
# @param deb_apt_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 'PublicationsAptApi' do
|
|
38
38
|
# @param deb_apt_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 'PublicationsAptApi' do
|
|
50
51
|
# Trigger an asynchronous task to publish content
|
51
52
|
# @param deb_apt_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 'PublicationsAptApi' do
|
|
62
64
|
# An AptPublication is the ready to serve Pulp-internal representation of an AptRepositoryVersion. When creating an APT publication, users must use simple or structured mode (or both). If the publication should include '.deb' packages that were manually uploaded to the relevant AptRepository, users must use 'simple=true'. Conversely, 'structured=true' is only useful for publishing content obtained via synchronization. Once a Pulp publication has been created, it can be served by creating a Pulp distribution (in a near atomic action).
|
63
65
|
# @param deb_apt_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 'PublicationsAptApi' do
|
|
73
76
|
# List apt publications
|
74
77
|
# An AptPublication is the ready to serve Pulp-internal representation of an AptRepositoryVersion. When creating an APT publication, users must use simple or structured mode (or both). If the publication should include '.deb' packages that were manually uploaded to the relevant AptRepository, users must use 'simple=true'. Conversely, 'structured=true' is only useful for publishing content obtained via synchronization. Once a Pulp publication has been created, it can be served by creating a Pulp distribution (in a near atomic action).
|
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 'PublicationsAptApi' do
|
|
106
110
|
# List roles assigned to this object.
|
107
111
|
# @param deb_apt_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 'PublicationsAptApi' do
|
|
120
125
|
# List permissions available to the current user on this object.
|
121
126
|
# @param deb_apt_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 'PublicationsAptApi' do
|
|
134
140
|
# An AptPublication is the ready to serve Pulp-internal representation of an AptRepositoryVersion. When creating an APT publication, users must use simple or structured mode (or both). If the publication should include '.deb' packages that were manually uploaded to the relevant AptRepository, users must use 'simple=true'. Conversely, 'structured=true' is only useful for publishing content obtained via synchronization. Once a Pulp publication has been created, it can be served by creating a Pulp distribution (in a near atomic action).
|
135
141
|
# @param deb_apt_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 [DebAptPublicationResponse]
|
@@ -149,6 +156,7 @@ describe 'PublicationsAptApi' do
|
|
149
156
|
# @param deb_apt_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 'PublicationsVerbatimApi' do
|
|
38
38
|
# @param deb_verbatim_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 'PublicationsVerbatimApi' do
|
|
50
51
|
# Trigger an asynchronous task to publish content
|
51
52
|
# @param deb_verbatim_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 'PublicationsVerbatimApi' do
|
|
62
64
|
# An VerbatimPublication is the Pulp-internal representation of a \"mirrored\" AptRepositoryVersion. In other words, the verbatim publisher will recreate the synced subset of some a APT repository using the exact same metadata files and signatures as used by the upstream original. Once a Pulp publication has been created, it can be served by creating a Pulp distribution (in a near atomic action).
|
63
65
|
# @param deb_verbatim_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 'PublicationsVerbatimApi' do
|
|
73
76
|
# List verbatim publications
|
74
77
|
# An VerbatimPublication is the Pulp-internal representation of a \"mirrored\" AptRepositoryVersion. In other words, the verbatim publisher will recreate the synced subset of some a APT repository using the exact same metadata files and signatures as used by the upstream original. Once a Pulp publication has been created, it can be served by creating a Pulp distribution (in a near atomic action).
|
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 'PublicationsVerbatimApi' do
|
|
106
110
|
# List roles assigned to this object.
|
107
111
|
# @param deb_verbatim_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 'PublicationsVerbatimApi' do
|
|
120
125
|
# List permissions available to the current user on this object.
|
121
126
|
# @param deb_verbatim_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 'PublicationsVerbatimApi' do
|
|
134
140
|
# An VerbatimPublication is the Pulp-internal representation of a \"mirrored\" AptRepositoryVersion. In other words, the verbatim publisher will recreate the synced subset of some a APT repository using the exact same metadata files and signatures as used by the upstream original. Once a Pulp publication has been created, it can be served by creating a Pulp distribution (in a near atomic action).
|
135
141
|
# @param deb_verbatim_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 [DebVerbatimPublicationResponse]
|
@@ -149,6 +156,7 @@ describe 'PublicationsVerbatimApi' do
|
|
149
156
|
# @param deb_verbatim_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 'RemotesAptApi' do
|
|
38
38
|
# @param deb_apt_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 'RemotesAptApi' do
|
|
50
51
|
# An AptRemote represents an external APT repository content source. It contains the location of the upstream APT repository, as well as the user options that are applied when using the remote to synchronize the upstream repository to Pulp.
|
51
52
|
# @param deb_apt_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 [DebAptRemoteResponse]
|
54
56
|
describe 'create test' do
|
55
57
|
it 'should work' do
|
@@ -62,6 +64,7 @@ describe 'RemotesAptApi' do
|
|
62
64
|
# Trigger an asynchronous delete task
|
63
65
|
# @param deb_apt_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 'RemotesAptApi' do
|
|
73
76
|
# List apt remotes
|
74
77
|
# An AptRemote represents an external APT repository content source. It contains the location of the upstream APT repository, as well as the user options that are applied when using the remote to synchronize the upstream repository to Pulp.
|
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 'RemotesAptApi' do
|
|
111
115
|
# List roles assigned to this object.
|
112
116
|
# @param deb_apt_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 'RemotesAptApi' do
|
|
125
130
|
# List permissions available to the current user on this object.
|
126
131
|
# @param deb_apt_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 'RemotesAptApi' do
|
|
140
146
|
# @param deb_apt_remote_href
|
141
147
|
# @param patcheddeb_apt_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 'RemotesAptApi' do
|
|
152
159
|
# An AptRemote represents an external APT repository content source. It contains the location of the upstream APT repository, as well as the user options that are applied when using the remote to synchronize the upstream repository to Pulp.
|
153
160
|
# @param deb_apt_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 [DebAptRemoteResponse]
|
@@ -167,6 +175,7 @@ describe 'RemotesAptApi' do
|
|
167
175
|
# @param deb_apt_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 'RemotesAptApi' do
|
|
180
189
|
# @param deb_apt_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 'RemotesAptApi' do
|
|
193
203
|
# @param deb_apt_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 'RemotesAptApi' do
|
|
206
217
|
# @param deb_apt_remote_href
|
207
218
|
# @param deb_apt_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
|