rclone-openapi 1.73.0 → 1.73.4-rev3
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/README.md +1 -0
- package/openapi.json +3096 -559
- package/openapi.yaml +2765 -871
- package/package.json +6 -5
- package/types.d.ts +1695 -293
package/types.d.ts
CHANGED
|
@@ -2069,6 +2069,14 @@ export interface components {
|
|
|
2069
2069
|
speed?: number;
|
|
2070
2070
|
/** @description Current speed in bytes per second as an exponentially weighted moving average. */
|
|
2071
2071
|
speedAvg?: number;
|
|
2072
|
+
/** @description Source remote or filesystem for this transfer. */
|
|
2073
|
+
srcFs?: string;
|
|
2074
|
+
/** @description Destination remote or filesystem for this transfer. */
|
|
2075
|
+
dstFs?: string;
|
|
2076
|
+
/** @description Source path within srcFs. */
|
|
2077
|
+
srcRemote?: string;
|
|
2078
|
+
/** @description Destination path within dstFs. */
|
|
2079
|
+
dstRemote?: string;
|
|
2072
2080
|
} & {
|
|
2073
2081
|
[key: string]: unknown;
|
|
2074
2082
|
};
|
|
@@ -2083,6 +2091,1018 @@ export interface components {
|
|
|
2083
2091
|
} & {
|
|
2084
2092
|
[key: string]: unknown;
|
|
2085
2093
|
};
|
|
2094
|
+
RcNoopRequest: {
|
|
2095
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2096
|
+
_async?: boolean;
|
|
2097
|
+
} & {
|
|
2098
|
+
[key: string]: unknown;
|
|
2099
|
+
};
|
|
2100
|
+
OperationsCleanupRequest: {
|
|
2101
|
+
/** @description Remote name or path to clean up, for example `drive:`. */
|
|
2102
|
+
fs?: string;
|
|
2103
|
+
/** @description Assign the request to a custom stats group. */
|
|
2104
|
+
_group?: string;
|
|
2105
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2106
|
+
_async?: boolean;
|
|
2107
|
+
};
|
|
2108
|
+
OperationsCopyfileRequest: {
|
|
2109
|
+
/** @description Source remote name or path, such as `drive:` or `/` for the local filesystem. */
|
|
2110
|
+
srcFs?: string;
|
|
2111
|
+
/** @description Path to the source object within `srcFs`, for example `dir/file.txt`. */
|
|
2112
|
+
srcRemote?: string;
|
|
2113
|
+
/** @description Destination remote name or path, such as `drive2:` or `/` for local filesystem. */
|
|
2114
|
+
dstFs?: string;
|
|
2115
|
+
/** @description Target path within `dstFs` where the file should be written. */
|
|
2116
|
+
dstRemote?: string;
|
|
2117
|
+
/** @description Assign the request to a custom stats group. */
|
|
2118
|
+
_group?: string;
|
|
2119
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2120
|
+
_async?: boolean;
|
|
2121
|
+
};
|
|
2122
|
+
OperationsCopyurlRequest: {
|
|
2123
|
+
/** @description Remote name or path that will receive the downloaded file, e.g. `drive:`. */
|
|
2124
|
+
fs?: string;
|
|
2125
|
+
/** @description Destination path within `fs` where the fetched object will be stored. */
|
|
2126
|
+
remote?: string;
|
|
2127
|
+
/** @description Source URL to fetch the object from. */
|
|
2128
|
+
url?: string;
|
|
2129
|
+
/** @description Set to true to derive the destination filename from the URL. */
|
|
2130
|
+
autoFilename?: boolean;
|
|
2131
|
+
/** @description Assign the request to a custom stats group. */
|
|
2132
|
+
_group?: string;
|
|
2133
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2134
|
+
_async?: boolean;
|
|
2135
|
+
};
|
|
2136
|
+
OperationsDeleteRequest: {
|
|
2137
|
+
/** @description Remote name or path whose contents should be removed. */
|
|
2138
|
+
fs?: string;
|
|
2139
|
+
/** @description JSON encoded config overrides applied for this call only. */
|
|
2140
|
+
_config?: string;
|
|
2141
|
+
/** @description JSON encoded filter overrides applied for this call only. */
|
|
2142
|
+
_filter?: string;
|
|
2143
|
+
/** @description Assign the request to a custom stats group. */
|
|
2144
|
+
_group?: string;
|
|
2145
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2146
|
+
_async?: boolean;
|
|
2147
|
+
};
|
|
2148
|
+
OperationsDeletefileRequest: {
|
|
2149
|
+
/** @description Remote name or path that contains the file to delete. */
|
|
2150
|
+
fs?: string;
|
|
2151
|
+
/** @description Exact path to the file within `fs` that should be deleted. */
|
|
2152
|
+
remote?: string;
|
|
2153
|
+
/** @description Assign the request to a custom stats group. */
|
|
2154
|
+
_group?: string;
|
|
2155
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2156
|
+
_async?: boolean;
|
|
2157
|
+
};
|
|
2158
|
+
OperationsFsinfoRequest: {
|
|
2159
|
+
/** @description Remote name or path to inspect, e.g. `drive:`. */
|
|
2160
|
+
fs?: string;
|
|
2161
|
+
/** @description Assign the request to a custom stats group. */
|
|
2162
|
+
_group?: string;
|
|
2163
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2164
|
+
_async?: boolean;
|
|
2165
|
+
};
|
|
2166
|
+
OperationsHashsumRequest: {
|
|
2167
|
+
/** @description Remote name or path to hash, such as `drive:` or `/`. */
|
|
2168
|
+
fs?: string;
|
|
2169
|
+
/** @description Hash algorithm to use, e.g. `md5`, `sha1`, or another supported name. */
|
|
2170
|
+
hashType?: string;
|
|
2171
|
+
/** @description Set to true to force reading the data instead of using remote checksums. */
|
|
2172
|
+
download?: boolean;
|
|
2173
|
+
/** @description Set to true to emit hash values in base64 rather than hexadecimal. */
|
|
2174
|
+
base64?: boolean;
|
|
2175
|
+
/** @description Assign the request to a custom stats group. */
|
|
2176
|
+
_group?: string;
|
|
2177
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2178
|
+
_async?: boolean;
|
|
2179
|
+
};
|
|
2180
|
+
OperationsHashsumfileRequest: {
|
|
2181
|
+
/** @description Remote name or path containing the file to hash. */
|
|
2182
|
+
fs?: string;
|
|
2183
|
+
/** @description Path to the specific file within `fs` to hash. */
|
|
2184
|
+
remote?: string;
|
|
2185
|
+
/** @description Hash algorithm to use, e.g. `md5`, `sha1`, or another supported name. */
|
|
2186
|
+
hashType?: string;
|
|
2187
|
+
/** @description Set to true to force reading the data instead of using remote checksums. */
|
|
2188
|
+
download?: boolean;
|
|
2189
|
+
/** @description Set to true to emit the hash value in base64 rather than hexadecimal. */
|
|
2190
|
+
base64?: boolean;
|
|
2191
|
+
/** @description Assign the request to a custom stats group. */
|
|
2192
|
+
_group?: string;
|
|
2193
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2194
|
+
_async?: boolean;
|
|
2195
|
+
};
|
|
2196
|
+
OperationsMovefileRequest: {
|
|
2197
|
+
/** @description Source remote name or path containing the file to move. */
|
|
2198
|
+
srcFs?: string;
|
|
2199
|
+
/** @description Path to the source object within `srcFs`. */
|
|
2200
|
+
srcRemote?: string;
|
|
2201
|
+
/** @description Destination remote name or path where the file will be moved. */
|
|
2202
|
+
dstFs?: string;
|
|
2203
|
+
/** @description Destination path within `dstFs` for the moved object. */
|
|
2204
|
+
dstRemote?: string;
|
|
2205
|
+
/** @description Assign the request to a custom stats group. */
|
|
2206
|
+
_group?: string;
|
|
2207
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2208
|
+
_async?: boolean;
|
|
2209
|
+
};
|
|
2210
|
+
OperationsPubliclinkRequest: {
|
|
2211
|
+
/** @description Remote name or path hosting the object for which to manage a public link. */
|
|
2212
|
+
fs?: string;
|
|
2213
|
+
/** @description Path within `fs` to the object for which to create or remove a public link. */
|
|
2214
|
+
remote?: string;
|
|
2215
|
+
/** @description Set to true to remove an existing public link instead of creating one. */
|
|
2216
|
+
unlink?: boolean;
|
|
2217
|
+
/** @description Optional expiration time for the public link, formatted as supported by the backend. */
|
|
2218
|
+
expire?: string;
|
|
2219
|
+
/** @description Assign the request to a custom stats group. */
|
|
2220
|
+
_group?: string;
|
|
2221
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2222
|
+
_async?: boolean;
|
|
2223
|
+
};
|
|
2224
|
+
OperationsRmdirsRequest: {
|
|
2225
|
+
/** @description Remote name or path to scan for empty directories. */
|
|
2226
|
+
fs?: string;
|
|
2227
|
+
/** @description Path within `fs` whose empty subdirectories should be removed. */
|
|
2228
|
+
remote?: string;
|
|
2229
|
+
/** @description Set to true to preserve the top-level directory even if empty. */
|
|
2230
|
+
leaveRoot?: boolean;
|
|
2231
|
+
/** @description Assign the request to a custom stats group. */
|
|
2232
|
+
_group?: string;
|
|
2233
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2234
|
+
_async?: boolean;
|
|
2235
|
+
};
|
|
2236
|
+
OperationsSettierRequest: {
|
|
2237
|
+
/** @description Remote name or path whose storage class tier should be changed. */
|
|
2238
|
+
fs?: string;
|
|
2239
|
+
/** @description Assign the request to a custom stats group. */
|
|
2240
|
+
_group?: string;
|
|
2241
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2242
|
+
_async?: boolean;
|
|
2243
|
+
};
|
|
2244
|
+
OperationsSettierfileRequest: {
|
|
2245
|
+
/** @description Remote name or path that contains the object whose tier should change. */
|
|
2246
|
+
fs?: string;
|
|
2247
|
+
/** @description Path within `fs` to the object whose storage class tier should be updated. */
|
|
2248
|
+
remote?: string;
|
|
2249
|
+
/** @description Assign the request to a custom stats group. */
|
|
2250
|
+
_group?: string;
|
|
2251
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2252
|
+
_async?: boolean;
|
|
2253
|
+
};
|
|
2254
|
+
OperationsSizeRequest: {
|
|
2255
|
+
/** @description Remote name or path to measure aggregate size information for. */
|
|
2256
|
+
fs?: string;
|
|
2257
|
+
/** @description Assign the request to a custom stats group. */
|
|
2258
|
+
_group?: string;
|
|
2259
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2260
|
+
_async?: boolean;
|
|
2261
|
+
};
|
|
2262
|
+
CoreBwlimitRequest: {
|
|
2263
|
+
/** @description Bandwidth limit to apply, for example `off`, `5M`, or a schedule string. */
|
|
2264
|
+
rate?: string;
|
|
2265
|
+
/** @description Assign the request to a custom stats group. */
|
|
2266
|
+
_group?: string;
|
|
2267
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2268
|
+
_async?: boolean;
|
|
2269
|
+
};
|
|
2270
|
+
CoreCommandRequest: {
|
|
2271
|
+
/** @description Name of the rclone command to execute, for example `ls` or `lsf`. */
|
|
2272
|
+
command?: string;
|
|
2273
|
+
/** @description Optional positional arguments for the command. Repeat to supply multiple values. */
|
|
2274
|
+
arg?: string[];
|
|
2275
|
+
/** @description Optional command options encoded as a JSON string. */
|
|
2276
|
+
opt?: string;
|
|
2277
|
+
/** @description Controls how output is returned; accepts `COMBINED_OUTPUT`, `STREAM`, `STREAM_ONLY_STDOUT`, or `STREAM_ONLY_STDERR`. */
|
|
2278
|
+
returnType?: string;
|
|
2279
|
+
/** @description Assign the request to a custom stats group. */
|
|
2280
|
+
_group?: string;
|
|
2281
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2282
|
+
_async?: boolean;
|
|
2283
|
+
};
|
|
2284
|
+
CoreDuRequest: {
|
|
2285
|
+
/** @description Local directory path to report disk usage for. Defaults to the rclone cache directory when omitted. */
|
|
2286
|
+
dir?: string;
|
|
2287
|
+
/** @description Assign the request to a custom stats group. */
|
|
2288
|
+
_group?: string;
|
|
2289
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2290
|
+
_async?: boolean;
|
|
2291
|
+
};
|
|
2292
|
+
CoreGcRequest: {
|
|
2293
|
+
/** @description Assign the request to a custom stats group. */
|
|
2294
|
+
_group?: string;
|
|
2295
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2296
|
+
_async?: boolean;
|
|
2297
|
+
};
|
|
2298
|
+
CoreGroupListRequest: {
|
|
2299
|
+
/** @description Assign the request to a custom stats group. */
|
|
2300
|
+
_group?: string;
|
|
2301
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2302
|
+
_async?: boolean;
|
|
2303
|
+
};
|
|
2304
|
+
CoreMemstatsRequest: {
|
|
2305
|
+
/** @description Assign the request to a custom stats group. */
|
|
2306
|
+
_group?: string;
|
|
2307
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2308
|
+
_async?: boolean;
|
|
2309
|
+
};
|
|
2310
|
+
CoreObscureRequest: {
|
|
2311
|
+
/** @description Plain-text string to obscure for storage in the config file. */
|
|
2312
|
+
clear?: string;
|
|
2313
|
+
/** @description Assign the request to a custom stats group. */
|
|
2314
|
+
_group?: string;
|
|
2315
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2316
|
+
_async?: boolean;
|
|
2317
|
+
};
|
|
2318
|
+
CorePidRequest: {
|
|
2319
|
+
/** @description Assign the request to a custom stats group. */
|
|
2320
|
+
_group?: string;
|
|
2321
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2322
|
+
_async?: boolean;
|
|
2323
|
+
};
|
|
2324
|
+
CoreQuitRequest: {
|
|
2325
|
+
/** @description Optional exit code to use when terminating the rclone process. */
|
|
2326
|
+
exitCode?: number;
|
|
2327
|
+
/** @description Assign the request to a custom stats group. */
|
|
2328
|
+
_group?: string;
|
|
2329
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2330
|
+
_async?: boolean;
|
|
2331
|
+
};
|
|
2332
|
+
CoreStatsDeleteRequest: {
|
|
2333
|
+
/** @description Stats group identifier to remove. */
|
|
2334
|
+
group?: string;
|
|
2335
|
+
/** @description Assign the request to a custom stats group. */
|
|
2336
|
+
_group?: string;
|
|
2337
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2338
|
+
_async?: boolean;
|
|
2339
|
+
};
|
|
2340
|
+
CoreStatsResetRequest: {
|
|
2341
|
+
/** @description Stats group identifier whose counters should be reset. Leave unset to reset all groups. */
|
|
2342
|
+
group?: string;
|
|
2343
|
+
/** @description Assign the request to a custom stats group. */
|
|
2344
|
+
_group?: string;
|
|
2345
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2346
|
+
_async?: boolean;
|
|
2347
|
+
};
|
|
2348
|
+
CoreTransferredRequest: {
|
|
2349
|
+
/** @description Stats group identifier to filter the completed transfer list. Leave unset for all groups. */
|
|
2350
|
+
group?: string;
|
|
2351
|
+
/** @description Assign the request to a custom stats group. */
|
|
2352
|
+
_group?: string;
|
|
2353
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2354
|
+
_async?: boolean;
|
|
2355
|
+
};
|
|
2356
|
+
DebugSetBlockProfileRateRequest: {
|
|
2357
|
+
/** @description Sampling interval in nanoseconds for blocking profile collection; use 1 to capture all events. */
|
|
2358
|
+
rate?: number;
|
|
2359
|
+
/** @description Assign the request to a custom stats group. */
|
|
2360
|
+
_group?: string;
|
|
2361
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2362
|
+
_async?: boolean;
|
|
2363
|
+
};
|
|
2364
|
+
DebugSetGcPercentRequest: {
|
|
2365
|
+
/** @description Target percentage of newly allocated data to trigger garbage collection. */
|
|
2366
|
+
"gc-percent"?: number;
|
|
2367
|
+
/** @description Assign the request to a custom stats group. */
|
|
2368
|
+
_group?: string;
|
|
2369
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2370
|
+
_async?: boolean;
|
|
2371
|
+
};
|
|
2372
|
+
DebugSetMutexProfileFractionRequest: {
|
|
2373
|
+
/** @description Sampling fraction for mutex contention profiling; set to 0 to disable. */
|
|
2374
|
+
rate?: number;
|
|
2375
|
+
/** @description Assign the request to a custom stats group. */
|
|
2376
|
+
_group?: string;
|
|
2377
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2378
|
+
_async?: boolean;
|
|
2379
|
+
};
|
|
2380
|
+
DebugSetSoftMemoryLimitRequest: {
|
|
2381
|
+
/** @description Soft memory limit for the Go runtime in bytes. */
|
|
2382
|
+
"mem-limit"?: number;
|
|
2383
|
+
/** @description Assign the request to a custom stats group. */
|
|
2384
|
+
_group?: string;
|
|
2385
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2386
|
+
_async?: boolean;
|
|
2387
|
+
};
|
|
2388
|
+
FscacheClearRequest: {
|
|
2389
|
+
/** @description Assign the request to a custom stats group. */
|
|
2390
|
+
_group?: string;
|
|
2391
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2392
|
+
_async?: boolean;
|
|
2393
|
+
};
|
|
2394
|
+
FscacheEntriesRequest: {
|
|
2395
|
+
/** @description Assign the request to a custom stats group. */
|
|
2396
|
+
_group?: string;
|
|
2397
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2398
|
+
_async?: boolean;
|
|
2399
|
+
};
|
|
2400
|
+
MountListmountsRequest: {
|
|
2401
|
+
/** @description Assign the request to a custom stats group. */
|
|
2402
|
+
_group?: string;
|
|
2403
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2404
|
+
_async?: boolean;
|
|
2405
|
+
};
|
|
2406
|
+
MountMountRequest: {
|
|
2407
|
+
/** @description Remote path to mount, such as `drive:` or `remote:subdir`. */
|
|
2408
|
+
fs?: string;
|
|
2409
|
+
/** @description Absolute local path where the remote should be mounted. */
|
|
2410
|
+
mountPoint?: string;
|
|
2411
|
+
/** @description Optional mount implementation to use (`mount`, `cmount`, or `mount2`). */
|
|
2412
|
+
mountType?: string;
|
|
2413
|
+
/** @description Mount options encoded as JSON, matching flags accepted by `rclone mount`. */
|
|
2414
|
+
mountOpt?: string;
|
|
2415
|
+
/** @description VFS options encoded as JSON, matching flags accepted by `rclone mount`. */
|
|
2416
|
+
vfsOpt?: string;
|
|
2417
|
+
/** @description JSON encoded config overrides applied for this call only. */
|
|
2418
|
+
_config?: string;
|
|
2419
|
+
/** @description JSON encoded filter overrides applied for this call only. */
|
|
2420
|
+
_filter?: string;
|
|
2421
|
+
/** @description Assign the request to a custom stats group. */
|
|
2422
|
+
_group?: string;
|
|
2423
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2424
|
+
_async?: boolean;
|
|
2425
|
+
};
|
|
2426
|
+
MountTypesRequest: {
|
|
2427
|
+
/** @description Assign the request to a custom stats group. */
|
|
2428
|
+
_group?: string;
|
|
2429
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2430
|
+
_async?: boolean;
|
|
2431
|
+
};
|
|
2432
|
+
MountUnmountRequest: {
|
|
2433
|
+
/** @description Local mount point path to unmount. */
|
|
2434
|
+
mountPoint?: string;
|
|
2435
|
+
/** @description Assign the request to a custom stats group. */
|
|
2436
|
+
_group?: string;
|
|
2437
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2438
|
+
_async?: boolean;
|
|
2439
|
+
};
|
|
2440
|
+
MountUnmountallRequest: {
|
|
2441
|
+
/** @description Assign the request to a custom stats group. */
|
|
2442
|
+
_group?: string;
|
|
2443
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2444
|
+
_async?: boolean;
|
|
2445
|
+
};
|
|
2446
|
+
RcNoopAuthRequest: {
|
|
2447
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2448
|
+
_async?: boolean;
|
|
2449
|
+
} & {
|
|
2450
|
+
[key: string]: unknown;
|
|
2451
|
+
};
|
|
2452
|
+
RcErrorRequest: {
|
|
2453
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2454
|
+
_async?: boolean;
|
|
2455
|
+
} & {
|
|
2456
|
+
[key: string]: unknown;
|
|
2457
|
+
};
|
|
2458
|
+
RcListRequest: {
|
|
2459
|
+
/** @description Assign the request to a custom stats group. */
|
|
2460
|
+
_group?: string;
|
|
2461
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2462
|
+
_async?: boolean;
|
|
2463
|
+
};
|
|
2464
|
+
BackendCommandRequest: {
|
|
2465
|
+
/** @description Backend-specific command to invoke. */
|
|
2466
|
+
command?: string;
|
|
2467
|
+
/** @description Remote name or path the backend command should target. */
|
|
2468
|
+
fs?: string;
|
|
2469
|
+
/** @description Optional positional arguments for the backend command. */
|
|
2470
|
+
arg?: string[];
|
|
2471
|
+
/** @description Backend command options encoded as a JSON string. */
|
|
2472
|
+
opt?: string;
|
|
2473
|
+
/** @description Assign the request to a custom stats group. */
|
|
2474
|
+
_group?: string;
|
|
2475
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2476
|
+
_async?: boolean;
|
|
2477
|
+
};
|
|
2478
|
+
CacheExpireRequest: {
|
|
2479
|
+
/** @description Remote path to expire from the cache, e.g. `remote:path/to/dir`. */
|
|
2480
|
+
remote?: string;
|
|
2481
|
+
/** @description Set to true to drop cached chunk data along with directory entries. */
|
|
2482
|
+
withData?: boolean;
|
|
2483
|
+
/** @description Assign the request to a custom stats group. */
|
|
2484
|
+
_group?: string;
|
|
2485
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2486
|
+
_async?: boolean;
|
|
2487
|
+
};
|
|
2488
|
+
CacheFetchRequest: {
|
|
2489
|
+
/** @description Comma-separated chunk specifier list (e.g. `0:10,25:30`) describing file pieces to prefetch. */
|
|
2490
|
+
chunks?: string;
|
|
2491
|
+
/** @description Assign the request to a custom stats group. */
|
|
2492
|
+
_group?: string;
|
|
2493
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2494
|
+
_async?: boolean;
|
|
2495
|
+
} & {
|
|
2496
|
+
[key: string]: unknown;
|
|
2497
|
+
};
|
|
2498
|
+
CacheStatsRequest: {
|
|
2499
|
+
/** @description Assign the request to a custom stats group. */
|
|
2500
|
+
_group?: string;
|
|
2501
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2502
|
+
_async?: boolean;
|
|
2503
|
+
};
|
|
2504
|
+
ConfigCreateRequest: {
|
|
2505
|
+
/** @description Name of the new remote configuration. */
|
|
2506
|
+
name?: string;
|
|
2507
|
+
/** @description JSON object of configuration key/value pairs required for the remote. */
|
|
2508
|
+
parameters?: string;
|
|
2509
|
+
/** @description Backend type identifier, such as `drive`, `s3`, or `dropbox`. */
|
|
2510
|
+
type?: string;
|
|
2511
|
+
/** @description Optional JSON object controlling interactive behaviour (e.g. `obscure`, `continue`). */
|
|
2512
|
+
opt?: string;
|
|
2513
|
+
/** @description Assign the request to a custom stats group. */
|
|
2514
|
+
_group?: string;
|
|
2515
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2516
|
+
_async?: boolean;
|
|
2517
|
+
};
|
|
2518
|
+
ConfigDeleteRequest: {
|
|
2519
|
+
/** @description Name of the remote configuration to delete. */
|
|
2520
|
+
name?: string;
|
|
2521
|
+
/** @description Assign the request to a custom stats group. */
|
|
2522
|
+
_group?: string;
|
|
2523
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2524
|
+
_async?: boolean;
|
|
2525
|
+
};
|
|
2526
|
+
ConfigDumpRequest: {
|
|
2527
|
+
/** @description Assign the request to a custom stats group. */
|
|
2528
|
+
_group?: string;
|
|
2529
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2530
|
+
_async?: boolean;
|
|
2531
|
+
};
|
|
2532
|
+
ConfigGetRequest: {
|
|
2533
|
+
/** @description Name of the remote configuration to fetch. */
|
|
2534
|
+
name?: string;
|
|
2535
|
+
/** @description Assign the request to a custom stats group. */
|
|
2536
|
+
_group?: string;
|
|
2537
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2538
|
+
_async?: boolean;
|
|
2539
|
+
};
|
|
2540
|
+
ConfigListremotesRequest: {
|
|
2541
|
+
/** @description Assign the request to a custom stats group. */
|
|
2542
|
+
_group?: string;
|
|
2543
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2544
|
+
_async?: boolean;
|
|
2545
|
+
};
|
|
2546
|
+
ConfigPasswordRequest: {
|
|
2547
|
+
/** @description Name of the remote whose secrets should be updated. */
|
|
2548
|
+
name?: string;
|
|
2549
|
+
/** @description JSON object of password answers, typically including `pass`. */
|
|
2550
|
+
parameters?: string;
|
|
2551
|
+
/** @description Assign the request to a custom stats group. */
|
|
2552
|
+
_group?: string;
|
|
2553
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2554
|
+
_async?: boolean;
|
|
2555
|
+
};
|
|
2556
|
+
ConfigPathsRequest: {
|
|
2557
|
+
/** @description Assign the request to a custom stats group. */
|
|
2558
|
+
_group?: string;
|
|
2559
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2560
|
+
_async?: boolean;
|
|
2561
|
+
};
|
|
2562
|
+
ConfigProvidersRequest: {
|
|
2563
|
+
/** @description Assign the request to a custom stats group. */
|
|
2564
|
+
_group?: string;
|
|
2565
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2566
|
+
_async?: boolean;
|
|
2567
|
+
};
|
|
2568
|
+
ConfigSetpathRequest: {
|
|
2569
|
+
/** @description Absolute path to the `rclone.conf` file that rclone should use. */
|
|
2570
|
+
path?: string;
|
|
2571
|
+
/** @description Assign the request to a custom stats group. */
|
|
2572
|
+
_group?: string;
|
|
2573
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2574
|
+
_async?: boolean;
|
|
2575
|
+
};
|
|
2576
|
+
ConfigUnlockRequest: {
|
|
2577
|
+
/** @description Password used to unlock an encrypted config file. */
|
|
2578
|
+
configPassword?: string;
|
|
2579
|
+
/** @description Assign the request to a custom stats group. */
|
|
2580
|
+
_group?: string;
|
|
2581
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2582
|
+
_async?: boolean;
|
|
2583
|
+
};
|
|
2584
|
+
ConfigUpdateRequest: {
|
|
2585
|
+
/** @description Name of the remote configuration to update. */
|
|
2586
|
+
name?: string;
|
|
2587
|
+
/** @description JSON object of configuration key/value pairs to apply to the remote. */
|
|
2588
|
+
parameters?: string;
|
|
2589
|
+
/** @description Optional JSON object controlling update behaviour (e.g. `obscure`, `continue`). */
|
|
2590
|
+
opt?: string;
|
|
2591
|
+
/** @description Assign the request to a custom stats group. */
|
|
2592
|
+
_group?: string;
|
|
2593
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2594
|
+
_async?: boolean;
|
|
2595
|
+
};
|
|
2596
|
+
CoreVersionRequest: {
|
|
2597
|
+
/** @description Assign the request to a custom stats group. */
|
|
2598
|
+
_group?: string;
|
|
2599
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2600
|
+
_async?: boolean;
|
|
2601
|
+
};
|
|
2602
|
+
CoreStatsRequest: {
|
|
2603
|
+
/** @description Stats group identifier to return a snapshot for. Leave unset to include all groups. */
|
|
2604
|
+
group?: string;
|
|
2605
|
+
/** @description When true, omit the `transferring` and `checking` arrays from the response. */
|
|
2606
|
+
short?: boolean;
|
|
2607
|
+
/** @description Assign the request to a custom stats group. */
|
|
2608
|
+
_group?: string;
|
|
2609
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2610
|
+
_async?: boolean;
|
|
2611
|
+
};
|
|
2612
|
+
JobListRequest: {
|
|
2613
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2614
|
+
_async?: boolean;
|
|
2615
|
+
};
|
|
2616
|
+
JobStatusRequest: {
|
|
2617
|
+
/** @description Numeric identifier of the job to query, as returned from an async call. */
|
|
2618
|
+
jobid?: number;
|
|
2619
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2620
|
+
_async?: boolean;
|
|
2621
|
+
};
|
|
2622
|
+
JobStopRequest: {
|
|
2623
|
+
/** @description Numeric identifier of the job to cancel. */
|
|
2624
|
+
jobid?: number;
|
|
2625
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2626
|
+
_async?: boolean;
|
|
2627
|
+
};
|
|
2628
|
+
JobStopgroupRequest: {
|
|
2629
|
+
/** @description Stats group name whose active jobs should be stopped. */
|
|
2630
|
+
group?: string;
|
|
2631
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2632
|
+
_async?: boolean;
|
|
2633
|
+
};
|
|
2634
|
+
OperationsListRequest: {
|
|
2635
|
+
/** @description Remote name or path to list, for example `drive:`. */
|
|
2636
|
+
fs?: string;
|
|
2637
|
+
/** @description Directory path within `fs` to list; leave empty to target the root. */
|
|
2638
|
+
remote?: string;
|
|
2639
|
+
/** @description Optional JSON-encoded object of listing flags (e.g. `{ "recurse": true, "showHash": true }`). */
|
|
2640
|
+
opt?: string;
|
|
2641
|
+
/** @description Set to true to list directories recursively. */
|
|
2642
|
+
recurse?: boolean;
|
|
2643
|
+
/** @description Set to true to omit modification times for faster listings on some backends. */
|
|
2644
|
+
noModTime?: boolean;
|
|
2645
|
+
/** @description Set to true to include encrypted names when using crypt remotes. */
|
|
2646
|
+
showEncrypted?: boolean;
|
|
2647
|
+
/** @description Set to true to include original backend identifiers where available. */
|
|
2648
|
+
showOrigIDs?: boolean;
|
|
2649
|
+
/** @description Set to true to include hash digests for each entry. */
|
|
2650
|
+
showHash?: boolean;
|
|
2651
|
+
/** @description Set to true to omit MIME type detection. */
|
|
2652
|
+
noMimeType?: boolean;
|
|
2653
|
+
/** @description Set to true to return only directory entries. */
|
|
2654
|
+
dirsOnly?: boolean;
|
|
2655
|
+
/** @description Set to true to return only file entries. */
|
|
2656
|
+
filesOnly?: boolean;
|
|
2657
|
+
/** @description Set to true to include backend-provided metadata maps. */
|
|
2658
|
+
metadata?: boolean;
|
|
2659
|
+
/** @description Specify one or more hash algorithms to include when `showHash` is true (e.g. `md5`). */
|
|
2660
|
+
hashTypes?: string[];
|
|
2661
|
+
/** @description Assign the request to a custom stats group. */
|
|
2662
|
+
_group?: string;
|
|
2663
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2664
|
+
_async?: boolean;
|
|
2665
|
+
};
|
|
2666
|
+
OperationsStatRequest: {
|
|
2667
|
+
/** @description Remote name or path that contains the item to inspect. */
|
|
2668
|
+
fs?: string;
|
|
2669
|
+
/** @description Path to the file or directory within `fs` to describe. */
|
|
2670
|
+
remote?: string;
|
|
2671
|
+
/** @description Optional JSON object of listing flags, matching those accepted by `operations/list`. */
|
|
2672
|
+
opt?: string;
|
|
2673
|
+
/** @description Assign the request to a custom stats group. */
|
|
2674
|
+
_group?: string;
|
|
2675
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2676
|
+
_async?: boolean;
|
|
2677
|
+
};
|
|
2678
|
+
OperationsAboutRequest: {
|
|
2679
|
+
/** @description Remote name or path to query for capacity information. */
|
|
2680
|
+
fs?: string;
|
|
2681
|
+
/** @description Assign the request to a custom stats group. */
|
|
2682
|
+
_group?: string;
|
|
2683
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2684
|
+
_async?: boolean;
|
|
2685
|
+
};
|
|
2686
|
+
OperationsPurgeRequest: {
|
|
2687
|
+
/** @description Remote name or path from which to remove all contents. */
|
|
2688
|
+
fs?: string;
|
|
2689
|
+
/** @description Path within `fs` whose contents should be purged. */
|
|
2690
|
+
remote?: string;
|
|
2691
|
+
/** @description JSON encoded config overrides applied for this call only. */
|
|
2692
|
+
_config?: string;
|
|
2693
|
+
/** @description JSON encoded filter overrides applied for this call only. */
|
|
2694
|
+
_filter?: string;
|
|
2695
|
+
/** @description Assign the request to a custom stats group. */
|
|
2696
|
+
_group?: string;
|
|
2697
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2698
|
+
_async?: boolean;
|
|
2699
|
+
};
|
|
2700
|
+
OperationsMkdirRequest: {
|
|
2701
|
+
/** @description Remote name or path in which to create a directory. */
|
|
2702
|
+
fs?: string;
|
|
2703
|
+
/** @description Directory path within `fs` to create. */
|
|
2704
|
+
remote?: string;
|
|
2705
|
+
/** @description Assign the request to a custom stats group. */
|
|
2706
|
+
_group?: string;
|
|
2707
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2708
|
+
_async?: boolean;
|
|
2709
|
+
};
|
|
2710
|
+
OperationsRmdirRequest: {
|
|
2711
|
+
/** @description Remote name or path containing the directory to remove. */
|
|
2712
|
+
fs?: string;
|
|
2713
|
+
/** @description Directory path within `fs` to delete. */
|
|
2714
|
+
remote?: string;
|
|
2715
|
+
/** @description Assign the request to a custom stats group. */
|
|
2716
|
+
_group?: string;
|
|
2717
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2718
|
+
_async?: boolean;
|
|
2719
|
+
};
|
|
2720
|
+
OperationsCheckRequest: {
|
|
2721
|
+
/** @description Source remote name or path to verify, e.g. `drive:`. */
|
|
2722
|
+
srcFs?: string;
|
|
2723
|
+
/** @description Destination remote name or path that should match the source. */
|
|
2724
|
+
dstFs?: string;
|
|
2725
|
+
/** @description Set to true to read file contents during comparison instead of relying on hashes. */
|
|
2726
|
+
download?: boolean;
|
|
2727
|
+
/** @description Hash name to expect in the supplied SUM file, such as `md5`. */
|
|
2728
|
+
checkFileHash?: string;
|
|
2729
|
+
/** @description Remote containing the checksum SUM file when using `checkFileHash`. */
|
|
2730
|
+
checkFileFs?: string;
|
|
2731
|
+
/** @description Path within `checkFileFs` to the checksum SUM file. */
|
|
2732
|
+
checkFileRemote?: string;
|
|
2733
|
+
/** @description Set to true to only ensure that source files exist on the destination. */
|
|
2734
|
+
oneWay?: boolean;
|
|
2735
|
+
/** @description Set to true to include a combined summary report in the response. */
|
|
2736
|
+
combined?: boolean;
|
|
2737
|
+
/** @description Set to true to report files missing from the source. */
|
|
2738
|
+
missingOnSrc?: boolean;
|
|
2739
|
+
/** @description Set to true to report files missing from the destination. */
|
|
2740
|
+
missingOnDst?: boolean;
|
|
2741
|
+
/** @description Set to true to include matching files in the report. */
|
|
2742
|
+
match?: boolean;
|
|
2743
|
+
/** @description Set to true to include differing files in the report. */
|
|
2744
|
+
differ?: boolean;
|
|
2745
|
+
/** @description Set to true to include entries that encountered errors. */
|
|
2746
|
+
error?: boolean;
|
|
2747
|
+
/** @description Assign the request to a custom stats group. */
|
|
2748
|
+
_group?: string;
|
|
2749
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2750
|
+
_async?: boolean;
|
|
2751
|
+
};
|
|
2752
|
+
SyncSyncRequest: {
|
|
2753
|
+
/** @description Source remote path to sync from, e.g. `drive:src`. */
|
|
2754
|
+
srcFs?: string;
|
|
2755
|
+
/** @description Destination remote path to sync to, e.g. `drive:dst`. */
|
|
2756
|
+
dstFs?: string;
|
|
2757
|
+
/** @description Set to true to create empty source directories on the destination. */
|
|
2758
|
+
createEmptySrcDirs?: boolean;
|
|
2759
|
+
/** @description JSON encoded config overrides applied for this call only. */
|
|
2760
|
+
_config?: string;
|
|
2761
|
+
/** @description JSON encoded filter overrides applied for this call only. */
|
|
2762
|
+
_filter?: string;
|
|
2763
|
+
/** @description Assign the request to a custom stats group. */
|
|
2764
|
+
_group?: string;
|
|
2765
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2766
|
+
_async?: boolean;
|
|
2767
|
+
};
|
|
2768
|
+
SyncCopyRequest: {
|
|
2769
|
+
/** @description Source remote path to copy from. */
|
|
2770
|
+
srcFs?: string;
|
|
2771
|
+
/** @description Destination remote path to copy to. */
|
|
2772
|
+
dstFs?: string;
|
|
2773
|
+
/** @description Set to true to replicate empty source directories on the destination. */
|
|
2774
|
+
createEmptySrcDirs?: boolean;
|
|
2775
|
+
/** @description JSON encoded config overrides applied for this call only. */
|
|
2776
|
+
_config?: string;
|
|
2777
|
+
/** @description JSON encoded filter overrides applied for this call only. */
|
|
2778
|
+
_filter?: string;
|
|
2779
|
+
/** @description Assign the request to a custom stats group. */
|
|
2780
|
+
_group?: string;
|
|
2781
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2782
|
+
_async?: boolean;
|
|
2783
|
+
};
|
|
2784
|
+
SyncMoveRequest: {
|
|
2785
|
+
/** @description Source remote path whose contents will be moved. */
|
|
2786
|
+
srcFs?: string;
|
|
2787
|
+
/** @description Destination remote path that will receive moved files. */
|
|
2788
|
+
dstFs?: string;
|
|
2789
|
+
/** @description Set to true to create empty source directories on the destination. */
|
|
2790
|
+
createEmptySrcDirs?: boolean;
|
|
2791
|
+
/** @description Set to true to delete empty directories from the source after the move completes. */
|
|
2792
|
+
deleteEmptySrcDirs?: boolean;
|
|
2793
|
+
/** @description JSON encoded config overrides applied for this call only. */
|
|
2794
|
+
_config?: string;
|
|
2795
|
+
/** @description JSON encoded filter overrides applied for this call only. */
|
|
2796
|
+
_filter?: string;
|
|
2797
|
+
/** @description Assign the request to a custom stats group. */
|
|
2798
|
+
_group?: string;
|
|
2799
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2800
|
+
_async?: boolean;
|
|
2801
|
+
};
|
|
2802
|
+
SyncBisyncRequest: {
|
|
2803
|
+
/** @description First remote directory, e.g. `drive:path1`. */
|
|
2804
|
+
path1?: string;
|
|
2805
|
+
/** @description Second remote directory, e.g. `drive:path2`. */
|
|
2806
|
+
path2?: string;
|
|
2807
|
+
/** @description Set to true to simulate the bisync run without making changes. */
|
|
2808
|
+
dryRun?: boolean;
|
|
2809
|
+
/** @description Set to true to perform a one-time resync, rebuilding bisync history. */
|
|
2810
|
+
resync?: boolean;
|
|
2811
|
+
/** @description Set to true to abort if `RCLONE_TEST` files are missing on either side. */
|
|
2812
|
+
checkAccess?: boolean;
|
|
2813
|
+
/** @description Override the access-check sentinel filename; defaults to `RCLONE_TEST`. */
|
|
2814
|
+
checkFilename?: string;
|
|
2815
|
+
/** @description Abort the run if deletions exceed this percentage (default 50). */
|
|
2816
|
+
maxDelete?: number;
|
|
2817
|
+
/** @description Set to true to bypass the `maxDelete` safety check. */
|
|
2818
|
+
force?: boolean;
|
|
2819
|
+
/** @description Controls final listing comparison; leave true for normal verification or set false to skip. */
|
|
2820
|
+
checkSync?: boolean;
|
|
2821
|
+
/** @description Set to true to mirror empty directories between the two paths. */
|
|
2822
|
+
createEmptySrcDirs?: boolean;
|
|
2823
|
+
/** @description Set to true to remove empty directories during cleanup. */
|
|
2824
|
+
removeEmptyDirs?: boolean;
|
|
2825
|
+
/** @description Path to an rclone filters file applied to both paths. */
|
|
2826
|
+
filtersFile?: string;
|
|
2827
|
+
/** @description Set to true to ignore checksum differences when comparing listings. */
|
|
2828
|
+
ignoreListingChecksum?: boolean;
|
|
2829
|
+
/** @description Set to true to allow retrying after certain recoverable errors. */
|
|
2830
|
+
resilient?: boolean;
|
|
2831
|
+
/** @description Directory path used to store bisync working files. */
|
|
2832
|
+
workdir?: string;
|
|
2833
|
+
/** @description Backup directory on the first remote for changed files. */
|
|
2834
|
+
backupdir1?: string;
|
|
2835
|
+
/** @description Backup directory on the second remote for changed files. */
|
|
2836
|
+
backupdir2?: string;
|
|
2837
|
+
/** @description Set to true to keep bisync working files after completion. */
|
|
2838
|
+
noCleanup?: boolean;
|
|
2839
|
+
/** @description JSON encoded config overrides applied for this call only. */
|
|
2840
|
+
_config?: string;
|
|
2841
|
+
/** @description JSON encoded filter overrides applied for this call only. */
|
|
2842
|
+
_filter?: string;
|
|
2843
|
+
/** @description Assign the request to a custom stats group. */
|
|
2844
|
+
_group?: string;
|
|
2845
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2846
|
+
_async?: boolean;
|
|
2847
|
+
};
|
|
2848
|
+
OptionsBlocksRequest: {
|
|
2849
|
+
/** @description Assign the request to a custom stats group. */
|
|
2850
|
+
_group?: string;
|
|
2851
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2852
|
+
_async?: boolean;
|
|
2853
|
+
};
|
|
2854
|
+
OptionsGetRequest: {
|
|
2855
|
+
/** @description Optional comma-separated list of option block names to return. */
|
|
2856
|
+
blocks?: string;
|
|
2857
|
+
/** @description Assign the request to a custom stats group. */
|
|
2858
|
+
_group?: string;
|
|
2859
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2860
|
+
_async?: boolean;
|
|
2861
|
+
};
|
|
2862
|
+
OptionsInfoRequest: {
|
|
2863
|
+
/** @description Optional comma-separated list of option block names to describe. */
|
|
2864
|
+
blocks?: string;
|
|
2865
|
+
/** @description Assign the request to a custom stats group. */
|
|
2866
|
+
_group?: string;
|
|
2867
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2868
|
+
_async?: boolean;
|
|
2869
|
+
};
|
|
2870
|
+
OptionsSetRequest: {
|
|
2871
|
+
/** @description Overrides for the `dlna` option block. */
|
|
2872
|
+
dlna?: {
|
|
2873
|
+
[key: string]: unknown;
|
|
2874
|
+
};
|
|
2875
|
+
/** @description Overrides for the `filter` option block. */
|
|
2876
|
+
filter?: {
|
|
2877
|
+
[key: string]: unknown;
|
|
2878
|
+
};
|
|
2879
|
+
/** @description Overrides for the `ftp` option block. */
|
|
2880
|
+
ftp?: {
|
|
2881
|
+
[key: string]: unknown;
|
|
2882
|
+
};
|
|
2883
|
+
/** @description Overrides for the `main` option block. */
|
|
2884
|
+
main?: {
|
|
2885
|
+
[key: string]: unknown;
|
|
2886
|
+
};
|
|
2887
|
+
/** @description Overrides for the `http` option block. */
|
|
2888
|
+
http?: {
|
|
2889
|
+
[key: string]: unknown;
|
|
2890
|
+
};
|
|
2891
|
+
/** @description Overrides for the `log` option block. */
|
|
2892
|
+
log?: {
|
|
2893
|
+
[key: string]: unknown;
|
|
2894
|
+
};
|
|
2895
|
+
/** @description Overrides for the `mount` option block. */
|
|
2896
|
+
mount?: {
|
|
2897
|
+
[key: string]: unknown;
|
|
2898
|
+
};
|
|
2899
|
+
/** @description Overrides for the `nfs` option block. */
|
|
2900
|
+
nfs?: {
|
|
2901
|
+
[key: string]: unknown;
|
|
2902
|
+
};
|
|
2903
|
+
/** @description Overrides for the `proxy` option block. */
|
|
2904
|
+
proxy?: {
|
|
2905
|
+
[key: string]: unknown;
|
|
2906
|
+
};
|
|
2907
|
+
/** @description Overrides for the `rc` option block. */
|
|
2908
|
+
rc?: {
|
|
2909
|
+
[key: string]: unknown;
|
|
2910
|
+
};
|
|
2911
|
+
/** @description Overrides for the `restic` option block. */
|
|
2912
|
+
restic?: {
|
|
2913
|
+
[key: string]: unknown;
|
|
2914
|
+
};
|
|
2915
|
+
/** @description Overrides for the `s3` option block. */
|
|
2916
|
+
s3?: {
|
|
2917
|
+
[key: string]: unknown;
|
|
2918
|
+
};
|
|
2919
|
+
/** @description Overrides for the `sftp` option block. */
|
|
2920
|
+
sftp?: {
|
|
2921
|
+
[key: string]: unknown;
|
|
2922
|
+
};
|
|
2923
|
+
/** @description Overrides for the `vfs` option block. */
|
|
2924
|
+
vfs?: {
|
|
2925
|
+
[key: string]: unknown;
|
|
2926
|
+
};
|
|
2927
|
+
/** @description Overrides for the `webdav` option block. */
|
|
2928
|
+
webdav?: {
|
|
2929
|
+
[key: string]: unknown;
|
|
2930
|
+
};
|
|
2931
|
+
/** @description Assign the request to a custom stats group. */
|
|
2932
|
+
_group?: string;
|
|
2933
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2934
|
+
_async?: boolean;
|
|
2935
|
+
} & {
|
|
2936
|
+
[key: string]: unknown;
|
|
2937
|
+
};
|
|
2938
|
+
OptionsLocalRequest: {
|
|
2939
|
+
/** @description Assign the request to a custom stats group. */
|
|
2940
|
+
_group?: string;
|
|
2941
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2942
|
+
_async?: boolean;
|
|
2943
|
+
};
|
|
2944
|
+
ServeListRequest: {
|
|
2945
|
+
/** @description Assign the request to a custom stats group. */
|
|
2946
|
+
_group?: string;
|
|
2947
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2948
|
+
_async?: boolean;
|
|
2949
|
+
};
|
|
2950
|
+
ServeStartRequest: {
|
|
2951
|
+
/** @description Type of server to start (e.g. `http`, `webdav`, `ftp`, `sftp`). */
|
|
2952
|
+
type?: string;
|
|
2953
|
+
/** @description Remote path that will be served. */
|
|
2954
|
+
fs?: string;
|
|
2955
|
+
/** @description Address and port to bind the server to, such as `:5572` or `localhost:8080`. */
|
|
2956
|
+
addr?: string;
|
|
2957
|
+
/** @description JSON encoded config overrides applied for this call only. */
|
|
2958
|
+
_config?: string;
|
|
2959
|
+
/** @description JSON encoded filter overrides applied for this call only. */
|
|
2960
|
+
_filter?: string;
|
|
2961
|
+
/** @description Assign the request to a custom stats group. */
|
|
2962
|
+
_group?: string;
|
|
2963
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2964
|
+
_async?: boolean;
|
|
2965
|
+
} & {
|
|
2966
|
+
[key: string]: unknown;
|
|
2967
|
+
};
|
|
2968
|
+
ServeStopRequest: {
|
|
2969
|
+
/** @description Identifier of the running serve instance returned by `serve/start`. */
|
|
2970
|
+
id?: string;
|
|
2971
|
+
/** @description Assign the request to a custom stats group. */
|
|
2972
|
+
_group?: string;
|
|
2973
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2974
|
+
_async?: boolean;
|
|
2975
|
+
};
|
|
2976
|
+
ServeStopallRequest: {
|
|
2977
|
+
/** @description Assign the request to a custom stats group. */
|
|
2978
|
+
_group?: string;
|
|
2979
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2980
|
+
_async?: boolean;
|
|
2981
|
+
};
|
|
2982
|
+
ServeTypesRequest: {
|
|
2983
|
+
/** @description Assign the request to a custom stats group. */
|
|
2984
|
+
_group?: string;
|
|
2985
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2986
|
+
_async?: boolean;
|
|
2987
|
+
};
|
|
2988
|
+
VfsForgetRequest: {
|
|
2989
|
+
/** @description Optional VFS identifier to target; required when more than one VFS is active. */
|
|
2990
|
+
fs?: string;
|
|
2991
|
+
/** @description Assign the request to a custom stats group. */
|
|
2992
|
+
_group?: string;
|
|
2993
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2994
|
+
_async?: boolean;
|
|
2995
|
+
} & {
|
|
2996
|
+
[key: string]: unknown;
|
|
2997
|
+
};
|
|
2998
|
+
VfsListRequest: {
|
|
2999
|
+
/** @description Optional VFS identifier; omit to list all active VFS instances. */
|
|
3000
|
+
fs?: string;
|
|
3001
|
+
/** @description Assign the request to a custom stats group. */
|
|
3002
|
+
_group?: string;
|
|
3003
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
3004
|
+
_async?: boolean;
|
|
3005
|
+
};
|
|
3006
|
+
VfsPollIntervalRequest: {
|
|
3007
|
+
/** @description Optional VFS identifier whose poll interval should be queried or modified. */
|
|
3008
|
+
fs?: string;
|
|
3009
|
+
/** @description Duration string (e.g. `5m`) to set as the new poll interval. */
|
|
3010
|
+
interval?: string;
|
|
3011
|
+
/** @description Duration to wait for the poll interval change to take effect; `0` waits indefinitely. */
|
|
3012
|
+
timeout?: string;
|
|
3013
|
+
/** @description Assign the request to a custom stats group. */
|
|
3014
|
+
_group?: string;
|
|
3015
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
3016
|
+
_async?: boolean;
|
|
3017
|
+
};
|
|
3018
|
+
VfsQueueRequest: {
|
|
3019
|
+
/** @description Optional VFS identifier whose upload queue should be inspected. */
|
|
3020
|
+
fs?: string;
|
|
3021
|
+
/** @description Assign the request to a custom stats group. */
|
|
3022
|
+
_group?: string;
|
|
3023
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
3024
|
+
_async?: boolean;
|
|
3025
|
+
};
|
|
3026
|
+
VfsQueueSetExpiryRequest: {
|
|
3027
|
+
/** @description Optional VFS identifier for the queued item. */
|
|
3028
|
+
fs?: string;
|
|
3029
|
+
/** @description Queue item ID as returned by `vfs/queue`. */
|
|
3030
|
+
id?: number;
|
|
3031
|
+
/** @description New eligibility time in seconds (may be negative for immediate upload). */
|
|
3032
|
+
expiry?: number;
|
|
3033
|
+
/** @description Set to true to treat `expiry` as relative to the current value. */
|
|
3034
|
+
relative?: boolean;
|
|
3035
|
+
/** @description Assign the request to a custom stats group. */
|
|
3036
|
+
_group?: string;
|
|
3037
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
3038
|
+
_async?: boolean;
|
|
3039
|
+
};
|
|
3040
|
+
VfsRefreshRequest: {
|
|
3041
|
+
/** @description Optional VFS identifier whose directory cache should be refreshed. */
|
|
3042
|
+
fs?: string;
|
|
3043
|
+
/** @description Set to true to refresh entire directory trees. */
|
|
3044
|
+
recursive?: boolean;
|
|
3045
|
+
/** @description Assign the request to a custom stats group. */
|
|
3046
|
+
_group?: string;
|
|
3047
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
3048
|
+
_async?: boolean;
|
|
3049
|
+
} & {
|
|
3050
|
+
[key: string]: unknown;
|
|
3051
|
+
};
|
|
3052
|
+
VfsStatsRequest: {
|
|
3053
|
+
/** @description Optional VFS identifier whose statistics should be returned. */
|
|
3054
|
+
fs?: string;
|
|
3055
|
+
/** @description Assign the request to a custom stats group. */
|
|
3056
|
+
_group?: string;
|
|
3057
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
3058
|
+
_async?: boolean;
|
|
3059
|
+
};
|
|
3060
|
+
PluginsctlAddPluginRequest: {
|
|
3061
|
+
/** @description Repository URL of the plugin to install. */
|
|
3062
|
+
url?: string;
|
|
3063
|
+
/** @description Assign the request to a custom stats group. */
|
|
3064
|
+
_group?: string;
|
|
3065
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
3066
|
+
_async?: boolean;
|
|
3067
|
+
};
|
|
3068
|
+
PluginsctlGetPluginsForTypeRequest: {
|
|
3069
|
+
/** @description MIME type to match when listing plugins. */
|
|
3070
|
+
type?: string;
|
|
3071
|
+
/** @description Filter results by plugin type (e.g. `test`). */
|
|
3072
|
+
pluginType?: string;
|
|
3073
|
+
/** @description Assign the request to a custom stats group. */
|
|
3074
|
+
_group?: string;
|
|
3075
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
3076
|
+
_async?: boolean;
|
|
3077
|
+
};
|
|
3078
|
+
PluginsctlListPluginsRequest: {
|
|
3079
|
+
/** @description Assign the request to a custom stats group. */
|
|
3080
|
+
_group?: string;
|
|
3081
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
3082
|
+
_async?: boolean;
|
|
3083
|
+
};
|
|
3084
|
+
PluginsctlListTestPluginsRequest: {
|
|
3085
|
+
/** @description Assign the request to a custom stats group. */
|
|
3086
|
+
_group?: string;
|
|
3087
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
3088
|
+
_async?: boolean;
|
|
3089
|
+
};
|
|
3090
|
+
PluginsctlRemovePluginRequest: {
|
|
3091
|
+
/** @description Name of the plugin to uninstall. */
|
|
3092
|
+
name?: string;
|
|
3093
|
+
/** @description Assign the request to a custom stats group. */
|
|
3094
|
+
_group?: string;
|
|
3095
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
3096
|
+
_async?: boolean;
|
|
3097
|
+
};
|
|
3098
|
+
PluginsctlRemoveTestPluginRequest: {
|
|
3099
|
+
/** @description Name of the test plugin to uninstall. */
|
|
3100
|
+
name?: string;
|
|
3101
|
+
/** @description Assign the request to a custom stats group. */
|
|
3102
|
+
_group?: string;
|
|
3103
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
3104
|
+
_async?: boolean;
|
|
3105
|
+
};
|
|
2086
3106
|
};
|
|
2087
3107
|
responses: {
|
|
2088
3108
|
/** @description Any error response (HTTP 4xx/5xx) */
|
|
@@ -2121,7 +3141,23 @@ export interface components {
|
|
|
2121
3141
|
[name: string]: unknown;
|
|
2122
3142
|
};
|
|
2123
3143
|
content: {
|
|
2124
|
-
"application/json":
|
|
3144
|
+
"application/json": {
|
|
3145
|
+
/** @description Job ID returned when _async=true. */
|
|
3146
|
+
jobid?: number;
|
|
3147
|
+
} & {
|
|
3148
|
+
[key: string]: unknown;
|
|
3149
|
+
};
|
|
3150
|
+
};
|
|
3151
|
+
};
|
|
3152
|
+
/** @description Supported rclone serve protocols. */
|
|
3153
|
+
ServeTypesResponse: {
|
|
3154
|
+
headers: {
|
|
3155
|
+
[name: string]: unknown;
|
|
3156
|
+
};
|
|
3157
|
+
content: {
|
|
3158
|
+
"application/json": {
|
|
3159
|
+
types: string[];
|
|
3160
|
+
};
|
|
2125
3161
|
};
|
|
2126
3162
|
};
|
|
2127
3163
|
/** @description Response for sync operations, containing job ID if async. */
|
|
@@ -2424,11 +3460,9 @@ export interface components {
|
|
|
2424
3460
|
};
|
|
2425
3461
|
content: {
|
|
2426
3462
|
"application/json": {
|
|
2427
|
-
name: string;
|
|
2428
3463
|
type: string;
|
|
2429
|
-
provider?: string;
|
|
2430
3464
|
} & {
|
|
2431
|
-
[key: string]:
|
|
3465
|
+
[key: string]: string;
|
|
2432
3466
|
};
|
|
2433
3467
|
};
|
|
2434
3468
|
};
|
|
@@ -3161,7 +4195,9 @@ export interface components {
|
|
|
3161
4195
|
/** @description Assign the request to a custom stats group. */
|
|
3162
4196
|
GlobalGroupParam: string;
|
|
3163
4197
|
/** @description Additional arbitrary parameters allowed. */
|
|
3164
|
-
Rc_NoopPostAdditionalParam:
|
|
4198
|
+
Rc_NoopPostAdditionalParam: {
|
|
4199
|
+
[key: string]: unknown;
|
|
4200
|
+
};
|
|
3165
4201
|
/** @description Do this many commands concurrently. Defaults to --transfers if not set. */
|
|
3166
4202
|
Job_BatchPostConcurrencyParam: number;
|
|
3167
4203
|
/** @description List of inputs to the commands with an extra _path parameter. */
|
|
@@ -3292,9 +4328,13 @@ export interface components {
|
|
|
3292
4328
|
/** @description Local mount point path to unmount. */
|
|
3293
4329
|
Mount_UnmountPostMountPointParam: string;
|
|
3294
4330
|
/** @description Additional arbitrary parameters allowed. */
|
|
3295
|
-
Rc_NoopauthPostAdditionalParam:
|
|
4331
|
+
Rc_NoopauthPostAdditionalParam: {
|
|
4332
|
+
[key: string]: unknown;
|
|
4333
|
+
};
|
|
3296
4334
|
/** @description Additional arbitrary parameters allowed. */
|
|
3297
|
-
Rc_ErrorPostAdditionalParam:
|
|
4335
|
+
Rc_ErrorPostAdditionalParam: {
|
|
4336
|
+
[key: string]: unknown;
|
|
4337
|
+
};
|
|
3298
4338
|
/** @description Backend-specific command to invoke. */
|
|
3299
4339
|
Backend_CommandPostCommandParam: string;
|
|
3300
4340
|
/** @description Remote name or path the backend command should target. */
|
|
@@ -3310,7 +4350,9 @@ export interface components {
|
|
|
3310
4350
|
/** @description Comma-separated chunk specifier list (e.g. `0:10,25:30`) describing file pieces to prefetch. */
|
|
3311
4351
|
Cache_FetchPostChunksParam: string;
|
|
3312
4352
|
/** @description Additional arbitrary parameters allowed. */
|
|
3313
|
-
Cache_FetchPostAdditionalParam:
|
|
4353
|
+
Cache_FetchPostAdditionalParam: {
|
|
4354
|
+
[key: string]: unknown;
|
|
4355
|
+
};
|
|
3314
4356
|
/** @description Name of the new remote configuration. */
|
|
3315
4357
|
Config_CreatePostNameParam: string;
|
|
3316
4358
|
/** @description JSON object of configuration key/value pairs required for the remote. */
|
|
@@ -3481,93 +4523,63 @@ export interface components {
|
|
|
3481
4523
|
Options_InfoPostBlocksParam: string;
|
|
3482
4524
|
/** @description Overrides for the `dlna` option block. */
|
|
3483
4525
|
Options_SetPostDlnaParam: {
|
|
3484
|
-
[key: string]:
|
|
3485
|
-
[key: string]: unknown;
|
|
3486
|
-
};
|
|
4526
|
+
[key: string]: unknown;
|
|
3487
4527
|
};
|
|
3488
4528
|
/** @description Overrides for the `filter` option block. */
|
|
3489
4529
|
Options_SetPostFilterParam: {
|
|
3490
|
-
[key: string]:
|
|
3491
|
-
[key: string]: unknown;
|
|
3492
|
-
};
|
|
4530
|
+
[key: string]: unknown;
|
|
3493
4531
|
};
|
|
3494
4532
|
/** @description Overrides for the `ftp` option block. */
|
|
3495
4533
|
Options_SetPostFtpParam: {
|
|
3496
|
-
[key: string]:
|
|
3497
|
-
[key: string]: unknown;
|
|
3498
|
-
};
|
|
4534
|
+
[key: string]: unknown;
|
|
3499
4535
|
};
|
|
3500
4536
|
/** @description Overrides for the `main` option block. */
|
|
3501
4537
|
Options_SetPostMainParam: {
|
|
3502
|
-
[key: string]:
|
|
3503
|
-
[key: string]: unknown;
|
|
3504
|
-
};
|
|
4538
|
+
[key: string]: unknown;
|
|
3505
4539
|
};
|
|
3506
4540
|
/** @description Overrides for the `http` option block. */
|
|
3507
4541
|
Options_SetPostHttpParam: {
|
|
3508
|
-
[key: string]:
|
|
3509
|
-
[key: string]: unknown;
|
|
3510
|
-
};
|
|
4542
|
+
[key: string]: unknown;
|
|
3511
4543
|
};
|
|
3512
4544
|
/** @description Overrides for the `log` option block. */
|
|
3513
4545
|
Options_SetPostLogParam: {
|
|
3514
|
-
[key: string]:
|
|
3515
|
-
[key: string]: unknown;
|
|
3516
|
-
};
|
|
4546
|
+
[key: string]: unknown;
|
|
3517
4547
|
};
|
|
3518
4548
|
/** @description Overrides for the `mount` option block. */
|
|
3519
4549
|
Options_SetPostMountParam: {
|
|
3520
|
-
[key: string]:
|
|
3521
|
-
[key: string]: unknown;
|
|
3522
|
-
};
|
|
4550
|
+
[key: string]: unknown;
|
|
3523
4551
|
};
|
|
3524
4552
|
/** @description Overrides for the `nfs` option block. */
|
|
3525
4553
|
Options_SetPostNfsParam: {
|
|
3526
|
-
[key: string]:
|
|
3527
|
-
[key: string]: unknown;
|
|
3528
|
-
};
|
|
4554
|
+
[key: string]: unknown;
|
|
3529
4555
|
};
|
|
3530
4556
|
/** @description Overrides for the `proxy` option block. */
|
|
3531
4557
|
Options_SetPostProxyParam: {
|
|
3532
|
-
[key: string]:
|
|
3533
|
-
[key: string]: unknown;
|
|
3534
|
-
};
|
|
4558
|
+
[key: string]: unknown;
|
|
3535
4559
|
};
|
|
3536
4560
|
/** @description Overrides for the `rc` option block. */
|
|
3537
4561
|
Options_SetPostRcParam: {
|
|
3538
|
-
[key: string]:
|
|
3539
|
-
[key: string]: unknown;
|
|
3540
|
-
};
|
|
4562
|
+
[key: string]: unknown;
|
|
3541
4563
|
};
|
|
3542
4564
|
/** @description Overrides for the `restic` option block. */
|
|
3543
4565
|
Options_SetPostResticParam: {
|
|
3544
|
-
[key: string]:
|
|
3545
|
-
[key: string]: unknown;
|
|
3546
|
-
};
|
|
4566
|
+
[key: string]: unknown;
|
|
3547
4567
|
};
|
|
3548
4568
|
/** @description Overrides for the `s3` option block. */
|
|
3549
4569
|
Options_SetPostS3Param: {
|
|
3550
|
-
[key: string]:
|
|
3551
|
-
[key: string]: unknown;
|
|
3552
|
-
};
|
|
4570
|
+
[key: string]: unknown;
|
|
3553
4571
|
};
|
|
3554
4572
|
/** @description Overrides for the `sftp` option block. */
|
|
3555
4573
|
Options_SetPostSftpParam: {
|
|
3556
|
-
[key: string]:
|
|
3557
|
-
[key: string]: unknown;
|
|
3558
|
-
};
|
|
4574
|
+
[key: string]: unknown;
|
|
3559
4575
|
};
|
|
3560
4576
|
/** @description Overrides for the `vfs` option block. */
|
|
3561
4577
|
Options_SetPostVfsParam: {
|
|
3562
|
-
[key: string]:
|
|
3563
|
-
[key: string]: unknown;
|
|
3564
|
-
};
|
|
4578
|
+
[key: string]: unknown;
|
|
3565
4579
|
};
|
|
3566
4580
|
/** @description Overrides for the `webdav` option block. */
|
|
3567
4581
|
Options_SetPostWebdavParam: {
|
|
3568
|
-
[key: string]:
|
|
3569
|
-
[key: string]: unknown;
|
|
3570
|
-
};
|
|
4582
|
+
[key: string]: unknown;
|
|
3571
4583
|
};
|
|
3572
4584
|
/** @description Type of server to start (e.g. `http`, `webdav`, `ftp`, `sftp`). */
|
|
3573
4585
|
Serve_StartPostTypeParam: string;
|
|
@@ -3576,13 +4588,17 @@ export interface components {
|
|
|
3576
4588
|
/** @description Address and port to bind the server to, such as `:5572` or `localhost:8080`. */
|
|
3577
4589
|
Serve_StartPostAddrParam: string;
|
|
3578
4590
|
/** @description Additional arbitrary parameters allowed. */
|
|
3579
|
-
Serve_StartPostAdditionalParam:
|
|
4591
|
+
Serve_StartPostAdditionalParam: {
|
|
4592
|
+
[key: string]: unknown;
|
|
4593
|
+
};
|
|
3580
4594
|
/** @description Identifier of the running serve instance returned by `serve/start`. */
|
|
3581
4595
|
Serve_StopPostIdParam: string;
|
|
3582
4596
|
/** @description Optional VFS identifier to target; required when more than one VFS is active. */
|
|
3583
4597
|
Vfs_ForgetPostFsParam: string;
|
|
3584
4598
|
/** @description Additional arbitrary parameters allowed. */
|
|
3585
|
-
Vfs_ForgetPostAdditionalParam:
|
|
4599
|
+
Vfs_ForgetPostAdditionalParam: {
|
|
4600
|
+
[key: string]: unknown;
|
|
4601
|
+
};
|
|
3586
4602
|
/** @description Optional VFS identifier; omit to list all active VFS instances. */
|
|
3587
4603
|
Vfs_ListPostFsParam: string;
|
|
3588
4604
|
/** @description Optional VFS identifier whose poll interval should be queried or modified. */
|
|
@@ -3606,7 +4622,9 @@ export interface components {
|
|
|
3606
4622
|
/** @description Set to true to refresh entire directory trees. */
|
|
3607
4623
|
Vfs_RefreshPostRecursiveParam: boolean;
|
|
3608
4624
|
/** @description Additional arbitrary parameters allowed. */
|
|
3609
|
-
Vfs_RefreshPostAdditionalParam:
|
|
4625
|
+
Vfs_RefreshPostAdditionalParam: {
|
|
4626
|
+
[key: string]: unknown;
|
|
4627
|
+
};
|
|
3610
4628
|
/** @description Optional VFS identifier whose statistics should be returned. */
|
|
3611
4629
|
Vfs_StatsPostFsParam: string;
|
|
3612
4630
|
/** @description Repository URL of the plugin to install. */
|
|
@@ -3638,7 +4656,11 @@ export interface operations {
|
|
|
3638
4656
|
path?: never;
|
|
3639
4657
|
cookie?: never;
|
|
3640
4658
|
};
|
|
3641
|
-
requestBody?:
|
|
4659
|
+
requestBody?: {
|
|
4660
|
+
content: {
|
|
4661
|
+
"application/json": components["schemas"]["RcNoopRequest"];
|
|
4662
|
+
};
|
|
4663
|
+
};
|
|
3642
4664
|
responses: {
|
|
3643
4665
|
200: components["responses"]["RcNoopResponse"];
|
|
3644
4666
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3647,9 +4669,9 @@ export interface operations {
|
|
|
3647
4669
|
};
|
|
3648
4670
|
operationsCleanup: {
|
|
3649
4671
|
parameters: {
|
|
3650
|
-
query
|
|
4672
|
+
query?: {
|
|
3651
4673
|
/** @description Remote name or path to clean up, for example `drive:`. */
|
|
3652
|
-
fs
|
|
4674
|
+
fs?: components["parameters"]["Operations_CleanupPostFsParam"];
|
|
3653
4675
|
/** @description Assign the request to a custom stats group. */
|
|
3654
4676
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
3655
4677
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -3659,7 +4681,11 @@ export interface operations {
|
|
|
3659
4681
|
path?: never;
|
|
3660
4682
|
cookie?: never;
|
|
3661
4683
|
};
|
|
3662
|
-
requestBody?:
|
|
4684
|
+
requestBody?: {
|
|
4685
|
+
content: {
|
|
4686
|
+
"application/json": components["schemas"]["OperationsCleanupRequest"];
|
|
4687
|
+
};
|
|
4688
|
+
};
|
|
3663
4689
|
responses: {
|
|
3664
4690
|
200: components["responses"]["EmptyObjectResponse"];
|
|
3665
4691
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3668,15 +4694,15 @@ export interface operations {
|
|
|
3668
4694
|
};
|
|
3669
4695
|
operationsCopyfile: {
|
|
3670
4696
|
parameters: {
|
|
3671
|
-
query
|
|
4697
|
+
query?: {
|
|
3672
4698
|
/** @description Source remote name or path, such as `drive:` or `/` for the local filesystem. */
|
|
3673
|
-
srcFs
|
|
4699
|
+
srcFs?: components["parameters"]["Operations_CopyfilePostSrcFsParam"];
|
|
3674
4700
|
/** @description Path to the source object within `srcFs`, for example `dir/file.txt`. */
|
|
3675
|
-
srcRemote
|
|
4701
|
+
srcRemote?: components["parameters"]["Operations_CopyfilePostSrcRemoteParam"];
|
|
3676
4702
|
/** @description Destination remote name or path, such as `drive2:` or `/` for local filesystem. */
|
|
3677
|
-
dstFs
|
|
4703
|
+
dstFs?: components["parameters"]["Operations_CopyfilePostDstFsParam"];
|
|
3678
4704
|
/** @description Target path within `dstFs` where the file should be written. */
|
|
3679
|
-
dstRemote
|
|
4705
|
+
dstRemote?: components["parameters"]["Operations_CopyfilePostDstRemoteParam"];
|
|
3680
4706
|
/** @description Assign the request to a custom stats group. */
|
|
3681
4707
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
3682
4708
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -3686,7 +4712,11 @@ export interface operations {
|
|
|
3686
4712
|
path?: never;
|
|
3687
4713
|
cookie?: never;
|
|
3688
4714
|
};
|
|
3689
|
-
requestBody?:
|
|
4715
|
+
requestBody?: {
|
|
4716
|
+
content: {
|
|
4717
|
+
"application/json": components["schemas"]["OperationsCopyfileRequest"];
|
|
4718
|
+
};
|
|
4719
|
+
};
|
|
3690
4720
|
responses: {
|
|
3691
4721
|
200: components["responses"]["EmptyObjectResponse"];
|
|
3692
4722
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3695,13 +4725,13 @@ export interface operations {
|
|
|
3695
4725
|
};
|
|
3696
4726
|
operationsCopyurl: {
|
|
3697
4727
|
parameters: {
|
|
3698
|
-
query
|
|
4728
|
+
query?: {
|
|
3699
4729
|
/** @description Remote name or path that will receive the downloaded file, e.g. `drive:`. */
|
|
3700
|
-
fs
|
|
4730
|
+
fs?: components["parameters"]["Operations_CopyurlPostFsParam"];
|
|
3701
4731
|
/** @description Destination path within `fs` where the fetched object will be stored. */
|
|
3702
|
-
remote
|
|
4732
|
+
remote?: components["parameters"]["Operations_CopyurlPostRemoteParam"];
|
|
3703
4733
|
/** @description Source URL to fetch the object from. */
|
|
3704
|
-
url
|
|
4734
|
+
url?: components["parameters"]["Operations_CopyurlPostUrlParam"];
|
|
3705
4735
|
/** @description Set to true to derive the destination filename from the URL. */
|
|
3706
4736
|
autoFilename?: components["parameters"]["Operations_CopyurlPostAutoFilenameParam"];
|
|
3707
4737
|
/** @description Assign the request to a custom stats group. */
|
|
@@ -3713,7 +4743,11 @@ export interface operations {
|
|
|
3713
4743
|
path?: never;
|
|
3714
4744
|
cookie?: never;
|
|
3715
4745
|
};
|
|
3716
|
-
requestBody?:
|
|
4746
|
+
requestBody?: {
|
|
4747
|
+
content: {
|
|
4748
|
+
"application/json": components["schemas"]["OperationsCopyurlRequest"];
|
|
4749
|
+
};
|
|
4750
|
+
};
|
|
3717
4751
|
responses: {
|
|
3718
4752
|
200: components["responses"]["EmptyObjectResponse"];
|
|
3719
4753
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3722,9 +4756,9 @@ export interface operations {
|
|
|
3722
4756
|
};
|
|
3723
4757
|
operationsDelete: {
|
|
3724
4758
|
parameters: {
|
|
3725
|
-
query
|
|
4759
|
+
query?: {
|
|
3726
4760
|
/** @description Remote name or path whose contents should be removed. */
|
|
3727
|
-
fs
|
|
4761
|
+
fs?: components["parameters"]["Operations_DeletePostFsParam"];
|
|
3728
4762
|
/** @description JSON encoded config overrides applied for this call only. */
|
|
3729
4763
|
_config?: components["parameters"]["GlobalConfigParam"];
|
|
3730
4764
|
/** @description JSON encoded filter overrides applied for this call only. */
|
|
@@ -3738,7 +4772,11 @@ export interface operations {
|
|
|
3738
4772
|
path?: never;
|
|
3739
4773
|
cookie?: never;
|
|
3740
4774
|
};
|
|
3741
|
-
requestBody?:
|
|
4775
|
+
requestBody?: {
|
|
4776
|
+
content: {
|
|
4777
|
+
"application/json": components["schemas"]["OperationsDeleteRequest"];
|
|
4778
|
+
};
|
|
4779
|
+
};
|
|
3742
4780
|
responses: {
|
|
3743
4781
|
200: components["responses"]["EmptyObjectResponse"];
|
|
3744
4782
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3747,11 +4785,11 @@ export interface operations {
|
|
|
3747
4785
|
};
|
|
3748
4786
|
operationsDeletefile: {
|
|
3749
4787
|
parameters: {
|
|
3750
|
-
query
|
|
4788
|
+
query?: {
|
|
3751
4789
|
/** @description Remote name or path that contains the file to delete. */
|
|
3752
|
-
fs
|
|
4790
|
+
fs?: components["parameters"]["Operations_DeletefilePostFsParam"];
|
|
3753
4791
|
/** @description Exact path to the file within `fs` that should be deleted. */
|
|
3754
|
-
remote
|
|
4792
|
+
remote?: components["parameters"]["Operations_DeletefilePostRemoteParam"];
|
|
3755
4793
|
/** @description Assign the request to a custom stats group. */
|
|
3756
4794
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
3757
4795
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -3761,7 +4799,11 @@ export interface operations {
|
|
|
3761
4799
|
path?: never;
|
|
3762
4800
|
cookie?: never;
|
|
3763
4801
|
};
|
|
3764
|
-
requestBody?:
|
|
4802
|
+
requestBody?: {
|
|
4803
|
+
content: {
|
|
4804
|
+
"application/json": components["schemas"]["OperationsDeletefileRequest"];
|
|
4805
|
+
};
|
|
4806
|
+
};
|
|
3765
4807
|
responses: {
|
|
3766
4808
|
200: components["responses"]["EmptyObjectResponse"];
|
|
3767
4809
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3770,9 +4812,9 @@ export interface operations {
|
|
|
3770
4812
|
};
|
|
3771
4813
|
operationsFsinfo: {
|
|
3772
4814
|
parameters: {
|
|
3773
|
-
query
|
|
4815
|
+
query?: {
|
|
3774
4816
|
/** @description Remote name or path to inspect, e.g. `drive:`. */
|
|
3775
|
-
fs
|
|
4817
|
+
fs?: components["parameters"]["Operations_FsinfoPostFsParam"];
|
|
3776
4818
|
/** @description Assign the request to a custom stats group. */
|
|
3777
4819
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
3778
4820
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -3782,7 +4824,11 @@ export interface operations {
|
|
|
3782
4824
|
path?: never;
|
|
3783
4825
|
cookie?: never;
|
|
3784
4826
|
};
|
|
3785
|
-
requestBody?:
|
|
4827
|
+
requestBody?: {
|
|
4828
|
+
content: {
|
|
4829
|
+
"application/json": components["schemas"]["OperationsFsinfoRequest"];
|
|
4830
|
+
};
|
|
4831
|
+
};
|
|
3786
4832
|
responses: {
|
|
3787
4833
|
200: components["responses"]["OperationsFsinfoResponse"];
|
|
3788
4834
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3791,11 +4837,11 @@ export interface operations {
|
|
|
3791
4837
|
};
|
|
3792
4838
|
operationsHashsum: {
|
|
3793
4839
|
parameters: {
|
|
3794
|
-
query
|
|
4840
|
+
query?: {
|
|
3795
4841
|
/** @description Remote name or path to hash, such as `drive:` or `/`. */
|
|
3796
|
-
fs
|
|
4842
|
+
fs?: components["parameters"]["Operations_HashsumPostFsParam"];
|
|
3797
4843
|
/** @description Hash algorithm to use, e.g. `md5`, `sha1`, or another supported name. */
|
|
3798
|
-
hashType
|
|
4844
|
+
hashType?: components["parameters"]["Operations_HashsumPostHashTypeParam"];
|
|
3799
4845
|
/** @description Set to true to force reading the data instead of using remote checksums. */
|
|
3800
4846
|
download?: components["parameters"]["Operations_HashsumPostDownloadParam"];
|
|
3801
4847
|
/** @description Set to true to emit hash values in base64 rather than hexadecimal. */
|
|
@@ -3809,7 +4855,11 @@ export interface operations {
|
|
|
3809
4855
|
path?: never;
|
|
3810
4856
|
cookie?: never;
|
|
3811
4857
|
};
|
|
3812
|
-
requestBody?:
|
|
4858
|
+
requestBody?: {
|
|
4859
|
+
content: {
|
|
4860
|
+
"application/json": components["schemas"]["OperationsHashsumRequest"];
|
|
4861
|
+
};
|
|
4862
|
+
};
|
|
3813
4863
|
responses: {
|
|
3814
4864
|
200: components["responses"]["OperationsHashsumResponse"];
|
|
3815
4865
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3818,13 +4868,13 @@ export interface operations {
|
|
|
3818
4868
|
};
|
|
3819
4869
|
operationsHashsumfile: {
|
|
3820
4870
|
parameters: {
|
|
3821
|
-
query
|
|
4871
|
+
query?: {
|
|
3822
4872
|
/** @description Remote name or path containing the file to hash. */
|
|
3823
|
-
fs
|
|
4873
|
+
fs?: components["parameters"]["Operations_HashsumfilePostFsParam"];
|
|
3824
4874
|
/** @description Path to the specific file within `fs` to hash. */
|
|
3825
|
-
remote
|
|
4875
|
+
remote?: components["parameters"]["Operations_HashsumfilePostRemoteParam"];
|
|
3826
4876
|
/** @description Hash algorithm to use, e.g. `md5`, `sha1`, or another supported name. */
|
|
3827
|
-
hashType
|
|
4877
|
+
hashType?: components["parameters"]["Operations_HashsumfilePostHashTypeParam"];
|
|
3828
4878
|
/** @description Set to true to force reading the data instead of using remote checksums. */
|
|
3829
4879
|
download?: components["parameters"]["Operations_HashsumfilePostDownloadParam"];
|
|
3830
4880
|
/** @description Set to true to emit the hash value in base64 rather than hexadecimal. */
|
|
@@ -3838,7 +4888,11 @@ export interface operations {
|
|
|
3838
4888
|
path?: never;
|
|
3839
4889
|
cookie?: never;
|
|
3840
4890
|
};
|
|
3841
|
-
requestBody?:
|
|
4891
|
+
requestBody?: {
|
|
4892
|
+
content: {
|
|
4893
|
+
"application/json": components["schemas"]["OperationsHashsumfileRequest"];
|
|
4894
|
+
};
|
|
4895
|
+
};
|
|
3842
4896
|
responses: {
|
|
3843
4897
|
200: components["responses"]["OperationsHashsumfileResponse"];
|
|
3844
4898
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3847,15 +4901,15 @@ export interface operations {
|
|
|
3847
4901
|
};
|
|
3848
4902
|
operationsMovefile: {
|
|
3849
4903
|
parameters: {
|
|
3850
|
-
query
|
|
4904
|
+
query?: {
|
|
3851
4905
|
/** @description Source remote name or path containing the file to move. */
|
|
3852
|
-
srcFs
|
|
4906
|
+
srcFs?: components["parameters"]["Operations_MovefilePostSrcFsParam"];
|
|
3853
4907
|
/** @description Path to the source object within `srcFs`. */
|
|
3854
|
-
srcRemote
|
|
4908
|
+
srcRemote?: components["parameters"]["Operations_MovefilePostSrcRemoteParam"];
|
|
3855
4909
|
/** @description Destination remote name or path where the file will be moved. */
|
|
3856
|
-
dstFs
|
|
4910
|
+
dstFs?: components["parameters"]["Operations_MovefilePostDstFsParam"];
|
|
3857
4911
|
/** @description Destination path within `dstFs` for the moved object. */
|
|
3858
|
-
dstRemote
|
|
4912
|
+
dstRemote?: components["parameters"]["Operations_MovefilePostDstRemoteParam"];
|
|
3859
4913
|
/** @description Assign the request to a custom stats group. */
|
|
3860
4914
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
3861
4915
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -3865,7 +4919,11 @@ export interface operations {
|
|
|
3865
4919
|
path?: never;
|
|
3866
4920
|
cookie?: never;
|
|
3867
4921
|
};
|
|
3868
|
-
requestBody?:
|
|
4922
|
+
requestBody?: {
|
|
4923
|
+
content: {
|
|
4924
|
+
"application/json": components["schemas"]["OperationsMovefileRequest"];
|
|
4925
|
+
};
|
|
4926
|
+
};
|
|
3869
4927
|
responses: {
|
|
3870
4928
|
200: components["responses"]["EmptyObjectResponse"];
|
|
3871
4929
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3874,11 +4932,11 @@ export interface operations {
|
|
|
3874
4932
|
};
|
|
3875
4933
|
operationsPubliclink: {
|
|
3876
4934
|
parameters: {
|
|
3877
|
-
query
|
|
4935
|
+
query?: {
|
|
3878
4936
|
/** @description Remote name or path hosting the object for which to manage a public link. */
|
|
3879
|
-
fs
|
|
4937
|
+
fs?: components["parameters"]["Operations_PubliclinkPostFsParam"];
|
|
3880
4938
|
/** @description Path within `fs` to the object for which to create or remove a public link. */
|
|
3881
|
-
remote
|
|
4939
|
+
remote?: components["parameters"]["Operations_PubliclinkPostRemoteParam"];
|
|
3882
4940
|
/** @description Set to true to remove an existing public link instead of creating one. */
|
|
3883
4941
|
unlink?: components["parameters"]["Operations_PubliclinkPostUnlinkParam"];
|
|
3884
4942
|
/** @description Optional expiration time for the public link, formatted as supported by the backend. */
|
|
@@ -3892,7 +4950,11 @@ export interface operations {
|
|
|
3892
4950
|
path?: never;
|
|
3893
4951
|
cookie?: never;
|
|
3894
4952
|
};
|
|
3895
|
-
requestBody?:
|
|
4953
|
+
requestBody?: {
|
|
4954
|
+
content: {
|
|
4955
|
+
"application/json": components["schemas"]["OperationsPubliclinkRequest"];
|
|
4956
|
+
};
|
|
4957
|
+
};
|
|
3896
4958
|
responses: {
|
|
3897
4959
|
200: components["responses"]["OperationsPubliclinkResponse"];
|
|
3898
4960
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3901,11 +4963,11 @@ export interface operations {
|
|
|
3901
4963
|
};
|
|
3902
4964
|
operationsRmdirs: {
|
|
3903
4965
|
parameters: {
|
|
3904
|
-
query
|
|
4966
|
+
query?: {
|
|
3905
4967
|
/** @description Remote name or path to scan for empty directories. */
|
|
3906
|
-
fs
|
|
4968
|
+
fs?: components["parameters"]["Operations_RmdirsPostFsParam"];
|
|
3907
4969
|
/** @description Path within `fs` whose empty subdirectories should be removed. */
|
|
3908
|
-
remote
|
|
4970
|
+
remote?: components["parameters"]["Operations_RmdirsPostRemoteParam"];
|
|
3909
4971
|
/** @description Set to true to preserve the top-level directory even if empty. */
|
|
3910
4972
|
leaveRoot?: components["parameters"]["Operations_RmdirsPostLeaveRootParam"];
|
|
3911
4973
|
/** @description Assign the request to a custom stats group. */
|
|
@@ -3917,7 +4979,11 @@ export interface operations {
|
|
|
3917
4979
|
path?: never;
|
|
3918
4980
|
cookie?: never;
|
|
3919
4981
|
};
|
|
3920
|
-
requestBody?:
|
|
4982
|
+
requestBody?: {
|
|
4983
|
+
content: {
|
|
4984
|
+
"application/json": components["schemas"]["OperationsRmdirsRequest"];
|
|
4985
|
+
};
|
|
4986
|
+
};
|
|
3921
4987
|
responses: {
|
|
3922
4988
|
200: components["responses"]["EmptyObjectResponse"];
|
|
3923
4989
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3926,9 +4992,9 @@ export interface operations {
|
|
|
3926
4992
|
};
|
|
3927
4993
|
operationsSettier: {
|
|
3928
4994
|
parameters: {
|
|
3929
|
-
query
|
|
4995
|
+
query?: {
|
|
3930
4996
|
/** @description Remote name or path whose storage class tier should be changed. */
|
|
3931
|
-
fs
|
|
4997
|
+
fs?: components["parameters"]["Operations_SettierPostFsParam"];
|
|
3932
4998
|
/** @description Assign the request to a custom stats group. */
|
|
3933
4999
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
3934
5000
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -3938,7 +5004,11 @@ export interface operations {
|
|
|
3938
5004
|
path?: never;
|
|
3939
5005
|
cookie?: never;
|
|
3940
5006
|
};
|
|
3941
|
-
requestBody?:
|
|
5007
|
+
requestBody?: {
|
|
5008
|
+
content: {
|
|
5009
|
+
"application/json": components["schemas"]["OperationsSettierRequest"];
|
|
5010
|
+
};
|
|
5011
|
+
};
|
|
3942
5012
|
responses: {
|
|
3943
5013
|
200: components["responses"]["EmptyObjectResponse"];
|
|
3944
5014
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3947,11 +5017,11 @@ export interface operations {
|
|
|
3947
5017
|
};
|
|
3948
5018
|
operationsSettierfile: {
|
|
3949
5019
|
parameters: {
|
|
3950
|
-
query
|
|
5020
|
+
query?: {
|
|
3951
5021
|
/** @description Remote name or path that contains the object whose tier should change. */
|
|
3952
|
-
fs
|
|
5022
|
+
fs?: components["parameters"]["Operations_SettierfilePostFsParam"];
|
|
3953
5023
|
/** @description Path within `fs` to the object whose storage class tier should be updated. */
|
|
3954
|
-
remote
|
|
5024
|
+
remote?: components["parameters"]["Operations_SettierfilePostRemoteParam"];
|
|
3955
5025
|
/** @description Assign the request to a custom stats group. */
|
|
3956
5026
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
3957
5027
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -3961,7 +5031,11 @@ export interface operations {
|
|
|
3961
5031
|
path?: never;
|
|
3962
5032
|
cookie?: never;
|
|
3963
5033
|
};
|
|
3964
|
-
requestBody?:
|
|
5034
|
+
requestBody?: {
|
|
5035
|
+
content: {
|
|
5036
|
+
"application/json": components["schemas"]["OperationsSettierfileRequest"];
|
|
5037
|
+
};
|
|
5038
|
+
};
|
|
3965
5039
|
responses: {
|
|
3966
5040
|
200: components["responses"]["EmptyObjectResponse"];
|
|
3967
5041
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3970,9 +5044,9 @@ export interface operations {
|
|
|
3970
5044
|
};
|
|
3971
5045
|
operationsSize: {
|
|
3972
5046
|
parameters: {
|
|
3973
|
-
query
|
|
5047
|
+
query?: {
|
|
3974
5048
|
/** @description Remote name or path to measure aggregate size information for. */
|
|
3975
|
-
fs
|
|
5049
|
+
fs?: components["parameters"]["Operations_SizePostFsParam"];
|
|
3976
5050
|
/** @description Assign the request to a custom stats group. */
|
|
3977
5051
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
3978
5052
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -3982,7 +5056,11 @@ export interface operations {
|
|
|
3982
5056
|
path?: never;
|
|
3983
5057
|
cookie?: never;
|
|
3984
5058
|
};
|
|
3985
|
-
requestBody?:
|
|
5059
|
+
requestBody?: {
|
|
5060
|
+
content: {
|
|
5061
|
+
"application/json": components["schemas"]["OperationsSizeRequest"];
|
|
5062
|
+
};
|
|
5063
|
+
};
|
|
3986
5064
|
responses: {
|
|
3987
5065
|
200: components["responses"]["OperationsSizeResponse"];
|
|
3988
5066
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4003,7 +5081,11 @@ export interface operations {
|
|
|
4003
5081
|
path?: never;
|
|
4004
5082
|
cookie?: never;
|
|
4005
5083
|
};
|
|
4006
|
-
requestBody?:
|
|
5084
|
+
requestBody?: {
|
|
5085
|
+
content: {
|
|
5086
|
+
"application/json": components["schemas"]["CoreBwlimitRequest"];
|
|
5087
|
+
};
|
|
5088
|
+
};
|
|
4007
5089
|
responses: {
|
|
4008
5090
|
200: components["responses"]["CoreBwlimitResponse"];
|
|
4009
5091
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4012,9 +5094,9 @@ export interface operations {
|
|
|
4012
5094
|
};
|
|
4013
5095
|
coreCommand: {
|
|
4014
5096
|
parameters: {
|
|
4015
|
-
query
|
|
5097
|
+
query?: {
|
|
4016
5098
|
/** @description Name of the rclone command to execute, for example `ls` or `lsf`. */
|
|
4017
|
-
command
|
|
5099
|
+
command?: components["parameters"]["Core_CommandPostCommandParam"];
|
|
4018
5100
|
/** @description Optional positional arguments for the command. Repeat to supply multiple values. */
|
|
4019
5101
|
arg?: components["parameters"]["Core_CommandPostArgParam"];
|
|
4020
5102
|
/** @description Optional command options encoded as a JSON string. */
|
|
@@ -4030,7 +5112,11 @@ export interface operations {
|
|
|
4030
5112
|
path?: never;
|
|
4031
5113
|
cookie?: never;
|
|
4032
5114
|
};
|
|
4033
|
-
requestBody?:
|
|
5115
|
+
requestBody?: {
|
|
5116
|
+
content: {
|
|
5117
|
+
"application/json": components["schemas"]["CoreCommandRequest"];
|
|
5118
|
+
};
|
|
5119
|
+
};
|
|
4034
5120
|
responses: {
|
|
4035
5121
|
200: components["responses"]["CoreCommandResponse"];
|
|
4036
5122
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4051,7 +5137,11 @@ export interface operations {
|
|
|
4051
5137
|
path?: never;
|
|
4052
5138
|
cookie?: never;
|
|
4053
5139
|
};
|
|
4054
|
-
requestBody?:
|
|
5140
|
+
requestBody?: {
|
|
5141
|
+
content: {
|
|
5142
|
+
"application/json": components["schemas"]["CoreDuRequest"];
|
|
5143
|
+
};
|
|
5144
|
+
};
|
|
4055
5145
|
responses: {
|
|
4056
5146
|
200: components["responses"]["CoreDuResponse"];
|
|
4057
5147
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4070,7 +5160,11 @@ export interface operations {
|
|
|
4070
5160
|
path?: never;
|
|
4071
5161
|
cookie?: never;
|
|
4072
5162
|
};
|
|
4073
|
-
requestBody?:
|
|
5163
|
+
requestBody?: {
|
|
5164
|
+
content: {
|
|
5165
|
+
"application/json": components["schemas"]["CoreGcRequest"];
|
|
5166
|
+
};
|
|
5167
|
+
};
|
|
4074
5168
|
responses: {
|
|
4075
5169
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4076
5170
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4089,7 +5183,11 @@ export interface operations {
|
|
|
4089
5183
|
path?: never;
|
|
4090
5184
|
cookie?: never;
|
|
4091
5185
|
};
|
|
4092
|
-
requestBody?:
|
|
5186
|
+
requestBody?: {
|
|
5187
|
+
content: {
|
|
5188
|
+
"application/json": components["schemas"]["CoreGroupListRequest"];
|
|
5189
|
+
};
|
|
5190
|
+
};
|
|
4093
5191
|
responses: {
|
|
4094
5192
|
/** @description Names of stats groups. */
|
|
4095
5193
|
200: {
|
|
@@ -4118,7 +5216,11 @@ export interface operations {
|
|
|
4118
5216
|
path?: never;
|
|
4119
5217
|
cookie?: never;
|
|
4120
5218
|
};
|
|
4121
|
-
requestBody?:
|
|
5219
|
+
requestBody?: {
|
|
5220
|
+
content: {
|
|
5221
|
+
"application/json": components["schemas"]["CoreMemstatsRequest"];
|
|
5222
|
+
};
|
|
5223
|
+
};
|
|
4122
5224
|
responses: {
|
|
4123
5225
|
/** @description Memory statistics fields from the Go runtime. */
|
|
4124
5226
|
200: {
|
|
@@ -4137,9 +5239,9 @@ export interface operations {
|
|
|
4137
5239
|
};
|
|
4138
5240
|
coreObscure: {
|
|
4139
5241
|
parameters: {
|
|
4140
|
-
query
|
|
5242
|
+
query?: {
|
|
4141
5243
|
/** @description Plain-text string to obscure for storage in the config file. */
|
|
4142
|
-
clear
|
|
5244
|
+
clear?: components["parameters"]["Core_ObscurePostClearParam"];
|
|
4143
5245
|
/** @description Assign the request to a custom stats group. */
|
|
4144
5246
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4145
5247
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4149,7 +5251,11 @@ export interface operations {
|
|
|
4149
5251
|
path?: never;
|
|
4150
5252
|
cookie?: never;
|
|
4151
5253
|
};
|
|
4152
|
-
requestBody?:
|
|
5254
|
+
requestBody?: {
|
|
5255
|
+
content: {
|
|
5256
|
+
"application/json": components["schemas"]["CoreObscureRequest"];
|
|
5257
|
+
};
|
|
5258
|
+
};
|
|
4153
5259
|
responses: {
|
|
4154
5260
|
/** @description Obscured string result. */
|
|
4155
5261
|
200: {
|
|
@@ -4178,7 +5284,11 @@ export interface operations {
|
|
|
4178
5284
|
path?: never;
|
|
4179
5285
|
cookie?: never;
|
|
4180
5286
|
};
|
|
4181
|
-
requestBody?:
|
|
5287
|
+
requestBody?: {
|
|
5288
|
+
content: {
|
|
5289
|
+
"application/json": components["schemas"]["CorePidRequest"];
|
|
5290
|
+
};
|
|
5291
|
+
};
|
|
4182
5292
|
responses: {
|
|
4183
5293
|
/** @description Process ID payload. */
|
|
4184
5294
|
200: {
|
|
@@ -4209,7 +5319,11 @@ export interface operations {
|
|
|
4209
5319
|
path?: never;
|
|
4210
5320
|
cookie?: never;
|
|
4211
5321
|
};
|
|
4212
|
-
requestBody?:
|
|
5322
|
+
requestBody?: {
|
|
5323
|
+
content: {
|
|
5324
|
+
"application/json": components["schemas"]["CoreQuitRequest"];
|
|
5325
|
+
};
|
|
5326
|
+
};
|
|
4213
5327
|
responses: {
|
|
4214
5328
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4215
5329
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4218,9 +5332,9 @@ export interface operations {
|
|
|
4218
5332
|
};
|
|
4219
5333
|
coreStatsDelete: {
|
|
4220
5334
|
parameters: {
|
|
4221
|
-
query
|
|
5335
|
+
query?: {
|
|
4222
5336
|
/** @description Stats group identifier to remove. */
|
|
4223
|
-
group
|
|
5337
|
+
group?: components["parameters"]["Core_StatsDeletePostGroupParam"];
|
|
4224
5338
|
/** @description Assign the request to a custom stats group. */
|
|
4225
5339
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4226
5340
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4230,7 +5344,11 @@ export interface operations {
|
|
|
4230
5344
|
path?: never;
|
|
4231
5345
|
cookie?: never;
|
|
4232
5346
|
};
|
|
4233
|
-
requestBody?:
|
|
5347
|
+
requestBody?: {
|
|
5348
|
+
content: {
|
|
5349
|
+
"application/json": components["schemas"]["CoreStatsDeleteRequest"];
|
|
5350
|
+
};
|
|
5351
|
+
};
|
|
4234
5352
|
responses: {
|
|
4235
5353
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4236
5354
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4251,7 +5369,11 @@ export interface operations {
|
|
|
4251
5369
|
path?: never;
|
|
4252
5370
|
cookie?: never;
|
|
4253
5371
|
};
|
|
4254
|
-
requestBody?:
|
|
5372
|
+
requestBody?: {
|
|
5373
|
+
content: {
|
|
5374
|
+
"application/json": components["schemas"]["CoreStatsResetRequest"];
|
|
5375
|
+
};
|
|
5376
|
+
};
|
|
4255
5377
|
responses: {
|
|
4256
5378
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4257
5379
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4272,7 +5394,11 @@ export interface operations {
|
|
|
4272
5394
|
path?: never;
|
|
4273
5395
|
cookie?: never;
|
|
4274
5396
|
};
|
|
4275
|
-
requestBody?:
|
|
5397
|
+
requestBody?: {
|
|
5398
|
+
content: {
|
|
5399
|
+
"application/json": components["schemas"]["CoreTransferredRequest"];
|
|
5400
|
+
};
|
|
5401
|
+
};
|
|
4276
5402
|
responses: {
|
|
4277
5403
|
200: components["responses"]["CoreTransferredResponse"];
|
|
4278
5404
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4281,9 +5407,9 @@ export interface operations {
|
|
|
4281
5407
|
};
|
|
4282
5408
|
debugSetBlockProfileRate: {
|
|
4283
5409
|
parameters: {
|
|
4284
|
-
query
|
|
5410
|
+
query?: {
|
|
4285
5411
|
/** @description Sampling interval in nanoseconds for blocking profile collection; use 1 to capture all events. */
|
|
4286
|
-
rate
|
|
5412
|
+
rate?: components["parameters"]["Debug_SetBlockProfileRatePostRateParam"];
|
|
4287
5413
|
/** @description Assign the request to a custom stats group. */
|
|
4288
5414
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4289
5415
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4293,7 +5419,11 @@ export interface operations {
|
|
|
4293
5419
|
path?: never;
|
|
4294
5420
|
cookie?: never;
|
|
4295
5421
|
};
|
|
4296
|
-
requestBody?:
|
|
5422
|
+
requestBody?: {
|
|
5423
|
+
content: {
|
|
5424
|
+
"application/json": components["schemas"]["DebugSetBlockProfileRateRequest"];
|
|
5425
|
+
};
|
|
5426
|
+
};
|
|
4297
5427
|
responses: {
|
|
4298
5428
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4299
5429
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4302,9 +5432,9 @@ export interface operations {
|
|
|
4302
5432
|
};
|
|
4303
5433
|
debugSetGcPercent: {
|
|
4304
5434
|
parameters: {
|
|
4305
|
-
query
|
|
5435
|
+
query?: {
|
|
4306
5436
|
/** @description Target percentage of newly allocated data to trigger garbage collection. */
|
|
4307
|
-
"gc-percent"
|
|
5437
|
+
"gc-percent"?: components["parameters"]["Debug_SetGcPercentPostGcPercentParam"];
|
|
4308
5438
|
/** @description Assign the request to a custom stats group. */
|
|
4309
5439
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4310
5440
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4314,7 +5444,11 @@ export interface operations {
|
|
|
4314
5444
|
path?: never;
|
|
4315
5445
|
cookie?: never;
|
|
4316
5446
|
};
|
|
4317
|
-
requestBody?:
|
|
5447
|
+
requestBody?: {
|
|
5448
|
+
content: {
|
|
5449
|
+
"application/json": components["schemas"]["DebugSetGcPercentRequest"];
|
|
5450
|
+
};
|
|
5451
|
+
};
|
|
4318
5452
|
responses: {
|
|
4319
5453
|
200: components["responses"]["DebugSetGcPercentResponse"];
|
|
4320
5454
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4323,9 +5457,9 @@ export interface operations {
|
|
|
4323
5457
|
};
|
|
4324
5458
|
debugSetMutexProfileFraction: {
|
|
4325
5459
|
parameters: {
|
|
4326
|
-
query
|
|
5460
|
+
query?: {
|
|
4327
5461
|
/** @description Sampling fraction for mutex contention profiling; set to 0 to disable. */
|
|
4328
|
-
rate
|
|
5462
|
+
rate?: components["parameters"]["Debug_SetMutexProfileFractionPostRateParam"];
|
|
4329
5463
|
/** @description Assign the request to a custom stats group. */
|
|
4330
5464
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4331
5465
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4335,7 +5469,11 @@ export interface operations {
|
|
|
4335
5469
|
path?: never;
|
|
4336
5470
|
cookie?: never;
|
|
4337
5471
|
};
|
|
4338
|
-
requestBody?:
|
|
5472
|
+
requestBody?: {
|
|
5473
|
+
content: {
|
|
5474
|
+
"application/json": components["schemas"]["DebugSetMutexProfileFractionRequest"];
|
|
5475
|
+
};
|
|
5476
|
+
};
|
|
4339
5477
|
responses: {
|
|
4340
5478
|
200: components["responses"]["DebugSetMutexProfileFractionResponse"];
|
|
4341
5479
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4344,9 +5482,9 @@ export interface operations {
|
|
|
4344
5482
|
};
|
|
4345
5483
|
debugSetSoftMemoryLimit: {
|
|
4346
5484
|
parameters: {
|
|
4347
|
-
query
|
|
5485
|
+
query?: {
|
|
4348
5486
|
/** @description Soft memory limit for the Go runtime in bytes. */
|
|
4349
|
-
"mem-limit"
|
|
5487
|
+
"mem-limit"?: components["parameters"]["Debug_SetSoftMemoryLimitPostMemLimitParam"];
|
|
4350
5488
|
/** @description Assign the request to a custom stats group. */
|
|
4351
5489
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4352
5490
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4356,7 +5494,11 @@ export interface operations {
|
|
|
4356
5494
|
path?: never;
|
|
4357
5495
|
cookie?: never;
|
|
4358
5496
|
};
|
|
4359
|
-
requestBody?:
|
|
5497
|
+
requestBody?: {
|
|
5498
|
+
content: {
|
|
5499
|
+
"application/json": components["schemas"]["DebugSetSoftMemoryLimitRequest"];
|
|
5500
|
+
};
|
|
5501
|
+
};
|
|
4360
5502
|
responses: {
|
|
4361
5503
|
200: components["responses"]["DebugSetSoftMemoryLimitResponse"];
|
|
4362
5504
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4375,7 +5517,11 @@ export interface operations {
|
|
|
4375
5517
|
path?: never;
|
|
4376
5518
|
cookie?: never;
|
|
4377
5519
|
};
|
|
4378
|
-
requestBody?:
|
|
5520
|
+
requestBody?: {
|
|
5521
|
+
content: {
|
|
5522
|
+
"application/json": components["schemas"]["FscacheClearRequest"];
|
|
5523
|
+
};
|
|
5524
|
+
};
|
|
4379
5525
|
responses: {
|
|
4380
5526
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4381
5527
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4394,7 +5540,11 @@ export interface operations {
|
|
|
4394
5540
|
path?: never;
|
|
4395
5541
|
cookie?: never;
|
|
4396
5542
|
};
|
|
4397
|
-
requestBody?:
|
|
5543
|
+
requestBody?: {
|
|
5544
|
+
content: {
|
|
5545
|
+
"application/json": components["schemas"]["FscacheEntriesRequest"];
|
|
5546
|
+
};
|
|
5547
|
+
};
|
|
4398
5548
|
responses: {
|
|
4399
5549
|
200: components["responses"]["FscacheEntriesResponse"];
|
|
4400
5550
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4413,7 +5563,11 @@ export interface operations {
|
|
|
4413
5563
|
path?: never;
|
|
4414
5564
|
cookie?: never;
|
|
4415
5565
|
};
|
|
4416
|
-
requestBody?:
|
|
5566
|
+
requestBody?: {
|
|
5567
|
+
content: {
|
|
5568
|
+
"application/json": components["schemas"]["MountListmountsRequest"];
|
|
5569
|
+
};
|
|
5570
|
+
};
|
|
4417
5571
|
responses: {
|
|
4418
5572
|
200: components["responses"]["MountListmountsResponse"];
|
|
4419
5573
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4422,11 +5576,11 @@ export interface operations {
|
|
|
4422
5576
|
};
|
|
4423
5577
|
mountMount: {
|
|
4424
5578
|
parameters: {
|
|
4425
|
-
query
|
|
5579
|
+
query?: {
|
|
4426
5580
|
/** @description Remote path to mount, such as `drive:` or `remote:subdir`. */
|
|
4427
|
-
fs
|
|
5581
|
+
fs?: components["parameters"]["Mount_MountPostFsParam"];
|
|
4428
5582
|
/** @description Absolute local path where the remote should be mounted. */
|
|
4429
|
-
mountPoint
|
|
5583
|
+
mountPoint?: components["parameters"]["Mount_MountPostMountPointParam"];
|
|
4430
5584
|
/** @description Optional mount implementation to use (`mount`, `cmount`, or `mount2`). */
|
|
4431
5585
|
mountType?: components["parameters"]["Mount_MountPostMountTypeParam"];
|
|
4432
5586
|
/** @description Mount options encoded as JSON, matching flags accepted by `rclone mount`. */
|
|
@@ -4446,7 +5600,11 @@ export interface operations {
|
|
|
4446
5600
|
path?: never;
|
|
4447
5601
|
cookie?: never;
|
|
4448
5602
|
};
|
|
4449
|
-
requestBody?:
|
|
5603
|
+
requestBody?: {
|
|
5604
|
+
content: {
|
|
5605
|
+
"application/json": components["schemas"]["MountMountRequest"];
|
|
5606
|
+
};
|
|
5607
|
+
};
|
|
4450
5608
|
responses: {
|
|
4451
5609
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4452
5610
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4465,7 +5623,11 @@ export interface operations {
|
|
|
4465
5623
|
path?: never;
|
|
4466
5624
|
cookie?: never;
|
|
4467
5625
|
};
|
|
4468
|
-
requestBody?:
|
|
5626
|
+
requestBody?: {
|
|
5627
|
+
content: {
|
|
5628
|
+
"application/json": components["schemas"]["MountTypesRequest"];
|
|
5629
|
+
};
|
|
5630
|
+
};
|
|
4469
5631
|
responses: {
|
|
4470
5632
|
200: components["responses"]["MountTypesResponse"];
|
|
4471
5633
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4474,9 +5636,9 @@ export interface operations {
|
|
|
4474
5636
|
};
|
|
4475
5637
|
mountUnmount: {
|
|
4476
5638
|
parameters: {
|
|
4477
|
-
query
|
|
5639
|
+
query?: {
|
|
4478
5640
|
/** @description Local mount point path to unmount. */
|
|
4479
|
-
mountPoint
|
|
5641
|
+
mountPoint?: components["parameters"]["Mount_UnmountPostMountPointParam"];
|
|
4480
5642
|
/** @description Assign the request to a custom stats group. */
|
|
4481
5643
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4482
5644
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4486,7 +5648,11 @@ export interface operations {
|
|
|
4486
5648
|
path?: never;
|
|
4487
5649
|
cookie?: never;
|
|
4488
5650
|
};
|
|
4489
|
-
requestBody?:
|
|
5651
|
+
requestBody?: {
|
|
5652
|
+
content: {
|
|
5653
|
+
"application/json": components["schemas"]["MountUnmountRequest"];
|
|
5654
|
+
};
|
|
5655
|
+
};
|
|
4490
5656
|
responses: {
|
|
4491
5657
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4492
5658
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4505,7 +5671,11 @@ export interface operations {
|
|
|
4505
5671
|
path?: never;
|
|
4506
5672
|
cookie?: never;
|
|
4507
5673
|
};
|
|
4508
|
-
requestBody?:
|
|
5674
|
+
requestBody?: {
|
|
5675
|
+
content: {
|
|
5676
|
+
"application/json": components["schemas"]["MountUnmountallRequest"];
|
|
5677
|
+
};
|
|
5678
|
+
};
|
|
4509
5679
|
responses: {
|
|
4510
5680
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4511
5681
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4524,7 +5694,11 @@ export interface operations {
|
|
|
4524
5694
|
path?: never;
|
|
4525
5695
|
cookie?: never;
|
|
4526
5696
|
};
|
|
4527
|
-
requestBody?:
|
|
5697
|
+
requestBody?: {
|
|
5698
|
+
content: {
|
|
5699
|
+
"application/json": components["schemas"]["RcNoopAuthRequest"];
|
|
5700
|
+
};
|
|
5701
|
+
};
|
|
4528
5702
|
responses: {
|
|
4529
5703
|
200: components["responses"]["RcNoopResponse"];
|
|
4530
5704
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4543,7 +5717,11 @@ export interface operations {
|
|
|
4543
5717
|
path?: never;
|
|
4544
5718
|
cookie?: never;
|
|
4545
5719
|
};
|
|
4546
|
-
requestBody?:
|
|
5720
|
+
requestBody?: {
|
|
5721
|
+
content: {
|
|
5722
|
+
"application/json": components["schemas"]["RcErrorRequest"];
|
|
5723
|
+
};
|
|
5724
|
+
};
|
|
4547
5725
|
responses: {
|
|
4548
5726
|
200: components["responses"]["EmptyResponse"];
|
|
4549
5727
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4562,7 +5740,11 @@ export interface operations {
|
|
|
4562
5740
|
path?: never;
|
|
4563
5741
|
cookie?: never;
|
|
4564
5742
|
};
|
|
4565
|
-
requestBody?:
|
|
5743
|
+
requestBody?: {
|
|
5744
|
+
content: {
|
|
5745
|
+
"application/json": components["schemas"]["RcListRequest"];
|
|
5746
|
+
};
|
|
5747
|
+
};
|
|
4566
5748
|
responses: {
|
|
4567
5749
|
200: components["responses"]["RcListResponse"];
|
|
4568
5750
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4571,9 +5753,9 @@ export interface operations {
|
|
|
4571
5753
|
};
|
|
4572
5754
|
backendCommand: {
|
|
4573
5755
|
parameters: {
|
|
4574
|
-
query
|
|
5756
|
+
query?: {
|
|
4575
5757
|
/** @description Backend-specific command to invoke. */
|
|
4576
|
-
command
|
|
5758
|
+
command?: components["parameters"]["Backend_CommandPostCommandParam"];
|
|
4577
5759
|
/** @description Remote name or path the backend command should target. */
|
|
4578
5760
|
fs?: components["parameters"]["Backend_CommandPostFsParam"];
|
|
4579
5761
|
/** @description Optional positional arguments for the backend command. */
|
|
@@ -4589,7 +5771,11 @@ export interface operations {
|
|
|
4589
5771
|
path?: never;
|
|
4590
5772
|
cookie?: never;
|
|
4591
5773
|
};
|
|
4592
|
-
requestBody?:
|
|
5774
|
+
requestBody?: {
|
|
5775
|
+
content: {
|
|
5776
|
+
"application/json": components["schemas"]["BackendCommandRequest"];
|
|
5777
|
+
};
|
|
5778
|
+
};
|
|
4593
5779
|
responses: {
|
|
4594
5780
|
200: components["responses"]["BackendCommandResponse"];
|
|
4595
5781
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4598,9 +5784,9 @@ export interface operations {
|
|
|
4598
5784
|
};
|
|
4599
5785
|
cacheExpire: {
|
|
4600
5786
|
parameters: {
|
|
4601
|
-
query
|
|
5787
|
+
query?: {
|
|
4602
5788
|
/** @description Remote path to expire from the cache, e.g. `remote:path/to/dir`. */
|
|
4603
|
-
remote
|
|
5789
|
+
remote?: components["parameters"]["Cache_ExpirePostRemoteParam"];
|
|
4604
5790
|
/** @description Set to true to drop cached chunk data along with directory entries. */
|
|
4605
5791
|
withData?: components["parameters"]["Cache_ExpirePostWithDataParam"];
|
|
4606
5792
|
/** @description Assign the request to a custom stats group. */
|
|
@@ -4612,7 +5798,11 @@ export interface operations {
|
|
|
4612
5798
|
path?: never;
|
|
4613
5799
|
cookie?: never;
|
|
4614
5800
|
};
|
|
4615
|
-
requestBody?:
|
|
5801
|
+
requestBody?: {
|
|
5802
|
+
content: {
|
|
5803
|
+
"application/json": components["schemas"]["CacheExpireRequest"];
|
|
5804
|
+
};
|
|
5805
|
+
};
|
|
4616
5806
|
responses: {
|
|
4617
5807
|
200: components["responses"]["EmptyResponse"];
|
|
4618
5808
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4635,7 +5825,11 @@ export interface operations {
|
|
|
4635
5825
|
path?: never;
|
|
4636
5826
|
cookie?: never;
|
|
4637
5827
|
};
|
|
4638
|
-
requestBody?:
|
|
5828
|
+
requestBody?: {
|
|
5829
|
+
content: {
|
|
5830
|
+
"application/json": components["schemas"]["CacheFetchRequest"];
|
|
5831
|
+
};
|
|
5832
|
+
};
|
|
4639
5833
|
responses: {
|
|
4640
5834
|
200: components["responses"]["EmptyResponse"];
|
|
4641
5835
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4654,7 +5848,11 @@ export interface operations {
|
|
|
4654
5848
|
path?: never;
|
|
4655
5849
|
cookie?: never;
|
|
4656
5850
|
};
|
|
4657
|
-
requestBody?:
|
|
5851
|
+
requestBody?: {
|
|
5852
|
+
content: {
|
|
5853
|
+
"application/json": components["schemas"]["CacheStatsRequest"];
|
|
5854
|
+
};
|
|
5855
|
+
};
|
|
4658
5856
|
responses: {
|
|
4659
5857
|
200: components["responses"]["EmptyResponse"];
|
|
4660
5858
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4663,13 +5861,13 @@ export interface operations {
|
|
|
4663
5861
|
};
|
|
4664
5862
|
configCreate: {
|
|
4665
5863
|
parameters: {
|
|
4666
|
-
query
|
|
5864
|
+
query?: {
|
|
4667
5865
|
/** @description Name of the new remote configuration. */
|
|
4668
|
-
name
|
|
5866
|
+
name?: components["parameters"]["Config_CreatePostNameParam"];
|
|
4669
5867
|
/** @description JSON object of configuration key/value pairs required for the remote. */
|
|
4670
|
-
parameters
|
|
5868
|
+
parameters?: components["parameters"]["Config_CreatePostParametersParam"];
|
|
4671
5869
|
/** @description Backend type identifier, such as `drive`, `s3`, or `dropbox`. */
|
|
4672
|
-
type
|
|
5870
|
+
type?: components["parameters"]["Config_CreatePostTypeParam"];
|
|
4673
5871
|
/** @description Optional JSON object controlling interactive behaviour (e.g. `obscure`, `continue`). */
|
|
4674
5872
|
opt?: components["parameters"]["Config_CreatePostOptParam"];
|
|
4675
5873
|
/** @description Assign the request to a custom stats group. */
|
|
@@ -4681,7 +5879,11 @@ export interface operations {
|
|
|
4681
5879
|
path?: never;
|
|
4682
5880
|
cookie?: never;
|
|
4683
5881
|
};
|
|
4684
|
-
requestBody?:
|
|
5882
|
+
requestBody?: {
|
|
5883
|
+
content: {
|
|
5884
|
+
"application/json": components["schemas"]["ConfigCreateRequest"];
|
|
5885
|
+
};
|
|
5886
|
+
};
|
|
4685
5887
|
responses: {
|
|
4686
5888
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4687
5889
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4690,9 +5892,9 @@ export interface operations {
|
|
|
4690
5892
|
};
|
|
4691
5893
|
configDelete: {
|
|
4692
5894
|
parameters: {
|
|
4693
|
-
query
|
|
5895
|
+
query?: {
|
|
4694
5896
|
/** @description Name of the remote configuration to delete. */
|
|
4695
|
-
name
|
|
5897
|
+
name?: components["parameters"]["Config_DeletePostNameParam"];
|
|
4696
5898
|
/** @description Assign the request to a custom stats group. */
|
|
4697
5899
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4698
5900
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4702,7 +5904,11 @@ export interface operations {
|
|
|
4702
5904
|
path?: never;
|
|
4703
5905
|
cookie?: never;
|
|
4704
5906
|
};
|
|
4705
|
-
requestBody?:
|
|
5907
|
+
requestBody?: {
|
|
5908
|
+
content: {
|
|
5909
|
+
"application/json": components["schemas"]["ConfigDeleteRequest"];
|
|
5910
|
+
};
|
|
5911
|
+
};
|
|
4706
5912
|
responses: {
|
|
4707
5913
|
200: components["responses"]["EmptyResponse"];
|
|
4708
5914
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4721,7 +5927,11 @@ export interface operations {
|
|
|
4721
5927
|
path?: never;
|
|
4722
5928
|
cookie?: never;
|
|
4723
5929
|
};
|
|
4724
|
-
requestBody?:
|
|
5930
|
+
requestBody?: {
|
|
5931
|
+
content: {
|
|
5932
|
+
"application/json": components["schemas"]["ConfigDumpRequest"];
|
|
5933
|
+
};
|
|
5934
|
+
};
|
|
4725
5935
|
responses: {
|
|
4726
5936
|
200: components["responses"]["ConfigDumpResponse"];
|
|
4727
5937
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4730,9 +5940,9 @@ export interface operations {
|
|
|
4730
5940
|
};
|
|
4731
5941
|
configGet: {
|
|
4732
5942
|
parameters: {
|
|
4733
|
-
query
|
|
5943
|
+
query?: {
|
|
4734
5944
|
/** @description Name of the remote configuration to fetch. */
|
|
4735
|
-
name
|
|
5945
|
+
name?: components["parameters"]["Config_GetPostNameParam"];
|
|
4736
5946
|
/** @description Assign the request to a custom stats group. */
|
|
4737
5947
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4738
5948
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4742,7 +5952,11 @@ export interface operations {
|
|
|
4742
5952
|
path?: never;
|
|
4743
5953
|
cookie?: never;
|
|
4744
5954
|
};
|
|
4745
|
-
requestBody?:
|
|
5955
|
+
requestBody?: {
|
|
5956
|
+
content: {
|
|
5957
|
+
"application/json": components["schemas"]["ConfigGetRequest"];
|
|
5958
|
+
};
|
|
5959
|
+
};
|
|
4746
5960
|
responses: {
|
|
4747
5961
|
200: components["responses"]["ConfigGetResponse"];
|
|
4748
5962
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4761,7 +5975,11 @@ export interface operations {
|
|
|
4761
5975
|
path?: never;
|
|
4762
5976
|
cookie?: never;
|
|
4763
5977
|
};
|
|
4764
|
-
requestBody?:
|
|
5978
|
+
requestBody?: {
|
|
5979
|
+
content: {
|
|
5980
|
+
"application/json": components["schemas"]["ConfigListremotesRequest"];
|
|
5981
|
+
};
|
|
5982
|
+
};
|
|
4765
5983
|
responses: {
|
|
4766
5984
|
200: components["responses"]["ConfigListremotesResponse"];
|
|
4767
5985
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4770,11 +5988,11 @@ export interface operations {
|
|
|
4770
5988
|
};
|
|
4771
5989
|
configPassword: {
|
|
4772
5990
|
parameters: {
|
|
4773
|
-
query
|
|
5991
|
+
query?: {
|
|
4774
5992
|
/** @description Name of the remote whose secrets should be updated. */
|
|
4775
|
-
name
|
|
5993
|
+
name?: components["parameters"]["Config_PasswordPostNameParam"];
|
|
4776
5994
|
/** @description JSON object of password answers, typically including `pass`. */
|
|
4777
|
-
parameters
|
|
5995
|
+
parameters?: components["parameters"]["Config_PasswordPostParametersParam"];
|
|
4778
5996
|
/** @description Assign the request to a custom stats group. */
|
|
4779
5997
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4780
5998
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4784,7 +6002,11 @@ export interface operations {
|
|
|
4784
6002
|
path?: never;
|
|
4785
6003
|
cookie?: never;
|
|
4786
6004
|
};
|
|
4787
|
-
requestBody?:
|
|
6005
|
+
requestBody?: {
|
|
6006
|
+
content: {
|
|
6007
|
+
"application/json": components["schemas"]["ConfigPasswordRequest"];
|
|
6008
|
+
};
|
|
6009
|
+
};
|
|
4788
6010
|
responses: {
|
|
4789
6011
|
200: components["responses"]["EmptyResponse"];
|
|
4790
6012
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4803,7 +6025,11 @@ export interface operations {
|
|
|
4803
6025
|
path?: never;
|
|
4804
6026
|
cookie?: never;
|
|
4805
6027
|
};
|
|
4806
|
-
requestBody?:
|
|
6028
|
+
requestBody?: {
|
|
6029
|
+
content: {
|
|
6030
|
+
"application/json": components["schemas"]["ConfigPathsRequest"];
|
|
6031
|
+
};
|
|
6032
|
+
};
|
|
4807
6033
|
responses: {
|
|
4808
6034
|
200: components["responses"]["ConfigPathsResponse"];
|
|
4809
6035
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4822,7 +6048,11 @@ export interface operations {
|
|
|
4822
6048
|
path?: never;
|
|
4823
6049
|
cookie?: never;
|
|
4824
6050
|
};
|
|
4825
|
-
requestBody?:
|
|
6051
|
+
requestBody?: {
|
|
6052
|
+
content: {
|
|
6053
|
+
"application/json": components["schemas"]["ConfigProvidersRequest"];
|
|
6054
|
+
};
|
|
6055
|
+
};
|
|
4826
6056
|
responses: {
|
|
4827
6057
|
200: components["responses"]["ConfigProvidersResponse"];
|
|
4828
6058
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4831,9 +6061,9 @@ export interface operations {
|
|
|
4831
6061
|
};
|
|
4832
6062
|
configSetpath: {
|
|
4833
6063
|
parameters: {
|
|
4834
|
-
query
|
|
6064
|
+
query?: {
|
|
4835
6065
|
/** @description Absolute path to the `rclone.conf` file that rclone should use. */
|
|
4836
|
-
path
|
|
6066
|
+
path?: components["parameters"]["Config_SetpathPostPathParam"];
|
|
4837
6067
|
/** @description Assign the request to a custom stats group. */
|
|
4838
6068
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4839
6069
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4843,7 +6073,11 @@ export interface operations {
|
|
|
4843
6073
|
path?: never;
|
|
4844
6074
|
cookie?: never;
|
|
4845
6075
|
};
|
|
4846
|
-
requestBody?:
|
|
6076
|
+
requestBody?: {
|
|
6077
|
+
content: {
|
|
6078
|
+
"application/json": components["schemas"]["ConfigSetpathRequest"];
|
|
6079
|
+
};
|
|
6080
|
+
};
|
|
4847
6081
|
responses: {
|
|
4848
6082
|
200: components["responses"]["EmptyResponse"];
|
|
4849
6083
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4852,9 +6086,9 @@ export interface operations {
|
|
|
4852
6086
|
};
|
|
4853
6087
|
configUnlock: {
|
|
4854
6088
|
parameters: {
|
|
4855
|
-
query
|
|
6089
|
+
query?: {
|
|
4856
6090
|
/** @description Password used to unlock an encrypted config file. */
|
|
4857
|
-
configPassword
|
|
6091
|
+
configPassword?: components["parameters"]["Config_UnlockPostConfigPasswordParam"];
|
|
4858
6092
|
/** @description Assign the request to a custom stats group. */
|
|
4859
6093
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4860
6094
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4864,7 +6098,11 @@ export interface operations {
|
|
|
4864
6098
|
path?: never;
|
|
4865
6099
|
cookie?: never;
|
|
4866
6100
|
};
|
|
4867
|
-
requestBody?:
|
|
6101
|
+
requestBody?: {
|
|
6102
|
+
content: {
|
|
6103
|
+
"application/json": components["schemas"]["ConfigUnlockRequest"];
|
|
6104
|
+
};
|
|
6105
|
+
};
|
|
4868
6106
|
responses: {
|
|
4869
6107
|
200: components["responses"]["EmptyResponse"];
|
|
4870
6108
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4873,11 +6111,11 @@ export interface operations {
|
|
|
4873
6111
|
};
|
|
4874
6112
|
configUpdate: {
|
|
4875
6113
|
parameters: {
|
|
4876
|
-
query
|
|
6114
|
+
query?: {
|
|
4877
6115
|
/** @description Name of the remote configuration to update. */
|
|
4878
|
-
name
|
|
6116
|
+
name?: components["parameters"]["Config_UpdatePostNameParam"];
|
|
4879
6117
|
/** @description JSON object of configuration key/value pairs to apply to the remote. */
|
|
4880
|
-
parameters
|
|
6118
|
+
parameters?: components["parameters"]["Config_UpdatePostParametersParam"];
|
|
4881
6119
|
/** @description Optional JSON object controlling update behaviour (e.g. `obscure`, `continue`). */
|
|
4882
6120
|
opt?: components["parameters"]["Config_UpdatePostOptParam"];
|
|
4883
6121
|
/** @description Assign the request to a custom stats group. */
|
|
@@ -4889,7 +6127,11 @@ export interface operations {
|
|
|
4889
6127
|
path?: never;
|
|
4890
6128
|
cookie?: never;
|
|
4891
6129
|
};
|
|
4892
|
-
requestBody?:
|
|
6130
|
+
requestBody?: {
|
|
6131
|
+
content: {
|
|
6132
|
+
"application/json": components["schemas"]["ConfigUpdateRequest"];
|
|
6133
|
+
};
|
|
6134
|
+
};
|
|
4893
6135
|
responses: {
|
|
4894
6136
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4895
6137
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4908,7 +6150,11 @@ export interface operations {
|
|
|
4908
6150
|
path?: never;
|
|
4909
6151
|
cookie?: never;
|
|
4910
6152
|
};
|
|
4911
|
-
requestBody?:
|
|
6153
|
+
requestBody?: {
|
|
6154
|
+
content: {
|
|
6155
|
+
"application/json": components["schemas"]["CoreVersionRequest"];
|
|
6156
|
+
};
|
|
6157
|
+
};
|
|
4912
6158
|
responses: {
|
|
4913
6159
|
200: components["responses"]["CoreVersionResponse"];
|
|
4914
6160
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4931,7 +6177,11 @@ export interface operations {
|
|
|
4931
6177
|
path?: never;
|
|
4932
6178
|
cookie?: never;
|
|
4933
6179
|
};
|
|
4934
|
-
requestBody?:
|
|
6180
|
+
requestBody?: {
|
|
6181
|
+
content: {
|
|
6182
|
+
"application/json": components["schemas"]["CoreStatsRequest"];
|
|
6183
|
+
};
|
|
6184
|
+
};
|
|
4935
6185
|
responses: {
|
|
4936
6186
|
200: components["responses"]["CoreStatsResponse"];
|
|
4937
6187
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4973,7 +6223,11 @@ export interface operations {
|
|
|
4973
6223
|
path?: never;
|
|
4974
6224
|
cookie?: never;
|
|
4975
6225
|
};
|
|
4976
|
-
requestBody?:
|
|
6226
|
+
requestBody?: {
|
|
6227
|
+
content: {
|
|
6228
|
+
"application/json": components["schemas"]["JobListRequest"];
|
|
6229
|
+
};
|
|
6230
|
+
};
|
|
4977
6231
|
responses: {
|
|
4978
6232
|
200: components["responses"]["JobListResponse"];
|
|
4979
6233
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4982,9 +6236,9 @@ export interface operations {
|
|
|
4982
6236
|
};
|
|
4983
6237
|
jobStatus: {
|
|
4984
6238
|
parameters: {
|
|
4985
|
-
query
|
|
6239
|
+
query?: {
|
|
4986
6240
|
/** @description Numeric identifier of the job to query, as returned from an async call. */
|
|
4987
|
-
jobid
|
|
6241
|
+
jobid?: components["parameters"]["Job_StatusPostJobidParam"];
|
|
4988
6242
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
4989
6243
|
_async?: components["parameters"]["GlobalAsyncParam"];
|
|
4990
6244
|
};
|
|
@@ -4992,7 +6246,11 @@ export interface operations {
|
|
|
4992
6246
|
path?: never;
|
|
4993
6247
|
cookie?: never;
|
|
4994
6248
|
};
|
|
4995
|
-
requestBody?:
|
|
6249
|
+
requestBody?: {
|
|
6250
|
+
content: {
|
|
6251
|
+
"application/json": components["schemas"]["JobStatusRequest"];
|
|
6252
|
+
};
|
|
6253
|
+
};
|
|
4996
6254
|
responses: {
|
|
4997
6255
|
200: components["responses"]["JobStatusResponse"];
|
|
4998
6256
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5001,9 +6259,9 @@ export interface operations {
|
|
|
5001
6259
|
};
|
|
5002
6260
|
jobStop: {
|
|
5003
6261
|
parameters: {
|
|
5004
|
-
query
|
|
6262
|
+
query?: {
|
|
5005
6263
|
/** @description Numeric identifier of the job to cancel. */
|
|
5006
|
-
jobid
|
|
6264
|
+
jobid?: components["parameters"]["Job_StopPostJobidParam"];
|
|
5007
6265
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
5008
6266
|
_async?: components["parameters"]["GlobalAsyncParam"];
|
|
5009
6267
|
};
|
|
@@ -5011,7 +6269,11 @@ export interface operations {
|
|
|
5011
6269
|
path?: never;
|
|
5012
6270
|
cookie?: never;
|
|
5013
6271
|
};
|
|
5014
|
-
requestBody?:
|
|
6272
|
+
requestBody?: {
|
|
6273
|
+
content: {
|
|
6274
|
+
"application/json": components["schemas"]["JobStopRequest"];
|
|
6275
|
+
};
|
|
6276
|
+
};
|
|
5015
6277
|
responses: {
|
|
5016
6278
|
200: components["responses"]["EmptyObjectResponse"];
|
|
5017
6279
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5020,9 +6282,9 @@ export interface operations {
|
|
|
5020
6282
|
};
|
|
5021
6283
|
jobStopgroup: {
|
|
5022
6284
|
parameters: {
|
|
5023
|
-
query
|
|
6285
|
+
query?: {
|
|
5024
6286
|
/** @description Stats group name whose active jobs should be stopped. */
|
|
5025
|
-
group
|
|
6287
|
+
group?: components["parameters"]["Job_StopgroupPostGroupParam"];
|
|
5026
6288
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
5027
6289
|
_async?: components["parameters"]["GlobalAsyncParam"];
|
|
5028
6290
|
};
|
|
@@ -5030,7 +6292,11 @@ export interface operations {
|
|
|
5030
6292
|
path?: never;
|
|
5031
6293
|
cookie?: never;
|
|
5032
6294
|
};
|
|
5033
|
-
requestBody?:
|
|
6295
|
+
requestBody?: {
|
|
6296
|
+
content: {
|
|
6297
|
+
"application/json": components["schemas"]["JobStopgroupRequest"];
|
|
6298
|
+
};
|
|
6299
|
+
};
|
|
5034
6300
|
responses: {
|
|
5035
6301
|
200: components["responses"]["EmptyObjectResponse"];
|
|
5036
6302
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5039,11 +6305,11 @@ export interface operations {
|
|
|
5039
6305
|
};
|
|
5040
6306
|
operationsList: {
|
|
5041
6307
|
parameters: {
|
|
5042
|
-
query
|
|
6308
|
+
query?: {
|
|
5043
6309
|
/** @description Remote name or path to list, for example `drive:`. */
|
|
5044
|
-
fs
|
|
6310
|
+
fs?: components["parameters"]["Operations_ListPostFsParam"];
|
|
5045
6311
|
/** @description Directory path within `fs` to list; leave empty to target the root. */
|
|
5046
|
-
remote
|
|
6312
|
+
remote?: components["parameters"]["Operations_ListPostRemoteParam"];
|
|
5047
6313
|
/** @description Optional JSON-encoded object of listing flags (e.g. `{ "recurse": true, "showHash": true }`). */
|
|
5048
6314
|
opt?: components["parameters"]["Operations_ListPostOptParam"];
|
|
5049
6315
|
/** @description Set to true to list directories recursively. */
|
|
@@ -5075,7 +6341,11 @@ export interface operations {
|
|
|
5075
6341
|
path?: never;
|
|
5076
6342
|
cookie?: never;
|
|
5077
6343
|
};
|
|
5078
|
-
requestBody?:
|
|
6344
|
+
requestBody?: {
|
|
6345
|
+
content: {
|
|
6346
|
+
"application/json": components["schemas"]["OperationsListRequest"];
|
|
6347
|
+
};
|
|
6348
|
+
};
|
|
5079
6349
|
responses: {
|
|
5080
6350
|
200: components["responses"]["OperationsListResponse"];
|
|
5081
6351
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5084,11 +6354,11 @@ export interface operations {
|
|
|
5084
6354
|
};
|
|
5085
6355
|
operationsStat: {
|
|
5086
6356
|
parameters: {
|
|
5087
|
-
query
|
|
6357
|
+
query?: {
|
|
5088
6358
|
/** @description Remote name or path that contains the item to inspect. */
|
|
5089
|
-
fs
|
|
6359
|
+
fs?: components["parameters"]["Operations_StatPostFsParam"];
|
|
5090
6360
|
/** @description Path to the file or directory within `fs` to describe. */
|
|
5091
|
-
remote
|
|
6361
|
+
remote?: components["parameters"]["Operations_StatPostRemoteParam"];
|
|
5092
6362
|
/** @description Optional JSON object of listing flags, matching those accepted by `operations/list`. */
|
|
5093
6363
|
opt?: components["parameters"]["Operations_StatPostOptParam"];
|
|
5094
6364
|
/** @description Assign the request to a custom stats group. */
|
|
@@ -5100,7 +6370,11 @@ export interface operations {
|
|
|
5100
6370
|
path?: never;
|
|
5101
6371
|
cookie?: never;
|
|
5102
6372
|
};
|
|
5103
|
-
requestBody?:
|
|
6373
|
+
requestBody?: {
|
|
6374
|
+
content: {
|
|
6375
|
+
"application/json": components["schemas"]["OperationsStatRequest"];
|
|
6376
|
+
};
|
|
6377
|
+
};
|
|
5104
6378
|
responses: {
|
|
5105
6379
|
200: components["responses"]["OperationsStatResponse"];
|
|
5106
6380
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5109,9 +6383,9 @@ export interface operations {
|
|
|
5109
6383
|
};
|
|
5110
6384
|
operationsAbout: {
|
|
5111
6385
|
parameters: {
|
|
5112
|
-
query
|
|
6386
|
+
query?: {
|
|
5113
6387
|
/** @description Remote name or path to query for capacity information. */
|
|
5114
|
-
fs
|
|
6388
|
+
fs?: components["parameters"]["Operations_AboutPostFsParam"];
|
|
5115
6389
|
/** @description Assign the request to a custom stats group. */
|
|
5116
6390
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
5117
6391
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -5121,7 +6395,11 @@ export interface operations {
|
|
|
5121
6395
|
path?: never;
|
|
5122
6396
|
cookie?: never;
|
|
5123
6397
|
};
|
|
5124
|
-
requestBody?:
|
|
6398
|
+
requestBody?: {
|
|
6399
|
+
content: {
|
|
6400
|
+
"application/json": components["schemas"]["OperationsAboutRequest"];
|
|
6401
|
+
};
|
|
6402
|
+
};
|
|
5125
6403
|
responses: {
|
|
5126
6404
|
200: components["responses"]["OperationsAboutResponse"];
|
|
5127
6405
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5130,11 +6408,11 @@ export interface operations {
|
|
|
5130
6408
|
};
|
|
5131
6409
|
operationsUploadfile: {
|
|
5132
6410
|
parameters: {
|
|
5133
|
-
query
|
|
6411
|
+
query?: {
|
|
5134
6412
|
/** @description Remote name or path where the uploaded file should be stored. */
|
|
5135
|
-
fs
|
|
6413
|
+
fs?: components["parameters"]["Operations_UploadfilePostFsParam"];
|
|
5136
6414
|
/** @description Destination path within `fs` for the uploaded file. */
|
|
5137
|
-
remote
|
|
6415
|
+
remote?: components["parameters"]["Operations_UploadfilePostRemoteParam"];
|
|
5138
6416
|
/** @description Assign the request to a custom stats group. */
|
|
5139
6417
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
5140
6418
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -5158,11 +6436,11 @@ export interface operations {
|
|
|
5158
6436
|
};
|
|
5159
6437
|
operationsPurge: {
|
|
5160
6438
|
parameters: {
|
|
5161
|
-
query
|
|
6439
|
+
query?: {
|
|
5162
6440
|
/** @description Remote name or path from which to remove all contents. */
|
|
5163
|
-
fs
|
|
6441
|
+
fs?: components["parameters"]["Operations_PurgePostFsParam"];
|
|
5164
6442
|
/** @description Path within `fs` whose contents should be purged. */
|
|
5165
|
-
remote
|
|
6443
|
+
remote?: components["parameters"]["Operations_PurgePostRemoteParam"];
|
|
5166
6444
|
/** @description JSON encoded config overrides applied for this call only. */
|
|
5167
6445
|
_config?: components["parameters"]["GlobalConfigParam"];
|
|
5168
6446
|
/** @description JSON encoded filter overrides applied for this call only. */
|
|
@@ -5176,7 +6454,11 @@ export interface operations {
|
|
|
5176
6454
|
path?: never;
|
|
5177
6455
|
cookie?: never;
|
|
5178
6456
|
};
|
|
5179
|
-
requestBody?:
|
|
6457
|
+
requestBody?: {
|
|
6458
|
+
content: {
|
|
6459
|
+
"application/json": components["schemas"]["OperationsPurgeRequest"];
|
|
6460
|
+
};
|
|
6461
|
+
};
|
|
5180
6462
|
responses: {
|
|
5181
6463
|
200: components["responses"]["EmptyObjectResponse"];
|
|
5182
6464
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5185,11 +6467,11 @@ export interface operations {
|
|
|
5185
6467
|
};
|
|
5186
6468
|
operationsMkdir: {
|
|
5187
6469
|
parameters: {
|
|
5188
|
-
query
|
|
6470
|
+
query?: {
|
|
5189
6471
|
/** @description Remote name or path in which to create a directory. */
|
|
5190
|
-
fs
|
|
6472
|
+
fs?: components["parameters"]["Operations_MkdirPostFsParam"];
|
|
5191
6473
|
/** @description Directory path within `fs` to create. */
|
|
5192
|
-
remote
|
|
6474
|
+
remote?: components["parameters"]["Operations_MkdirPostRemoteParam"];
|
|
5193
6475
|
/** @description Assign the request to a custom stats group. */
|
|
5194
6476
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
5195
6477
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -5199,7 +6481,11 @@ export interface operations {
|
|
|
5199
6481
|
path?: never;
|
|
5200
6482
|
cookie?: never;
|
|
5201
6483
|
};
|
|
5202
|
-
requestBody?:
|
|
6484
|
+
requestBody?: {
|
|
6485
|
+
content: {
|
|
6486
|
+
"application/json": components["schemas"]["OperationsMkdirRequest"];
|
|
6487
|
+
};
|
|
6488
|
+
};
|
|
5203
6489
|
responses: {
|
|
5204
6490
|
200: components["responses"]["EmptyObjectResponse"];
|
|
5205
6491
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5208,11 +6494,11 @@ export interface operations {
|
|
|
5208
6494
|
};
|
|
5209
6495
|
operationsRmdir: {
|
|
5210
6496
|
parameters: {
|
|
5211
|
-
query
|
|
6497
|
+
query?: {
|
|
5212
6498
|
/** @description Remote name or path containing the directory to remove. */
|
|
5213
|
-
fs
|
|
6499
|
+
fs?: components["parameters"]["Operations_RmdirPostFsParam"];
|
|
5214
6500
|
/** @description Directory path within `fs` to delete. */
|
|
5215
|
-
remote
|
|
6501
|
+
remote?: components["parameters"]["Operations_RmdirPostRemoteParam"];
|
|
5216
6502
|
/** @description Assign the request to a custom stats group. */
|
|
5217
6503
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
5218
6504
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -5222,7 +6508,11 @@ export interface operations {
|
|
|
5222
6508
|
path?: never;
|
|
5223
6509
|
cookie?: never;
|
|
5224
6510
|
};
|
|
5225
|
-
requestBody?:
|
|
6511
|
+
requestBody?: {
|
|
6512
|
+
content: {
|
|
6513
|
+
"application/json": components["schemas"]["OperationsRmdirRequest"];
|
|
6514
|
+
};
|
|
6515
|
+
};
|
|
5226
6516
|
responses: {
|
|
5227
6517
|
200: components["responses"]["EmptyObjectResponse"];
|
|
5228
6518
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5231,11 +6521,11 @@ export interface operations {
|
|
|
5231
6521
|
};
|
|
5232
6522
|
operationsCheck: {
|
|
5233
6523
|
parameters: {
|
|
5234
|
-
query
|
|
6524
|
+
query?: {
|
|
5235
6525
|
/** @description Source remote name or path to verify, e.g. `drive:`. */
|
|
5236
|
-
srcFs
|
|
6526
|
+
srcFs?: components["parameters"]["Operations_CheckPostSrcFsParam"];
|
|
5237
6527
|
/** @description Destination remote name or path that should match the source. */
|
|
5238
|
-
dstFs
|
|
6528
|
+
dstFs?: components["parameters"]["Operations_CheckPostDstFsParam"];
|
|
5239
6529
|
/** @description Set to true to read file contents during comparison instead of relying on hashes. */
|
|
5240
6530
|
download?: components["parameters"]["Operations_CheckPostDownloadParam"];
|
|
5241
6531
|
/** @description Hash name to expect in the supplied SUM file, such as `md5`. */
|
|
@@ -5267,7 +6557,11 @@ export interface operations {
|
|
|
5267
6557
|
path?: never;
|
|
5268
6558
|
cookie?: never;
|
|
5269
6559
|
};
|
|
5270
|
-
requestBody?:
|
|
6560
|
+
requestBody?: {
|
|
6561
|
+
content: {
|
|
6562
|
+
"application/json": components["schemas"]["OperationsCheckRequest"];
|
|
6563
|
+
};
|
|
6564
|
+
};
|
|
5271
6565
|
responses: {
|
|
5272
6566
|
200: components["responses"]["OperationsCheckResponse"];
|
|
5273
6567
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5276,11 +6570,11 @@ export interface operations {
|
|
|
5276
6570
|
};
|
|
5277
6571
|
syncSync: {
|
|
5278
6572
|
parameters: {
|
|
5279
|
-
query
|
|
6573
|
+
query?: {
|
|
5280
6574
|
/** @description Source remote path to sync from, e.g. `drive:src`. */
|
|
5281
|
-
srcFs
|
|
6575
|
+
srcFs?: components["parameters"]["Sync_SyncPostSrcFsParam"];
|
|
5282
6576
|
/** @description Destination remote path to sync to, e.g. `drive:dst`. */
|
|
5283
|
-
dstFs
|
|
6577
|
+
dstFs?: components["parameters"]["Sync_SyncPostDstFsParam"];
|
|
5284
6578
|
/** @description Set to true to create empty source directories on the destination. */
|
|
5285
6579
|
createEmptySrcDirs?: components["parameters"]["Sync_SyncPostCreateEmptySrcDirsParam"];
|
|
5286
6580
|
/** @description JSON encoded config overrides applied for this call only. */
|
|
@@ -5296,7 +6590,11 @@ export interface operations {
|
|
|
5296
6590
|
path?: never;
|
|
5297
6591
|
cookie?: never;
|
|
5298
6592
|
};
|
|
5299
|
-
requestBody?:
|
|
6593
|
+
requestBody?: {
|
|
6594
|
+
content: {
|
|
6595
|
+
"application/json": components["schemas"]["SyncSyncRequest"];
|
|
6596
|
+
};
|
|
6597
|
+
};
|
|
5300
6598
|
responses: {
|
|
5301
6599
|
200: components["responses"]["SyncJobResponse"];
|
|
5302
6600
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5305,11 +6603,11 @@ export interface operations {
|
|
|
5305
6603
|
};
|
|
5306
6604
|
syncCopy: {
|
|
5307
6605
|
parameters: {
|
|
5308
|
-
query
|
|
6606
|
+
query?: {
|
|
5309
6607
|
/** @description Source remote path to copy from. */
|
|
5310
|
-
srcFs
|
|
6608
|
+
srcFs?: components["parameters"]["Sync_CopyPostSrcFsParam"];
|
|
5311
6609
|
/** @description Destination remote path to copy to. */
|
|
5312
|
-
dstFs
|
|
6610
|
+
dstFs?: components["parameters"]["Sync_CopyPostDstFsParam"];
|
|
5313
6611
|
/** @description Set to true to replicate empty source directories on the destination. */
|
|
5314
6612
|
createEmptySrcDirs?: components["parameters"]["Sync_CopyPostCreateEmptySrcDirsParam"];
|
|
5315
6613
|
/** @description JSON encoded config overrides applied for this call only. */
|
|
@@ -5325,7 +6623,11 @@ export interface operations {
|
|
|
5325
6623
|
path?: never;
|
|
5326
6624
|
cookie?: never;
|
|
5327
6625
|
};
|
|
5328
|
-
requestBody?:
|
|
6626
|
+
requestBody?: {
|
|
6627
|
+
content: {
|
|
6628
|
+
"application/json": components["schemas"]["SyncCopyRequest"];
|
|
6629
|
+
};
|
|
6630
|
+
};
|
|
5329
6631
|
responses: {
|
|
5330
6632
|
200: components["responses"]["SyncJobResponse"];
|
|
5331
6633
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5334,11 +6636,11 @@ export interface operations {
|
|
|
5334
6636
|
};
|
|
5335
6637
|
syncMove: {
|
|
5336
6638
|
parameters: {
|
|
5337
|
-
query
|
|
6639
|
+
query?: {
|
|
5338
6640
|
/** @description Source remote path whose contents will be moved. */
|
|
5339
|
-
srcFs
|
|
6641
|
+
srcFs?: components["parameters"]["Sync_MovePostSrcFsParam"];
|
|
5340
6642
|
/** @description Destination remote path that will receive moved files. */
|
|
5341
|
-
dstFs
|
|
6643
|
+
dstFs?: components["parameters"]["Sync_MovePostDstFsParam"];
|
|
5342
6644
|
/** @description Set to true to create empty source directories on the destination. */
|
|
5343
6645
|
createEmptySrcDirs?: components["parameters"]["Sync_MovePostCreateEmptySrcDirsParam"];
|
|
5344
6646
|
/** @description Set to true to delete empty directories from the source after the move completes. */
|
|
@@ -5356,7 +6658,11 @@ export interface operations {
|
|
|
5356
6658
|
path?: never;
|
|
5357
6659
|
cookie?: never;
|
|
5358
6660
|
};
|
|
5359
|
-
requestBody?:
|
|
6661
|
+
requestBody?: {
|
|
6662
|
+
content: {
|
|
6663
|
+
"application/json": components["schemas"]["SyncMoveRequest"];
|
|
6664
|
+
};
|
|
6665
|
+
};
|
|
5360
6666
|
responses: {
|
|
5361
6667
|
200: components["responses"]["SyncJobResponse"];
|
|
5362
6668
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5365,11 +6671,11 @@ export interface operations {
|
|
|
5365
6671
|
};
|
|
5366
6672
|
syncBisync: {
|
|
5367
6673
|
parameters: {
|
|
5368
|
-
query
|
|
6674
|
+
query?: {
|
|
5369
6675
|
/** @description First remote directory, e.g. `drive:path1`. */
|
|
5370
|
-
path1
|
|
6676
|
+
path1?: components["parameters"]["Sync_BisyncPostPath1Param"];
|
|
5371
6677
|
/** @description Second remote directory, e.g. `drive:path2`. */
|
|
5372
|
-
path2
|
|
6678
|
+
path2?: components["parameters"]["Sync_BisyncPostPath2Param"];
|
|
5373
6679
|
/** @description Set to true to simulate the bisync run without making changes. */
|
|
5374
6680
|
dryRun?: components["parameters"]["Sync_BisyncPostDryRunParam"];
|
|
5375
6681
|
/** @description Set to true to perform a one-time resync, rebuilding bisync history. */
|
|
@@ -5415,7 +6721,11 @@ export interface operations {
|
|
|
5415
6721
|
path?: never;
|
|
5416
6722
|
cookie?: never;
|
|
5417
6723
|
};
|
|
5418
|
-
requestBody?:
|
|
6724
|
+
requestBody?: {
|
|
6725
|
+
content: {
|
|
6726
|
+
"application/json": components["schemas"]["SyncBisyncRequest"];
|
|
6727
|
+
};
|
|
6728
|
+
};
|
|
5419
6729
|
responses: {
|
|
5420
6730
|
200: components["responses"]["SyncJobResponse"];
|
|
5421
6731
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5434,7 +6744,11 @@ export interface operations {
|
|
|
5434
6744
|
path?: never;
|
|
5435
6745
|
cookie?: never;
|
|
5436
6746
|
};
|
|
5437
|
-
requestBody?:
|
|
6747
|
+
requestBody?: {
|
|
6748
|
+
content: {
|
|
6749
|
+
"application/json": components["schemas"]["OptionsBlocksRequest"];
|
|
6750
|
+
};
|
|
6751
|
+
};
|
|
5438
6752
|
responses: {
|
|
5439
6753
|
200: components["responses"]["OptionsBlocksResponse"];
|
|
5440
6754
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5455,7 +6769,11 @@ export interface operations {
|
|
|
5455
6769
|
path?: never;
|
|
5456
6770
|
cookie?: never;
|
|
5457
6771
|
};
|
|
5458
|
-
requestBody?:
|
|
6772
|
+
requestBody?: {
|
|
6773
|
+
content: {
|
|
6774
|
+
"application/json": components["schemas"]["OptionsGetRequest"];
|
|
6775
|
+
};
|
|
6776
|
+
};
|
|
5459
6777
|
responses: {
|
|
5460
6778
|
200: components["responses"]["OptionsGetResponse"];
|
|
5461
6779
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5476,7 +6794,11 @@ export interface operations {
|
|
|
5476
6794
|
path?: never;
|
|
5477
6795
|
cookie?: never;
|
|
5478
6796
|
};
|
|
5479
|
-
requestBody?:
|
|
6797
|
+
requestBody?: {
|
|
6798
|
+
content: {
|
|
6799
|
+
"application/json": components["schemas"]["OptionsInfoRequest"];
|
|
6800
|
+
};
|
|
6801
|
+
};
|
|
5480
6802
|
responses: {
|
|
5481
6803
|
200: components["responses"]["OptionsInfoResponse"];
|
|
5482
6804
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5525,7 +6847,11 @@ export interface operations {
|
|
|
5525
6847
|
path?: never;
|
|
5526
6848
|
cookie?: never;
|
|
5527
6849
|
};
|
|
5528
|
-
requestBody?:
|
|
6850
|
+
requestBody?: {
|
|
6851
|
+
content: {
|
|
6852
|
+
"application/json": components["schemas"]["OptionsSetRequest"];
|
|
6853
|
+
};
|
|
6854
|
+
};
|
|
5529
6855
|
responses: {
|
|
5530
6856
|
200: components["responses"]["EmptyObjectResponse"];
|
|
5531
6857
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5544,7 +6870,11 @@ export interface operations {
|
|
|
5544
6870
|
path?: never;
|
|
5545
6871
|
cookie?: never;
|
|
5546
6872
|
};
|
|
5547
|
-
requestBody?:
|
|
6873
|
+
requestBody?: {
|
|
6874
|
+
content: {
|
|
6875
|
+
"application/json": components["schemas"]["OptionsLocalRequest"];
|
|
6876
|
+
};
|
|
6877
|
+
};
|
|
5548
6878
|
responses: {
|
|
5549
6879
|
200: components["responses"]["OptionsLocalResponse"];
|
|
5550
6880
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5563,7 +6893,11 @@ export interface operations {
|
|
|
5563
6893
|
path?: never;
|
|
5564
6894
|
cookie?: never;
|
|
5565
6895
|
};
|
|
5566
|
-
requestBody?:
|
|
6896
|
+
requestBody?: {
|
|
6897
|
+
content: {
|
|
6898
|
+
"application/json": components["schemas"]["ServeListRequest"];
|
|
6899
|
+
};
|
|
6900
|
+
};
|
|
5567
6901
|
responses: {
|
|
5568
6902
|
200: components["responses"]["ServeListResponse"];
|
|
5569
6903
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5572,13 +6906,13 @@ export interface operations {
|
|
|
5572
6906
|
};
|
|
5573
6907
|
serveStart: {
|
|
5574
6908
|
parameters: {
|
|
5575
|
-
query
|
|
6909
|
+
query?: {
|
|
5576
6910
|
/** @description Type of server to start (e.g. `http`, `webdav`, `ftp`, `sftp`). */
|
|
5577
|
-
type
|
|
6911
|
+
type?: components["parameters"]["Serve_StartPostTypeParam"];
|
|
5578
6912
|
/** @description Remote path that will be served. */
|
|
5579
|
-
fs
|
|
6913
|
+
fs?: components["parameters"]["Serve_StartPostFsParam"];
|
|
5580
6914
|
/** @description Address and port to bind the server to, such as `:5572` or `localhost:8080`. */
|
|
5581
|
-
addr
|
|
6915
|
+
addr?: components["parameters"]["Serve_StartPostAddrParam"];
|
|
5582
6916
|
/** @description Additional arbitrary parameters allowed. */
|
|
5583
6917
|
params?: components["parameters"]["Serve_StartPostAdditionalParam"];
|
|
5584
6918
|
/** @description JSON encoded config overrides applied for this call only. */
|
|
@@ -5594,7 +6928,11 @@ export interface operations {
|
|
|
5594
6928
|
path?: never;
|
|
5595
6929
|
cookie?: never;
|
|
5596
6930
|
};
|
|
5597
|
-
requestBody?:
|
|
6931
|
+
requestBody?: {
|
|
6932
|
+
content: {
|
|
6933
|
+
"application/json": components["schemas"]["ServeStartRequest"];
|
|
6934
|
+
};
|
|
6935
|
+
};
|
|
5598
6936
|
responses: {
|
|
5599
6937
|
200: components["responses"]["ServeStartResponse"];
|
|
5600
6938
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5603,9 +6941,9 @@ export interface operations {
|
|
|
5603
6941
|
};
|
|
5604
6942
|
serveStop: {
|
|
5605
6943
|
parameters: {
|
|
5606
|
-
query
|
|
6944
|
+
query?: {
|
|
5607
6945
|
/** @description Identifier of the running serve instance returned by `serve/start`. */
|
|
5608
|
-
id
|
|
6946
|
+
id?: components["parameters"]["Serve_StopPostIdParam"];
|
|
5609
6947
|
/** @description Assign the request to a custom stats group. */
|
|
5610
6948
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
5611
6949
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -5615,7 +6953,11 @@ export interface operations {
|
|
|
5615
6953
|
path?: never;
|
|
5616
6954
|
cookie?: never;
|
|
5617
6955
|
};
|
|
5618
|
-
requestBody?:
|
|
6956
|
+
requestBody?: {
|
|
6957
|
+
content: {
|
|
6958
|
+
"application/json": components["schemas"]["ServeStopRequest"];
|
|
6959
|
+
};
|
|
6960
|
+
};
|
|
5619
6961
|
responses: {
|
|
5620
6962
|
200: components["responses"]["EmptyObjectResponse"];
|
|
5621
6963
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5634,7 +6976,11 @@ export interface operations {
|
|
|
5634
6976
|
path?: never;
|
|
5635
6977
|
cookie?: never;
|
|
5636
6978
|
};
|
|
5637
|
-
requestBody?:
|
|
6979
|
+
requestBody?: {
|
|
6980
|
+
content: {
|
|
6981
|
+
"application/json": components["schemas"]["ServeStopallRequest"];
|
|
6982
|
+
};
|
|
6983
|
+
};
|
|
5638
6984
|
responses: {
|
|
5639
6985
|
200: components["responses"]["EmptyObjectResponse"];
|
|
5640
6986
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5653,9 +6999,13 @@ export interface operations {
|
|
|
5653
6999
|
path?: never;
|
|
5654
7000
|
cookie?: never;
|
|
5655
7001
|
};
|
|
5656
|
-
requestBody?:
|
|
7002
|
+
requestBody?: {
|
|
7003
|
+
content: {
|
|
7004
|
+
"application/json": components["schemas"]["ServeTypesRequest"];
|
|
7005
|
+
};
|
|
7006
|
+
};
|
|
5657
7007
|
responses: {
|
|
5658
|
-
200: components["responses"]["
|
|
7008
|
+
200: components["responses"]["ServeTypesResponse"];
|
|
5659
7009
|
"4XX": components["responses"]["RcError"];
|
|
5660
7010
|
"5XX": components["responses"]["RcError"];
|
|
5661
7011
|
};
|
|
@@ -5676,7 +7026,11 @@ export interface operations {
|
|
|
5676
7026
|
path?: never;
|
|
5677
7027
|
cookie?: never;
|
|
5678
7028
|
};
|
|
5679
|
-
requestBody?:
|
|
7029
|
+
requestBody?: {
|
|
7030
|
+
content: {
|
|
7031
|
+
"application/json": components["schemas"]["VfsForgetRequest"];
|
|
7032
|
+
};
|
|
7033
|
+
};
|
|
5680
7034
|
responses: {
|
|
5681
7035
|
200: components["responses"]["VfsForgetResponse"];
|
|
5682
7036
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5697,7 +7051,11 @@ export interface operations {
|
|
|
5697
7051
|
path?: never;
|
|
5698
7052
|
cookie?: never;
|
|
5699
7053
|
};
|
|
5700
|
-
requestBody?:
|
|
7054
|
+
requestBody?: {
|
|
7055
|
+
content: {
|
|
7056
|
+
"application/json": components["schemas"]["VfsListRequest"];
|
|
7057
|
+
};
|
|
7058
|
+
};
|
|
5701
7059
|
responses: {
|
|
5702
7060
|
200: components["responses"]["VfsListResponse"];
|
|
5703
7061
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5722,7 +7080,11 @@ export interface operations {
|
|
|
5722
7080
|
path?: never;
|
|
5723
7081
|
cookie?: never;
|
|
5724
7082
|
};
|
|
5725
|
-
requestBody?:
|
|
7083
|
+
requestBody?: {
|
|
7084
|
+
content: {
|
|
7085
|
+
"application/json": components["schemas"]["VfsPollIntervalRequest"];
|
|
7086
|
+
};
|
|
7087
|
+
};
|
|
5726
7088
|
responses: {
|
|
5727
7089
|
200: components["responses"]["VfsPollIntervalResponse"];
|
|
5728
7090
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5743,7 +7105,11 @@ export interface operations {
|
|
|
5743
7105
|
path?: never;
|
|
5744
7106
|
cookie?: never;
|
|
5745
7107
|
};
|
|
5746
|
-
requestBody?:
|
|
7108
|
+
requestBody?: {
|
|
7109
|
+
content: {
|
|
7110
|
+
"application/json": components["schemas"]["VfsQueueRequest"];
|
|
7111
|
+
};
|
|
7112
|
+
};
|
|
5747
7113
|
responses: {
|
|
5748
7114
|
200: components["responses"]["VfsQueueResponse"];
|
|
5749
7115
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5752,13 +7118,13 @@ export interface operations {
|
|
|
5752
7118
|
};
|
|
5753
7119
|
vfsQueueSetExpiry: {
|
|
5754
7120
|
parameters: {
|
|
5755
|
-
query
|
|
7121
|
+
query?: {
|
|
5756
7122
|
/** @description Optional VFS identifier for the queued item. */
|
|
5757
7123
|
fs?: components["parameters"]["Vfs_QueueSetExpiryPostFsParam"];
|
|
5758
7124
|
/** @description Queue item ID as returned by `vfs/queue`. */
|
|
5759
|
-
id
|
|
7125
|
+
id?: components["parameters"]["Vfs_QueueSetExpiryPostIdParam"];
|
|
5760
7126
|
/** @description New eligibility time in seconds (may be negative for immediate upload). */
|
|
5761
|
-
expiry
|
|
7127
|
+
expiry?: components["parameters"]["Vfs_QueueSetExpiryPostExpiryParam"];
|
|
5762
7128
|
/** @description Set to true to treat `expiry` as relative to the current value. */
|
|
5763
7129
|
relative?: components["parameters"]["Vfs_QueueSetExpiryPostRelativeParam"];
|
|
5764
7130
|
/** @description Assign the request to a custom stats group. */
|
|
@@ -5770,7 +7136,11 @@ export interface operations {
|
|
|
5770
7136
|
path?: never;
|
|
5771
7137
|
cookie?: never;
|
|
5772
7138
|
};
|
|
5773
|
-
requestBody?:
|
|
7139
|
+
requestBody?: {
|
|
7140
|
+
content: {
|
|
7141
|
+
"application/json": components["schemas"]["VfsQueueSetExpiryRequest"];
|
|
7142
|
+
};
|
|
7143
|
+
};
|
|
5774
7144
|
responses: {
|
|
5775
7145
|
200: components["responses"]["EmptyObjectResponse"];
|
|
5776
7146
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5795,7 +7165,11 @@ export interface operations {
|
|
|
5795
7165
|
path?: never;
|
|
5796
7166
|
cookie?: never;
|
|
5797
7167
|
};
|
|
5798
|
-
requestBody?:
|
|
7168
|
+
requestBody?: {
|
|
7169
|
+
content: {
|
|
7170
|
+
"application/json": components["schemas"]["VfsRefreshRequest"];
|
|
7171
|
+
};
|
|
7172
|
+
};
|
|
5799
7173
|
responses: {
|
|
5800
7174
|
200: components["responses"]["VfsRefreshResponse"];
|
|
5801
7175
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5816,7 +7190,11 @@ export interface operations {
|
|
|
5816
7190
|
path?: never;
|
|
5817
7191
|
cookie?: never;
|
|
5818
7192
|
};
|
|
5819
|
-
requestBody?:
|
|
7193
|
+
requestBody?: {
|
|
7194
|
+
content: {
|
|
7195
|
+
"application/json": components["schemas"]["VfsStatsRequest"];
|
|
7196
|
+
};
|
|
7197
|
+
};
|
|
5820
7198
|
responses: {
|
|
5821
7199
|
200: components["responses"]["VfsStatsResponse"];
|
|
5822
7200
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5825,9 +7203,9 @@ export interface operations {
|
|
|
5825
7203
|
};
|
|
5826
7204
|
pluginsctlAddPlugin: {
|
|
5827
7205
|
parameters: {
|
|
5828
|
-
query
|
|
7206
|
+
query?: {
|
|
5829
7207
|
/** @description Repository URL of the plugin to install. */
|
|
5830
|
-
url
|
|
7208
|
+
url?: components["parameters"]["Pluginsctl_AddPluginPostUrlParam"];
|
|
5831
7209
|
/** @description Assign the request to a custom stats group. */
|
|
5832
7210
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
5833
7211
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -5837,7 +7215,11 @@ export interface operations {
|
|
|
5837
7215
|
path?: never;
|
|
5838
7216
|
cookie?: never;
|
|
5839
7217
|
};
|
|
5840
|
-
requestBody?:
|
|
7218
|
+
requestBody?: {
|
|
7219
|
+
content: {
|
|
7220
|
+
"application/json": components["schemas"]["PluginsctlAddPluginRequest"];
|
|
7221
|
+
};
|
|
7222
|
+
};
|
|
5841
7223
|
responses: {
|
|
5842
7224
|
200: components["responses"]["EmptyObjectResponse"];
|
|
5843
7225
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5860,7 +7242,11 @@ export interface operations {
|
|
|
5860
7242
|
path?: never;
|
|
5861
7243
|
cookie?: never;
|
|
5862
7244
|
};
|
|
5863
|
-
requestBody?:
|
|
7245
|
+
requestBody?: {
|
|
7246
|
+
content: {
|
|
7247
|
+
"application/json": components["schemas"]["PluginsctlGetPluginsForTypeRequest"];
|
|
7248
|
+
};
|
|
7249
|
+
};
|
|
5864
7250
|
responses: {
|
|
5865
7251
|
200: components["responses"]["PluginsctlGetPluginsForTypeResponse"];
|
|
5866
7252
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5879,7 +7265,11 @@ export interface operations {
|
|
|
5879
7265
|
path?: never;
|
|
5880
7266
|
cookie?: never;
|
|
5881
7267
|
};
|
|
5882
|
-
requestBody?:
|
|
7268
|
+
requestBody?: {
|
|
7269
|
+
content: {
|
|
7270
|
+
"application/json": components["schemas"]["PluginsctlListPluginsRequest"];
|
|
7271
|
+
};
|
|
7272
|
+
};
|
|
5883
7273
|
responses: {
|
|
5884
7274
|
200: components["responses"]["PluginsctlListPluginsResponse"];
|
|
5885
7275
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5898,7 +7288,11 @@ export interface operations {
|
|
|
5898
7288
|
path?: never;
|
|
5899
7289
|
cookie?: never;
|
|
5900
7290
|
};
|
|
5901
|
-
requestBody?:
|
|
7291
|
+
requestBody?: {
|
|
7292
|
+
content: {
|
|
7293
|
+
"application/json": components["schemas"]["PluginsctlListTestPluginsRequest"];
|
|
7294
|
+
};
|
|
7295
|
+
};
|
|
5902
7296
|
responses: {
|
|
5903
7297
|
200: components["responses"]["PluginsctlListTestPluginsResponse"];
|
|
5904
7298
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5907,9 +7301,9 @@ export interface operations {
|
|
|
5907
7301
|
};
|
|
5908
7302
|
pluginsctlRemovePlugin: {
|
|
5909
7303
|
parameters: {
|
|
5910
|
-
query
|
|
7304
|
+
query?: {
|
|
5911
7305
|
/** @description Name of the plugin to uninstall. */
|
|
5912
|
-
name
|
|
7306
|
+
name?: components["parameters"]["Pluginsctl_RemovePluginPostNameParam"];
|
|
5913
7307
|
/** @description Assign the request to a custom stats group. */
|
|
5914
7308
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
5915
7309
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -5919,7 +7313,11 @@ export interface operations {
|
|
|
5919
7313
|
path?: never;
|
|
5920
7314
|
cookie?: never;
|
|
5921
7315
|
};
|
|
5922
|
-
requestBody?:
|
|
7316
|
+
requestBody?: {
|
|
7317
|
+
content: {
|
|
7318
|
+
"application/json": components["schemas"]["PluginsctlRemovePluginRequest"];
|
|
7319
|
+
};
|
|
7320
|
+
};
|
|
5923
7321
|
responses: {
|
|
5924
7322
|
200: components["responses"]["EmptyResponse"];
|
|
5925
7323
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5928,9 +7326,9 @@ export interface operations {
|
|
|
5928
7326
|
};
|
|
5929
7327
|
pluginsctlRemoveTestPlugin: {
|
|
5930
7328
|
parameters: {
|
|
5931
|
-
query
|
|
7329
|
+
query?: {
|
|
5932
7330
|
/** @description Name of the test plugin to uninstall. */
|
|
5933
|
-
name
|
|
7331
|
+
name?: components["parameters"]["Pluginsctl_RemoveTestPluginPostNameParam"];
|
|
5934
7332
|
/** @description Assign the request to a custom stats group. */
|
|
5935
7333
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
5936
7334
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -5940,7 +7338,11 @@ export interface operations {
|
|
|
5940
7338
|
path?: never;
|
|
5941
7339
|
cookie?: never;
|
|
5942
7340
|
};
|
|
5943
|
-
requestBody?:
|
|
7341
|
+
requestBody?: {
|
|
7342
|
+
content: {
|
|
7343
|
+
"application/json": components["schemas"]["PluginsctlRemoveTestPluginRequest"];
|
|
7344
|
+
};
|
|
7345
|
+
};
|
|
5944
7346
|
responses: {
|
|
5945
7347
|
200: components["responses"]["EmptyResponse"];
|
|
5946
7348
|
"4XX": components["responses"]["RcError"];
|