pulp_python_client 3.0.0b10 → 3.0.0b11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +46 -33
- data/docs/ContentPackagesApi.md +52 -52
- data/docs/ContentSummary.md +3 -3
- data/docs/ContentSummaryResponse.md +21 -0
- data/docs/DistributionsPypiApi.md +108 -60
- data/docs/InlineResponse200.md +3 -3
- data/docs/InlineResponse2001.md +3 -3
- data/docs/InlineResponse2002.md +3 -3
- data/docs/InlineResponse2003.md +3 -3
- data/docs/InlineResponse2004.md +3 -3
- data/docs/InlineResponse2005.md +3 -3
- data/docs/PatchedpythonPythonDistribution.md +23 -0
- data/docs/PatchedpythonPythonRemote.md +43 -0
- data/docs/PatchedpythonPythonRepository.md +21 -0
- data/docs/PolicyEnum.md +16 -0
- data/docs/PublicationsPypiApi.md +40 -40
- data/docs/PythonBanderRemote.md +19 -0
- data/docs/PythonPythonDistribution.md +1 -7
- data/docs/PythonPythonDistributionResponse.md +29 -0
- data/docs/PythonPythonPackageContent.md +7 -15
- data/docs/PythonPythonPackageContentResponse.md +69 -0
- data/docs/PythonPythonPublication.md +2 -8
- data/docs/PythonPythonPublicationResponse.md +25 -0
- data/docs/PythonPythonRemote.md +4 -10
- data/docs/PythonPythonRemoteResponse.md +49 -0
- data/docs/PythonPythonRepository.md +4 -10
- data/docs/PythonPythonRepositoryResponse.md +29 -0
- data/docs/RemotesPythonApi.md +129 -69
- data/docs/RepositoriesPythonApi.md +97 -73
- data/docs/RepositoriesPythonVersionsApi.md +94 -62
- data/docs/RepositoryAddRemoveContent.md +2 -2
- data/docs/RepositorySyncURL.md +1 -1
- data/docs/RepositoryVersion.md +1 -9
- data/docs/RepositoryVersionResponse.md +25 -0
- data/lib/pulp_python_client.rb +14 -2
- data/lib/pulp_python_client/api/content_packages_api.rb +70 -70
- data/lib/pulp_python_client/api/distributions_pypi_api.rb +153 -90
- data/lib/pulp_python_client/api/publications_pypi_api.rb +59 -59
- data/lib/pulp_python_client/api/remotes_python_api.rb +185 -108
- data/lib/pulp_python_client/api/repositories_python_api.rb +145 -118
- data/lib/pulp_python_client/api/repositories_python_versions_api.rb +137 -92
- data/lib/pulp_python_client/api_client.rb +2 -2
- data/lib/pulp_python_client/api_error.rb +2 -2
- data/lib/pulp_python_client/configuration.rb +3 -3
- data/lib/pulp_python_client/models/async_operation_response.rb +3 -2
- data/lib/pulp_python_client/models/content_summary.rb +9 -15
- data/lib/pulp_python_client/models/content_summary_response.rb +240 -0
- data/lib/pulp_python_client/models/inline_response200.rb +3 -13
- data/lib/pulp_python_client/models/inline_response2001.rb +3 -13
- data/lib/pulp_python_client/models/inline_response2002.rb +3 -13
- data/lib/pulp_python_client/models/inline_response2003.rb +3 -13
- data/lib/pulp_python_client/models/inline_response2004.rb +3 -13
- data/lib/pulp_python_client/models/inline_response2005.rb +3 -13
- data/lib/pulp_python_client/models/patchedpython_python_distribution.rb +240 -0
- data/lib/pulp_python_client/models/patchedpython_python_remote.rb +359 -0
- data/lib/pulp_python_client/models/patchedpython_python_repository.rb +229 -0
- data/lib/pulp_python_client/models/policy_enum.rb +37 -0
- data/lib/pulp_python_client/models/python_bander_remote.rb +228 -0
- data/lib/pulp_python_client/models/python_python_distribution.rb +4 -85
- data/lib/pulp_python_client/models/python_python_distribution_response.rb +279 -0
- data/lib/pulp_python_client/models/python_python_package_content.rb +28 -136
- data/lib/pulp_python_client/models/python_python_package_content_response.rb +467 -0
- data/lib/pulp_python_client/models/python_python_publication.rb +7 -37
- data/lib/pulp_python_client/models/python_python_publication_response.rb +248 -0
- data/lib/pulp_python_client/models/python_python_remote.rb +7 -199
- data/lib/pulp_python_client/models/python_python_remote_response.rb +398 -0
- data/lib/pulp_python_client/models/python_python_repository.rb +18 -78
- data/lib/pulp_python_client/models/python_python_repository_response.rb +271 -0
- data/lib/pulp_python_client/models/repository_add_remove_content.rb +5 -4
- data/lib/pulp_python_client/models/repository_sync_url.rb +3 -8
- data/lib/pulp_python_client/models/repository_version.rb +7 -43
- data/lib/pulp_python_client/models/repository_version_response.rb +246 -0
- data/lib/pulp_python_client/version.rb +3 -3
- data/pulp_python_client.gemspec +4 -4
- data/spec/api/content_packages_api_spec.rb +24 -24
- data/spec/api/distributions_pypi_api_spec.rb +39 -18
- data/spec/api/publications_pypi_api_spec.rb +14 -14
- data/spec/api/remotes_python_api_spec.rb +49 -22
- data/spec/api/repositories_python_api_spec.rb +28 -19
- data/spec/api/repositories_python_versions_api_spec.rb +38 -23
- data/spec/api_client_spec.rb +2 -2
- data/spec/configuration_spec.rb +2 -2
- data/spec/models/async_operation_response_spec.rb +2 -2
- data/spec/models/content_summary_response_spec.rb +53 -0
- data/spec/models/content_summary_spec.rb +2 -2
- data/spec/models/inline_response2001_spec.rb +2 -2
- data/spec/models/inline_response2002_spec.rb +2 -2
- data/spec/models/inline_response2003_spec.rb +2 -2
- data/spec/models/inline_response2004_spec.rb +2 -2
- data/spec/models/inline_response2005_spec.rb +2 -2
- data/spec/models/inline_response200_spec.rb +2 -2
- data/spec/models/patchedpython_python_distribution_spec.rb +59 -0
- data/spec/models/patchedpython_python_remote_spec.rb +119 -0
- data/spec/models/patchedpython_python_repository_spec.rb +53 -0
- data/spec/models/policy_enum_spec.rb +35 -0
- data/spec/models/python_bander_remote_spec.rb +47 -0
- data/spec/models/python_python_distribution_response_spec.rb +77 -0
- data/spec/models/python_python_distribution_spec.rb +2 -20
- data/spec/models/python_python_package_content_response_spec.rb +197 -0
- data/spec/models/python_python_package_content_spec.rb +5 -29
- data/spec/models/python_python_publication_response_spec.rb +65 -0
- data/spec/models/python_python_publication_spec.rb +2 -20
- data/spec/models/python_python_remote_response_spec.rb +137 -0
- data/spec/models/python_python_remote_spec.rb +2 -24
- data/spec/models/python_python_repository_response_spec.rb +77 -0
- data/spec/models/python_python_repository_spec.rb +5 -23
- data/spec/models/repository_add_remove_content_spec.rb +2 -2
- data/spec/models/repository_sync_url_spec.rb +2 -2
- data/spec/models/repository_version_response_spec.rb +65 -0
- data/spec/models/repository_version_spec.rb +2 -26
- data/spec/spec_helper.rb +2 -2
- metadata +52 -4
@@ -1,10 +1,10 @@
|
|
1
1
|
=begin
|
2
2
|
#Pulp 3 API
|
3
3
|
|
4
|
-
#
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
5
5
|
|
6
6
|
The version of the OpenAPI document: v3
|
7
|
-
|
7
|
+
Contact: pulp-list@redhat.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.3
|
10
10
|
|
@@ -21,26 +21,26 @@ module PulpPythonClient
|
|
21
21
|
end
|
22
22
|
# Create a python distribution
|
23
23
|
# Trigger an asynchronous create task
|
24
|
-
# @param
|
24
|
+
# @param python_python_distribution [PythonPythonDistribution]
|
25
25
|
# @param [Hash] opts the optional parameters
|
26
26
|
# @return [AsyncOperationResponse]
|
27
|
-
def create(
|
28
|
-
data, _status_code, _headers = create_with_http_info(
|
27
|
+
def create(python_python_distribution, opts = {})
|
28
|
+
data, _status_code, _headers = create_with_http_info(python_python_distribution, opts)
|
29
29
|
data
|
30
30
|
end
|
31
31
|
|
32
32
|
# Create a python distribution
|
33
33
|
# Trigger an asynchronous create task
|
34
|
-
# @param
|
34
|
+
# @param python_python_distribution [PythonPythonDistribution]
|
35
35
|
# @param [Hash] opts the optional parameters
|
36
36
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
37
|
-
def create_with_http_info(
|
37
|
+
def create_with_http_info(python_python_distribution, opts = {})
|
38
38
|
if @api_client.config.debugging
|
39
39
|
@api_client.config.logger.debug 'Calling API: DistributionsPypiApi.create ...'
|
40
40
|
end
|
41
|
-
# verify the required parameter '
|
42
|
-
if @api_client.config.client_side_validation &&
|
43
|
-
fail ArgumentError, "Missing the required parameter '
|
41
|
+
# verify the required parameter 'python_python_distribution' is set
|
42
|
+
if @api_client.config.client_side_validation && python_python_distribution.nil?
|
43
|
+
fail ArgumentError, "Missing the required parameter 'python_python_distribution' when calling DistributionsPypiApi.create"
|
44
44
|
end
|
45
45
|
# resource path
|
46
46
|
local_var_path = '/pulp/api/v3/distributions/python/pypi/'
|
@@ -53,19 +53,19 @@ module PulpPythonClient
|
|
53
53
|
# HTTP header 'Accept' (if needed)
|
54
54
|
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
55
55
|
# HTTP header 'Content-Type'
|
56
|
-
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
56
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
|
57
57
|
|
58
58
|
# form parameters
|
59
59
|
form_params = opts[:form_params] || {}
|
60
60
|
|
61
61
|
# http body (model)
|
62
|
-
post_body = opts[:body] || @api_client.object_to_http_body(
|
62
|
+
post_body = opts[:body] || @api_client.object_to_http_body(python_python_distribution)
|
63
63
|
|
64
64
|
# return_type
|
65
65
|
return_type = opts[:return_type] || 'AsyncOperationResponse'
|
66
66
|
|
67
67
|
# auth_names
|
68
|
-
auth_names = opts[:auth_names] || ['
|
68
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
69
69
|
|
70
70
|
new_options = opts.merge(
|
71
71
|
:header_params => header_params,
|
@@ -85,32 +85,53 @@ module PulpPythonClient
|
|
85
85
|
|
86
86
|
# Delete a python distribution
|
87
87
|
# Trigger an asynchronous delete task
|
88
|
-
# @param
|
88
|
+
# @param python_python_distribution_href [String]
|
89
89
|
# @param [Hash] opts the optional parameters
|
90
|
+
# @option opts [String] :base_path base_path
|
91
|
+
# @option opts [String] :base_path__contains base_path__contains
|
92
|
+
# @option opts [String] :base_path__icontains base_path__icontains
|
93
|
+
# @option opts [String] :base_path__in base_path__in
|
94
|
+
# @option opts [String] :name name
|
95
|
+
# @option opts [String] :name__in name__in
|
96
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
90
97
|
# @return [AsyncOperationResponse]
|
91
|
-
def delete(
|
92
|
-
data, _status_code, _headers = delete_with_http_info(
|
98
|
+
def delete(python_python_distribution_href, opts = {})
|
99
|
+
data, _status_code, _headers = delete_with_http_info(python_python_distribution_href, opts)
|
93
100
|
data
|
94
101
|
end
|
95
102
|
|
96
103
|
# Delete a python distribution
|
97
104
|
# Trigger an asynchronous delete task
|
98
|
-
# @param
|
105
|
+
# @param python_python_distribution_href [String]
|
99
106
|
# @param [Hash] opts the optional parameters
|
107
|
+
# @option opts [String] :base_path base_path
|
108
|
+
# @option opts [String] :base_path__contains base_path__contains
|
109
|
+
# @option opts [String] :base_path__icontains base_path__icontains
|
110
|
+
# @option opts [String] :base_path__in base_path__in
|
111
|
+
# @option opts [String] :name name
|
112
|
+
# @option opts [String] :name__in name__in
|
113
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
100
114
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
101
|
-
def delete_with_http_info(
|
115
|
+
def delete_with_http_info(python_python_distribution_href, opts = {})
|
102
116
|
if @api_client.config.debugging
|
103
117
|
@api_client.config.logger.debug 'Calling API: DistributionsPypiApi.delete ...'
|
104
118
|
end
|
105
|
-
# verify the required parameter '
|
106
|
-
if @api_client.config.client_side_validation &&
|
107
|
-
fail ArgumentError, "Missing the required parameter '
|
119
|
+
# verify the required parameter 'python_python_distribution_href' is set
|
120
|
+
if @api_client.config.client_side_validation && python_python_distribution_href.nil?
|
121
|
+
fail ArgumentError, "Missing the required parameter 'python_python_distribution_href' when calling DistributionsPypiApi.delete"
|
108
122
|
end
|
109
123
|
# resource path
|
110
|
-
local_var_path = '{
|
124
|
+
local_var_path = '{python_python_distribution_href}'.sub('{' + 'python_python_distribution_href' + '}', CGI.escape(python_python_distribution_href.to_s).gsub('%2F', '/'))
|
111
125
|
|
112
126
|
# query parameters
|
113
127
|
query_params = opts[:query_params] || {}
|
128
|
+
query_params[:'base_path'] = opts[:'base_path'] if !opts[:'base_path'].nil?
|
129
|
+
query_params[:'base_path__contains'] = opts[:'base_path__contains'] if !opts[:'base_path__contains'].nil?
|
130
|
+
query_params[:'base_path__icontains'] = opts[:'base_path__icontains'] if !opts[:'base_path__icontains'].nil?
|
131
|
+
query_params[:'base_path__in'] = opts[:'base_path__in'] if !opts[:'base_path__in'].nil?
|
132
|
+
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
133
|
+
query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
|
134
|
+
query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
|
114
135
|
|
115
136
|
# header parameters
|
116
137
|
header_params = opts[:header_params] || {}
|
@@ -127,7 +148,7 @@ module PulpPythonClient
|
|
127
148
|
return_type = opts[:return_type] || 'AsyncOperationResponse'
|
128
149
|
|
129
150
|
# auth_names
|
130
|
-
auth_names = opts[:auth_names] || ['
|
151
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
131
152
|
|
132
153
|
new_options = opts.merge(
|
133
154
|
:header_params => header_params,
|
@@ -148,15 +169,15 @@ module PulpPythonClient
|
|
148
169
|
# List python distributions
|
149
170
|
# Pulp Python Distributions are used to distribute Python Publications. Pulp Python Distributions should not be confused with \"Python Distribution\" as defined by the Python community. In Pulp usage, Python content is refered to as Python Package Content.
|
150
171
|
# @param [Hash] opts the optional parameters
|
151
|
-
# @option opts [String] :
|
152
|
-
# @option opts [String] :
|
153
|
-
# @option opts [String] :
|
154
|
-
# @option opts [String] :
|
155
|
-
# @option opts [String] :base_path__contains Filter results where base_path contains value
|
156
|
-
# @option opts [String] :base_path__icontains Filter results where base_path contains value
|
157
|
-
# @option opts [String] :base_path__in Filter results where base_path is in a comma-separated list of values
|
172
|
+
# @option opts [String] :base_path base_path
|
173
|
+
# @option opts [String] :base_path__contains base_path__contains
|
174
|
+
# @option opts [String] :base_path__icontains base_path__icontains
|
175
|
+
# @option opts [String] :base_path__in base_path__in
|
158
176
|
# @option opts [Integer] :limit Number of results to return per page.
|
177
|
+
# @option opts [String] :name name
|
178
|
+
# @option opts [String] :name__in name__in
|
159
179
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
180
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
160
181
|
# @option opts [String] :fields A list of fields to include in the response.
|
161
182
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
162
183
|
# @return [InlineResponse2001]
|
@@ -168,15 +189,15 @@ module PulpPythonClient
|
|
168
189
|
# List python distributions
|
169
190
|
# Pulp Python Distributions are used to distribute Python Publications. Pulp Python Distributions should not be confused with \"Python Distribution\" as defined by the Python community. In Pulp usage, Python content is refered to as Python Package Content.
|
170
191
|
# @param [Hash] opts the optional parameters
|
171
|
-
# @option opts [String] :
|
172
|
-
# @option opts [String] :
|
173
|
-
# @option opts [String] :
|
174
|
-
# @option opts [String] :
|
175
|
-
# @option opts [String] :base_path__contains Filter results where base_path contains value
|
176
|
-
# @option opts [String] :base_path__icontains Filter results where base_path contains value
|
177
|
-
# @option opts [String] :base_path__in Filter results where base_path is in a comma-separated list of values
|
192
|
+
# @option opts [String] :base_path base_path
|
193
|
+
# @option opts [String] :base_path__contains base_path__contains
|
194
|
+
# @option opts [String] :base_path__icontains base_path__icontains
|
195
|
+
# @option opts [String] :base_path__in base_path__in
|
178
196
|
# @option opts [Integer] :limit Number of results to return per page.
|
197
|
+
# @option opts [String] :name name
|
198
|
+
# @option opts [String] :name__in name__in
|
179
199
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
200
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
180
201
|
# @option opts [String] :fields A list of fields to include in the response.
|
181
202
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
182
203
|
# @return [Array<(InlineResponse2001, Integer, Hash)>] InlineResponse2001 data, response status code and response headers
|
@@ -189,15 +210,15 @@ module PulpPythonClient
|
|
189
210
|
|
190
211
|
# query parameters
|
191
212
|
query_params = opts[:query_params] || {}
|
192
|
-
query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
|
193
|
-
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
194
|
-
query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
|
195
213
|
query_params[:'base_path'] = opts[:'base_path'] if !opts[:'base_path'].nil?
|
196
214
|
query_params[:'base_path__contains'] = opts[:'base_path__contains'] if !opts[:'base_path__contains'].nil?
|
197
215
|
query_params[:'base_path__icontains'] = opts[:'base_path__icontains'] if !opts[:'base_path__icontains'].nil?
|
198
216
|
query_params[:'base_path__in'] = opts[:'base_path__in'] if !opts[:'base_path__in'].nil?
|
199
217
|
query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
|
218
|
+
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
219
|
+
query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
|
200
220
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
221
|
+
query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
|
201
222
|
query_params[:'fields'] = opts[:'fields'] if !opts[:'fields'].nil?
|
202
223
|
query_params[:'exclude_fields'] = opts[:'exclude_fields'] if !opts[:'exclude_fields'].nil?
|
203
224
|
|
@@ -216,7 +237,7 @@ module PulpPythonClient
|
|
216
237
|
return_type = opts[:return_type] || 'InlineResponse2001'
|
217
238
|
|
218
239
|
# auth_names
|
219
|
-
auth_names = opts[:auth_names] || ['
|
240
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
220
241
|
|
221
242
|
new_options = opts.merge(
|
222
243
|
:header_params => header_params,
|
@@ -234,59 +255,80 @@ module PulpPythonClient
|
|
234
255
|
return data, status_code, headers
|
235
256
|
end
|
236
257
|
|
237
|
-
#
|
258
|
+
# Update a python distribution
|
238
259
|
# Trigger an asynchronous partial update task
|
239
|
-
# @param
|
240
|
-
# @param
|
260
|
+
# @param python_python_distribution_href [String]
|
261
|
+
# @param patchedpython_python_distribution [PatchedpythonPythonDistribution]
|
241
262
|
# @param [Hash] opts the optional parameters
|
263
|
+
# @option opts [String] :base_path base_path
|
264
|
+
# @option opts [String] :base_path__contains base_path__contains
|
265
|
+
# @option opts [String] :base_path__icontains base_path__icontains
|
266
|
+
# @option opts [String] :base_path__in base_path__in
|
267
|
+
# @option opts [String] :name name
|
268
|
+
# @option opts [String] :name__in name__in
|
269
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
242
270
|
# @return [AsyncOperationResponse]
|
243
|
-
def partial_update(
|
244
|
-
data, _status_code, _headers = partial_update_with_http_info(
|
271
|
+
def partial_update(python_python_distribution_href, patchedpython_python_distribution, opts = {})
|
272
|
+
data, _status_code, _headers = partial_update_with_http_info(python_python_distribution_href, patchedpython_python_distribution, opts)
|
245
273
|
data
|
246
274
|
end
|
247
275
|
|
248
|
-
#
|
276
|
+
# Update a python distribution
|
249
277
|
# Trigger an asynchronous partial update task
|
250
|
-
# @param
|
251
|
-
# @param
|
278
|
+
# @param python_python_distribution_href [String]
|
279
|
+
# @param patchedpython_python_distribution [PatchedpythonPythonDistribution]
|
252
280
|
# @param [Hash] opts the optional parameters
|
281
|
+
# @option opts [String] :base_path base_path
|
282
|
+
# @option opts [String] :base_path__contains base_path__contains
|
283
|
+
# @option opts [String] :base_path__icontains base_path__icontains
|
284
|
+
# @option opts [String] :base_path__in base_path__in
|
285
|
+
# @option opts [String] :name name
|
286
|
+
# @option opts [String] :name__in name__in
|
287
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
253
288
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
254
|
-
def partial_update_with_http_info(
|
289
|
+
def partial_update_with_http_info(python_python_distribution_href, patchedpython_python_distribution, opts = {})
|
255
290
|
if @api_client.config.debugging
|
256
291
|
@api_client.config.logger.debug 'Calling API: DistributionsPypiApi.partial_update ...'
|
257
292
|
end
|
258
|
-
# verify the required parameter '
|
259
|
-
if @api_client.config.client_side_validation &&
|
260
|
-
fail ArgumentError, "Missing the required parameter '
|
293
|
+
# verify the required parameter 'python_python_distribution_href' is set
|
294
|
+
if @api_client.config.client_side_validation && python_python_distribution_href.nil?
|
295
|
+
fail ArgumentError, "Missing the required parameter 'python_python_distribution_href' when calling DistributionsPypiApi.partial_update"
|
261
296
|
end
|
262
|
-
# verify the required parameter '
|
263
|
-
if @api_client.config.client_side_validation &&
|
264
|
-
fail ArgumentError, "Missing the required parameter '
|
297
|
+
# verify the required parameter 'patchedpython_python_distribution' is set
|
298
|
+
if @api_client.config.client_side_validation && patchedpython_python_distribution.nil?
|
299
|
+
fail ArgumentError, "Missing the required parameter 'patchedpython_python_distribution' when calling DistributionsPypiApi.partial_update"
|
265
300
|
end
|
266
301
|
# resource path
|
267
|
-
local_var_path = '{
|
302
|
+
local_var_path = '{python_python_distribution_href}'.sub('{' + 'python_python_distribution_href' + '}', CGI.escape(python_python_distribution_href.to_s).gsub('%2F', '/'))
|
268
303
|
|
269
304
|
# query parameters
|
270
305
|
query_params = opts[:query_params] || {}
|
306
|
+
query_params[:'base_path'] = opts[:'base_path'] if !opts[:'base_path'].nil?
|
307
|
+
query_params[:'base_path__contains'] = opts[:'base_path__contains'] if !opts[:'base_path__contains'].nil?
|
308
|
+
query_params[:'base_path__icontains'] = opts[:'base_path__icontains'] if !opts[:'base_path__icontains'].nil?
|
309
|
+
query_params[:'base_path__in'] = opts[:'base_path__in'] if !opts[:'base_path__in'].nil?
|
310
|
+
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
311
|
+
query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
|
312
|
+
query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
|
271
313
|
|
272
314
|
# header parameters
|
273
315
|
header_params = opts[:header_params] || {}
|
274
316
|
# HTTP header 'Accept' (if needed)
|
275
317
|
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
276
318
|
# HTTP header 'Content-Type'
|
277
|
-
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
319
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
|
278
320
|
|
279
321
|
# form parameters
|
280
322
|
form_params = opts[:form_params] || {}
|
281
323
|
|
282
324
|
# http body (model)
|
283
|
-
post_body = opts[:body] || @api_client.object_to_http_body(
|
325
|
+
post_body = opts[:body] || @api_client.object_to_http_body(patchedpython_python_distribution)
|
284
326
|
|
285
327
|
# return_type
|
286
328
|
return_type = opts[:return_type] || 'AsyncOperationResponse'
|
287
329
|
|
288
330
|
# auth_names
|
289
|
-
auth_names = opts[:auth_names] || ['
|
331
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
290
332
|
|
291
333
|
new_options = opts.merge(
|
292
334
|
:header_params => header_params,
|
@@ -306,33 +348,33 @@ module PulpPythonClient
|
|
306
348
|
|
307
349
|
# Inspect a python distribution
|
308
350
|
# Pulp Python Distributions are used to distribute Python Publications. Pulp Python Distributions should not be confused with \"Python Distribution\" as defined by the Python community. In Pulp usage, Python content is refered to as Python Package Content.
|
309
|
-
# @param
|
351
|
+
# @param python_python_distribution_href [String]
|
310
352
|
# @param [Hash] opts the optional parameters
|
311
353
|
# @option opts [String] :fields A list of fields to include in the response.
|
312
354
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
313
|
-
# @return [
|
314
|
-
def read(
|
315
|
-
data, _status_code, _headers = read_with_http_info(
|
355
|
+
# @return [PythonPythonDistributionResponse]
|
356
|
+
def read(python_python_distribution_href, opts = {})
|
357
|
+
data, _status_code, _headers = read_with_http_info(python_python_distribution_href, opts)
|
316
358
|
data
|
317
359
|
end
|
318
360
|
|
319
361
|
# Inspect a python distribution
|
320
362
|
# Pulp Python Distributions are used to distribute Python Publications. Pulp Python Distributions should not be confused with \"Python Distribution\" as defined by the Python community. In Pulp usage, Python content is refered to as Python Package Content.
|
321
|
-
# @param
|
363
|
+
# @param python_python_distribution_href [String]
|
322
364
|
# @param [Hash] opts the optional parameters
|
323
365
|
# @option opts [String] :fields A list of fields to include in the response.
|
324
366
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
325
|
-
# @return [Array<(
|
326
|
-
def read_with_http_info(
|
367
|
+
# @return [Array<(PythonPythonDistributionResponse, Integer, Hash)>] PythonPythonDistributionResponse data, response status code and response headers
|
368
|
+
def read_with_http_info(python_python_distribution_href, opts = {})
|
327
369
|
if @api_client.config.debugging
|
328
370
|
@api_client.config.logger.debug 'Calling API: DistributionsPypiApi.read ...'
|
329
371
|
end
|
330
|
-
# verify the required parameter '
|
331
|
-
if @api_client.config.client_side_validation &&
|
332
|
-
fail ArgumentError, "Missing the required parameter '
|
372
|
+
# verify the required parameter 'python_python_distribution_href' is set
|
373
|
+
if @api_client.config.client_side_validation && python_python_distribution_href.nil?
|
374
|
+
fail ArgumentError, "Missing the required parameter 'python_python_distribution_href' when calling DistributionsPypiApi.read"
|
333
375
|
end
|
334
376
|
# resource path
|
335
|
-
local_var_path = '{
|
377
|
+
local_var_path = '{python_python_distribution_href}'.sub('{' + 'python_python_distribution_href' + '}', CGI.escape(python_python_distribution_href.to_s).gsub('%2F', '/'))
|
336
378
|
|
337
379
|
# query parameters
|
338
380
|
query_params = opts[:query_params] || {}
|
@@ -351,10 +393,10 @@ module PulpPythonClient
|
|
351
393
|
post_body = opts[:body]
|
352
394
|
|
353
395
|
# return_type
|
354
|
-
return_type = opts[:return_type] || '
|
396
|
+
return_type = opts[:return_type] || 'PythonPythonDistributionResponse'
|
355
397
|
|
356
398
|
# auth_names
|
357
|
-
auth_names = opts[:auth_names] || ['
|
399
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
358
400
|
|
359
401
|
new_options = opts.merge(
|
360
402
|
:header_params => header_params,
|
@@ -374,57 +416,78 @@ module PulpPythonClient
|
|
374
416
|
|
375
417
|
# Update a python distribution
|
376
418
|
# Trigger an asynchronous update task
|
377
|
-
# @param
|
378
|
-
# @param
|
419
|
+
# @param python_python_distribution_href [String]
|
420
|
+
# @param python_python_distribution [PythonPythonDistribution]
|
379
421
|
# @param [Hash] opts the optional parameters
|
422
|
+
# @option opts [String] :base_path base_path
|
423
|
+
# @option opts [String] :base_path__contains base_path__contains
|
424
|
+
# @option opts [String] :base_path__icontains base_path__icontains
|
425
|
+
# @option opts [String] :base_path__in base_path__in
|
426
|
+
# @option opts [String] :name name
|
427
|
+
# @option opts [String] :name__in name__in
|
428
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
380
429
|
# @return [AsyncOperationResponse]
|
381
|
-
def update(
|
382
|
-
data, _status_code, _headers = update_with_http_info(
|
430
|
+
def update(python_python_distribution_href, python_python_distribution, opts = {})
|
431
|
+
data, _status_code, _headers = update_with_http_info(python_python_distribution_href, python_python_distribution, opts)
|
383
432
|
data
|
384
433
|
end
|
385
434
|
|
386
435
|
# Update a python distribution
|
387
436
|
# Trigger an asynchronous update task
|
388
|
-
# @param
|
389
|
-
# @param
|
437
|
+
# @param python_python_distribution_href [String]
|
438
|
+
# @param python_python_distribution [PythonPythonDistribution]
|
390
439
|
# @param [Hash] opts the optional parameters
|
440
|
+
# @option opts [String] :base_path base_path
|
441
|
+
# @option opts [String] :base_path__contains base_path__contains
|
442
|
+
# @option opts [String] :base_path__icontains base_path__icontains
|
443
|
+
# @option opts [String] :base_path__in base_path__in
|
444
|
+
# @option opts [String] :name name
|
445
|
+
# @option opts [String] :name__in name__in
|
446
|
+
# @option opts [String] :ordering Which field to use when ordering the results.
|
391
447
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
392
|
-
def update_with_http_info(
|
448
|
+
def update_with_http_info(python_python_distribution_href, python_python_distribution, opts = {})
|
393
449
|
if @api_client.config.debugging
|
394
450
|
@api_client.config.logger.debug 'Calling API: DistributionsPypiApi.update ...'
|
395
451
|
end
|
396
|
-
# verify the required parameter '
|
397
|
-
if @api_client.config.client_side_validation &&
|
398
|
-
fail ArgumentError, "Missing the required parameter '
|
452
|
+
# verify the required parameter 'python_python_distribution_href' is set
|
453
|
+
if @api_client.config.client_side_validation && python_python_distribution_href.nil?
|
454
|
+
fail ArgumentError, "Missing the required parameter 'python_python_distribution_href' when calling DistributionsPypiApi.update"
|
399
455
|
end
|
400
|
-
# verify the required parameter '
|
401
|
-
if @api_client.config.client_side_validation &&
|
402
|
-
fail ArgumentError, "Missing the required parameter '
|
456
|
+
# verify the required parameter 'python_python_distribution' is set
|
457
|
+
if @api_client.config.client_side_validation && python_python_distribution.nil?
|
458
|
+
fail ArgumentError, "Missing the required parameter 'python_python_distribution' when calling DistributionsPypiApi.update"
|
403
459
|
end
|
404
460
|
# resource path
|
405
|
-
local_var_path = '{
|
461
|
+
local_var_path = '{python_python_distribution_href}'.sub('{' + 'python_python_distribution_href' + '}', CGI.escape(python_python_distribution_href.to_s).gsub('%2F', '/'))
|
406
462
|
|
407
463
|
# query parameters
|
408
464
|
query_params = opts[:query_params] || {}
|
465
|
+
query_params[:'base_path'] = opts[:'base_path'] if !opts[:'base_path'].nil?
|
466
|
+
query_params[:'base_path__contains'] = opts[:'base_path__contains'] if !opts[:'base_path__contains'].nil?
|
467
|
+
query_params[:'base_path__icontains'] = opts[:'base_path__icontains'] if !opts[:'base_path__icontains'].nil?
|
468
|
+
query_params[:'base_path__in'] = opts[:'base_path__in'] if !opts[:'base_path__in'].nil?
|
469
|
+
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
470
|
+
query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
|
471
|
+
query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
|
409
472
|
|
410
473
|
# header parameters
|
411
474
|
header_params = opts[:header_params] || {}
|
412
475
|
# HTTP header 'Accept' (if needed)
|
413
476
|
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
414
477
|
# HTTP header 'Content-Type'
|
415
|
-
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
478
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
|
416
479
|
|
417
480
|
# form parameters
|
418
481
|
form_params = opts[:form_params] || {}
|
419
482
|
|
420
483
|
# http body (model)
|
421
|
-
post_body = opts[:body] || @api_client.object_to_http_body(
|
484
|
+
post_body = opts[:body] || @api_client.object_to_http_body(python_python_distribution)
|
422
485
|
|
423
486
|
# return_type
|
424
487
|
return_type = opts[:return_type] || 'AsyncOperationResponse'
|
425
488
|
|
426
489
|
# auth_names
|
427
|
-
auth_names = opts[:auth_names] || ['
|
490
|
+
auth_names = opts[:auth_names] || ['basicAuth']
|
428
491
|
|
429
492
|
new_options = opts.merge(
|
430
493
|
:header_params => header_params,
|