pulp_deb_client 2.6.1 → 2.7.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 +4 -4
- data/docs/DistributionsAptApi.md +6 -54
- data/docs/RemotesAptApi.md +6 -66
- data/docs/RepositoriesAptApi.md +6 -30
- data/docs/RepositoriesDebVersionsApi.md +2 -34
- data/lib/pulp_deb_client/api/distributions_apt_api.rb +0 -63
- data/lib/pulp_deb_client/api/remotes_apt_api.rb +0 -81
- data/lib/pulp_deb_client/api/repositories_apt_api.rb +0 -27
- data/lib/pulp_deb_client/api/repositories_deb_versions_api.rb +0 -45
- data/lib/pulp_deb_client/models/repository_sync_url.rb +1 -0
- data/lib/pulp_deb_client/version.rb +1 -1
- data/spec/api/distributions_apt_api_spec.rb +0 -21
- data/spec/api/remotes_apt_api_spec.rb +0 -27
- data/spec/api/repositories_apt_api_spec.rb +0 -9
- data/spec/api/repositories_deb_versions_api_spec.rb +0 -15
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0a8e29577b98ff97f66e8f6f44b1dacd69d639393c25704c3f717bf927c4657
|
4
|
+
data.tar.gz: d2da2061e64201c8c5a036f0e4684e49a3260d6798acef77da131066a0f5c98e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0198b942ca41e47398dfb38db7c2653af855df4eddc39cb08517a55d9e3f001713a33087db8d2ae72c8c8d1f11575d67f3517befec061be097e37f785c52fa26'
|
7
|
+
data.tar.gz: 40a571ebcc5f7b9571d9f1574f652fd2866194f2c1fa5bea82770da5c2e4938e4bf7d6ebfb64c853e3276946762e1f286fc944e588fde0089f85e6292a9aa48b
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
8
8
|
|
9
9
|
- API version: v3
|
10
|
-
- Package version: 2.
|
10
|
+
- Package version: 2.7.0
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [https://pulpproject.org](https://pulpproject.org)
|
13
13
|
|
@@ -24,16 +24,16 @@ gem build pulp_deb_client.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./pulp_deb_client-2.
|
27
|
+
gem install ./pulp_deb_client-2.7.0.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_deb_client-2.
|
30
|
+
(for development, run `gem install --dev ./pulp_deb_client-2.7.0.gem` to install the development dependencies)
|
31
31
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
33
33
|
|
34
34
|
Finally add this to the Gemfile:
|
35
35
|
|
36
|
-
gem 'pulp_deb_client', '~> 2.
|
36
|
+
gem 'pulp_deb_client', '~> 2.7.0'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
data/docs/DistributionsAptApi.md
CHANGED
@@ -68,7 +68,7 @@ Name | Type | Description | Notes
|
|
68
68
|
|
69
69
|
## delete
|
70
70
|
|
71
|
-
> AsyncOperationResponse delete(deb_apt_distribution_href
|
71
|
+
> AsyncOperationResponse delete(deb_apt_distribution_href)
|
72
72
|
|
73
73
|
Delete an apt distribution
|
74
74
|
|
@@ -88,19 +88,10 @@ end
|
|
88
88
|
|
89
89
|
api_instance = PulpDebClient::DistributionsAptApi.new
|
90
90
|
deb_apt_distribution_href = 'deb_apt_distribution_href_example' # String |
|
91
|
-
opts = {
|
92
|
-
base_path: 'base_path_example', # String | base_path
|
93
|
-
base_path__contains: 'base_path__contains_example', # String | base_path__contains
|
94
|
-
base_path__icontains: 'base_path__icontains_example', # String | base_path__icontains
|
95
|
-
base_path__in: 'base_path__in_example', # String | base_path__in
|
96
|
-
name: 'name_example', # String | name
|
97
|
-
name__in: 'name__in_example', # String | name__in
|
98
|
-
ordering: 'ordering_example' # String | Which field to use when ordering the results.
|
99
|
-
}
|
100
91
|
|
101
92
|
begin
|
102
93
|
#Delete an apt distribution
|
103
|
-
result = api_instance.delete(deb_apt_distribution_href
|
94
|
+
result = api_instance.delete(deb_apt_distribution_href)
|
104
95
|
p result
|
105
96
|
rescue PulpDebClient::ApiError => e
|
106
97
|
puts "Exception when calling DistributionsAptApi->delete: #{e}"
|
@@ -113,13 +104,6 @@ end
|
|
113
104
|
Name | Type | Description | Notes
|
114
105
|
------------- | ------------- | ------------- | -------------
|
115
106
|
**deb_apt_distribution_href** | **String**| |
|
116
|
-
**base_path** | **String**| base_path | [optional]
|
117
|
-
**base_path__contains** | **String**| base_path__contains | [optional]
|
118
|
-
**base_path__icontains** | **String**| base_path__icontains | [optional]
|
119
|
-
**base_path__in** | **String**| base_path__in | [optional]
|
120
|
-
**name** | **String**| name | [optional]
|
121
|
-
**name__in** | **String**| name__in | [optional]
|
122
|
-
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
123
107
|
|
124
108
|
### Return type
|
125
109
|
|
@@ -212,7 +196,7 @@ Name | Type | Description | Notes
|
|
212
196
|
|
213
197
|
## partial_update
|
214
198
|
|
215
|
-
> AsyncOperationResponse partial_update(deb_apt_distribution_href, patcheddeb_apt_distribution
|
199
|
+
> AsyncOperationResponse partial_update(deb_apt_distribution_href, patcheddeb_apt_distribution)
|
216
200
|
|
217
201
|
Update an apt distribution
|
218
202
|
|
@@ -233,19 +217,10 @@ end
|
|
233
217
|
api_instance = PulpDebClient::DistributionsAptApi.new
|
234
218
|
deb_apt_distribution_href = 'deb_apt_distribution_href_example' # String |
|
235
219
|
patcheddeb_apt_distribution = PulpDebClient::PatcheddebAptDistribution.new # PatcheddebAptDistribution |
|
236
|
-
opts = {
|
237
|
-
base_path: 'base_path_example', # String | base_path
|
238
|
-
base_path__contains: 'base_path__contains_example', # String | base_path__contains
|
239
|
-
base_path__icontains: 'base_path__icontains_example', # String | base_path__icontains
|
240
|
-
base_path__in: 'base_path__in_example', # String | base_path__in
|
241
|
-
name: 'name_example', # String | name
|
242
|
-
name__in: 'name__in_example', # String | name__in
|
243
|
-
ordering: 'ordering_example' # String | Which field to use when ordering the results.
|
244
|
-
}
|
245
220
|
|
246
221
|
begin
|
247
222
|
#Update an apt distribution
|
248
|
-
result = api_instance.partial_update(deb_apt_distribution_href, patcheddeb_apt_distribution
|
223
|
+
result = api_instance.partial_update(deb_apt_distribution_href, patcheddeb_apt_distribution)
|
249
224
|
p result
|
250
225
|
rescue PulpDebClient::ApiError => e
|
251
226
|
puts "Exception when calling DistributionsAptApi->partial_update: #{e}"
|
@@ -259,13 +234,6 @@ Name | Type | Description | Notes
|
|
259
234
|
------------- | ------------- | ------------- | -------------
|
260
235
|
**deb_apt_distribution_href** | **String**| |
|
261
236
|
**patcheddeb_apt_distribution** | [**PatcheddebAptDistribution**](PatcheddebAptDistribution.md)| |
|
262
|
-
**base_path** | **String**| base_path | [optional]
|
263
|
-
**base_path__contains** | **String**| base_path__contains | [optional]
|
264
|
-
**base_path__icontains** | **String**| base_path__icontains | [optional]
|
265
|
-
**base_path__in** | **String**| base_path__in | [optional]
|
266
|
-
**name** | **String**| name | [optional]
|
267
|
-
**name__in** | **String**| name__in | [optional]
|
268
|
-
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
269
237
|
|
270
238
|
### Return type
|
271
239
|
|
@@ -342,7 +310,7 @@ Name | Type | Description | Notes
|
|
342
310
|
|
343
311
|
## update
|
344
312
|
|
345
|
-
> AsyncOperationResponse update(deb_apt_distribution_href, deb_apt_distribution
|
313
|
+
> AsyncOperationResponse update(deb_apt_distribution_href, deb_apt_distribution)
|
346
314
|
|
347
315
|
Update an apt distribution
|
348
316
|
|
@@ -363,19 +331,10 @@ end
|
|
363
331
|
api_instance = PulpDebClient::DistributionsAptApi.new
|
364
332
|
deb_apt_distribution_href = 'deb_apt_distribution_href_example' # String |
|
365
333
|
deb_apt_distribution = PulpDebClient::DebAptDistribution.new # DebAptDistribution |
|
366
|
-
opts = {
|
367
|
-
base_path: 'base_path_example', # String | base_path
|
368
|
-
base_path__contains: 'base_path__contains_example', # String | base_path__contains
|
369
|
-
base_path__icontains: 'base_path__icontains_example', # String | base_path__icontains
|
370
|
-
base_path__in: 'base_path__in_example', # String | base_path__in
|
371
|
-
name: 'name_example', # String | name
|
372
|
-
name__in: 'name__in_example', # String | name__in
|
373
|
-
ordering: 'ordering_example' # String | Which field to use when ordering the results.
|
374
|
-
}
|
375
334
|
|
376
335
|
begin
|
377
336
|
#Update an apt distribution
|
378
|
-
result = api_instance.update(deb_apt_distribution_href, deb_apt_distribution
|
337
|
+
result = api_instance.update(deb_apt_distribution_href, deb_apt_distribution)
|
379
338
|
p result
|
380
339
|
rescue PulpDebClient::ApiError => e
|
381
340
|
puts "Exception when calling DistributionsAptApi->update: #{e}"
|
@@ -389,13 +348,6 @@ Name | Type | Description | Notes
|
|
389
348
|
------------- | ------------- | ------------- | -------------
|
390
349
|
**deb_apt_distribution_href** | **String**| |
|
391
350
|
**deb_apt_distribution** | [**DebAptDistribution**](DebAptDistribution.md)| |
|
392
|
-
**base_path** | **String**| base_path | [optional]
|
393
|
-
**base_path__contains** | **String**| base_path__contains | [optional]
|
394
|
-
**base_path__icontains** | **String**| base_path__icontains | [optional]
|
395
|
-
**base_path__in** | **String**| base_path__in | [optional]
|
396
|
-
**name** | **String**| name | [optional]
|
397
|
-
**name__in** | **String**| name__in | [optional]
|
398
|
-
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
399
351
|
|
400
352
|
### Return type
|
401
353
|
|
data/docs/RemotesAptApi.md
CHANGED
@@ -68,7 +68,7 @@ Name | Type | Description | Notes
|
|
68
68
|
|
69
69
|
## delete
|
70
70
|
|
71
|
-
> AsyncOperationResponse delete(deb_apt_remote_href
|
71
|
+
> AsyncOperationResponse delete(deb_apt_remote_href)
|
72
72
|
|
73
73
|
Delete an apt remote
|
74
74
|
|
@@ -88,21 +88,10 @@ end
|
|
88
88
|
|
89
89
|
api_instance = PulpDebClient::RemotesAptApi.new
|
90
90
|
deb_apt_remote_href = 'deb_apt_remote_href_example' # String |
|
91
|
-
opts = {
|
92
|
-
name: 'name_example', # String | name
|
93
|
-
name__in: 'name__in_example', # String | name__in
|
94
|
-
ordering: 'ordering_example', # String | Which field to use when ordering the results.
|
95
|
-
pulp_last_updated: 'pulp_last_updated_example', # String | pulp_last_updated
|
96
|
-
pulp_last_updated__gt: 'pulp_last_updated__gt_example', # String | pulp_last_updated__gt
|
97
|
-
pulp_last_updated__gte: 'pulp_last_updated__gte_example', # String | pulp_last_updated__gte
|
98
|
-
pulp_last_updated__lt: 'pulp_last_updated__lt_example', # String | pulp_last_updated__lt
|
99
|
-
pulp_last_updated__lte: 'pulp_last_updated__lte_example', # String | pulp_last_updated__lte
|
100
|
-
pulp_last_updated__range: 'pulp_last_updated__range_example' # String | pulp_last_updated__range
|
101
|
-
}
|
102
91
|
|
103
92
|
begin
|
104
93
|
#Delete an apt remote
|
105
|
-
result = api_instance.delete(deb_apt_remote_href
|
94
|
+
result = api_instance.delete(deb_apt_remote_href)
|
106
95
|
p result
|
107
96
|
rescue PulpDebClient::ApiError => e
|
108
97
|
puts "Exception when calling RemotesAptApi->delete: #{e}"
|
@@ -115,15 +104,6 @@ end
|
|
115
104
|
Name | Type | Description | Notes
|
116
105
|
------------- | ------------- | ------------- | -------------
|
117
106
|
**deb_apt_remote_href** | **String**| |
|
118
|
-
**name** | **String**| name | [optional]
|
119
|
-
**name__in** | **String**| name__in | [optional]
|
120
|
-
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
121
|
-
**pulp_last_updated** | **String**| pulp_last_updated | [optional]
|
122
|
-
**pulp_last_updated__gt** | **String**| pulp_last_updated__gt | [optional]
|
123
|
-
**pulp_last_updated__gte** | **String**| pulp_last_updated__gte | [optional]
|
124
|
-
**pulp_last_updated__lt** | **String**| pulp_last_updated__lt | [optional]
|
125
|
-
**pulp_last_updated__lte** | **String**| pulp_last_updated__lte | [optional]
|
126
|
-
**pulp_last_updated__range** | **String**| pulp_last_updated__range | [optional]
|
127
107
|
|
128
108
|
### Return type
|
129
109
|
|
@@ -220,7 +200,7 @@ Name | Type | Description | Notes
|
|
220
200
|
|
221
201
|
## partial_update
|
222
202
|
|
223
|
-
> AsyncOperationResponse partial_update(deb_apt_remote_href, patcheddeb_apt_remote
|
203
|
+
> AsyncOperationResponse partial_update(deb_apt_remote_href, patcheddeb_apt_remote)
|
224
204
|
|
225
205
|
Update an apt remote
|
226
206
|
|
@@ -241,21 +221,10 @@ end
|
|
241
221
|
api_instance = PulpDebClient::RemotesAptApi.new
|
242
222
|
deb_apt_remote_href = 'deb_apt_remote_href_example' # String |
|
243
223
|
patcheddeb_apt_remote = PulpDebClient::PatcheddebAptRemote.new # PatcheddebAptRemote |
|
244
|
-
opts = {
|
245
|
-
name: 'name_example', # String | name
|
246
|
-
name__in: 'name__in_example', # String | name__in
|
247
|
-
ordering: 'ordering_example', # String | Which field to use when ordering the results.
|
248
|
-
pulp_last_updated: 'pulp_last_updated_example', # String | pulp_last_updated
|
249
|
-
pulp_last_updated__gt: 'pulp_last_updated__gt_example', # String | pulp_last_updated__gt
|
250
|
-
pulp_last_updated__gte: 'pulp_last_updated__gte_example', # String | pulp_last_updated__gte
|
251
|
-
pulp_last_updated__lt: 'pulp_last_updated__lt_example', # String | pulp_last_updated__lt
|
252
|
-
pulp_last_updated__lte: 'pulp_last_updated__lte_example', # String | pulp_last_updated__lte
|
253
|
-
pulp_last_updated__range: 'pulp_last_updated__range_example' # String | pulp_last_updated__range
|
254
|
-
}
|
255
224
|
|
256
225
|
begin
|
257
226
|
#Update an apt remote
|
258
|
-
result = api_instance.partial_update(deb_apt_remote_href, patcheddeb_apt_remote
|
227
|
+
result = api_instance.partial_update(deb_apt_remote_href, patcheddeb_apt_remote)
|
259
228
|
p result
|
260
229
|
rescue PulpDebClient::ApiError => e
|
261
230
|
puts "Exception when calling RemotesAptApi->partial_update: #{e}"
|
@@ -269,15 +238,6 @@ Name | Type | Description | Notes
|
|
269
238
|
------------- | ------------- | ------------- | -------------
|
270
239
|
**deb_apt_remote_href** | **String**| |
|
271
240
|
**patcheddeb_apt_remote** | [**PatcheddebAptRemote**](PatcheddebAptRemote.md)| |
|
272
|
-
**name** | **String**| name | [optional]
|
273
|
-
**name__in** | **String**| name__in | [optional]
|
274
|
-
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
275
|
-
**pulp_last_updated** | **String**| pulp_last_updated | [optional]
|
276
|
-
**pulp_last_updated__gt** | **String**| pulp_last_updated__gt | [optional]
|
277
|
-
**pulp_last_updated__gte** | **String**| pulp_last_updated__gte | [optional]
|
278
|
-
**pulp_last_updated__lt** | **String**| pulp_last_updated__lt | [optional]
|
279
|
-
**pulp_last_updated__lte** | **String**| pulp_last_updated__lte | [optional]
|
280
|
-
**pulp_last_updated__range** | **String**| pulp_last_updated__range | [optional]
|
281
241
|
|
282
242
|
### Return type
|
283
243
|
|
@@ -354,7 +314,7 @@ Name | Type | Description | Notes
|
|
354
314
|
|
355
315
|
## update
|
356
316
|
|
357
|
-
> AsyncOperationResponse update(deb_apt_remote_href, deb_apt_remote
|
317
|
+
> AsyncOperationResponse update(deb_apt_remote_href, deb_apt_remote)
|
358
318
|
|
359
319
|
Update an apt remote
|
360
320
|
|
@@ -375,21 +335,10 @@ end
|
|
375
335
|
api_instance = PulpDebClient::RemotesAptApi.new
|
376
336
|
deb_apt_remote_href = 'deb_apt_remote_href_example' # String |
|
377
337
|
deb_apt_remote = PulpDebClient::DebAptRemote.new # DebAptRemote |
|
378
|
-
opts = {
|
379
|
-
name: 'name_example', # String | name
|
380
|
-
name__in: 'name__in_example', # String | name__in
|
381
|
-
ordering: 'ordering_example', # String | Which field to use when ordering the results.
|
382
|
-
pulp_last_updated: 'pulp_last_updated_example', # String | pulp_last_updated
|
383
|
-
pulp_last_updated__gt: 'pulp_last_updated__gt_example', # String | pulp_last_updated__gt
|
384
|
-
pulp_last_updated__gte: 'pulp_last_updated__gte_example', # String | pulp_last_updated__gte
|
385
|
-
pulp_last_updated__lt: 'pulp_last_updated__lt_example', # String | pulp_last_updated__lt
|
386
|
-
pulp_last_updated__lte: 'pulp_last_updated__lte_example', # String | pulp_last_updated__lte
|
387
|
-
pulp_last_updated__range: 'pulp_last_updated__range_example' # String | pulp_last_updated__range
|
388
|
-
}
|
389
338
|
|
390
339
|
begin
|
391
340
|
#Update an apt remote
|
392
|
-
result = api_instance.update(deb_apt_remote_href, deb_apt_remote
|
341
|
+
result = api_instance.update(deb_apt_remote_href, deb_apt_remote)
|
393
342
|
p result
|
394
343
|
rescue PulpDebClient::ApiError => e
|
395
344
|
puts "Exception when calling RemotesAptApi->update: #{e}"
|
@@ -403,15 +352,6 @@ Name | Type | Description | Notes
|
|
403
352
|
------------- | ------------- | ------------- | -------------
|
404
353
|
**deb_apt_remote_href** | **String**| |
|
405
354
|
**deb_apt_remote** | [**DebAptRemote**](DebAptRemote.md)| |
|
406
|
-
**name** | **String**| name | [optional]
|
407
|
-
**name__in** | **String**| name__in | [optional]
|
408
|
-
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
409
|
-
**pulp_last_updated** | **String**| pulp_last_updated | [optional]
|
410
|
-
**pulp_last_updated__gt** | **String**| pulp_last_updated__gt | [optional]
|
411
|
-
**pulp_last_updated__gte** | **String**| pulp_last_updated__gte | [optional]
|
412
|
-
**pulp_last_updated__lt** | **String**| pulp_last_updated__lt | [optional]
|
413
|
-
**pulp_last_updated__lte** | **String**| pulp_last_updated__lte | [optional]
|
414
|
-
**pulp_last_updated__range** | **String**| pulp_last_updated__range | [optional]
|
415
355
|
|
416
356
|
### Return type
|
417
357
|
|
data/docs/RepositoriesAptApi.md
CHANGED
@@ -70,7 +70,7 @@ Name | Type | Description | Notes
|
|
70
70
|
|
71
71
|
## delete
|
72
72
|
|
73
|
-
> AsyncOperationResponse delete(deb_apt_repository_href
|
73
|
+
> AsyncOperationResponse delete(deb_apt_repository_href)
|
74
74
|
|
75
75
|
Delete an apt repository
|
76
76
|
|
@@ -90,15 +90,10 @@ end
|
|
90
90
|
|
91
91
|
api_instance = PulpDebClient::RepositoriesAptApi.new
|
92
92
|
deb_apt_repository_href = 'deb_apt_repository_href_example' # String |
|
93
|
-
opts = {
|
94
|
-
name: 'name_example', # String | name
|
95
|
-
name__in: 'name__in_example', # String | name__in
|
96
|
-
ordering: 'ordering_example' # String | Which field to use when ordering the results.
|
97
|
-
}
|
98
93
|
|
99
94
|
begin
|
100
95
|
#Delete an apt repository
|
101
|
-
result = api_instance.delete(deb_apt_repository_href
|
96
|
+
result = api_instance.delete(deb_apt_repository_href)
|
102
97
|
p result
|
103
98
|
rescue PulpDebClient::ApiError => e
|
104
99
|
puts "Exception when calling RepositoriesAptApi->delete: #{e}"
|
@@ -111,9 +106,6 @@ end
|
|
111
106
|
Name | Type | Description | Notes
|
112
107
|
------------- | ------------- | ------------- | -------------
|
113
108
|
**deb_apt_repository_href** | **String**| |
|
114
|
-
**name** | **String**| name | [optional]
|
115
|
-
**name__in** | **String**| name__in | [optional]
|
116
|
-
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
117
109
|
|
118
110
|
### Return type
|
119
111
|
|
@@ -253,7 +245,7 @@ Name | Type | Description | Notes
|
|
253
245
|
|
254
246
|
## partial_update
|
255
247
|
|
256
|
-
> AsyncOperationResponse partial_update(deb_apt_repository_href, patcheddeb_apt_repository
|
248
|
+
> AsyncOperationResponse partial_update(deb_apt_repository_href, patcheddeb_apt_repository)
|
257
249
|
|
258
250
|
Update an apt repository
|
259
251
|
|
@@ -274,15 +266,10 @@ end
|
|
274
266
|
api_instance = PulpDebClient::RepositoriesAptApi.new
|
275
267
|
deb_apt_repository_href = 'deb_apt_repository_href_example' # String |
|
276
268
|
patcheddeb_apt_repository = PulpDebClient::PatcheddebAptRepository.new # PatcheddebAptRepository |
|
277
|
-
opts = {
|
278
|
-
name: 'name_example', # String | name
|
279
|
-
name__in: 'name__in_example', # String | name__in
|
280
|
-
ordering: 'ordering_example' # String | Which field to use when ordering the results.
|
281
|
-
}
|
282
269
|
|
283
270
|
begin
|
284
271
|
#Update an apt repository
|
285
|
-
result = api_instance.partial_update(deb_apt_repository_href, patcheddeb_apt_repository
|
272
|
+
result = api_instance.partial_update(deb_apt_repository_href, patcheddeb_apt_repository)
|
286
273
|
p result
|
287
274
|
rescue PulpDebClient::ApiError => e
|
288
275
|
puts "Exception when calling RepositoriesAptApi->partial_update: #{e}"
|
@@ -296,9 +283,6 @@ Name | Type | Description | Notes
|
|
296
283
|
------------- | ------------- | ------------- | -------------
|
297
284
|
**deb_apt_repository_href** | **String**| |
|
298
285
|
**patcheddeb_apt_repository** | [**PatcheddebAptRepository**](PatcheddebAptRepository.md)| |
|
299
|
-
**name** | **String**| name | [optional]
|
300
|
-
**name__in** | **String**| name__in | [optional]
|
301
|
-
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
302
286
|
|
303
287
|
### Return type
|
304
288
|
|
@@ -430,7 +414,7 @@ Name | Type | Description | Notes
|
|
430
414
|
|
431
415
|
## update
|
432
416
|
|
433
|
-
> AsyncOperationResponse update(deb_apt_repository_href, deb_apt_repository
|
417
|
+
> AsyncOperationResponse update(deb_apt_repository_href, deb_apt_repository)
|
434
418
|
|
435
419
|
Update an apt repository
|
436
420
|
|
@@ -451,15 +435,10 @@ end
|
|
451
435
|
api_instance = PulpDebClient::RepositoriesAptApi.new
|
452
436
|
deb_apt_repository_href = 'deb_apt_repository_href_example' # String |
|
453
437
|
deb_apt_repository = PulpDebClient::DebAptRepository.new # DebAptRepository |
|
454
|
-
opts = {
|
455
|
-
name: 'name_example', # String | name
|
456
|
-
name__in: 'name__in_example', # String | name__in
|
457
|
-
ordering: 'ordering_example' # String | Which field to use when ordering the results.
|
458
|
-
}
|
459
438
|
|
460
439
|
begin
|
461
440
|
#Update an apt repository
|
462
|
-
result = api_instance.update(deb_apt_repository_href, deb_apt_repository
|
441
|
+
result = api_instance.update(deb_apt_repository_href, deb_apt_repository)
|
463
442
|
p result
|
464
443
|
rescue PulpDebClient::ApiError => e
|
465
444
|
puts "Exception when calling RepositoriesAptApi->update: #{e}"
|
@@ -473,9 +452,6 @@ Name | Type | Description | Notes
|
|
473
452
|
------------- | ------------- | ------------- | -------------
|
474
453
|
**deb_apt_repository_href** | **String**| |
|
475
454
|
**deb_apt_repository** | [**DebAptRepository**](DebAptRepository.md)| |
|
476
|
-
**name** | **String**| name | [optional]
|
477
|
-
**name__in** | **String**| name__in | [optional]
|
478
|
-
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
479
455
|
|
480
456
|
### Return type
|
481
457
|
|
@@ -13,7 +13,7 @@ Method | HTTP request | Description
|
|
13
13
|
|
14
14
|
## delete
|
15
15
|
|
16
|
-
> AsyncOperationResponse delete(deb_apt_repository_version_href
|
16
|
+
> AsyncOperationResponse delete(deb_apt_repository_version_href)
|
17
17
|
|
18
18
|
Delete a repository version
|
19
19
|
|
@@ -33,27 +33,10 @@ end
|
|
33
33
|
|
34
34
|
api_instance = PulpDebClient::RepositoriesDebVersionsApi.new
|
35
35
|
deb_apt_repository_version_href = 'deb_apt_repository_version_href_example' # String |
|
36
|
-
opts = {
|
37
|
-
content: 'content_example', # String | content
|
38
|
-
content__in: 'content__in_example', # String | content__in
|
39
|
-
number: 'number_example', # String | number
|
40
|
-
number__gt: 'number__gt_example', # String | number__gt
|
41
|
-
number__gte: 'number__gte_example', # String | number__gte
|
42
|
-
number__lt: 'number__lt_example', # String | number__lt
|
43
|
-
number__lte: 'number__lte_example', # String | number__lte
|
44
|
-
number__range: 'number__range_example', # String | number__range
|
45
|
-
ordering: 'ordering_example', # String | Which field to use when ordering the results.
|
46
|
-
pulp_created: 'pulp_created_example', # String | pulp_created
|
47
|
-
pulp_created__gt: 'pulp_created__gt_example', # String | pulp_created__gt
|
48
|
-
pulp_created__gte: 'pulp_created__gte_example', # String | pulp_created__gte
|
49
|
-
pulp_created__lt: 'pulp_created__lt_example', # String | pulp_created__lt
|
50
|
-
pulp_created__lte: 'pulp_created__lte_example', # String | pulp_created__lte
|
51
|
-
pulp_created__range: 'pulp_created__range_example' # String | pulp_created__range
|
52
|
-
}
|
53
36
|
|
54
37
|
begin
|
55
38
|
#Delete a repository version
|
56
|
-
result = api_instance.delete(deb_apt_repository_version_href
|
39
|
+
result = api_instance.delete(deb_apt_repository_version_href)
|
57
40
|
p result
|
58
41
|
rescue PulpDebClient::ApiError => e
|
59
42
|
puts "Exception when calling RepositoriesDebVersionsApi->delete: #{e}"
|
@@ -66,21 +49,6 @@ end
|
|
66
49
|
Name | Type | Description | Notes
|
67
50
|
------------- | ------------- | ------------- | -------------
|
68
51
|
**deb_apt_repository_version_href** | **String**| |
|
69
|
-
**content** | **String**| content | [optional]
|
70
|
-
**content__in** | **String**| content__in | [optional]
|
71
|
-
**number** | **String**| number | [optional]
|
72
|
-
**number__gt** | **String**| number__gt | [optional]
|
73
|
-
**number__gte** | **String**| number__gte | [optional]
|
74
|
-
**number__lt** | **String**| number__lt | [optional]
|
75
|
-
**number__lte** | **String**| number__lte | [optional]
|
76
|
-
**number__range** | **String**| number__range | [optional]
|
77
|
-
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
78
|
-
**pulp_created** | **String**| pulp_created | [optional]
|
79
|
-
**pulp_created__gt** | **String**| pulp_created__gt | [optional]
|
80
|
-
**pulp_created__gte** | **String**| pulp_created__gte | [optional]
|
81
|
-
**pulp_created__lt** | **String**| pulp_created__lt | [optional]
|
82
|
-
**pulp_created__lte** | **String**| pulp_created__lte | [optional]
|
83
|
-
**pulp_created__range** | **String**| pulp_created__range | [optional]
|
84
52
|
|
85
53
|
### Return type
|
86
54
|
|
@@ -87,13 +87,6 @@ module PulpDebClient
|
|
87
87
|
# Trigger an asynchronous delete task
|
88
88
|
# @param deb_apt_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(deb_apt_distribution_href, opts = {})
|
99
92
|
data, _status_code, _headers = delete_with_http_info(deb_apt_distribution_href, opts)
|
@@ -104,13 +97,6 @@ module PulpDebClient
|
|
104
97
|
# Trigger an asynchronous delete task
|
105
98
|
# @param deb_apt_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(deb_apt_distribution_href, opts = {})
|
116
102
|
if @api_client.config.debugging
|
@@ -125,13 +111,6 @@ module PulpDebClient
|
|
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 PulpDebClient
|
|
260
239
|
# @param deb_apt_distribution_href [String]
|
261
240
|
# @param patcheddeb_apt_distribution [PatcheddebAptDistribution]
|
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(deb_apt_distribution_href, patcheddeb_apt_distribution, opts = {})
|
272
244
|
data, _status_code, _headers = partial_update_with_http_info(deb_apt_distribution_href, patcheddeb_apt_distribution, opts)
|
@@ -278,13 +250,6 @@ module PulpDebClient
|
|
278
250
|
# @param deb_apt_distribution_href [String]
|
279
251
|
# @param patcheddeb_apt_distribution [PatcheddebAptDistribution]
|
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(deb_apt_distribution_href, patcheddeb_apt_distribution, opts = {})
|
290
255
|
if @api_client.config.debugging
|
@@ -303,13 +268,6 @@ module PulpDebClient
|
|
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 PulpDebClient
|
|
419
377
|
# @param deb_apt_distribution_href [String]
|
420
378
|
# @param deb_apt_distribution [DebAptDistribution]
|
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(deb_apt_distribution_href, deb_apt_distribution, opts = {})
|
431
382
|
data, _status_code, _headers = update_with_http_info(deb_apt_distribution_href, deb_apt_distribution, opts)
|
@@ -437,13 +388,6 @@ module PulpDebClient
|
|
437
388
|
# @param deb_apt_distribution_href [String]
|
438
389
|
# @param deb_apt_distribution [DebAptDistribution]
|
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(deb_apt_distribution_href, deb_apt_distribution, opts = {})
|
449
393
|
if @api_client.config.debugging
|
@@ -462,13 +406,6 @@ module PulpDebClient
|
|
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] || {}
|
@@ -87,15 +87,6 @@ module PulpDebClient
|
|
87
87
|
# Trigger an asynchronous delete task
|
88
88
|
# @param deb_apt_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(deb_apt_remote_href, opts = {})
|
101
92
|
data, _status_code, _headers = delete_with_http_info(deb_apt_remote_href, opts)
|
@@ -106,15 +97,6 @@ module PulpDebClient
|
|
106
97
|
# Trigger an asynchronous delete task
|
107
98
|
# @param deb_apt_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(deb_apt_remote_href, opts = {})
|
120
102
|
if @api_client.config.debugging
|
@@ -129,15 +111,6 @@ module PulpDebClient
|
|
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 PulpDebClient
|
|
272
245
|
# @param deb_apt_remote_href [String]
|
273
246
|
# @param patcheddeb_apt_remote [PatcheddebAptRemote]
|
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(deb_apt_remote_href, patcheddeb_apt_remote, opts = {})
|
286
250
|
data, _status_code, _headers = partial_update_with_http_info(deb_apt_remote_href, patcheddeb_apt_remote, opts)
|
@@ -292,15 +256,6 @@ module PulpDebClient
|
|
292
256
|
# @param deb_apt_remote_href [String]
|
293
257
|
# @param patcheddeb_apt_remote [PatcheddebAptRemote]
|
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(deb_apt_remote_href, patcheddeb_apt_remote, opts = {})
|
306
261
|
if @api_client.config.debugging
|
@@ -319,15 +274,6 @@ module PulpDebClient
|
|
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 PulpDebClient
|
|
437
383
|
# @param deb_apt_remote_href [String]
|
438
384
|
# @param deb_apt_remote [DebAptRemote]
|
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(deb_apt_remote_href, deb_apt_remote, opts = {})
|
451
388
|
data, _status_code, _headers = update_with_http_info(deb_apt_remote_href, deb_apt_remote, opts)
|
@@ -457,15 +394,6 @@ module PulpDebClient
|
|
457
394
|
# @param deb_apt_remote_href [String]
|
458
395
|
# @param deb_apt_remote [DebAptRemote]
|
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(deb_apt_remote_href, deb_apt_remote, opts = {})
|
471
399
|
if @api_client.config.debugging
|
@@ -484,15 +412,6 @@ module PulpDebClient
|
|
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 PulpDebClient
|
|
87
87
|
# Trigger an asynchronous delete task
|
88
88
|
# @param deb_apt_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(deb_apt_repository_href, opts = {})
|
95
92
|
data, _status_code, _headers = delete_with_http_info(deb_apt_repository_href, opts)
|
@@ -100,9 +97,6 @@ module PulpDebClient
|
|
100
97
|
# Trigger an asynchronous delete task
|
101
98
|
# @param deb_apt_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(deb_apt_repository_href, opts = {})
|
108
102
|
if @api_client.config.debugging
|
@@ -117,9 +111,6 @@ module PulpDebClient
|
|
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 PulpDebClient
|
|
306
297
|
# @param deb_apt_repository_href [String]
|
307
298
|
# @param patcheddeb_apt_repository [PatcheddebAptRepository]
|
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(deb_apt_repository_href, patcheddeb_apt_repository, opts = {})
|
314
302
|
data, _status_code, _headers = partial_update_with_http_info(deb_apt_repository_href, patcheddeb_apt_repository, opts)
|
@@ -320,9 +308,6 @@ module PulpDebClient
|
|
320
308
|
# @param deb_apt_repository_href [String]
|
321
309
|
# @param patcheddeb_apt_repository [PatcheddebAptRepository]
|
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(deb_apt_repository_href, patcheddeb_apt_repository, opts = {})
|
328
313
|
if @api_client.config.debugging
|
@@ -341,9 +326,6 @@ module PulpDebClient
|
|
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] || {}
|
@@ -523,9 +505,6 @@ module PulpDebClient
|
|
523
505
|
# @param deb_apt_repository_href [String]
|
524
506
|
# @param deb_apt_repository [DebAptRepository]
|
525
507
|
# @param [Hash] opts the optional parameters
|
526
|
-
# @option opts [String] :name name
|
527
|
-
# @option opts [String] :name__in name__in
|
528
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
529
508
|
# @return [AsyncOperationResponse]
|
530
509
|
def update(deb_apt_repository_href, deb_apt_repository, opts = {})
|
531
510
|
data, _status_code, _headers = update_with_http_info(deb_apt_repository_href, deb_apt_repository, opts)
|
@@ -537,9 +516,6 @@ module PulpDebClient
|
|
537
516
|
# @param deb_apt_repository_href [String]
|
538
517
|
# @param deb_apt_repository [DebAptRepository]
|
539
518
|
# @param [Hash] opts the optional parameters
|
540
|
-
# @option opts [String] :name name
|
541
|
-
# @option opts [String] :name__in name__in
|
542
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
543
519
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
544
520
|
def update_with_http_info(deb_apt_repository_href, deb_apt_repository, opts = {})
|
545
521
|
if @api_client.config.debugging
|
@@ -558,9 +534,6 @@ module PulpDebClient
|
|
558
534
|
|
559
535
|
# query parameters
|
560
536
|
query_params = opts[:query_params] || {}
|
561
|
-
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
562
|
-
query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
|
563
|
-
query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
|
564
537
|
|
565
538
|
# header parameters
|
566
539
|
header_params = opts[:header_params] || {}
|
@@ -23,21 +23,6 @@ module PulpDebClient
|
|
23
23
|
# Trigger an asynchronous task to delete a repositroy version.
|
24
24
|
# @param deb_apt_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(deb_apt_repository_version_href, opts = {})
|
43
28
|
data, _status_code, _headers = delete_with_http_info(deb_apt_repository_version_href, opts)
|
@@ -48,21 +33,6 @@ module PulpDebClient
|
|
48
33
|
# Trigger an asynchronous task to delete a repositroy version.
|
49
34
|
# @param deb_apt_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(deb_apt_repository_version_href, opts = {})
|
68
38
|
if @api_client.config.debugging
|
@@ -77,21 +47,6 @@ module PulpDebClient
|
|
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] || {}
|
@@ -49,13 +49,6 @@ describe 'DistributionsAptApi' do
|
|
49
49
|
# Trigger an asynchronous delete task
|
50
50
|
# @param deb_apt_distribution_href
|
51
51
|
# @param [Hash] opts the optional parameters
|
52
|
-
# @option opts [String] :base_path base_path
|
53
|
-
# @option opts [String] :base_path__contains base_path__contains
|
54
|
-
# @option opts [String] :base_path__icontains base_path__icontains
|
55
|
-
# @option opts [String] :base_path__in base_path__in
|
56
|
-
# @option opts [String] :name name
|
57
|
-
# @option opts [String] :name__in name__in
|
58
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
59
52
|
# @return [AsyncOperationResponse]
|
60
53
|
describe 'delete test' do
|
61
54
|
it 'should work' do
|
@@ -91,13 +84,6 @@ describe 'DistributionsAptApi' do
|
|
91
84
|
# @param deb_apt_distribution_href
|
92
85
|
# @param patcheddeb_apt_distribution
|
93
86
|
# @param [Hash] opts the optional parameters
|
94
|
-
# @option opts [String] :base_path base_path
|
95
|
-
# @option opts [String] :base_path__contains base_path__contains
|
96
|
-
# @option opts [String] :base_path__icontains base_path__icontains
|
97
|
-
# @option opts [String] :base_path__in base_path__in
|
98
|
-
# @option opts [String] :name name
|
99
|
-
# @option opts [String] :name__in name__in
|
100
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
101
87
|
# @return [AsyncOperationResponse]
|
102
88
|
describe 'partial_update test' do
|
103
89
|
it 'should work' do
|
@@ -125,13 +111,6 @@ describe 'DistributionsAptApi' do
|
|
125
111
|
# @param deb_apt_distribution_href
|
126
112
|
# @param deb_apt_distribution
|
127
113
|
# @param [Hash] opts the optional parameters
|
128
|
-
# @option opts [String] :base_path base_path
|
129
|
-
# @option opts [String] :base_path__contains base_path__contains
|
130
|
-
# @option opts [String] :base_path__icontains base_path__icontains
|
131
|
-
# @option opts [String] :base_path__in base_path__in
|
132
|
-
# @option opts [String] :name name
|
133
|
-
# @option opts [String] :name__in name__in
|
134
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
135
114
|
# @return [AsyncOperationResponse]
|
136
115
|
describe 'update test' do
|
137
116
|
it 'should work' do
|
@@ -49,15 +49,6 @@ describe 'RemotesAptApi' do
|
|
49
49
|
# Trigger an asynchronous delete task
|
50
50
|
# @param deb_apt_remote_href
|
51
51
|
# @param [Hash] opts the optional parameters
|
52
|
-
# @option opts [String] :name name
|
53
|
-
# @option opts [String] :name__in name__in
|
54
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
55
|
-
# @option opts [String] :pulp_last_updated pulp_last_updated
|
56
|
-
# @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
|
57
|
-
# @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
|
58
|
-
# @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
|
59
|
-
# @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
|
60
|
-
# @option opts [String] :pulp_last_updated__range pulp_last_updated__range
|
61
52
|
# @return [AsyncOperationResponse]
|
62
53
|
describe 'delete test' do
|
63
54
|
it 'should work' do
|
@@ -95,15 +86,6 @@ describe 'RemotesAptApi' do
|
|
95
86
|
# @param deb_apt_remote_href
|
96
87
|
# @param patcheddeb_apt_remote
|
97
88
|
# @param [Hash] opts the optional parameters
|
98
|
-
# @option opts [String] :name name
|
99
|
-
# @option opts [String] :name__in name__in
|
100
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
101
|
-
# @option opts [String] :pulp_last_updated pulp_last_updated
|
102
|
-
# @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
|
103
|
-
# @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
|
104
|
-
# @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
|
105
|
-
# @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
|
106
|
-
# @option opts [String] :pulp_last_updated__range pulp_last_updated__range
|
107
89
|
# @return [AsyncOperationResponse]
|
108
90
|
describe 'partial_update test' do
|
109
91
|
it 'should work' do
|
@@ -131,15 +113,6 @@ describe 'RemotesAptApi' do
|
|
131
113
|
# @param deb_apt_remote_href
|
132
114
|
# @param deb_apt_remote
|
133
115
|
# @param [Hash] opts the optional parameters
|
134
|
-
# @option opts [String] :name name
|
135
|
-
# @option opts [String] :name__in name__in
|
136
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
137
|
-
# @option opts [String] :pulp_last_updated pulp_last_updated
|
138
|
-
# @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
|
139
|
-
# @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
|
140
|
-
# @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
|
141
|
-
# @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
|
142
|
-
# @option opts [String] :pulp_last_updated__range pulp_last_updated__range
|
143
116
|
# @return [AsyncOperationResponse]
|
144
117
|
describe 'update test' do
|
145
118
|
it 'should work' do
|
@@ -49,9 +49,6 @@ describe 'RepositoriesAptApi' do
|
|
49
49
|
# Trigger an asynchronous delete task
|
50
50
|
# @param deb_apt_repository_href
|
51
51
|
# @param [Hash] opts the optional parameters
|
52
|
-
# @option opts [String] :name name
|
53
|
-
# @option opts [String] :name__in name__in
|
54
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
55
52
|
# @return [AsyncOperationResponse]
|
56
53
|
describe 'delete test' do
|
57
54
|
it 'should work' do
|
@@ -96,9 +93,6 @@ describe 'RepositoriesAptApi' do
|
|
96
93
|
# @param deb_apt_repository_href
|
97
94
|
# @param patcheddeb_apt_repository
|
98
95
|
# @param [Hash] opts the optional parameters
|
99
|
-
# @option opts [String] :name name
|
100
|
-
# @option opts [String] :name__in name__in
|
101
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
102
96
|
# @return [AsyncOperationResponse]
|
103
97
|
describe 'partial_update test' do
|
104
98
|
it 'should work' do
|
@@ -139,9 +133,6 @@ describe 'RepositoriesAptApi' do
|
|
139
133
|
# @param deb_apt_repository_href
|
140
134
|
# @param deb_apt_repository
|
141
135
|
# @param [Hash] opts the optional parameters
|
142
|
-
# @option opts [String] :name name
|
143
|
-
# @option opts [String] :name__in name__in
|
144
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
145
136
|
# @return [AsyncOperationResponse]
|
146
137
|
describe 'update test' do
|
147
138
|
it 'should work' do
|
@@ -37,21 +37,6 @@ describe 'RepositoriesDebVersionsApi' do
|
|
37
37
|
# Trigger an asynchronous task to delete a repositroy version.
|
38
38
|
# @param deb_apt_repository_version_href
|
39
39
|
# @param [Hash] opts the optional parameters
|
40
|
-
# @option opts [String] :content content
|
41
|
-
# @option opts [String] :content__in content__in
|
42
|
-
# @option opts [String] :number number
|
43
|
-
# @option opts [String] :number__gt number__gt
|
44
|
-
# @option opts [String] :number__gte number__gte
|
45
|
-
# @option opts [String] :number__lt number__lt
|
46
|
-
# @option opts [String] :number__lte number__lte
|
47
|
-
# @option opts [String] :number__range number__range
|
48
|
-
# @option opts [String] :ordering Which field to use when ordering the results.
|
49
|
-
# @option opts [String] :pulp_created pulp_created
|
50
|
-
# @option opts [String] :pulp_created__gt pulp_created__gt
|
51
|
-
# @option opts [String] :pulp_created__gte pulp_created__gte
|
52
|
-
# @option opts [String] :pulp_created__lt pulp_created__lt
|
53
|
-
# @option opts [String] :pulp_created__lte pulp_created__lte
|
54
|
-
# @option opts [String] :pulp_created__range pulp_created__range
|
55
40
|
# @return [AsyncOperationResponse]
|
56
41
|
describe 'delete test' do
|
57
42
|
it 'should work' do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulp_deb_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-09-
|
11
|
+
date: 2020-09-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|