pulp_npm_client 0.1.0a1.dev01599961126 → 0.1.0a1.dev01600393224

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2e9289c57d1081b25b16acd98c16f2e913d3b97619bf74ea71835b4e8a113ba2
4
- data.tar.gz: a9ac6afdda5c2a8086e0ac686c981d0b677e2671078794f69e9b17f55e0cb02d
3
+ metadata.gz: 83377df1a5f8c5a57120a8c2360f40f1ef490175eff517fdc7c6d7c365f44891
4
+ data.tar.gz: 99c3919ec013cee9ae9257ebbfbf689a51bdb39e15169c01c992be76d3c07e27
5
5
  SHA512:
6
- metadata.gz: ec56312eb8ac4afd2433fad46132d3869c7512cc4ab860b5f304f49ccbfa39819617183dec85be32209f216f7d27b6a3c01256eeb8edd57a054ebf5d1eebd697
7
- data.tar.gz: f029cc339bf31f0769ae1ca0472e3fde33308798fa0b7ead2d440d4dc8fbe558328940bf353a928646a67b25fa559cadc3bb302f1e5b7f97fd3a0c74ac1b8623
6
+ metadata.gz: 1eb7f34d175a86276bdad4eb22292d04ce470b656889a391118d59831d5a70e2df00a20f1067d6a481af06ff64f2053179a52b29f152eaf09b77bc02241d79a3
7
+ data.tar.gz: 404f45e34972b6eb95a8ff71ce349aaf50e717f334db09c5621b8283eea8eb423f87ddbd803d812a854a8681476d66303eaab577dd4052850823764dab6d5417
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: 0.1.0a1.dev01599961126
10
+ - Package version: 0.1.0a1.dev01600393224
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_npm_client.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./pulp_npm_client-0.1.0a1.dev01599961126.gem
27
+ gem install ./pulp_npm_client-0.1.0a1.dev01600393224.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulp_npm_client-0.1.0a1.dev01599961126.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulp_npm_client-0.1.0a1.dev01600393224.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_npm_client', '~> 0.1.0a1.dev01599961126'
36
+ gem 'pulp_npm_client', '~> 0.1.0a1.dev01600393224'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -68,7 +68,7 @@ Name | Type | Description | Notes
68
68
 
69
69
  ## delete
70
70
 
71
- > AsyncOperationResponse delete(npm_npm_distribution_href, opts)
71
+ > AsyncOperationResponse delete(npm_npm_distribution_href)
72
72
 
73
73
  Delete a npm distribution
74
74
 
@@ -88,19 +88,10 @@ end
88
88
 
89
89
  api_instance = PulpNpmClient::DistributionsNpmApi.new
90
90
  npm_npm_distribution_href = 'npm_npm_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 a npm distribution
103
- result = api_instance.delete(npm_npm_distribution_href, opts)
94
+ result = api_instance.delete(npm_npm_distribution_href)
104
95
  p result
105
96
  rescue PulpNpmClient::ApiError => e
106
97
  puts "Exception when calling DistributionsNpmApi->delete: #{e}"
@@ -113,13 +104,6 @@ end
113
104
  Name | Type | Description | Notes
114
105
  ------------- | ------------- | ------------- | -------------
115
106
  **npm_npm_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(npm_npm_distribution_href, patchednpm_npm_distribution, opts)
199
+ > AsyncOperationResponse partial_update(npm_npm_distribution_href, patchednpm_npm_distribution)
216
200
 
217
201
  Update a npm distribution
218
202
 
@@ -233,19 +217,10 @@ end
233
217
  api_instance = PulpNpmClient::DistributionsNpmApi.new
234
218
  npm_npm_distribution_href = 'npm_npm_distribution_href_example' # String |
235
219
  patchednpm_npm_distribution = PulpNpmClient::PatchednpmNpmDistribution.new # PatchednpmNpmDistribution |
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 a npm distribution
248
- result = api_instance.partial_update(npm_npm_distribution_href, patchednpm_npm_distribution, opts)
223
+ result = api_instance.partial_update(npm_npm_distribution_href, patchednpm_npm_distribution)
249
224
  p result
250
225
  rescue PulpNpmClient::ApiError => e
251
226
  puts "Exception when calling DistributionsNpmApi->partial_update: #{e}"
@@ -259,13 +234,6 @@ Name | Type | Description | Notes
259
234
  ------------- | ------------- | ------------- | -------------
260
235
  **npm_npm_distribution_href** | **String**| |
261
236
  **patchednpm_npm_distribution** | [**PatchednpmNpmDistribution**](PatchednpmNpmDistribution.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(npm_npm_distribution_href, npm_npm_distribution, opts)
313
+ > AsyncOperationResponse update(npm_npm_distribution_href, npm_npm_distribution)
346
314
 
347
315
  Update a npm distribution
348
316
 
@@ -363,19 +331,10 @@ end
363
331
  api_instance = PulpNpmClient::DistributionsNpmApi.new
364
332
  npm_npm_distribution_href = 'npm_npm_distribution_href_example' # String |
365
333
  npm_npm_distribution = PulpNpmClient::NpmNpmDistribution.new # NpmNpmDistribution |
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 a npm distribution
378
- result = api_instance.update(npm_npm_distribution_href, npm_npm_distribution, opts)
337
+ result = api_instance.update(npm_npm_distribution_href, npm_npm_distribution)
379
338
  p result
380
339
  rescue PulpNpmClient::ApiError => e
381
340
  puts "Exception when calling DistributionsNpmApi->update: #{e}"
@@ -389,13 +348,6 @@ Name | Type | Description | Notes
389
348
  ------------- | ------------- | ------------- | -------------
390
349
  **npm_npm_distribution_href** | **String**| |
391
350
  **npm_npm_distribution** | [**NpmNpmDistribution**](NpmNpmDistribution.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
 
@@ -68,7 +68,7 @@ Name | Type | Description | Notes
68
68
 
69
69
  ## delete
70
70
 
71
- > AsyncOperationResponse delete(npm_npm_remote_href, opts)
71
+ > AsyncOperationResponse delete(npm_npm_remote_href)
72
72
 
73
73
  Delete a npm remote
74
74
 
@@ -88,21 +88,10 @@ end
88
88
 
89
89
  api_instance = PulpNpmClient::RemotesNpmApi.new
90
90
  npm_npm_remote_href = 'npm_npm_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 a npm remote
105
- result = api_instance.delete(npm_npm_remote_href, opts)
94
+ result = api_instance.delete(npm_npm_remote_href)
106
95
  p result
107
96
  rescue PulpNpmClient::ApiError => e
108
97
  puts "Exception when calling RemotesNpmApi->delete: #{e}"
@@ -115,15 +104,6 @@ end
115
104
  Name | Type | Description | Notes
116
105
  ------------- | ------------- | ------------- | -------------
117
106
  **npm_npm_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(npm_npm_remote_href, patchednpm_npm_remote, opts)
203
+ > AsyncOperationResponse partial_update(npm_npm_remote_href, patchednpm_npm_remote)
224
204
 
225
205
  Update a npm remote
226
206
 
@@ -241,21 +221,10 @@ end
241
221
  api_instance = PulpNpmClient::RemotesNpmApi.new
242
222
  npm_npm_remote_href = 'npm_npm_remote_href_example' # String |
243
223
  patchednpm_npm_remote = PulpNpmClient::PatchednpmNpmRemote.new # PatchednpmNpmRemote |
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 a npm remote
258
- result = api_instance.partial_update(npm_npm_remote_href, patchednpm_npm_remote, opts)
227
+ result = api_instance.partial_update(npm_npm_remote_href, patchednpm_npm_remote)
259
228
  p result
260
229
  rescue PulpNpmClient::ApiError => e
261
230
  puts "Exception when calling RemotesNpmApi->partial_update: #{e}"
@@ -269,15 +238,6 @@ Name | Type | Description | Notes
269
238
  ------------- | ------------- | ------------- | -------------
270
239
  **npm_npm_remote_href** | **String**| |
271
240
  **patchednpm_npm_remote** | [**PatchednpmNpmRemote**](PatchednpmNpmRemote.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(npm_npm_remote_href, npm_npm_remote, opts)
317
+ > AsyncOperationResponse update(npm_npm_remote_href, npm_npm_remote)
358
318
 
359
319
  Update a npm remote
360
320
 
@@ -375,21 +335,10 @@ end
375
335
  api_instance = PulpNpmClient::RemotesNpmApi.new
376
336
  npm_npm_remote_href = 'npm_npm_remote_href_example' # String |
377
337
  npm_npm_remote = PulpNpmClient::NpmNpmRemote.new # NpmNpmRemote |
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 a npm remote
392
- result = api_instance.update(npm_npm_remote_href, npm_npm_remote, opts)
341
+ result = api_instance.update(npm_npm_remote_href, npm_npm_remote)
393
342
  p result
394
343
  rescue PulpNpmClient::ApiError => e
395
344
  puts "Exception when calling RemotesNpmApi->update: #{e}"
@@ -403,15 +352,6 @@ Name | Type | Description | Notes
403
352
  ------------- | ------------- | ------------- | -------------
404
353
  **npm_npm_remote_href** | **String**| |
405
354
  **npm_npm_remote** | [**NpmNpmRemote**](NpmNpmRemote.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
 
@@ -70,7 +70,7 @@ Name | Type | Description | Notes
70
70
 
71
71
  ## delete
72
72
 
73
- > AsyncOperationResponse delete(npm_npm_repository_href, opts)
73
+ > AsyncOperationResponse delete(npm_npm_repository_href)
74
74
 
75
75
  Delete a npm repository
76
76
 
@@ -90,15 +90,10 @@ end
90
90
 
91
91
  api_instance = PulpNpmClient::RepositoriesNpmApi.new
92
92
  npm_npm_repository_href = 'npm_npm_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 a npm repository
101
- result = api_instance.delete(npm_npm_repository_href, opts)
96
+ result = api_instance.delete(npm_npm_repository_href)
102
97
  p result
103
98
  rescue PulpNpmClient::ApiError => e
104
99
  puts "Exception when calling RepositoriesNpmApi->delete: #{e}"
@@ -111,9 +106,6 @@ end
111
106
  Name | Type | Description | Notes
112
107
  ------------- | ------------- | ------------- | -------------
113
108
  **npm_npm_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(npm_npm_repository_href, patchednpm_npm_repository, opts)
248
+ > AsyncOperationResponse partial_update(npm_npm_repository_href, patchednpm_npm_repository)
257
249
 
258
250
  Update a npm repository
259
251
 
@@ -274,15 +266,10 @@ end
274
266
  api_instance = PulpNpmClient::RepositoriesNpmApi.new
275
267
  npm_npm_repository_href = 'npm_npm_repository_href_example' # String |
276
268
  patchednpm_npm_repository = PulpNpmClient::PatchednpmNpmRepository.new # PatchednpmNpmRepository |
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 a npm repository
285
- result = api_instance.partial_update(npm_npm_repository_href, patchednpm_npm_repository, opts)
272
+ result = api_instance.partial_update(npm_npm_repository_href, patchednpm_npm_repository)
286
273
  p result
287
274
  rescue PulpNpmClient::ApiError => e
288
275
  puts "Exception when calling RepositoriesNpmApi->partial_update: #{e}"
@@ -296,9 +283,6 @@ Name | Type | Description | Notes
296
283
  ------------- | ------------- | ------------- | -------------
297
284
  **npm_npm_repository_href** | **String**| |
298
285
  **patchednpm_npm_repository** | [**PatchednpmNpmRepository**](PatchednpmNpmRepository.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(npm_npm_repository_href, npm_npm_repository, opts)
417
+ > AsyncOperationResponse update(npm_npm_repository_href, npm_npm_repository)
434
418
 
435
419
  Update a npm repository
436
420
 
@@ -451,15 +435,10 @@ end
451
435
  api_instance = PulpNpmClient::RepositoriesNpmApi.new
452
436
  npm_npm_repository_href = 'npm_npm_repository_href_example' # String |
453
437
  npm_npm_repository = PulpNpmClient::NpmNpmRepository.new # NpmNpmRepository |
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 a npm repository
462
- result = api_instance.update(npm_npm_repository_href, npm_npm_repository, opts)
441
+ result = api_instance.update(npm_npm_repository_href, npm_npm_repository)
463
442
  p result
464
443
  rescue PulpNpmClient::ApiError => e
465
444
  puts "Exception when calling RepositoriesNpmApi->update: #{e}"
@@ -473,9 +452,6 @@ Name | Type | Description | Notes
473
452
  ------------- | ------------- | ------------- | -------------
474
453
  **npm_npm_repository_href** | **String**| |
475
454
  **npm_npm_repository** | [**NpmNpmRepository**](NpmNpmRepository.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(npm_npm_repository_version_href, opts)
16
+ > AsyncOperationResponse delete(npm_npm_repository_version_href)
17
17
 
18
18
  Delete a repository version
19
19
 
@@ -33,27 +33,10 @@ end
33
33
 
34
34
  api_instance = PulpNpmClient::RepositoriesNpmVersionsApi.new
35
35
  npm_npm_repository_version_href = 'npm_npm_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(npm_npm_repository_version_href, opts)
39
+ result = api_instance.delete(npm_npm_repository_version_href)
57
40
  p result
58
41
  rescue PulpNpmClient::ApiError => e
59
42
  puts "Exception when calling RepositoriesNpmVersionsApi->delete: #{e}"
@@ -66,21 +49,6 @@ end
66
49
  Name | Type | Description | Notes
67
50
  ------------- | ------------- | ------------- | -------------
68
51
  **npm_npm_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 PulpNpmClient
87
87
  # Trigger an asynchronous delete task
88
88
  # @param npm_npm_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(npm_npm_distribution_href, opts = {})
99
92
  data, _status_code, _headers = delete_with_http_info(npm_npm_distribution_href, opts)
@@ -104,13 +97,6 @@ module PulpNpmClient
104
97
  # Trigger an asynchronous delete task
105
98
  # @param npm_npm_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(npm_npm_distribution_href, opts = {})
116
102
  if @api_client.config.debugging
@@ -125,13 +111,6 @@ module PulpNpmClient
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 PulpNpmClient
260
239
  # @param npm_npm_distribution_href [String]
261
240
  # @param patchednpm_npm_distribution [PatchednpmNpmDistribution]
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(npm_npm_distribution_href, patchednpm_npm_distribution, opts = {})
272
244
  data, _status_code, _headers = partial_update_with_http_info(npm_npm_distribution_href, patchednpm_npm_distribution, opts)
@@ -278,13 +250,6 @@ module PulpNpmClient
278
250
  # @param npm_npm_distribution_href [String]
279
251
  # @param patchednpm_npm_distribution [PatchednpmNpmDistribution]
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(npm_npm_distribution_href, patchednpm_npm_distribution, opts = {})
290
255
  if @api_client.config.debugging
@@ -303,13 +268,6 @@ module PulpNpmClient
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 PulpNpmClient
419
377
  # @param npm_npm_distribution_href [String]
420
378
  # @param npm_npm_distribution [NpmNpmDistribution]
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(npm_npm_distribution_href, npm_npm_distribution, opts = {})
431
382
  data, _status_code, _headers = update_with_http_info(npm_npm_distribution_href, npm_npm_distribution, opts)
@@ -437,13 +388,6 @@ module PulpNpmClient
437
388
  # @param npm_npm_distribution_href [String]
438
389
  # @param npm_npm_distribution [NpmNpmDistribution]
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(npm_npm_distribution_href, npm_npm_distribution, opts = {})
449
393
  if @api_client.config.debugging
@@ -462,13 +406,6 @@ module PulpNpmClient
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 PulpNpmClient
87
87
  # Trigger an asynchronous delete task
88
88
  # @param npm_npm_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(npm_npm_remote_href, opts = {})
101
92
  data, _status_code, _headers = delete_with_http_info(npm_npm_remote_href, opts)
@@ -106,15 +97,6 @@ module PulpNpmClient
106
97
  # Trigger an asynchronous delete task
107
98
  # @param npm_npm_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(npm_npm_remote_href, opts = {})
120
102
  if @api_client.config.debugging
@@ -129,15 +111,6 @@ module PulpNpmClient
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 PulpNpmClient
272
245
  # @param npm_npm_remote_href [String]
273
246
  # @param patchednpm_npm_remote [PatchednpmNpmRemote]
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(npm_npm_remote_href, patchednpm_npm_remote, opts = {})
286
250
  data, _status_code, _headers = partial_update_with_http_info(npm_npm_remote_href, patchednpm_npm_remote, opts)
@@ -292,15 +256,6 @@ module PulpNpmClient
292
256
  # @param npm_npm_remote_href [String]
293
257
  # @param patchednpm_npm_remote [PatchednpmNpmRemote]
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(npm_npm_remote_href, patchednpm_npm_remote, opts = {})
306
261
  if @api_client.config.debugging
@@ -319,15 +274,6 @@ module PulpNpmClient
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 PulpNpmClient
437
383
  # @param npm_npm_remote_href [String]
438
384
  # @param npm_npm_remote [NpmNpmRemote]
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(npm_npm_remote_href, npm_npm_remote, opts = {})
451
388
  data, _status_code, _headers = update_with_http_info(npm_npm_remote_href, npm_npm_remote, opts)
@@ -457,15 +394,6 @@ module PulpNpmClient
457
394
  # @param npm_npm_remote_href [String]
458
395
  # @param npm_npm_remote [NpmNpmRemote]
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(npm_npm_remote_href, npm_npm_remote, opts = {})
471
399
  if @api_client.config.debugging
@@ -484,15 +412,6 @@ module PulpNpmClient
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 PulpNpmClient
87
87
  # Trigger an asynchronous delete task
88
88
  # @param npm_npm_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(npm_npm_repository_href, opts = {})
95
92
  data, _status_code, _headers = delete_with_http_info(npm_npm_repository_href, opts)
@@ -100,9 +97,6 @@ module PulpNpmClient
100
97
  # Trigger an asynchronous delete task
101
98
  # @param npm_npm_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(npm_npm_repository_href, opts = {})
108
102
  if @api_client.config.debugging
@@ -117,9 +111,6 @@ module PulpNpmClient
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 PulpNpmClient
306
297
  # @param npm_npm_repository_href [String]
307
298
  # @param patchednpm_npm_repository [PatchednpmNpmRepository]
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(npm_npm_repository_href, patchednpm_npm_repository, opts = {})
314
302
  data, _status_code, _headers = partial_update_with_http_info(npm_npm_repository_href, patchednpm_npm_repository, opts)
@@ -320,9 +308,6 @@ module PulpNpmClient
320
308
  # @param npm_npm_repository_href [String]
321
309
  # @param patchednpm_npm_repository [PatchednpmNpmRepository]
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(npm_npm_repository_href, patchednpm_npm_repository, opts = {})
328
313
  if @api_client.config.debugging
@@ -341,9 +326,6 @@ module PulpNpmClient
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 PulpNpmClient
523
505
  # @param npm_npm_repository_href [String]
524
506
  # @param npm_npm_repository [NpmNpmRepository]
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(npm_npm_repository_href, npm_npm_repository, opts = {})
531
510
  data, _status_code, _headers = update_with_http_info(npm_npm_repository_href, npm_npm_repository, opts)
@@ -537,9 +516,6 @@ module PulpNpmClient
537
516
  # @param npm_npm_repository_href [String]
538
517
  # @param npm_npm_repository [NpmNpmRepository]
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(npm_npm_repository_href, npm_npm_repository, opts = {})
545
521
  if @api_client.config.debugging
@@ -558,9 +534,6 @@ module PulpNpmClient
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 PulpNpmClient
23
23
  # Trigger an asynchronous task to delete a repositroy version.
24
24
  # @param npm_npm_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(npm_npm_repository_version_href, opts = {})
43
28
  data, _status_code, _headers = delete_with_http_info(npm_npm_repository_version_href, opts)
@@ -48,21 +33,6 @@ module PulpNpmClient
48
33
  # Trigger an asynchronous task to delete a repositroy version.
49
34
  # @param npm_npm_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(npm_npm_repository_version_href, opts = {})
68
38
  if @api_client.config.debugging
@@ -77,21 +47,6 @@ module PulpNpmClient
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] || {}
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.2.3
11
11
  =end
12
12
 
13
13
  module PulpNpmClient
14
- VERSION = '0.1.0a1.dev01599961126'
14
+ VERSION = '0.1.0a1.dev01600393224'
15
15
  end
@@ -49,13 +49,6 @@ describe 'DistributionsNpmApi' do
49
49
  # Trigger an asynchronous delete task
50
50
  # @param npm_npm_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 'DistributionsNpmApi' do
91
84
  # @param npm_npm_distribution_href
92
85
  # @param patchednpm_npm_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 'DistributionsNpmApi' do
125
111
  # @param npm_npm_distribution_href
126
112
  # @param npm_npm_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 'RemotesNpmApi' do
49
49
  # Trigger an asynchronous delete task
50
50
  # @param npm_npm_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 'RemotesNpmApi' do
95
86
  # @param npm_npm_remote_href
96
87
  # @param patchednpm_npm_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 'RemotesNpmApi' do
131
113
  # @param npm_npm_remote_href
132
114
  # @param npm_npm_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 'RepositoriesNpmApi' do
49
49
  # Trigger an asynchronous delete task
50
50
  # @param npm_npm_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 'RepositoriesNpmApi' do
96
93
  # @param npm_npm_repository_href
97
94
  # @param patchednpm_npm_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 'RepositoriesNpmApi' do
139
133
  # @param npm_npm_repository_href
140
134
  # @param npm_npm_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 'RepositoriesNpmVersionsApi' do
37
37
  # Trigger an asynchronous task to delete a repositroy version.
38
38
  # @param npm_npm_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_npm_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0a1.dev01599961126
4
+ version: 0.1.0a1.dev01600393224
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-13 00:00:00.000000000 Z
11
+ date: 2020-09-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -199,35 +199,35 @@ specification_version: 4
199
199
  summary: Pulp 3 API Ruby Gem
200
200
  test_files:
201
201
  - spec/api/repositories_npm_api_spec.rb
202
- - spec/api/remotes_npm_api_spec.rb
203
- - spec/api/pulp_npm_packages_api_spec.rb
204
202
  - spec/api/content_packages_api_spec.rb
203
+ - spec/api/remotes_npm_api_spec.rb
205
204
  - spec/api/repositories_npm_versions_api_spec.rb
205
+ - spec/api/pulp_npm_packages_api_spec.rb
206
206
  - spec/api/distributions_npm_api_spec.rb
207
207
  - spec/api_client_spec.rb
208
208
  - spec/configuration_spec.rb
209
- - spec/models/npm_npm_distribution_response_spec.rb
210
- - spec/models/repository_version_response_spec.rb
211
- - spec/models/patchednpm_npm_remote_spec.rb
212
- - spec/models/inline_response2004_spec.rb
213
- - spec/models/repository_add_remove_content_spec.rb
209
+ - spec/models/repository_sync_url_spec.rb
210
+ - spec/models/inline_response2002_spec.rb
211
+ - spec/models/patchednpm_npm_repository_spec.rb
214
212
  - spec/models/content_summary_response_spec.rb
215
- - spec/models/npm_npm_remote_response_spec.rb
216
- - spec/models/npm_package_spec.rb
213
+ - spec/models/inline_response200_spec.rb
217
214
  - spec/models/npm_package_response_spec.rb
218
- - spec/models/npm_npm_distribution_spec.rb
219
- - spec/models/npm_npm_repository_response_spec.rb
220
- - spec/models/inline_response2002_spec.rb
221
- - spec/models/content_summary_spec.rb
215
+ - spec/models/patchednpm_npm_distribution_spec.rb
216
+ - spec/models/npm_package_spec.rb
222
217
  - spec/models/repository_version_spec.rb
223
218
  - spec/models/npm_npm_remote_spec.rb
224
- - spec/models/patchednpm_npm_repository_spec.rb
225
- - spec/models/repository_sync_url_spec.rb
226
219
  - spec/models/npm_npm_repository_spec.rb
227
- - spec/models/inline_response2001_spec.rb
220
+ - spec/models/npm_npm_distribution_response_spec.rb
221
+ - spec/models/inline_response2004_spec.rb
222
+ - spec/models/repository_add_remove_content_spec.rb
223
+ - spec/models/npm_npm_repository_response_spec.rb
224
+ - spec/models/repository_version_response_spec.rb
225
+ - spec/models/npm_npm_distribution_spec.rb
228
226
  - spec/models/async_operation_response_spec.rb
229
- - spec/models/inline_response2003_spec.rb
230
227
  - spec/models/policy_enum_spec.rb
231
- - spec/models/patchednpm_npm_distribution_spec.rb
232
- - spec/models/inline_response200_spec.rb
228
+ - spec/models/inline_response2001_spec.rb
229
+ - spec/models/inline_response2003_spec.rb
230
+ - spec/models/content_summary_spec.rb
231
+ - spec/models/patchednpm_npm_remote_spec.rb
232
+ - spec/models/npm_npm_remote_response_spec.rb
233
233
  - spec/spec_helper.rb