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.
Files changed (4) hide show
  1. package/openapi.json +311 -1196
  2. package/openapi.yaml +99 -419
  3. package/package.json +4 -4
  4. package/types.d.ts +354 -347
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
@@ -1993,7 +2014,7 @@ paths:
1993
2014
  $ref: "#/components/schemas/ServeTypesRequest"
1994
2015
  responses:
1995
2016
  "200":
1996
- $ref: "#/components/responses/EmptyResponse"
2017
+ $ref: "#/components/responses/ServeTypesResponse"
1997
2018
  4XX:
1998
2019
  $ref: "#/components/responses/RcError"
1999
2020
  5XX:
@@ -2354,56 +2375,48 @@ components:
2354
2375
  description: Remote name or path to clean up, for example `drive:`.
2355
2376
  schema:
2356
2377
  type: string
2357
- required: true
2358
2378
  Operations_CopyfilePostSrcFsParam:
2359
2379
  name: srcFs
2360
2380
  in: query
2361
2381
  description: Source remote name or path, such as `drive:` or `/` for the local filesystem.
2362
2382
  schema:
2363
2383
  type: string
2364
- required: true
2365
2384
  Operations_CopyfilePostSrcRemoteParam:
2366
2385
  name: srcRemote
2367
2386
  in: query
2368
2387
  description: Path to the source object within `srcFs`, for example `dir/file.txt`.
2369
2388
  schema:
2370
2389
  type: string
2371
- required: true
2372
2390
  Operations_CopyfilePostDstFsParam:
2373
2391
  name: dstFs
2374
2392
  in: query
2375
2393
  description: Destination remote name or path, such as `drive2:` or `/` for local filesystem.
2376
2394
  schema:
2377
2395
  type: string
2378
- required: true
2379
2396
  Operations_CopyfilePostDstRemoteParam:
2380
2397
  name: dstRemote
2381
2398
  in: query
2382
2399
  description: Target path within `dstFs` where the file should be written.
2383
2400
  schema:
2384
2401
  type: string
2385
- required: true
2386
2402
  Operations_CopyurlPostFsParam:
2387
2403
  name: fs
2388
2404
  in: query
2389
2405
  description: Remote name or path that will receive the downloaded file, e.g. `drive:`.
2390
2406
  schema:
2391
2407
  type: string
2392
- required: true
2393
2408
  Operations_CopyurlPostRemoteParam:
2394
2409
  name: remote
2395
2410
  in: query
2396
2411
  description: Destination path within `fs` where the fetched object will be stored.
2397
2412
  schema:
2398
2413
  type: string
2399
- required: true
2400
2414
  Operations_CopyurlPostUrlParam:
2401
2415
  name: url
2402
2416
  in: query
2403
2417
  description: Source URL to fetch the object from.
2404
2418
  schema:
2405
2419
  type: string
2406
- required: true
2407
2420
  Operations_CopyurlPostAutoFilenameParam:
2408
2421
  name: autoFilename
2409
2422
  in: query
@@ -2416,42 +2429,36 @@ components:
2416
2429
  description: Remote name or path whose contents should be removed.
2417
2430
  schema:
2418
2431
  type: string
2419
- required: true
2420
2432
  Operations_DeletefilePostFsParam:
2421
2433
  name: fs
2422
2434
  in: query
2423
2435
  description: Remote name or path that contains the file to delete.
2424
2436
  schema:
2425
2437
  type: string
2426
- required: true
2427
2438
  Operations_DeletefilePostRemoteParam:
2428
2439
  name: remote
2429
2440
  in: query
2430
2441
  description: Exact path to the file within `fs` that should be deleted.
2431
2442
  schema:
2432
2443
  type: string
2433
- required: true
2434
2444
  Operations_FsinfoPostFsParam:
2435
2445
  name: fs
2436
2446
  in: query
2437
2447
  description: Remote name or path to inspect, e.g. `drive:`.
2438
2448
  schema:
2439
2449
  type: string
2440
- required: true
2441
2450
  Operations_HashsumPostFsParam:
2442
2451
  name: fs
2443
2452
  in: query
2444
2453
  description: Remote name or path to hash, such as `drive:` or `/`.
2445
2454
  schema:
2446
2455
  type: string
2447
- required: true
2448
2456
  Operations_HashsumPostHashTypeParam:
2449
2457
  name: hashType
2450
2458
  in: query
2451
2459
  description: Hash algorithm to use, e.g. `md5`, `sha1`, or another supported name.
2452
2460
  schema:
2453
2461
  type: string
2454
- required: true
2455
2462
  Operations_HashsumPostDownloadParam:
2456
2463
  name: download
2457
2464
  in: query
@@ -2470,21 +2477,18 @@ components:
2470
2477
  description: Remote name or path containing the file to hash.
2471
2478
  schema:
2472
2479
  type: string
2473
- required: true
2474
2480
  Operations_HashsumfilePostRemoteParam:
2475
2481
  name: remote
2476
2482
  in: query
2477
2483
  description: Path to the specific file within `fs` to hash.
2478
2484
  schema:
2479
2485
  type: string
2480
- required: true
2481
2486
  Operations_HashsumfilePostHashTypeParam:
2482
2487
  name: hashType
2483
2488
  in: query
2484
2489
  description: Hash algorithm to use, e.g. `md5`, `sha1`, or another supported name.
2485
2490
  schema:
2486
2491
  type: string
2487
- required: true
2488
2492
  Operations_HashsumfilePostDownloadParam:
2489
2493
  name: download
2490
2494
  in: query
@@ -2503,42 +2507,36 @@ components:
2503
2507
  description: Source remote name or path containing the file to move.
2504
2508
  schema:
2505
2509
  type: string
2506
- required: true
2507
2510
  Operations_MovefilePostSrcRemoteParam:
2508
2511
  name: srcRemote
2509
2512
  in: query
2510
2513
  description: Path to the source object within `srcFs`.
2511
2514
  schema:
2512
2515
  type: string
2513
- required: true
2514
2516
  Operations_MovefilePostDstFsParam:
2515
2517
  name: dstFs
2516
2518
  in: query
2517
2519
  description: Destination remote name or path where the file will be moved.
2518
2520
  schema:
2519
2521
  type: string
2520
- required: true
2521
2522
  Operations_MovefilePostDstRemoteParam:
2522
2523
  name: dstRemote
2523
2524
  in: query
2524
2525
  description: Destination path within `dstFs` for the moved object.
2525
2526
  schema:
2526
2527
  type: string
2527
- required: true
2528
2528
  Operations_PubliclinkPostFsParam:
2529
2529
  name: fs
2530
2530
  in: query
2531
2531
  description: Remote name or path hosting the object for which to manage a public link.
2532
2532
  schema:
2533
2533
  type: string
2534
- required: true
2535
2534
  Operations_PubliclinkPostRemoteParam:
2536
2535
  name: remote
2537
2536
  in: query
2538
2537
  description: Path within `fs` to the object for which to create or remove a public link.
2539
2538
  schema:
2540
2539
  type: string
2541
- required: true
2542
2540
  Operations_PubliclinkPostUnlinkParam:
2543
2541
  name: unlink
2544
2542
  in: query
@@ -2557,14 +2555,12 @@ components:
2557
2555
  description: Remote name or path to scan for empty directories.
2558
2556
  schema:
2559
2557
  type: string
2560
- required: true
2561
2558
  Operations_RmdirsPostRemoteParam:
2562
2559
  name: remote
2563
2560
  in: query
2564
2561
  description: Path within `fs` whose empty subdirectories should be removed.
2565
2562
  schema:
2566
2563
  type: string
2567
- required: true
2568
2564
  Operations_RmdirsPostLeaveRootParam:
2569
2565
  name: leaveRoot
2570
2566
  in: query
@@ -2577,28 +2573,24 @@ components:
2577
2573
  description: Remote name or path whose storage class tier should be changed.
2578
2574
  schema:
2579
2575
  type: string
2580
- required: true
2581
2576
  Operations_SettierfilePostFsParam:
2582
2577
  name: fs
2583
2578
  in: query
2584
2579
  description: Remote name or path that contains the object whose tier should change.
2585
2580
  schema:
2586
2581
  type: string
2587
- required: true
2588
2582
  Operations_SettierfilePostRemoteParam:
2589
2583
  name: remote
2590
2584
  in: query
2591
2585
  description: Path within `fs` to the object whose storage class tier should be updated.
2592
2586
  schema:
2593
2587
  type: string
2594
- required: true
2595
2588
  Operations_SizePostFsParam:
2596
2589
  name: fs
2597
2590
  in: query
2598
2591
  description: Remote name or path to measure aggregate size information for.
2599
2592
  schema:
2600
2593
  type: string
2601
- required: true
2602
2594
  Core_BwlimitPostRateParam:
2603
2595
  name: rate
2604
2596
  in: query
@@ -2611,7 +2603,6 @@ components:
2611
2603
  description: Name of the rclone command to execute, for example `ls` or `lsf`.
2612
2604
  schema:
2613
2605
  type: string
2614
- required: true
2615
2606
  Core_CommandPostArgParam:
2616
2607
  name: arg
2617
2608
  in: query
@@ -2646,7 +2637,6 @@ components:
2646
2637
  description: Plain-text string to obscure for storage in the config file.
2647
2638
  schema:
2648
2639
  type: string
2649
- required: true
2650
2640
  Core_QuitPostExitCodeParam:
2651
2641
  name: exitCode
2652
2642
  in: query
@@ -2659,7 +2649,6 @@ components:
2659
2649
  description: Stats group identifier to remove.
2660
2650
  schema:
2661
2651
  type: string
2662
- required: true
2663
2652
  Core_StatsPostGroupParam:
2664
2653
  name: group
2665
2654
  in: query
@@ -2690,42 +2679,36 @@ components:
2690
2679
  description: Sampling interval in nanoseconds for blocking profile collection; use 1 to capture all events.
2691
2680
  schema:
2692
2681
  type: integer
2693
- required: true
2694
2682
  Debug_SetGcPercentPostGcPercentParam:
2695
2683
  name: gc-percent
2696
2684
  in: query
2697
2685
  description: Target percentage of newly allocated data to trigger garbage collection.
2698
2686
  schema:
2699
2687
  type: integer
2700
- required: true
2701
2688
  Debug_SetMutexProfileFractionPostRateParam:
2702
2689
  name: rate
2703
2690
  in: query
2704
2691
  description: Sampling fraction for mutex contention profiling; set to 0 to disable.
2705
2692
  schema:
2706
2693
  type: integer
2707
- required: true
2708
2694
  Debug_SetSoftMemoryLimitPostMemLimitParam:
2709
2695
  name: mem-limit
2710
2696
  in: query
2711
2697
  description: Soft memory limit for the Go runtime in bytes.
2712
2698
  schema:
2713
2699
  type: integer
2714
- required: true
2715
2700
  Mount_MountPostFsParam:
2716
2701
  name: fs
2717
2702
  in: query
2718
2703
  description: Remote path to mount, such as `drive:` or `remote:subdir`.
2719
2704
  schema:
2720
2705
  type: string
2721
- required: true
2722
2706
  Mount_MountPostMountPointParam:
2723
2707
  name: mountPoint
2724
2708
  in: query
2725
2709
  description: Absolute local path where the remote should be mounted.
2726
2710
  schema:
2727
2711
  type: string
2728
- required: true
2729
2712
  Mount_MountPostMountTypeParam:
2730
2713
  name: mountType
2731
2714
  in: query
@@ -2750,7 +2733,6 @@ components:
2750
2733
  description: Local mount point path to unmount.
2751
2734
  schema:
2752
2735
  type: string
2753
- required: true
2754
2736
  Rc_NoopauthPostAdditionalParam:
2755
2737
  name: params
2756
2738
  in: query
@@ -2775,7 +2757,6 @@ components:
2775
2757
  description: Backend-specific command to invoke.
2776
2758
  schema:
2777
2759
  type: string
2778
- required: true
2779
2760
  Backend_CommandPostFsParam:
2780
2761
  name: fs
2781
2762
  in: query
@@ -2804,7 +2785,6 @@ components:
2804
2785
  description: Remote path to expire from the cache, e.g. `remote:path/to/dir`.
2805
2786
  schema:
2806
2787
  type: string
2807
- required: true
2808
2788
  Cache_ExpirePostWithDataParam:
2809
2789
  name: withData
2810
2790
  in: query
@@ -2832,21 +2812,18 @@ components:
2832
2812
  description: Name of the new remote configuration.
2833
2813
  schema:
2834
2814
  type: string
2835
- required: true
2836
2815
  Config_CreatePostParametersParam:
2837
2816
  name: parameters
2838
2817
  in: query
2839
2818
  description: JSON object of configuration key/value pairs required for the remote.
2840
2819
  schema:
2841
2820
  type: string
2842
- required: true
2843
2821
  Config_CreatePostTypeParam:
2844
2822
  name: type
2845
2823
  in: query
2846
2824
  description: Backend type identifier, such as `drive`, `s3`, or `dropbox`.
2847
2825
  schema:
2848
2826
  type: string
2849
- required: true
2850
2827
  Config_CreatePostOptParam:
2851
2828
  name: opt
2852
2829
  in: query
@@ -2859,56 +2836,48 @@ components:
2859
2836
  description: Name of the remote configuration to delete.
2860
2837
  schema:
2861
2838
  type: string
2862
- required: true
2863
2839
  Config_GetPostNameParam:
2864
2840
  name: name
2865
2841
  in: query
2866
2842
  description: Name of the remote configuration to fetch.
2867
2843
  schema:
2868
2844
  type: string
2869
- required: true
2870
2845
  Config_PasswordPostNameParam:
2871
2846
  name: name
2872
2847
  in: query
2873
2848
  description: Name of the remote whose secrets should be updated.
2874
2849
  schema:
2875
2850
  type: string
2876
- required: true
2877
2851
  Config_PasswordPostParametersParam:
2878
2852
  name: parameters
2879
2853
  in: query
2880
2854
  description: JSON object of password answers, typically including `pass`.
2881
2855
  schema:
2882
2856
  type: string
2883
- required: true
2884
2857
  Config_SetpathPostPathParam:
2885
2858
  name: path
2886
2859
  in: query
2887
2860
  description: Absolute path to the `rclone.conf` file that rclone should use.
2888
2861
  schema:
2889
2862
  type: string
2890
- required: true
2891
2863
  Config_UnlockPostConfigPasswordParam:
2892
2864
  name: configPassword
2893
2865
  in: query
2894
2866
  description: Password used to unlock an encrypted config file.
2895
2867
  schema:
2896
2868
  type: string
2897
- required: true
2898
2869
  Config_UpdatePostNameParam:
2899
2870
  name: name
2900
2871
  in: query
2901
2872
  description: Name of the remote configuration to update.
2902
2873
  schema:
2903
2874
  type: string
2904
- required: true
2905
2875
  Config_UpdatePostParametersParam:
2906
2876
  name: parameters
2907
2877
  in: query
2908
2878
  description: JSON object of configuration key/value pairs to apply to the remote.
2909
2879
  schema:
2910
2880
  type: string
2911
- required: true
2912
2881
  Config_UpdatePostOptParam:
2913
2882
  name: opt
2914
2883
  in: query
@@ -2921,35 +2890,30 @@ components:
2921
2890
  description: Numeric identifier of the job to query, as returned from an async call.
2922
2891
  schema:
2923
2892
  type: number
2924
- required: true
2925
2893
  Job_StopPostJobidParam:
2926
2894
  name: jobid
2927
2895
  in: query
2928
2896
  description: Numeric identifier of the job to cancel.
2929
2897
  schema:
2930
2898
  type: number
2931
- required: true
2932
2899
  Job_StopgroupPostGroupParam:
2933
2900
  name: group
2934
2901
  in: query
2935
2902
  description: Stats group name whose active jobs should be stopped.
2936
2903
  schema:
2937
2904
  type: string
2938
- required: true
2939
2905
  Operations_ListPostFsParam:
2940
2906
  name: fs
2941
2907
  in: query
2942
2908
  description: Remote name or path to list, for example `drive:`.
2943
2909
  schema:
2944
2910
  type: string
2945
- required: true
2946
2911
  Operations_ListPostRemoteParam:
2947
2912
  name: remote
2948
2913
  in: query
2949
2914
  description: Directory path within `fs` to list; leave empty to target the root.
2950
2915
  schema:
2951
2916
  type: string
2952
- required: true
2953
2917
  Operations_ListPostOptParam:
2954
2918
  name: opt
2955
2919
  in: query
@@ -3026,14 +2990,12 @@ components:
3026
2990
  description: Remote name or path that contains the item to inspect.
3027
2991
  schema:
3028
2992
  type: string
3029
- required: true
3030
2993
  Operations_StatPostRemoteParam:
3031
2994
  name: remote
3032
2995
  in: query
3033
2996
  description: Path to the file or directory within `fs` to describe.
3034
2997
  schema:
3035
2998
  type: string
3036
- required: true
3037
2999
  Operations_StatPostOptParam:
3038
3000
  name: opt
3039
3001
  in: query
@@ -3046,77 +3008,66 @@ components:
3046
3008
  description: Remote name or path to query for capacity information.
3047
3009
  schema:
3048
3010
  type: string
3049
- required: true
3050
3011
  Operations_PurgePostFsParam:
3051
3012
  name: fs
3052
3013
  in: query
3053
3014
  description: Remote name or path from which to remove all contents.
3054
3015
  schema:
3055
3016
  type: string
3056
- required: true
3057
3017
  Operations_PurgePostRemoteParam:
3058
3018
  name: remote
3059
3019
  in: query
3060
3020
  description: Path within `fs` whose contents should be purged.
3061
3021
  schema:
3062
3022
  type: string
3063
- required: true
3064
3023
  Operations_UploadfilePostFsParam:
3065
3024
  name: fs
3066
3025
  in: query
3067
3026
  description: Remote name or path where the uploaded file should be stored.
3068
3027
  schema:
3069
3028
  type: string
3070
- required: true
3071
3029
  Operations_UploadfilePostRemoteParam:
3072
3030
  name: remote
3073
3031
  in: query
3074
3032
  description: Destination path within `fs` for the uploaded file.
3075
3033
  schema:
3076
3034
  type: string
3077
- required: true
3078
3035
  Operations_MkdirPostFsParam:
3079
3036
  name: fs
3080
3037
  in: query
3081
3038
  description: Remote name or path in which to create a directory.
3082
3039
  schema:
3083
3040
  type: string
3084
- required: true
3085
3041
  Operations_MkdirPostRemoteParam:
3086
3042
  name: remote
3087
3043
  in: query
3088
3044
  description: Directory path within `fs` to create.
3089
3045
  schema:
3090
3046
  type: string
3091
- required: true
3092
3047
  Operations_RmdirPostFsParam:
3093
3048
  name: fs
3094
3049
  in: query
3095
3050
  description: Remote name or path containing the directory to remove.
3096
3051
  schema:
3097
3052
  type: string
3098
- required: true
3099
3053
  Operations_RmdirPostRemoteParam:
3100
3054
  name: remote
3101
3055
  in: query
3102
3056
  description: Directory path within `fs` to delete.
3103
3057
  schema:
3104
3058
  type: string
3105
- required: true
3106
3059
  Operations_CheckPostSrcFsParam:
3107
3060
  name: srcFs
3108
3061
  in: query
3109
3062
  description: Source remote name or path to verify, e.g. `drive:`.
3110
3063
  schema:
3111
3064
  type: string
3112
- required: true
3113
3065
  Operations_CheckPostDstFsParam:
3114
3066
  name: dstFs
3115
3067
  in: query
3116
3068
  description: Destination remote name or path that should match the source.
3117
3069
  schema:
3118
3070
  type: string
3119
- required: true
3120
3071
  Operations_CheckPostDownloadParam:
3121
3072
  name: download
3122
3073
  in: query
@@ -3189,14 +3140,12 @@ components:
3189
3140
  description: Source remote path to sync from, e.g. `drive:src`.
3190
3141
  schema:
3191
3142
  type: string
3192
- required: true
3193
3143
  Sync_SyncPostDstFsParam:
3194
3144
  name: dstFs
3195
3145
  in: query
3196
3146
  description: Destination remote path to sync to, e.g. `drive:dst`.
3197
3147
  schema:
3198
3148
  type: string
3199
- required: true
3200
3149
  Sync_SyncPostCreateEmptySrcDirsParam:
3201
3150
  name: createEmptySrcDirs
3202
3151
  in: query
@@ -3209,14 +3158,12 @@ components:
3209
3158
  description: Source remote path to copy from.
3210
3159
  schema:
3211
3160
  type: string
3212
- required: true
3213
3161
  Sync_CopyPostDstFsParam:
3214
3162
  name: dstFs
3215
3163
  in: query
3216
3164
  description: Destination remote path to copy to.
3217
3165
  schema:
3218
3166
  type: string
3219
- required: true
3220
3167
  Sync_CopyPostCreateEmptySrcDirsParam:
3221
3168
  name: createEmptySrcDirs
3222
3169
  in: query
@@ -3229,14 +3176,12 @@ components:
3229
3176
  description: Source remote path whose contents will be moved.
3230
3177
  schema:
3231
3178
  type: string
3232
- required: true
3233
3179
  Sync_MovePostDstFsParam:
3234
3180
  name: dstFs
3235
3181
  in: query
3236
3182
  description: Destination remote path that will receive moved files.
3237
3183
  schema:
3238
3184
  type: string
3239
- required: true
3240
3185
  Sync_MovePostCreateEmptySrcDirsParam:
3241
3186
  name: createEmptySrcDirs
3242
3187
  in: query
@@ -3255,14 +3200,12 @@ components:
3255
3200
  description: First remote directory, e.g. `drive:path1`.
3256
3201
  schema:
3257
3202
  type: string
3258
- required: true
3259
3203
  Sync_BisyncPostPath2Param:
3260
3204
  name: path2
3261
3205
  in: query
3262
3206
  description: Second remote directory, e.g. `drive:path2`.
3263
3207
  schema:
3264
3208
  type: string
3265
- required: true
3266
3209
  Sync_BisyncPostDryRunParam:
3267
3210
  name: dryRun
3268
3211
  in: query
@@ -3379,16 +3322,7 @@ components:
3379
3322
  explode: true
3380
3323
  schema: &a1
3381
3324
  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: {}
3325
+ additionalProperties: true
3392
3326
  Options_SetPostFilterParam:
3393
3327
  name: filter
3394
3328
  in: query
@@ -3493,21 +3427,18 @@ components:
3493
3427
  description: Type of server to start (e.g. `http`, `webdav`, `ftp`, `sftp`).
3494
3428
  schema:
3495
3429
  type: string
3496
- required: true
3497
3430
  Serve_StartPostFsParam:
3498
3431
  name: fs
3499
3432
  in: query
3500
3433
  description: Remote path that will be served.
3501
3434
  schema:
3502
3435
  type: string
3503
- required: true
3504
3436
  Serve_StartPostAddrParam:
3505
3437
  name: addr
3506
3438
  in: query
3507
3439
  description: Address and port to bind the server to, such as `:5572` or `localhost:8080`.
3508
3440
  schema:
3509
3441
  type: string
3510
- required: true
3511
3442
  Serve_StartPostAdditionalParam:
3512
3443
  name: params
3513
3444
  in: query
@@ -3523,7 +3454,6 @@ components:
3523
3454
  description: Identifier of the running serve instance returned by `serve/start`.
3524
3455
  schema:
3525
3456
  type: string
3526
- required: true
3527
3457
  Vfs_ForgetPostFsParam:
3528
3458
  name: fs
3529
3459
  in: query
@@ -3581,14 +3511,12 @@ components:
3581
3511
  description: Queue item ID as returned by `vfs/queue`.
3582
3512
  schema:
3583
3513
  type: integer
3584
- required: true
3585
3514
  Vfs_QueueSetExpiryPostExpiryParam:
3586
3515
  name: expiry
3587
3516
  in: query
3588
3517
  description: New eligibility time in seconds (may be negative for immediate upload).
3589
3518
  schema:
3590
3519
  type: number
3591
- required: true
3592
3520
  Vfs_QueueSetExpiryPostRelativeParam:
3593
3521
  name: relative
3594
3522
  in: query
@@ -3628,7 +3556,6 @@ components:
3628
3556
  description: Repository URL of the plugin to install.
3629
3557
  schema:
3630
3558
  type: string
3631
- required: true
3632
3559
  Pluginsctl_GetPluginsForTypePostTypeParam:
3633
3560
  name: type
3634
3561
  in: query
@@ -3647,14 +3574,12 @@ components:
3647
3574
  description: Name of the plugin to uninstall.
3648
3575
  schema:
3649
3576
  type: string
3650
- required: true
3651
3577
  Pluginsctl_RemoveTestPluginPostNameParam:
3652
3578
  name: name
3653
3579
  in: query
3654
3580
  description: Name of the test plugin to uninstall.
3655
3581
  schema:
3656
3582
  type: string
3657
- required: true
3658
3583
  responses:
3659
3584
  RcError:
3660
3585
  description: Any error response (HTTP 4xx/5xx)
@@ -3686,7 +3611,24 @@ components:
3686
3611
  application/json:
3687
3612
  schema:
3688
3613
  type: object
3614
+ properties:
3615
+ jobid:
3616
+ type: integer
3617
+ description: Job ID returned when _async=true.
3689
3618
  additionalProperties: true
3619
+ ServeTypesResponse:
3620
+ description: Supported rclone serve protocols.
3621
+ content:
3622
+ application/json:
3623
+ schema:
3624
+ type: object
3625
+ properties:
3626
+ types:
3627
+ type: array
3628
+ items:
3629
+ type: string
3630
+ required:
3631
+ - types
3690
3632
  SyncJobResponse:
3691
3633
  description: Response for sync operations, containing job ID if async.
3692
3634
  content:
@@ -3837,6 +3779,20 @@ components:
3837
3779
  nullable: true
3838
3780
  required:
3839
3781
  - error
3782
+ CoreDisksResponse:
3783
+ description: Locally accessible paths including mount points, user directories, and removable volumes.
3784
+ content:
3785
+ application/json:
3786
+ schema:
3787
+ type: object
3788
+ properties:
3789
+ disks:
3790
+ type: array
3791
+ items:
3792
+ type: string
3793
+ description: Accessible local paths such as disk mount points, user home folders, and removable volumes.
3794
+ required:
3795
+ - disks
3840
3796
  CoreDuResponse:
3841
3797
  description: Disk usage summary for the requested directory.
3842
3798
  content:
@@ -4064,16 +4020,12 @@ components:
4064
4020
  schema:
4065
4021
  type: object
4066
4022
  required:
4067
- - name
4068
4023
  - type
4069
4024
  properties:
4070
- name:
4071
- type: string
4072
4025
  type:
4073
4026
  type: string
4074
- provider:
4075
- type: string
4076
- additionalProperties: true
4027
+ additionalProperties:
4028
+ type: string
4077
4029
  ConfigListremotesResponse:
4078
4030
  description: Names of configured remotes.
4079
4031
  content:
@@ -5650,6 +5602,18 @@ components:
5650
5602
  speedAvg:
5651
5603
  type: number
5652
5604
  description: Current speed in bytes per second as an exponentially weighted moving average.
5605
+ srcFs:
5606
+ type: string
5607
+ description: Source remote or filesystem for this transfer.
5608
+ dstFs:
5609
+ type: string
5610
+ description: Destination remote or filesystem for this transfer.
5611
+ srcRemote:
5612
+ type: string
5613
+ description: Source path within srcFs.
5614
+ dstRemote:
5615
+ type: string
5616
+ description: Destination path within dstFs.
5653
5617
  additionalProperties: true
5654
5618
  CoreStatsChecking:
5655
5619
  type: object
@@ -5668,13 +5632,10 @@ components:
5668
5632
  RcNoopRequest:
5669
5633
  type: object
5670
5634
  properties:
5671
- params:
5672
- type: object
5673
- additionalProperties: true
5674
- description: Additional arbitrary parameters allowed.
5675
5635
  _async:
5676
5636
  type: boolean
5677
5637
  description: Run the command asynchronously. Returns a job id immediately.
5638
+ additionalProperties: true
5678
5639
  OperationsCleanupRequest:
5679
5640
  type: object
5680
5641
  properties:
@@ -5687,8 +5648,6 @@ components:
5687
5648
  _async:
5688
5649
  type: boolean
5689
5650
  description: Run the command asynchronously. Returns a job id immediately.
5690
- required:
5691
- - fs
5692
5651
  OperationsCopyfileRequest:
5693
5652
  type: object
5694
5653
  properties:
@@ -5710,11 +5669,6 @@ components:
5710
5669
  _async:
5711
5670
  type: boolean
5712
5671
  description: Run the command asynchronously. Returns a job id immediately.
5713
- required:
5714
- - srcFs
5715
- - srcRemote
5716
- - dstFs
5717
- - dstRemote
5718
5672
  OperationsCopyurlRequest:
5719
5673
  type: object
5720
5674
  properties:
@@ -5736,10 +5690,6 @@ components:
5736
5690
  _async:
5737
5691
  type: boolean
5738
5692
  description: Run the command asynchronously. Returns a job id immediately.
5739
- required:
5740
- - fs
5741
- - remote
5742
- - url
5743
5693
  OperationsDeleteRequest:
5744
5694
  type: object
5745
5695
  properties:
@@ -5758,8 +5708,6 @@ components:
5758
5708
  _async:
5759
5709
  type: boolean
5760
5710
  description: Run the command asynchronously. Returns a job id immediately.
5761
- required:
5762
- - fs
5763
5711
  OperationsDeletefileRequest:
5764
5712
  type: object
5765
5713
  properties:
@@ -5775,9 +5723,6 @@ components:
5775
5723
  _async:
5776
5724
  type: boolean
5777
5725
  description: Run the command asynchronously. Returns a job id immediately.
5778
- required:
5779
- - fs
5780
- - remote
5781
5726
  OperationsFsinfoRequest:
5782
5727
  type: object
5783
5728
  properties:
@@ -5790,8 +5735,6 @@ components:
5790
5735
  _async:
5791
5736
  type: boolean
5792
5737
  description: Run the command asynchronously. Returns a job id immediately.
5793
- required:
5794
- - fs
5795
5738
  OperationsHashsumRequest:
5796
5739
  type: object
5797
5740
  properties:
@@ -5813,9 +5756,6 @@ components:
5813
5756
  _async:
5814
5757
  type: boolean
5815
5758
  description: Run the command asynchronously. Returns a job id immediately.
5816
- required:
5817
- - fs
5818
- - hashType
5819
5759
  OperationsHashsumfileRequest:
5820
5760
  type: object
5821
5761
  properties:
@@ -5840,10 +5780,6 @@ components:
5840
5780
  _async:
5841
5781
  type: boolean
5842
5782
  description: Run the command asynchronously. Returns a job id immediately.
5843
- required:
5844
- - fs
5845
- - remote
5846
- - hashType
5847
5783
  OperationsMovefileRequest:
5848
5784
  type: object
5849
5785
  properties:
@@ -5865,11 +5801,6 @@ components:
5865
5801
  _async:
5866
5802
  type: boolean
5867
5803
  description: Run the command asynchronously. Returns a job id immediately.
5868
- required:
5869
- - srcFs
5870
- - srcRemote
5871
- - dstFs
5872
- - dstRemote
5873
5804
  OperationsPubliclinkRequest:
5874
5805
  type: object
5875
5806
  properties:
@@ -5891,9 +5822,6 @@ components:
5891
5822
  _async:
5892
5823
  type: boolean
5893
5824
  description: Run the command asynchronously. Returns a job id immediately.
5894
- required:
5895
- - fs
5896
- - remote
5897
5825
  OperationsRmdirsRequest:
5898
5826
  type: object
5899
5827
  properties:
@@ -5912,9 +5840,6 @@ components:
5912
5840
  _async:
5913
5841
  type: boolean
5914
5842
  description: Run the command asynchronously. Returns a job id immediately.
5915
- required:
5916
- - fs
5917
- - remote
5918
5843
  OperationsSettierRequest:
5919
5844
  type: object
5920
5845
  properties:
@@ -5927,8 +5852,6 @@ components:
5927
5852
  _async:
5928
5853
  type: boolean
5929
5854
  description: Run the command asynchronously. Returns a job id immediately.
5930
- required:
5931
- - fs
5932
5855
  OperationsSettierfileRequest:
5933
5856
  type: object
5934
5857
  properties:
@@ -5944,9 +5867,6 @@ components:
5944
5867
  _async:
5945
5868
  type: boolean
5946
5869
  description: Run the command asynchronously. Returns a job id immediately.
5947
- required:
5948
- - fs
5949
- - remote
5950
5870
  OperationsSizeRequest:
5951
5871
  type: object
5952
5872
  properties:
@@ -5959,8 +5879,6 @@ components:
5959
5879
  _async:
5960
5880
  type: boolean
5961
5881
  description: Run the command asynchronously. Returns a job id immediately.
5962
- required:
5963
- - fs
5964
5882
  CoreBwlimitRequest:
5965
5883
  type: object
5966
5884
  properties:
@@ -5996,8 +5914,6 @@ components:
5996
5914
  _async:
5997
5915
  type: boolean
5998
5916
  description: Run the command asynchronously. Returns a job id immediately.
5999
- required:
6000
- - command
6001
5917
  CoreDuRequest:
6002
5918
  type: object
6003
5919
  properties:
@@ -6049,8 +5965,6 @@ components:
6049
5965
  _async:
6050
5966
  type: boolean
6051
5967
  description: Run the command asynchronously. Returns a job id immediately.
6052
- required:
6053
- - clear
6054
5968
  CorePidRequest:
6055
5969
  type: object
6056
5970
  properties:
@@ -6084,8 +5998,6 @@ components:
6084
5998
  _async:
6085
5999
  type: boolean
6086
6000
  description: Run the command asynchronously. Returns a job id immediately.
6087
- required:
6088
- - group
6089
6001
  CoreStatsResetRequest:
6090
6002
  type: object
6091
6003
  properties:
@@ -6122,8 +6034,6 @@ components:
6122
6034
  _async:
6123
6035
  type: boolean
6124
6036
  description: Run the command asynchronously. Returns a job id immediately.
6125
- required:
6126
- - rate
6127
6037
  DebugSetGcPercentRequest:
6128
6038
  type: object
6129
6039
  properties:
@@ -6136,8 +6046,6 @@ components:
6136
6046
  _async:
6137
6047
  type: boolean
6138
6048
  description: Run the command asynchronously. Returns a job id immediately.
6139
- required:
6140
- - gc-percent
6141
6049
  DebugSetMutexProfileFractionRequest:
6142
6050
  type: object
6143
6051
  properties:
@@ -6150,8 +6058,6 @@ components:
6150
6058
  _async:
6151
6059
  type: boolean
6152
6060
  description: Run the command asynchronously. Returns a job id immediately.
6153
- required:
6154
- - rate
6155
6061
  DebugSetSoftMemoryLimitRequest:
6156
6062
  type: object
6157
6063
  properties:
@@ -6164,8 +6070,6 @@ components:
6164
6070
  _async:
6165
6071
  type: boolean
6166
6072
  description: Run the command asynchronously. Returns a job id immediately.
6167
- required:
6168
- - mem-limit
6169
6073
  FscacheClearRequest:
6170
6074
  type: object
6171
6075
  properties:
@@ -6223,9 +6127,6 @@ components:
6223
6127
  _async:
6224
6128
  type: boolean
6225
6129
  description: Run the command asynchronously. Returns a job id immediately.
6226
- required:
6227
- - fs
6228
- - mountPoint
6229
6130
  MountTypesRequest:
6230
6131
  type: object
6231
6132
  properties:
@@ -6247,8 +6148,6 @@ components:
6247
6148
  _async:
6248
6149
  type: boolean
6249
6150
  description: Run the command asynchronously. Returns a job id immediately.
6250
- required:
6251
- - mountPoint
6252
6151
  MountUnmountallRequest:
6253
6152
  type: object
6254
6153
  properties:
@@ -6261,23 +6160,17 @@ components:
6261
6160
  RcNoopAuthRequest:
6262
6161
  type: object
6263
6162
  properties:
6264
- params:
6265
- type: object
6266
- additionalProperties: true
6267
- description: Additional arbitrary parameters allowed.
6268
6163
  _async:
6269
6164
  type: boolean
6270
6165
  description: Run the command asynchronously. Returns a job id immediately.
6166
+ additionalProperties: true
6271
6167
  RcErrorRequest:
6272
6168
  type: object
6273
6169
  properties:
6274
- params:
6275
- type: object
6276
- additionalProperties: true
6277
- description: Additional arbitrary parameters allowed.
6278
6170
  _async:
6279
6171
  type: boolean
6280
6172
  description: Run the command asynchronously. Returns a job id immediately.
6173
+ additionalProperties: true
6281
6174
  RcListRequest:
6282
6175
  type: object
6283
6176
  properties:
@@ -6310,8 +6203,6 @@ components:
6310
6203
  _async:
6311
6204
  type: boolean
6312
6205
  description: Run the command asynchronously. Returns a job id immediately.
6313
- required:
6314
- - command
6315
6206
  CacheExpireRequest:
6316
6207
  type: object
6317
6208
  properties:
@@ -6327,24 +6218,19 @@ components:
6327
6218
  _async:
6328
6219
  type: boolean
6329
6220
  description: Run the command asynchronously. Returns a job id immediately.
6330
- required:
6331
- - remote
6332
6221
  CacheFetchRequest:
6333
6222
  type: object
6334
6223
  properties:
6335
6224
  chunks:
6336
6225
  type: string
6337
6226
  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
6227
  _group:
6343
6228
  type: string
6344
6229
  description: Assign the request to a custom stats group.
6345
6230
  _async:
6346
6231
  type: boolean
6347
6232
  description: Run the command asynchronously. Returns a job id immediately.
6233
+ additionalProperties: true
6348
6234
  CacheStatsRequest:
6349
6235
  type: object
6350
6236
  properties:
@@ -6375,10 +6261,6 @@ components:
6375
6261
  _async:
6376
6262
  type: boolean
6377
6263
  description: Run the command asynchronously. Returns a job id immediately.
6378
- required:
6379
- - name
6380
- - parameters
6381
- - type
6382
6264
  ConfigDeleteRequest:
6383
6265
  type: object
6384
6266
  properties:
@@ -6391,8 +6273,6 @@ components:
6391
6273
  _async:
6392
6274
  type: boolean
6393
6275
  description: Run the command asynchronously. Returns a job id immediately.
6394
- required:
6395
- - name
6396
6276
  ConfigDumpRequest:
6397
6277
  type: object
6398
6278
  properties:
@@ -6414,8 +6294,6 @@ components:
6414
6294
  _async:
6415
6295
  type: boolean
6416
6296
  description: Run the command asynchronously. Returns a job id immediately.
6417
- required:
6418
- - name
6419
6297
  ConfigListremotesRequest:
6420
6298
  type: object
6421
6299
  properties:
@@ -6440,9 +6318,6 @@ components:
6440
6318
  _async:
6441
6319
  type: boolean
6442
6320
  description: Run the command asynchronously. Returns a job id immediately.
6443
- required:
6444
- - name
6445
- - parameters
6446
6321
  ConfigPathsRequest:
6447
6322
  type: object
6448
6323
  properties:
@@ -6473,8 +6348,6 @@ components:
6473
6348
  _async:
6474
6349
  type: boolean
6475
6350
  description: Run the command asynchronously. Returns a job id immediately.
6476
- required:
6477
- - path
6478
6351
  ConfigUnlockRequest:
6479
6352
  type: object
6480
6353
  properties:
@@ -6487,8 +6360,6 @@ components:
6487
6360
  _async:
6488
6361
  type: boolean
6489
6362
  description: Run the command asynchronously. Returns a job id immediately.
6490
- required:
6491
- - configPassword
6492
6363
  ConfigUpdateRequest:
6493
6364
  type: object
6494
6365
  properties:
@@ -6507,9 +6378,6 @@ components:
6507
6378
  _async:
6508
6379
  type: boolean
6509
6380
  description: Run the command asynchronously. Returns a job id immediately.
6510
- required:
6511
- - name
6512
- - parameters
6513
6381
  CoreVersionRequest:
6514
6382
  type: object
6515
6383
  properties:
@@ -6549,8 +6417,6 @@ components:
6549
6417
  _async:
6550
6418
  type: boolean
6551
6419
  description: Run the command asynchronously. Returns a job id immediately.
6552
- required:
6553
- - jobid
6554
6420
  JobStopRequest:
6555
6421
  type: object
6556
6422
  properties:
@@ -6560,8 +6426,6 @@ components:
6560
6426
  _async:
6561
6427
  type: boolean
6562
6428
  description: Run the command asynchronously. Returns a job id immediately.
6563
- required:
6564
- - jobid
6565
6429
  JobStopgroupRequest:
6566
6430
  type: object
6567
6431
  properties:
@@ -6571,8 +6435,6 @@ components:
6571
6435
  _async:
6572
6436
  type: boolean
6573
6437
  description: Run the command asynchronously. Returns a job id immediately.
6574
- required:
6575
- - group
6576
6438
  OperationsListRequest:
6577
6439
  type: object
6578
6440
  properties:
@@ -6623,9 +6485,6 @@ components:
6623
6485
  _async:
6624
6486
  type: boolean
6625
6487
  description: Run the command asynchronously. Returns a job id immediately.
6626
- required:
6627
- - fs
6628
- - remote
6629
6488
  OperationsStatRequest:
6630
6489
  type: object
6631
6490
  properties:
@@ -6644,9 +6503,6 @@ components:
6644
6503
  _async:
6645
6504
  type: boolean
6646
6505
  description: Run the command asynchronously. Returns a job id immediately.
6647
- required:
6648
- - fs
6649
- - remote
6650
6506
  OperationsAboutRequest:
6651
6507
  type: object
6652
6508
  properties:
@@ -6659,8 +6515,6 @@ components:
6659
6515
  _async:
6660
6516
  type: boolean
6661
6517
  description: Run the command asynchronously. Returns a job id immediately.
6662
- required:
6663
- - fs
6664
6518
  OperationsPurgeRequest:
6665
6519
  type: object
6666
6520
  properties:
@@ -6682,9 +6536,6 @@ components:
6682
6536
  _async:
6683
6537
  type: boolean
6684
6538
  description: Run the command asynchronously. Returns a job id immediately.
6685
- required:
6686
- - fs
6687
- - remote
6688
6539
  OperationsMkdirRequest:
6689
6540
  type: object
6690
6541
  properties:
@@ -6700,9 +6551,6 @@ components:
6700
6551
  _async:
6701
6552
  type: boolean
6702
6553
  description: Run the command asynchronously. Returns a job id immediately.
6703
- required:
6704
- - fs
6705
- - remote
6706
6554
  OperationsRmdirRequest:
6707
6555
  type: object
6708
6556
  properties:
@@ -6718,9 +6566,6 @@ components:
6718
6566
  _async:
6719
6567
  type: boolean
6720
6568
  description: Run the command asynchronously. Returns a job id immediately.
6721
- required:
6722
- - fs
6723
- - remote
6724
6569
  OperationsCheckRequest:
6725
6570
  type: object
6726
6571
  properties:
@@ -6769,9 +6614,6 @@ components:
6769
6614
  _async:
6770
6615
  type: boolean
6771
6616
  description: Run the command asynchronously. Returns a job id immediately.
6772
- required:
6773
- - srcFs
6774
- - dstFs
6775
6617
  SyncSyncRequest:
6776
6618
  type: object
6777
6619
  properties:
@@ -6796,9 +6638,6 @@ components:
6796
6638
  _async:
6797
6639
  type: boolean
6798
6640
  description: Run the command asynchronously. Returns a job id immediately.
6799
- required:
6800
- - srcFs
6801
- - dstFs
6802
6641
  SyncCopyRequest:
6803
6642
  type: object
6804
6643
  properties:
@@ -6823,9 +6662,6 @@ components:
6823
6662
  _async:
6824
6663
  type: boolean
6825
6664
  description: Run the command asynchronously. Returns a job id immediately.
6826
- required:
6827
- - srcFs
6828
- - dstFs
6829
6665
  SyncMoveRequest:
6830
6666
  type: object
6831
6667
  properties:
@@ -6853,9 +6689,6 @@ components:
6853
6689
  _async:
6854
6690
  type: boolean
6855
6691
  description: Run the command asynchronously. Returns a job id immediately.
6856
- required:
6857
- - srcFs
6858
- - dstFs
6859
6692
  SyncBisyncRequest:
6860
6693
  type: object
6861
6694
  properties:
@@ -6925,9 +6758,6 @@ components:
6925
6758
  _async:
6926
6759
  type: boolean
6927
6760
  description: Run the command asynchronously. Returns a job id immediately.
6928
- required:
6929
- - path1
6930
- - path2
6931
6761
  OptionsBlocksRequest:
6932
6762
  type: object
6933
6763
  properties:
@@ -6966,198 +6796,63 @@ components:
6966
6796
  properties:
6967
6797
  dlna:
6968
6798
  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: {}
6799
+ additionalProperties: true
6979
6800
  description: Overrides for the `dlna` option block.
6980
6801
  filter:
6981
6802
  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: {}
6803
+ additionalProperties: true
6992
6804
  description: Overrides for the `filter` option block.
6993
6805
  ftp:
6994
6806
  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: {}
6807
+ additionalProperties: true
7005
6808
  description: Overrides for the `ftp` option block.
7006
6809
  main:
7007
6810
  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: {}
6811
+ additionalProperties: true
7018
6812
  description: Overrides for the `main` option block.
7019
6813
  http:
7020
6814
  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: {}
6815
+ additionalProperties: true
7031
6816
  description: Overrides for the `http` option block.
7032
6817
  log:
7033
6818
  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: {}
6819
+ additionalProperties: true
7044
6820
  description: Overrides for the `log` option block.
7045
6821
  mount:
7046
6822
  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: {}
6823
+ additionalProperties: true
7057
6824
  description: Overrides for the `mount` option block.
7058
6825
  nfs:
7059
6826
  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: {}
6827
+ additionalProperties: true
7070
6828
  description: Overrides for the `nfs` option block.
7071
6829
  proxy:
7072
6830
  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: {}
6831
+ additionalProperties: true
7083
6832
  description: Overrides for the `proxy` option block.
7084
6833
  rc:
7085
6834
  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: {}
6835
+ additionalProperties: true
7096
6836
  description: Overrides for the `rc` option block.
7097
6837
  restic:
7098
6838
  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: {}
6839
+ additionalProperties: true
7109
6840
  description: Overrides for the `restic` option block.
7110
6841
  s3:
7111
6842
  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: {}
6843
+ additionalProperties: true
7122
6844
  description: Overrides for the `s3` option block.
7123
6845
  sftp:
7124
6846
  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: {}
6847
+ additionalProperties: true
7135
6848
  description: Overrides for the `sftp` option block.
7136
6849
  vfs:
7137
6850
  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: {}
6851
+ additionalProperties: true
7148
6852
  description: Overrides for the `vfs` option block.
7149
6853
  webdav:
7150
6854
  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: {}
6855
+ additionalProperties: true
7161
6856
  description: Overrides for the `webdav` option block.
7162
6857
  _group:
7163
6858
  type: string
@@ -7196,10 +6891,6 @@ components:
7196
6891
  addr:
7197
6892
  type: string
7198
6893
  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
6894
  _config:
7204
6895
  type: string
7205
6896
  description: JSON encoded config overrides applied for this call only.
@@ -7212,10 +6903,7 @@ components:
7212
6903
  _async:
7213
6904
  type: boolean
7214
6905
  description: Run the command asynchronously. Returns a job id immediately.
7215
- required:
7216
- - type
7217
- - fs
7218
- - addr
6906
+ additionalProperties: true
7219
6907
  ServeStopRequest:
7220
6908
  type: object
7221
6909
  properties:
@@ -7228,8 +6916,6 @@ components:
7228
6916
  _async:
7229
6917
  type: boolean
7230
6918
  description: Run the command asynchronously. Returns a job id immediately.
7231
- required:
7232
- - id
7233
6919
  ServeStopallRequest:
7234
6920
  type: object
7235
6921
  properties:
@@ -7254,16 +6940,13 @@ components:
7254
6940
  fs:
7255
6941
  type: string
7256
6942
  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
6943
  _group:
7262
6944
  type: string
7263
6945
  description: Assign the request to a custom stats group.
7264
6946
  _async:
7265
6947
  type: boolean
7266
6948
  description: Run the command asynchronously. Returns a job id immediately.
6949
+ additionalProperties: true
7267
6950
  VfsListRequest:
7268
6951
  type: object
7269
6952
  properties:
@@ -7327,9 +7010,6 @@ components:
7327
7010
  _async:
7328
7011
  type: boolean
7329
7012
  description: Run the command asynchronously. Returns a job id immediately.
7330
- required:
7331
- - id
7332
- - expiry
7333
7013
  VfsRefreshRequest:
7334
7014
  type: object
7335
7015
  properties:
@@ -7339,16 +7019,13 @@ components:
7339
7019
  recursive:
7340
7020
  type: boolean
7341
7021
  description: Set to true to refresh entire directory trees.
7342
- params:
7343
- type: object
7344
- additionalProperties: true
7345
- description: Additional arbitrary parameters allowed.
7346
7022
  _group:
7347
7023
  type: string
7348
7024
  description: Assign the request to a custom stats group.
7349
7025
  _async:
7350
7026
  type: boolean
7351
7027
  description: Run the command asynchronously. Returns a job id immediately.
7028
+ additionalProperties: true
7352
7029
  VfsStatsRequest:
7353
7030
  type: object
7354
7031
  properties:
@@ -7373,8 +7050,6 @@ components:
7373
7050
  _async:
7374
7051
  type: boolean
7375
7052
  description: Run the command asynchronously. Returns a job id immediately.
7376
- required:
7377
- - url
7378
7053
  PluginsctlGetPluginsForTypeRequest:
7379
7054
  type: object
7380
7055
  properties:
@@ -7420,8 +7095,6 @@ components:
7420
7095
  _async:
7421
7096
  type: boolean
7422
7097
  description: Run the command asynchronously. Returns a job id immediately.
7423
- required:
7424
- - name
7425
7098
  PluginsctlRemoveTestPluginRequest:
7426
7099
  type: object
7427
7100
  properties:
@@ -7434,5 +7107,12 @@ components:
7434
7107
  _async:
7435
7108
  type: boolean
7436
7109
  description: Run the command asynchronously. Returns a job id immediately.
7437
- required:
7438
- - name
7110
+ CoreDisksRequest:
7111
+ type: object
7112
+ properties:
7113
+ _group:
7114
+ type: string
7115
+ description: Assign the request to a custom stats group.
7116
+ _async:
7117
+ type: boolean
7118
+ description: Run the command asynchronously. Returns a job id immediately.