rclone-openapi 1.73.4 → 1.74.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.
- package/openapi.json +311 -1196
- package/openapi.yaml +99 -419
- package/package.json +4 -4
- package/types.d.ts +354 -347
package/openapi.json
CHANGED
|
@@ -764,6 +764,42 @@
|
|
|
764
764
|
"operationId": "coreCommand"
|
|
765
765
|
}
|
|
766
766
|
},
|
|
767
|
+
"/core/disks": {
|
|
768
|
+
"post": {
|
|
769
|
+
"summary": "List locally accessible paths",
|
|
770
|
+
"description": "Returns a list of locally accessible paths including mount points, user directories, and removable volumes.",
|
|
771
|
+
"tags": [],
|
|
772
|
+
"parameters": [
|
|
773
|
+
{
|
|
774
|
+
"$ref": "#/components/parameters/GlobalGroupParam"
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"$ref": "#/components/parameters/GlobalAsyncParam"
|
|
778
|
+
}
|
|
779
|
+
],
|
|
780
|
+
"requestBody": {
|
|
781
|
+
"content": {
|
|
782
|
+
"application/json": {
|
|
783
|
+
"schema": {
|
|
784
|
+
"$ref": "#/components/schemas/CoreDisksRequest"
|
|
785
|
+
}
|
|
786
|
+
}
|
|
787
|
+
}
|
|
788
|
+
},
|
|
789
|
+
"responses": {
|
|
790
|
+
"200": {
|
|
791
|
+
"$ref": "#/components/responses/CoreDisksResponse"
|
|
792
|
+
},
|
|
793
|
+
"4XX": {
|
|
794
|
+
"$ref": "#/components/responses/RcError"
|
|
795
|
+
},
|
|
796
|
+
"5XX": {
|
|
797
|
+
"$ref": "#/components/responses/RcError"
|
|
798
|
+
}
|
|
799
|
+
},
|
|
800
|
+
"operationId": "coreDisks"
|
|
801
|
+
}
|
|
802
|
+
},
|
|
767
803
|
"/core/du": {
|
|
768
804
|
"post": {
|
|
769
805
|
"summary": "Report disk usage",
|
|
@@ -3661,7 +3697,7 @@
|
|
|
3661
3697
|
},
|
|
3662
3698
|
"responses": {
|
|
3663
3699
|
"200": {
|
|
3664
|
-
"$ref": "#/components/responses/
|
|
3700
|
+
"$ref": "#/components/responses/ServeTypesResponse"
|
|
3665
3701
|
},
|
|
3666
3702
|
"4XX": {
|
|
3667
3703
|
"$ref": "#/components/responses/RcError"
|
|
@@ -4282,8 +4318,7 @@
|
|
|
4282
4318
|
"description": "Remote name or path to clean up, for example `drive:`.",
|
|
4283
4319
|
"schema": {
|
|
4284
4320
|
"type": "string"
|
|
4285
|
-
}
|
|
4286
|
-
"required": true
|
|
4321
|
+
}
|
|
4287
4322
|
},
|
|
4288
4323
|
"Operations_CopyfilePostSrcFsParam": {
|
|
4289
4324
|
"name": "srcFs",
|
|
@@ -4291,8 +4326,7 @@
|
|
|
4291
4326
|
"description": "Source remote name or path, such as `drive:` or `/` for the local filesystem.",
|
|
4292
4327
|
"schema": {
|
|
4293
4328
|
"type": "string"
|
|
4294
|
-
}
|
|
4295
|
-
"required": true
|
|
4329
|
+
}
|
|
4296
4330
|
},
|
|
4297
4331
|
"Operations_CopyfilePostSrcRemoteParam": {
|
|
4298
4332
|
"name": "srcRemote",
|
|
@@ -4300,8 +4334,7 @@
|
|
|
4300
4334
|
"description": "Path to the source object within `srcFs`, for example `dir/file.txt`.",
|
|
4301
4335
|
"schema": {
|
|
4302
4336
|
"type": "string"
|
|
4303
|
-
}
|
|
4304
|
-
"required": true
|
|
4337
|
+
}
|
|
4305
4338
|
},
|
|
4306
4339
|
"Operations_CopyfilePostDstFsParam": {
|
|
4307
4340
|
"name": "dstFs",
|
|
@@ -4309,8 +4342,7 @@
|
|
|
4309
4342
|
"description": "Destination remote name or path, such as `drive2:` or `/` for local filesystem.",
|
|
4310
4343
|
"schema": {
|
|
4311
4344
|
"type": "string"
|
|
4312
|
-
}
|
|
4313
|
-
"required": true
|
|
4345
|
+
}
|
|
4314
4346
|
},
|
|
4315
4347
|
"Operations_CopyfilePostDstRemoteParam": {
|
|
4316
4348
|
"name": "dstRemote",
|
|
@@ -4318,8 +4350,7 @@
|
|
|
4318
4350
|
"description": "Target path within `dstFs` where the file should be written.",
|
|
4319
4351
|
"schema": {
|
|
4320
4352
|
"type": "string"
|
|
4321
|
-
}
|
|
4322
|
-
"required": true
|
|
4353
|
+
}
|
|
4323
4354
|
},
|
|
4324
4355
|
"Operations_CopyurlPostFsParam": {
|
|
4325
4356
|
"name": "fs",
|
|
@@ -4327,8 +4358,7 @@
|
|
|
4327
4358
|
"description": "Remote name or path that will receive the downloaded file, e.g. `drive:`.",
|
|
4328
4359
|
"schema": {
|
|
4329
4360
|
"type": "string"
|
|
4330
|
-
}
|
|
4331
|
-
"required": true
|
|
4361
|
+
}
|
|
4332
4362
|
},
|
|
4333
4363
|
"Operations_CopyurlPostRemoteParam": {
|
|
4334
4364
|
"name": "remote",
|
|
@@ -4336,8 +4366,7 @@
|
|
|
4336
4366
|
"description": "Destination path within `fs` where the fetched object will be stored.",
|
|
4337
4367
|
"schema": {
|
|
4338
4368
|
"type": "string"
|
|
4339
|
-
}
|
|
4340
|
-
"required": true
|
|
4369
|
+
}
|
|
4341
4370
|
},
|
|
4342
4371
|
"Operations_CopyurlPostUrlParam": {
|
|
4343
4372
|
"name": "url",
|
|
@@ -4345,8 +4374,7 @@
|
|
|
4345
4374
|
"description": "Source URL to fetch the object from.",
|
|
4346
4375
|
"schema": {
|
|
4347
4376
|
"type": "string"
|
|
4348
|
-
}
|
|
4349
|
-
"required": true
|
|
4377
|
+
}
|
|
4350
4378
|
},
|
|
4351
4379
|
"Operations_CopyurlPostAutoFilenameParam": {
|
|
4352
4380
|
"name": "autoFilename",
|
|
@@ -4362,8 +4390,7 @@
|
|
|
4362
4390
|
"description": "Remote name or path whose contents should be removed.",
|
|
4363
4391
|
"schema": {
|
|
4364
4392
|
"type": "string"
|
|
4365
|
-
}
|
|
4366
|
-
"required": true
|
|
4393
|
+
}
|
|
4367
4394
|
},
|
|
4368
4395
|
"Operations_DeletefilePostFsParam": {
|
|
4369
4396
|
"name": "fs",
|
|
@@ -4371,8 +4398,7 @@
|
|
|
4371
4398
|
"description": "Remote name or path that contains the file to delete.",
|
|
4372
4399
|
"schema": {
|
|
4373
4400
|
"type": "string"
|
|
4374
|
-
}
|
|
4375
|
-
"required": true
|
|
4401
|
+
}
|
|
4376
4402
|
},
|
|
4377
4403
|
"Operations_DeletefilePostRemoteParam": {
|
|
4378
4404
|
"name": "remote",
|
|
@@ -4380,8 +4406,7 @@
|
|
|
4380
4406
|
"description": "Exact path to the file within `fs` that should be deleted.",
|
|
4381
4407
|
"schema": {
|
|
4382
4408
|
"type": "string"
|
|
4383
|
-
}
|
|
4384
|
-
"required": true
|
|
4409
|
+
}
|
|
4385
4410
|
},
|
|
4386
4411
|
"Operations_FsinfoPostFsParam": {
|
|
4387
4412
|
"name": "fs",
|
|
@@ -4389,8 +4414,7 @@
|
|
|
4389
4414
|
"description": "Remote name or path to inspect, e.g. `drive:`.",
|
|
4390
4415
|
"schema": {
|
|
4391
4416
|
"type": "string"
|
|
4392
|
-
}
|
|
4393
|
-
"required": true
|
|
4417
|
+
}
|
|
4394
4418
|
},
|
|
4395
4419
|
"Operations_HashsumPostFsParam": {
|
|
4396
4420
|
"name": "fs",
|
|
@@ -4398,8 +4422,7 @@
|
|
|
4398
4422
|
"description": "Remote name or path to hash, such as `drive:` or `/`.",
|
|
4399
4423
|
"schema": {
|
|
4400
4424
|
"type": "string"
|
|
4401
|
-
}
|
|
4402
|
-
"required": true
|
|
4425
|
+
}
|
|
4403
4426
|
},
|
|
4404
4427
|
"Operations_HashsumPostHashTypeParam": {
|
|
4405
4428
|
"name": "hashType",
|
|
@@ -4407,8 +4430,7 @@
|
|
|
4407
4430
|
"description": "Hash algorithm to use, e.g. `md5`, `sha1`, or another supported name.",
|
|
4408
4431
|
"schema": {
|
|
4409
4432
|
"type": "string"
|
|
4410
|
-
}
|
|
4411
|
-
"required": true
|
|
4433
|
+
}
|
|
4412
4434
|
},
|
|
4413
4435
|
"Operations_HashsumPostDownloadParam": {
|
|
4414
4436
|
"name": "download",
|
|
@@ -4432,8 +4454,7 @@
|
|
|
4432
4454
|
"description": "Remote name or path containing the file to hash.",
|
|
4433
4455
|
"schema": {
|
|
4434
4456
|
"type": "string"
|
|
4435
|
-
}
|
|
4436
|
-
"required": true
|
|
4457
|
+
}
|
|
4437
4458
|
},
|
|
4438
4459
|
"Operations_HashsumfilePostRemoteParam": {
|
|
4439
4460
|
"name": "remote",
|
|
@@ -4441,8 +4462,7 @@
|
|
|
4441
4462
|
"description": "Path to the specific file within `fs` to hash.",
|
|
4442
4463
|
"schema": {
|
|
4443
4464
|
"type": "string"
|
|
4444
|
-
}
|
|
4445
|
-
"required": true
|
|
4465
|
+
}
|
|
4446
4466
|
},
|
|
4447
4467
|
"Operations_HashsumfilePostHashTypeParam": {
|
|
4448
4468
|
"name": "hashType",
|
|
@@ -4450,8 +4470,7 @@
|
|
|
4450
4470
|
"description": "Hash algorithm to use, e.g. `md5`, `sha1`, or another supported name.",
|
|
4451
4471
|
"schema": {
|
|
4452
4472
|
"type": "string"
|
|
4453
|
-
}
|
|
4454
|
-
"required": true
|
|
4473
|
+
}
|
|
4455
4474
|
},
|
|
4456
4475
|
"Operations_HashsumfilePostDownloadParam": {
|
|
4457
4476
|
"name": "download",
|
|
@@ -4475,8 +4494,7 @@
|
|
|
4475
4494
|
"description": "Source remote name or path containing the file to move.",
|
|
4476
4495
|
"schema": {
|
|
4477
4496
|
"type": "string"
|
|
4478
|
-
}
|
|
4479
|
-
"required": true
|
|
4497
|
+
}
|
|
4480
4498
|
},
|
|
4481
4499
|
"Operations_MovefilePostSrcRemoteParam": {
|
|
4482
4500
|
"name": "srcRemote",
|
|
@@ -4484,8 +4502,7 @@
|
|
|
4484
4502
|
"description": "Path to the source object within `srcFs`.",
|
|
4485
4503
|
"schema": {
|
|
4486
4504
|
"type": "string"
|
|
4487
|
-
}
|
|
4488
|
-
"required": true
|
|
4505
|
+
}
|
|
4489
4506
|
},
|
|
4490
4507
|
"Operations_MovefilePostDstFsParam": {
|
|
4491
4508
|
"name": "dstFs",
|
|
@@ -4493,8 +4510,7 @@
|
|
|
4493
4510
|
"description": "Destination remote name or path where the file will be moved.",
|
|
4494
4511
|
"schema": {
|
|
4495
4512
|
"type": "string"
|
|
4496
|
-
}
|
|
4497
|
-
"required": true
|
|
4513
|
+
}
|
|
4498
4514
|
},
|
|
4499
4515
|
"Operations_MovefilePostDstRemoteParam": {
|
|
4500
4516
|
"name": "dstRemote",
|
|
@@ -4502,8 +4518,7 @@
|
|
|
4502
4518
|
"description": "Destination path within `dstFs` for the moved object.",
|
|
4503
4519
|
"schema": {
|
|
4504
4520
|
"type": "string"
|
|
4505
|
-
}
|
|
4506
|
-
"required": true
|
|
4521
|
+
}
|
|
4507
4522
|
},
|
|
4508
4523
|
"Operations_PubliclinkPostFsParam": {
|
|
4509
4524
|
"name": "fs",
|
|
@@ -4511,8 +4526,7 @@
|
|
|
4511
4526
|
"description": "Remote name or path hosting the object for which to manage a public link.",
|
|
4512
4527
|
"schema": {
|
|
4513
4528
|
"type": "string"
|
|
4514
|
-
}
|
|
4515
|
-
"required": true
|
|
4529
|
+
}
|
|
4516
4530
|
},
|
|
4517
4531
|
"Operations_PubliclinkPostRemoteParam": {
|
|
4518
4532
|
"name": "remote",
|
|
@@ -4520,8 +4534,7 @@
|
|
|
4520
4534
|
"description": "Path within `fs` to the object for which to create or remove a public link.",
|
|
4521
4535
|
"schema": {
|
|
4522
4536
|
"type": "string"
|
|
4523
|
-
}
|
|
4524
|
-
"required": true
|
|
4537
|
+
}
|
|
4525
4538
|
},
|
|
4526
4539
|
"Operations_PubliclinkPostUnlinkParam": {
|
|
4527
4540
|
"name": "unlink",
|
|
@@ -4545,8 +4558,7 @@
|
|
|
4545
4558
|
"description": "Remote name or path to scan for empty directories.",
|
|
4546
4559
|
"schema": {
|
|
4547
4560
|
"type": "string"
|
|
4548
|
-
}
|
|
4549
|
-
"required": true
|
|
4561
|
+
}
|
|
4550
4562
|
},
|
|
4551
4563
|
"Operations_RmdirsPostRemoteParam": {
|
|
4552
4564
|
"name": "remote",
|
|
@@ -4554,8 +4566,7 @@
|
|
|
4554
4566
|
"description": "Path within `fs` whose empty subdirectories should be removed.",
|
|
4555
4567
|
"schema": {
|
|
4556
4568
|
"type": "string"
|
|
4557
|
-
}
|
|
4558
|
-
"required": true
|
|
4569
|
+
}
|
|
4559
4570
|
},
|
|
4560
4571
|
"Operations_RmdirsPostLeaveRootParam": {
|
|
4561
4572
|
"name": "leaveRoot",
|
|
@@ -4571,8 +4582,7 @@
|
|
|
4571
4582
|
"description": "Remote name or path whose storage class tier should be changed.",
|
|
4572
4583
|
"schema": {
|
|
4573
4584
|
"type": "string"
|
|
4574
|
-
}
|
|
4575
|
-
"required": true
|
|
4585
|
+
}
|
|
4576
4586
|
},
|
|
4577
4587
|
"Operations_SettierfilePostFsParam": {
|
|
4578
4588
|
"name": "fs",
|
|
@@ -4580,8 +4590,7 @@
|
|
|
4580
4590
|
"description": "Remote name or path that contains the object whose tier should change.",
|
|
4581
4591
|
"schema": {
|
|
4582
4592
|
"type": "string"
|
|
4583
|
-
}
|
|
4584
|
-
"required": true
|
|
4593
|
+
}
|
|
4585
4594
|
},
|
|
4586
4595
|
"Operations_SettierfilePostRemoteParam": {
|
|
4587
4596
|
"name": "remote",
|
|
@@ -4589,8 +4598,7 @@
|
|
|
4589
4598
|
"description": "Path within `fs` to the object whose storage class tier should be updated.",
|
|
4590
4599
|
"schema": {
|
|
4591
4600
|
"type": "string"
|
|
4592
|
-
}
|
|
4593
|
-
"required": true
|
|
4601
|
+
}
|
|
4594
4602
|
},
|
|
4595
4603
|
"Operations_SizePostFsParam": {
|
|
4596
4604
|
"name": "fs",
|
|
@@ -4598,8 +4606,7 @@
|
|
|
4598
4606
|
"description": "Remote name or path to measure aggregate size information for.",
|
|
4599
4607
|
"schema": {
|
|
4600
4608
|
"type": "string"
|
|
4601
|
-
}
|
|
4602
|
-
"required": true
|
|
4609
|
+
}
|
|
4603
4610
|
},
|
|
4604
4611
|
"Core_BwlimitPostRateParam": {
|
|
4605
4612
|
"name": "rate",
|
|
@@ -4615,8 +4622,7 @@
|
|
|
4615
4622
|
"description": "Name of the rclone command to execute, for example `ls` or `lsf`.",
|
|
4616
4623
|
"schema": {
|
|
4617
4624
|
"type": "string"
|
|
4618
|
-
}
|
|
4619
|
-
"required": true
|
|
4625
|
+
}
|
|
4620
4626
|
},
|
|
4621
4627
|
"Core_CommandPostArgParam": {
|
|
4622
4628
|
"name": "arg",
|
|
@@ -4661,8 +4667,7 @@
|
|
|
4661
4667
|
"description": "Plain-text string to obscure for storage in the config file.",
|
|
4662
4668
|
"schema": {
|
|
4663
4669
|
"type": "string"
|
|
4664
|
-
}
|
|
4665
|
-
"required": true
|
|
4670
|
+
}
|
|
4666
4671
|
},
|
|
4667
4672
|
"Core_QuitPostExitCodeParam": {
|
|
4668
4673
|
"name": "exitCode",
|
|
@@ -4678,8 +4683,7 @@
|
|
|
4678
4683
|
"description": "Stats group identifier to remove.",
|
|
4679
4684
|
"schema": {
|
|
4680
4685
|
"type": "string"
|
|
4681
|
-
}
|
|
4682
|
-
"required": true
|
|
4686
|
+
}
|
|
4683
4687
|
},
|
|
4684
4688
|
"Core_StatsPostGroupParam": {
|
|
4685
4689
|
"name": "group",
|
|
@@ -4719,8 +4723,7 @@
|
|
|
4719
4723
|
"description": "Sampling interval in nanoseconds for blocking profile collection; use 1 to capture all events.",
|
|
4720
4724
|
"schema": {
|
|
4721
4725
|
"type": "integer"
|
|
4722
|
-
}
|
|
4723
|
-
"required": true
|
|
4726
|
+
}
|
|
4724
4727
|
},
|
|
4725
4728
|
"Debug_SetGcPercentPostGcPercentParam": {
|
|
4726
4729
|
"name": "gc-percent",
|
|
@@ -4728,8 +4731,7 @@
|
|
|
4728
4731
|
"description": "Target percentage of newly allocated data to trigger garbage collection.",
|
|
4729
4732
|
"schema": {
|
|
4730
4733
|
"type": "integer"
|
|
4731
|
-
}
|
|
4732
|
-
"required": true
|
|
4734
|
+
}
|
|
4733
4735
|
},
|
|
4734
4736
|
"Debug_SetMutexProfileFractionPostRateParam": {
|
|
4735
4737
|
"name": "rate",
|
|
@@ -4737,8 +4739,7 @@
|
|
|
4737
4739
|
"description": "Sampling fraction for mutex contention profiling; set to 0 to disable.",
|
|
4738
4740
|
"schema": {
|
|
4739
4741
|
"type": "integer"
|
|
4740
|
-
}
|
|
4741
|
-
"required": true
|
|
4742
|
+
}
|
|
4742
4743
|
},
|
|
4743
4744
|
"Debug_SetSoftMemoryLimitPostMemLimitParam": {
|
|
4744
4745
|
"name": "mem-limit",
|
|
@@ -4746,8 +4747,7 @@
|
|
|
4746
4747
|
"description": "Soft memory limit for the Go runtime in bytes.",
|
|
4747
4748
|
"schema": {
|
|
4748
4749
|
"type": "integer"
|
|
4749
|
-
}
|
|
4750
|
-
"required": true
|
|
4750
|
+
}
|
|
4751
4751
|
},
|
|
4752
4752
|
"Mount_MountPostFsParam": {
|
|
4753
4753
|
"name": "fs",
|
|
@@ -4755,8 +4755,7 @@
|
|
|
4755
4755
|
"description": "Remote path to mount, such as `drive:` or `remote:subdir`.",
|
|
4756
4756
|
"schema": {
|
|
4757
4757
|
"type": "string"
|
|
4758
|
-
}
|
|
4759
|
-
"required": true
|
|
4758
|
+
}
|
|
4760
4759
|
},
|
|
4761
4760
|
"Mount_MountPostMountPointParam": {
|
|
4762
4761
|
"name": "mountPoint",
|
|
@@ -4764,8 +4763,7 @@
|
|
|
4764
4763
|
"description": "Absolute local path where the remote should be mounted.",
|
|
4765
4764
|
"schema": {
|
|
4766
4765
|
"type": "string"
|
|
4767
|
-
}
|
|
4768
|
-
"required": true
|
|
4766
|
+
}
|
|
4769
4767
|
},
|
|
4770
4768
|
"Mount_MountPostMountTypeParam": {
|
|
4771
4769
|
"name": "mountType",
|
|
@@ -4797,8 +4795,7 @@
|
|
|
4797
4795
|
"description": "Local mount point path to unmount.",
|
|
4798
4796
|
"schema": {
|
|
4799
4797
|
"type": "string"
|
|
4800
|
-
}
|
|
4801
|
-
"required": true
|
|
4798
|
+
}
|
|
4802
4799
|
},
|
|
4803
4800
|
"Rc_NoopauthPostAdditionalParam": {
|
|
4804
4801
|
"name": "params",
|
|
@@ -4828,8 +4825,7 @@
|
|
|
4828
4825
|
"description": "Backend-specific command to invoke.",
|
|
4829
4826
|
"schema": {
|
|
4830
4827
|
"type": "string"
|
|
4831
|
-
}
|
|
4832
|
-
"required": true
|
|
4828
|
+
}
|
|
4833
4829
|
},
|
|
4834
4830
|
"Backend_CommandPostFsParam": {
|
|
4835
4831
|
"name": "fs",
|
|
@@ -4866,8 +4862,7 @@
|
|
|
4866
4862
|
"description": "Remote path to expire from the cache, e.g. `remote:path/to/dir`.",
|
|
4867
4863
|
"schema": {
|
|
4868
4864
|
"type": "string"
|
|
4869
|
-
}
|
|
4870
|
-
"required": true
|
|
4865
|
+
}
|
|
4871
4866
|
},
|
|
4872
4867
|
"Cache_ExpirePostWithDataParam": {
|
|
4873
4868
|
"name": "withData",
|
|
@@ -4902,8 +4897,7 @@
|
|
|
4902
4897
|
"description": "Name of the new remote configuration.",
|
|
4903
4898
|
"schema": {
|
|
4904
4899
|
"type": "string"
|
|
4905
|
-
}
|
|
4906
|
-
"required": true
|
|
4900
|
+
}
|
|
4907
4901
|
},
|
|
4908
4902
|
"Config_CreatePostParametersParam": {
|
|
4909
4903
|
"name": "parameters",
|
|
@@ -4911,8 +4905,7 @@
|
|
|
4911
4905
|
"description": "JSON object of configuration key/value pairs required for the remote.",
|
|
4912
4906
|
"schema": {
|
|
4913
4907
|
"type": "string"
|
|
4914
|
-
}
|
|
4915
|
-
"required": true
|
|
4908
|
+
}
|
|
4916
4909
|
},
|
|
4917
4910
|
"Config_CreatePostTypeParam": {
|
|
4918
4911
|
"name": "type",
|
|
@@ -4920,8 +4913,7 @@
|
|
|
4920
4913
|
"description": "Backend type identifier, such as `drive`, `s3`, or `dropbox`.",
|
|
4921
4914
|
"schema": {
|
|
4922
4915
|
"type": "string"
|
|
4923
|
-
}
|
|
4924
|
-
"required": true
|
|
4916
|
+
}
|
|
4925
4917
|
},
|
|
4926
4918
|
"Config_CreatePostOptParam": {
|
|
4927
4919
|
"name": "opt",
|
|
@@ -4937,8 +4929,7 @@
|
|
|
4937
4929
|
"description": "Name of the remote configuration to delete.",
|
|
4938
4930
|
"schema": {
|
|
4939
4931
|
"type": "string"
|
|
4940
|
-
}
|
|
4941
|
-
"required": true
|
|
4932
|
+
}
|
|
4942
4933
|
},
|
|
4943
4934
|
"Config_GetPostNameParam": {
|
|
4944
4935
|
"name": "name",
|
|
@@ -4946,8 +4937,7 @@
|
|
|
4946
4937
|
"description": "Name of the remote configuration to fetch.",
|
|
4947
4938
|
"schema": {
|
|
4948
4939
|
"type": "string"
|
|
4949
|
-
}
|
|
4950
|
-
"required": true
|
|
4940
|
+
}
|
|
4951
4941
|
},
|
|
4952
4942
|
"Config_PasswordPostNameParam": {
|
|
4953
4943
|
"name": "name",
|
|
@@ -4955,8 +4945,7 @@
|
|
|
4955
4945
|
"description": "Name of the remote whose secrets should be updated.",
|
|
4956
4946
|
"schema": {
|
|
4957
4947
|
"type": "string"
|
|
4958
|
-
}
|
|
4959
|
-
"required": true
|
|
4948
|
+
}
|
|
4960
4949
|
},
|
|
4961
4950
|
"Config_PasswordPostParametersParam": {
|
|
4962
4951
|
"name": "parameters",
|
|
@@ -4964,8 +4953,7 @@
|
|
|
4964
4953
|
"description": "JSON object of password answers, typically including `pass`.",
|
|
4965
4954
|
"schema": {
|
|
4966
4955
|
"type": "string"
|
|
4967
|
-
}
|
|
4968
|
-
"required": true
|
|
4956
|
+
}
|
|
4969
4957
|
},
|
|
4970
4958
|
"Config_SetpathPostPathParam": {
|
|
4971
4959
|
"name": "path",
|
|
@@ -4973,8 +4961,7 @@
|
|
|
4973
4961
|
"description": "Absolute path to the `rclone.conf` file that rclone should use.",
|
|
4974
4962
|
"schema": {
|
|
4975
4963
|
"type": "string"
|
|
4976
|
-
}
|
|
4977
|
-
"required": true
|
|
4964
|
+
}
|
|
4978
4965
|
},
|
|
4979
4966
|
"Config_UnlockPostConfigPasswordParam": {
|
|
4980
4967
|
"name": "configPassword",
|
|
@@ -4982,8 +4969,7 @@
|
|
|
4982
4969
|
"description": "Password used to unlock an encrypted config file.",
|
|
4983
4970
|
"schema": {
|
|
4984
4971
|
"type": "string"
|
|
4985
|
-
}
|
|
4986
|
-
"required": true
|
|
4972
|
+
}
|
|
4987
4973
|
},
|
|
4988
4974
|
"Config_UpdatePostNameParam": {
|
|
4989
4975
|
"name": "name",
|
|
@@ -4991,8 +4977,7 @@
|
|
|
4991
4977
|
"description": "Name of the remote configuration to update.",
|
|
4992
4978
|
"schema": {
|
|
4993
4979
|
"type": "string"
|
|
4994
|
-
}
|
|
4995
|
-
"required": true
|
|
4980
|
+
}
|
|
4996
4981
|
},
|
|
4997
4982
|
"Config_UpdatePostParametersParam": {
|
|
4998
4983
|
"name": "parameters",
|
|
@@ -5000,8 +4985,7 @@
|
|
|
5000
4985
|
"description": "JSON object of configuration key/value pairs to apply to the remote.",
|
|
5001
4986
|
"schema": {
|
|
5002
4987
|
"type": "string"
|
|
5003
|
-
}
|
|
5004
|
-
"required": true
|
|
4988
|
+
}
|
|
5005
4989
|
},
|
|
5006
4990
|
"Config_UpdatePostOptParam": {
|
|
5007
4991
|
"name": "opt",
|
|
@@ -5017,8 +5001,7 @@
|
|
|
5017
5001
|
"description": "Numeric identifier of the job to query, as returned from an async call.",
|
|
5018
5002
|
"schema": {
|
|
5019
5003
|
"type": "number"
|
|
5020
|
-
}
|
|
5021
|
-
"required": true
|
|
5004
|
+
}
|
|
5022
5005
|
},
|
|
5023
5006
|
"Job_StopPostJobidParam": {
|
|
5024
5007
|
"name": "jobid",
|
|
@@ -5026,8 +5009,7 @@
|
|
|
5026
5009
|
"description": "Numeric identifier of the job to cancel.",
|
|
5027
5010
|
"schema": {
|
|
5028
5011
|
"type": "number"
|
|
5029
|
-
}
|
|
5030
|
-
"required": true
|
|
5012
|
+
}
|
|
5031
5013
|
},
|
|
5032
5014
|
"Job_StopgroupPostGroupParam": {
|
|
5033
5015
|
"name": "group",
|
|
@@ -5035,8 +5017,7 @@
|
|
|
5035
5017
|
"description": "Stats group name whose active jobs should be stopped.",
|
|
5036
5018
|
"schema": {
|
|
5037
5019
|
"type": "string"
|
|
5038
|
-
}
|
|
5039
|
-
"required": true
|
|
5020
|
+
}
|
|
5040
5021
|
},
|
|
5041
5022
|
"Operations_ListPostFsParam": {
|
|
5042
5023
|
"name": "fs",
|
|
@@ -5044,8 +5025,7 @@
|
|
|
5044
5025
|
"description": "Remote name or path to list, for example `drive:`.",
|
|
5045
5026
|
"schema": {
|
|
5046
5027
|
"type": "string"
|
|
5047
|
-
}
|
|
5048
|
-
"required": true
|
|
5028
|
+
}
|
|
5049
5029
|
},
|
|
5050
5030
|
"Operations_ListPostRemoteParam": {
|
|
5051
5031
|
"name": "remote",
|
|
@@ -5053,8 +5033,7 @@
|
|
|
5053
5033
|
"description": "Directory path within `fs` to list; leave empty to target the root.",
|
|
5054
5034
|
"schema": {
|
|
5055
5035
|
"type": "string"
|
|
5056
|
-
}
|
|
5057
|
-
"required": true
|
|
5036
|
+
}
|
|
5058
5037
|
},
|
|
5059
5038
|
"Operations_ListPostOptParam": {
|
|
5060
5039
|
"name": "opt",
|
|
@@ -5155,8 +5134,7 @@
|
|
|
5155
5134
|
"description": "Remote name or path that contains the item to inspect.",
|
|
5156
5135
|
"schema": {
|
|
5157
5136
|
"type": "string"
|
|
5158
|
-
}
|
|
5159
|
-
"required": true
|
|
5137
|
+
}
|
|
5160
5138
|
},
|
|
5161
5139
|
"Operations_StatPostRemoteParam": {
|
|
5162
5140
|
"name": "remote",
|
|
@@ -5164,8 +5142,7 @@
|
|
|
5164
5142
|
"description": "Path to the file or directory within `fs` to describe.",
|
|
5165
5143
|
"schema": {
|
|
5166
5144
|
"type": "string"
|
|
5167
|
-
}
|
|
5168
|
-
"required": true
|
|
5145
|
+
}
|
|
5169
5146
|
},
|
|
5170
5147
|
"Operations_StatPostOptParam": {
|
|
5171
5148
|
"name": "opt",
|
|
@@ -5181,8 +5158,7 @@
|
|
|
5181
5158
|
"description": "Remote name or path to query for capacity information.",
|
|
5182
5159
|
"schema": {
|
|
5183
5160
|
"type": "string"
|
|
5184
|
-
}
|
|
5185
|
-
"required": true
|
|
5161
|
+
}
|
|
5186
5162
|
},
|
|
5187
5163
|
"Operations_PurgePostFsParam": {
|
|
5188
5164
|
"name": "fs",
|
|
@@ -5190,8 +5166,7 @@
|
|
|
5190
5166
|
"description": "Remote name or path from which to remove all contents.",
|
|
5191
5167
|
"schema": {
|
|
5192
5168
|
"type": "string"
|
|
5193
|
-
}
|
|
5194
|
-
"required": true
|
|
5169
|
+
}
|
|
5195
5170
|
},
|
|
5196
5171
|
"Operations_PurgePostRemoteParam": {
|
|
5197
5172
|
"name": "remote",
|
|
@@ -5199,8 +5174,7 @@
|
|
|
5199
5174
|
"description": "Path within `fs` whose contents should be purged.",
|
|
5200
5175
|
"schema": {
|
|
5201
5176
|
"type": "string"
|
|
5202
|
-
}
|
|
5203
|
-
"required": true
|
|
5177
|
+
}
|
|
5204
5178
|
},
|
|
5205
5179
|
"Operations_UploadfilePostFsParam": {
|
|
5206
5180
|
"name": "fs",
|
|
@@ -5208,8 +5182,7 @@
|
|
|
5208
5182
|
"description": "Remote name or path where the uploaded file should be stored.",
|
|
5209
5183
|
"schema": {
|
|
5210
5184
|
"type": "string"
|
|
5211
|
-
}
|
|
5212
|
-
"required": true
|
|
5185
|
+
}
|
|
5213
5186
|
},
|
|
5214
5187
|
"Operations_UploadfilePostRemoteParam": {
|
|
5215
5188
|
"name": "remote",
|
|
@@ -5217,8 +5190,7 @@
|
|
|
5217
5190
|
"description": "Destination path within `fs` for the uploaded file.",
|
|
5218
5191
|
"schema": {
|
|
5219
5192
|
"type": "string"
|
|
5220
|
-
}
|
|
5221
|
-
"required": true
|
|
5193
|
+
}
|
|
5222
5194
|
},
|
|
5223
5195
|
"Operations_MkdirPostFsParam": {
|
|
5224
5196
|
"name": "fs",
|
|
@@ -5226,8 +5198,7 @@
|
|
|
5226
5198
|
"description": "Remote name or path in which to create a directory.",
|
|
5227
5199
|
"schema": {
|
|
5228
5200
|
"type": "string"
|
|
5229
|
-
}
|
|
5230
|
-
"required": true
|
|
5201
|
+
}
|
|
5231
5202
|
},
|
|
5232
5203
|
"Operations_MkdirPostRemoteParam": {
|
|
5233
5204
|
"name": "remote",
|
|
@@ -5235,8 +5206,7 @@
|
|
|
5235
5206
|
"description": "Directory path within `fs` to create.",
|
|
5236
5207
|
"schema": {
|
|
5237
5208
|
"type": "string"
|
|
5238
|
-
}
|
|
5239
|
-
"required": true
|
|
5209
|
+
}
|
|
5240
5210
|
},
|
|
5241
5211
|
"Operations_RmdirPostFsParam": {
|
|
5242
5212
|
"name": "fs",
|
|
@@ -5244,8 +5214,7 @@
|
|
|
5244
5214
|
"description": "Remote name or path containing the directory to remove.",
|
|
5245
5215
|
"schema": {
|
|
5246
5216
|
"type": "string"
|
|
5247
|
-
}
|
|
5248
|
-
"required": true
|
|
5217
|
+
}
|
|
5249
5218
|
},
|
|
5250
5219
|
"Operations_RmdirPostRemoteParam": {
|
|
5251
5220
|
"name": "remote",
|
|
@@ -5253,8 +5222,7 @@
|
|
|
5253
5222
|
"description": "Directory path within `fs` to delete.",
|
|
5254
5223
|
"schema": {
|
|
5255
5224
|
"type": "string"
|
|
5256
|
-
}
|
|
5257
|
-
"required": true
|
|
5225
|
+
}
|
|
5258
5226
|
},
|
|
5259
5227
|
"Operations_CheckPostSrcFsParam": {
|
|
5260
5228
|
"name": "srcFs",
|
|
@@ -5262,8 +5230,7 @@
|
|
|
5262
5230
|
"description": "Source remote name or path to verify, e.g. `drive:`.",
|
|
5263
5231
|
"schema": {
|
|
5264
5232
|
"type": "string"
|
|
5265
|
-
}
|
|
5266
|
-
"required": true
|
|
5233
|
+
}
|
|
5267
5234
|
},
|
|
5268
5235
|
"Operations_CheckPostDstFsParam": {
|
|
5269
5236
|
"name": "dstFs",
|
|
@@ -5271,8 +5238,7 @@
|
|
|
5271
5238
|
"description": "Destination remote name or path that should match the source.",
|
|
5272
5239
|
"schema": {
|
|
5273
5240
|
"type": "string"
|
|
5274
|
-
}
|
|
5275
|
-
"required": true
|
|
5241
|
+
}
|
|
5276
5242
|
},
|
|
5277
5243
|
"Operations_CheckPostDownloadParam": {
|
|
5278
5244
|
"name": "download",
|
|
@@ -5368,8 +5334,7 @@
|
|
|
5368
5334
|
"description": "Source remote path to sync from, e.g. `drive:src`.",
|
|
5369
5335
|
"schema": {
|
|
5370
5336
|
"type": "string"
|
|
5371
|
-
}
|
|
5372
|
-
"required": true
|
|
5337
|
+
}
|
|
5373
5338
|
},
|
|
5374
5339
|
"Sync_SyncPostDstFsParam": {
|
|
5375
5340
|
"name": "dstFs",
|
|
@@ -5377,8 +5342,7 @@
|
|
|
5377
5342
|
"description": "Destination remote path to sync to, e.g. `drive:dst`.",
|
|
5378
5343
|
"schema": {
|
|
5379
5344
|
"type": "string"
|
|
5380
|
-
}
|
|
5381
|
-
"required": true
|
|
5345
|
+
}
|
|
5382
5346
|
},
|
|
5383
5347
|
"Sync_SyncPostCreateEmptySrcDirsParam": {
|
|
5384
5348
|
"name": "createEmptySrcDirs",
|
|
@@ -5394,8 +5358,7 @@
|
|
|
5394
5358
|
"description": "Source remote path to copy from.",
|
|
5395
5359
|
"schema": {
|
|
5396
5360
|
"type": "string"
|
|
5397
|
-
}
|
|
5398
|
-
"required": true
|
|
5361
|
+
}
|
|
5399
5362
|
},
|
|
5400
5363
|
"Sync_CopyPostDstFsParam": {
|
|
5401
5364
|
"name": "dstFs",
|
|
@@ -5403,8 +5366,7 @@
|
|
|
5403
5366
|
"description": "Destination remote path to copy to.",
|
|
5404
5367
|
"schema": {
|
|
5405
5368
|
"type": "string"
|
|
5406
|
-
}
|
|
5407
|
-
"required": true
|
|
5369
|
+
}
|
|
5408
5370
|
},
|
|
5409
5371
|
"Sync_CopyPostCreateEmptySrcDirsParam": {
|
|
5410
5372
|
"name": "createEmptySrcDirs",
|
|
@@ -5420,8 +5382,7 @@
|
|
|
5420
5382
|
"description": "Source remote path whose contents will be moved.",
|
|
5421
5383
|
"schema": {
|
|
5422
5384
|
"type": "string"
|
|
5423
|
-
}
|
|
5424
|
-
"required": true
|
|
5385
|
+
}
|
|
5425
5386
|
},
|
|
5426
5387
|
"Sync_MovePostDstFsParam": {
|
|
5427
5388
|
"name": "dstFs",
|
|
@@ -5429,8 +5390,7 @@
|
|
|
5429
5390
|
"description": "Destination remote path that will receive moved files.",
|
|
5430
5391
|
"schema": {
|
|
5431
5392
|
"type": "string"
|
|
5432
|
-
}
|
|
5433
|
-
"required": true
|
|
5393
|
+
}
|
|
5434
5394
|
},
|
|
5435
5395
|
"Sync_MovePostCreateEmptySrcDirsParam": {
|
|
5436
5396
|
"name": "createEmptySrcDirs",
|
|
@@ -5454,8 +5414,7 @@
|
|
|
5454
5414
|
"description": "First remote directory, e.g. `drive:path1`.",
|
|
5455
5415
|
"schema": {
|
|
5456
5416
|
"type": "string"
|
|
5457
|
-
}
|
|
5458
|
-
"required": true
|
|
5417
|
+
}
|
|
5459
5418
|
},
|
|
5460
5419
|
"Sync_BisyncPostPath2Param": {
|
|
5461
5420
|
"name": "path2",
|
|
@@ -5463,8 +5422,7 @@
|
|
|
5463
5422
|
"description": "Second remote directory, e.g. `drive:path2`.",
|
|
5464
5423
|
"schema": {
|
|
5465
5424
|
"type": "string"
|
|
5466
|
-
}
|
|
5467
|
-
"required": true
|
|
5425
|
+
}
|
|
5468
5426
|
},
|
|
5469
5427
|
"Sync_BisyncPostDryRunParam": {
|
|
5470
5428
|
"name": "dryRun",
|
|
@@ -5618,30 +5576,7 @@
|
|
|
5618
5576
|
"explode": true,
|
|
5619
5577
|
"schema": {
|
|
5620
5578
|
"type": "object",
|
|
5621
|
-
"additionalProperties":
|
|
5622
|
-
"oneOf": [
|
|
5623
|
-
{
|
|
5624
|
-
"type": "string"
|
|
5625
|
-
},
|
|
5626
|
-
{
|
|
5627
|
-
"type": "number"
|
|
5628
|
-
},
|
|
5629
|
-
{
|
|
5630
|
-
"type": "integer"
|
|
5631
|
-
},
|
|
5632
|
-
{
|
|
5633
|
-
"type": "boolean"
|
|
5634
|
-
},
|
|
5635
|
-
{
|
|
5636
|
-
"type": "array",
|
|
5637
|
-
"items": {}
|
|
5638
|
-
},
|
|
5639
|
-
{
|
|
5640
|
-
"type": "object",
|
|
5641
|
-
"additionalProperties": {}
|
|
5642
|
-
}
|
|
5643
|
-
]
|
|
5644
|
-
}
|
|
5579
|
+
"additionalProperties": true
|
|
5645
5580
|
}
|
|
5646
5581
|
},
|
|
5647
5582
|
"Options_SetPostFilterParam": {
|
|
@@ -5652,30 +5587,7 @@
|
|
|
5652
5587
|
"explode": true,
|
|
5653
5588
|
"schema": {
|
|
5654
5589
|
"type": "object",
|
|
5655
|
-
"additionalProperties":
|
|
5656
|
-
"oneOf": [
|
|
5657
|
-
{
|
|
5658
|
-
"type": "string"
|
|
5659
|
-
},
|
|
5660
|
-
{
|
|
5661
|
-
"type": "number"
|
|
5662
|
-
},
|
|
5663
|
-
{
|
|
5664
|
-
"type": "integer"
|
|
5665
|
-
},
|
|
5666
|
-
{
|
|
5667
|
-
"type": "boolean"
|
|
5668
|
-
},
|
|
5669
|
-
{
|
|
5670
|
-
"type": "array",
|
|
5671
|
-
"items": {}
|
|
5672
|
-
},
|
|
5673
|
-
{
|
|
5674
|
-
"type": "object",
|
|
5675
|
-
"additionalProperties": {}
|
|
5676
|
-
}
|
|
5677
|
-
]
|
|
5678
|
-
}
|
|
5590
|
+
"additionalProperties": true
|
|
5679
5591
|
}
|
|
5680
5592
|
},
|
|
5681
5593
|
"Options_SetPostFtpParam": {
|
|
@@ -5686,30 +5598,7 @@
|
|
|
5686
5598
|
"explode": true,
|
|
5687
5599
|
"schema": {
|
|
5688
5600
|
"type": "object",
|
|
5689
|
-
"additionalProperties":
|
|
5690
|
-
"oneOf": [
|
|
5691
|
-
{
|
|
5692
|
-
"type": "string"
|
|
5693
|
-
},
|
|
5694
|
-
{
|
|
5695
|
-
"type": "number"
|
|
5696
|
-
},
|
|
5697
|
-
{
|
|
5698
|
-
"type": "integer"
|
|
5699
|
-
},
|
|
5700
|
-
{
|
|
5701
|
-
"type": "boolean"
|
|
5702
|
-
},
|
|
5703
|
-
{
|
|
5704
|
-
"type": "array",
|
|
5705
|
-
"items": {}
|
|
5706
|
-
},
|
|
5707
|
-
{
|
|
5708
|
-
"type": "object",
|
|
5709
|
-
"additionalProperties": {}
|
|
5710
|
-
}
|
|
5711
|
-
]
|
|
5712
|
-
}
|
|
5601
|
+
"additionalProperties": true
|
|
5713
5602
|
}
|
|
5714
5603
|
},
|
|
5715
5604
|
"Options_SetPostMainParam": {
|
|
@@ -5720,30 +5609,7 @@
|
|
|
5720
5609
|
"explode": true,
|
|
5721
5610
|
"schema": {
|
|
5722
5611
|
"type": "object",
|
|
5723
|
-
"additionalProperties":
|
|
5724
|
-
"oneOf": [
|
|
5725
|
-
{
|
|
5726
|
-
"type": "string"
|
|
5727
|
-
},
|
|
5728
|
-
{
|
|
5729
|
-
"type": "number"
|
|
5730
|
-
},
|
|
5731
|
-
{
|
|
5732
|
-
"type": "integer"
|
|
5733
|
-
},
|
|
5734
|
-
{
|
|
5735
|
-
"type": "boolean"
|
|
5736
|
-
},
|
|
5737
|
-
{
|
|
5738
|
-
"type": "array",
|
|
5739
|
-
"items": {}
|
|
5740
|
-
},
|
|
5741
|
-
{
|
|
5742
|
-
"type": "object",
|
|
5743
|
-
"additionalProperties": {}
|
|
5744
|
-
}
|
|
5745
|
-
]
|
|
5746
|
-
}
|
|
5612
|
+
"additionalProperties": true
|
|
5747
5613
|
}
|
|
5748
5614
|
},
|
|
5749
5615
|
"Options_SetPostHttpParam": {
|
|
@@ -5754,30 +5620,7 @@
|
|
|
5754
5620
|
"explode": true,
|
|
5755
5621
|
"schema": {
|
|
5756
5622
|
"type": "object",
|
|
5757
|
-
"additionalProperties":
|
|
5758
|
-
"oneOf": [
|
|
5759
|
-
{
|
|
5760
|
-
"type": "string"
|
|
5761
|
-
},
|
|
5762
|
-
{
|
|
5763
|
-
"type": "number"
|
|
5764
|
-
},
|
|
5765
|
-
{
|
|
5766
|
-
"type": "integer"
|
|
5767
|
-
},
|
|
5768
|
-
{
|
|
5769
|
-
"type": "boolean"
|
|
5770
|
-
},
|
|
5771
|
-
{
|
|
5772
|
-
"type": "array",
|
|
5773
|
-
"items": {}
|
|
5774
|
-
},
|
|
5775
|
-
{
|
|
5776
|
-
"type": "object",
|
|
5777
|
-
"additionalProperties": {}
|
|
5778
|
-
}
|
|
5779
|
-
]
|
|
5780
|
-
}
|
|
5623
|
+
"additionalProperties": true
|
|
5781
5624
|
}
|
|
5782
5625
|
},
|
|
5783
5626
|
"Options_SetPostLogParam": {
|
|
@@ -5788,30 +5631,7 @@
|
|
|
5788
5631
|
"explode": true,
|
|
5789
5632
|
"schema": {
|
|
5790
5633
|
"type": "object",
|
|
5791
|
-
"additionalProperties":
|
|
5792
|
-
"oneOf": [
|
|
5793
|
-
{
|
|
5794
|
-
"type": "string"
|
|
5795
|
-
},
|
|
5796
|
-
{
|
|
5797
|
-
"type": "number"
|
|
5798
|
-
},
|
|
5799
|
-
{
|
|
5800
|
-
"type": "integer"
|
|
5801
|
-
},
|
|
5802
|
-
{
|
|
5803
|
-
"type": "boolean"
|
|
5804
|
-
},
|
|
5805
|
-
{
|
|
5806
|
-
"type": "array",
|
|
5807
|
-
"items": {}
|
|
5808
|
-
},
|
|
5809
|
-
{
|
|
5810
|
-
"type": "object",
|
|
5811
|
-
"additionalProperties": {}
|
|
5812
|
-
}
|
|
5813
|
-
]
|
|
5814
|
-
}
|
|
5634
|
+
"additionalProperties": true
|
|
5815
5635
|
}
|
|
5816
5636
|
},
|
|
5817
5637
|
"Options_SetPostMountParam": {
|
|
@@ -5822,30 +5642,7 @@
|
|
|
5822
5642
|
"explode": true,
|
|
5823
5643
|
"schema": {
|
|
5824
5644
|
"type": "object",
|
|
5825
|
-
"additionalProperties":
|
|
5826
|
-
"oneOf": [
|
|
5827
|
-
{
|
|
5828
|
-
"type": "string"
|
|
5829
|
-
},
|
|
5830
|
-
{
|
|
5831
|
-
"type": "number"
|
|
5832
|
-
},
|
|
5833
|
-
{
|
|
5834
|
-
"type": "integer"
|
|
5835
|
-
},
|
|
5836
|
-
{
|
|
5837
|
-
"type": "boolean"
|
|
5838
|
-
},
|
|
5839
|
-
{
|
|
5840
|
-
"type": "array",
|
|
5841
|
-
"items": {}
|
|
5842
|
-
},
|
|
5843
|
-
{
|
|
5844
|
-
"type": "object",
|
|
5845
|
-
"additionalProperties": {}
|
|
5846
|
-
}
|
|
5847
|
-
]
|
|
5848
|
-
}
|
|
5645
|
+
"additionalProperties": true
|
|
5849
5646
|
}
|
|
5850
5647
|
},
|
|
5851
5648
|
"Options_SetPostNfsParam": {
|
|
@@ -5856,30 +5653,7 @@
|
|
|
5856
5653
|
"explode": true,
|
|
5857
5654
|
"schema": {
|
|
5858
5655
|
"type": "object",
|
|
5859
|
-
"additionalProperties":
|
|
5860
|
-
"oneOf": [
|
|
5861
|
-
{
|
|
5862
|
-
"type": "string"
|
|
5863
|
-
},
|
|
5864
|
-
{
|
|
5865
|
-
"type": "number"
|
|
5866
|
-
},
|
|
5867
|
-
{
|
|
5868
|
-
"type": "integer"
|
|
5869
|
-
},
|
|
5870
|
-
{
|
|
5871
|
-
"type": "boolean"
|
|
5872
|
-
},
|
|
5873
|
-
{
|
|
5874
|
-
"type": "array",
|
|
5875
|
-
"items": {}
|
|
5876
|
-
},
|
|
5877
|
-
{
|
|
5878
|
-
"type": "object",
|
|
5879
|
-
"additionalProperties": {}
|
|
5880
|
-
}
|
|
5881
|
-
]
|
|
5882
|
-
}
|
|
5656
|
+
"additionalProperties": true
|
|
5883
5657
|
}
|
|
5884
5658
|
},
|
|
5885
5659
|
"Options_SetPostProxyParam": {
|
|
@@ -5890,30 +5664,7 @@
|
|
|
5890
5664
|
"explode": true,
|
|
5891
5665
|
"schema": {
|
|
5892
5666
|
"type": "object",
|
|
5893
|
-
"additionalProperties":
|
|
5894
|
-
"oneOf": [
|
|
5895
|
-
{
|
|
5896
|
-
"type": "string"
|
|
5897
|
-
},
|
|
5898
|
-
{
|
|
5899
|
-
"type": "number"
|
|
5900
|
-
},
|
|
5901
|
-
{
|
|
5902
|
-
"type": "integer"
|
|
5903
|
-
},
|
|
5904
|
-
{
|
|
5905
|
-
"type": "boolean"
|
|
5906
|
-
},
|
|
5907
|
-
{
|
|
5908
|
-
"type": "array",
|
|
5909
|
-
"items": {}
|
|
5910
|
-
},
|
|
5911
|
-
{
|
|
5912
|
-
"type": "object",
|
|
5913
|
-
"additionalProperties": {}
|
|
5914
|
-
}
|
|
5915
|
-
]
|
|
5916
|
-
}
|
|
5667
|
+
"additionalProperties": true
|
|
5917
5668
|
}
|
|
5918
5669
|
},
|
|
5919
5670
|
"Options_SetPostRcParam": {
|
|
@@ -5924,30 +5675,7 @@
|
|
|
5924
5675
|
"explode": true,
|
|
5925
5676
|
"schema": {
|
|
5926
5677
|
"type": "object",
|
|
5927
|
-
"additionalProperties":
|
|
5928
|
-
"oneOf": [
|
|
5929
|
-
{
|
|
5930
|
-
"type": "string"
|
|
5931
|
-
},
|
|
5932
|
-
{
|
|
5933
|
-
"type": "number"
|
|
5934
|
-
},
|
|
5935
|
-
{
|
|
5936
|
-
"type": "integer"
|
|
5937
|
-
},
|
|
5938
|
-
{
|
|
5939
|
-
"type": "boolean"
|
|
5940
|
-
},
|
|
5941
|
-
{
|
|
5942
|
-
"type": "array",
|
|
5943
|
-
"items": {}
|
|
5944
|
-
},
|
|
5945
|
-
{
|
|
5946
|
-
"type": "object",
|
|
5947
|
-
"additionalProperties": {}
|
|
5948
|
-
}
|
|
5949
|
-
]
|
|
5950
|
-
}
|
|
5678
|
+
"additionalProperties": true
|
|
5951
5679
|
}
|
|
5952
5680
|
},
|
|
5953
5681
|
"Options_SetPostResticParam": {
|
|
@@ -5958,30 +5686,7 @@
|
|
|
5958
5686
|
"explode": true,
|
|
5959
5687
|
"schema": {
|
|
5960
5688
|
"type": "object",
|
|
5961
|
-
"additionalProperties":
|
|
5962
|
-
"oneOf": [
|
|
5963
|
-
{
|
|
5964
|
-
"type": "string"
|
|
5965
|
-
},
|
|
5966
|
-
{
|
|
5967
|
-
"type": "number"
|
|
5968
|
-
},
|
|
5969
|
-
{
|
|
5970
|
-
"type": "integer"
|
|
5971
|
-
},
|
|
5972
|
-
{
|
|
5973
|
-
"type": "boolean"
|
|
5974
|
-
},
|
|
5975
|
-
{
|
|
5976
|
-
"type": "array",
|
|
5977
|
-
"items": {}
|
|
5978
|
-
},
|
|
5979
|
-
{
|
|
5980
|
-
"type": "object",
|
|
5981
|
-
"additionalProperties": {}
|
|
5982
|
-
}
|
|
5983
|
-
]
|
|
5984
|
-
}
|
|
5689
|
+
"additionalProperties": true
|
|
5985
5690
|
}
|
|
5986
5691
|
},
|
|
5987
5692
|
"Options_SetPostS3Param": {
|
|
@@ -5992,30 +5697,7 @@
|
|
|
5992
5697
|
"explode": true,
|
|
5993
5698
|
"schema": {
|
|
5994
5699
|
"type": "object",
|
|
5995
|
-
"additionalProperties":
|
|
5996
|
-
"oneOf": [
|
|
5997
|
-
{
|
|
5998
|
-
"type": "string"
|
|
5999
|
-
},
|
|
6000
|
-
{
|
|
6001
|
-
"type": "number"
|
|
6002
|
-
},
|
|
6003
|
-
{
|
|
6004
|
-
"type": "integer"
|
|
6005
|
-
},
|
|
6006
|
-
{
|
|
6007
|
-
"type": "boolean"
|
|
6008
|
-
},
|
|
6009
|
-
{
|
|
6010
|
-
"type": "array",
|
|
6011
|
-
"items": {}
|
|
6012
|
-
},
|
|
6013
|
-
{
|
|
6014
|
-
"type": "object",
|
|
6015
|
-
"additionalProperties": {}
|
|
6016
|
-
}
|
|
6017
|
-
]
|
|
6018
|
-
}
|
|
5700
|
+
"additionalProperties": true
|
|
6019
5701
|
}
|
|
6020
5702
|
},
|
|
6021
5703
|
"Options_SetPostSftpParam": {
|
|
@@ -6026,30 +5708,7 @@
|
|
|
6026
5708
|
"explode": true,
|
|
6027
5709
|
"schema": {
|
|
6028
5710
|
"type": "object",
|
|
6029
|
-
"additionalProperties":
|
|
6030
|
-
"oneOf": [
|
|
6031
|
-
{
|
|
6032
|
-
"type": "string"
|
|
6033
|
-
},
|
|
6034
|
-
{
|
|
6035
|
-
"type": "number"
|
|
6036
|
-
},
|
|
6037
|
-
{
|
|
6038
|
-
"type": "integer"
|
|
6039
|
-
},
|
|
6040
|
-
{
|
|
6041
|
-
"type": "boolean"
|
|
6042
|
-
},
|
|
6043
|
-
{
|
|
6044
|
-
"type": "array",
|
|
6045
|
-
"items": {}
|
|
6046
|
-
},
|
|
6047
|
-
{
|
|
6048
|
-
"type": "object",
|
|
6049
|
-
"additionalProperties": {}
|
|
6050
|
-
}
|
|
6051
|
-
]
|
|
6052
|
-
}
|
|
5711
|
+
"additionalProperties": true
|
|
6053
5712
|
}
|
|
6054
5713
|
},
|
|
6055
5714
|
"Options_SetPostVfsParam": {
|
|
@@ -6060,30 +5719,7 @@
|
|
|
6060
5719
|
"explode": true,
|
|
6061
5720
|
"schema": {
|
|
6062
5721
|
"type": "object",
|
|
6063
|
-
"additionalProperties":
|
|
6064
|
-
"oneOf": [
|
|
6065
|
-
{
|
|
6066
|
-
"type": "string"
|
|
6067
|
-
},
|
|
6068
|
-
{
|
|
6069
|
-
"type": "number"
|
|
6070
|
-
},
|
|
6071
|
-
{
|
|
6072
|
-
"type": "integer"
|
|
6073
|
-
},
|
|
6074
|
-
{
|
|
6075
|
-
"type": "boolean"
|
|
6076
|
-
},
|
|
6077
|
-
{
|
|
6078
|
-
"type": "array",
|
|
6079
|
-
"items": {}
|
|
6080
|
-
},
|
|
6081
|
-
{
|
|
6082
|
-
"type": "object",
|
|
6083
|
-
"additionalProperties": {}
|
|
6084
|
-
}
|
|
6085
|
-
]
|
|
6086
|
-
}
|
|
5722
|
+
"additionalProperties": true
|
|
6087
5723
|
}
|
|
6088
5724
|
},
|
|
6089
5725
|
"Options_SetPostWebdavParam": {
|
|
@@ -6094,30 +5730,7 @@
|
|
|
6094
5730
|
"explode": true,
|
|
6095
5731
|
"schema": {
|
|
6096
5732
|
"type": "object",
|
|
6097
|
-
"additionalProperties":
|
|
6098
|
-
"oneOf": [
|
|
6099
|
-
{
|
|
6100
|
-
"type": "string"
|
|
6101
|
-
},
|
|
6102
|
-
{
|
|
6103
|
-
"type": "number"
|
|
6104
|
-
},
|
|
6105
|
-
{
|
|
6106
|
-
"type": "integer"
|
|
6107
|
-
},
|
|
6108
|
-
{
|
|
6109
|
-
"type": "boolean"
|
|
6110
|
-
},
|
|
6111
|
-
{
|
|
6112
|
-
"type": "array",
|
|
6113
|
-
"items": {}
|
|
6114
|
-
},
|
|
6115
|
-
{
|
|
6116
|
-
"type": "object",
|
|
6117
|
-
"additionalProperties": {}
|
|
6118
|
-
}
|
|
6119
|
-
]
|
|
6120
|
-
}
|
|
5733
|
+
"additionalProperties": true
|
|
6121
5734
|
}
|
|
6122
5735
|
},
|
|
6123
5736
|
"Serve_StartPostTypeParam": {
|
|
@@ -6126,8 +5739,7 @@
|
|
|
6126
5739
|
"description": "Type of server to start (e.g. `http`, `webdav`, `ftp`, `sftp`).",
|
|
6127
5740
|
"schema": {
|
|
6128
5741
|
"type": "string"
|
|
6129
|
-
}
|
|
6130
|
-
"required": true
|
|
5742
|
+
}
|
|
6131
5743
|
},
|
|
6132
5744
|
"Serve_StartPostFsParam": {
|
|
6133
5745
|
"name": "fs",
|
|
@@ -6135,8 +5747,7 @@
|
|
|
6135
5747
|
"description": "Remote path that will be served.",
|
|
6136
5748
|
"schema": {
|
|
6137
5749
|
"type": "string"
|
|
6138
|
-
}
|
|
6139
|
-
"required": true
|
|
5750
|
+
}
|
|
6140
5751
|
},
|
|
6141
5752
|
"Serve_StartPostAddrParam": {
|
|
6142
5753
|
"name": "addr",
|
|
@@ -6144,8 +5755,7 @@
|
|
|
6144
5755
|
"description": "Address and port to bind the server to, such as `:5572` or `localhost:8080`.",
|
|
6145
5756
|
"schema": {
|
|
6146
5757
|
"type": "string"
|
|
6147
|
-
}
|
|
6148
|
-
"required": true
|
|
5758
|
+
}
|
|
6149
5759
|
},
|
|
6150
5760
|
"Serve_StartPostAdditionalParam": {
|
|
6151
5761
|
"name": "params",
|
|
@@ -6164,8 +5774,7 @@
|
|
|
6164
5774
|
"description": "Identifier of the running serve instance returned by `serve/start`.",
|
|
6165
5775
|
"schema": {
|
|
6166
5776
|
"type": "string"
|
|
6167
|
-
}
|
|
6168
|
-
"required": true
|
|
5777
|
+
}
|
|
6169
5778
|
},
|
|
6170
5779
|
"Vfs_ForgetPostFsParam": {
|
|
6171
5780
|
"name": "fs",
|
|
@@ -6240,8 +5849,7 @@
|
|
|
6240
5849
|
"description": "Queue item ID as returned by `vfs/queue`.",
|
|
6241
5850
|
"schema": {
|
|
6242
5851
|
"type": "integer"
|
|
6243
|
-
}
|
|
6244
|
-
"required": true
|
|
5852
|
+
}
|
|
6245
5853
|
},
|
|
6246
5854
|
"Vfs_QueueSetExpiryPostExpiryParam": {
|
|
6247
5855
|
"name": "expiry",
|
|
@@ -6249,8 +5857,7 @@
|
|
|
6249
5857
|
"description": "New eligibility time in seconds (may be negative for immediate upload).",
|
|
6250
5858
|
"schema": {
|
|
6251
5859
|
"type": "number"
|
|
6252
|
-
}
|
|
6253
|
-
"required": true
|
|
5860
|
+
}
|
|
6254
5861
|
},
|
|
6255
5862
|
"Vfs_QueueSetExpiryPostRelativeParam": {
|
|
6256
5863
|
"name": "relative",
|
|
@@ -6301,8 +5908,7 @@
|
|
|
6301
5908
|
"description": "Repository URL of the plugin to install.",
|
|
6302
5909
|
"schema": {
|
|
6303
5910
|
"type": "string"
|
|
6304
|
-
}
|
|
6305
|
-
"required": true
|
|
5911
|
+
}
|
|
6306
5912
|
},
|
|
6307
5913
|
"Pluginsctl_GetPluginsForTypePostTypeParam": {
|
|
6308
5914
|
"name": "type",
|
|
@@ -6326,8 +5932,7 @@
|
|
|
6326
5932
|
"description": "Name of the plugin to uninstall.",
|
|
6327
5933
|
"schema": {
|
|
6328
5934
|
"type": "string"
|
|
6329
|
-
}
|
|
6330
|
-
"required": true
|
|
5935
|
+
}
|
|
6331
5936
|
},
|
|
6332
5937
|
"Pluginsctl_RemoveTestPluginPostNameParam": {
|
|
6333
5938
|
"name": "name",
|
|
@@ -6335,8 +5940,7 @@
|
|
|
6335
5940
|
"description": "Name of the test plugin to uninstall.",
|
|
6336
5941
|
"schema": {
|
|
6337
5942
|
"type": "string"
|
|
6338
|
-
}
|
|
6339
|
-
"required": true
|
|
5943
|
+
}
|
|
6340
5944
|
}
|
|
6341
5945
|
},
|
|
6342
5946
|
"responses": {
|
|
@@ -6383,11 +5987,38 @@
|
|
|
6383
5987
|
"application/json": {
|
|
6384
5988
|
"schema": {
|
|
6385
5989
|
"type": "object",
|
|
5990
|
+
"properties": {
|
|
5991
|
+
"jobid": {
|
|
5992
|
+
"type": "integer",
|
|
5993
|
+
"description": "Job ID returned when _async=true."
|
|
5994
|
+
}
|
|
5995
|
+
},
|
|
6386
5996
|
"additionalProperties": true
|
|
6387
5997
|
}
|
|
6388
5998
|
}
|
|
6389
5999
|
}
|
|
6390
6000
|
},
|
|
6001
|
+
"ServeTypesResponse": {
|
|
6002
|
+
"description": "Supported rclone serve protocols.",
|
|
6003
|
+
"content": {
|
|
6004
|
+
"application/json": {
|
|
6005
|
+
"schema": {
|
|
6006
|
+
"type": "object",
|
|
6007
|
+
"properties": {
|
|
6008
|
+
"types": {
|
|
6009
|
+
"type": "array",
|
|
6010
|
+
"items": {
|
|
6011
|
+
"type": "string"
|
|
6012
|
+
}
|
|
6013
|
+
}
|
|
6014
|
+
},
|
|
6015
|
+
"required": [
|
|
6016
|
+
"types"
|
|
6017
|
+
]
|
|
6018
|
+
}
|
|
6019
|
+
}
|
|
6020
|
+
}
|
|
6021
|
+
},
|
|
6391
6022
|
"SyncJobResponse": {
|
|
6392
6023
|
"description": "Response for sync operations, containing job ID if async.",
|
|
6393
6024
|
"content": {
|
|
@@ -6616,6 +6247,28 @@
|
|
|
6616
6247
|
}
|
|
6617
6248
|
}
|
|
6618
6249
|
},
|
|
6250
|
+
"CoreDisksResponse": {
|
|
6251
|
+
"description": "Locally accessible paths including mount points, user directories, and removable volumes.",
|
|
6252
|
+
"content": {
|
|
6253
|
+
"application/json": {
|
|
6254
|
+
"schema": {
|
|
6255
|
+
"type": "object",
|
|
6256
|
+
"properties": {
|
|
6257
|
+
"disks": {
|
|
6258
|
+
"type": "array",
|
|
6259
|
+
"items": {
|
|
6260
|
+
"type": "string"
|
|
6261
|
+
},
|
|
6262
|
+
"description": "Accessible local paths such as disk mount points, user home folders, and removable volumes."
|
|
6263
|
+
}
|
|
6264
|
+
},
|
|
6265
|
+
"required": [
|
|
6266
|
+
"disks"
|
|
6267
|
+
]
|
|
6268
|
+
}
|
|
6269
|
+
}
|
|
6270
|
+
}
|
|
6271
|
+
},
|
|
6619
6272
|
"CoreDuResponse": {
|
|
6620
6273
|
"description": "Disk usage summary for the requested directory.",
|
|
6621
6274
|
"content": {
|
|
@@ -6958,21 +6611,16 @@
|
|
|
6958
6611
|
"schema": {
|
|
6959
6612
|
"type": "object",
|
|
6960
6613
|
"required": [
|
|
6961
|
-
"name",
|
|
6962
6614
|
"type"
|
|
6963
6615
|
],
|
|
6964
6616
|
"properties": {
|
|
6965
|
-
"name": {
|
|
6966
|
-
"type": "string"
|
|
6967
|
-
},
|
|
6968
6617
|
"type": {
|
|
6969
6618
|
"type": "string"
|
|
6970
|
-
},
|
|
6971
|
-
"provider": {
|
|
6972
|
-
"type": "string"
|
|
6973
6619
|
}
|
|
6974
6620
|
},
|
|
6975
|
-
"additionalProperties":
|
|
6621
|
+
"additionalProperties": {
|
|
6622
|
+
"type": "string"
|
|
6623
|
+
}
|
|
6976
6624
|
}
|
|
6977
6625
|
}
|
|
6978
6626
|
}
|
|
@@ -9268,6 +8916,22 @@
|
|
|
9268
8916
|
"speedAvg": {
|
|
9269
8917
|
"type": "number",
|
|
9270
8918
|
"description": "Current speed in bytes per second as an exponentially weighted moving average."
|
|
8919
|
+
},
|
|
8920
|
+
"srcFs": {
|
|
8921
|
+
"type": "string",
|
|
8922
|
+
"description": "Source remote or filesystem for this transfer."
|
|
8923
|
+
},
|
|
8924
|
+
"dstFs": {
|
|
8925
|
+
"type": "string",
|
|
8926
|
+
"description": "Destination remote or filesystem for this transfer."
|
|
8927
|
+
},
|
|
8928
|
+
"srcRemote": {
|
|
8929
|
+
"type": "string",
|
|
8930
|
+
"description": "Source path within srcFs."
|
|
8931
|
+
},
|
|
8932
|
+
"dstRemote": {
|
|
8933
|
+
"type": "string",
|
|
8934
|
+
"description": "Destination path within dstFs."
|
|
9271
8935
|
}
|
|
9272
8936
|
},
|
|
9273
8937
|
"additionalProperties": true
|
|
@@ -9294,16 +8958,12 @@
|
|
|
9294
8958
|
"RcNoopRequest": {
|
|
9295
8959
|
"type": "object",
|
|
9296
8960
|
"properties": {
|
|
9297
|
-
"params": {
|
|
9298
|
-
"type": "object",
|
|
9299
|
-
"additionalProperties": true,
|
|
9300
|
-
"description": "Additional arbitrary parameters allowed."
|
|
9301
|
-
},
|
|
9302
8961
|
"_async": {
|
|
9303
8962
|
"type": "boolean",
|
|
9304
8963
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9305
8964
|
}
|
|
9306
|
-
}
|
|
8965
|
+
},
|
|
8966
|
+
"additionalProperties": true
|
|
9307
8967
|
},
|
|
9308
8968
|
"OperationsCleanupRequest": {
|
|
9309
8969
|
"type": "object",
|
|
@@ -9319,11 +8979,8 @@
|
|
|
9319
8979
|
"_async": {
|
|
9320
8980
|
"type": "boolean",
|
|
9321
8981
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9322
|
-
}
|
|
9323
|
-
}
|
|
9324
|
-
"required": [
|
|
9325
|
-
"fs"
|
|
9326
|
-
]
|
|
8982
|
+
}
|
|
8983
|
+
}
|
|
9327
8984
|
},
|
|
9328
8985
|
"OperationsCopyfileRequest": {
|
|
9329
8986
|
"type": "object",
|
|
@@ -9352,13 +9009,7 @@
|
|
|
9352
9009
|
"type": "boolean",
|
|
9353
9010
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9354
9011
|
}
|
|
9355
|
-
}
|
|
9356
|
-
"required": [
|
|
9357
|
-
"srcFs",
|
|
9358
|
-
"srcRemote",
|
|
9359
|
-
"dstFs",
|
|
9360
|
-
"dstRemote"
|
|
9361
|
-
]
|
|
9012
|
+
}
|
|
9362
9013
|
},
|
|
9363
9014
|
"OperationsCopyurlRequest": {
|
|
9364
9015
|
"type": "object",
|
|
@@ -9387,12 +9038,7 @@
|
|
|
9387
9038
|
"type": "boolean",
|
|
9388
9039
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9389
9040
|
}
|
|
9390
|
-
}
|
|
9391
|
-
"required": [
|
|
9392
|
-
"fs",
|
|
9393
|
-
"remote",
|
|
9394
|
-
"url"
|
|
9395
|
-
]
|
|
9041
|
+
}
|
|
9396
9042
|
},
|
|
9397
9043
|
"OperationsDeleteRequest": {
|
|
9398
9044
|
"type": "object",
|
|
@@ -9417,10 +9063,7 @@
|
|
|
9417
9063
|
"type": "boolean",
|
|
9418
9064
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9419
9065
|
}
|
|
9420
|
-
}
|
|
9421
|
-
"required": [
|
|
9422
|
-
"fs"
|
|
9423
|
-
]
|
|
9066
|
+
}
|
|
9424
9067
|
},
|
|
9425
9068
|
"OperationsDeletefileRequest": {
|
|
9426
9069
|
"type": "object",
|
|
@@ -9441,11 +9084,7 @@
|
|
|
9441
9084
|
"type": "boolean",
|
|
9442
9085
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9443
9086
|
}
|
|
9444
|
-
}
|
|
9445
|
-
"required": [
|
|
9446
|
-
"fs",
|
|
9447
|
-
"remote"
|
|
9448
|
-
]
|
|
9087
|
+
}
|
|
9449
9088
|
},
|
|
9450
9089
|
"OperationsFsinfoRequest": {
|
|
9451
9090
|
"type": "object",
|
|
@@ -9462,10 +9101,7 @@
|
|
|
9462
9101
|
"type": "boolean",
|
|
9463
9102
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9464
9103
|
}
|
|
9465
|
-
}
|
|
9466
|
-
"required": [
|
|
9467
|
-
"fs"
|
|
9468
|
-
]
|
|
9104
|
+
}
|
|
9469
9105
|
},
|
|
9470
9106
|
"OperationsHashsumRequest": {
|
|
9471
9107
|
"type": "object",
|
|
@@ -9494,11 +9130,7 @@
|
|
|
9494
9130
|
"type": "boolean",
|
|
9495
9131
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9496
9132
|
}
|
|
9497
|
-
}
|
|
9498
|
-
"required": [
|
|
9499
|
-
"fs",
|
|
9500
|
-
"hashType"
|
|
9501
|
-
]
|
|
9133
|
+
}
|
|
9502
9134
|
},
|
|
9503
9135
|
"OperationsHashsumfileRequest": {
|
|
9504
9136
|
"type": "object",
|
|
@@ -9531,12 +9163,7 @@
|
|
|
9531
9163
|
"type": "boolean",
|
|
9532
9164
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9533
9165
|
}
|
|
9534
|
-
}
|
|
9535
|
-
"required": [
|
|
9536
|
-
"fs",
|
|
9537
|
-
"remote",
|
|
9538
|
-
"hashType"
|
|
9539
|
-
]
|
|
9166
|
+
}
|
|
9540
9167
|
},
|
|
9541
9168
|
"OperationsMovefileRequest": {
|
|
9542
9169
|
"type": "object",
|
|
@@ -9565,13 +9192,7 @@
|
|
|
9565
9192
|
"type": "boolean",
|
|
9566
9193
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9567
9194
|
}
|
|
9568
|
-
}
|
|
9569
|
-
"required": [
|
|
9570
|
-
"srcFs",
|
|
9571
|
-
"srcRemote",
|
|
9572
|
-
"dstFs",
|
|
9573
|
-
"dstRemote"
|
|
9574
|
-
]
|
|
9195
|
+
}
|
|
9575
9196
|
},
|
|
9576
9197
|
"OperationsPubliclinkRequest": {
|
|
9577
9198
|
"type": "object",
|
|
@@ -9600,11 +9221,7 @@
|
|
|
9600
9221
|
"type": "boolean",
|
|
9601
9222
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9602
9223
|
}
|
|
9603
|
-
}
|
|
9604
|
-
"required": [
|
|
9605
|
-
"fs",
|
|
9606
|
-
"remote"
|
|
9607
|
-
]
|
|
9224
|
+
}
|
|
9608
9225
|
},
|
|
9609
9226
|
"OperationsRmdirsRequest": {
|
|
9610
9227
|
"type": "object",
|
|
@@ -9629,11 +9246,7 @@
|
|
|
9629
9246
|
"type": "boolean",
|
|
9630
9247
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9631
9248
|
}
|
|
9632
|
-
}
|
|
9633
|
-
"required": [
|
|
9634
|
-
"fs",
|
|
9635
|
-
"remote"
|
|
9636
|
-
]
|
|
9249
|
+
}
|
|
9637
9250
|
},
|
|
9638
9251
|
"OperationsSettierRequest": {
|
|
9639
9252
|
"type": "object",
|
|
@@ -9650,10 +9263,7 @@
|
|
|
9650
9263
|
"type": "boolean",
|
|
9651
9264
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9652
9265
|
}
|
|
9653
|
-
}
|
|
9654
|
-
"required": [
|
|
9655
|
-
"fs"
|
|
9656
|
-
]
|
|
9266
|
+
}
|
|
9657
9267
|
},
|
|
9658
9268
|
"OperationsSettierfileRequest": {
|
|
9659
9269
|
"type": "object",
|
|
@@ -9674,11 +9284,7 @@
|
|
|
9674
9284
|
"type": "boolean",
|
|
9675
9285
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9676
9286
|
}
|
|
9677
|
-
}
|
|
9678
|
-
"required": [
|
|
9679
|
-
"fs",
|
|
9680
|
-
"remote"
|
|
9681
|
-
]
|
|
9287
|
+
}
|
|
9682
9288
|
},
|
|
9683
9289
|
"OperationsSizeRequest": {
|
|
9684
9290
|
"type": "object",
|
|
@@ -9695,10 +9301,7 @@
|
|
|
9695
9301
|
"type": "boolean",
|
|
9696
9302
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9697
9303
|
}
|
|
9698
|
-
}
|
|
9699
|
-
"required": [
|
|
9700
|
-
"fs"
|
|
9701
|
-
]
|
|
9304
|
+
}
|
|
9702
9305
|
},
|
|
9703
9306
|
"CoreBwlimitRequest": {
|
|
9704
9307
|
"type": "object",
|
|
@@ -9747,10 +9350,7 @@
|
|
|
9747
9350
|
"type": "boolean",
|
|
9748
9351
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9749
9352
|
}
|
|
9750
|
-
}
|
|
9751
|
-
"required": [
|
|
9752
|
-
"command"
|
|
9753
|
-
]
|
|
9353
|
+
}
|
|
9754
9354
|
},
|
|
9755
9355
|
"CoreDuRequest": {
|
|
9756
9356
|
"type": "object",
|
|
@@ -9823,10 +9423,7 @@
|
|
|
9823
9423
|
"type": "boolean",
|
|
9824
9424
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9825
9425
|
}
|
|
9826
|
-
}
|
|
9827
|
-
"required": [
|
|
9828
|
-
"clear"
|
|
9829
|
-
]
|
|
9426
|
+
}
|
|
9830
9427
|
},
|
|
9831
9428
|
"CorePidRequest": {
|
|
9832
9429
|
"type": "object",
|
|
@@ -9873,10 +9470,7 @@
|
|
|
9873
9470
|
"type": "boolean",
|
|
9874
9471
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9875
9472
|
}
|
|
9876
|
-
}
|
|
9877
|
-
"required": [
|
|
9878
|
-
"group"
|
|
9879
|
-
]
|
|
9473
|
+
}
|
|
9880
9474
|
},
|
|
9881
9475
|
"CoreStatsResetRequest": {
|
|
9882
9476
|
"type": "object",
|
|
@@ -9927,10 +9521,7 @@
|
|
|
9927
9521
|
"type": "boolean",
|
|
9928
9522
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9929
9523
|
}
|
|
9930
|
-
}
|
|
9931
|
-
"required": [
|
|
9932
|
-
"rate"
|
|
9933
|
-
]
|
|
9524
|
+
}
|
|
9934
9525
|
},
|
|
9935
9526
|
"DebugSetGcPercentRequest": {
|
|
9936
9527
|
"type": "object",
|
|
@@ -9947,10 +9538,7 @@
|
|
|
9947
9538
|
"type": "boolean",
|
|
9948
9539
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9949
9540
|
}
|
|
9950
|
-
}
|
|
9951
|
-
"required": [
|
|
9952
|
-
"gc-percent"
|
|
9953
|
-
]
|
|
9541
|
+
}
|
|
9954
9542
|
},
|
|
9955
9543
|
"DebugSetMutexProfileFractionRequest": {
|
|
9956
9544
|
"type": "object",
|
|
@@ -9967,10 +9555,7 @@
|
|
|
9967
9555
|
"type": "boolean",
|
|
9968
9556
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9969
9557
|
}
|
|
9970
|
-
}
|
|
9971
|
-
"required": [
|
|
9972
|
-
"rate"
|
|
9973
|
-
]
|
|
9558
|
+
}
|
|
9974
9559
|
},
|
|
9975
9560
|
"DebugSetSoftMemoryLimitRequest": {
|
|
9976
9561
|
"type": "object",
|
|
@@ -9987,10 +9572,7 @@
|
|
|
9987
9572
|
"type": "boolean",
|
|
9988
9573
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
9989
9574
|
}
|
|
9990
|
-
}
|
|
9991
|
-
"required": [
|
|
9992
|
-
"mem-limit"
|
|
9993
|
-
]
|
|
9575
|
+
}
|
|
9994
9576
|
},
|
|
9995
9577
|
"FscacheClearRequest": {
|
|
9996
9578
|
"type": "object",
|
|
@@ -10070,11 +9652,7 @@
|
|
|
10070
9652
|
"type": "boolean",
|
|
10071
9653
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10072
9654
|
}
|
|
10073
|
-
}
|
|
10074
|
-
"required": [
|
|
10075
|
-
"fs",
|
|
10076
|
-
"mountPoint"
|
|
10077
|
-
]
|
|
9655
|
+
}
|
|
10078
9656
|
},
|
|
10079
9657
|
"MountTypesRequest": {
|
|
10080
9658
|
"type": "object",
|
|
@@ -10104,10 +9682,7 @@
|
|
|
10104
9682
|
"type": "boolean",
|
|
10105
9683
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10106
9684
|
}
|
|
10107
|
-
}
|
|
10108
|
-
"required": [
|
|
10109
|
-
"mountPoint"
|
|
10110
|
-
]
|
|
9685
|
+
}
|
|
10111
9686
|
},
|
|
10112
9687
|
"MountUnmountallRequest": {
|
|
10113
9688
|
"type": "object",
|
|
@@ -10125,30 +9700,22 @@
|
|
|
10125
9700
|
"RcNoopAuthRequest": {
|
|
10126
9701
|
"type": "object",
|
|
10127
9702
|
"properties": {
|
|
10128
|
-
"params": {
|
|
10129
|
-
"type": "object",
|
|
10130
|
-
"additionalProperties": true,
|
|
10131
|
-
"description": "Additional arbitrary parameters allowed."
|
|
10132
|
-
},
|
|
10133
9703
|
"_async": {
|
|
10134
9704
|
"type": "boolean",
|
|
10135
9705
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10136
9706
|
}
|
|
10137
|
-
}
|
|
9707
|
+
},
|
|
9708
|
+
"additionalProperties": true
|
|
10138
9709
|
},
|
|
10139
9710
|
"RcErrorRequest": {
|
|
10140
9711
|
"type": "object",
|
|
10141
9712
|
"properties": {
|
|
10142
|
-
"params": {
|
|
10143
|
-
"type": "object",
|
|
10144
|
-
"additionalProperties": true,
|
|
10145
|
-
"description": "Additional arbitrary parameters allowed."
|
|
10146
|
-
},
|
|
10147
9713
|
"_async": {
|
|
10148
9714
|
"type": "boolean",
|
|
10149
9715
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10150
9716
|
}
|
|
10151
|
-
}
|
|
9717
|
+
},
|
|
9718
|
+
"additionalProperties": true
|
|
10152
9719
|
},
|
|
10153
9720
|
"RcListRequest": {
|
|
10154
9721
|
"type": "object",
|
|
@@ -10193,10 +9760,7 @@
|
|
|
10193
9760
|
"type": "boolean",
|
|
10194
9761
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10195
9762
|
}
|
|
10196
|
-
}
|
|
10197
|
-
"required": [
|
|
10198
|
-
"command"
|
|
10199
|
-
]
|
|
9763
|
+
}
|
|
10200
9764
|
},
|
|
10201
9765
|
"CacheExpireRequest": {
|
|
10202
9766
|
"type": "object",
|
|
@@ -10217,10 +9781,7 @@
|
|
|
10217
9781
|
"type": "boolean",
|
|
10218
9782
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10219
9783
|
}
|
|
10220
|
-
}
|
|
10221
|
-
"required": [
|
|
10222
|
-
"remote"
|
|
10223
|
-
]
|
|
9784
|
+
}
|
|
10224
9785
|
},
|
|
10225
9786
|
"CacheFetchRequest": {
|
|
10226
9787
|
"type": "object",
|
|
@@ -10229,11 +9790,6 @@
|
|
|
10229
9790
|
"type": "string",
|
|
10230
9791
|
"description": "Comma-separated chunk specifier list (e.g. `0:10,25:30`) describing file pieces to prefetch."
|
|
10231
9792
|
},
|
|
10232
|
-
"params": {
|
|
10233
|
-
"type": "object",
|
|
10234
|
-
"additionalProperties": true,
|
|
10235
|
-
"description": "Additional arbitrary parameters allowed."
|
|
10236
|
-
},
|
|
10237
9793
|
"_group": {
|
|
10238
9794
|
"type": "string",
|
|
10239
9795
|
"description": "Assign the request to a custom stats group."
|
|
@@ -10242,7 +9798,8 @@
|
|
|
10242
9798
|
"type": "boolean",
|
|
10243
9799
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10244
9800
|
}
|
|
10245
|
-
}
|
|
9801
|
+
},
|
|
9802
|
+
"additionalProperties": true
|
|
10246
9803
|
},
|
|
10247
9804
|
"CacheStatsRequest": {
|
|
10248
9805
|
"type": "object",
|
|
@@ -10284,12 +9841,7 @@
|
|
|
10284
9841
|
"type": "boolean",
|
|
10285
9842
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10286
9843
|
}
|
|
10287
|
-
}
|
|
10288
|
-
"required": [
|
|
10289
|
-
"name",
|
|
10290
|
-
"parameters",
|
|
10291
|
-
"type"
|
|
10292
|
-
]
|
|
9844
|
+
}
|
|
10293
9845
|
},
|
|
10294
9846
|
"ConfigDeleteRequest": {
|
|
10295
9847
|
"type": "object",
|
|
@@ -10306,10 +9858,7 @@
|
|
|
10306
9858
|
"type": "boolean",
|
|
10307
9859
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10308
9860
|
}
|
|
10309
|
-
}
|
|
10310
|
-
"required": [
|
|
10311
|
-
"name"
|
|
10312
|
-
]
|
|
9861
|
+
}
|
|
10313
9862
|
},
|
|
10314
9863
|
"ConfigDumpRequest": {
|
|
10315
9864
|
"type": "object",
|
|
@@ -10339,10 +9888,7 @@
|
|
|
10339
9888
|
"type": "boolean",
|
|
10340
9889
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10341
9890
|
}
|
|
10342
|
-
}
|
|
10343
|
-
"required": [
|
|
10344
|
-
"name"
|
|
10345
|
-
]
|
|
9891
|
+
}
|
|
10346
9892
|
},
|
|
10347
9893
|
"ConfigListremotesRequest": {
|
|
10348
9894
|
"type": "object",
|
|
@@ -10376,11 +9922,7 @@
|
|
|
10376
9922
|
"type": "boolean",
|
|
10377
9923
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10378
9924
|
}
|
|
10379
|
-
}
|
|
10380
|
-
"required": [
|
|
10381
|
-
"name",
|
|
10382
|
-
"parameters"
|
|
10383
|
-
]
|
|
9925
|
+
}
|
|
10384
9926
|
},
|
|
10385
9927
|
"ConfigPathsRequest": {
|
|
10386
9928
|
"type": "object",
|
|
@@ -10423,10 +9965,7 @@
|
|
|
10423
9965
|
"type": "boolean",
|
|
10424
9966
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10425
9967
|
}
|
|
10426
|
-
}
|
|
10427
|
-
"required": [
|
|
10428
|
-
"path"
|
|
10429
|
-
]
|
|
9968
|
+
}
|
|
10430
9969
|
},
|
|
10431
9970
|
"ConfigUnlockRequest": {
|
|
10432
9971
|
"type": "object",
|
|
@@ -10443,10 +9982,7 @@
|
|
|
10443
9982
|
"type": "boolean",
|
|
10444
9983
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10445
9984
|
}
|
|
10446
|
-
}
|
|
10447
|
-
"required": [
|
|
10448
|
-
"configPassword"
|
|
10449
|
-
]
|
|
9985
|
+
}
|
|
10450
9986
|
},
|
|
10451
9987
|
"ConfigUpdateRequest": {
|
|
10452
9988
|
"type": "object",
|
|
@@ -10471,11 +10007,7 @@
|
|
|
10471
10007
|
"type": "boolean",
|
|
10472
10008
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10473
10009
|
}
|
|
10474
|
-
}
|
|
10475
|
-
"required": [
|
|
10476
|
-
"name",
|
|
10477
|
-
"parameters"
|
|
10478
|
-
]
|
|
10010
|
+
}
|
|
10479
10011
|
},
|
|
10480
10012
|
"CoreVersionRequest": {
|
|
10481
10013
|
"type": "object",
|
|
@@ -10531,10 +10063,7 @@
|
|
|
10531
10063
|
"type": "boolean",
|
|
10532
10064
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10533
10065
|
}
|
|
10534
|
-
}
|
|
10535
|
-
"required": [
|
|
10536
|
-
"jobid"
|
|
10537
|
-
]
|
|
10066
|
+
}
|
|
10538
10067
|
},
|
|
10539
10068
|
"JobStopRequest": {
|
|
10540
10069
|
"type": "object",
|
|
@@ -10547,10 +10076,7 @@
|
|
|
10547
10076
|
"type": "boolean",
|
|
10548
10077
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10549
10078
|
}
|
|
10550
|
-
}
|
|
10551
|
-
"required": [
|
|
10552
|
-
"jobid"
|
|
10553
|
-
]
|
|
10079
|
+
}
|
|
10554
10080
|
},
|
|
10555
10081
|
"JobStopgroupRequest": {
|
|
10556
10082
|
"type": "object",
|
|
@@ -10563,10 +10089,7 @@
|
|
|
10563
10089
|
"type": "boolean",
|
|
10564
10090
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10565
10091
|
}
|
|
10566
|
-
}
|
|
10567
|
-
"required": [
|
|
10568
|
-
"group"
|
|
10569
|
-
]
|
|
10092
|
+
}
|
|
10570
10093
|
},
|
|
10571
10094
|
"OperationsListRequest": {
|
|
10572
10095
|
"type": "object",
|
|
@@ -10634,11 +10157,7 @@
|
|
|
10634
10157
|
"type": "boolean",
|
|
10635
10158
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10636
10159
|
}
|
|
10637
|
-
}
|
|
10638
|
-
"required": [
|
|
10639
|
-
"fs",
|
|
10640
|
-
"remote"
|
|
10641
|
-
]
|
|
10160
|
+
}
|
|
10642
10161
|
},
|
|
10643
10162
|
"OperationsStatRequest": {
|
|
10644
10163
|
"type": "object",
|
|
@@ -10663,11 +10182,7 @@
|
|
|
10663
10182
|
"type": "boolean",
|
|
10664
10183
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10665
10184
|
}
|
|
10666
|
-
}
|
|
10667
|
-
"required": [
|
|
10668
|
-
"fs",
|
|
10669
|
-
"remote"
|
|
10670
|
-
]
|
|
10185
|
+
}
|
|
10671
10186
|
},
|
|
10672
10187
|
"OperationsAboutRequest": {
|
|
10673
10188
|
"type": "object",
|
|
@@ -10684,10 +10199,7 @@
|
|
|
10684
10199
|
"type": "boolean",
|
|
10685
10200
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10686
10201
|
}
|
|
10687
|
-
}
|
|
10688
|
-
"required": [
|
|
10689
|
-
"fs"
|
|
10690
|
-
]
|
|
10202
|
+
}
|
|
10691
10203
|
},
|
|
10692
10204
|
"OperationsPurgeRequest": {
|
|
10693
10205
|
"type": "object",
|
|
@@ -10716,11 +10228,7 @@
|
|
|
10716
10228
|
"type": "boolean",
|
|
10717
10229
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10718
10230
|
}
|
|
10719
|
-
}
|
|
10720
|
-
"required": [
|
|
10721
|
-
"fs",
|
|
10722
|
-
"remote"
|
|
10723
|
-
]
|
|
10231
|
+
}
|
|
10724
10232
|
},
|
|
10725
10233
|
"OperationsMkdirRequest": {
|
|
10726
10234
|
"type": "object",
|
|
@@ -10741,11 +10249,7 @@
|
|
|
10741
10249
|
"type": "boolean",
|
|
10742
10250
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10743
10251
|
}
|
|
10744
|
-
}
|
|
10745
|
-
"required": [
|
|
10746
|
-
"fs",
|
|
10747
|
-
"remote"
|
|
10748
|
-
]
|
|
10252
|
+
}
|
|
10749
10253
|
},
|
|
10750
10254
|
"OperationsRmdirRequest": {
|
|
10751
10255
|
"type": "object",
|
|
@@ -10766,11 +10270,7 @@
|
|
|
10766
10270
|
"type": "boolean",
|
|
10767
10271
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10768
10272
|
}
|
|
10769
|
-
}
|
|
10770
|
-
"required": [
|
|
10771
|
-
"fs",
|
|
10772
|
-
"remote"
|
|
10773
|
-
]
|
|
10273
|
+
}
|
|
10774
10274
|
},
|
|
10775
10275
|
"OperationsCheckRequest": {
|
|
10776
10276
|
"type": "object",
|
|
@@ -10835,11 +10335,7 @@
|
|
|
10835
10335
|
"type": "boolean",
|
|
10836
10336
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10837
10337
|
}
|
|
10838
|
-
}
|
|
10839
|
-
"required": [
|
|
10840
|
-
"srcFs",
|
|
10841
|
-
"dstFs"
|
|
10842
|
-
]
|
|
10338
|
+
}
|
|
10843
10339
|
},
|
|
10844
10340
|
"SyncSyncRequest": {
|
|
10845
10341
|
"type": "object",
|
|
@@ -10872,11 +10368,7 @@
|
|
|
10872
10368
|
"type": "boolean",
|
|
10873
10369
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10874
10370
|
}
|
|
10875
|
-
}
|
|
10876
|
-
"required": [
|
|
10877
|
-
"srcFs",
|
|
10878
|
-
"dstFs"
|
|
10879
|
-
]
|
|
10371
|
+
}
|
|
10880
10372
|
},
|
|
10881
10373
|
"SyncCopyRequest": {
|
|
10882
10374
|
"type": "object",
|
|
@@ -10909,11 +10401,7 @@
|
|
|
10909
10401
|
"type": "boolean",
|
|
10910
10402
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10911
10403
|
}
|
|
10912
|
-
}
|
|
10913
|
-
"required": [
|
|
10914
|
-
"srcFs",
|
|
10915
|
-
"dstFs"
|
|
10916
|
-
]
|
|
10404
|
+
}
|
|
10917
10405
|
},
|
|
10918
10406
|
"SyncMoveRequest": {
|
|
10919
10407
|
"type": "object",
|
|
@@ -10950,11 +10438,7 @@
|
|
|
10950
10438
|
"type": "boolean",
|
|
10951
10439
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
10952
10440
|
}
|
|
10953
|
-
}
|
|
10954
|
-
"required": [
|
|
10955
|
-
"srcFs",
|
|
10956
|
-
"dstFs"
|
|
10957
|
-
]
|
|
10441
|
+
}
|
|
10958
10442
|
},
|
|
10959
10443
|
"SyncBisyncRequest": {
|
|
10960
10444
|
"type": "object",
|
|
@@ -11047,11 +10531,7 @@
|
|
|
11047
10531
|
"type": "boolean",
|
|
11048
10532
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
11049
10533
|
}
|
|
11050
|
-
}
|
|
11051
|
-
"required": [
|
|
11052
|
-
"path1",
|
|
11053
|
-
"path2"
|
|
11054
|
-
]
|
|
10534
|
+
}
|
|
11055
10535
|
},
|
|
11056
10536
|
"OptionsBlocksRequest": {
|
|
11057
10537
|
"type": "object",
|
|
@@ -11102,425 +10582,80 @@
|
|
|
11102
10582
|
},
|
|
11103
10583
|
"OptionsSetRequest": {
|
|
11104
10584
|
"type": "object",
|
|
11105
|
-
"properties": {
|
|
11106
|
-
"dlna": {
|
|
11107
|
-
"type": "object",
|
|
11108
|
-
"additionalProperties":
|
|
11109
|
-
|
|
11110
|
-
|
|
11111
|
-
|
|
11112
|
-
|
|
11113
|
-
|
|
11114
|
-
|
|
11115
|
-
|
|
11116
|
-
|
|
11117
|
-
|
|
11118
|
-
|
|
11119
|
-
{
|
|
11120
|
-
"type": "boolean"
|
|
11121
|
-
},
|
|
11122
|
-
{
|
|
11123
|
-
"type": "array",
|
|
11124
|
-
"items": {}
|
|
11125
|
-
},
|
|
11126
|
-
{
|
|
11127
|
-
"type": "object",
|
|
11128
|
-
"additionalProperties": {}
|
|
11129
|
-
}
|
|
11130
|
-
]
|
|
11131
|
-
},
|
|
11132
|
-
"description": "Overrides for the `dlna` option block."
|
|
11133
|
-
},
|
|
11134
|
-
"filter": {
|
|
11135
|
-
"type": "object",
|
|
11136
|
-
"additionalProperties": {
|
|
11137
|
-
"oneOf": [
|
|
11138
|
-
{
|
|
11139
|
-
"type": "string"
|
|
11140
|
-
},
|
|
11141
|
-
{
|
|
11142
|
-
"type": "number"
|
|
11143
|
-
},
|
|
11144
|
-
{
|
|
11145
|
-
"type": "integer"
|
|
11146
|
-
},
|
|
11147
|
-
{
|
|
11148
|
-
"type": "boolean"
|
|
11149
|
-
},
|
|
11150
|
-
{
|
|
11151
|
-
"type": "array",
|
|
11152
|
-
"items": {}
|
|
11153
|
-
},
|
|
11154
|
-
{
|
|
11155
|
-
"type": "object",
|
|
11156
|
-
"additionalProperties": {}
|
|
11157
|
-
}
|
|
11158
|
-
]
|
|
11159
|
-
},
|
|
11160
|
-
"description": "Overrides for the `filter` option block."
|
|
11161
|
-
},
|
|
11162
|
-
"ftp": {
|
|
11163
|
-
"type": "object",
|
|
11164
|
-
"additionalProperties": {
|
|
11165
|
-
"oneOf": [
|
|
11166
|
-
{
|
|
11167
|
-
"type": "string"
|
|
11168
|
-
},
|
|
11169
|
-
{
|
|
11170
|
-
"type": "number"
|
|
11171
|
-
},
|
|
11172
|
-
{
|
|
11173
|
-
"type": "integer"
|
|
11174
|
-
},
|
|
11175
|
-
{
|
|
11176
|
-
"type": "boolean"
|
|
11177
|
-
},
|
|
11178
|
-
{
|
|
11179
|
-
"type": "array",
|
|
11180
|
-
"items": {}
|
|
11181
|
-
},
|
|
11182
|
-
{
|
|
11183
|
-
"type": "object",
|
|
11184
|
-
"additionalProperties": {}
|
|
11185
|
-
}
|
|
11186
|
-
]
|
|
11187
|
-
},
|
|
10585
|
+
"properties": {
|
|
10586
|
+
"dlna": {
|
|
10587
|
+
"type": "object",
|
|
10588
|
+
"additionalProperties": true,
|
|
10589
|
+
"description": "Overrides for the `dlna` option block."
|
|
10590
|
+
},
|
|
10591
|
+
"filter": {
|
|
10592
|
+
"type": "object",
|
|
10593
|
+
"additionalProperties": true,
|
|
10594
|
+
"description": "Overrides for the `filter` option block."
|
|
10595
|
+
},
|
|
10596
|
+
"ftp": {
|
|
10597
|
+
"type": "object",
|
|
10598
|
+
"additionalProperties": true,
|
|
11188
10599
|
"description": "Overrides for the `ftp` option block."
|
|
11189
10600
|
},
|
|
11190
10601
|
"main": {
|
|
11191
10602
|
"type": "object",
|
|
11192
|
-
"additionalProperties":
|
|
11193
|
-
"oneOf": [
|
|
11194
|
-
{
|
|
11195
|
-
"type": "string"
|
|
11196
|
-
},
|
|
11197
|
-
{
|
|
11198
|
-
"type": "number"
|
|
11199
|
-
},
|
|
11200
|
-
{
|
|
11201
|
-
"type": "integer"
|
|
11202
|
-
},
|
|
11203
|
-
{
|
|
11204
|
-
"type": "boolean"
|
|
11205
|
-
},
|
|
11206
|
-
{
|
|
11207
|
-
"type": "array",
|
|
11208
|
-
"items": {}
|
|
11209
|
-
},
|
|
11210
|
-
{
|
|
11211
|
-
"type": "object",
|
|
11212
|
-
"additionalProperties": {}
|
|
11213
|
-
}
|
|
11214
|
-
]
|
|
11215
|
-
},
|
|
10603
|
+
"additionalProperties": true,
|
|
11216
10604
|
"description": "Overrides for the `main` option block."
|
|
11217
10605
|
},
|
|
11218
10606
|
"http": {
|
|
11219
10607
|
"type": "object",
|
|
11220
|
-
"additionalProperties":
|
|
11221
|
-
"oneOf": [
|
|
11222
|
-
{
|
|
11223
|
-
"type": "string"
|
|
11224
|
-
},
|
|
11225
|
-
{
|
|
11226
|
-
"type": "number"
|
|
11227
|
-
},
|
|
11228
|
-
{
|
|
11229
|
-
"type": "integer"
|
|
11230
|
-
},
|
|
11231
|
-
{
|
|
11232
|
-
"type": "boolean"
|
|
11233
|
-
},
|
|
11234
|
-
{
|
|
11235
|
-
"type": "array",
|
|
11236
|
-
"items": {}
|
|
11237
|
-
},
|
|
11238
|
-
{
|
|
11239
|
-
"type": "object",
|
|
11240
|
-
"additionalProperties": {}
|
|
11241
|
-
}
|
|
11242
|
-
]
|
|
11243
|
-
},
|
|
10608
|
+
"additionalProperties": true,
|
|
11244
10609
|
"description": "Overrides for the `http` option block."
|
|
11245
10610
|
},
|
|
11246
10611
|
"log": {
|
|
11247
10612
|
"type": "object",
|
|
11248
|
-
"additionalProperties":
|
|
11249
|
-
"oneOf": [
|
|
11250
|
-
{
|
|
11251
|
-
"type": "string"
|
|
11252
|
-
},
|
|
11253
|
-
{
|
|
11254
|
-
"type": "number"
|
|
11255
|
-
},
|
|
11256
|
-
{
|
|
11257
|
-
"type": "integer"
|
|
11258
|
-
},
|
|
11259
|
-
{
|
|
11260
|
-
"type": "boolean"
|
|
11261
|
-
},
|
|
11262
|
-
{
|
|
11263
|
-
"type": "array",
|
|
11264
|
-
"items": {}
|
|
11265
|
-
},
|
|
11266
|
-
{
|
|
11267
|
-
"type": "object",
|
|
11268
|
-
"additionalProperties": {}
|
|
11269
|
-
}
|
|
11270
|
-
]
|
|
11271
|
-
},
|
|
10613
|
+
"additionalProperties": true,
|
|
11272
10614
|
"description": "Overrides for the `log` option block."
|
|
11273
10615
|
},
|
|
11274
10616
|
"mount": {
|
|
11275
10617
|
"type": "object",
|
|
11276
|
-
"additionalProperties":
|
|
11277
|
-
"oneOf": [
|
|
11278
|
-
{
|
|
11279
|
-
"type": "string"
|
|
11280
|
-
},
|
|
11281
|
-
{
|
|
11282
|
-
"type": "number"
|
|
11283
|
-
},
|
|
11284
|
-
{
|
|
11285
|
-
"type": "integer"
|
|
11286
|
-
},
|
|
11287
|
-
{
|
|
11288
|
-
"type": "boolean"
|
|
11289
|
-
},
|
|
11290
|
-
{
|
|
11291
|
-
"type": "array",
|
|
11292
|
-
"items": {}
|
|
11293
|
-
},
|
|
11294
|
-
{
|
|
11295
|
-
"type": "object",
|
|
11296
|
-
"additionalProperties": {}
|
|
11297
|
-
}
|
|
11298
|
-
]
|
|
11299
|
-
},
|
|
10618
|
+
"additionalProperties": true,
|
|
11300
10619
|
"description": "Overrides for the `mount` option block."
|
|
11301
10620
|
},
|
|
11302
10621
|
"nfs": {
|
|
11303
10622
|
"type": "object",
|
|
11304
|
-
"additionalProperties":
|
|
11305
|
-
"oneOf": [
|
|
11306
|
-
{
|
|
11307
|
-
"type": "string"
|
|
11308
|
-
},
|
|
11309
|
-
{
|
|
11310
|
-
"type": "number"
|
|
11311
|
-
},
|
|
11312
|
-
{
|
|
11313
|
-
"type": "integer"
|
|
11314
|
-
},
|
|
11315
|
-
{
|
|
11316
|
-
"type": "boolean"
|
|
11317
|
-
},
|
|
11318
|
-
{
|
|
11319
|
-
"type": "array",
|
|
11320
|
-
"items": {}
|
|
11321
|
-
},
|
|
11322
|
-
{
|
|
11323
|
-
"type": "object",
|
|
11324
|
-
"additionalProperties": {}
|
|
11325
|
-
}
|
|
11326
|
-
]
|
|
11327
|
-
},
|
|
10623
|
+
"additionalProperties": true,
|
|
11328
10624
|
"description": "Overrides for the `nfs` option block."
|
|
11329
10625
|
},
|
|
11330
10626
|
"proxy": {
|
|
11331
10627
|
"type": "object",
|
|
11332
|
-
"additionalProperties":
|
|
11333
|
-
"oneOf": [
|
|
11334
|
-
{
|
|
11335
|
-
"type": "string"
|
|
11336
|
-
},
|
|
11337
|
-
{
|
|
11338
|
-
"type": "number"
|
|
11339
|
-
},
|
|
11340
|
-
{
|
|
11341
|
-
"type": "integer"
|
|
11342
|
-
},
|
|
11343
|
-
{
|
|
11344
|
-
"type": "boolean"
|
|
11345
|
-
},
|
|
11346
|
-
{
|
|
11347
|
-
"type": "array",
|
|
11348
|
-
"items": {}
|
|
11349
|
-
},
|
|
11350
|
-
{
|
|
11351
|
-
"type": "object",
|
|
11352
|
-
"additionalProperties": {}
|
|
11353
|
-
}
|
|
11354
|
-
]
|
|
11355
|
-
},
|
|
10628
|
+
"additionalProperties": true,
|
|
11356
10629
|
"description": "Overrides for the `proxy` option block."
|
|
11357
10630
|
},
|
|
11358
10631
|
"rc": {
|
|
11359
10632
|
"type": "object",
|
|
11360
|
-
"additionalProperties":
|
|
11361
|
-
"oneOf": [
|
|
11362
|
-
{
|
|
11363
|
-
"type": "string"
|
|
11364
|
-
},
|
|
11365
|
-
{
|
|
11366
|
-
"type": "number"
|
|
11367
|
-
},
|
|
11368
|
-
{
|
|
11369
|
-
"type": "integer"
|
|
11370
|
-
},
|
|
11371
|
-
{
|
|
11372
|
-
"type": "boolean"
|
|
11373
|
-
},
|
|
11374
|
-
{
|
|
11375
|
-
"type": "array",
|
|
11376
|
-
"items": {}
|
|
11377
|
-
},
|
|
11378
|
-
{
|
|
11379
|
-
"type": "object",
|
|
11380
|
-
"additionalProperties": {}
|
|
11381
|
-
}
|
|
11382
|
-
]
|
|
11383
|
-
},
|
|
10633
|
+
"additionalProperties": true,
|
|
11384
10634
|
"description": "Overrides for the `rc` option block."
|
|
11385
10635
|
},
|
|
11386
10636
|
"restic": {
|
|
11387
10637
|
"type": "object",
|
|
11388
|
-
"additionalProperties":
|
|
11389
|
-
"oneOf": [
|
|
11390
|
-
{
|
|
11391
|
-
"type": "string"
|
|
11392
|
-
},
|
|
11393
|
-
{
|
|
11394
|
-
"type": "number"
|
|
11395
|
-
},
|
|
11396
|
-
{
|
|
11397
|
-
"type": "integer"
|
|
11398
|
-
},
|
|
11399
|
-
{
|
|
11400
|
-
"type": "boolean"
|
|
11401
|
-
},
|
|
11402
|
-
{
|
|
11403
|
-
"type": "array",
|
|
11404
|
-
"items": {}
|
|
11405
|
-
},
|
|
11406
|
-
{
|
|
11407
|
-
"type": "object",
|
|
11408
|
-
"additionalProperties": {}
|
|
11409
|
-
}
|
|
11410
|
-
]
|
|
11411
|
-
},
|
|
10638
|
+
"additionalProperties": true,
|
|
11412
10639
|
"description": "Overrides for the `restic` option block."
|
|
11413
10640
|
},
|
|
11414
10641
|
"s3": {
|
|
11415
10642
|
"type": "object",
|
|
11416
|
-
"additionalProperties":
|
|
11417
|
-
"oneOf": [
|
|
11418
|
-
{
|
|
11419
|
-
"type": "string"
|
|
11420
|
-
},
|
|
11421
|
-
{
|
|
11422
|
-
"type": "number"
|
|
11423
|
-
},
|
|
11424
|
-
{
|
|
11425
|
-
"type": "integer"
|
|
11426
|
-
},
|
|
11427
|
-
{
|
|
11428
|
-
"type": "boolean"
|
|
11429
|
-
},
|
|
11430
|
-
{
|
|
11431
|
-
"type": "array",
|
|
11432
|
-
"items": {}
|
|
11433
|
-
},
|
|
11434
|
-
{
|
|
11435
|
-
"type": "object",
|
|
11436
|
-
"additionalProperties": {}
|
|
11437
|
-
}
|
|
11438
|
-
]
|
|
11439
|
-
},
|
|
10643
|
+
"additionalProperties": true,
|
|
11440
10644
|
"description": "Overrides for the `s3` option block."
|
|
11441
10645
|
},
|
|
11442
10646
|
"sftp": {
|
|
11443
10647
|
"type": "object",
|
|
11444
|
-
"additionalProperties":
|
|
11445
|
-
"oneOf": [
|
|
11446
|
-
{
|
|
11447
|
-
"type": "string"
|
|
11448
|
-
},
|
|
11449
|
-
{
|
|
11450
|
-
"type": "number"
|
|
11451
|
-
},
|
|
11452
|
-
{
|
|
11453
|
-
"type": "integer"
|
|
11454
|
-
},
|
|
11455
|
-
{
|
|
11456
|
-
"type": "boolean"
|
|
11457
|
-
},
|
|
11458
|
-
{
|
|
11459
|
-
"type": "array",
|
|
11460
|
-
"items": {}
|
|
11461
|
-
},
|
|
11462
|
-
{
|
|
11463
|
-
"type": "object",
|
|
11464
|
-
"additionalProperties": {}
|
|
11465
|
-
}
|
|
11466
|
-
]
|
|
11467
|
-
},
|
|
10648
|
+
"additionalProperties": true,
|
|
11468
10649
|
"description": "Overrides for the `sftp` option block."
|
|
11469
10650
|
},
|
|
11470
10651
|
"vfs": {
|
|
11471
10652
|
"type": "object",
|
|
11472
|
-
"additionalProperties":
|
|
11473
|
-
"oneOf": [
|
|
11474
|
-
{
|
|
11475
|
-
"type": "string"
|
|
11476
|
-
},
|
|
11477
|
-
{
|
|
11478
|
-
"type": "number"
|
|
11479
|
-
},
|
|
11480
|
-
{
|
|
11481
|
-
"type": "integer"
|
|
11482
|
-
},
|
|
11483
|
-
{
|
|
11484
|
-
"type": "boolean"
|
|
11485
|
-
},
|
|
11486
|
-
{
|
|
11487
|
-
"type": "array",
|
|
11488
|
-
"items": {}
|
|
11489
|
-
},
|
|
11490
|
-
{
|
|
11491
|
-
"type": "object",
|
|
11492
|
-
"additionalProperties": {}
|
|
11493
|
-
}
|
|
11494
|
-
]
|
|
11495
|
-
},
|
|
10653
|
+
"additionalProperties": true,
|
|
11496
10654
|
"description": "Overrides for the `vfs` option block."
|
|
11497
10655
|
},
|
|
11498
10656
|
"webdav": {
|
|
11499
10657
|
"type": "object",
|
|
11500
|
-
"additionalProperties":
|
|
11501
|
-
"oneOf": [
|
|
11502
|
-
{
|
|
11503
|
-
"type": "string"
|
|
11504
|
-
},
|
|
11505
|
-
{
|
|
11506
|
-
"type": "number"
|
|
11507
|
-
},
|
|
11508
|
-
{
|
|
11509
|
-
"type": "integer"
|
|
11510
|
-
},
|
|
11511
|
-
{
|
|
11512
|
-
"type": "boolean"
|
|
11513
|
-
},
|
|
11514
|
-
{
|
|
11515
|
-
"type": "array",
|
|
11516
|
-
"items": {}
|
|
11517
|
-
},
|
|
11518
|
-
{
|
|
11519
|
-
"type": "object",
|
|
11520
|
-
"additionalProperties": {}
|
|
11521
|
-
}
|
|
11522
|
-
]
|
|
11523
|
-
},
|
|
10658
|
+
"additionalProperties": true,
|
|
11524
10659
|
"description": "Overrides for the `webdav` option block."
|
|
11525
10660
|
},
|
|
11526
10661
|
"_group": {
|
|
@@ -11575,11 +10710,6 @@
|
|
|
11575
10710
|
"type": "string",
|
|
11576
10711
|
"description": "Address and port to bind the server to, such as `:5572` or `localhost:8080`."
|
|
11577
10712
|
},
|
|
11578
|
-
"params": {
|
|
11579
|
-
"type": "object",
|
|
11580
|
-
"additionalProperties": true,
|
|
11581
|
-
"description": "Additional arbitrary parameters allowed."
|
|
11582
|
-
},
|
|
11583
10713
|
"_config": {
|
|
11584
10714
|
"type": "string",
|
|
11585
10715
|
"description": "JSON encoded config overrides applied for this call only."
|
|
@@ -11597,11 +10727,7 @@
|
|
|
11597
10727
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
11598
10728
|
}
|
|
11599
10729
|
},
|
|
11600
|
-
"
|
|
11601
|
-
"type",
|
|
11602
|
-
"fs",
|
|
11603
|
-
"addr"
|
|
11604
|
-
]
|
|
10730
|
+
"additionalProperties": true
|
|
11605
10731
|
},
|
|
11606
10732
|
"ServeStopRequest": {
|
|
11607
10733
|
"type": "object",
|
|
@@ -11618,10 +10744,7 @@
|
|
|
11618
10744
|
"type": "boolean",
|
|
11619
10745
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
11620
10746
|
}
|
|
11621
|
-
}
|
|
11622
|
-
"required": [
|
|
11623
|
-
"id"
|
|
11624
|
-
]
|
|
10747
|
+
}
|
|
11625
10748
|
},
|
|
11626
10749
|
"ServeStopallRequest": {
|
|
11627
10750
|
"type": "object",
|
|
@@ -11656,11 +10779,6 @@
|
|
|
11656
10779
|
"type": "string",
|
|
11657
10780
|
"description": "Optional VFS identifier to target; required when more than one VFS is active."
|
|
11658
10781
|
},
|
|
11659
|
-
"params": {
|
|
11660
|
-
"type": "object",
|
|
11661
|
-
"additionalProperties": true,
|
|
11662
|
-
"description": "Additional arbitrary parameters allowed."
|
|
11663
|
-
},
|
|
11664
10782
|
"_group": {
|
|
11665
10783
|
"type": "string",
|
|
11666
10784
|
"description": "Assign the request to a custom stats group."
|
|
@@ -11669,7 +10787,8 @@
|
|
|
11669
10787
|
"type": "boolean",
|
|
11670
10788
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
11671
10789
|
}
|
|
11672
|
-
}
|
|
10790
|
+
},
|
|
10791
|
+
"additionalProperties": true
|
|
11673
10792
|
},
|
|
11674
10793
|
"VfsListRequest": {
|
|
11675
10794
|
"type": "object",
|
|
@@ -11757,11 +10876,7 @@
|
|
|
11757
10876
|
"type": "boolean",
|
|
11758
10877
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
11759
10878
|
}
|
|
11760
|
-
}
|
|
11761
|
-
"required": [
|
|
11762
|
-
"id",
|
|
11763
|
-
"expiry"
|
|
11764
|
-
]
|
|
10879
|
+
}
|
|
11765
10880
|
},
|
|
11766
10881
|
"VfsRefreshRequest": {
|
|
11767
10882
|
"type": "object",
|
|
@@ -11774,11 +10889,6 @@
|
|
|
11774
10889
|
"type": "boolean",
|
|
11775
10890
|
"description": "Set to true to refresh entire directory trees."
|
|
11776
10891
|
},
|
|
11777
|
-
"params": {
|
|
11778
|
-
"type": "object",
|
|
11779
|
-
"additionalProperties": true,
|
|
11780
|
-
"description": "Additional arbitrary parameters allowed."
|
|
11781
|
-
},
|
|
11782
10892
|
"_group": {
|
|
11783
10893
|
"type": "string",
|
|
11784
10894
|
"description": "Assign the request to a custom stats group."
|
|
@@ -11787,7 +10897,8 @@
|
|
|
11787
10897
|
"type": "boolean",
|
|
11788
10898
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
11789
10899
|
}
|
|
11790
|
-
}
|
|
10900
|
+
},
|
|
10901
|
+
"additionalProperties": true
|
|
11791
10902
|
},
|
|
11792
10903
|
"VfsStatsRequest": {
|
|
11793
10904
|
"type": "object",
|
|
@@ -11821,10 +10932,7 @@
|
|
|
11821
10932
|
"type": "boolean",
|
|
11822
10933
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
11823
10934
|
}
|
|
11824
|
-
}
|
|
11825
|
-
"required": [
|
|
11826
|
-
"url"
|
|
11827
|
-
]
|
|
10935
|
+
}
|
|
11828
10936
|
},
|
|
11829
10937
|
"PluginsctlGetPluginsForTypeRequest": {
|
|
11830
10938
|
"type": "object",
|
|
@@ -11888,10 +10996,7 @@
|
|
|
11888
10996
|
"type": "boolean",
|
|
11889
10997
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
11890
10998
|
}
|
|
11891
|
-
}
|
|
11892
|
-
"required": [
|
|
11893
|
-
"name"
|
|
11894
|
-
]
|
|
10999
|
+
}
|
|
11895
11000
|
},
|
|
11896
11001
|
"PluginsctlRemoveTestPluginRequest": {
|
|
11897
11002
|
"type": "object",
|
|
@@ -11908,10 +11013,20 @@
|
|
|
11908
11013
|
"type": "boolean",
|
|
11909
11014
|
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
11910
11015
|
}
|
|
11911
|
-
}
|
|
11912
|
-
|
|
11913
|
-
|
|
11914
|
-
|
|
11016
|
+
}
|
|
11017
|
+
},
|
|
11018
|
+
"CoreDisksRequest": {
|
|
11019
|
+
"type": "object",
|
|
11020
|
+
"properties": {
|
|
11021
|
+
"_group": {
|
|
11022
|
+
"type": "string",
|
|
11023
|
+
"description": "Assign the request to a custom stats group."
|
|
11024
|
+
},
|
|
11025
|
+
"_async": {
|
|
11026
|
+
"type": "boolean",
|
|
11027
|
+
"description": "Run the command asynchronously. Returns a job id immediately."
|
|
11028
|
+
}
|
|
11029
|
+
}
|
|
11915
11030
|
}
|
|
11916
11031
|
}
|
|
11917
11032
|
}
|