rclone-openapi 1.73.4 → 1.74.1
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 +397 -1262
- package/openapi.yaml +266 -509
- package/package.json +4 -4
- package/types.d.ts +355 -355
package/openapi.yaml
CHANGED
|
@@ -414,6 +414,27 @@ paths:
|
|
|
414
414
|
5XX:
|
|
415
415
|
$ref: "#/components/responses/RcError"
|
|
416
416
|
operationId: coreCommand
|
|
417
|
+
/core/disks:
|
|
418
|
+
post:
|
|
419
|
+
summary: List locally accessible paths
|
|
420
|
+
description: Returns a list of locally accessible paths including mount points, user directories, and removable volumes.
|
|
421
|
+
tags: []
|
|
422
|
+
parameters:
|
|
423
|
+
- $ref: "#/components/parameters/GlobalGroupParam"
|
|
424
|
+
- $ref: "#/components/parameters/GlobalAsyncParam"
|
|
425
|
+
requestBody:
|
|
426
|
+
content:
|
|
427
|
+
application/json:
|
|
428
|
+
schema:
|
|
429
|
+
$ref: "#/components/schemas/CoreDisksRequest"
|
|
430
|
+
responses:
|
|
431
|
+
"200":
|
|
432
|
+
$ref: "#/components/responses/CoreDisksResponse"
|
|
433
|
+
4XX:
|
|
434
|
+
$ref: "#/components/responses/RcError"
|
|
435
|
+
5XX:
|
|
436
|
+
$ref: "#/components/responses/RcError"
|
|
437
|
+
operationId: coreDisks
|
|
417
438
|
/core/du:
|
|
418
439
|
post:
|
|
419
440
|
summary: Report disk usage
|
|
@@ -1528,8 +1549,7 @@ paths:
|
|
|
1528
1549
|
description: Multipart form payload containing one or more files to upload.
|
|
1529
1550
|
content:
|
|
1530
1551
|
multipart/form-data:
|
|
1531
|
-
schema:
|
|
1532
|
-
nullable: true
|
|
1552
|
+
schema: {}
|
|
1533
1553
|
responses:
|
|
1534
1554
|
"200":
|
|
1535
1555
|
$ref: "#/components/responses/EmptyObjectResponse"
|
|
@@ -1993,7 +2013,7 @@ paths:
|
|
|
1993
2013
|
$ref: "#/components/schemas/ServeTypesRequest"
|
|
1994
2014
|
responses:
|
|
1995
2015
|
"200":
|
|
1996
|
-
$ref: "#/components/responses/
|
|
2016
|
+
$ref: "#/components/responses/ServeTypesResponse"
|
|
1997
2017
|
4XX:
|
|
1998
2018
|
$ref: "#/components/responses/RcError"
|
|
1999
2019
|
5XX:
|
|
@@ -2354,56 +2374,48 @@ components:
|
|
|
2354
2374
|
description: Remote name or path to clean up, for example `drive:`.
|
|
2355
2375
|
schema:
|
|
2356
2376
|
type: string
|
|
2357
|
-
required: true
|
|
2358
2377
|
Operations_CopyfilePostSrcFsParam:
|
|
2359
2378
|
name: srcFs
|
|
2360
2379
|
in: query
|
|
2361
2380
|
description: Source remote name or path, such as `drive:` or `/` for the local filesystem.
|
|
2362
2381
|
schema:
|
|
2363
2382
|
type: string
|
|
2364
|
-
required: true
|
|
2365
2383
|
Operations_CopyfilePostSrcRemoteParam:
|
|
2366
2384
|
name: srcRemote
|
|
2367
2385
|
in: query
|
|
2368
2386
|
description: Path to the source object within `srcFs`, for example `dir/file.txt`.
|
|
2369
2387
|
schema:
|
|
2370
2388
|
type: string
|
|
2371
|
-
required: true
|
|
2372
2389
|
Operations_CopyfilePostDstFsParam:
|
|
2373
2390
|
name: dstFs
|
|
2374
2391
|
in: query
|
|
2375
2392
|
description: Destination remote name or path, such as `drive2:` or `/` for local filesystem.
|
|
2376
2393
|
schema:
|
|
2377
2394
|
type: string
|
|
2378
|
-
required: true
|
|
2379
2395
|
Operations_CopyfilePostDstRemoteParam:
|
|
2380
2396
|
name: dstRemote
|
|
2381
2397
|
in: query
|
|
2382
2398
|
description: Target path within `dstFs` where the file should be written.
|
|
2383
2399
|
schema:
|
|
2384
2400
|
type: string
|
|
2385
|
-
required: true
|
|
2386
2401
|
Operations_CopyurlPostFsParam:
|
|
2387
2402
|
name: fs
|
|
2388
2403
|
in: query
|
|
2389
2404
|
description: Remote name or path that will receive the downloaded file, e.g. `drive:`.
|
|
2390
2405
|
schema:
|
|
2391
2406
|
type: string
|
|
2392
|
-
required: true
|
|
2393
2407
|
Operations_CopyurlPostRemoteParam:
|
|
2394
2408
|
name: remote
|
|
2395
2409
|
in: query
|
|
2396
2410
|
description: Destination path within `fs` where the fetched object will be stored.
|
|
2397
2411
|
schema:
|
|
2398
2412
|
type: string
|
|
2399
|
-
required: true
|
|
2400
2413
|
Operations_CopyurlPostUrlParam:
|
|
2401
2414
|
name: url
|
|
2402
2415
|
in: query
|
|
2403
2416
|
description: Source URL to fetch the object from.
|
|
2404
2417
|
schema:
|
|
2405
2418
|
type: string
|
|
2406
|
-
required: true
|
|
2407
2419
|
Operations_CopyurlPostAutoFilenameParam:
|
|
2408
2420
|
name: autoFilename
|
|
2409
2421
|
in: query
|
|
@@ -2416,42 +2428,36 @@ components:
|
|
|
2416
2428
|
description: Remote name or path whose contents should be removed.
|
|
2417
2429
|
schema:
|
|
2418
2430
|
type: string
|
|
2419
|
-
required: true
|
|
2420
2431
|
Operations_DeletefilePostFsParam:
|
|
2421
2432
|
name: fs
|
|
2422
2433
|
in: query
|
|
2423
2434
|
description: Remote name or path that contains the file to delete.
|
|
2424
2435
|
schema:
|
|
2425
2436
|
type: string
|
|
2426
|
-
required: true
|
|
2427
2437
|
Operations_DeletefilePostRemoteParam:
|
|
2428
2438
|
name: remote
|
|
2429
2439
|
in: query
|
|
2430
2440
|
description: Exact path to the file within `fs` that should be deleted.
|
|
2431
2441
|
schema:
|
|
2432
2442
|
type: string
|
|
2433
|
-
required: true
|
|
2434
2443
|
Operations_FsinfoPostFsParam:
|
|
2435
2444
|
name: fs
|
|
2436
2445
|
in: query
|
|
2437
2446
|
description: Remote name or path to inspect, e.g. `drive:`.
|
|
2438
2447
|
schema:
|
|
2439
2448
|
type: string
|
|
2440
|
-
required: true
|
|
2441
2449
|
Operations_HashsumPostFsParam:
|
|
2442
2450
|
name: fs
|
|
2443
2451
|
in: query
|
|
2444
2452
|
description: Remote name or path to hash, such as `drive:` or `/`.
|
|
2445
2453
|
schema:
|
|
2446
2454
|
type: string
|
|
2447
|
-
required: true
|
|
2448
2455
|
Operations_HashsumPostHashTypeParam:
|
|
2449
2456
|
name: hashType
|
|
2450
2457
|
in: query
|
|
2451
2458
|
description: Hash algorithm to use, e.g. `md5`, `sha1`, or another supported name.
|
|
2452
2459
|
schema:
|
|
2453
2460
|
type: string
|
|
2454
|
-
required: true
|
|
2455
2461
|
Operations_HashsumPostDownloadParam:
|
|
2456
2462
|
name: download
|
|
2457
2463
|
in: query
|
|
@@ -2470,21 +2476,18 @@ components:
|
|
|
2470
2476
|
description: Remote name or path containing the file to hash.
|
|
2471
2477
|
schema:
|
|
2472
2478
|
type: string
|
|
2473
|
-
required: true
|
|
2474
2479
|
Operations_HashsumfilePostRemoteParam:
|
|
2475
2480
|
name: remote
|
|
2476
2481
|
in: query
|
|
2477
2482
|
description: Path to the specific file within `fs` to hash.
|
|
2478
2483
|
schema:
|
|
2479
2484
|
type: string
|
|
2480
|
-
required: true
|
|
2481
2485
|
Operations_HashsumfilePostHashTypeParam:
|
|
2482
2486
|
name: hashType
|
|
2483
2487
|
in: query
|
|
2484
2488
|
description: Hash algorithm to use, e.g. `md5`, `sha1`, or another supported name.
|
|
2485
2489
|
schema:
|
|
2486
2490
|
type: string
|
|
2487
|
-
required: true
|
|
2488
2491
|
Operations_HashsumfilePostDownloadParam:
|
|
2489
2492
|
name: download
|
|
2490
2493
|
in: query
|
|
@@ -2503,42 +2506,36 @@ components:
|
|
|
2503
2506
|
description: Source remote name or path containing the file to move.
|
|
2504
2507
|
schema:
|
|
2505
2508
|
type: string
|
|
2506
|
-
required: true
|
|
2507
2509
|
Operations_MovefilePostSrcRemoteParam:
|
|
2508
2510
|
name: srcRemote
|
|
2509
2511
|
in: query
|
|
2510
2512
|
description: Path to the source object within `srcFs`.
|
|
2511
2513
|
schema:
|
|
2512
2514
|
type: string
|
|
2513
|
-
required: true
|
|
2514
2515
|
Operations_MovefilePostDstFsParam:
|
|
2515
2516
|
name: dstFs
|
|
2516
2517
|
in: query
|
|
2517
2518
|
description: Destination remote name or path where the file will be moved.
|
|
2518
2519
|
schema:
|
|
2519
2520
|
type: string
|
|
2520
|
-
required: true
|
|
2521
2521
|
Operations_MovefilePostDstRemoteParam:
|
|
2522
2522
|
name: dstRemote
|
|
2523
2523
|
in: query
|
|
2524
2524
|
description: Destination path within `dstFs` for the moved object.
|
|
2525
2525
|
schema:
|
|
2526
2526
|
type: string
|
|
2527
|
-
required: true
|
|
2528
2527
|
Operations_PubliclinkPostFsParam:
|
|
2529
2528
|
name: fs
|
|
2530
2529
|
in: query
|
|
2531
2530
|
description: Remote name or path hosting the object for which to manage a public link.
|
|
2532
2531
|
schema:
|
|
2533
2532
|
type: string
|
|
2534
|
-
required: true
|
|
2535
2533
|
Operations_PubliclinkPostRemoteParam:
|
|
2536
2534
|
name: remote
|
|
2537
2535
|
in: query
|
|
2538
2536
|
description: Path within `fs` to the object for which to create or remove a public link.
|
|
2539
2537
|
schema:
|
|
2540
2538
|
type: string
|
|
2541
|
-
required: true
|
|
2542
2539
|
Operations_PubliclinkPostUnlinkParam:
|
|
2543
2540
|
name: unlink
|
|
2544
2541
|
in: query
|
|
@@ -2557,14 +2554,12 @@ components:
|
|
|
2557
2554
|
description: Remote name or path to scan for empty directories.
|
|
2558
2555
|
schema:
|
|
2559
2556
|
type: string
|
|
2560
|
-
required: true
|
|
2561
2557
|
Operations_RmdirsPostRemoteParam:
|
|
2562
2558
|
name: remote
|
|
2563
2559
|
in: query
|
|
2564
2560
|
description: Path within `fs` whose empty subdirectories should be removed.
|
|
2565
2561
|
schema:
|
|
2566
2562
|
type: string
|
|
2567
|
-
required: true
|
|
2568
2563
|
Operations_RmdirsPostLeaveRootParam:
|
|
2569
2564
|
name: leaveRoot
|
|
2570
2565
|
in: query
|
|
@@ -2577,28 +2572,24 @@ components:
|
|
|
2577
2572
|
description: Remote name or path whose storage class tier should be changed.
|
|
2578
2573
|
schema:
|
|
2579
2574
|
type: string
|
|
2580
|
-
required: true
|
|
2581
2575
|
Operations_SettierfilePostFsParam:
|
|
2582
2576
|
name: fs
|
|
2583
2577
|
in: query
|
|
2584
2578
|
description: Remote name or path that contains the object whose tier should change.
|
|
2585
2579
|
schema:
|
|
2586
2580
|
type: string
|
|
2587
|
-
required: true
|
|
2588
2581
|
Operations_SettierfilePostRemoteParam:
|
|
2589
2582
|
name: remote
|
|
2590
2583
|
in: query
|
|
2591
2584
|
description: Path within `fs` to the object whose storage class tier should be updated.
|
|
2592
2585
|
schema:
|
|
2593
2586
|
type: string
|
|
2594
|
-
required: true
|
|
2595
2587
|
Operations_SizePostFsParam:
|
|
2596
2588
|
name: fs
|
|
2597
2589
|
in: query
|
|
2598
2590
|
description: Remote name or path to measure aggregate size information for.
|
|
2599
2591
|
schema:
|
|
2600
2592
|
type: string
|
|
2601
|
-
required: true
|
|
2602
2593
|
Core_BwlimitPostRateParam:
|
|
2603
2594
|
name: rate
|
|
2604
2595
|
in: query
|
|
@@ -2611,7 +2602,6 @@ components:
|
|
|
2611
2602
|
description: Name of the rclone command to execute, for example `ls` or `lsf`.
|
|
2612
2603
|
schema:
|
|
2613
2604
|
type: string
|
|
2614
|
-
required: true
|
|
2615
2605
|
Core_CommandPostArgParam:
|
|
2616
2606
|
name: arg
|
|
2617
2607
|
in: query
|
|
@@ -2646,7 +2636,6 @@ components:
|
|
|
2646
2636
|
description: Plain-text string to obscure for storage in the config file.
|
|
2647
2637
|
schema:
|
|
2648
2638
|
type: string
|
|
2649
|
-
required: true
|
|
2650
2639
|
Core_QuitPostExitCodeParam:
|
|
2651
2640
|
name: exitCode
|
|
2652
2641
|
in: query
|
|
@@ -2659,7 +2648,6 @@ components:
|
|
|
2659
2648
|
description: Stats group identifier to remove.
|
|
2660
2649
|
schema:
|
|
2661
2650
|
type: string
|
|
2662
|
-
required: true
|
|
2663
2651
|
Core_StatsPostGroupParam:
|
|
2664
2652
|
name: group
|
|
2665
2653
|
in: query
|
|
@@ -2690,42 +2678,36 @@ components:
|
|
|
2690
2678
|
description: Sampling interval in nanoseconds for blocking profile collection; use 1 to capture all events.
|
|
2691
2679
|
schema:
|
|
2692
2680
|
type: integer
|
|
2693
|
-
required: true
|
|
2694
2681
|
Debug_SetGcPercentPostGcPercentParam:
|
|
2695
2682
|
name: gc-percent
|
|
2696
2683
|
in: query
|
|
2697
2684
|
description: Target percentage of newly allocated data to trigger garbage collection.
|
|
2698
2685
|
schema:
|
|
2699
2686
|
type: integer
|
|
2700
|
-
required: true
|
|
2701
2687
|
Debug_SetMutexProfileFractionPostRateParam:
|
|
2702
2688
|
name: rate
|
|
2703
2689
|
in: query
|
|
2704
2690
|
description: Sampling fraction for mutex contention profiling; set to 0 to disable.
|
|
2705
2691
|
schema:
|
|
2706
2692
|
type: integer
|
|
2707
|
-
required: true
|
|
2708
2693
|
Debug_SetSoftMemoryLimitPostMemLimitParam:
|
|
2709
2694
|
name: mem-limit
|
|
2710
2695
|
in: query
|
|
2711
2696
|
description: Soft memory limit for the Go runtime in bytes.
|
|
2712
2697
|
schema:
|
|
2713
2698
|
type: integer
|
|
2714
|
-
required: true
|
|
2715
2699
|
Mount_MountPostFsParam:
|
|
2716
2700
|
name: fs
|
|
2717
2701
|
in: query
|
|
2718
2702
|
description: Remote path to mount, such as `drive:` or `remote:subdir`.
|
|
2719
2703
|
schema:
|
|
2720
2704
|
type: string
|
|
2721
|
-
required: true
|
|
2722
2705
|
Mount_MountPostMountPointParam:
|
|
2723
2706
|
name: mountPoint
|
|
2724
2707
|
in: query
|
|
2725
2708
|
description: Absolute local path where the remote should be mounted.
|
|
2726
2709
|
schema:
|
|
2727
2710
|
type: string
|
|
2728
|
-
required: true
|
|
2729
2711
|
Mount_MountPostMountTypeParam:
|
|
2730
2712
|
name: mountType
|
|
2731
2713
|
in: query
|
|
@@ -2750,7 +2732,6 @@ components:
|
|
|
2750
2732
|
description: Local mount point path to unmount.
|
|
2751
2733
|
schema:
|
|
2752
2734
|
type: string
|
|
2753
|
-
required: true
|
|
2754
2735
|
Rc_NoopauthPostAdditionalParam:
|
|
2755
2736
|
name: params
|
|
2756
2737
|
in: query
|
|
@@ -2775,7 +2756,6 @@ components:
|
|
|
2775
2756
|
description: Backend-specific command to invoke.
|
|
2776
2757
|
schema:
|
|
2777
2758
|
type: string
|
|
2778
|
-
required: true
|
|
2779
2759
|
Backend_CommandPostFsParam:
|
|
2780
2760
|
name: fs
|
|
2781
2761
|
in: query
|
|
@@ -2804,7 +2784,6 @@ components:
|
|
|
2804
2784
|
description: Remote path to expire from the cache, e.g. `remote:path/to/dir`.
|
|
2805
2785
|
schema:
|
|
2806
2786
|
type: string
|
|
2807
|
-
required: true
|
|
2808
2787
|
Cache_ExpirePostWithDataParam:
|
|
2809
2788
|
name: withData
|
|
2810
2789
|
in: query
|
|
@@ -2832,21 +2811,18 @@ components:
|
|
|
2832
2811
|
description: Name of the new remote configuration.
|
|
2833
2812
|
schema:
|
|
2834
2813
|
type: string
|
|
2835
|
-
required: true
|
|
2836
2814
|
Config_CreatePostParametersParam:
|
|
2837
2815
|
name: parameters
|
|
2838
2816
|
in: query
|
|
2839
2817
|
description: JSON object of configuration key/value pairs required for the remote.
|
|
2840
2818
|
schema:
|
|
2841
2819
|
type: string
|
|
2842
|
-
required: true
|
|
2843
2820
|
Config_CreatePostTypeParam:
|
|
2844
2821
|
name: type
|
|
2845
2822
|
in: query
|
|
2846
2823
|
description: Backend type identifier, such as `drive`, `s3`, or `dropbox`.
|
|
2847
2824
|
schema:
|
|
2848
2825
|
type: string
|
|
2849
|
-
required: true
|
|
2850
2826
|
Config_CreatePostOptParam:
|
|
2851
2827
|
name: opt
|
|
2852
2828
|
in: query
|
|
@@ -2859,56 +2835,48 @@ components:
|
|
|
2859
2835
|
description: Name of the remote configuration to delete.
|
|
2860
2836
|
schema:
|
|
2861
2837
|
type: string
|
|
2862
|
-
required: true
|
|
2863
2838
|
Config_GetPostNameParam:
|
|
2864
2839
|
name: name
|
|
2865
2840
|
in: query
|
|
2866
2841
|
description: Name of the remote configuration to fetch.
|
|
2867
2842
|
schema:
|
|
2868
2843
|
type: string
|
|
2869
|
-
required: true
|
|
2870
2844
|
Config_PasswordPostNameParam:
|
|
2871
2845
|
name: name
|
|
2872
2846
|
in: query
|
|
2873
2847
|
description: Name of the remote whose secrets should be updated.
|
|
2874
2848
|
schema:
|
|
2875
2849
|
type: string
|
|
2876
|
-
required: true
|
|
2877
2850
|
Config_PasswordPostParametersParam:
|
|
2878
2851
|
name: parameters
|
|
2879
2852
|
in: query
|
|
2880
2853
|
description: JSON object of password answers, typically including `pass`.
|
|
2881
2854
|
schema:
|
|
2882
2855
|
type: string
|
|
2883
|
-
required: true
|
|
2884
2856
|
Config_SetpathPostPathParam:
|
|
2885
2857
|
name: path
|
|
2886
2858
|
in: query
|
|
2887
2859
|
description: Absolute path to the `rclone.conf` file that rclone should use.
|
|
2888
2860
|
schema:
|
|
2889
2861
|
type: string
|
|
2890
|
-
required: true
|
|
2891
2862
|
Config_UnlockPostConfigPasswordParam:
|
|
2892
2863
|
name: configPassword
|
|
2893
2864
|
in: query
|
|
2894
2865
|
description: Password used to unlock an encrypted config file.
|
|
2895
2866
|
schema:
|
|
2896
2867
|
type: string
|
|
2897
|
-
required: true
|
|
2898
2868
|
Config_UpdatePostNameParam:
|
|
2899
2869
|
name: name
|
|
2900
2870
|
in: query
|
|
2901
2871
|
description: Name of the remote configuration to update.
|
|
2902
2872
|
schema:
|
|
2903
2873
|
type: string
|
|
2904
|
-
required: true
|
|
2905
2874
|
Config_UpdatePostParametersParam:
|
|
2906
2875
|
name: parameters
|
|
2907
2876
|
in: query
|
|
2908
2877
|
description: JSON object of configuration key/value pairs to apply to the remote.
|
|
2909
2878
|
schema:
|
|
2910
2879
|
type: string
|
|
2911
|
-
required: true
|
|
2912
2880
|
Config_UpdatePostOptParam:
|
|
2913
2881
|
name: opt
|
|
2914
2882
|
in: query
|
|
@@ -2921,35 +2889,30 @@ components:
|
|
|
2921
2889
|
description: Numeric identifier of the job to query, as returned from an async call.
|
|
2922
2890
|
schema:
|
|
2923
2891
|
type: number
|
|
2924
|
-
required: true
|
|
2925
2892
|
Job_StopPostJobidParam:
|
|
2926
2893
|
name: jobid
|
|
2927
2894
|
in: query
|
|
2928
2895
|
description: Numeric identifier of the job to cancel.
|
|
2929
2896
|
schema:
|
|
2930
2897
|
type: number
|
|
2931
|
-
required: true
|
|
2932
2898
|
Job_StopgroupPostGroupParam:
|
|
2933
2899
|
name: group
|
|
2934
2900
|
in: query
|
|
2935
2901
|
description: Stats group name whose active jobs should be stopped.
|
|
2936
2902
|
schema:
|
|
2937
2903
|
type: string
|
|
2938
|
-
required: true
|
|
2939
2904
|
Operations_ListPostFsParam:
|
|
2940
2905
|
name: fs
|
|
2941
2906
|
in: query
|
|
2942
2907
|
description: Remote name or path to list, for example `drive:`.
|
|
2943
2908
|
schema:
|
|
2944
2909
|
type: string
|
|
2945
|
-
required: true
|
|
2946
2910
|
Operations_ListPostRemoteParam:
|
|
2947
2911
|
name: remote
|
|
2948
2912
|
in: query
|
|
2949
2913
|
description: Directory path within `fs` to list; leave empty to target the root.
|
|
2950
2914
|
schema:
|
|
2951
2915
|
type: string
|
|
2952
|
-
required: true
|
|
2953
2916
|
Operations_ListPostOptParam:
|
|
2954
2917
|
name: opt
|
|
2955
2918
|
in: query
|
|
@@ -3026,14 +2989,12 @@ components:
|
|
|
3026
2989
|
description: Remote name or path that contains the item to inspect.
|
|
3027
2990
|
schema:
|
|
3028
2991
|
type: string
|
|
3029
|
-
required: true
|
|
3030
2992
|
Operations_StatPostRemoteParam:
|
|
3031
2993
|
name: remote
|
|
3032
2994
|
in: query
|
|
3033
2995
|
description: Path to the file or directory within `fs` to describe.
|
|
3034
2996
|
schema:
|
|
3035
2997
|
type: string
|
|
3036
|
-
required: true
|
|
3037
2998
|
Operations_StatPostOptParam:
|
|
3038
2999
|
name: opt
|
|
3039
3000
|
in: query
|
|
@@ -3046,77 +3007,66 @@ components:
|
|
|
3046
3007
|
description: Remote name or path to query for capacity information.
|
|
3047
3008
|
schema:
|
|
3048
3009
|
type: string
|
|
3049
|
-
required: true
|
|
3050
3010
|
Operations_PurgePostFsParam:
|
|
3051
3011
|
name: fs
|
|
3052
3012
|
in: query
|
|
3053
3013
|
description: Remote name or path from which to remove all contents.
|
|
3054
3014
|
schema:
|
|
3055
3015
|
type: string
|
|
3056
|
-
required: true
|
|
3057
3016
|
Operations_PurgePostRemoteParam:
|
|
3058
3017
|
name: remote
|
|
3059
3018
|
in: query
|
|
3060
3019
|
description: Path within `fs` whose contents should be purged.
|
|
3061
3020
|
schema:
|
|
3062
3021
|
type: string
|
|
3063
|
-
required: true
|
|
3064
3022
|
Operations_UploadfilePostFsParam:
|
|
3065
3023
|
name: fs
|
|
3066
3024
|
in: query
|
|
3067
3025
|
description: Remote name or path where the uploaded file should be stored.
|
|
3068
3026
|
schema:
|
|
3069
3027
|
type: string
|
|
3070
|
-
required: true
|
|
3071
3028
|
Operations_UploadfilePostRemoteParam:
|
|
3072
3029
|
name: remote
|
|
3073
3030
|
in: query
|
|
3074
3031
|
description: Destination path within `fs` for the uploaded file.
|
|
3075
3032
|
schema:
|
|
3076
3033
|
type: string
|
|
3077
|
-
required: true
|
|
3078
3034
|
Operations_MkdirPostFsParam:
|
|
3079
3035
|
name: fs
|
|
3080
3036
|
in: query
|
|
3081
3037
|
description: Remote name or path in which to create a directory.
|
|
3082
3038
|
schema:
|
|
3083
3039
|
type: string
|
|
3084
|
-
required: true
|
|
3085
3040
|
Operations_MkdirPostRemoteParam:
|
|
3086
3041
|
name: remote
|
|
3087
3042
|
in: query
|
|
3088
3043
|
description: Directory path within `fs` to create.
|
|
3089
3044
|
schema:
|
|
3090
3045
|
type: string
|
|
3091
|
-
required: true
|
|
3092
3046
|
Operations_RmdirPostFsParam:
|
|
3093
3047
|
name: fs
|
|
3094
3048
|
in: query
|
|
3095
3049
|
description: Remote name or path containing the directory to remove.
|
|
3096
3050
|
schema:
|
|
3097
3051
|
type: string
|
|
3098
|
-
required: true
|
|
3099
3052
|
Operations_RmdirPostRemoteParam:
|
|
3100
3053
|
name: remote
|
|
3101
3054
|
in: query
|
|
3102
3055
|
description: Directory path within `fs` to delete.
|
|
3103
3056
|
schema:
|
|
3104
3057
|
type: string
|
|
3105
|
-
required: true
|
|
3106
3058
|
Operations_CheckPostSrcFsParam:
|
|
3107
3059
|
name: srcFs
|
|
3108
3060
|
in: query
|
|
3109
3061
|
description: Source remote name or path to verify, e.g. `drive:`.
|
|
3110
3062
|
schema:
|
|
3111
3063
|
type: string
|
|
3112
|
-
required: true
|
|
3113
3064
|
Operations_CheckPostDstFsParam:
|
|
3114
3065
|
name: dstFs
|
|
3115
3066
|
in: query
|
|
3116
3067
|
description: Destination remote name or path that should match the source.
|
|
3117
3068
|
schema:
|
|
3118
3069
|
type: string
|
|
3119
|
-
required: true
|
|
3120
3070
|
Operations_CheckPostDownloadParam:
|
|
3121
3071
|
name: download
|
|
3122
3072
|
in: query
|
|
@@ -3189,14 +3139,12 @@ components:
|
|
|
3189
3139
|
description: Source remote path to sync from, e.g. `drive:src`.
|
|
3190
3140
|
schema:
|
|
3191
3141
|
type: string
|
|
3192
|
-
required: true
|
|
3193
3142
|
Sync_SyncPostDstFsParam:
|
|
3194
3143
|
name: dstFs
|
|
3195
3144
|
in: query
|
|
3196
3145
|
description: Destination remote path to sync to, e.g. `drive:dst`.
|
|
3197
3146
|
schema:
|
|
3198
3147
|
type: string
|
|
3199
|
-
required: true
|
|
3200
3148
|
Sync_SyncPostCreateEmptySrcDirsParam:
|
|
3201
3149
|
name: createEmptySrcDirs
|
|
3202
3150
|
in: query
|
|
@@ -3209,14 +3157,12 @@ components:
|
|
|
3209
3157
|
description: Source remote path to copy from.
|
|
3210
3158
|
schema:
|
|
3211
3159
|
type: string
|
|
3212
|
-
required: true
|
|
3213
3160
|
Sync_CopyPostDstFsParam:
|
|
3214
3161
|
name: dstFs
|
|
3215
3162
|
in: query
|
|
3216
3163
|
description: Destination remote path to copy to.
|
|
3217
3164
|
schema:
|
|
3218
3165
|
type: string
|
|
3219
|
-
required: true
|
|
3220
3166
|
Sync_CopyPostCreateEmptySrcDirsParam:
|
|
3221
3167
|
name: createEmptySrcDirs
|
|
3222
3168
|
in: query
|
|
@@ -3229,14 +3175,12 @@ components:
|
|
|
3229
3175
|
description: Source remote path whose contents will be moved.
|
|
3230
3176
|
schema:
|
|
3231
3177
|
type: string
|
|
3232
|
-
required: true
|
|
3233
3178
|
Sync_MovePostDstFsParam:
|
|
3234
3179
|
name: dstFs
|
|
3235
3180
|
in: query
|
|
3236
3181
|
description: Destination remote path that will receive moved files.
|
|
3237
3182
|
schema:
|
|
3238
3183
|
type: string
|
|
3239
|
-
required: true
|
|
3240
3184
|
Sync_MovePostCreateEmptySrcDirsParam:
|
|
3241
3185
|
name: createEmptySrcDirs
|
|
3242
3186
|
in: query
|
|
@@ -3255,14 +3199,12 @@ components:
|
|
|
3255
3199
|
description: First remote directory, e.g. `drive:path1`.
|
|
3256
3200
|
schema:
|
|
3257
3201
|
type: string
|
|
3258
|
-
required: true
|
|
3259
3202
|
Sync_BisyncPostPath2Param:
|
|
3260
3203
|
name: path2
|
|
3261
3204
|
in: query
|
|
3262
3205
|
description: Second remote directory, e.g. `drive:path2`.
|
|
3263
3206
|
schema:
|
|
3264
3207
|
type: string
|
|
3265
|
-
required: true
|
|
3266
3208
|
Sync_BisyncPostDryRunParam:
|
|
3267
3209
|
name: dryRun
|
|
3268
3210
|
in: query
|
|
@@ -3377,137 +3319,153 @@ components:
|
|
|
3377
3319
|
description: Overrides for the `dlna` option block.
|
|
3378
3320
|
style: deepObject
|
|
3379
3321
|
explode: true
|
|
3380
|
-
schema:
|
|
3322
|
+
schema:
|
|
3381
3323
|
type: object
|
|
3382
|
-
additionalProperties:
|
|
3383
|
-
oneOf:
|
|
3384
|
-
- type: string
|
|
3385
|
-
- type: number
|
|
3386
|
-
- type: integer
|
|
3387
|
-
- type: boolean
|
|
3388
|
-
- type: array
|
|
3389
|
-
items: {}
|
|
3390
|
-
- type: object
|
|
3391
|
-
additionalProperties: {}
|
|
3324
|
+
additionalProperties: true
|
|
3392
3325
|
Options_SetPostFilterParam:
|
|
3393
3326
|
name: filter
|
|
3394
3327
|
in: query
|
|
3395
3328
|
description: Overrides for the `filter` option block.
|
|
3396
3329
|
style: deepObject
|
|
3397
3330
|
explode: true
|
|
3398
|
-
schema:
|
|
3331
|
+
schema:
|
|
3332
|
+
type: object
|
|
3333
|
+
additionalProperties: true
|
|
3399
3334
|
Options_SetPostFtpParam:
|
|
3400
3335
|
name: ftp
|
|
3401
3336
|
in: query
|
|
3402
3337
|
description: Overrides for the `ftp` option block.
|
|
3403
3338
|
style: deepObject
|
|
3404
3339
|
explode: true
|
|
3405
|
-
schema:
|
|
3340
|
+
schema:
|
|
3341
|
+
type: object
|
|
3342
|
+
additionalProperties: true
|
|
3406
3343
|
Options_SetPostMainParam:
|
|
3407
3344
|
name: main
|
|
3408
3345
|
in: query
|
|
3409
3346
|
description: Overrides for the `main` option block.
|
|
3410
3347
|
style: deepObject
|
|
3411
3348
|
explode: true
|
|
3412
|
-
schema:
|
|
3349
|
+
schema:
|
|
3350
|
+
type: object
|
|
3351
|
+
additionalProperties: true
|
|
3413
3352
|
Options_SetPostHttpParam:
|
|
3414
3353
|
name: http
|
|
3415
3354
|
in: query
|
|
3416
3355
|
description: Overrides for the `http` option block.
|
|
3417
3356
|
style: deepObject
|
|
3418
3357
|
explode: true
|
|
3419
|
-
schema:
|
|
3358
|
+
schema:
|
|
3359
|
+
type: object
|
|
3360
|
+
additionalProperties: true
|
|
3420
3361
|
Options_SetPostLogParam:
|
|
3421
3362
|
name: log
|
|
3422
3363
|
in: query
|
|
3423
3364
|
description: Overrides for the `log` option block.
|
|
3424
3365
|
style: deepObject
|
|
3425
3366
|
explode: true
|
|
3426
|
-
schema:
|
|
3367
|
+
schema:
|
|
3368
|
+
type: object
|
|
3369
|
+
additionalProperties: true
|
|
3427
3370
|
Options_SetPostMountParam:
|
|
3428
3371
|
name: mount
|
|
3429
3372
|
in: query
|
|
3430
3373
|
description: Overrides for the `mount` option block.
|
|
3431
3374
|
style: deepObject
|
|
3432
3375
|
explode: true
|
|
3433
|
-
schema:
|
|
3376
|
+
schema:
|
|
3377
|
+
type: object
|
|
3378
|
+
additionalProperties: true
|
|
3434
3379
|
Options_SetPostNfsParam:
|
|
3435
3380
|
name: nfs
|
|
3436
3381
|
in: query
|
|
3437
3382
|
description: Overrides for the `nfs` option block.
|
|
3438
3383
|
style: deepObject
|
|
3439
3384
|
explode: true
|
|
3440
|
-
schema:
|
|
3385
|
+
schema:
|
|
3386
|
+
type: object
|
|
3387
|
+
additionalProperties: true
|
|
3441
3388
|
Options_SetPostProxyParam:
|
|
3442
3389
|
name: proxy
|
|
3443
3390
|
in: query
|
|
3444
3391
|
description: Overrides for the `proxy` option block.
|
|
3445
3392
|
style: deepObject
|
|
3446
3393
|
explode: true
|
|
3447
|
-
schema:
|
|
3394
|
+
schema:
|
|
3395
|
+
type: object
|
|
3396
|
+
additionalProperties: true
|
|
3448
3397
|
Options_SetPostRcParam:
|
|
3449
3398
|
name: rc
|
|
3450
3399
|
in: query
|
|
3451
3400
|
description: Overrides for the `rc` option block.
|
|
3452
3401
|
style: deepObject
|
|
3453
3402
|
explode: true
|
|
3454
|
-
schema:
|
|
3403
|
+
schema:
|
|
3404
|
+
type: object
|
|
3405
|
+
additionalProperties: true
|
|
3455
3406
|
Options_SetPostResticParam:
|
|
3456
3407
|
name: restic
|
|
3457
3408
|
in: query
|
|
3458
3409
|
description: Overrides for the `restic` option block.
|
|
3459
3410
|
style: deepObject
|
|
3460
3411
|
explode: true
|
|
3461
|
-
schema:
|
|
3412
|
+
schema:
|
|
3413
|
+
type: object
|
|
3414
|
+
additionalProperties: true
|
|
3462
3415
|
Options_SetPostS3Param:
|
|
3463
3416
|
name: s3
|
|
3464
3417
|
in: query
|
|
3465
3418
|
description: Overrides for the `s3` option block.
|
|
3466
3419
|
style: deepObject
|
|
3467
3420
|
explode: true
|
|
3468
|
-
schema:
|
|
3421
|
+
schema:
|
|
3422
|
+
type: object
|
|
3423
|
+
additionalProperties: true
|
|
3469
3424
|
Options_SetPostSftpParam:
|
|
3470
3425
|
name: sftp
|
|
3471
3426
|
in: query
|
|
3472
3427
|
description: Overrides for the `sftp` option block.
|
|
3473
3428
|
style: deepObject
|
|
3474
3429
|
explode: true
|
|
3475
|
-
schema:
|
|
3430
|
+
schema:
|
|
3431
|
+
type: object
|
|
3432
|
+
additionalProperties: true
|
|
3476
3433
|
Options_SetPostVfsParam:
|
|
3477
3434
|
name: vfs
|
|
3478
3435
|
in: query
|
|
3479
3436
|
description: Overrides for the `vfs` option block.
|
|
3480
3437
|
style: deepObject
|
|
3481
3438
|
explode: true
|
|
3482
|
-
schema:
|
|
3439
|
+
schema:
|
|
3440
|
+
type: object
|
|
3441
|
+
additionalProperties: true
|
|
3483
3442
|
Options_SetPostWebdavParam:
|
|
3484
3443
|
name: webdav
|
|
3485
3444
|
in: query
|
|
3486
3445
|
description: Overrides for the `webdav` option block.
|
|
3487
3446
|
style: deepObject
|
|
3488
3447
|
explode: true
|
|
3489
|
-
schema:
|
|
3448
|
+
schema:
|
|
3449
|
+
type: object
|
|
3450
|
+
additionalProperties: true
|
|
3490
3451
|
Serve_StartPostTypeParam:
|
|
3491
3452
|
name: type
|
|
3492
3453
|
in: query
|
|
3493
3454
|
description: Type of server to start (e.g. `http`, `webdav`, `ftp`, `sftp`).
|
|
3494
3455
|
schema:
|
|
3495
3456
|
type: string
|
|
3496
|
-
required: true
|
|
3497
3457
|
Serve_StartPostFsParam:
|
|
3498
3458
|
name: fs
|
|
3499
3459
|
in: query
|
|
3500
3460
|
description: Remote path that will be served.
|
|
3501
3461
|
schema:
|
|
3502
3462
|
type: string
|
|
3503
|
-
required: true
|
|
3504
3463
|
Serve_StartPostAddrParam:
|
|
3505
3464
|
name: addr
|
|
3506
3465
|
in: query
|
|
3507
3466
|
description: Address and port to bind the server to, such as `:5572` or `localhost:8080`.
|
|
3508
3467
|
schema:
|
|
3509
3468
|
type: string
|
|
3510
|
-
required: true
|
|
3511
3469
|
Serve_StartPostAdditionalParam:
|
|
3512
3470
|
name: params
|
|
3513
3471
|
in: query
|
|
@@ -3523,7 +3481,6 @@ components:
|
|
|
3523
3481
|
description: Identifier of the running serve instance returned by `serve/start`.
|
|
3524
3482
|
schema:
|
|
3525
3483
|
type: string
|
|
3526
|
-
required: true
|
|
3527
3484
|
Vfs_ForgetPostFsParam:
|
|
3528
3485
|
name: fs
|
|
3529
3486
|
in: query
|
|
@@ -3581,14 +3538,12 @@ components:
|
|
|
3581
3538
|
description: Queue item ID as returned by `vfs/queue`.
|
|
3582
3539
|
schema:
|
|
3583
3540
|
type: integer
|
|
3584
|
-
required: true
|
|
3585
3541
|
Vfs_QueueSetExpiryPostExpiryParam:
|
|
3586
3542
|
name: expiry
|
|
3587
3543
|
in: query
|
|
3588
3544
|
description: New eligibility time in seconds (may be negative for immediate upload).
|
|
3589
3545
|
schema:
|
|
3590
3546
|
type: number
|
|
3591
|
-
required: true
|
|
3592
3547
|
Vfs_QueueSetExpiryPostRelativeParam:
|
|
3593
3548
|
name: relative
|
|
3594
3549
|
in: query
|
|
@@ -3628,7 +3583,6 @@ components:
|
|
|
3628
3583
|
description: Repository URL of the plugin to install.
|
|
3629
3584
|
schema:
|
|
3630
3585
|
type: string
|
|
3631
|
-
required: true
|
|
3632
3586
|
Pluginsctl_GetPluginsForTypePostTypeParam:
|
|
3633
3587
|
name: type
|
|
3634
3588
|
in: query
|
|
@@ -3647,14 +3601,12 @@ components:
|
|
|
3647
3601
|
description: Name of the plugin to uninstall.
|
|
3648
3602
|
schema:
|
|
3649
3603
|
type: string
|
|
3650
|
-
required: true
|
|
3651
3604
|
Pluginsctl_RemoveTestPluginPostNameParam:
|
|
3652
3605
|
name: name
|
|
3653
3606
|
in: query
|
|
3654
3607
|
description: Name of the test plugin to uninstall.
|
|
3655
3608
|
schema:
|
|
3656
3609
|
type: string
|
|
3657
|
-
required: true
|
|
3658
3610
|
responses:
|
|
3659
3611
|
RcError:
|
|
3660
3612
|
description: Any error response (HTTP 4xx/5xx)
|
|
@@ -3686,7 +3638,24 @@ components:
|
|
|
3686
3638
|
application/json:
|
|
3687
3639
|
schema:
|
|
3688
3640
|
type: object
|
|
3641
|
+
properties:
|
|
3642
|
+
jobid:
|
|
3643
|
+
type: integer
|
|
3644
|
+
description: Job ID returned when _async=true.
|
|
3689
3645
|
additionalProperties: true
|
|
3646
|
+
ServeTypesResponse:
|
|
3647
|
+
description: Supported rclone serve protocols.
|
|
3648
|
+
content:
|
|
3649
|
+
application/json:
|
|
3650
|
+
schema:
|
|
3651
|
+
type: object
|
|
3652
|
+
properties:
|
|
3653
|
+
types:
|
|
3654
|
+
type: array
|
|
3655
|
+
items:
|
|
3656
|
+
type: string
|
|
3657
|
+
required:
|
|
3658
|
+
- types
|
|
3690
3659
|
SyncJobResponse:
|
|
3691
3660
|
description: Response for sync operations, containing job ID if async.
|
|
3692
3661
|
content:
|
|
@@ -3703,8 +3672,7 @@ components:
|
|
|
3703
3672
|
application/json:
|
|
3704
3673
|
schema:
|
|
3705
3674
|
type: object
|
|
3706
|
-
additionalProperties:
|
|
3707
|
-
nullable: true
|
|
3675
|
+
additionalProperties: {}
|
|
3708
3676
|
OperationsFsinfoResponse:
|
|
3709
3677
|
description: Capabilities, supported hashes, and metadata for the specified remote.
|
|
3710
3678
|
content:
|
|
@@ -3721,8 +3689,9 @@ components:
|
|
|
3721
3689
|
items:
|
|
3722
3690
|
type: string
|
|
3723
3691
|
MetadataInfo:
|
|
3724
|
-
type:
|
|
3725
|
-
|
|
3692
|
+
type:
|
|
3693
|
+
- object
|
|
3694
|
+
- "null"
|
|
3726
3695
|
additionalProperties: true
|
|
3727
3696
|
Name:
|
|
3728
3697
|
type: string
|
|
@@ -3830,13 +3799,29 @@ components:
|
|
|
3830
3799
|
error:
|
|
3831
3800
|
type: boolean
|
|
3832
3801
|
result:
|
|
3833
|
-
type:
|
|
3834
|
-
|
|
3802
|
+
type:
|
|
3803
|
+
- string
|
|
3804
|
+
- "null"
|
|
3835
3805
|
returnType:
|
|
3836
|
-
type:
|
|
3837
|
-
|
|
3806
|
+
type:
|
|
3807
|
+
- string
|
|
3808
|
+
- "null"
|
|
3838
3809
|
required:
|
|
3839
3810
|
- error
|
|
3811
|
+
CoreDisksResponse:
|
|
3812
|
+
description: Locally accessible paths including mount points, user directories, and removable volumes.
|
|
3813
|
+
content:
|
|
3814
|
+
application/json:
|
|
3815
|
+
schema:
|
|
3816
|
+
type: object
|
|
3817
|
+
properties:
|
|
3818
|
+
disks:
|
|
3819
|
+
type: array
|
|
3820
|
+
items:
|
|
3821
|
+
type: string
|
|
3822
|
+
description: Accessible local paths such as disk mount points, user home folders, and removable volumes.
|
|
3823
|
+
required:
|
|
3824
|
+
- disks
|
|
3840
3825
|
CoreDuResponse:
|
|
3841
3826
|
description: Disk usage summary for the requested directory.
|
|
3842
3827
|
content:
|
|
@@ -4044,7 +4029,6 @@ components:
|
|
|
4044
4029
|
type: object
|
|
4045
4030
|
properties:
|
|
4046
4031
|
result:
|
|
4047
|
-
nullable: true
|
|
4048
4032
|
description: Backend command result payload
|
|
4049
4033
|
additionalProperties: true
|
|
4050
4034
|
ConfigDumpResponse:
|
|
@@ -4064,16 +4048,12 @@ components:
|
|
|
4064
4048
|
schema:
|
|
4065
4049
|
type: object
|
|
4066
4050
|
required:
|
|
4067
|
-
- name
|
|
4068
4051
|
- type
|
|
4069
4052
|
properties:
|
|
4070
|
-
name:
|
|
4071
|
-
type: string
|
|
4072
4053
|
type:
|
|
4073
4054
|
type: string
|
|
4074
|
-
|
|
4075
|
-
|
|
4076
|
-
additionalProperties: true
|
|
4055
|
+
additionalProperties:
|
|
4056
|
+
type: string
|
|
4077
4057
|
ConfigListremotesResponse:
|
|
4078
4058
|
description: Names of configured remotes.
|
|
4079
4059
|
content:
|
|
@@ -4193,8 +4173,9 @@ components:
|
|
|
4193
4173
|
errors:
|
|
4194
4174
|
type: number
|
|
4195
4175
|
eta:
|
|
4196
|
-
type:
|
|
4197
|
-
|
|
4176
|
+
type:
|
|
4177
|
+
- number
|
|
4178
|
+
- "null"
|
|
4198
4179
|
fatalError:
|
|
4199
4180
|
type: boolean
|
|
4200
4181
|
lastError:
|
|
@@ -4315,10 +4296,8 @@ components:
|
|
|
4315
4296
|
description: True if the job completed successfully.
|
|
4316
4297
|
output:
|
|
4317
4298
|
description: Synchronous-style output payload when available.
|
|
4318
|
-
nullable: true
|
|
4319
4299
|
progress:
|
|
4320
4300
|
description: Progress measurements supplied by the underlying command.
|
|
4321
|
-
nullable: true
|
|
4322
4301
|
required:
|
|
4323
4302
|
- finished
|
|
4324
4303
|
- duration
|
|
@@ -4459,8 +4438,7 @@ components:
|
|
|
4459
4438
|
description: Encrypted path when using crypt remotes.
|
|
4460
4439
|
Metadata:
|
|
4461
4440
|
type: object
|
|
4462
|
-
additionalProperties:
|
|
4463
|
-
nullable: true
|
|
4441
|
+
additionalProperties: {}
|
|
4464
4442
|
description: Backend-provided metadata map.
|
|
4465
4443
|
required:
|
|
4466
4444
|
- list
|
|
@@ -4472,8 +4450,9 @@ components:
|
|
|
4472
4450
|
type: object
|
|
4473
4451
|
properties:
|
|
4474
4452
|
item:
|
|
4475
|
-
type:
|
|
4476
|
-
|
|
4453
|
+
type:
|
|
4454
|
+
- object
|
|
4455
|
+
- "null"
|
|
4477
4456
|
properties:
|
|
4478
4457
|
Path:
|
|
4479
4458
|
type: string
|
|
@@ -4518,8 +4497,7 @@ components:
|
|
|
4518
4497
|
description: Encrypted path when using crypt remotes.
|
|
4519
4498
|
Metadata:
|
|
4520
4499
|
type: object
|
|
4521
|
-
additionalProperties:
|
|
4522
|
-
nullable: true
|
|
4500
|
+
additionalProperties: {}
|
|
4523
4501
|
description: Backend-provided metadata map.
|
|
4524
4502
|
required:
|
|
4525
4503
|
- Path
|
|
@@ -4635,25 +4613,70 @@ components:
|
|
|
4635
4613
|
- vfs
|
|
4636
4614
|
- webdav
|
|
4637
4615
|
properties:
|
|
4638
|
-
dlna:
|
|
4616
|
+
dlna:
|
|
4617
|
+
type: array
|
|
4618
|
+
items:
|
|
4619
|
+
$ref: "#/components/schemas/OptionsInfoOption"
|
|
4620
|
+
filter:
|
|
4621
|
+
type: array
|
|
4622
|
+
items:
|
|
4623
|
+
$ref: "#/components/schemas/OptionsInfoOption"
|
|
4624
|
+
ftp:
|
|
4625
|
+
type: array
|
|
4626
|
+
items:
|
|
4627
|
+
$ref: "#/components/schemas/OptionsInfoOption"
|
|
4628
|
+
http:
|
|
4629
|
+
type: array
|
|
4630
|
+
items:
|
|
4631
|
+
$ref: "#/components/schemas/OptionsInfoOption"
|
|
4632
|
+
log:
|
|
4633
|
+
type: array
|
|
4634
|
+
items:
|
|
4635
|
+
$ref: "#/components/schemas/OptionsInfoOption"
|
|
4636
|
+
main:
|
|
4639
4637
|
type: array
|
|
4640
4638
|
items:
|
|
4641
4639
|
$ref: "#/components/schemas/OptionsInfoOption"
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
|
-
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
|
|
4648
|
-
|
|
4649
|
-
|
|
4650
|
-
|
|
4651
|
-
|
|
4652
|
-
|
|
4653
|
-
|
|
4654
|
-
|
|
4655
|
-
|
|
4656
|
-
|
|
4640
|
+
mount:
|
|
4641
|
+
type: array
|
|
4642
|
+
items:
|
|
4643
|
+
$ref: "#/components/schemas/OptionsInfoOption"
|
|
4644
|
+
nfs:
|
|
4645
|
+
type: array
|
|
4646
|
+
items:
|
|
4647
|
+
$ref: "#/components/schemas/OptionsInfoOption"
|
|
4648
|
+
proxy:
|
|
4649
|
+
type: array
|
|
4650
|
+
items:
|
|
4651
|
+
$ref: "#/components/schemas/OptionsInfoOption"
|
|
4652
|
+
rc:
|
|
4653
|
+
type: array
|
|
4654
|
+
items:
|
|
4655
|
+
$ref: "#/components/schemas/OptionsInfoOption"
|
|
4656
|
+
restic:
|
|
4657
|
+
type: array
|
|
4658
|
+
items:
|
|
4659
|
+
$ref: "#/components/schemas/OptionsInfoOption"
|
|
4660
|
+
s3:
|
|
4661
|
+
type: array
|
|
4662
|
+
items:
|
|
4663
|
+
$ref: "#/components/schemas/OptionsInfoOption"
|
|
4664
|
+
sftp:
|
|
4665
|
+
type: array
|
|
4666
|
+
items:
|
|
4667
|
+
$ref: "#/components/schemas/OptionsInfoOption"
|
|
4668
|
+
vfs:
|
|
4669
|
+
type: array
|
|
4670
|
+
items:
|
|
4671
|
+
$ref: "#/components/schemas/OptionsInfoOption"
|
|
4672
|
+
webdav:
|
|
4673
|
+
type: array
|
|
4674
|
+
items:
|
|
4675
|
+
$ref: "#/components/schemas/OptionsInfoOption"
|
|
4676
|
+
additionalProperties:
|
|
4677
|
+
type: array
|
|
4678
|
+
items:
|
|
4679
|
+
$ref: "#/components/schemas/OptionsInfoOption"
|
|
4657
4680
|
OptionsLocalResponse:
|
|
4658
4681
|
description: Effective option values for the current request, separated into config and filter sections.
|
|
4659
4682
|
content:
|
|
@@ -4713,17 +4736,17 @@ components:
|
|
|
4713
4736
|
DeleteMode:
|
|
4714
4737
|
type: number
|
|
4715
4738
|
DisableFeatures:
|
|
4716
|
-
type:
|
|
4717
|
-
|
|
4718
|
-
|
|
4739
|
+
type:
|
|
4740
|
+
- string
|
|
4741
|
+
- "null"
|
|
4719
4742
|
DisableHTTP2:
|
|
4720
4743
|
type: boolean
|
|
4721
4744
|
DisableHTTPKeepAlives:
|
|
4722
4745
|
type: boolean
|
|
4723
4746
|
DownloadHeaders:
|
|
4724
|
-
type:
|
|
4725
|
-
|
|
4726
|
-
|
|
4747
|
+
type:
|
|
4748
|
+
- string
|
|
4749
|
+
- "null"
|
|
4727
4750
|
DryRun:
|
|
4728
4751
|
type: boolean
|
|
4729
4752
|
Dump:
|
|
@@ -4739,9 +4762,9 @@ components:
|
|
|
4739
4762
|
FsCacheExpireInterval:
|
|
4740
4763
|
type: number
|
|
4741
4764
|
Headers:
|
|
4742
|
-
type:
|
|
4743
|
-
|
|
4744
|
-
|
|
4765
|
+
type:
|
|
4766
|
+
- string
|
|
4767
|
+
- "null"
|
|
4745
4768
|
HumanReadable:
|
|
4746
4769
|
type: boolean
|
|
4747
4770
|
IgnoreCaseSync:
|
|
@@ -4791,13 +4814,13 @@ components:
|
|
|
4791
4814
|
Metadata:
|
|
4792
4815
|
type: boolean
|
|
4793
4816
|
MetadataMapper:
|
|
4794
|
-
type:
|
|
4795
|
-
|
|
4796
|
-
|
|
4817
|
+
type:
|
|
4818
|
+
- string
|
|
4819
|
+
- "null"
|
|
4797
4820
|
MetadataSet:
|
|
4798
|
-
type:
|
|
4799
|
-
|
|
4800
|
-
|
|
4821
|
+
type:
|
|
4822
|
+
- string
|
|
4823
|
+
- "null"
|
|
4801
4824
|
ModifyWindow:
|
|
4802
4825
|
type: number
|
|
4803
4826
|
MultiThreadChunkSize:
|
|
@@ -4829,9 +4852,9 @@ components:
|
|
|
4829
4852
|
PartialSuffix:
|
|
4830
4853
|
type: string
|
|
4831
4854
|
PasswordCommand:
|
|
4832
|
-
type:
|
|
4833
|
-
|
|
4834
|
-
|
|
4855
|
+
type:
|
|
4856
|
+
- string
|
|
4857
|
+
- "null"
|
|
4835
4858
|
Progress:
|
|
4836
4859
|
type: boolean
|
|
4837
4860
|
ProgressTerminalTitle:
|
|
@@ -4881,9 +4904,9 @@ components:
|
|
|
4881
4904
|
UpdateOlder:
|
|
4882
4905
|
type: boolean
|
|
4883
4906
|
UploadHeaders:
|
|
4884
|
-
type:
|
|
4885
|
-
|
|
4886
|
-
|
|
4907
|
+
type:
|
|
4908
|
+
- string
|
|
4909
|
+
- "null"
|
|
4887
4910
|
UseJSONLog:
|
|
4888
4911
|
type: boolean
|
|
4889
4912
|
UseListR:
|
|
@@ -5243,8 +5266,9 @@ components:
|
|
|
5243
5266
|
type: integer
|
|
5244
5267
|
description: Number of active references to the VFS.
|
|
5245
5268
|
diskCache:
|
|
5246
|
-
type:
|
|
5247
|
-
|
|
5269
|
+
type:
|
|
5270
|
+
- object
|
|
5271
|
+
- "null"
|
|
5248
5272
|
additionalProperties: true
|
|
5249
5273
|
description: Disk cache metrics when caching is enabled.
|
|
5250
5274
|
metadataCache:
|
|
@@ -5357,22 +5381,24 @@ components:
|
|
|
5357
5381
|
path:
|
|
5358
5382
|
type: string
|
|
5359
5383
|
input:
|
|
5360
|
-
type:
|
|
5361
|
-
|
|
5362
|
-
|
|
5363
|
-
|
|
5384
|
+
type:
|
|
5385
|
+
- object
|
|
5386
|
+
- "null"
|
|
5387
|
+
additionalProperties: {}
|
|
5364
5388
|
description: Original request parameters echoed for debugging.
|
|
5365
5389
|
ConfigProvider:
|
|
5366
5390
|
type: object
|
|
5367
5391
|
properties:
|
|
5368
5392
|
Aliases:
|
|
5369
|
-
type:
|
|
5370
|
-
|
|
5393
|
+
type:
|
|
5394
|
+
- array
|
|
5395
|
+
- "null"
|
|
5371
5396
|
items:
|
|
5372
5397
|
type: string
|
|
5373
5398
|
CommandHelp:
|
|
5374
|
-
type:
|
|
5375
|
-
|
|
5399
|
+
type:
|
|
5400
|
+
- array
|
|
5401
|
+
- "null"
|
|
5376
5402
|
items:
|
|
5377
5403
|
$ref: "#/components/schemas/ConfigProviderCommandHelp"
|
|
5378
5404
|
Description:
|
|
@@ -5405,8 +5431,9 @@ components:
|
|
|
5405
5431
|
Name:
|
|
5406
5432
|
type: string
|
|
5407
5433
|
Opts:
|
|
5408
|
-
type:
|
|
5409
|
-
|
|
5434
|
+
type:
|
|
5435
|
+
- object
|
|
5436
|
+
- "null"
|
|
5410
5437
|
additionalProperties: true
|
|
5411
5438
|
Short:
|
|
5412
5439
|
type: string
|
|
@@ -5417,8 +5444,9 @@ components:
|
|
|
5417
5444
|
Help:
|
|
5418
5445
|
type: string
|
|
5419
5446
|
System:
|
|
5420
|
-
type:
|
|
5421
|
-
|
|
5447
|
+
type:
|
|
5448
|
+
- object
|
|
5449
|
+
- "null"
|
|
5422
5450
|
additionalProperties:
|
|
5423
5451
|
$ref: "#/components/schemas/ConfigProviderMetadataSystemEntry"
|
|
5424
5452
|
additionalProperties: true
|
|
@@ -5474,10 +5502,10 @@ components:
|
|
|
5474
5502
|
- Valid
|
|
5475
5503
|
additionalProperties: false
|
|
5476
5504
|
Value:
|
|
5477
|
-
nullable: true
|
|
5478
5505
|
anyOf:
|
|
5479
5506
|
- type: boolean
|
|
5480
5507
|
- type: number
|
|
5508
|
+
- type: "null"
|
|
5481
5509
|
Hide:
|
|
5482
5510
|
type: integer
|
|
5483
5511
|
Required:
|
|
@@ -5629,8 +5657,9 @@ components:
|
|
|
5629
5657
|
type: number
|
|
5630
5658
|
description: Bytes transferred so far for this object.
|
|
5631
5659
|
eta:
|
|
5632
|
-
type:
|
|
5633
|
-
|
|
5660
|
+
type:
|
|
5661
|
+
- number
|
|
5662
|
+
- "null"
|
|
5634
5663
|
description: Estimated seconds remaining, when available.
|
|
5635
5664
|
group:
|
|
5636
5665
|
type: string
|
|
@@ -5650,6 +5679,18 @@ components:
|
|
|
5650
5679
|
speedAvg:
|
|
5651
5680
|
type: number
|
|
5652
5681
|
description: Current speed in bytes per second as an exponentially weighted moving average.
|
|
5682
|
+
srcFs:
|
|
5683
|
+
type: string
|
|
5684
|
+
description: Source remote or filesystem for this transfer.
|
|
5685
|
+
dstFs:
|
|
5686
|
+
type: string
|
|
5687
|
+
description: Destination remote or filesystem for this transfer.
|
|
5688
|
+
srcRemote:
|
|
5689
|
+
type: string
|
|
5690
|
+
description: Source path within srcFs.
|
|
5691
|
+
dstRemote:
|
|
5692
|
+
type: string
|
|
5693
|
+
description: Destination path within dstFs.
|
|
5653
5694
|
additionalProperties: true
|
|
5654
5695
|
CoreStatsChecking:
|
|
5655
5696
|
type: object
|
|
@@ -5668,13 +5709,10 @@ components:
|
|
|
5668
5709
|
RcNoopRequest:
|
|
5669
5710
|
type: object
|
|
5670
5711
|
properties:
|
|
5671
|
-
params:
|
|
5672
|
-
type: object
|
|
5673
|
-
additionalProperties: true
|
|
5674
|
-
description: Additional arbitrary parameters allowed.
|
|
5675
5712
|
_async:
|
|
5676
5713
|
type: boolean
|
|
5677
5714
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
5715
|
+
additionalProperties: true
|
|
5678
5716
|
OperationsCleanupRequest:
|
|
5679
5717
|
type: object
|
|
5680
5718
|
properties:
|
|
@@ -5687,8 +5725,6 @@ components:
|
|
|
5687
5725
|
_async:
|
|
5688
5726
|
type: boolean
|
|
5689
5727
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
5690
|
-
required:
|
|
5691
|
-
- fs
|
|
5692
5728
|
OperationsCopyfileRequest:
|
|
5693
5729
|
type: object
|
|
5694
5730
|
properties:
|
|
@@ -5710,11 +5746,6 @@ components:
|
|
|
5710
5746
|
_async:
|
|
5711
5747
|
type: boolean
|
|
5712
5748
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
5713
|
-
required:
|
|
5714
|
-
- srcFs
|
|
5715
|
-
- srcRemote
|
|
5716
|
-
- dstFs
|
|
5717
|
-
- dstRemote
|
|
5718
5749
|
OperationsCopyurlRequest:
|
|
5719
5750
|
type: object
|
|
5720
5751
|
properties:
|
|
@@ -5736,10 +5767,6 @@ components:
|
|
|
5736
5767
|
_async:
|
|
5737
5768
|
type: boolean
|
|
5738
5769
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
5739
|
-
required:
|
|
5740
|
-
- fs
|
|
5741
|
-
- remote
|
|
5742
|
-
- url
|
|
5743
5770
|
OperationsDeleteRequest:
|
|
5744
5771
|
type: object
|
|
5745
5772
|
properties:
|
|
@@ -5758,8 +5785,6 @@ components:
|
|
|
5758
5785
|
_async:
|
|
5759
5786
|
type: boolean
|
|
5760
5787
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
5761
|
-
required:
|
|
5762
|
-
- fs
|
|
5763
5788
|
OperationsDeletefileRequest:
|
|
5764
5789
|
type: object
|
|
5765
5790
|
properties:
|
|
@@ -5775,9 +5800,6 @@ components:
|
|
|
5775
5800
|
_async:
|
|
5776
5801
|
type: boolean
|
|
5777
5802
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
5778
|
-
required:
|
|
5779
|
-
- fs
|
|
5780
|
-
- remote
|
|
5781
5803
|
OperationsFsinfoRequest:
|
|
5782
5804
|
type: object
|
|
5783
5805
|
properties:
|
|
@@ -5790,8 +5812,6 @@ components:
|
|
|
5790
5812
|
_async:
|
|
5791
5813
|
type: boolean
|
|
5792
5814
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
5793
|
-
required:
|
|
5794
|
-
- fs
|
|
5795
5815
|
OperationsHashsumRequest:
|
|
5796
5816
|
type: object
|
|
5797
5817
|
properties:
|
|
@@ -5813,9 +5833,6 @@ components:
|
|
|
5813
5833
|
_async:
|
|
5814
5834
|
type: boolean
|
|
5815
5835
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
5816
|
-
required:
|
|
5817
|
-
- fs
|
|
5818
|
-
- hashType
|
|
5819
5836
|
OperationsHashsumfileRequest:
|
|
5820
5837
|
type: object
|
|
5821
5838
|
properties:
|
|
@@ -5840,10 +5857,6 @@ components:
|
|
|
5840
5857
|
_async:
|
|
5841
5858
|
type: boolean
|
|
5842
5859
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
5843
|
-
required:
|
|
5844
|
-
- fs
|
|
5845
|
-
- remote
|
|
5846
|
-
- hashType
|
|
5847
5860
|
OperationsMovefileRequest:
|
|
5848
5861
|
type: object
|
|
5849
5862
|
properties:
|
|
@@ -5865,11 +5878,6 @@ components:
|
|
|
5865
5878
|
_async:
|
|
5866
5879
|
type: boolean
|
|
5867
5880
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
5868
|
-
required:
|
|
5869
|
-
- srcFs
|
|
5870
|
-
- srcRemote
|
|
5871
|
-
- dstFs
|
|
5872
|
-
- dstRemote
|
|
5873
5881
|
OperationsPubliclinkRequest:
|
|
5874
5882
|
type: object
|
|
5875
5883
|
properties:
|
|
@@ -5891,9 +5899,6 @@ components:
|
|
|
5891
5899
|
_async:
|
|
5892
5900
|
type: boolean
|
|
5893
5901
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
5894
|
-
required:
|
|
5895
|
-
- fs
|
|
5896
|
-
- remote
|
|
5897
5902
|
OperationsRmdirsRequest:
|
|
5898
5903
|
type: object
|
|
5899
5904
|
properties:
|
|
@@ -5912,9 +5917,6 @@ components:
|
|
|
5912
5917
|
_async:
|
|
5913
5918
|
type: boolean
|
|
5914
5919
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
5915
|
-
required:
|
|
5916
|
-
- fs
|
|
5917
|
-
- remote
|
|
5918
5920
|
OperationsSettierRequest:
|
|
5919
5921
|
type: object
|
|
5920
5922
|
properties:
|
|
@@ -5927,8 +5929,6 @@ components:
|
|
|
5927
5929
|
_async:
|
|
5928
5930
|
type: boolean
|
|
5929
5931
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
5930
|
-
required:
|
|
5931
|
-
- fs
|
|
5932
5932
|
OperationsSettierfileRequest:
|
|
5933
5933
|
type: object
|
|
5934
5934
|
properties:
|
|
@@ -5944,9 +5944,6 @@ components:
|
|
|
5944
5944
|
_async:
|
|
5945
5945
|
type: boolean
|
|
5946
5946
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
5947
|
-
required:
|
|
5948
|
-
- fs
|
|
5949
|
-
- remote
|
|
5950
5947
|
OperationsSizeRequest:
|
|
5951
5948
|
type: object
|
|
5952
5949
|
properties:
|
|
@@ -5959,8 +5956,6 @@ components:
|
|
|
5959
5956
|
_async:
|
|
5960
5957
|
type: boolean
|
|
5961
5958
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
5962
|
-
required:
|
|
5963
|
-
- fs
|
|
5964
5959
|
CoreBwlimitRequest:
|
|
5965
5960
|
type: object
|
|
5966
5961
|
properties:
|
|
@@ -5996,8 +5991,6 @@ components:
|
|
|
5996
5991
|
_async:
|
|
5997
5992
|
type: boolean
|
|
5998
5993
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
5999
|
-
required:
|
|
6000
|
-
- command
|
|
6001
5994
|
CoreDuRequest:
|
|
6002
5995
|
type: object
|
|
6003
5996
|
properties:
|
|
@@ -6049,8 +6042,6 @@ components:
|
|
|
6049
6042
|
_async:
|
|
6050
6043
|
type: boolean
|
|
6051
6044
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6052
|
-
required:
|
|
6053
|
-
- clear
|
|
6054
6045
|
CorePidRequest:
|
|
6055
6046
|
type: object
|
|
6056
6047
|
properties:
|
|
@@ -6084,8 +6075,6 @@ components:
|
|
|
6084
6075
|
_async:
|
|
6085
6076
|
type: boolean
|
|
6086
6077
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6087
|
-
required:
|
|
6088
|
-
- group
|
|
6089
6078
|
CoreStatsResetRequest:
|
|
6090
6079
|
type: object
|
|
6091
6080
|
properties:
|
|
@@ -6122,8 +6111,6 @@ components:
|
|
|
6122
6111
|
_async:
|
|
6123
6112
|
type: boolean
|
|
6124
6113
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6125
|
-
required:
|
|
6126
|
-
- rate
|
|
6127
6114
|
DebugSetGcPercentRequest:
|
|
6128
6115
|
type: object
|
|
6129
6116
|
properties:
|
|
@@ -6136,8 +6123,6 @@ components:
|
|
|
6136
6123
|
_async:
|
|
6137
6124
|
type: boolean
|
|
6138
6125
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6139
|
-
required:
|
|
6140
|
-
- gc-percent
|
|
6141
6126
|
DebugSetMutexProfileFractionRequest:
|
|
6142
6127
|
type: object
|
|
6143
6128
|
properties:
|
|
@@ -6150,8 +6135,6 @@ components:
|
|
|
6150
6135
|
_async:
|
|
6151
6136
|
type: boolean
|
|
6152
6137
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6153
|
-
required:
|
|
6154
|
-
- rate
|
|
6155
6138
|
DebugSetSoftMemoryLimitRequest:
|
|
6156
6139
|
type: object
|
|
6157
6140
|
properties:
|
|
@@ -6164,8 +6147,6 @@ components:
|
|
|
6164
6147
|
_async:
|
|
6165
6148
|
type: boolean
|
|
6166
6149
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6167
|
-
required:
|
|
6168
|
-
- mem-limit
|
|
6169
6150
|
FscacheClearRequest:
|
|
6170
6151
|
type: object
|
|
6171
6152
|
properties:
|
|
@@ -6223,9 +6204,6 @@ components:
|
|
|
6223
6204
|
_async:
|
|
6224
6205
|
type: boolean
|
|
6225
6206
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6226
|
-
required:
|
|
6227
|
-
- fs
|
|
6228
|
-
- mountPoint
|
|
6229
6207
|
MountTypesRequest:
|
|
6230
6208
|
type: object
|
|
6231
6209
|
properties:
|
|
@@ -6247,8 +6225,6 @@ components:
|
|
|
6247
6225
|
_async:
|
|
6248
6226
|
type: boolean
|
|
6249
6227
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6250
|
-
required:
|
|
6251
|
-
- mountPoint
|
|
6252
6228
|
MountUnmountallRequest:
|
|
6253
6229
|
type: object
|
|
6254
6230
|
properties:
|
|
@@ -6261,23 +6237,17 @@ components:
|
|
|
6261
6237
|
RcNoopAuthRequest:
|
|
6262
6238
|
type: object
|
|
6263
6239
|
properties:
|
|
6264
|
-
params:
|
|
6265
|
-
type: object
|
|
6266
|
-
additionalProperties: true
|
|
6267
|
-
description: Additional arbitrary parameters allowed.
|
|
6268
6240
|
_async:
|
|
6269
6241
|
type: boolean
|
|
6270
6242
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6243
|
+
additionalProperties: true
|
|
6271
6244
|
RcErrorRequest:
|
|
6272
6245
|
type: object
|
|
6273
6246
|
properties:
|
|
6274
|
-
params:
|
|
6275
|
-
type: object
|
|
6276
|
-
additionalProperties: true
|
|
6277
|
-
description: Additional arbitrary parameters allowed.
|
|
6278
6247
|
_async:
|
|
6279
6248
|
type: boolean
|
|
6280
6249
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6250
|
+
additionalProperties: true
|
|
6281
6251
|
RcListRequest:
|
|
6282
6252
|
type: object
|
|
6283
6253
|
properties:
|
|
@@ -6310,8 +6280,6 @@ components:
|
|
|
6310
6280
|
_async:
|
|
6311
6281
|
type: boolean
|
|
6312
6282
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6313
|
-
required:
|
|
6314
|
-
- command
|
|
6315
6283
|
CacheExpireRequest:
|
|
6316
6284
|
type: object
|
|
6317
6285
|
properties:
|
|
@@ -6327,24 +6295,19 @@ components:
|
|
|
6327
6295
|
_async:
|
|
6328
6296
|
type: boolean
|
|
6329
6297
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6330
|
-
required:
|
|
6331
|
-
- remote
|
|
6332
6298
|
CacheFetchRequest:
|
|
6333
6299
|
type: object
|
|
6334
6300
|
properties:
|
|
6335
6301
|
chunks:
|
|
6336
6302
|
type: string
|
|
6337
6303
|
description: Comma-separated chunk specifier list (e.g. `0:10,25:30`) describing file pieces to prefetch.
|
|
6338
|
-
params:
|
|
6339
|
-
type: object
|
|
6340
|
-
additionalProperties: true
|
|
6341
|
-
description: Additional arbitrary parameters allowed.
|
|
6342
6304
|
_group:
|
|
6343
6305
|
type: string
|
|
6344
6306
|
description: Assign the request to a custom stats group.
|
|
6345
6307
|
_async:
|
|
6346
6308
|
type: boolean
|
|
6347
6309
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6310
|
+
additionalProperties: true
|
|
6348
6311
|
CacheStatsRequest:
|
|
6349
6312
|
type: object
|
|
6350
6313
|
properties:
|
|
@@ -6375,10 +6338,6 @@ components:
|
|
|
6375
6338
|
_async:
|
|
6376
6339
|
type: boolean
|
|
6377
6340
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6378
|
-
required:
|
|
6379
|
-
- name
|
|
6380
|
-
- parameters
|
|
6381
|
-
- type
|
|
6382
6341
|
ConfigDeleteRequest:
|
|
6383
6342
|
type: object
|
|
6384
6343
|
properties:
|
|
@@ -6391,8 +6350,6 @@ components:
|
|
|
6391
6350
|
_async:
|
|
6392
6351
|
type: boolean
|
|
6393
6352
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6394
|
-
required:
|
|
6395
|
-
- name
|
|
6396
6353
|
ConfigDumpRequest:
|
|
6397
6354
|
type: object
|
|
6398
6355
|
properties:
|
|
@@ -6414,8 +6371,6 @@ components:
|
|
|
6414
6371
|
_async:
|
|
6415
6372
|
type: boolean
|
|
6416
6373
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6417
|
-
required:
|
|
6418
|
-
- name
|
|
6419
6374
|
ConfigListremotesRequest:
|
|
6420
6375
|
type: object
|
|
6421
6376
|
properties:
|
|
@@ -6440,9 +6395,6 @@ components:
|
|
|
6440
6395
|
_async:
|
|
6441
6396
|
type: boolean
|
|
6442
6397
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6443
|
-
required:
|
|
6444
|
-
- name
|
|
6445
|
-
- parameters
|
|
6446
6398
|
ConfigPathsRequest:
|
|
6447
6399
|
type: object
|
|
6448
6400
|
properties:
|
|
@@ -6473,8 +6425,6 @@ components:
|
|
|
6473
6425
|
_async:
|
|
6474
6426
|
type: boolean
|
|
6475
6427
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6476
|
-
required:
|
|
6477
|
-
- path
|
|
6478
6428
|
ConfigUnlockRequest:
|
|
6479
6429
|
type: object
|
|
6480
6430
|
properties:
|
|
@@ -6487,8 +6437,6 @@ components:
|
|
|
6487
6437
|
_async:
|
|
6488
6438
|
type: boolean
|
|
6489
6439
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6490
|
-
required:
|
|
6491
|
-
- configPassword
|
|
6492
6440
|
ConfigUpdateRequest:
|
|
6493
6441
|
type: object
|
|
6494
6442
|
properties:
|
|
@@ -6507,9 +6455,6 @@ components:
|
|
|
6507
6455
|
_async:
|
|
6508
6456
|
type: boolean
|
|
6509
6457
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6510
|
-
required:
|
|
6511
|
-
- name
|
|
6512
|
-
- parameters
|
|
6513
6458
|
CoreVersionRequest:
|
|
6514
6459
|
type: object
|
|
6515
6460
|
properties:
|
|
@@ -6549,8 +6494,6 @@ components:
|
|
|
6549
6494
|
_async:
|
|
6550
6495
|
type: boolean
|
|
6551
6496
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6552
|
-
required:
|
|
6553
|
-
- jobid
|
|
6554
6497
|
JobStopRequest:
|
|
6555
6498
|
type: object
|
|
6556
6499
|
properties:
|
|
@@ -6560,8 +6503,6 @@ components:
|
|
|
6560
6503
|
_async:
|
|
6561
6504
|
type: boolean
|
|
6562
6505
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6563
|
-
required:
|
|
6564
|
-
- jobid
|
|
6565
6506
|
JobStopgroupRequest:
|
|
6566
6507
|
type: object
|
|
6567
6508
|
properties:
|
|
@@ -6571,8 +6512,6 @@ components:
|
|
|
6571
6512
|
_async:
|
|
6572
6513
|
type: boolean
|
|
6573
6514
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6574
|
-
required:
|
|
6575
|
-
- group
|
|
6576
6515
|
OperationsListRequest:
|
|
6577
6516
|
type: object
|
|
6578
6517
|
properties:
|
|
@@ -6623,9 +6562,6 @@ components:
|
|
|
6623
6562
|
_async:
|
|
6624
6563
|
type: boolean
|
|
6625
6564
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6626
|
-
required:
|
|
6627
|
-
- fs
|
|
6628
|
-
- remote
|
|
6629
6565
|
OperationsStatRequest:
|
|
6630
6566
|
type: object
|
|
6631
6567
|
properties:
|
|
@@ -6644,9 +6580,6 @@ components:
|
|
|
6644
6580
|
_async:
|
|
6645
6581
|
type: boolean
|
|
6646
6582
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6647
|
-
required:
|
|
6648
|
-
- fs
|
|
6649
|
-
- remote
|
|
6650
6583
|
OperationsAboutRequest:
|
|
6651
6584
|
type: object
|
|
6652
6585
|
properties:
|
|
@@ -6659,8 +6592,6 @@ components:
|
|
|
6659
6592
|
_async:
|
|
6660
6593
|
type: boolean
|
|
6661
6594
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6662
|
-
required:
|
|
6663
|
-
- fs
|
|
6664
6595
|
OperationsPurgeRequest:
|
|
6665
6596
|
type: object
|
|
6666
6597
|
properties:
|
|
@@ -6682,9 +6613,6 @@ components:
|
|
|
6682
6613
|
_async:
|
|
6683
6614
|
type: boolean
|
|
6684
6615
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6685
|
-
required:
|
|
6686
|
-
- fs
|
|
6687
|
-
- remote
|
|
6688
6616
|
OperationsMkdirRequest:
|
|
6689
6617
|
type: object
|
|
6690
6618
|
properties:
|
|
@@ -6700,9 +6628,6 @@ components:
|
|
|
6700
6628
|
_async:
|
|
6701
6629
|
type: boolean
|
|
6702
6630
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6703
|
-
required:
|
|
6704
|
-
- fs
|
|
6705
|
-
- remote
|
|
6706
6631
|
OperationsRmdirRequest:
|
|
6707
6632
|
type: object
|
|
6708
6633
|
properties:
|
|
@@ -6718,9 +6643,6 @@ components:
|
|
|
6718
6643
|
_async:
|
|
6719
6644
|
type: boolean
|
|
6720
6645
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6721
|
-
required:
|
|
6722
|
-
- fs
|
|
6723
|
-
- remote
|
|
6724
6646
|
OperationsCheckRequest:
|
|
6725
6647
|
type: object
|
|
6726
6648
|
properties:
|
|
@@ -6769,9 +6691,6 @@ components:
|
|
|
6769
6691
|
_async:
|
|
6770
6692
|
type: boolean
|
|
6771
6693
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6772
|
-
required:
|
|
6773
|
-
- srcFs
|
|
6774
|
-
- dstFs
|
|
6775
6694
|
SyncSyncRequest:
|
|
6776
6695
|
type: object
|
|
6777
6696
|
properties:
|
|
@@ -6796,9 +6715,6 @@ components:
|
|
|
6796
6715
|
_async:
|
|
6797
6716
|
type: boolean
|
|
6798
6717
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6799
|
-
required:
|
|
6800
|
-
- srcFs
|
|
6801
|
-
- dstFs
|
|
6802
6718
|
SyncCopyRequest:
|
|
6803
6719
|
type: object
|
|
6804
6720
|
properties:
|
|
@@ -6823,9 +6739,6 @@ components:
|
|
|
6823
6739
|
_async:
|
|
6824
6740
|
type: boolean
|
|
6825
6741
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6826
|
-
required:
|
|
6827
|
-
- srcFs
|
|
6828
|
-
- dstFs
|
|
6829
6742
|
SyncMoveRequest:
|
|
6830
6743
|
type: object
|
|
6831
6744
|
properties:
|
|
@@ -6853,9 +6766,6 @@ components:
|
|
|
6853
6766
|
_async:
|
|
6854
6767
|
type: boolean
|
|
6855
6768
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6856
|
-
required:
|
|
6857
|
-
- srcFs
|
|
6858
|
-
- dstFs
|
|
6859
6769
|
SyncBisyncRequest:
|
|
6860
6770
|
type: object
|
|
6861
6771
|
properties:
|
|
@@ -6925,9 +6835,6 @@ components:
|
|
|
6925
6835
|
_async:
|
|
6926
6836
|
type: boolean
|
|
6927
6837
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
6928
|
-
required:
|
|
6929
|
-
- path1
|
|
6930
|
-
- path2
|
|
6931
6838
|
OptionsBlocksRequest:
|
|
6932
6839
|
type: object
|
|
6933
6840
|
properties:
|
|
@@ -6966,198 +6873,63 @@ components:
|
|
|
6966
6873
|
properties:
|
|
6967
6874
|
dlna:
|
|
6968
6875
|
type: object
|
|
6969
|
-
additionalProperties:
|
|
6970
|
-
oneOf:
|
|
6971
|
-
- type: string
|
|
6972
|
-
- type: number
|
|
6973
|
-
- type: integer
|
|
6974
|
-
- type: boolean
|
|
6975
|
-
- type: array
|
|
6976
|
-
items: {}
|
|
6977
|
-
- type: object
|
|
6978
|
-
additionalProperties: {}
|
|
6876
|
+
additionalProperties: true
|
|
6979
6877
|
description: Overrides for the `dlna` option block.
|
|
6980
6878
|
filter:
|
|
6981
6879
|
type: object
|
|
6982
|
-
additionalProperties:
|
|
6983
|
-
oneOf:
|
|
6984
|
-
- type: string
|
|
6985
|
-
- type: number
|
|
6986
|
-
- type: integer
|
|
6987
|
-
- type: boolean
|
|
6988
|
-
- type: array
|
|
6989
|
-
items: {}
|
|
6990
|
-
- type: object
|
|
6991
|
-
additionalProperties: {}
|
|
6880
|
+
additionalProperties: true
|
|
6992
6881
|
description: Overrides for the `filter` option block.
|
|
6993
6882
|
ftp:
|
|
6994
6883
|
type: object
|
|
6995
|
-
additionalProperties:
|
|
6996
|
-
oneOf:
|
|
6997
|
-
- type: string
|
|
6998
|
-
- type: number
|
|
6999
|
-
- type: integer
|
|
7000
|
-
- type: boolean
|
|
7001
|
-
- type: array
|
|
7002
|
-
items: {}
|
|
7003
|
-
- type: object
|
|
7004
|
-
additionalProperties: {}
|
|
6884
|
+
additionalProperties: true
|
|
7005
6885
|
description: Overrides for the `ftp` option block.
|
|
7006
6886
|
main:
|
|
7007
6887
|
type: object
|
|
7008
|
-
additionalProperties:
|
|
7009
|
-
oneOf:
|
|
7010
|
-
- type: string
|
|
7011
|
-
- type: number
|
|
7012
|
-
- type: integer
|
|
7013
|
-
- type: boolean
|
|
7014
|
-
- type: array
|
|
7015
|
-
items: {}
|
|
7016
|
-
- type: object
|
|
7017
|
-
additionalProperties: {}
|
|
6888
|
+
additionalProperties: true
|
|
7018
6889
|
description: Overrides for the `main` option block.
|
|
7019
6890
|
http:
|
|
7020
6891
|
type: object
|
|
7021
|
-
additionalProperties:
|
|
7022
|
-
oneOf:
|
|
7023
|
-
- type: string
|
|
7024
|
-
- type: number
|
|
7025
|
-
- type: integer
|
|
7026
|
-
- type: boolean
|
|
7027
|
-
- type: array
|
|
7028
|
-
items: {}
|
|
7029
|
-
- type: object
|
|
7030
|
-
additionalProperties: {}
|
|
6892
|
+
additionalProperties: true
|
|
7031
6893
|
description: Overrides for the `http` option block.
|
|
7032
6894
|
log:
|
|
7033
6895
|
type: object
|
|
7034
|
-
additionalProperties:
|
|
7035
|
-
oneOf:
|
|
7036
|
-
- type: string
|
|
7037
|
-
- type: number
|
|
7038
|
-
- type: integer
|
|
7039
|
-
- type: boolean
|
|
7040
|
-
- type: array
|
|
7041
|
-
items: {}
|
|
7042
|
-
- type: object
|
|
7043
|
-
additionalProperties: {}
|
|
6896
|
+
additionalProperties: true
|
|
7044
6897
|
description: Overrides for the `log` option block.
|
|
7045
6898
|
mount:
|
|
7046
6899
|
type: object
|
|
7047
|
-
additionalProperties:
|
|
7048
|
-
oneOf:
|
|
7049
|
-
- type: string
|
|
7050
|
-
- type: number
|
|
7051
|
-
- type: integer
|
|
7052
|
-
- type: boolean
|
|
7053
|
-
- type: array
|
|
7054
|
-
items: {}
|
|
7055
|
-
- type: object
|
|
7056
|
-
additionalProperties: {}
|
|
6900
|
+
additionalProperties: true
|
|
7057
6901
|
description: Overrides for the `mount` option block.
|
|
7058
6902
|
nfs:
|
|
7059
6903
|
type: object
|
|
7060
|
-
additionalProperties:
|
|
7061
|
-
oneOf:
|
|
7062
|
-
- type: string
|
|
7063
|
-
- type: number
|
|
7064
|
-
- type: integer
|
|
7065
|
-
- type: boolean
|
|
7066
|
-
- type: array
|
|
7067
|
-
items: {}
|
|
7068
|
-
- type: object
|
|
7069
|
-
additionalProperties: {}
|
|
6904
|
+
additionalProperties: true
|
|
7070
6905
|
description: Overrides for the `nfs` option block.
|
|
7071
6906
|
proxy:
|
|
7072
6907
|
type: object
|
|
7073
|
-
additionalProperties:
|
|
7074
|
-
oneOf:
|
|
7075
|
-
- type: string
|
|
7076
|
-
- type: number
|
|
7077
|
-
- type: integer
|
|
7078
|
-
- type: boolean
|
|
7079
|
-
- type: array
|
|
7080
|
-
items: {}
|
|
7081
|
-
- type: object
|
|
7082
|
-
additionalProperties: {}
|
|
6908
|
+
additionalProperties: true
|
|
7083
6909
|
description: Overrides for the `proxy` option block.
|
|
7084
6910
|
rc:
|
|
7085
6911
|
type: object
|
|
7086
|
-
additionalProperties:
|
|
7087
|
-
oneOf:
|
|
7088
|
-
- type: string
|
|
7089
|
-
- type: number
|
|
7090
|
-
- type: integer
|
|
7091
|
-
- type: boolean
|
|
7092
|
-
- type: array
|
|
7093
|
-
items: {}
|
|
7094
|
-
- type: object
|
|
7095
|
-
additionalProperties: {}
|
|
6912
|
+
additionalProperties: true
|
|
7096
6913
|
description: Overrides for the `rc` option block.
|
|
7097
6914
|
restic:
|
|
7098
6915
|
type: object
|
|
7099
|
-
additionalProperties:
|
|
7100
|
-
oneOf:
|
|
7101
|
-
- type: string
|
|
7102
|
-
- type: number
|
|
7103
|
-
- type: integer
|
|
7104
|
-
- type: boolean
|
|
7105
|
-
- type: array
|
|
7106
|
-
items: {}
|
|
7107
|
-
- type: object
|
|
7108
|
-
additionalProperties: {}
|
|
6916
|
+
additionalProperties: true
|
|
7109
6917
|
description: Overrides for the `restic` option block.
|
|
7110
6918
|
s3:
|
|
7111
6919
|
type: object
|
|
7112
|
-
additionalProperties:
|
|
7113
|
-
oneOf:
|
|
7114
|
-
- type: string
|
|
7115
|
-
- type: number
|
|
7116
|
-
- type: integer
|
|
7117
|
-
- type: boolean
|
|
7118
|
-
- type: array
|
|
7119
|
-
items: {}
|
|
7120
|
-
- type: object
|
|
7121
|
-
additionalProperties: {}
|
|
6920
|
+
additionalProperties: true
|
|
7122
6921
|
description: Overrides for the `s3` option block.
|
|
7123
6922
|
sftp:
|
|
7124
6923
|
type: object
|
|
7125
|
-
additionalProperties:
|
|
7126
|
-
oneOf:
|
|
7127
|
-
- type: string
|
|
7128
|
-
- type: number
|
|
7129
|
-
- type: integer
|
|
7130
|
-
- type: boolean
|
|
7131
|
-
- type: array
|
|
7132
|
-
items: {}
|
|
7133
|
-
- type: object
|
|
7134
|
-
additionalProperties: {}
|
|
6924
|
+
additionalProperties: true
|
|
7135
6925
|
description: Overrides for the `sftp` option block.
|
|
7136
6926
|
vfs:
|
|
7137
6927
|
type: object
|
|
7138
|
-
additionalProperties:
|
|
7139
|
-
oneOf:
|
|
7140
|
-
- type: string
|
|
7141
|
-
- type: number
|
|
7142
|
-
- type: integer
|
|
7143
|
-
- type: boolean
|
|
7144
|
-
- type: array
|
|
7145
|
-
items: {}
|
|
7146
|
-
- type: object
|
|
7147
|
-
additionalProperties: {}
|
|
6928
|
+
additionalProperties: true
|
|
7148
6929
|
description: Overrides for the `vfs` option block.
|
|
7149
6930
|
webdav:
|
|
7150
6931
|
type: object
|
|
7151
|
-
additionalProperties:
|
|
7152
|
-
oneOf:
|
|
7153
|
-
- type: string
|
|
7154
|
-
- type: number
|
|
7155
|
-
- type: integer
|
|
7156
|
-
- type: boolean
|
|
7157
|
-
- type: array
|
|
7158
|
-
items: {}
|
|
7159
|
-
- type: object
|
|
7160
|
-
additionalProperties: {}
|
|
6932
|
+
additionalProperties: true
|
|
7161
6933
|
description: Overrides for the `webdav` option block.
|
|
7162
6934
|
_group:
|
|
7163
6935
|
type: string
|
|
@@ -7196,10 +6968,6 @@ components:
|
|
|
7196
6968
|
addr:
|
|
7197
6969
|
type: string
|
|
7198
6970
|
description: Address and port to bind the server to, such as `:5572` or `localhost:8080`.
|
|
7199
|
-
params:
|
|
7200
|
-
type: object
|
|
7201
|
-
additionalProperties: true
|
|
7202
|
-
description: Additional arbitrary parameters allowed.
|
|
7203
6971
|
_config:
|
|
7204
6972
|
type: string
|
|
7205
6973
|
description: JSON encoded config overrides applied for this call only.
|
|
@@ -7212,10 +6980,7 @@ components:
|
|
|
7212
6980
|
_async:
|
|
7213
6981
|
type: boolean
|
|
7214
6982
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
7215
|
-
|
|
7216
|
-
- type
|
|
7217
|
-
- fs
|
|
7218
|
-
- addr
|
|
6983
|
+
additionalProperties: true
|
|
7219
6984
|
ServeStopRequest:
|
|
7220
6985
|
type: object
|
|
7221
6986
|
properties:
|
|
@@ -7228,8 +6993,6 @@ components:
|
|
|
7228
6993
|
_async:
|
|
7229
6994
|
type: boolean
|
|
7230
6995
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
7231
|
-
required:
|
|
7232
|
-
- id
|
|
7233
6996
|
ServeStopallRequest:
|
|
7234
6997
|
type: object
|
|
7235
6998
|
properties:
|
|
@@ -7254,16 +7017,13 @@ components:
|
|
|
7254
7017
|
fs:
|
|
7255
7018
|
type: string
|
|
7256
7019
|
description: Optional VFS identifier to target; required when more than one VFS is active.
|
|
7257
|
-
params:
|
|
7258
|
-
type: object
|
|
7259
|
-
additionalProperties: true
|
|
7260
|
-
description: Additional arbitrary parameters allowed.
|
|
7261
7020
|
_group:
|
|
7262
7021
|
type: string
|
|
7263
7022
|
description: Assign the request to a custom stats group.
|
|
7264
7023
|
_async:
|
|
7265
7024
|
type: boolean
|
|
7266
7025
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
7026
|
+
additionalProperties: true
|
|
7267
7027
|
VfsListRequest:
|
|
7268
7028
|
type: object
|
|
7269
7029
|
properties:
|
|
@@ -7327,9 +7087,6 @@ components:
|
|
|
7327
7087
|
_async:
|
|
7328
7088
|
type: boolean
|
|
7329
7089
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
7330
|
-
required:
|
|
7331
|
-
- id
|
|
7332
|
-
- expiry
|
|
7333
7090
|
VfsRefreshRequest:
|
|
7334
7091
|
type: object
|
|
7335
7092
|
properties:
|
|
@@ -7339,16 +7096,13 @@ components:
|
|
|
7339
7096
|
recursive:
|
|
7340
7097
|
type: boolean
|
|
7341
7098
|
description: Set to true to refresh entire directory trees.
|
|
7342
|
-
params:
|
|
7343
|
-
type: object
|
|
7344
|
-
additionalProperties: true
|
|
7345
|
-
description: Additional arbitrary parameters allowed.
|
|
7346
7099
|
_group:
|
|
7347
7100
|
type: string
|
|
7348
7101
|
description: Assign the request to a custom stats group.
|
|
7349
7102
|
_async:
|
|
7350
7103
|
type: boolean
|
|
7351
7104
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
7105
|
+
additionalProperties: true
|
|
7352
7106
|
VfsStatsRequest:
|
|
7353
7107
|
type: object
|
|
7354
7108
|
properties:
|
|
@@ -7373,8 +7127,6 @@ components:
|
|
|
7373
7127
|
_async:
|
|
7374
7128
|
type: boolean
|
|
7375
7129
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
7376
|
-
required:
|
|
7377
|
-
- url
|
|
7378
7130
|
PluginsctlGetPluginsForTypeRequest:
|
|
7379
7131
|
type: object
|
|
7380
7132
|
properties:
|
|
@@ -7420,8 +7172,6 @@ components:
|
|
|
7420
7172
|
_async:
|
|
7421
7173
|
type: boolean
|
|
7422
7174
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
7423
|
-
required:
|
|
7424
|
-
- name
|
|
7425
7175
|
PluginsctlRemoveTestPluginRequest:
|
|
7426
7176
|
type: object
|
|
7427
7177
|
properties:
|
|
@@ -7434,5 +7184,12 @@ components:
|
|
|
7434
7184
|
_async:
|
|
7435
7185
|
type: boolean
|
|
7436
7186
|
description: Run the command asynchronously. Returns a job id immediately.
|
|
7437
|
-
|
|
7438
|
-
|
|
7187
|
+
CoreDisksRequest:
|
|
7188
|
+
type: object
|
|
7189
|
+
properties:
|
|
7190
|
+
_group:
|
|
7191
|
+
type: string
|
|
7192
|
+
description: Assign the request to a custom stats group.
|
|
7193
|
+
_async:
|
|
7194
|
+
type: boolean
|
|
7195
|
+
description: Run the command asynchronously. Returns a job id immediately.
|