pulp_python_client 3.15.1 → 3.17.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 +22 -17
- data/docs/ContentPackagesApi.md +58 -36
- data/docs/DistributionsPypiApi.md +72 -32
- data/docs/PublicationsPypiApi.md +40 -16
- data/docs/PypiApi.md +2 -0
- data/docs/PypiLegacyApi.md +2 -0
- data/docs/PypiMetadataApi.md +2 -0
- data/docs/PypiSimpleApi.md +6 -0
- data/docs/PythonPythonPackageContentResponse.md +46 -36
- data/docs/RemotesPythonApi.md +74 -32
- data/docs/RepositoriesPythonApi.md +96 -44
- data/docs/RepositoriesPythonVersionsApi.md +22 -10
- data/lib/pulp_python_client/api/content_packages_api.rb +69 -42
- data/lib/pulp_python_client/api/distributions_pypi_api.rb +36 -0
- data/lib/pulp_python_client/api/publications_pypi_api.rb +24 -0
- data/lib/pulp_python_client/api/pypi_api.rb +3 -0
- data/lib/pulp_python_client/api/pypi_legacy_api.rb +3 -0
- data/lib/pulp_python_client/api/pypi_metadata_api.rb +3 -0
- data/lib/pulp_python_client/api/pypi_simple_api.rb +9 -0
- data/lib/pulp_python_client/api/remotes_python_api.rb +39 -0
- data/lib/pulp_python_client/api/repositories_python_api.rb +45 -0
- data/lib/pulp_python_client/api/repositories_python_versions_api.rb +15 -3
- data/lib/pulp_python_client/models/python_python_package_content_response.rb +199 -146
- data/lib/pulp_python_client/version.rb +1 -1
- data/spec/api/content_packages_api_spec.rb +23 -14
- data/spec/api/distributions_pypi_api_spec.rb +12 -0
- data/spec/api/publications_pypi_api_spec.rb +8 -0
- data/spec/api/pypi_api_spec.rb +1 -0
- data/spec/api/pypi_legacy_api_spec.rb +1 -0
- data/spec/api/pypi_metadata_api_spec.rb +1 -0
- data/spec/api/pypi_simple_api_spec.rb +3 -0
- data/spec/api/remotes_python_api_spec.rb +13 -0
- data/spec/api/repositories_python_api_spec.rb +15 -0
- data/spec/api/repositories_python_versions_api_spec.rb +5 -1
- data/spec/models/python_python_package_content_response_spec.rb +54 -24
- metadata +39 -39
@@ -37,34 +37,39 @@ describe 'ContentPackagesApi' 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
|
43
44
|
# @option opts [File] :file An uploaded file that may be turned into the content unit.
|
44
45
|
# @option opts [String] :upload An uncommitted upload that may be turned into the content unit.
|
45
46
|
# @option opts [String] :file_url A url that Pulp can download and turn into the content unit.
|
46
|
-
# @option opts [String] :
|
47
|
-
# @option opts [String] :
|
47
|
+
# @option opts [String] :author Text containing the author's name. Contact information can also be added, separated with newlines.
|
48
|
+
# @option opts [String] :author_email The author's e-mail address.
|
48
49
|
# @option opts [String] :description A longer description of the package that can run to several paragraphs.
|
49
|
-
# @option opts [String] :description_content_type A string stating the markup syntax (if any) used in the distribution’s description, so that tools can intelligently render the description.
|
50
|
-
# @option opts [String] :keywords Additional keywords to be used to assist searching for the package in a larger catalog.
|
51
50
|
# @option opts [String] :home_page The URL for the package's home page.
|
51
|
+
# @option opts [String] :keywords Additional keywords to be used to assist searching for the package in a larger catalog.
|
52
|
+
# @option opts [String] :license Text indicating the license covering the distribution
|
53
|
+
# @option opts [String] :platform A comma-separated list of platform specifications, summarizing the operating systems supported by the package.
|
54
|
+
# @option opts [String] :summary A one-line summary of what the package does.
|
55
|
+
# @option opts [Object] :classifiers A JSON list containing classification values for a Python package.
|
52
56
|
# @option opts [String] :download_url Legacy field denoting the URL from which this package can be downloaded.
|
53
|
-
# @option opts [String] :
|
54
|
-
# @option opts [String] :author_email The author's e-mail address.
|
57
|
+
# @option opts [String] :supported_platform Field to specify the OS and CPU for which the binary package was compiled.
|
55
58
|
# @option opts [String] :maintainer The maintainer's name at a minimum; additional contact information may be provided.
|
56
59
|
# @option opts [String] :maintainer_email The maintainer's e-mail address.
|
57
|
-
# @option opts [
|
58
|
-
# @option opts [String] :requires_python The Python version(s) that the distribution is guaranteed to be compatible with.
|
60
|
+
# @option opts [Object] :obsoletes_dist A JSON list containing names of a distutils project's distribution which this distribution renders obsolete, meaning that the two projects should not be installed at the same time.
|
59
61
|
# @option opts [String] :project_url A browsable URL for the project and a label for it, separated by a comma.
|
60
62
|
# @option opts [Object] :project_urls A dictionary of labels and URLs for the project.
|
61
|
-
# @option opts [String] :platform A comma-separated list of platform specifications, summarizing the operating systems supported by the package.
|
62
|
-
# @option opts [String] :supported_platform Field to specify the OS and CPU for which the binary package was compiled.
|
63
|
-
# @option opts [Object] :requires_dist A JSON list containing names of some other distutils project required by this distribution.
|
64
63
|
# @option opts [Object] :provides_dist A JSON list containing names of a Distutils project which is contained within this distribution.
|
65
|
-
# @option opts [Object] :obsoletes_dist A JSON list containing names of a distutils project's distribution which this distribution renders obsolete, meaning that the two projects should not be installed at the same time.
|
66
64
|
# @option opts [Object] :requires_external A JSON list containing some dependency in the system that the distribution is to be used.
|
67
|
-
# @option opts [Object] :
|
65
|
+
# @option opts [Object] :requires_dist A JSON list containing names of some other distutils project required by this distribution.
|
66
|
+
# @option opts [String] :requires_python The Python version(s) that the distribution is guaranteed to be compatible with.
|
67
|
+
# @option opts [String] :description_content_type A string stating the markup syntax (if any) used in the distribution’s description, so that tools can intelligently render the description.
|
68
|
+
# @option opts [Object] :provides_extras A JSON list containing names of optional features provided by the package.
|
69
|
+
# @option opts [Object] :dynamic A JSON list containing names of other core metadata fields which are permitted to vary between sdist and bdist packages. Fields NOT marked dynamic MUST be the same between bdist and sdist.
|
70
|
+
# @option opts [String] :license_expression Text string that is a valid SPDX license expression.
|
71
|
+
# @option opts [Object] :license_file A JSON list containing names of the paths to license-related files.
|
72
|
+
# @option opts [String] :sha256 The SHA256 digest of this package.
|
68
73
|
# @return [AsyncOperationResponse]
|
69
74
|
describe 'create test' do
|
70
75
|
it 'should work' do
|
@@ -76,6 +81,7 @@ describe 'ContentPackagesApi' do
|
|
76
81
|
# List python package contents
|
77
82
|
# PythonPackageContent represents each individually installable Python package. In the Python ecosystem, this is called a Python Distribution, sometimes (ambiguously) refered to as a package. In Pulp Python, we refer to it as PythonPackageContent. Each PythonPackageContent corresponds to a single filename, for example `pulpcore-3.0.0rc1-py3-none-any.whl` or `pulpcore-3.0.0rc1.tar.gz`.
|
78
83
|
# @param [Hash] opts the optional parameters
|
84
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
79
85
|
# @option opts [String] :author Filter results where author matches value
|
80
86
|
# @option opts [Array<String>] :author__in Filter results where author is in a comma-separated list of values
|
81
87
|
# @option opts [String] :filename Filter results where filename matches value
|
@@ -87,7 +93,7 @@ describe 'ContentPackagesApi' do
|
|
87
93
|
# @option opts [String] :name Filter results where name matches value
|
88
94
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
89
95
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
90
|
-
# @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) * `
|
96
|
+
# @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) * `author` - Author * `-author` - Author (descending) * `author_email` - Author email * `-author_email` - Author email (descending) * `description` - Description * `-description` - Description (descending) * `home_page` - Home page * `-home_page` - Home page (descending) * `keywords` - Keywords * `-keywords` - Keywords (descending) * `license` - License * `-license` - License (descending) * `metadata_version` - Metadata version * `-metadata_version` - Metadata version (descending) * `name` - Name * `-name` - Name (descending) * `platform` - Platform * `-platform` - Platform (descending) * `summary` - Summary * `-summary` - Summary (descending) * `version` - Version * `-version` - Version (descending) * `classifiers` - Classifiers * `-classifiers` - Classifiers (descending) * `download_url` - Download url * `-download_url` - Download url (descending) * `supported_platform` - Supported platform * `-supported_platform` - Supported platform (descending) * `maintainer` - Maintainer * `-maintainer` - Maintainer (descending) * `maintainer_email` - Maintainer email * `-maintainer_email` - Maintainer email (descending) * `obsoletes_dist` - Obsoletes dist * `-obsoletes_dist` - Obsoletes dist (descending) * `project_url` - Project url * `-project_url` - Project url (descending) * `project_urls` - Project urls * `-project_urls` - Project urls (descending) * `provides_dist` - Provides dist * `-provides_dist` - Provides dist (descending) * `requires_external` - Requires external * `-requires_external` - Requires external (descending) * `requires_dist` - Requires dist * `-requires_dist` - Requires dist (descending) * `requires_python` - Requires python * `-requires_python` - Requires python (descending) * `description_content_type` - Description content type * `-description_content_type` - Description content type (descending) * `provides_extras` - Provides extras * `-provides_extras` - Provides extras (descending) * `dynamic` - Dynamic * `-dynamic` - Dynamic (descending) * `license_expression` - License expression * `-license_expression` - License expression (descending) * `license_file` - License file * `-license_file` - License file (descending) * `filename` - Filename * `-filename` - Filename (descending) * `packagetype` - Packagetype * `-packagetype` - Packagetype (descending) * `python_version` - Python version * `-python_version` - Python version (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
91
97
|
# @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
|
92
98
|
# @option opts [String] :packagetype Filter results where packagetype matches value * `bdist_dmg` - bdist_dmg * `bdist_dumb` - bdist_dumb * `bdist_egg` - bdist_egg * `bdist_msi` - bdist_msi * `bdist_rpm` - bdist_rpm * `bdist_wheel` - bdist_wheel * `bdist_wininst` - bdist_wininst * `sdist` - sdist
|
93
99
|
# @option opts [Array<String>] :packagetype__in Filter results where packagetype is in a comma-separated list of values
|
@@ -123,6 +129,7 @@ describe 'ContentPackagesApi' do
|
|
123
129
|
# PythonPackageContent represents each individually installable Python package. In the Python ecosystem, this is called a Python Distribution, sometimes (ambiguously) refered to as a package. In Pulp Python, we refer to it as PythonPackageContent. Each PythonPackageContent corresponds to a single filename, for example `pulpcore-3.0.0rc1-py3-none-any.whl` or `pulpcore-3.0.0rc1.tar.gz`.
|
124
130
|
# @param python_python_package_content_href
|
125
131
|
# @param [Hash] opts the optional parameters
|
132
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
126
133
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
127
134
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
128
135
|
# @return [PythonPythonPackageContentResponse]
|
@@ -138,6 +145,7 @@ describe 'ContentPackagesApi' do
|
|
138
145
|
# @param python_python_package_content_href
|
139
146
|
# @param set_label
|
140
147
|
# @param [Hash] opts the optional parameters
|
148
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
141
149
|
# @return [SetLabelResponse]
|
142
150
|
describe 'set_label test' do
|
143
151
|
it 'should work' do
|
@@ -151,6 +159,7 @@ describe 'ContentPackagesApi' do
|
|
151
159
|
# @param python_python_package_content_href
|
152
160
|
# @param unset_label
|
153
161
|
# @param [Hash] opts the optional parameters
|
162
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
154
163
|
# @return [UnsetLabelResponse]
|
155
164
|
describe 'unset_label test' do
|
156
165
|
it 'should work' do
|
@@ -38,6 +38,7 @@ describe 'DistributionsPypiApi' do
|
|
38
38
|
# @param python_python_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 'DistributionsPypiApi' do
|
|
50
51
|
# Trigger an asynchronous create task
|
51
52
|
# @param python_python_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 'DistributionsPypiApi' do
|
|
62
64
|
# Trigger an asynchronous delete task
|
63
65
|
# @param python_python_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 'DistributionsPypiApi' do
|
|
73
76
|
# List python distributions
|
74
77
|
# Pulp Python Distributions are used to distribute Python content from Python Repositories or Python Publications. Pulp Python Distributions should not be confused with \"Python Distribution\" as defined by the Python community. In Pulp usage, Python content is referred to as Python Package Content.
|
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 'DistributionsPypiApi' do
|
|
112
116
|
# List roles assigned to this object.
|
113
117
|
# @param python_python_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 'DistributionsPypiApi' do
|
|
126
131
|
# List permissions available to the current user on this object.
|
127
132
|
# @param python_python_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 'DistributionsPypiApi' do
|
|
141
147
|
# @param python_python_distribution_href
|
142
148
|
# @param patchedpython_python_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 'DistributionsPypiApi' do
|
|
153
160
|
# Pulp Python Distributions are used to distribute Python content from Python Repositories or Python Publications. Pulp Python Distributions should not be confused with \"Python Distribution\" as defined by the Python community. In Pulp usage, Python content is referred to as Python Package Content.
|
154
161
|
# @param python_python_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 [PythonPythonDistributionResponse]
|
@@ -168,6 +176,7 @@ describe 'DistributionsPypiApi' do
|
|
168
176
|
# @param python_python_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 'DistributionsPypiApi' do
|
|
181
190
|
# @param python_python_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 'DistributionsPypiApi' do
|
|
194
204
|
# @param python_python_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 'DistributionsPypiApi' do
|
|
207
218
|
# @param python_python_distribution_href
|
208
219
|
# @param python_python_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 'PublicationsPypiApi' do
|
|
38
38
|
# @param python_python_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 'PublicationsPypiApi' do
|
|
50
51
|
# Dispatches a publish task, which generates metadata that will be used by pip.
|
51
52
|
# @param python_python_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 'PublicationsPypiApi' do
|
|
62
64
|
# Python Publications refer to the Python Package content in a repository version, and include metadata about that content.
|
63
65
|
# @param python_python_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 'PublicationsPypiApi' do
|
|
73
76
|
# List python publications
|
74
77
|
# Python Publications refer to the Python Package content in a repository version, and include metadata about that content.
|
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 'PublicationsPypiApi' do
|
|
106
110
|
# List roles assigned to this object.
|
107
111
|
# @param python_python_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 'PublicationsPypiApi' do
|
|
120
125
|
# List permissions available to the current user on this object.
|
121
126
|
# @param python_python_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 'PublicationsPypiApi' do
|
|
134
140
|
# Python Publications refer to the Python Package content in a repository version, and include metadata about that content.
|
135
141
|
# @param python_python_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 [PythonPythonPublicationResponse]
|
@@ -149,6 +156,7 @@ describe 'PublicationsPypiApi' do
|
|
149
156
|
# @param python_python_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
|
data/spec/api/pypi_api_spec.rb
CHANGED
@@ -37,6 +37,7 @@ describe 'PypiApi' do
|
|
37
37
|
# Gets package summary stats of index.
|
38
38
|
# @param 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 [Array<String>] :fields A list of fields to include in the response.
|
41
42
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
42
43
|
# @return [SummaryResponse]
|
@@ -39,6 +39,7 @@ describe 'PypiLegacyApi' do
|
|
39
39
|
# @param content A Python package release file to upload to the index.
|
40
40
|
# @param sha256_digest SHA256 of package to validate upload integrity.
|
41
41
|
# @param [Hash] opts the optional parameters
|
42
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
42
43
|
# @option opts [String] :action Defaults to `file_upload`, don't change it or request will fail!
|
43
44
|
# @return [PackageUploadTaskResponse]
|
44
45
|
describe 'create test' do
|
@@ -38,6 +38,7 @@ describe 'PypiMetadataApi' do
|
|
38
38
|
# @param meta
|
39
39
|
# @param path
|
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
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
42
43
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
43
44
|
# @return [PackageMetadataResponse]
|
@@ -39,6 +39,7 @@ describe 'PypiSimpleApi' do
|
|
39
39
|
# @param content A Python package release file to upload to the index.
|
40
40
|
# @param sha256_digest SHA256 of package to validate upload integrity.
|
41
41
|
# @param [Hash] opts the optional parameters
|
42
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
42
43
|
# @option opts [String] :action Defaults to `file_upload`, don't change it or request will fail!
|
43
44
|
# @return [PackageUploadTaskResponse]
|
44
45
|
describe 'create test' do
|
@@ -53,6 +54,7 @@ describe 'PypiSimpleApi' do
|
|
53
54
|
# @param package
|
54
55
|
# @param path
|
55
56
|
# @param [Hash] opts the optional parameters
|
57
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
56
58
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
57
59
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
58
60
|
# @return [nil]
|
@@ -67,6 +69,7 @@ describe 'PypiSimpleApi' do
|
|
67
69
|
# Gets the simple api html page for the index.
|
68
70
|
# @param path
|
69
71
|
# @param [Hash] opts the optional parameters
|
72
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
70
73
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
71
74
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
72
75
|
# @return [nil]
|
@@ -38,6 +38,7 @@ describe 'RemotesPythonApi' do
|
|
38
38
|
# @param python_python_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 'RemotesPythonApi' do
|
|
50
51
|
# Python Remotes are representations of an external repository of Python content, eg. PyPI. Fields include upstream repository config. Python Remotes are also used to `sync` from upstream repositories, and contains sync settings.
|
51
52
|
# @param python_python_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 [PythonPythonRemoteResponse]
|
54
56
|
describe 'create test' do
|
55
57
|
it 'should work' do
|
@@ -62,6 +64,7 @@ describe 'RemotesPythonApi' do
|
|
62
64
|
# Trigger an asynchronous delete task
|
63
65
|
# @param python_python_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
|
@@ -75,6 +78,7 @@ describe 'RemotesPythonApi' do
|
|
75
78
|
# @param config A Bandersnatch config that may be used to construct a Python Remote.
|
76
79
|
# @param name A unique name for this remote
|
77
80
|
# @param [Hash] opts the optional parameters
|
81
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
78
82
|
# @option opts [PolicyEnum] :policy The policy to use when downloading content. The possible values include: 'immediate', 'on_demand', and 'streamed'. 'on_demand' is the default. * `immediate` - When syncing, download all metadata and content now. * `on_demand` - When syncing, download metadata, but do not download content now. Instead, download content as clients request it, and save it in Pulp to be served for future client requests. * `streamed` - When syncing, download metadata, but do not download content now. Instead,download content as clients request it, but never save it in Pulp. This causes future requests for that same content to have to be downloaded again.
|
79
83
|
# @return [PythonPythonRemoteResponse]
|
80
84
|
describe 'from_bandersnatch test' do
|
@@ -87,6 +91,7 @@ describe 'RemotesPythonApi' do
|
|
87
91
|
# List python remotes
|
88
92
|
# Python Remotes are representations of an external repository of Python content, eg. PyPI. Fields include upstream repository config. Python Remotes are also used to `sync` from upstream repositories, and contains sync settings.
|
89
93
|
# @param [Hash] opts the optional parameters
|
94
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
90
95
|
# @option opts [Integer] :limit Number of results to return per page.
|
91
96
|
# @option opts [String] :name Filter results where name matches value
|
92
97
|
# @option opts [String] :name__contains Filter results where name contains value
|
@@ -125,6 +130,7 @@ describe 'RemotesPythonApi' do
|
|
125
130
|
# List roles assigned to this object.
|
126
131
|
# @param python_python_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 [ObjectRolesResponse]
|
@@ -139,6 +145,7 @@ describe 'RemotesPythonApi' do
|
|
139
145
|
# List permissions available to the current user on this object.
|
140
146
|
# @param python_python_remote_href
|
141
147
|
# @param [Hash] opts the optional parameters
|
148
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
142
149
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
143
150
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
144
151
|
# @return [MyPermissionsResponse]
|
@@ -154,6 +161,7 @@ describe 'RemotesPythonApi' do
|
|
154
161
|
# @param python_python_remote_href
|
155
162
|
# @param patchedpython_python_remote
|
156
163
|
# @param [Hash] opts the optional parameters
|
164
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
157
165
|
# @return [AsyncOperationResponse]
|
158
166
|
describe 'partial_update test' do
|
159
167
|
it 'should work' do
|
@@ -166,6 +174,7 @@ describe 'RemotesPythonApi' do
|
|
166
174
|
# Python Remotes are representations of an external repository of Python content, eg. PyPI. Fields include upstream repository config. Python Remotes are also used to `sync` from upstream repositories, and contains sync settings.
|
167
175
|
# @param python_python_remote_href
|
168
176
|
# @param [Hash] opts the optional parameters
|
177
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
169
178
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
170
179
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
171
180
|
# @return [PythonPythonRemoteResponse]
|
@@ -181,6 +190,7 @@ describe 'RemotesPythonApi' do
|
|
181
190
|
# @param python_python_remote_href
|
182
191
|
# @param nested_role
|
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 [NestedRoleResponse]
|
185
195
|
describe 'remove_role test' do
|
186
196
|
it 'should work' do
|
@@ -194,6 +204,7 @@ describe 'RemotesPythonApi' do
|
|
194
204
|
# @param python_python_remote_href
|
195
205
|
# @param set_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 [SetLabelResponse]
|
198
209
|
describe 'set_label test' do
|
199
210
|
it 'should work' do
|
@@ -207,6 +218,7 @@ describe 'RemotesPythonApi' do
|
|
207
218
|
# @param python_python_remote_href
|
208
219
|
# @param unset_label
|
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 [UnsetLabelResponse]
|
211
223
|
describe 'unset_label test' do
|
212
224
|
it 'should work' do
|
@@ -220,6 +232,7 @@ describe 'RemotesPythonApi' do
|
|
220
232
|
# @param python_python_remote_href
|
221
233
|
# @param python_python_remote
|
222
234
|
# @param [Hash] opts the optional parameters
|
235
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
223
236
|
# @return [AsyncOperationResponse]
|
224
237
|
describe 'update test' do
|
225
238
|
it 'should work' do
|
@@ -38,6 +38,7 @@ describe 'RepositoriesPythonApi' do
|
|
38
38
|
# @param python_python_repository_href
|
39
39
|
# @param nested_role
|
40
40
|
# @param [Hash] opts the optional parameters
|
41
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
41
42
|
# @return [NestedRoleResponse]
|
42
43
|
describe 'add_role test' do
|
43
44
|
it 'should work' do
|
@@ -50,6 +51,7 @@ describe 'RepositoriesPythonApi' do
|
|
50
51
|
# PythonRepository represents a single Python repository, to which content can be synced, added, or removed.
|
51
52
|
# @param python_python_repository
|
52
53
|
# @param [Hash] opts the optional parameters
|
54
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
53
55
|
# @return [PythonPythonRepositoryResponse]
|
54
56
|
describe 'create test' do
|
55
57
|
it 'should work' do
|
@@ -62,6 +64,7 @@ describe 'RepositoriesPythonApi' do
|
|
62
64
|
# Trigger an asynchronous delete task
|
63
65
|
# @param python_python_repository_href
|
64
66
|
# @param [Hash] opts the optional parameters
|
67
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
65
68
|
# @return [AsyncOperationResponse]
|
66
69
|
describe 'delete test' do
|
67
70
|
it 'should work' do
|
@@ -73,6 +76,7 @@ describe 'RepositoriesPythonApi' do
|
|
73
76
|
# List python repositorys
|
74
77
|
# PythonRepository represents a single Python repository, to which content can be synced, added, or removed.
|
75
78
|
# @param [Hash] opts the optional parameters
|
79
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
76
80
|
# @option opts [String] :latest_with_content Content Unit referenced by HREF/PRN
|
77
81
|
# @option opts [Integer] :limit Number of results to return per page.
|
78
82
|
# @option opts [String] :name Filter results where name matches value
|
@@ -115,6 +119,7 @@ describe 'RepositoriesPythonApi' do
|
|
115
119
|
# List roles assigned to this object.
|
116
120
|
# @param python_python_repository_href
|
117
121
|
# @param [Hash] opts the optional parameters
|
122
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
118
123
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
119
124
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
120
125
|
# @return [ObjectRolesResponse]
|
@@ -130,6 +135,7 @@ describe 'RepositoriesPythonApi' do
|
|
130
135
|
# @param python_python_repository_href
|
131
136
|
# @param repository_add_remove_content
|
132
137
|
# @param [Hash] opts the optional parameters
|
138
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
133
139
|
# @return [AsyncOperationResponse]
|
134
140
|
describe 'modify test' do
|
135
141
|
it 'should work' do
|
@@ -142,6 +148,7 @@ describe 'RepositoriesPythonApi' do
|
|
142
148
|
# List permissions available to the current user on this object.
|
143
149
|
# @param python_python_repository_href
|
144
150
|
# @param [Hash] opts the optional parameters
|
151
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
145
152
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
146
153
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
147
154
|
# @return [MyPermissionsResponse]
|
@@ -157,6 +164,7 @@ describe 'RepositoriesPythonApi' do
|
|
157
164
|
# @param python_python_repository_href
|
158
165
|
# @param patchedpython_python_repository
|
159
166
|
# @param [Hash] opts the optional parameters
|
167
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
160
168
|
# @return [AsyncOperationResponse]
|
161
169
|
describe 'partial_update test' do
|
162
170
|
it 'should work' do
|
@@ -169,6 +177,7 @@ describe 'RepositoriesPythonApi' do
|
|
169
177
|
# PythonRepository represents a single Python repository, to which content can be synced, added, or removed.
|
170
178
|
# @param python_python_repository_href
|
171
179
|
# @param [Hash] opts the optional parameters
|
180
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
172
181
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
173
182
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
174
183
|
# @return [PythonPythonRepositoryResponse]
|
@@ -184,6 +193,7 @@ describe 'RepositoriesPythonApi' do
|
|
184
193
|
# @param python_python_repository_href
|
185
194
|
# @param nested_role
|
186
195
|
# @param [Hash] opts the optional parameters
|
196
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
187
197
|
# @return [NestedRoleResponse]
|
188
198
|
describe 'remove_role test' do
|
189
199
|
it 'should work' do
|
@@ -196,6 +206,7 @@ describe 'RepositoriesPythonApi' do
|
|
196
206
|
# Trigger an asynchronous task to repair Python metadata. This task will repair metadata of all packages for the specified `Repository`, without creating a new `RepositoryVersion`.
|
197
207
|
# @param python_python_repository_href
|
198
208
|
# @param [Hash] opts the optional parameters
|
209
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
199
210
|
# @return [AsyncOperationResponse]
|
200
211
|
describe 'repair_metadata test' do
|
201
212
|
it 'should work' do
|
@@ -209,6 +220,7 @@ describe 'RepositoriesPythonApi' do
|
|
209
220
|
# @param python_python_repository_href
|
210
221
|
# @param set_label
|
211
222
|
# @param [Hash] opts the optional parameters
|
223
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
212
224
|
# @return [SetLabelResponse]
|
213
225
|
describe 'set_label test' do
|
214
226
|
it 'should work' do
|
@@ -222,6 +234,7 @@ describe 'RepositoriesPythonApi' do
|
|
222
234
|
# @param python_python_repository_href
|
223
235
|
# @param repository_sync_url
|
224
236
|
# @param [Hash] opts the optional parameters
|
237
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
225
238
|
# @return [AsyncOperationResponse]
|
226
239
|
describe 'sync test' do
|
227
240
|
it 'should work' do
|
@@ -235,6 +248,7 @@ describe 'RepositoriesPythonApi' do
|
|
235
248
|
# @param python_python_repository_href
|
236
249
|
# @param unset_label
|
237
250
|
# @param [Hash] opts the optional parameters
|
251
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
238
252
|
# @return [UnsetLabelResponse]
|
239
253
|
describe 'unset_label test' do
|
240
254
|
it 'should work' do
|
@@ -248,6 +262,7 @@ describe 'RepositoriesPythonApi' do
|
|
248
262
|
# @param python_python_repository_href
|
249
263
|
# @param python_python_repository
|
250
264
|
# @param [Hash] opts the optional parameters
|
265
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
251
266
|
# @return [AsyncOperationResponse]
|
252
267
|
describe 'update test' do
|
253
268
|
it 'should work' do
|
@@ -37,6 +37,7 @@ describe 'RepositoriesPythonVersionsApi' do
|
|
37
37
|
# Trigger an asynchronous task to delete a repository version.
|
38
38
|
# @param python_python_repository_version_href
|
39
39
|
# @param [Hash] opts the optional parameters
|
40
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
40
41
|
# @return [AsyncOperationResponse]
|
41
42
|
describe 'delete test' do
|
42
43
|
it 'should work' do
|
@@ -49,6 +50,7 @@ describe 'RepositoriesPythonVersionsApi' do
|
|
49
50
|
# PythonRepositoryVersion represents a single Python repository version.
|
50
51
|
# @param python_python_repository_href
|
51
52
|
# @param [Hash] opts the optional parameters
|
53
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
52
54
|
# @option opts [String] :content Content Unit referenced by HREF/PRN
|
53
55
|
# @option opts [Array<String>] :content__in Multiple values may be separated by commas.
|
54
56
|
# @option opts [Integer] :limit Number of results to return per page.
|
@@ -59,7 +61,7 @@ describe 'RepositoriesPythonVersionsApi' do
|
|
59
61
|
# @option opts [Integer] :number__lte Filter results where number is less than or equal to value
|
60
62
|
# @option opts [Array<Integer>] :number__range Filter results where number is between two comma separated values
|
61
63
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
62
|
-
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
64
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `number` - Number * `-number` - Number (descending) * `complete` - Complete * `-complete` - Complete (descending) * `info` - Info * `-info` - Info (descending) * `content_ids` - Content ids * `-content_ids` - Content ids (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
63
65
|
# @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
|
64
66
|
# @option opts [Time] :pulp_created Filter results where pulp_created matches value
|
65
67
|
# @option opts [Time] :pulp_created__gt Filter results where pulp_created is greater than value
|
@@ -84,6 +86,7 @@ describe 'RepositoriesPythonVersionsApi' do
|
|
84
86
|
# PythonRepositoryVersion represents a single Python repository version.
|
85
87
|
# @param python_python_repository_version_href
|
86
88
|
# @param [Hash] opts the optional parameters
|
89
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
87
90
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
88
91
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
89
92
|
# @return [RepositoryVersionResponse]
|
@@ -98,6 +101,7 @@ describe 'RepositoriesPythonVersionsApi' do
|
|
98
101
|
# @param python_python_repository_version_href
|
99
102
|
# @param repair
|
100
103
|
# @param [Hash] opts the optional parameters
|
104
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
101
105
|
# @return [AsyncOperationResponse]
|
102
106
|
describe 'repair test' do
|
103
107
|
it 'should work' do
|