pulp_maven_client 0.1.0b2
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 +7 -0
- data/Gemfile +9 -0
- data/Gemfile.lock +79 -0
- data/README.md +119 -0
- data/Rakefile +10 -0
- data/docs/AsyncOperationResponse.md +17 -0
- data/docs/ContentApi.md +188 -0
- data/docs/DistributionsApi.md +352 -0
- data/docs/InlineResponse200.md +23 -0
- data/docs/InlineResponse2001.md +23 -0
- data/docs/InlineResponse2002.md +23 -0
- data/docs/MavenArtifact.md +33 -0
- data/docs/MavenDistribution.md +29 -0
- data/docs/MavenRemote.md +47 -0
- data/docs/RemotesApi.md +356 -0
- data/git_push.sh +55 -0
- data/lib/pulp_maven_client/api/content_api.rb +231 -0
- data/lib/pulp_maven_client/api/distributions_api.rb +430 -0
- data/lib/pulp_maven_client/api/remotes_api.rb +436 -0
- data/lib/pulp_maven_client/api_client.rb +387 -0
- data/lib/pulp_maven_client/api_error.rb +57 -0
- data/lib/pulp_maven_client/configuration.rb +251 -0
- data/lib/pulp_maven_client/models/async_operation_response.rb +202 -0
- data/lib/pulp_maven_client/models/inline_response200.rb +235 -0
- data/lib/pulp_maven_client/models/inline_response2001.rb +235 -0
- data/lib/pulp_maven_client/models/inline_response2002.rb +235 -0
- data/lib/pulp_maven_client/models/maven_artifact.rb +379 -0
- data/lib/pulp_maven_client/models/maven_distribution.rb +337 -0
- data/lib/pulp_maven_client/models/maven_remote.rb +549 -0
- data/lib/pulp_maven_client/version.rb +15 -0
- data/lib/pulp_maven_client.rb +49 -0
- data/pulp_maven_client.gemspec +45 -0
- data/spec/api/content_api_spec.rb +79 -0
- data/spec/api/distributions_api_spec.rb +116 -0
- data/spec/api/remotes_api_spec.rb +118 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/async_operation_response_spec.rb +41 -0
- data/spec/models/inline_response2001_spec.rb +59 -0
- data/spec/models/inline_response2002_spec.rb +59 -0
- data/spec/models/inline_response200_spec.rb +59 -0
- data/spec/models/maven_artifact_spec.rb +89 -0
- data/spec/models/maven_distribution_spec.rb +77 -0
- data/spec/models/maven_remote_spec.rb +135 -0
- data/spec/spec_helper.rb +111 -0
- metadata +281 -0
@@ -0,0 +1,430 @@
|
|
1
|
+
=begin
|
2
|
+
#Pulp 3 API
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: v3
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 4.0.1-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'uri'
|
14
|
+
|
15
|
+
module PulpMavenClient
|
16
|
+
class DistributionsApi
|
17
|
+
attr_accessor :api_client
|
18
|
+
|
19
|
+
def initialize(api_client = ApiClient.default)
|
20
|
+
@api_client = api_client
|
21
|
+
end
|
22
|
+
# Create a maven distribution
|
23
|
+
# Trigger an asynchronous create task
|
24
|
+
# @param data [MavenDistribution]
|
25
|
+
# @param [Hash] opts the optional parameters
|
26
|
+
# @return [AsyncOperationResponse]
|
27
|
+
def distributions_maven_maven_create(data, opts = {})
|
28
|
+
data, _status_code, _headers = distributions_maven_maven_create_with_http_info(data, opts)
|
29
|
+
data
|
30
|
+
end
|
31
|
+
|
32
|
+
# Create a maven distribution
|
33
|
+
# Trigger an asynchronous create task
|
34
|
+
# @param data [MavenDistribution]
|
35
|
+
# @param [Hash] opts the optional parameters
|
36
|
+
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
37
|
+
def distributions_maven_maven_create_with_http_info(data, opts = {})
|
38
|
+
if @api_client.config.debugging
|
39
|
+
@api_client.config.logger.debug 'Calling API: DistributionsApi.distributions_maven_maven_create ...'
|
40
|
+
end
|
41
|
+
# verify the required parameter 'data' is set
|
42
|
+
if @api_client.config.client_side_validation && data.nil?
|
43
|
+
fail ArgumentError, "Missing the required parameter 'data' when calling DistributionsApi.distributions_maven_maven_create"
|
44
|
+
end
|
45
|
+
# resource path
|
46
|
+
local_var_path = '/pulp/api/v3/distributions/maven/maven/'
|
47
|
+
|
48
|
+
# query parameters
|
49
|
+
query_params = opts[:query_params] || {}
|
50
|
+
|
51
|
+
# header parameters
|
52
|
+
header_params = opts[:header_params] || {}
|
53
|
+
# HTTP header 'Accept' (if needed)
|
54
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
55
|
+
# HTTP header 'Content-Type'
|
56
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
57
|
+
|
58
|
+
# form parameters
|
59
|
+
form_params = opts[:form_params] || {}
|
60
|
+
|
61
|
+
# http body (model)
|
62
|
+
post_body = opts[:body] || @api_client.object_to_http_body(data)
|
63
|
+
|
64
|
+
# return_type
|
65
|
+
return_type = opts[:return_type] || 'AsyncOperationResponse'
|
66
|
+
|
67
|
+
# auth_names
|
68
|
+
auth_names = opts[:auth_names] || ['Basic']
|
69
|
+
|
70
|
+
new_options = opts.merge(
|
71
|
+
:header_params => header_params,
|
72
|
+
:query_params => query_params,
|
73
|
+
:form_params => form_params,
|
74
|
+
:body => post_body,
|
75
|
+
:auth_names => auth_names,
|
76
|
+
:return_type => return_type
|
77
|
+
)
|
78
|
+
|
79
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
80
|
+
if @api_client.config.debugging
|
81
|
+
@api_client.config.logger.debug "API called: DistributionsApi#distributions_maven_maven_create\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
82
|
+
end
|
83
|
+
return data, status_code, headers
|
84
|
+
end
|
85
|
+
|
86
|
+
# Delete a maven distribution
|
87
|
+
# Trigger an asynchronous delete task
|
88
|
+
# @param maven_distribution_href [String] URI of Maven Distribution. e.g.: /pulp/api/v3/distributions/maven/maven/1/
|
89
|
+
# @param [Hash] opts the optional parameters
|
90
|
+
# @return [AsyncOperationResponse]
|
91
|
+
def distributions_maven_maven_delete(maven_distribution_href, opts = {})
|
92
|
+
data, _status_code, _headers = distributions_maven_maven_delete_with_http_info(maven_distribution_href, opts)
|
93
|
+
data
|
94
|
+
end
|
95
|
+
|
96
|
+
# Delete a maven distribution
|
97
|
+
# Trigger an asynchronous delete task
|
98
|
+
# @param maven_distribution_href [String] URI of Maven Distribution. e.g.: /pulp/api/v3/distributions/maven/maven/1/
|
99
|
+
# @param [Hash] opts the optional parameters
|
100
|
+
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
101
|
+
def distributions_maven_maven_delete_with_http_info(maven_distribution_href, opts = {})
|
102
|
+
if @api_client.config.debugging
|
103
|
+
@api_client.config.logger.debug 'Calling API: DistributionsApi.distributions_maven_maven_delete ...'
|
104
|
+
end
|
105
|
+
# verify the required parameter 'maven_distribution_href' is set
|
106
|
+
if @api_client.config.client_side_validation && maven_distribution_href.nil?
|
107
|
+
fail ArgumentError, "Missing the required parameter 'maven_distribution_href' when calling DistributionsApi.distributions_maven_maven_delete"
|
108
|
+
end
|
109
|
+
# resource path
|
110
|
+
local_var_path = '{maven_distribution_href}'.sub('{' + 'maven_distribution_href' + '}', maven_distribution_href.to_s)
|
111
|
+
|
112
|
+
# query parameters
|
113
|
+
query_params = opts[:query_params] || {}
|
114
|
+
|
115
|
+
# header parameters
|
116
|
+
header_params = opts[:header_params] || {}
|
117
|
+
# HTTP header 'Accept' (if needed)
|
118
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
119
|
+
|
120
|
+
# form parameters
|
121
|
+
form_params = opts[:form_params] || {}
|
122
|
+
|
123
|
+
# http body (model)
|
124
|
+
post_body = opts[:body]
|
125
|
+
|
126
|
+
# return_type
|
127
|
+
return_type = opts[:return_type] || 'AsyncOperationResponse'
|
128
|
+
|
129
|
+
# auth_names
|
130
|
+
auth_names = opts[:auth_names] || ['Basic']
|
131
|
+
|
132
|
+
new_options = opts.merge(
|
133
|
+
:header_params => header_params,
|
134
|
+
:query_params => query_params,
|
135
|
+
:form_params => form_params,
|
136
|
+
:body => post_body,
|
137
|
+
:auth_names => auth_names,
|
138
|
+
:return_type => return_type
|
139
|
+
)
|
140
|
+
|
141
|
+
data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
|
142
|
+
if @api_client.config.debugging
|
143
|
+
@api_client.config.logger.debug "API called: DistributionsApi#distributions_maven_maven_delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
144
|
+
end
|
145
|
+
return data, status_code, headers
|
146
|
+
end
|
147
|
+
|
148
|
+
# List maven distributions
|
149
|
+
# ViewSet for Maven Distributions.
|
150
|
+
# @param [Hash] opts the optional parameters
|
151
|
+
# @option opts [String] :name
|
152
|
+
# @option opts [String] :name__in Filter results where name is in a comma-separated list of values
|
153
|
+
# @option opts [String] :base_path
|
154
|
+
# @option opts [String] :base_path__contains Filter results where base_path contains value
|
155
|
+
# @option opts [String] :base_path__icontains Filter results where base_path contains value
|
156
|
+
# @option opts [String] :base_path__in Filter results where base_path is in a comma-separated list of values
|
157
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
158
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
159
|
+
# @return [InlineResponse2001]
|
160
|
+
def distributions_maven_maven_list(opts = {})
|
161
|
+
data, _status_code, _headers = distributions_maven_maven_list_with_http_info(opts)
|
162
|
+
data
|
163
|
+
end
|
164
|
+
|
165
|
+
# List maven distributions
|
166
|
+
# ViewSet for Maven Distributions.
|
167
|
+
# @param [Hash] opts the optional parameters
|
168
|
+
# @option opts [String] :name
|
169
|
+
# @option opts [String] :name__in Filter results where name is in a comma-separated list of values
|
170
|
+
# @option opts [String] :base_path
|
171
|
+
# @option opts [String] :base_path__contains Filter results where base_path contains value
|
172
|
+
# @option opts [String] :base_path__icontains Filter results where base_path contains value
|
173
|
+
# @option opts [String] :base_path__in Filter results where base_path is in a comma-separated list of values
|
174
|
+
# @option opts [Integer] :page A page number within the paginated result set.
|
175
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
176
|
+
# @return [Array<(InlineResponse2001, Integer, Hash)>] InlineResponse2001 data, response status code and response headers
|
177
|
+
def distributions_maven_maven_list_with_http_info(opts = {})
|
178
|
+
if @api_client.config.debugging
|
179
|
+
@api_client.config.logger.debug 'Calling API: DistributionsApi.distributions_maven_maven_list ...'
|
180
|
+
end
|
181
|
+
# resource path
|
182
|
+
local_var_path = '/pulp/api/v3/distributions/maven/maven/'
|
183
|
+
|
184
|
+
# query parameters
|
185
|
+
query_params = opts[:query_params] || {}
|
186
|
+
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
187
|
+
query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
|
188
|
+
query_params[:'base_path'] = opts[:'base_path'] if !opts[:'base_path'].nil?
|
189
|
+
query_params[:'base_path__contains'] = opts[:'base_path__contains'] if !opts[:'base_path__contains'].nil?
|
190
|
+
query_params[:'base_path__icontains'] = opts[:'base_path__icontains'] if !opts[:'base_path__icontains'].nil?
|
191
|
+
query_params[:'base_path__in'] = opts[:'base_path__in'] if !opts[:'base_path__in'].nil?
|
192
|
+
query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil?
|
193
|
+
query_params[:'page_size'] = opts[:'page_size'] if !opts[:'page_size'].nil?
|
194
|
+
|
195
|
+
# header parameters
|
196
|
+
header_params = opts[:header_params] || {}
|
197
|
+
# HTTP header 'Accept' (if needed)
|
198
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
199
|
+
|
200
|
+
# form parameters
|
201
|
+
form_params = opts[:form_params] || {}
|
202
|
+
|
203
|
+
# http body (model)
|
204
|
+
post_body = opts[:body]
|
205
|
+
|
206
|
+
# return_type
|
207
|
+
return_type = opts[:return_type] || 'InlineResponse2001'
|
208
|
+
|
209
|
+
# auth_names
|
210
|
+
auth_names = opts[:auth_names] || ['Basic']
|
211
|
+
|
212
|
+
new_options = opts.merge(
|
213
|
+
:header_params => header_params,
|
214
|
+
:query_params => query_params,
|
215
|
+
:form_params => form_params,
|
216
|
+
:body => post_body,
|
217
|
+
:auth_names => auth_names,
|
218
|
+
:return_type => return_type
|
219
|
+
)
|
220
|
+
|
221
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
222
|
+
if @api_client.config.debugging
|
223
|
+
@api_client.config.logger.debug "API called: DistributionsApi#distributions_maven_maven_list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
224
|
+
end
|
225
|
+
return data, status_code, headers
|
226
|
+
end
|
227
|
+
|
228
|
+
# Partially update a maven distribution
|
229
|
+
# Trigger an asynchronous partial update task
|
230
|
+
# @param maven_distribution_href [String] URI of Maven Distribution. e.g.: /pulp/api/v3/distributions/maven/maven/1/
|
231
|
+
# @param data [MavenDistribution]
|
232
|
+
# @param [Hash] opts the optional parameters
|
233
|
+
# @return [AsyncOperationResponse]
|
234
|
+
def distributions_maven_maven_partial_update(maven_distribution_href, data, opts = {})
|
235
|
+
data, _status_code, _headers = distributions_maven_maven_partial_update_with_http_info(maven_distribution_href, data, opts)
|
236
|
+
data
|
237
|
+
end
|
238
|
+
|
239
|
+
# Partially update a maven distribution
|
240
|
+
# Trigger an asynchronous partial update task
|
241
|
+
# @param maven_distribution_href [String] URI of Maven Distribution. e.g.: /pulp/api/v3/distributions/maven/maven/1/
|
242
|
+
# @param data [MavenDistribution]
|
243
|
+
# @param [Hash] opts the optional parameters
|
244
|
+
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
245
|
+
def distributions_maven_maven_partial_update_with_http_info(maven_distribution_href, data, opts = {})
|
246
|
+
if @api_client.config.debugging
|
247
|
+
@api_client.config.logger.debug 'Calling API: DistributionsApi.distributions_maven_maven_partial_update ...'
|
248
|
+
end
|
249
|
+
# verify the required parameter 'maven_distribution_href' is set
|
250
|
+
if @api_client.config.client_side_validation && maven_distribution_href.nil?
|
251
|
+
fail ArgumentError, "Missing the required parameter 'maven_distribution_href' when calling DistributionsApi.distributions_maven_maven_partial_update"
|
252
|
+
end
|
253
|
+
# verify the required parameter 'data' is set
|
254
|
+
if @api_client.config.client_side_validation && data.nil?
|
255
|
+
fail ArgumentError, "Missing the required parameter 'data' when calling DistributionsApi.distributions_maven_maven_partial_update"
|
256
|
+
end
|
257
|
+
# resource path
|
258
|
+
local_var_path = '{maven_distribution_href}'.sub('{' + 'maven_distribution_href' + '}', maven_distribution_href.to_s)
|
259
|
+
|
260
|
+
# query parameters
|
261
|
+
query_params = opts[:query_params] || {}
|
262
|
+
|
263
|
+
# header parameters
|
264
|
+
header_params = opts[:header_params] || {}
|
265
|
+
# HTTP header 'Accept' (if needed)
|
266
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
267
|
+
# HTTP header 'Content-Type'
|
268
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
269
|
+
|
270
|
+
# form parameters
|
271
|
+
form_params = opts[:form_params] || {}
|
272
|
+
|
273
|
+
# http body (model)
|
274
|
+
post_body = opts[:body] || @api_client.object_to_http_body(data)
|
275
|
+
|
276
|
+
# return_type
|
277
|
+
return_type = opts[:return_type] || 'AsyncOperationResponse'
|
278
|
+
|
279
|
+
# auth_names
|
280
|
+
auth_names = opts[:auth_names] || ['Basic']
|
281
|
+
|
282
|
+
new_options = opts.merge(
|
283
|
+
:header_params => header_params,
|
284
|
+
:query_params => query_params,
|
285
|
+
:form_params => form_params,
|
286
|
+
:body => post_body,
|
287
|
+
:auth_names => auth_names,
|
288
|
+
:return_type => return_type
|
289
|
+
)
|
290
|
+
|
291
|
+
data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, new_options)
|
292
|
+
if @api_client.config.debugging
|
293
|
+
@api_client.config.logger.debug "API called: DistributionsApi#distributions_maven_maven_partial_update\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
294
|
+
end
|
295
|
+
return data, status_code, headers
|
296
|
+
end
|
297
|
+
|
298
|
+
# Inspect a maven distribution
|
299
|
+
# ViewSet for Maven Distributions.
|
300
|
+
# @param maven_distribution_href [String] URI of Maven Distribution. e.g.: /pulp/api/v3/distributions/maven/maven/1/
|
301
|
+
# @param [Hash] opts the optional parameters
|
302
|
+
# @return [MavenDistribution]
|
303
|
+
def distributions_maven_maven_read(maven_distribution_href, opts = {})
|
304
|
+
data, _status_code, _headers = distributions_maven_maven_read_with_http_info(maven_distribution_href, opts)
|
305
|
+
data
|
306
|
+
end
|
307
|
+
|
308
|
+
# Inspect a maven distribution
|
309
|
+
# ViewSet for Maven Distributions.
|
310
|
+
# @param maven_distribution_href [String] URI of Maven Distribution. e.g.: /pulp/api/v3/distributions/maven/maven/1/
|
311
|
+
# @param [Hash] opts the optional parameters
|
312
|
+
# @return [Array<(MavenDistribution, Integer, Hash)>] MavenDistribution data, response status code and response headers
|
313
|
+
def distributions_maven_maven_read_with_http_info(maven_distribution_href, opts = {})
|
314
|
+
if @api_client.config.debugging
|
315
|
+
@api_client.config.logger.debug 'Calling API: DistributionsApi.distributions_maven_maven_read ...'
|
316
|
+
end
|
317
|
+
# verify the required parameter 'maven_distribution_href' is set
|
318
|
+
if @api_client.config.client_side_validation && maven_distribution_href.nil?
|
319
|
+
fail ArgumentError, "Missing the required parameter 'maven_distribution_href' when calling DistributionsApi.distributions_maven_maven_read"
|
320
|
+
end
|
321
|
+
# resource path
|
322
|
+
local_var_path = '{maven_distribution_href}'.sub('{' + 'maven_distribution_href' + '}', maven_distribution_href.to_s)
|
323
|
+
|
324
|
+
# query parameters
|
325
|
+
query_params = opts[:query_params] || {}
|
326
|
+
|
327
|
+
# header parameters
|
328
|
+
header_params = opts[:header_params] || {}
|
329
|
+
# HTTP header 'Accept' (if needed)
|
330
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
331
|
+
|
332
|
+
# form parameters
|
333
|
+
form_params = opts[:form_params] || {}
|
334
|
+
|
335
|
+
# http body (model)
|
336
|
+
post_body = opts[:body]
|
337
|
+
|
338
|
+
# return_type
|
339
|
+
return_type = opts[:return_type] || 'MavenDistribution'
|
340
|
+
|
341
|
+
# auth_names
|
342
|
+
auth_names = opts[:auth_names] || ['Basic']
|
343
|
+
|
344
|
+
new_options = opts.merge(
|
345
|
+
:header_params => header_params,
|
346
|
+
:query_params => query_params,
|
347
|
+
:form_params => form_params,
|
348
|
+
:body => post_body,
|
349
|
+
:auth_names => auth_names,
|
350
|
+
:return_type => return_type
|
351
|
+
)
|
352
|
+
|
353
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
354
|
+
if @api_client.config.debugging
|
355
|
+
@api_client.config.logger.debug "API called: DistributionsApi#distributions_maven_maven_read\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
356
|
+
end
|
357
|
+
return data, status_code, headers
|
358
|
+
end
|
359
|
+
|
360
|
+
# Update a maven distribution
|
361
|
+
# Trigger an asynchronous update task
|
362
|
+
# @param maven_distribution_href [String] URI of Maven Distribution. e.g.: /pulp/api/v3/distributions/maven/maven/1/
|
363
|
+
# @param data [MavenDistribution]
|
364
|
+
# @param [Hash] opts the optional parameters
|
365
|
+
# @return [AsyncOperationResponse]
|
366
|
+
def distributions_maven_maven_update(maven_distribution_href, data, opts = {})
|
367
|
+
data, _status_code, _headers = distributions_maven_maven_update_with_http_info(maven_distribution_href, data, opts)
|
368
|
+
data
|
369
|
+
end
|
370
|
+
|
371
|
+
# Update a maven distribution
|
372
|
+
# Trigger an asynchronous update task
|
373
|
+
# @param maven_distribution_href [String] URI of Maven Distribution. e.g.: /pulp/api/v3/distributions/maven/maven/1/
|
374
|
+
# @param data [MavenDistribution]
|
375
|
+
# @param [Hash] opts the optional parameters
|
376
|
+
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
377
|
+
def distributions_maven_maven_update_with_http_info(maven_distribution_href, data, opts = {})
|
378
|
+
if @api_client.config.debugging
|
379
|
+
@api_client.config.logger.debug 'Calling API: DistributionsApi.distributions_maven_maven_update ...'
|
380
|
+
end
|
381
|
+
# verify the required parameter 'maven_distribution_href' is set
|
382
|
+
if @api_client.config.client_side_validation && maven_distribution_href.nil?
|
383
|
+
fail ArgumentError, "Missing the required parameter 'maven_distribution_href' when calling DistributionsApi.distributions_maven_maven_update"
|
384
|
+
end
|
385
|
+
# verify the required parameter 'data' is set
|
386
|
+
if @api_client.config.client_side_validation && data.nil?
|
387
|
+
fail ArgumentError, "Missing the required parameter 'data' when calling DistributionsApi.distributions_maven_maven_update"
|
388
|
+
end
|
389
|
+
# resource path
|
390
|
+
local_var_path = '{maven_distribution_href}'.sub('{' + 'maven_distribution_href' + '}', maven_distribution_href.to_s)
|
391
|
+
|
392
|
+
# query parameters
|
393
|
+
query_params = opts[:query_params] || {}
|
394
|
+
|
395
|
+
# header parameters
|
396
|
+
header_params = opts[:header_params] || {}
|
397
|
+
# HTTP header 'Accept' (if needed)
|
398
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
399
|
+
# HTTP header 'Content-Type'
|
400
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
|
401
|
+
|
402
|
+
# form parameters
|
403
|
+
form_params = opts[:form_params] || {}
|
404
|
+
|
405
|
+
# http body (model)
|
406
|
+
post_body = opts[:body] || @api_client.object_to_http_body(data)
|
407
|
+
|
408
|
+
# return_type
|
409
|
+
return_type = opts[:return_type] || 'AsyncOperationResponse'
|
410
|
+
|
411
|
+
# auth_names
|
412
|
+
auth_names = opts[:auth_names] || ['Basic']
|
413
|
+
|
414
|
+
new_options = opts.merge(
|
415
|
+
:header_params => header_params,
|
416
|
+
:query_params => query_params,
|
417
|
+
:form_params => form_params,
|
418
|
+
:body => post_body,
|
419
|
+
:auth_names => auth_names,
|
420
|
+
:return_type => return_type
|
421
|
+
)
|
422
|
+
|
423
|
+
data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
|
424
|
+
if @api_client.config.debugging
|
425
|
+
@api_client.config.logger.debug "API called: DistributionsApi#distributions_maven_maven_update\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
426
|
+
end
|
427
|
+
return data, status_code, headers
|
428
|
+
end
|
429
|
+
end
|
430
|
+
end
|