pulp_ansible_client 0.3.0 → 0.4.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 +9 -9
- data/docs/AnsibleAnsibleDistributionResponse.md +1 -1
- data/docs/AnsibleCollectionVersionResponse.md +3 -3
- data/docs/AnsibleRoleResponse.md +3 -3
- data/docs/{V2CollectionsApi.md → ApiCollectionsApi.md} +7 -7
- data/docs/{V1RolesApi.md → ApiRolesApi.md} +4 -4
- data/docs/CollectionRefResponse.md +1 -1
- data/docs/CollectionResponse.md +3 -3
- data/docs/CollectionVersionResponse.md +3 -3
- data/docs/DistributionsAnsibleApi.md +6 -54
- data/docs/GalaxyCollectionResponse.md +2 -2
- data/docs/GalaxyCollectionVersionResponse.md +4 -4
- data/docs/GalaxyRoleResponse.md +1 -1
- data/docs/GalaxyRoleVersionResponse.md +1 -1
- data/docs/InlineResponse20013.md +6 -8
- data/docs/InlineResponse20014.md +6 -8
- data/docs/PulpAnsibleGalaxyApiV3VersionsApi.md +0 -22
- data/docs/RemotesCollectionApi.md +6 -66
- data/docs/RemotesRoleApi.md +6 -66
- data/docs/RepositoriesAnsibleApi.md +6 -30
- data/docs/RepositoriesAnsibleVersionsApi.md +2 -34
- data/docs/VersionsApi.md +120 -0
- data/lib/pulp_ansible_client/api/{v2_collections_api.rb → api_collections_api.rb} +8 -8
- data/lib/pulp_ansible_client/api/{v1_roles_api.rb → api_roles_api.rb} +4 -4
- data/lib/pulp_ansible_client/api/distributions_ansible_api.rb +0 -63
- data/lib/pulp_ansible_client/api/pulp_ansible_galaxy_api_v3_versions_api.rb +0 -37
- data/lib/pulp_ansible_client/api/remotes_collection_api.rb +0 -81
- data/lib/pulp_ansible_client/api/remotes_role_api.rb +0 -81
- data/lib/pulp_ansible_client/api/repositories_ansible_api.rb +0 -27
- data/lib/pulp_ansible_client/api/repositories_ansible_versions_api.rb +0 -45
- data/lib/pulp_ansible_client/api/{role_list_api.rb → versions_api.rb} +73 -4
- data/lib/pulp_ansible_client/models/ansible_ansible_distribution_response.rb +1 -1
- data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +11 -11
- data/lib/pulp_ansible_client/models/ansible_role_response.rb +11 -11
- data/lib/pulp_ansible_client/models/collection_ref_response.rb +1 -1
- data/lib/pulp_ansible_client/models/collection_response.rb +2 -2
- data/lib/pulp_ansible_client/models/collection_version_response.rb +3 -3
- data/lib/pulp_ansible_client/models/galaxy_collection_response.rb +2 -2
- data/lib/pulp_ansible_client/models/galaxy_collection_version_response.rb +4 -4
- data/lib/pulp_ansible_client/models/galaxy_role_response.rb +1 -1
- data/lib/pulp_ansible_client/models/galaxy_role_version_response.rb +1 -1
- data/lib/pulp_ansible_client/models/inline_response20013.rb +20 -31
- data/lib/pulp_ansible_client/models/inline_response20014.rb +20 -31
- data/lib/pulp_ansible_client/models/repository_sync_url.rb +1 -0
- data/lib/pulp_ansible_client/version.rb +1 -1
- data/lib/pulp_ansible_client.rb +3 -4
- data/spec/api/{v2_collections_api_spec.rb → api_collections_api_spec.rb} +6 -6
- data/spec/api/{v1_roles_api_spec.rb → api_roles_api_spec.rb} +6 -6
- data/spec/api/distributions_ansible_api_spec.rb +0 -21
- data/spec/api/pulp_ansible_galaxy_api_v3_versions_api_spec.rb +0 -11
- data/spec/api/remotes_collection_api_spec.rb +0 -27
- data/spec/api/remotes_role_api_spec.rb +0 -27
- data/spec/api/repositories_ansible_api_spec.rb +0 -9
- data/spec/api/repositories_ansible_versions_api_spec.rb +0 -15
- data/spec/api/{role_list_api_spec.rb → versions_api_spec.rb} +20 -6
- data/spec/models/ansible_collection_version_response_spec.rb +3 -3
- data/spec/models/ansible_role_response_spec.rb +3 -3
- data/spec/models/inline_response20013_spec.rb +3 -9
- data/spec/models/inline_response20014_spec.rb +3 -9
- metadata +14 -18
- data/docs/GalaxyCollectionListApi.md +0 -63
- data/docs/RoleListApi.md +0 -65
- data/lib/pulp_ansible_client/api/galaxy_collection_list_api.rb +0 -91
- data/spec/api/galaxy_collection_list_api_spec.rb +0 -49
@@ -87,13 +87,6 @@ module PulpAnsibleClient
|
|
87
87
|
# Trigger an asynchronous delete task
|
88
88
|
# @param ansible_ansible_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.
|
97
90
|
# @return [AsyncOperationResponse]
|
98
91
|
def delete(ansible_ansible_distribution_href, opts = {})
|
99
92
|
data, _status_code, _headers = delete_with_http_info(ansible_ansible_distribution_href, opts)
|
@@ -104,13 +97,6 @@ module PulpAnsibleClient
|
|
104
97
|
# Trigger an asynchronous delete task
|
105
98
|
# @param ansible_ansible_distribution_href [String]
|
106
99
|
# @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.
|
114
100
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
115
101
|
def delete_with_http_info(ansible_ansible_distribution_href, opts = {})
|
116
102
|
if @api_client.config.debugging
|
@@ -125,13 +111,6 @@ module PulpAnsibleClient
|
|
125
111
|
|
126
112
|
# query parameters
|
127
113
|
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?
|
135
114
|
|
136
115
|
# header parameters
|
137
116
|
header_params = opts[:header_params] || {}
|
@@ -260,13 +239,6 @@ module PulpAnsibleClient
|
|
260
239
|
# @param ansible_ansible_distribution_href [String]
|
261
240
|
# @param patchedansible_ansible_distribution [PatchedansibleAnsibleDistribution]
|
262
241
|
# @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.
|
270
242
|
# @return [AsyncOperationResponse]
|
271
243
|
def partial_update(ansible_ansible_distribution_href, patchedansible_ansible_distribution, opts = {})
|
272
244
|
data, _status_code, _headers = partial_update_with_http_info(ansible_ansible_distribution_href, patchedansible_ansible_distribution, opts)
|
@@ -278,13 +250,6 @@ module PulpAnsibleClient
|
|
278
250
|
# @param ansible_ansible_distribution_href [String]
|
279
251
|
# @param patchedansible_ansible_distribution [PatchedansibleAnsibleDistribution]
|
280
252
|
# @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.
|
288
253
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
289
254
|
def partial_update_with_http_info(ansible_ansible_distribution_href, patchedansible_ansible_distribution, opts = {})
|
290
255
|
if @api_client.config.debugging
|
@@ -303,13 +268,6 @@ module PulpAnsibleClient
|
|
303
268
|
|
304
269
|
# query parameters
|
305
270
|
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?
|
313
271
|
|
314
272
|
# header parameters
|
315
273
|
header_params = opts[:header_params] || {}
|
@@ -419,13 +377,6 @@ module PulpAnsibleClient
|
|
419
377
|
# @param ansible_ansible_distribution_href [String]
|
420
378
|
# @param ansible_ansible_distribution [AnsibleAnsibleDistribution]
|
421
379
|
# @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.
|
429
380
|
# @return [AsyncOperationResponse]
|
430
381
|
def update(ansible_ansible_distribution_href, ansible_ansible_distribution, opts = {})
|
431
382
|
data, _status_code, _headers = update_with_http_info(ansible_ansible_distribution_href, ansible_ansible_distribution, opts)
|
@@ -437,13 +388,6 @@ module PulpAnsibleClient
|
|
437
388
|
# @param ansible_ansible_distribution_href [String]
|
438
389
|
# @param ansible_ansible_distribution [AnsibleAnsibleDistribution]
|
439
390
|
# @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.
|
447
391
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
448
392
|
def update_with_http_info(ansible_ansible_distribution_href, ansible_ansible_distribution, opts = {})
|
449
393
|
if @api_client.config.debugging
|
@@ -462,13 +406,6 @@ module PulpAnsibleClient
|
|
462
406
|
|
463
407
|
# query parameters
|
464
408
|
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?
|
472
409
|
|
473
410
|
# header parameters
|
474
411
|
header_params = opts[:header_params] || {}
|
@@ -146,17 +146,6 @@ module PulpAnsibleClient
|
|
146
146
|
# @param path [String]
|
147
147
|
# @param version [String]
|
148
148
|
# @param [Hash] opts the optional parameters
|
149
|
-
# @option opts [String] :certification certification
|
150
|
-
# @option opts [String] :deprecated deprecated
|
151
|
-
# @option opts [String] :is_highest is_highest
|
152
|
-
# @option opts [String] :name2 name
|
153
|
-
# @option opts [String] :namespace2 namespace
|
154
|
-
# @option opts [String] :q q
|
155
|
-
# @option opts [String] :repository_version repository_version
|
156
|
-
# @option opts [String] :repository_version_added repository_version_added
|
157
|
-
# @option opts [String] :repository_version_removed repository_version_removed
|
158
|
-
# @option opts [String] :tags tags
|
159
|
-
# @option opts [String] :version2 version
|
160
149
|
# @option opts [String] :fields A list of fields to include in the response.
|
161
150
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
162
151
|
# @return [CollectionVersionResponse]
|
@@ -171,17 +160,6 @@ module PulpAnsibleClient
|
|
171
160
|
# @param path [String]
|
172
161
|
# @param version [String]
|
173
162
|
# @param [Hash] opts the optional parameters
|
174
|
-
# @option opts [String] :certification certification
|
175
|
-
# @option opts [String] :deprecated deprecated
|
176
|
-
# @option opts [String] :is_highest is_highest
|
177
|
-
# @option opts [String] :name2 name
|
178
|
-
# @option opts [String] :namespace2 namespace
|
179
|
-
# @option opts [String] :q q
|
180
|
-
# @option opts [String] :repository_version repository_version
|
181
|
-
# @option opts [String] :repository_version_added repository_version_added
|
182
|
-
# @option opts [String] :repository_version_removed repository_version_removed
|
183
|
-
# @option opts [String] :tags tags
|
184
|
-
# @option opts [String] :version2 version
|
185
163
|
# @option opts [String] :fields A list of fields to include in the response.
|
186
164
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
187
165
|
# @return [Array<(CollectionVersionResponse, Integer, Hash)>] CollectionVersionResponse data, response status code and response headers
|
@@ -205,26 +183,11 @@ module PulpAnsibleClient
|
|
205
183
|
if @api_client.config.client_side_validation && version.nil?
|
206
184
|
fail ArgumentError, "Missing the required parameter 'version' when calling PulpAnsibleGalaxyApiV3VersionsApi.read"
|
207
185
|
end
|
208
|
-
allowable_values = ["certified", "not_certified", "needs_review"]
|
209
|
-
if @api_client.config.client_side_validation && opts[:'certification'] && !allowable_values.include?(opts[:'certification'])
|
210
|
-
fail ArgumentError, "invalid value for \"certification\", must be one of #{allowable_values}"
|
211
|
-
end
|
212
186
|
# resource path
|
213
187
|
local_var_path = '/pulp_ansible/galaxy/{path}/api/v3/collections/{namespace}/{name}/versions/{version}/'.sub('{' + 'name' + '}', CGI.escape(name.to_s).gsub('%2F', '/')).sub('{' + 'namespace' + '}', CGI.escape(namespace.to_s).gsub('%2F', '/')).sub('{' + 'path' + '}', CGI.escape(path.to_s).gsub('%2F', '/')).sub('{' + 'version' + '}', CGI.escape(version.to_s).gsub('%2F', '/'))
|
214
188
|
|
215
189
|
# query parameters
|
216
190
|
query_params = opts[:query_params] || {}
|
217
|
-
query_params[:'certification'] = opts[:'certification'] if !opts[:'certification'].nil?
|
218
|
-
query_params[:'deprecated'] = opts[:'deprecated'] if !opts[:'deprecated'].nil?
|
219
|
-
query_params[:'is_highest'] = opts[:'is_highest'] if !opts[:'is_highest'].nil?
|
220
|
-
query_params[:'name'] = opts[:'name2'] if !opts[:'name2'].nil?
|
221
|
-
query_params[:'namespace'] = opts[:'namespace2'] if !opts[:'namespace2'].nil?
|
222
|
-
query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
|
223
|
-
query_params[:'repository_version'] = opts[:'repository_version'] if !opts[:'repository_version'].nil?
|
224
|
-
query_params[:'repository_version_added'] = opts[:'repository_version_added'] if !opts[:'repository_version_added'].nil?
|
225
|
-
query_params[:'repository_version_removed'] = opts[:'repository_version_removed'] if !opts[:'repository_version_removed'].nil?
|
226
|
-
query_params[:'tags'] = opts[:'tags'] if !opts[:'tags'].nil?
|
227
|
-
query_params[:'version'] = opts[:'version2'] if !opts[:'version2'].nil?
|
228
191
|
query_params[:'fields'] = opts[:'fields'] if !opts[:'fields'].nil?
|
229
192
|
query_params[:'exclude_fields'] = opts[:'exclude_fields'] if !opts[:'exclude_fields'].nil?
|
230
193
|
|
@@ -87,15 +87,6 @@ module PulpAnsibleClient
|
|
87
87
|
# Trigger an asynchronous delete task
|
88
88
|
# @param ansible_collection_remote_href [String]
|
89
89
|
# @param [Hash] opts the optional parameters
|
90
|
-
# @option opts [String] :name name
|
91
|
-
# @option opts [String] :name__in name__in
|
92
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
93
|
-
# @option opts [String] :pulp_last_updated pulp_last_updated
|
94
|
-
# @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
|
95
|
-
# @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
|
96
|
-
# @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
|
97
|
-
# @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
|
98
|
-
# @option opts [String] :pulp_last_updated__range pulp_last_updated__range
|
99
90
|
# @return [AsyncOperationResponse]
|
100
91
|
def delete(ansible_collection_remote_href, opts = {})
|
101
92
|
data, _status_code, _headers = delete_with_http_info(ansible_collection_remote_href, opts)
|
@@ -106,15 +97,6 @@ module PulpAnsibleClient
|
|
106
97
|
# Trigger an asynchronous delete task
|
107
98
|
# @param ansible_collection_remote_href [String]
|
108
99
|
# @param [Hash] opts the optional parameters
|
109
|
-
# @option opts [String] :name name
|
110
|
-
# @option opts [String] :name__in name__in
|
111
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
112
|
-
# @option opts [String] :pulp_last_updated pulp_last_updated
|
113
|
-
# @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
|
114
|
-
# @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
|
115
|
-
# @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
|
116
|
-
# @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
|
117
|
-
# @option opts [String] :pulp_last_updated__range pulp_last_updated__range
|
118
100
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
119
101
|
def delete_with_http_info(ansible_collection_remote_href, opts = {})
|
120
102
|
if @api_client.config.debugging
|
@@ -129,15 +111,6 @@ module PulpAnsibleClient
|
|
129
111
|
|
130
112
|
# query parameters
|
131
113
|
query_params = opts[:query_params] || {}
|
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?
|
135
|
-
query_params[:'pulp_last_updated'] = opts[:'pulp_last_updated'] if !opts[:'pulp_last_updated'].nil?
|
136
|
-
query_params[:'pulp_last_updated__gt'] = opts[:'pulp_last_updated__gt'] if !opts[:'pulp_last_updated__gt'].nil?
|
137
|
-
query_params[:'pulp_last_updated__gte'] = opts[:'pulp_last_updated__gte'] if !opts[:'pulp_last_updated__gte'].nil?
|
138
|
-
query_params[:'pulp_last_updated__lt'] = opts[:'pulp_last_updated__lt'] if !opts[:'pulp_last_updated__lt'].nil?
|
139
|
-
query_params[:'pulp_last_updated__lte'] = opts[:'pulp_last_updated__lte'] if !opts[:'pulp_last_updated__lte'].nil?
|
140
|
-
query_params[:'pulp_last_updated__range'] = opts[:'pulp_last_updated__range'] if !opts[:'pulp_last_updated__range'].nil?
|
141
114
|
|
142
115
|
# header parameters
|
143
116
|
header_params = opts[:header_params] || {}
|
@@ -272,15 +245,6 @@ module PulpAnsibleClient
|
|
272
245
|
# @param ansible_collection_remote_href [String]
|
273
246
|
# @param patchedansible_collection_remote [PatchedansibleCollectionRemote]
|
274
247
|
# @param [Hash] opts the optional parameters
|
275
|
-
# @option opts [String] :name name
|
276
|
-
# @option opts [String] :name__in name__in
|
277
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
278
|
-
# @option opts [String] :pulp_last_updated pulp_last_updated
|
279
|
-
# @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
|
280
|
-
# @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
|
281
|
-
# @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
|
282
|
-
# @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
|
283
|
-
# @option opts [String] :pulp_last_updated__range pulp_last_updated__range
|
284
248
|
# @return [AsyncOperationResponse]
|
285
249
|
def partial_update(ansible_collection_remote_href, patchedansible_collection_remote, opts = {})
|
286
250
|
data, _status_code, _headers = partial_update_with_http_info(ansible_collection_remote_href, patchedansible_collection_remote, opts)
|
@@ -292,15 +256,6 @@ module PulpAnsibleClient
|
|
292
256
|
# @param ansible_collection_remote_href [String]
|
293
257
|
# @param patchedansible_collection_remote [PatchedansibleCollectionRemote]
|
294
258
|
# @param [Hash] opts the optional parameters
|
295
|
-
# @option opts [String] :name name
|
296
|
-
# @option opts [String] :name__in name__in
|
297
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
298
|
-
# @option opts [String] :pulp_last_updated pulp_last_updated
|
299
|
-
# @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
|
300
|
-
# @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
|
301
|
-
# @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
|
302
|
-
# @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
|
303
|
-
# @option opts [String] :pulp_last_updated__range pulp_last_updated__range
|
304
259
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
305
260
|
def partial_update_with_http_info(ansible_collection_remote_href, patchedansible_collection_remote, opts = {})
|
306
261
|
if @api_client.config.debugging
|
@@ -319,15 +274,6 @@ module PulpAnsibleClient
|
|
319
274
|
|
320
275
|
# query parameters
|
321
276
|
query_params = opts[:query_params] || {}
|
322
|
-
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
323
|
-
query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
|
324
|
-
query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
|
325
|
-
query_params[:'pulp_last_updated'] = opts[:'pulp_last_updated'] if !opts[:'pulp_last_updated'].nil?
|
326
|
-
query_params[:'pulp_last_updated__gt'] = opts[:'pulp_last_updated__gt'] if !opts[:'pulp_last_updated__gt'].nil?
|
327
|
-
query_params[:'pulp_last_updated__gte'] = opts[:'pulp_last_updated__gte'] if !opts[:'pulp_last_updated__gte'].nil?
|
328
|
-
query_params[:'pulp_last_updated__lt'] = opts[:'pulp_last_updated__lt'] if !opts[:'pulp_last_updated__lt'].nil?
|
329
|
-
query_params[:'pulp_last_updated__lte'] = opts[:'pulp_last_updated__lte'] if !opts[:'pulp_last_updated__lte'].nil?
|
330
|
-
query_params[:'pulp_last_updated__range'] = opts[:'pulp_last_updated__range'] if !opts[:'pulp_last_updated__range'].nil?
|
331
277
|
|
332
278
|
# header parameters
|
333
279
|
header_params = opts[:header_params] || {}
|
@@ -437,15 +383,6 @@ module PulpAnsibleClient
|
|
437
383
|
# @param ansible_collection_remote_href [String]
|
438
384
|
# @param ansible_collection_remote [AnsibleCollectionRemote]
|
439
385
|
# @param [Hash] opts the optional parameters
|
440
|
-
# @option opts [String] :name name
|
441
|
-
# @option opts [String] :name__in name__in
|
442
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
443
|
-
# @option opts [String] :pulp_last_updated pulp_last_updated
|
444
|
-
# @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
|
445
|
-
# @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
|
446
|
-
# @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
|
447
|
-
# @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
|
448
|
-
# @option opts [String] :pulp_last_updated__range pulp_last_updated__range
|
449
386
|
# @return [AsyncOperationResponse]
|
450
387
|
def update(ansible_collection_remote_href, ansible_collection_remote, opts = {})
|
451
388
|
data, _status_code, _headers = update_with_http_info(ansible_collection_remote_href, ansible_collection_remote, opts)
|
@@ -457,15 +394,6 @@ module PulpAnsibleClient
|
|
457
394
|
# @param ansible_collection_remote_href [String]
|
458
395
|
# @param ansible_collection_remote [AnsibleCollectionRemote]
|
459
396
|
# @param [Hash] opts the optional parameters
|
460
|
-
# @option opts [String] :name name
|
461
|
-
# @option opts [String] :name__in name__in
|
462
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
463
|
-
# @option opts [String] :pulp_last_updated pulp_last_updated
|
464
|
-
# @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
|
465
|
-
# @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
|
466
|
-
# @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
|
467
|
-
# @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
|
468
|
-
# @option opts [String] :pulp_last_updated__range pulp_last_updated__range
|
469
397
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
470
398
|
def update_with_http_info(ansible_collection_remote_href, ansible_collection_remote, opts = {})
|
471
399
|
if @api_client.config.debugging
|
@@ -484,15 +412,6 @@ module PulpAnsibleClient
|
|
484
412
|
|
485
413
|
# query parameters
|
486
414
|
query_params = opts[:query_params] || {}
|
487
|
-
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
488
|
-
query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
|
489
|
-
query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
|
490
|
-
query_params[:'pulp_last_updated'] = opts[:'pulp_last_updated'] if !opts[:'pulp_last_updated'].nil?
|
491
|
-
query_params[:'pulp_last_updated__gt'] = opts[:'pulp_last_updated__gt'] if !opts[:'pulp_last_updated__gt'].nil?
|
492
|
-
query_params[:'pulp_last_updated__gte'] = opts[:'pulp_last_updated__gte'] if !opts[:'pulp_last_updated__gte'].nil?
|
493
|
-
query_params[:'pulp_last_updated__lt'] = opts[:'pulp_last_updated__lt'] if !opts[:'pulp_last_updated__lt'].nil?
|
494
|
-
query_params[:'pulp_last_updated__lte'] = opts[:'pulp_last_updated__lte'] if !opts[:'pulp_last_updated__lte'].nil?
|
495
|
-
query_params[:'pulp_last_updated__range'] = opts[:'pulp_last_updated__range'] if !opts[:'pulp_last_updated__range'].nil?
|
496
415
|
|
497
416
|
# header parameters
|
498
417
|
header_params = opts[:header_params] || {}
|
@@ -87,15 +87,6 @@ module PulpAnsibleClient
|
|
87
87
|
# Trigger an asynchronous delete task
|
88
88
|
# @param ansible_role_remote_href [String]
|
89
89
|
# @param [Hash] opts the optional parameters
|
90
|
-
# @option opts [String] :name name
|
91
|
-
# @option opts [String] :name__in name__in
|
92
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
93
|
-
# @option opts [String] :pulp_last_updated pulp_last_updated
|
94
|
-
# @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
|
95
|
-
# @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
|
96
|
-
# @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
|
97
|
-
# @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
|
98
|
-
# @option opts [String] :pulp_last_updated__range pulp_last_updated__range
|
99
90
|
# @return [AsyncOperationResponse]
|
100
91
|
def delete(ansible_role_remote_href, opts = {})
|
101
92
|
data, _status_code, _headers = delete_with_http_info(ansible_role_remote_href, opts)
|
@@ -106,15 +97,6 @@ module PulpAnsibleClient
|
|
106
97
|
# Trigger an asynchronous delete task
|
107
98
|
# @param ansible_role_remote_href [String]
|
108
99
|
# @param [Hash] opts the optional parameters
|
109
|
-
# @option opts [String] :name name
|
110
|
-
# @option opts [String] :name__in name__in
|
111
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
112
|
-
# @option opts [String] :pulp_last_updated pulp_last_updated
|
113
|
-
# @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
|
114
|
-
# @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
|
115
|
-
# @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
|
116
|
-
# @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
|
117
|
-
# @option opts [String] :pulp_last_updated__range pulp_last_updated__range
|
118
100
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
119
101
|
def delete_with_http_info(ansible_role_remote_href, opts = {})
|
120
102
|
if @api_client.config.debugging
|
@@ -129,15 +111,6 @@ module PulpAnsibleClient
|
|
129
111
|
|
130
112
|
# query parameters
|
131
113
|
query_params = opts[:query_params] || {}
|
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?
|
135
|
-
query_params[:'pulp_last_updated'] = opts[:'pulp_last_updated'] if !opts[:'pulp_last_updated'].nil?
|
136
|
-
query_params[:'pulp_last_updated__gt'] = opts[:'pulp_last_updated__gt'] if !opts[:'pulp_last_updated__gt'].nil?
|
137
|
-
query_params[:'pulp_last_updated__gte'] = opts[:'pulp_last_updated__gte'] if !opts[:'pulp_last_updated__gte'].nil?
|
138
|
-
query_params[:'pulp_last_updated__lt'] = opts[:'pulp_last_updated__lt'] if !opts[:'pulp_last_updated__lt'].nil?
|
139
|
-
query_params[:'pulp_last_updated__lte'] = opts[:'pulp_last_updated__lte'] if !opts[:'pulp_last_updated__lte'].nil?
|
140
|
-
query_params[:'pulp_last_updated__range'] = opts[:'pulp_last_updated__range'] if !opts[:'pulp_last_updated__range'].nil?
|
141
114
|
|
142
115
|
# header parameters
|
143
116
|
header_params = opts[:header_params] || {}
|
@@ -272,15 +245,6 @@ module PulpAnsibleClient
|
|
272
245
|
# @param ansible_role_remote_href [String]
|
273
246
|
# @param patchedansible_role_remote [PatchedansibleRoleRemote]
|
274
247
|
# @param [Hash] opts the optional parameters
|
275
|
-
# @option opts [String] :name name
|
276
|
-
# @option opts [String] :name__in name__in
|
277
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
278
|
-
# @option opts [String] :pulp_last_updated pulp_last_updated
|
279
|
-
# @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
|
280
|
-
# @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
|
281
|
-
# @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
|
282
|
-
# @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
|
283
|
-
# @option opts [String] :pulp_last_updated__range pulp_last_updated__range
|
284
248
|
# @return [AsyncOperationResponse]
|
285
249
|
def partial_update(ansible_role_remote_href, patchedansible_role_remote, opts = {})
|
286
250
|
data, _status_code, _headers = partial_update_with_http_info(ansible_role_remote_href, patchedansible_role_remote, opts)
|
@@ -292,15 +256,6 @@ module PulpAnsibleClient
|
|
292
256
|
# @param ansible_role_remote_href [String]
|
293
257
|
# @param patchedansible_role_remote [PatchedansibleRoleRemote]
|
294
258
|
# @param [Hash] opts the optional parameters
|
295
|
-
# @option opts [String] :name name
|
296
|
-
# @option opts [String] :name__in name__in
|
297
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
298
|
-
# @option opts [String] :pulp_last_updated pulp_last_updated
|
299
|
-
# @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
|
300
|
-
# @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
|
301
|
-
# @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
|
302
|
-
# @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
|
303
|
-
# @option opts [String] :pulp_last_updated__range pulp_last_updated__range
|
304
259
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
305
260
|
def partial_update_with_http_info(ansible_role_remote_href, patchedansible_role_remote, opts = {})
|
306
261
|
if @api_client.config.debugging
|
@@ -319,15 +274,6 @@ module PulpAnsibleClient
|
|
319
274
|
|
320
275
|
# query parameters
|
321
276
|
query_params = opts[:query_params] || {}
|
322
|
-
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
323
|
-
query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
|
324
|
-
query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
|
325
|
-
query_params[:'pulp_last_updated'] = opts[:'pulp_last_updated'] if !opts[:'pulp_last_updated'].nil?
|
326
|
-
query_params[:'pulp_last_updated__gt'] = opts[:'pulp_last_updated__gt'] if !opts[:'pulp_last_updated__gt'].nil?
|
327
|
-
query_params[:'pulp_last_updated__gte'] = opts[:'pulp_last_updated__gte'] if !opts[:'pulp_last_updated__gte'].nil?
|
328
|
-
query_params[:'pulp_last_updated__lt'] = opts[:'pulp_last_updated__lt'] if !opts[:'pulp_last_updated__lt'].nil?
|
329
|
-
query_params[:'pulp_last_updated__lte'] = opts[:'pulp_last_updated__lte'] if !opts[:'pulp_last_updated__lte'].nil?
|
330
|
-
query_params[:'pulp_last_updated__range'] = opts[:'pulp_last_updated__range'] if !opts[:'pulp_last_updated__range'].nil?
|
331
277
|
|
332
278
|
# header parameters
|
333
279
|
header_params = opts[:header_params] || {}
|
@@ -437,15 +383,6 @@ module PulpAnsibleClient
|
|
437
383
|
# @param ansible_role_remote_href [String]
|
438
384
|
# @param ansible_role_remote [AnsibleRoleRemote]
|
439
385
|
# @param [Hash] opts the optional parameters
|
440
|
-
# @option opts [String] :name name
|
441
|
-
# @option opts [String] :name__in name__in
|
442
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
443
|
-
# @option opts [String] :pulp_last_updated pulp_last_updated
|
444
|
-
# @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
|
445
|
-
# @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
|
446
|
-
# @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
|
447
|
-
# @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
|
448
|
-
# @option opts [String] :pulp_last_updated__range pulp_last_updated__range
|
449
386
|
# @return [AsyncOperationResponse]
|
450
387
|
def update(ansible_role_remote_href, ansible_role_remote, opts = {})
|
451
388
|
data, _status_code, _headers = update_with_http_info(ansible_role_remote_href, ansible_role_remote, opts)
|
@@ -457,15 +394,6 @@ module PulpAnsibleClient
|
|
457
394
|
# @param ansible_role_remote_href [String]
|
458
395
|
# @param ansible_role_remote [AnsibleRoleRemote]
|
459
396
|
# @param [Hash] opts the optional parameters
|
460
|
-
# @option opts [String] :name name
|
461
|
-
# @option opts [String] :name__in name__in
|
462
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
463
|
-
# @option opts [String] :pulp_last_updated pulp_last_updated
|
464
|
-
# @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
|
465
|
-
# @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
|
466
|
-
# @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
|
467
|
-
# @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
|
468
|
-
# @option opts [String] :pulp_last_updated__range pulp_last_updated__range
|
469
397
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
470
398
|
def update_with_http_info(ansible_role_remote_href, ansible_role_remote, opts = {})
|
471
399
|
if @api_client.config.debugging
|
@@ -484,15 +412,6 @@ module PulpAnsibleClient
|
|
484
412
|
|
485
413
|
# query parameters
|
486
414
|
query_params = opts[:query_params] || {}
|
487
|
-
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
488
|
-
query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
|
489
|
-
query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
|
490
|
-
query_params[:'pulp_last_updated'] = opts[:'pulp_last_updated'] if !opts[:'pulp_last_updated'].nil?
|
491
|
-
query_params[:'pulp_last_updated__gt'] = opts[:'pulp_last_updated__gt'] if !opts[:'pulp_last_updated__gt'].nil?
|
492
|
-
query_params[:'pulp_last_updated__gte'] = opts[:'pulp_last_updated__gte'] if !opts[:'pulp_last_updated__gte'].nil?
|
493
|
-
query_params[:'pulp_last_updated__lt'] = opts[:'pulp_last_updated__lt'] if !opts[:'pulp_last_updated__lt'].nil?
|
494
|
-
query_params[:'pulp_last_updated__lte'] = opts[:'pulp_last_updated__lte'] if !opts[:'pulp_last_updated__lte'].nil?
|
495
|
-
query_params[:'pulp_last_updated__range'] = opts[:'pulp_last_updated__range'] if !opts[:'pulp_last_updated__range'].nil?
|
496
415
|
|
497
416
|
# header parameters
|
498
417
|
header_params = opts[:header_params] || {}
|
@@ -87,9 +87,6 @@ module PulpAnsibleClient
|
|
87
87
|
# Trigger an asynchronous delete task
|
88
88
|
# @param ansible_ansible_repository_href [String]
|
89
89
|
# @param [Hash] opts the optional parameters
|
90
|
-
# @option opts [String] :name name
|
91
|
-
# @option opts [String] :name__in name__in
|
92
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
93
90
|
# @return [AsyncOperationResponse]
|
94
91
|
def delete(ansible_ansible_repository_href, opts = {})
|
95
92
|
data, _status_code, _headers = delete_with_http_info(ansible_ansible_repository_href, opts)
|
@@ -100,9 +97,6 @@ module PulpAnsibleClient
|
|
100
97
|
# Trigger an asynchronous delete task
|
101
98
|
# @param ansible_ansible_repository_href [String]
|
102
99
|
# @param [Hash] opts the optional parameters
|
103
|
-
# @option opts [String] :name name
|
104
|
-
# @option opts [String] :name__in name__in
|
105
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
106
100
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
107
101
|
def delete_with_http_info(ansible_ansible_repository_href, opts = {})
|
108
102
|
if @api_client.config.debugging
|
@@ -117,9 +111,6 @@ module PulpAnsibleClient
|
|
117
111
|
|
118
112
|
# query parameters
|
119
113
|
query_params = opts[:query_params] || {}
|
120
|
-
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
121
|
-
query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
|
122
|
-
query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
|
123
114
|
|
124
115
|
# header parameters
|
125
116
|
header_params = opts[:header_params] || {}
|
@@ -306,9 +297,6 @@ module PulpAnsibleClient
|
|
306
297
|
# @param ansible_ansible_repository_href [String]
|
307
298
|
# @param patchedansible_ansible_repository [PatchedansibleAnsibleRepository]
|
308
299
|
# @param [Hash] opts the optional parameters
|
309
|
-
# @option opts [String] :name name
|
310
|
-
# @option opts [String] :name__in name__in
|
311
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
312
300
|
# @return [AsyncOperationResponse]
|
313
301
|
def partial_update(ansible_ansible_repository_href, patchedansible_ansible_repository, opts = {})
|
314
302
|
data, _status_code, _headers = partial_update_with_http_info(ansible_ansible_repository_href, patchedansible_ansible_repository, opts)
|
@@ -320,9 +308,6 @@ module PulpAnsibleClient
|
|
320
308
|
# @param ansible_ansible_repository_href [String]
|
321
309
|
# @param patchedansible_ansible_repository [PatchedansibleAnsibleRepository]
|
322
310
|
# @param [Hash] opts the optional parameters
|
323
|
-
# @option opts [String] :name name
|
324
|
-
# @option opts [String] :name__in name__in
|
325
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
326
311
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
327
312
|
def partial_update_with_http_info(ansible_ansible_repository_href, patchedansible_ansible_repository, opts = {})
|
328
313
|
if @api_client.config.debugging
|
@@ -341,9 +326,6 @@ module PulpAnsibleClient
|
|
341
326
|
|
342
327
|
# query parameters
|
343
328
|
query_params = opts[:query_params] || {}
|
344
|
-
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
345
|
-
query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
|
346
|
-
query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
|
347
329
|
|
348
330
|
# header parameters
|
349
331
|
header_params = opts[:header_params] || {}
|
@@ -521,9 +503,6 @@ module PulpAnsibleClient
|
|
521
503
|
# @param ansible_ansible_repository_href [String]
|
522
504
|
# @param ansible_ansible_repository [AnsibleAnsibleRepository]
|
523
505
|
# @param [Hash] opts the optional parameters
|
524
|
-
# @option opts [String] :name name
|
525
|
-
# @option opts [String] :name__in name__in
|
526
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
527
506
|
# @return [AsyncOperationResponse]
|
528
507
|
def update(ansible_ansible_repository_href, ansible_ansible_repository, opts = {})
|
529
508
|
data, _status_code, _headers = update_with_http_info(ansible_ansible_repository_href, ansible_ansible_repository, opts)
|
@@ -535,9 +514,6 @@ module PulpAnsibleClient
|
|
535
514
|
# @param ansible_ansible_repository_href [String]
|
536
515
|
# @param ansible_ansible_repository [AnsibleAnsibleRepository]
|
537
516
|
# @param [Hash] opts the optional parameters
|
538
|
-
# @option opts [String] :name name
|
539
|
-
# @option opts [String] :name__in name__in
|
540
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
541
517
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
542
518
|
def update_with_http_info(ansible_ansible_repository_href, ansible_ansible_repository, opts = {})
|
543
519
|
if @api_client.config.debugging
|
@@ -556,9 +532,6 @@ module PulpAnsibleClient
|
|
556
532
|
|
557
533
|
# query parameters
|
558
534
|
query_params = opts[:query_params] || {}
|
559
|
-
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
560
|
-
query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
|
561
|
-
query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
|
562
535
|
|
563
536
|
# header parameters
|
564
537
|
header_params = opts[:header_params] || {}
|
@@ -23,21 +23,6 @@ module PulpAnsibleClient
|
|
23
23
|
# Trigger an asynchronous task to delete a repositroy version.
|
24
24
|
# @param ansible_ansible_repository_version_href [String]
|
25
25
|
# @param [Hash] opts the optional parameters
|
26
|
-
# @option opts [String] :content content
|
27
|
-
# @option opts [String] :content__in content__in
|
28
|
-
# @option opts [String] :number number
|
29
|
-
# @option opts [String] :number__gt number__gt
|
30
|
-
# @option opts [String] :number__gte number__gte
|
31
|
-
# @option opts [String] :number__lt number__lt
|
32
|
-
# @option opts [String] :number__lte number__lte
|
33
|
-
# @option opts [String] :number__range number__range
|
34
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
35
|
-
# @option opts [String] :pulp_created pulp_created
|
36
|
-
# @option opts [String] :pulp_created__gt pulp_created__gt
|
37
|
-
# @option opts [String] :pulp_created__gte pulp_created__gte
|
38
|
-
# @option opts [String] :pulp_created__lt pulp_created__lt
|
39
|
-
# @option opts [String] :pulp_created__lte pulp_created__lte
|
40
|
-
# @option opts [String] :pulp_created__range pulp_created__range
|
41
26
|
# @return [AsyncOperationResponse]
|
42
27
|
def delete(ansible_ansible_repository_version_href, opts = {})
|
43
28
|
data, _status_code, _headers = delete_with_http_info(ansible_ansible_repository_version_href, opts)
|
@@ -48,21 +33,6 @@ module PulpAnsibleClient
|
|
48
33
|
# Trigger an asynchronous task to delete a repositroy version.
|
49
34
|
# @param ansible_ansible_repository_version_href [String]
|
50
35
|
# @param [Hash] opts the optional parameters
|
51
|
-
# @option opts [String] :content content
|
52
|
-
# @option opts [String] :content__in content__in
|
53
|
-
# @option opts [String] :number number
|
54
|
-
# @option opts [String] :number__gt number__gt
|
55
|
-
# @option opts [String] :number__gte number__gte
|
56
|
-
# @option opts [String] :number__lt number__lt
|
57
|
-
# @option opts [String] :number__lte number__lte
|
58
|
-
# @option opts [String] :number__range number__range
|
59
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
60
|
-
# @option opts [String] :pulp_created pulp_created
|
61
|
-
# @option opts [String] :pulp_created__gt pulp_created__gt
|
62
|
-
# @option opts [String] :pulp_created__gte pulp_created__gte
|
63
|
-
# @option opts [String] :pulp_created__lt pulp_created__lt
|
64
|
-
# @option opts [String] :pulp_created__lte pulp_created__lte
|
65
|
-
# @option opts [String] :pulp_created__range pulp_created__range
|
66
36
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
67
37
|
def delete_with_http_info(ansible_ansible_repository_version_href, opts = {})
|
68
38
|
if @api_client.config.debugging
|
@@ -77,21 +47,6 @@ module PulpAnsibleClient
|
|
77
47
|
|
78
48
|
# query parameters
|
79
49
|
query_params = opts[:query_params] || {}
|
80
|
-
query_params[:'content'] = opts[:'content'] if !opts[:'content'].nil?
|
81
|
-
query_params[:'content__in'] = opts[:'content__in'] if !opts[:'content__in'].nil?
|
82
|
-
query_params[:'number'] = opts[:'number'] if !opts[:'number'].nil?
|
83
|
-
query_params[:'number__gt'] = opts[:'number__gt'] if !opts[:'number__gt'].nil?
|
84
|
-
query_params[:'number__gte'] = opts[:'number__gte'] if !opts[:'number__gte'].nil?
|
85
|
-
query_params[:'number__lt'] = opts[:'number__lt'] if !opts[:'number__lt'].nil?
|
86
|
-
query_params[:'number__lte'] = opts[:'number__lte'] if !opts[:'number__lte'].nil?
|
87
|
-
query_params[:'number__range'] = opts[:'number__range'] if !opts[:'number__range'].nil?
|
88
|
-
query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
|
89
|
-
query_params[:'pulp_created'] = opts[:'pulp_created'] if !opts[:'pulp_created'].nil?
|
90
|
-
query_params[:'pulp_created__gt'] = opts[:'pulp_created__gt'] if !opts[:'pulp_created__gt'].nil?
|
91
|
-
query_params[:'pulp_created__gte'] = opts[:'pulp_created__gte'] if !opts[:'pulp_created__gte'].nil?
|
92
|
-
query_params[:'pulp_created__lt'] = opts[:'pulp_created__lt'] if !opts[:'pulp_created__lt'].nil?
|
93
|
-
query_params[:'pulp_created__lte'] = opts[:'pulp_created__lte'] if !opts[:'pulp_created__lte'].nil?
|
94
|
-
query_params[:'pulp_created__range'] = opts[:'pulp_created__range'] if !opts[:'pulp_created__range'].nil?
|
95
50
|
|
96
51
|
# header parameters
|
97
52
|
header_params = opts[:header_params] || {}
|