rclone-openapi 1.73.0 → 1.73.4-rev2
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 +3077 -551
- package/openapi.yaml +2751 -865
- package/package.json +3 -2
- package/types.d.ts +1686 -290
package/types.d.ts
CHANGED
|
@@ -2083,6 +2083,1018 @@ export interface components {
|
|
|
2083
2083
|
} & {
|
|
2084
2084
|
[key: string]: unknown;
|
|
2085
2085
|
};
|
|
2086
|
+
RcNoopRequest: {
|
|
2087
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2088
|
+
_async?: boolean;
|
|
2089
|
+
} & {
|
|
2090
|
+
[key: string]: unknown;
|
|
2091
|
+
};
|
|
2092
|
+
OperationsCleanupRequest: {
|
|
2093
|
+
/** @description Remote name or path to clean up, for example `drive:`. */
|
|
2094
|
+
fs?: string;
|
|
2095
|
+
/** @description Assign the request to a custom stats group. */
|
|
2096
|
+
_group?: string;
|
|
2097
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2098
|
+
_async?: boolean;
|
|
2099
|
+
};
|
|
2100
|
+
OperationsCopyfileRequest: {
|
|
2101
|
+
/** @description Source remote name or path, such as `drive:` or `/` for the local filesystem. */
|
|
2102
|
+
srcFs?: string;
|
|
2103
|
+
/** @description Path to the source object within `srcFs`, for example `dir/file.txt`. */
|
|
2104
|
+
srcRemote?: string;
|
|
2105
|
+
/** @description Destination remote name or path, such as `drive2:` or `/` for local filesystem. */
|
|
2106
|
+
dstFs?: string;
|
|
2107
|
+
/** @description Target path within `dstFs` where the file should be written. */
|
|
2108
|
+
dstRemote?: string;
|
|
2109
|
+
/** @description Assign the request to a custom stats group. */
|
|
2110
|
+
_group?: string;
|
|
2111
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2112
|
+
_async?: boolean;
|
|
2113
|
+
};
|
|
2114
|
+
OperationsCopyurlRequest: {
|
|
2115
|
+
/** @description Remote name or path that will receive the downloaded file, e.g. `drive:`. */
|
|
2116
|
+
fs?: string;
|
|
2117
|
+
/** @description Destination path within `fs` where the fetched object will be stored. */
|
|
2118
|
+
remote?: string;
|
|
2119
|
+
/** @description Source URL to fetch the object from. */
|
|
2120
|
+
url?: string;
|
|
2121
|
+
/** @description Set to true to derive the destination filename from the URL. */
|
|
2122
|
+
autoFilename?: boolean;
|
|
2123
|
+
/** @description Assign the request to a custom stats group. */
|
|
2124
|
+
_group?: string;
|
|
2125
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2126
|
+
_async?: boolean;
|
|
2127
|
+
};
|
|
2128
|
+
OperationsDeleteRequest: {
|
|
2129
|
+
/** @description Remote name or path whose contents should be removed. */
|
|
2130
|
+
fs?: string;
|
|
2131
|
+
/** @description JSON encoded config overrides applied for this call only. */
|
|
2132
|
+
_config?: string;
|
|
2133
|
+
/** @description JSON encoded filter overrides applied for this call only. */
|
|
2134
|
+
_filter?: string;
|
|
2135
|
+
/** @description Assign the request to a custom stats group. */
|
|
2136
|
+
_group?: string;
|
|
2137
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2138
|
+
_async?: boolean;
|
|
2139
|
+
};
|
|
2140
|
+
OperationsDeletefileRequest: {
|
|
2141
|
+
/** @description Remote name or path that contains the file to delete. */
|
|
2142
|
+
fs?: string;
|
|
2143
|
+
/** @description Exact path to the file within `fs` that should be deleted. */
|
|
2144
|
+
remote?: string;
|
|
2145
|
+
/** @description Assign the request to a custom stats group. */
|
|
2146
|
+
_group?: string;
|
|
2147
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2148
|
+
_async?: boolean;
|
|
2149
|
+
};
|
|
2150
|
+
OperationsFsinfoRequest: {
|
|
2151
|
+
/** @description Remote name or path to inspect, e.g. `drive:`. */
|
|
2152
|
+
fs?: 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
|
+
OperationsHashsumRequest: {
|
|
2159
|
+
/** @description Remote name or path to hash, such as `drive:` or `/`. */
|
|
2160
|
+
fs?: string;
|
|
2161
|
+
/** @description Hash algorithm to use, e.g. `md5`, `sha1`, or another supported name. */
|
|
2162
|
+
hashType?: string;
|
|
2163
|
+
/** @description Set to true to force reading the data instead of using remote checksums. */
|
|
2164
|
+
download?: boolean;
|
|
2165
|
+
/** @description Set to true to emit hash values in base64 rather than hexadecimal. */
|
|
2166
|
+
base64?: boolean;
|
|
2167
|
+
/** @description Assign the request to a custom stats group. */
|
|
2168
|
+
_group?: string;
|
|
2169
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2170
|
+
_async?: boolean;
|
|
2171
|
+
};
|
|
2172
|
+
OperationsHashsumfileRequest: {
|
|
2173
|
+
/** @description Remote name or path containing the file to hash. */
|
|
2174
|
+
fs?: string;
|
|
2175
|
+
/** @description Path to the specific file within `fs` to hash. */
|
|
2176
|
+
remote?: string;
|
|
2177
|
+
/** @description Hash algorithm to use, e.g. `md5`, `sha1`, or another supported name. */
|
|
2178
|
+
hashType?: string;
|
|
2179
|
+
/** @description Set to true to force reading the data instead of using remote checksums. */
|
|
2180
|
+
download?: boolean;
|
|
2181
|
+
/** @description Set to true to emit the hash value in base64 rather than hexadecimal. */
|
|
2182
|
+
base64?: boolean;
|
|
2183
|
+
/** @description Assign the request to a custom stats group. */
|
|
2184
|
+
_group?: string;
|
|
2185
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2186
|
+
_async?: boolean;
|
|
2187
|
+
};
|
|
2188
|
+
OperationsMovefileRequest: {
|
|
2189
|
+
/** @description Source remote name or path containing the file to move. */
|
|
2190
|
+
srcFs?: string;
|
|
2191
|
+
/** @description Path to the source object within `srcFs`. */
|
|
2192
|
+
srcRemote?: string;
|
|
2193
|
+
/** @description Destination remote name or path where the file will be moved. */
|
|
2194
|
+
dstFs?: string;
|
|
2195
|
+
/** @description Destination path within `dstFs` for the moved object. */
|
|
2196
|
+
dstRemote?: string;
|
|
2197
|
+
/** @description Assign the request to a custom stats group. */
|
|
2198
|
+
_group?: string;
|
|
2199
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2200
|
+
_async?: boolean;
|
|
2201
|
+
};
|
|
2202
|
+
OperationsPubliclinkRequest: {
|
|
2203
|
+
/** @description Remote name or path hosting the object for which to manage a public link. */
|
|
2204
|
+
fs?: string;
|
|
2205
|
+
/** @description Path within `fs` to the object for which to create or remove a public link. */
|
|
2206
|
+
remote?: string;
|
|
2207
|
+
/** @description Set to true to remove an existing public link instead of creating one. */
|
|
2208
|
+
unlink?: boolean;
|
|
2209
|
+
/** @description Optional expiration time for the public link, formatted as supported by the backend. */
|
|
2210
|
+
expire?: string;
|
|
2211
|
+
/** @description Assign the request to a custom stats group. */
|
|
2212
|
+
_group?: string;
|
|
2213
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2214
|
+
_async?: boolean;
|
|
2215
|
+
};
|
|
2216
|
+
OperationsRmdirsRequest: {
|
|
2217
|
+
/** @description Remote name or path to scan for empty directories. */
|
|
2218
|
+
fs?: string;
|
|
2219
|
+
/** @description Path within `fs` whose empty subdirectories should be removed. */
|
|
2220
|
+
remote?: string;
|
|
2221
|
+
/** @description Set to true to preserve the top-level directory even if empty. */
|
|
2222
|
+
leaveRoot?: boolean;
|
|
2223
|
+
/** @description Assign the request to a custom stats group. */
|
|
2224
|
+
_group?: string;
|
|
2225
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2226
|
+
_async?: boolean;
|
|
2227
|
+
};
|
|
2228
|
+
OperationsSettierRequest: {
|
|
2229
|
+
/** @description Remote name or path whose storage class tier should be changed. */
|
|
2230
|
+
fs?: string;
|
|
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
|
+
OperationsSettierfileRequest: {
|
|
2237
|
+
/** @description Remote name or path that contains the object whose tier should change. */
|
|
2238
|
+
fs?: string;
|
|
2239
|
+
/** @description Path within `fs` to the object whose storage class tier should be updated. */
|
|
2240
|
+
remote?: string;
|
|
2241
|
+
/** @description Assign the request to a custom stats group. */
|
|
2242
|
+
_group?: string;
|
|
2243
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2244
|
+
_async?: boolean;
|
|
2245
|
+
};
|
|
2246
|
+
OperationsSizeRequest: {
|
|
2247
|
+
/** @description Remote name or path to measure aggregate size information for. */
|
|
2248
|
+
fs?: 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
|
+
CoreBwlimitRequest: {
|
|
2255
|
+
/** @description Bandwidth limit to apply, for example `off`, `5M`, or a schedule string. */
|
|
2256
|
+
rate?: 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
|
+
CoreCommandRequest: {
|
|
2263
|
+
/** @description Name of the rclone command to execute, for example `ls` or `lsf`. */
|
|
2264
|
+
command?: string;
|
|
2265
|
+
/** @description Optional positional arguments for the command. Repeat to supply multiple values. */
|
|
2266
|
+
arg?: string[];
|
|
2267
|
+
/** @description Optional command options encoded as a JSON string. */
|
|
2268
|
+
opt?: string;
|
|
2269
|
+
/** @description Controls how output is returned; accepts `COMBINED_OUTPUT`, `STREAM`, `STREAM_ONLY_STDOUT`, or `STREAM_ONLY_STDERR`. */
|
|
2270
|
+
returnType?: string;
|
|
2271
|
+
/** @description Assign the request to a custom stats group. */
|
|
2272
|
+
_group?: string;
|
|
2273
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2274
|
+
_async?: boolean;
|
|
2275
|
+
};
|
|
2276
|
+
CoreDuRequest: {
|
|
2277
|
+
/** @description Local directory path to report disk usage for. Defaults to the rclone cache directory when omitted. */
|
|
2278
|
+
dir?: 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
|
+
CoreGcRequest: {
|
|
2285
|
+
/** @description Assign the request to a custom stats group. */
|
|
2286
|
+
_group?: string;
|
|
2287
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2288
|
+
_async?: boolean;
|
|
2289
|
+
};
|
|
2290
|
+
CoreGroupListRequest: {
|
|
2291
|
+
/** @description Assign the request to a custom stats group. */
|
|
2292
|
+
_group?: string;
|
|
2293
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2294
|
+
_async?: boolean;
|
|
2295
|
+
};
|
|
2296
|
+
CoreMemstatsRequest: {
|
|
2297
|
+
/** @description Assign the request to a custom stats group. */
|
|
2298
|
+
_group?: string;
|
|
2299
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2300
|
+
_async?: boolean;
|
|
2301
|
+
};
|
|
2302
|
+
CoreObscureRequest: {
|
|
2303
|
+
/** @description Plain-text string to obscure for storage in the config file. */
|
|
2304
|
+
clear?: string;
|
|
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
|
+
CorePidRequest: {
|
|
2311
|
+
/** @description Assign the request to a custom stats group. */
|
|
2312
|
+
_group?: string;
|
|
2313
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2314
|
+
_async?: boolean;
|
|
2315
|
+
};
|
|
2316
|
+
CoreQuitRequest: {
|
|
2317
|
+
/** @description Optional exit code to use when terminating the rclone process. */
|
|
2318
|
+
exitCode?: number;
|
|
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
|
+
CoreStatsDeleteRequest: {
|
|
2325
|
+
/** @description Stats group identifier to remove. */
|
|
2326
|
+
group?: string;
|
|
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
|
+
CoreStatsResetRequest: {
|
|
2333
|
+
/** @description Stats group identifier whose counters should be reset. Leave unset to reset all groups. */
|
|
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
|
+
CoreTransferredRequest: {
|
|
2341
|
+
/** @description Stats group identifier to filter the completed transfer list. Leave unset for 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
|
+
DebugSetBlockProfileRateRequest: {
|
|
2349
|
+
/** @description Sampling interval in nanoseconds for blocking profile collection; use 1 to capture all events. */
|
|
2350
|
+
rate?: number;
|
|
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
|
+
DebugSetGcPercentRequest: {
|
|
2357
|
+
/** @description Target percentage of newly allocated data to trigger garbage collection. */
|
|
2358
|
+
"gc-percent"?: 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
|
+
DebugSetMutexProfileFractionRequest: {
|
|
2365
|
+
/** @description Sampling fraction for mutex contention profiling; set to 0 to disable. */
|
|
2366
|
+
rate?: 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
|
+
DebugSetSoftMemoryLimitRequest: {
|
|
2373
|
+
/** @description Soft memory limit for the Go runtime in bytes. */
|
|
2374
|
+
"mem-limit"?: 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
|
+
FscacheClearRequest: {
|
|
2381
|
+
/** @description Assign the request to a custom stats group. */
|
|
2382
|
+
_group?: string;
|
|
2383
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2384
|
+
_async?: boolean;
|
|
2385
|
+
};
|
|
2386
|
+
FscacheEntriesRequest: {
|
|
2387
|
+
/** @description Assign the request to a custom stats group. */
|
|
2388
|
+
_group?: string;
|
|
2389
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2390
|
+
_async?: boolean;
|
|
2391
|
+
};
|
|
2392
|
+
MountListmountsRequest: {
|
|
2393
|
+
/** @description Assign the request to a custom stats group. */
|
|
2394
|
+
_group?: string;
|
|
2395
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2396
|
+
_async?: boolean;
|
|
2397
|
+
};
|
|
2398
|
+
MountMountRequest: {
|
|
2399
|
+
/** @description Remote path to mount, such as `drive:` or `remote:subdir`. */
|
|
2400
|
+
fs?: string;
|
|
2401
|
+
/** @description Absolute local path where the remote should be mounted. */
|
|
2402
|
+
mountPoint?: string;
|
|
2403
|
+
/** @description Optional mount implementation to use (`mount`, `cmount`, or `mount2`). */
|
|
2404
|
+
mountType?: string;
|
|
2405
|
+
/** @description Mount options encoded as JSON, matching flags accepted by `rclone mount`. */
|
|
2406
|
+
mountOpt?: string;
|
|
2407
|
+
/** @description VFS options encoded as JSON, matching flags accepted by `rclone mount`. */
|
|
2408
|
+
vfsOpt?: string;
|
|
2409
|
+
/** @description JSON encoded config overrides applied for this call only. */
|
|
2410
|
+
_config?: string;
|
|
2411
|
+
/** @description JSON encoded filter overrides applied for this call only. */
|
|
2412
|
+
_filter?: string;
|
|
2413
|
+
/** @description Assign the request to a custom stats group. */
|
|
2414
|
+
_group?: string;
|
|
2415
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2416
|
+
_async?: boolean;
|
|
2417
|
+
};
|
|
2418
|
+
MountTypesRequest: {
|
|
2419
|
+
/** @description Assign the request to a custom stats group. */
|
|
2420
|
+
_group?: string;
|
|
2421
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2422
|
+
_async?: boolean;
|
|
2423
|
+
};
|
|
2424
|
+
MountUnmountRequest: {
|
|
2425
|
+
/** @description Local mount point path to unmount. */
|
|
2426
|
+
mountPoint?: string;
|
|
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
|
+
MountUnmountallRequest: {
|
|
2433
|
+
/** @description Assign the request to a custom stats group. */
|
|
2434
|
+
_group?: string;
|
|
2435
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2436
|
+
_async?: boolean;
|
|
2437
|
+
};
|
|
2438
|
+
RcNoopAuthRequest: {
|
|
2439
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2440
|
+
_async?: boolean;
|
|
2441
|
+
} & {
|
|
2442
|
+
[key: string]: unknown;
|
|
2443
|
+
};
|
|
2444
|
+
RcErrorRequest: {
|
|
2445
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2446
|
+
_async?: boolean;
|
|
2447
|
+
} & {
|
|
2448
|
+
[key: string]: unknown;
|
|
2449
|
+
};
|
|
2450
|
+
RcListRequest: {
|
|
2451
|
+
/** @description Assign the request to a custom stats group. */
|
|
2452
|
+
_group?: string;
|
|
2453
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2454
|
+
_async?: boolean;
|
|
2455
|
+
};
|
|
2456
|
+
BackendCommandRequest: {
|
|
2457
|
+
/** @description Backend-specific command to invoke. */
|
|
2458
|
+
command?: string;
|
|
2459
|
+
/** @description Remote name or path the backend command should target. */
|
|
2460
|
+
fs?: string;
|
|
2461
|
+
/** @description Optional positional arguments for the backend command. */
|
|
2462
|
+
arg?: string[];
|
|
2463
|
+
/** @description Backend command options encoded as a JSON string. */
|
|
2464
|
+
opt?: string;
|
|
2465
|
+
/** @description Assign the request to a custom stats group. */
|
|
2466
|
+
_group?: string;
|
|
2467
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2468
|
+
_async?: boolean;
|
|
2469
|
+
};
|
|
2470
|
+
CacheExpireRequest: {
|
|
2471
|
+
/** @description Remote path to expire from the cache, e.g. `remote:path/to/dir`. */
|
|
2472
|
+
remote?: string;
|
|
2473
|
+
/** @description Set to true to drop cached chunk data along with directory entries. */
|
|
2474
|
+
withData?: boolean;
|
|
2475
|
+
/** @description Assign the request to a custom stats group. */
|
|
2476
|
+
_group?: string;
|
|
2477
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2478
|
+
_async?: boolean;
|
|
2479
|
+
};
|
|
2480
|
+
CacheFetchRequest: {
|
|
2481
|
+
/** @description Comma-separated chunk specifier list (e.g. `0:10,25:30`) describing file pieces to prefetch. */
|
|
2482
|
+
chunks?: string;
|
|
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
|
+
[key: string]: unknown;
|
|
2489
|
+
};
|
|
2490
|
+
CacheStatsRequest: {
|
|
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
|
+
ConfigCreateRequest: {
|
|
2497
|
+
/** @description Name of the new remote configuration. */
|
|
2498
|
+
name?: string;
|
|
2499
|
+
/** @description JSON object of configuration key/value pairs required for the remote. */
|
|
2500
|
+
parameters?: string;
|
|
2501
|
+
/** @description Backend type identifier, such as `drive`, `s3`, or `dropbox`. */
|
|
2502
|
+
type?: string;
|
|
2503
|
+
/** @description Optional JSON object controlling interactive behaviour (e.g. `obscure`, `continue`). */
|
|
2504
|
+
opt?: string;
|
|
2505
|
+
/** @description Assign the request to a custom stats group. */
|
|
2506
|
+
_group?: string;
|
|
2507
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2508
|
+
_async?: boolean;
|
|
2509
|
+
};
|
|
2510
|
+
ConfigDeleteRequest: {
|
|
2511
|
+
/** @description Name of the remote configuration to delete. */
|
|
2512
|
+
name?: 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
|
+
ConfigDumpRequest: {
|
|
2519
|
+
/** @description Assign the request to a custom stats group. */
|
|
2520
|
+
_group?: string;
|
|
2521
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2522
|
+
_async?: boolean;
|
|
2523
|
+
};
|
|
2524
|
+
ConfigGetRequest: {
|
|
2525
|
+
/** @description Name of the remote configuration to fetch. */
|
|
2526
|
+
name?: string;
|
|
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
|
+
ConfigListremotesRequest: {
|
|
2533
|
+
/** @description Assign the request to a custom stats group. */
|
|
2534
|
+
_group?: string;
|
|
2535
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2536
|
+
_async?: boolean;
|
|
2537
|
+
};
|
|
2538
|
+
ConfigPasswordRequest: {
|
|
2539
|
+
/** @description Name of the remote whose secrets should be updated. */
|
|
2540
|
+
name?: string;
|
|
2541
|
+
/** @description JSON object of password answers, typically including `pass`. */
|
|
2542
|
+
parameters?: string;
|
|
2543
|
+
/** @description Assign the request to a custom stats group. */
|
|
2544
|
+
_group?: string;
|
|
2545
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2546
|
+
_async?: boolean;
|
|
2547
|
+
};
|
|
2548
|
+
ConfigPathsRequest: {
|
|
2549
|
+
/** @description Assign the request to a custom stats group. */
|
|
2550
|
+
_group?: string;
|
|
2551
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2552
|
+
_async?: boolean;
|
|
2553
|
+
};
|
|
2554
|
+
ConfigProvidersRequest: {
|
|
2555
|
+
/** @description Assign the request to a custom stats group. */
|
|
2556
|
+
_group?: string;
|
|
2557
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2558
|
+
_async?: boolean;
|
|
2559
|
+
};
|
|
2560
|
+
ConfigSetpathRequest: {
|
|
2561
|
+
/** @description Absolute path to the `rclone.conf` file that rclone should use. */
|
|
2562
|
+
path?: string;
|
|
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
|
+
ConfigUnlockRequest: {
|
|
2569
|
+
/** @description Password used to unlock an encrypted config file. */
|
|
2570
|
+
configPassword?: 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
|
+
ConfigUpdateRequest: {
|
|
2577
|
+
/** @description Name of the remote configuration to update. */
|
|
2578
|
+
name?: string;
|
|
2579
|
+
/** @description JSON object of configuration key/value pairs to apply to the remote. */
|
|
2580
|
+
parameters?: string;
|
|
2581
|
+
/** @description Optional JSON object controlling update behaviour (e.g. `obscure`, `continue`). */
|
|
2582
|
+
opt?: string;
|
|
2583
|
+
/** @description Assign the request to a custom stats group. */
|
|
2584
|
+
_group?: string;
|
|
2585
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2586
|
+
_async?: boolean;
|
|
2587
|
+
};
|
|
2588
|
+
CoreVersionRequest: {
|
|
2589
|
+
/** @description Assign the request to a custom stats group. */
|
|
2590
|
+
_group?: string;
|
|
2591
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2592
|
+
_async?: boolean;
|
|
2593
|
+
};
|
|
2594
|
+
CoreStatsRequest: {
|
|
2595
|
+
/** @description Stats group identifier to return a snapshot for. Leave unset to include all groups. */
|
|
2596
|
+
group?: string;
|
|
2597
|
+
/** @description When true, omit the `transferring` and `checking` arrays from the response. */
|
|
2598
|
+
short?: boolean;
|
|
2599
|
+
/** @description Assign the request to a custom stats group. */
|
|
2600
|
+
_group?: string;
|
|
2601
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2602
|
+
_async?: boolean;
|
|
2603
|
+
};
|
|
2604
|
+
JobListRequest: {
|
|
2605
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2606
|
+
_async?: boolean;
|
|
2607
|
+
};
|
|
2608
|
+
JobStatusRequest: {
|
|
2609
|
+
/** @description Numeric identifier of the job to query, as returned from an async call. */
|
|
2610
|
+
jobid?: number;
|
|
2611
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2612
|
+
_async?: boolean;
|
|
2613
|
+
};
|
|
2614
|
+
JobStopRequest: {
|
|
2615
|
+
/** @description Numeric identifier of the job to cancel. */
|
|
2616
|
+
jobid?: number;
|
|
2617
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2618
|
+
_async?: boolean;
|
|
2619
|
+
};
|
|
2620
|
+
JobStopgroupRequest: {
|
|
2621
|
+
/** @description Stats group name whose active jobs should be stopped. */
|
|
2622
|
+
group?: string;
|
|
2623
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2624
|
+
_async?: boolean;
|
|
2625
|
+
};
|
|
2626
|
+
OperationsListRequest: {
|
|
2627
|
+
/** @description Remote name or path to list, for example `drive:`. */
|
|
2628
|
+
fs?: string;
|
|
2629
|
+
/** @description Directory path within `fs` to list; leave empty to target the root. */
|
|
2630
|
+
remote?: string;
|
|
2631
|
+
/** @description Optional JSON-encoded object of listing flags (e.g. `{ "recurse": true, "showHash": true }`). */
|
|
2632
|
+
opt?: string;
|
|
2633
|
+
/** @description Set to true to list directories recursively. */
|
|
2634
|
+
recurse?: boolean;
|
|
2635
|
+
/** @description Set to true to omit modification times for faster listings on some backends. */
|
|
2636
|
+
noModTime?: boolean;
|
|
2637
|
+
/** @description Set to true to include encrypted names when using crypt remotes. */
|
|
2638
|
+
showEncrypted?: boolean;
|
|
2639
|
+
/** @description Set to true to include original backend identifiers where available. */
|
|
2640
|
+
showOrigIDs?: boolean;
|
|
2641
|
+
/** @description Set to true to include hash digests for each entry. */
|
|
2642
|
+
showHash?: boolean;
|
|
2643
|
+
/** @description Set to true to omit MIME type detection. */
|
|
2644
|
+
noMimeType?: boolean;
|
|
2645
|
+
/** @description Set to true to return only directory entries. */
|
|
2646
|
+
dirsOnly?: boolean;
|
|
2647
|
+
/** @description Set to true to return only file entries. */
|
|
2648
|
+
filesOnly?: boolean;
|
|
2649
|
+
/** @description Set to true to include backend-provided metadata maps. */
|
|
2650
|
+
metadata?: boolean;
|
|
2651
|
+
/** @description Specify one or more hash algorithms to include when `showHash` is true (e.g. `md5`). */
|
|
2652
|
+
hashTypes?: string[];
|
|
2653
|
+
/** @description Assign the request to a custom stats group. */
|
|
2654
|
+
_group?: string;
|
|
2655
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2656
|
+
_async?: boolean;
|
|
2657
|
+
};
|
|
2658
|
+
OperationsStatRequest: {
|
|
2659
|
+
/** @description Remote name or path that contains the item to inspect. */
|
|
2660
|
+
fs?: string;
|
|
2661
|
+
/** @description Path to the file or directory within `fs` to describe. */
|
|
2662
|
+
remote?: string;
|
|
2663
|
+
/** @description Optional JSON object of listing flags, matching those accepted by `operations/list`. */
|
|
2664
|
+
opt?: string;
|
|
2665
|
+
/** @description Assign the request to a custom stats group. */
|
|
2666
|
+
_group?: string;
|
|
2667
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2668
|
+
_async?: boolean;
|
|
2669
|
+
};
|
|
2670
|
+
OperationsAboutRequest: {
|
|
2671
|
+
/** @description Remote name or path to query for capacity information. */
|
|
2672
|
+
fs?: 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
|
+
OperationsPurgeRequest: {
|
|
2679
|
+
/** @description Remote name or path from which to remove all contents. */
|
|
2680
|
+
fs?: string;
|
|
2681
|
+
/** @description Path within `fs` whose contents should be purged. */
|
|
2682
|
+
remote?: string;
|
|
2683
|
+
/** @description JSON encoded config overrides applied for this call only. */
|
|
2684
|
+
_config?: string;
|
|
2685
|
+
/** @description JSON encoded filter overrides applied for this call only. */
|
|
2686
|
+
_filter?: string;
|
|
2687
|
+
/** @description Assign the request to a custom stats group. */
|
|
2688
|
+
_group?: string;
|
|
2689
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2690
|
+
_async?: boolean;
|
|
2691
|
+
};
|
|
2692
|
+
OperationsMkdirRequest: {
|
|
2693
|
+
/** @description Remote name or path in which to create a directory. */
|
|
2694
|
+
fs?: string;
|
|
2695
|
+
/** @description Directory path within `fs` to create. */
|
|
2696
|
+
remote?: string;
|
|
2697
|
+
/** @description Assign the request to a custom stats group. */
|
|
2698
|
+
_group?: string;
|
|
2699
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2700
|
+
_async?: boolean;
|
|
2701
|
+
};
|
|
2702
|
+
OperationsRmdirRequest: {
|
|
2703
|
+
/** @description Remote name or path containing the directory to remove. */
|
|
2704
|
+
fs?: string;
|
|
2705
|
+
/** @description Directory path within `fs` to delete. */
|
|
2706
|
+
remote?: string;
|
|
2707
|
+
/** @description Assign the request to a custom stats group. */
|
|
2708
|
+
_group?: string;
|
|
2709
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2710
|
+
_async?: boolean;
|
|
2711
|
+
};
|
|
2712
|
+
OperationsCheckRequest: {
|
|
2713
|
+
/** @description Source remote name or path to verify, e.g. `drive:`. */
|
|
2714
|
+
srcFs?: string;
|
|
2715
|
+
/** @description Destination remote name or path that should match the source. */
|
|
2716
|
+
dstFs?: string;
|
|
2717
|
+
/** @description Set to true to read file contents during comparison instead of relying on hashes. */
|
|
2718
|
+
download?: boolean;
|
|
2719
|
+
/** @description Hash name to expect in the supplied SUM file, such as `md5`. */
|
|
2720
|
+
checkFileHash?: string;
|
|
2721
|
+
/** @description Remote containing the checksum SUM file when using `checkFileHash`. */
|
|
2722
|
+
checkFileFs?: string;
|
|
2723
|
+
/** @description Path within `checkFileFs` to the checksum SUM file. */
|
|
2724
|
+
checkFileRemote?: string;
|
|
2725
|
+
/** @description Set to true to only ensure that source files exist on the destination. */
|
|
2726
|
+
oneWay?: boolean;
|
|
2727
|
+
/** @description Set to true to include a combined summary report in the response. */
|
|
2728
|
+
combined?: boolean;
|
|
2729
|
+
/** @description Set to true to report files missing from the source. */
|
|
2730
|
+
missingOnSrc?: boolean;
|
|
2731
|
+
/** @description Set to true to report files missing from the destination. */
|
|
2732
|
+
missingOnDst?: boolean;
|
|
2733
|
+
/** @description Set to true to include matching files in the report. */
|
|
2734
|
+
match?: boolean;
|
|
2735
|
+
/** @description Set to true to include differing files in the report. */
|
|
2736
|
+
differ?: boolean;
|
|
2737
|
+
/** @description Set to true to include entries that encountered errors. */
|
|
2738
|
+
error?: boolean;
|
|
2739
|
+
/** @description Assign the request to a custom stats group. */
|
|
2740
|
+
_group?: string;
|
|
2741
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2742
|
+
_async?: boolean;
|
|
2743
|
+
};
|
|
2744
|
+
SyncSyncRequest: {
|
|
2745
|
+
/** @description Source remote path to sync from, e.g. `drive:src`. */
|
|
2746
|
+
srcFs?: string;
|
|
2747
|
+
/** @description Destination remote path to sync to, e.g. `drive:dst`. */
|
|
2748
|
+
dstFs?: string;
|
|
2749
|
+
/** @description Set to true to create empty source directories on the destination. */
|
|
2750
|
+
createEmptySrcDirs?: boolean;
|
|
2751
|
+
/** @description JSON encoded config overrides applied for this call only. */
|
|
2752
|
+
_config?: string;
|
|
2753
|
+
/** @description JSON encoded filter overrides applied for this call only. */
|
|
2754
|
+
_filter?: string;
|
|
2755
|
+
/** @description Assign the request to a custom stats group. */
|
|
2756
|
+
_group?: string;
|
|
2757
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2758
|
+
_async?: boolean;
|
|
2759
|
+
};
|
|
2760
|
+
SyncCopyRequest: {
|
|
2761
|
+
/** @description Source remote path to copy from. */
|
|
2762
|
+
srcFs?: string;
|
|
2763
|
+
/** @description Destination remote path to copy to. */
|
|
2764
|
+
dstFs?: string;
|
|
2765
|
+
/** @description Set to true to replicate empty source directories on the destination. */
|
|
2766
|
+
createEmptySrcDirs?: boolean;
|
|
2767
|
+
/** @description JSON encoded config overrides applied for this call only. */
|
|
2768
|
+
_config?: string;
|
|
2769
|
+
/** @description JSON encoded filter overrides applied for this call only. */
|
|
2770
|
+
_filter?: string;
|
|
2771
|
+
/** @description Assign the request to a custom stats group. */
|
|
2772
|
+
_group?: string;
|
|
2773
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2774
|
+
_async?: boolean;
|
|
2775
|
+
};
|
|
2776
|
+
SyncMoveRequest: {
|
|
2777
|
+
/** @description Source remote path whose contents will be moved. */
|
|
2778
|
+
srcFs?: string;
|
|
2779
|
+
/** @description Destination remote path that will receive moved files. */
|
|
2780
|
+
dstFs?: string;
|
|
2781
|
+
/** @description Set to true to create empty source directories on the destination. */
|
|
2782
|
+
createEmptySrcDirs?: boolean;
|
|
2783
|
+
/** @description Set to true to delete empty directories from the source after the move completes. */
|
|
2784
|
+
deleteEmptySrcDirs?: boolean;
|
|
2785
|
+
/** @description JSON encoded config overrides applied for this call only. */
|
|
2786
|
+
_config?: string;
|
|
2787
|
+
/** @description JSON encoded filter overrides applied for this call only. */
|
|
2788
|
+
_filter?: string;
|
|
2789
|
+
/** @description Assign the request to a custom stats group. */
|
|
2790
|
+
_group?: string;
|
|
2791
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2792
|
+
_async?: boolean;
|
|
2793
|
+
};
|
|
2794
|
+
SyncBisyncRequest: {
|
|
2795
|
+
/** @description First remote directory, e.g. `drive:path1`. */
|
|
2796
|
+
path1?: string;
|
|
2797
|
+
/** @description Second remote directory, e.g. `drive:path2`. */
|
|
2798
|
+
path2?: string;
|
|
2799
|
+
/** @description Set to true to simulate the bisync run without making changes. */
|
|
2800
|
+
dryRun?: boolean;
|
|
2801
|
+
/** @description Set to true to perform a one-time resync, rebuilding bisync history. */
|
|
2802
|
+
resync?: boolean;
|
|
2803
|
+
/** @description Set to true to abort if `RCLONE_TEST` files are missing on either side. */
|
|
2804
|
+
checkAccess?: boolean;
|
|
2805
|
+
/** @description Override the access-check sentinel filename; defaults to `RCLONE_TEST`. */
|
|
2806
|
+
checkFilename?: string;
|
|
2807
|
+
/** @description Abort the run if deletions exceed this percentage (default 50). */
|
|
2808
|
+
maxDelete?: number;
|
|
2809
|
+
/** @description Set to true to bypass the `maxDelete` safety check. */
|
|
2810
|
+
force?: boolean;
|
|
2811
|
+
/** @description Controls final listing comparison; leave true for normal verification or set false to skip. */
|
|
2812
|
+
checkSync?: boolean;
|
|
2813
|
+
/** @description Set to true to mirror empty directories between the two paths. */
|
|
2814
|
+
createEmptySrcDirs?: boolean;
|
|
2815
|
+
/** @description Set to true to remove empty directories during cleanup. */
|
|
2816
|
+
removeEmptyDirs?: boolean;
|
|
2817
|
+
/** @description Path to an rclone filters file applied to both paths. */
|
|
2818
|
+
filtersFile?: string;
|
|
2819
|
+
/** @description Set to true to ignore checksum differences when comparing listings. */
|
|
2820
|
+
ignoreListingChecksum?: boolean;
|
|
2821
|
+
/** @description Set to true to allow retrying after certain recoverable errors. */
|
|
2822
|
+
resilient?: boolean;
|
|
2823
|
+
/** @description Directory path used to store bisync working files. */
|
|
2824
|
+
workdir?: string;
|
|
2825
|
+
/** @description Backup directory on the first remote for changed files. */
|
|
2826
|
+
backupdir1?: string;
|
|
2827
|
+
/** @description Backup directory on the second remote for changed files. */
|
|
2828
|
+
backupdir2?: string;
|
|
2829
|
+
/** @description Set to true to keep bisync working files after completion. */
|
|
2830
|
+
noCleanup?: boolean;
|
|
2831
|
+
/** @description JSON encoded config overrides applied for this call only. */
|
|
2832
|
+
_config?: string;
|
|
2833
|
+
/** @description JSON encoded filter overrides applied for this call only. */
|
|
2834
|
+
_filter?: string;
|
|
2835
|
+
/** @description Assign the request to a custom stats group. */
|
|
2836
|
+
_group?: string;
|
|
2837
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2838
|
+
_async?: boolean;
|
|
2839
|
+
};
|
|
2840
|
+
OptionsBlocksRequest: {
|
|
2841
|
+
/** @description Assign the request to a custom stats group. */
|
|
2842
|
+
_group?: string;
|
|
2843
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2844
|
+
_async?: boolean;
|
|
2845
|
+
};
|
|
2846
|
+
OptionsGetRequest: {
|
|
2847
|
+
/** @description Optional comma-separated list of option block names to return. */
|
|
2848
|
+
blocks?: string;
|
|
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
|
+
OptionsInfoRequest: {
|
|
2855
|
+
/** @description Optional comma-separated list of option block names to describe. */
|
|
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
|
+
OptionsSetRequest: {
|
|
2863
|
+
/** @description Overrides for the `dlna` option block. */
|
|
2864
|
+
dlna?: {
|
|
2865
|
+
[key: string]: unknown;
|
|
2866
|
+
};
|
|
2867
|
+
/** @description Overrides for the `filter` option block. */
|
|
2868
|
+
filter?: {
|
|
2869
|
+
[key: string]: unknown;
|
|
2870
|
+
};
|
|
2871
|
+
/** @description Overrides for the `ftp` option block. */
|
|
2872
|
+
ftp?: {
|
|
2873
|
+
[key: string]: unknown;
|
|
2874
|
+
};
|
|
2875
|
+
/** @description Overrides for the `main` option block. */
|
|
2876
|
+
main?: {
|
|
2877
|
+
[key: string]: unknown;
|
|
2878
|
+
};
|
|
2879
|
+
/** @description Overrides for the `http` option block. */
|
|
2880
|
+
http?: {
|
|
2881
|
+
[key: string]: unknown;
|
|
2882
|
+
};
|
|
2883
|
+
/** @description Overrides for the `log` option block. */
|
|
2884
|
+
log?: {
|
|
2885
|
+
[key: string]: unknown;
|
|
2886
|
+
};
|
|
2887
|
+
/** @description Overrides for the `mount` option block. */
|
|
2888
|
+
mount?: {
|
|
2889
|
+
[key: string]: unknown;
|
|
2890
|
+
};
|
|
2891
|
+
/** @description Overrides for the `nfs` option block. */
|
|
2892
|
+
nfs?: {
|
|
2893
|
+
[key: string]: unknown;
|
|
2894
|
+
};
|
|
2895
|
+
/** @description Overrides for the `proxy` option block. */
|
|
2896
|
+
proxy?: {
|
|
2897
|
+
[key: string]: unknown;
|
|
2898
|
+
};
|
|
2899
|
+
/** @description Overrides for the `rc` option block. */
|
|
2900
|
+
rc?: {
|
|
2901
|
+
[key: string]: unknown;
|
|
2902
|
+
};
|
|
2903
|
+
/** @description Overrides for the `restic` option block. */
|
|
2904
|
+
restic?: {
|
|
2905
|
+
[key: string]: unknown;
|
|
2906
|
+
};
|
|
2907
|
+
/** @description Overrides for the `s3` option block. */
|
|
2908
|
+
s3?: {
|
|
2909
|
+
[key: string]: unknown;
|
|
2910
|
+
};
|
|
2911
|
+
/** @description Overrides for the `sftp` option block. */
|
|
2912
|
+
sftp?: {
|
|
2913
|
+
[key: string]: unknown;
|
|
2914
|
+
};
|
|
2915
|
+
/** @description Overrides for the `vfs` option block. */
|
|
2916
|
+
vfs?: {
|
|
2917
|
+
[key: string]: unknown;
|
|
2918
|
+
};
|
|
2919
|
+
/** @description Overrides for the `webdav` option block. */
|
|
2920
|
+
webdav?: {
|
|
2921
|
+
[key: string]: unknown;
|
|
2922
|
+
};
|
|
2923
|
+
/** @description Assign the request to a custom stats group. */
|
|
2924
|
+
_group?: string;
|
|
2925
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2926
|
+
_async?: boolean;
|
|
2927
|
+
} & {
|
|
2928
|
+
[key: string]: unknown;
|
|
2929
|
+
};
|
|
2930
|
+
OptionsLocalRequest: {
|
|
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
|
+
ServeListRequest: {
|
|
2937
|
+
/** @description Assign the request to a custom stats group. */
|
|
2938
|
+
_group?: string;
|
|
2939
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2940
|
+
_async?: boolean;
|
|
2941
|
+
};
|
|
2942
|
+
ServeStartRequest: {
|
|
2943
|
+
/** @description Type of server to start (e.g. `http`, `webdav`, `ftp`, `sftp`). */
|
|
2944
|
+
type?: string;
|
|
2945
|
+
/** @description Remote path that will be served. */
|
|
2946
|
+
fs?: string;
|
|
2947
|
+
/** @description Address and port to bind the server to, such as `:5572` or `localhost:8080`. */
|
|
2948
|
+
addr?: string;
|
|
2949
|
+
/** @description JSON encoded config overrides applied for this call only. */
|
|
2950
|
+
_config?: string;
|
|
2951
|
+
/** @description JSON encoded filter overrides applied for this call only. */
|
|
2952
|
+
_filter?: string;
|
|
2953
|
+
/** @description Assign the request to a custom stats group. */
|
|
2954
|
+
_group?: string;
|
|
2955
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2956
|
+
_async?: boolean;
|
|
2957
|
+
} & {
|
|
2958
|
+
[key: string]: unknown;
|
|
2959
|
+
};
|
|
2960
|
+
ServeStopRequest: {
|
|
2961
|
+
/** @description Identifier of the running serve instance returned by `serve/start`. */
|
|
2962
|
+
id?: string;
|
|
2963
|
+
/** @description Assign the request to a custom stats group. */
|
|
2964
|
+
_group?: string;
|
|
2965
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2966
|
+
_async?: boolean;
|
|
2967
|
+
};
|
|
2968
|
+
ServeStopallRequest: {
|
|
2969
|
+
/** @description Assign the request to a custom stats group. */
|
|
2970
|
+
_group?: string;
|
|
2971
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2972
|
+
_async?: boolean;
|
|
2973
|
+
};
|
|
2974
|
+
ServeTypesRequest: {
|
|
2975
|
+
/** @description Assign the request to a custom stats group. */
|
|
2976
|
+
_group?: string;
|
|
2977
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2978
|
+
_async?: boolean;
|
|
2979
|
+
};
|
|
2980
|
+
VfsForgetRequest: {
|
|
2981
|
+
/** @description Optional VFS identifier to target; required when more than one VFS is active. */
|
|
2982
|
+
fs?: string;
|
|
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
|
+
[key: string]: unknown;
|
|
2989
|
+
};
|
|
2990
|
+
VfsListRequest: {
|
|
2991
|
+
/** @description Optional VFS identifier; omit to list all active VFS instances. */
|
|
2992
|
+
fs?: string;
|
|
2993
|
+
/** @description Assign the request to a custom stats group. */
|
|
2994
|
+
_group?: string;
|
|
2995
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
2996
|
+
_async?: boolean;
|
|
2997
|
+
};
|
|
2998
|
+
VfsPollIntervalRequest: {
|
|
2999
|
+
/** @description Optional VFS identifier whose poll interval should be queried or modified. */
|
|
3000
|
+
fs?: string;
|
|
3001
|
+
/** @description Duration string (e.g. `5m`) to set as the new poll interval. */
|
|
3002
|
+
interval?: string;
|
|
3003
|
+
/** @description Duration to wait for the poll interval change to take effect; `0` waits indefinitely. */
|
|
3004
|
+
timeout?: string;
|
|
3005
|
+
/** @description Assign the request to a custom stats group. */
|
|
3006
|
+
_group?: string;
|
|
3007
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
3008
|
+
_async?: boolean;
|
|
3009
|
+
};
|
|
3010
|
+
VfsQueueRequest: {
|
|
3011
|
+
/** @description Optional VFS identifier whose upload queue should be inspected. */
|
|
3012
|
+
fs?: 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
|
+
VfsQueueSetExpiryRequest: {
|
|
3019
|
+
/** @description Optional VFS identifier for the queued item. */
|
|
3020
|
+
fs?: string;
|
|
3021
|
+
/** @description Queue item ID as returned by `vfs/queue`. */
|
|
3022
|
+
id?: number;
|
|
3023
|
+
/** @description New eligibility time in seconds (may be negative for immediate upload). */
|
|
3024
|
+
expiry?: number;
|
|
3025
|
+
/** @description Set to true to treat `expiry` as relative to the current value. */
|
|
3026
|
+
relative?: boolean;
|
|
3027
|
+
/** @description Assign the request to a custom stats group. */
|
|
3028
|
+
_group?: string;
|
|
3029
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
3030
|
+
_async?: boolean;
|
|
3031
|
+
};
|
|
3032
|
+
VfsRefreshRequest: {
|
|
3033
|
+
/** @description Optional VFS identifier whose directory cache should be refreshed. */
|
|
3034
|
+
fs?: string;
|
|
3035
|
+
/** @description Set to true to refresh entire directory trees. */
|
|
3036
|
+
recursive?: boolean;
|
|
3037
|
+
/** @description Assign the request to a custom stats group. */
|
|
3038
|
+
_group?: string;
|
|
3039
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
3040
|
+
_async?: boolean;
|
|
3041
|
+
} & {
|
|
3042
|
+
[key: string]: unknown;
|
|
3043
|
+
};
|
|
3044
|
+
VfsStatsRequest: {
|
|
3045
|
+
/** @description Optional VFS identifier whose statistics should be returned. */
|
|
3046
|
+
fs?: string;
|
|
3047
|
+
/** @description Assign the request to a custom stats group. */
|
|
3048
|
+
_group?: string;
|
|
3049
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
3050
|
+
_async?: boolean;
|
|
3051
|
+
};
|
|
3052
|
+
PluginsctlAddPluginRequest: {
|
|
3053
|
+
/** @description Repository URL of the plugin to install. */
|
|
3054
|
+
url?: 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
|
+
PluginsctlGetPluginsForTypeRequest: {
|
|
3061
|
+
/** @description MIME type to match when listing plugins. */
|
|
3062
|
+
type?: string;
|
|
3063
|
+
/** @description Filter results by plugin type (e.g. `test`). */
|
|
3064
|
+
pluginType?: string;
|
|
3065
|
+
/** @description Assign the request to a custom stats group. */
|
|
3066
|
+
_group?: string;
|
|
3067
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
3068
|
+
_async?: boolean;
|
|
3069
|
+
};
|
|
3070
|
+
PluginsctlListPluginsRequest: {
|
|
3071
|
+
/** @description Assign the request to a custom stats group. */
|
|
3072
|
+
_group?: string;
|
|
3073
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
3074
|
+
_async?: boolean;
|
|
3075
|
+
};
|
|
3076
|
+
PluginsctlListTestPluginsRequest: {
|
|
3077
|
+
/** @description Assign the request to a custom stats group. */
|
|
3078
|
+
_group?: string;
|
|
3079
|
+
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
3080
|
+
_async?: boolean;
|
|
3081
|
+
};
|
|
3082
|
+
PluginsctlRemovePluginRequest: {
|
|
3083
|
+
/** @description Name of the plugin to uninstall. */
|
|
3084
|
+
name?: string;
|
|
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
|
+
PluginsctlRemoveTestPluginRequest: {
|
|
3091
|
+
/** @description Name of the test 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
|
+
};
|
|
2086
3098
|
};
|
|
2087
3099
|
responses: {
|
|
2088
3100
|
/** @description Any error response (HTTP 4xx/5xx) */
|
|
@@ -2121,7 +3133,23 @@ export interface components {
|
|
|
2121
3133
|
[name: string]: unknown;
|
|
2122
3134
|
};
|
|
2123
3135
|
content: {
|
|
2124
|
-
"application/json":
|
|
3136
|
+
"application/json": {
|
|
3137
|
+
/** @description Job ID returned when _async=true. */
|
|
3138
|
+
jobid?: number;
|
|
3139
|
+
} & {
|
|
3140
|
+
[key: string]: unknown;
|
|
3141
|
+
};
|
|
3142
|
+
};
|
|
3143
|
+
};
|
|
3144
|
+
/** @description Supported rclone serve protocols. */
|
|
3145
|
+
ServeTypesResponse: {
|
|
3146
|
+
headers: {
|
|
3147
|
+
[name: string]: unknown;
|
|
3148
|
+
};
|
|
3149
|
+
content: {
|
|
3150
|
+
"application/json": {
|
|
3151
|
+
types: string[];
|
|
3152
|
+
};
|
|
2125
3153
|
};
|
|
2126
3154
|
};
|
|
2127
3155
|
/** @description Response for sync operations, containing job ID if async. */
|
|
@@ -3161,7 +4189,9 @@ export interface components {
|
|
|
3161
4189
|
/** @description Assign the request to a custom stats group. */
|
|
3162
4190
|
GlobalGroupParam: string;
|
|
3163
4191
|
/** @description Additional arbitrary parameters allowed. */
|
|
3164
|
-
Rc_NoopPostAdditionalParam:
|
|
4192
|
+
Rc_NoopPostAdditionalParam: {
|
|
4193
|
+
[key: string]: unknown;
|
|
4194
|
+
};
|
|
3165
4195
|
/** @description Do this many commands concurrently. Defaults to --transfers if not set. */
|
|
3166
4196
|
Job_BatchPostConcurrencyParam: number;
|
|
3167
4197
|
/** @description List of inputs to the commands with an extra _path parameter. */
|
|
@@ -3292,9 +4322,13 @@ export interface components {
|
|
|
3292
4322
|
/** @description Local mount point path to unmount. */
|
|
3293
4323
|
Mount_UnmountPostMountPointParam: string;
|
|
3294
4324
|
/** @description Additional arbitrary parameters allowed. */
|
|
3295
|
-
Rc_NoopauthPostAdditionalParam:
|
|
4325
|
+
Rc_NoopauthPostAdditionalParam: {
|
|
4326
|
+
[key: string]: unknown;
|
|
4327
|
+
};
|
|
3296
4328
|
/** @description Additional arbitrary parameters allowed. */
|
|
3297
|
-
Rc_ErrorPostAdditionalParam:
|
|
4329
|
+
Rc_ErrorPostAdditionalParam: {
|
|
4330
|
+
[key: string]: unknown;
|
|
4331
|
+
};
|
|
3298
4332
|
/** @description Backend-specific command to invoke. */
|
|
3299
4333
|
Backend_CommandPostCommandParam: string;
|
|
3300
4334
|
/** @description Remote name or path the backend command should target. */
|
|
@@ -3310,7 +4344,9 @@ export interface components {
|
|
|
3310
4344
|
/** @description Comma-separated chunk specifier list (e.g. `0:10,25:30`) describing file pieces to prefetch. */
|
|
3311
4345
|
Cache_FetchPostChunksParam: string;
|
|
3312
4346
|
/** @description Additional arbitrary parameters allowed. */
|
|
3313
|
-
Cache_FetchPostAdditionalParam:
|
|
4347
|
+
Cache_FetchPostAdditionalParam: {
|
|
4348
|
+
[key: string]: unknown;
|
|
4349
|
+
};
|
|
3314
4350
|
/** @description Name of the new remote configuration. */
|
|
3315
4351
|
Config_CreatePostNameParam: string;
|
|
3316
4352
|
/** @description JSON object of configuration key/value pairs required for the remote. */
|
|
@@ -3481,93 +4517,63 @@ export interface components {
|
|
|
3481
4517
|
Options_InfoPostBlocksParam: string;
|
|
3482
4518
|
/** @description Overrides for the `dlna` option block. */
|
|
3483
4519
|
Options_SetPostDlnaParam: {
|
|
3484
|
-
[key: string]:
|
|
3485
|
-
[key: string]: unknown;
|
|
3486
|
-
};
|
|
4520
|
+
[key: string]: unknown;
|
|
3487
4521
|
};
|
|
3488
4522
|
/** @description Overrides for the `filter` option block. */
|
|
3489
4523
|
Options_SetPostFilterParam: {
|
|
3490
|
-
[key: string]:
|
|
3491
|
-
[key: string]: unknown;
|
|
3492
|
-
};
|
|
4524
|
+
[key: string]: unknown;
|
|
3493
4525
|
};
|
|
3494
4526
|
/** @description Overrides for the `ftp` option block. */
|
|
3495
4527
|
Options_SetPostFtpParam: {
|
|
3496
|
-
[key: string]:
|
|
3497
|
-
[key: string]: unknown;
|
|
3498
|
-
};
|
|
4528
|
+
[key: string]: unknown;
|
|
3499
4529
|
};
|
|
3500
4530
|
/** @description Overrides for the `main` option block. */
|
|
3501
4531
|
Options_SetPostMainParam: {
|
|
3502
|
-
[key: string]:
|
|
3503
|
-
[key: string]: unknown;
|
|
3504
|
-
};
|
|
4532
|
+
[key: string]: unknown;
|
|
3505
4533
|
};
|
|
3506
4534
|
/** @description Overrides for the `http` option block. */
|
|
3507
4535
|
Options_SetPostHttpParam: {
|
|
3508
|
-
[key: string]:
|
|
3509
|
-
[key: string]: unknown;
|
|
3510
|
-
};
|
|
4536
|
+
[key: string]: unknown;
|
|
3511
4537
|
};
|
|
3512
4538
|
/** @description Overrides for the `log` option block. */
|
|
3513
4539
|
Options_SetPostLogParam: {
|
|
3514
|
-
[key: string]:
|
|
3515
|
-
[key: string]: unknown;
|
|
3516
|
-
};
|
|
4540
|
+
[key: string]: unknown;
|
|
3517
4541
|
};
|
|
3518
4542
|
/** @description Overrides for the `mount` option block. */
|
|
3519
4543
|
Options_SetPostMountParam: {
|
|
3520
|
-
[key: string]:
|
|
3521
|
-
[key: string]: unknown;
|
|
3522
|
-
};
|
|
4544
|
+
[key: string]: unknown;
|
|
3523
4545
|
};
|
|
3524
4546
|
/** @description Overrides for the `nfs` option block. */
|
|
3525
4547
|
Options_SetPostNfsParam: {
|
|
3526
|
-
[key: string]:
|
|
3527
|
-
[key: string]: unknown;
|
|
3528
|
-
};
|
|
4548
|
+
[key: string]: unknown;
|
|
3529
4549
|
};
|
|
3530
4550
|
/** @description Overrides for the `proxy` option block. */
|
|
3531
4551
|
Options_SetPostProxyParam: {
|
|
3532
|
-
[key: string]:
|
|
3533
|
-
[key: string]: unknown;
|
|
3534
|
-
};
|
|
4552
|
+
[key: string]: unknown;
|
|
3535
4553
|
};
|
|
3536
4554
|
/** @description Overrides for the `rc` option block. */
|
|
3537
4555
|
Options_SetPostRcParam: {
|
|
3538
|
-
[key: string]:
|
|
3539
|
-
[key: string]: unknown;
|
|
3540
|
-
};
|
|
4556
|
+
[key: string]: unknown;
|
|
3541
4557
|
};
|
|
3542
4558
|
/** @description Overrides for the `restic` option block. */
|
|
3543
4559
|
Options_SetPostResticParam: {
|
|
3544
|
-
[key: string]:
|
|
3545
|
-
[key: string]: unknown;
|
|
3546
|
-
};
|
|
4560
|
+
[key: string]: unknown;
|
|
3547
4561
|
};
|
|
3548
4562
|
/** @description Overrides for the `s3` option block. */
|
|
3549
4563
|
Options_SetPostS3Param: {
|
|
3550
|
-
[key: string]:
|
|
3551
|
-
[key: string]: unknown;
|
|
3552
|
-
};
|
|
4564
|
+
[key: string]: unknown;
|
|
3553
4565
|
};
|
|
3554
4566
|
/** @description Overrides for the `sftp` option block. */
|
|
3555
4567
|
Options_SetPostSftpParam: {
|
|
3556
|
-
[key: string]:
|
|
3557
|
-
[key: string]: unknown;
|
|
3558
|
-
};
|
|
4568
|
+
[key: string]: unknown;
|
|
3559
4569
|
};
|
|
3560
4570
|
/** @description Overrides for the `vfs` option block. */
|
|
3561
4571
|
Options_SetPostVfsParam: {
|
|
3562
|
-
[key: string]:
|
|
3563
|
-
[key: string]: unknown;
|
|
3564
|
-
};
|
|
4572
|
+
[key: string]: unknown;
|
|
3565
4573
|
};
|
|
3566
4574
|
/** @description Overrides for the `webdav` option block. */
|
|
3567
4575
|
Options_SetPostWebdavParam: {
|
|
3568
|
-
[key: string]:
|
|
3569
|
-
[key: string]: unknown;
|
|
3570
|
-
};
|
|
4576
|
+
[key: string]: unknown;
|
|
3571
4577
|
};
|
|
3572
4578
|
/** @description Type of server to start (e.g. `http`, `webdav`, `ftp`, `sftp`). */
|
|
3573
4579
|
Serve_StartPostTypeParam: string;
|
|
@@ -3576,13 +4582,17 @@ export interface components {
|
|
|
3576
4582
|
/** @description Address and port to bind the server to, such as `:5572` or `localhost:8080`. */
|
|
3577
4583
|
Serve_StartPostAddrParam: string;
|
|
3578
4584
|
/** @description Additional arbitrary parameters allowed. */
|
|
3579
|
-
Serve_StartPostAdditionalParam:
|
|
4585
|
+
Serve_StartPostAdditionalParam: {
|
|
4586
|
+
[key: string]: unknown;
|
|
4587
|
+
};
|
|
3580
4588
|
/** @description Identifier of the running serve instance returned by `serve/start`. */
|
|
3581
4589
|
Serve_StopPostIdParam: string;
|
|
3582
4590
|
/** @description Optional VFS identifier to target; required when more than one VFS is active. */
|
|
3583
4591
|
Vfs_ForgetPostFsParam: string;
|
|
3584
4592
|
/** @description Additional arbitrary parameters allowed. */
|
|
3585
|
-
Vfs_ForgetPostAdditionalParam:
|
|
4593
|
+
Vfs_ForgetPostAdditionalParam: {
|
|
4594
|
+
[key: string]: unknown;
|
|
4595
|
+
};
|
|
3586
4596
|
/** @description Optional VFS identifier; omit to list all active VFS instances. */
|
|
3587
4597
|
Vfs_ListPostFsParam: string;
|
|
3588
4598
|
/** @description Optional VFS identifier whose poll interval should be queried or modified. */
|
|
@@ -3606,7 +4616,9 @@ export interface components {
|
|
|
3606
4616
|
/** @description Set to true to refresh entire directory trees. */
|
|
3607
4617
|
Vfs_RefreshPostRecursiveParam: boolean;
|
|
3608
4618
|
/** @description Additional arbitrary parameters allowed. */
|
|
3609
|
-
Vfs_RefreshPostAdditionalParam:
|
|
4619
|
+
Vfs_RefreshPostAdditionalParam: {
|
|
4620
|
+
[key: string]: unknown;
|
|
4621
|
+
};
|
|
3610
4622
|
/** @description Optional VFS identifier whose statistics should be returned. */
|
|
3611
4623
|
Vfs_StatsPostFsParam: string;
|
|
3612
4624
|
/** @description Repository URL of the plugin to install. */
|
|
@@ -3638,7 +4650,11 @@ export interface operations {
|
|
|
3638
4650
|
path?: never;
|
|
3639
4651
|
cookie?: never;
|
|
3640
4652
|
};
|
|
3641
|
-
requestBody?:
|
|
4653
|
+
requestBody?: {
|
|
4654
|
+
content: {
|
|
4655
|
+
"application/json": components["schemas"]["RcNoopRequest"];
|
|
4656
|
+
};
|
|
4657
|
+
};
|
|
3642
4658
|
responses: {
|
|
3643
4659
|
200: components["responses"]["RcNoopResponse"];
|
|
3644
4660
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3647,9 +4663,9 @@ export interface operations {
|
|
|
3647
4663
|
};
|
|
3648
4664
|
operationsCleanup: {
|
|
3649
4665
|
parameters: {
|
|
3650
|
-
query
|
|
4666
|
+
query?: {
|
|
3651
4667
|
/** @description Remote name or path to clean up, for example `drive:`. */
|
|
3652
|
-
fs
|
|
4668
|
+
fs?: components["parameters"]["Operations_CleanupPostFsParam"];
|
|
3653
4669
|
/** @description Assign the request to a custom stats group. */
|
|
3654
4670
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
3655
4671
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -3659,7 +4675,11 @@ export interface operations {
|
|
|
3659
4675
|
path?: never;
|
|
3660
4676
|
cookie?: never;
|
|
3661
4677
|
};
|
|
3662
|
-
requestBody?:
|
|
4678
|
+
requestBody?: {
|
|
4679
|
+
content: {
|
|
4680
|
+
"application/json": components["schemas"]["OperationsCleanupRequest"];
|
|
4681
|
+
};
|
|
4682
|
+
};
|
|
3663
4683
|
responses: {
|
|
3664
4684
|
200: components["responses"]["EmptyObjectResponse"];
|
|
3665
4685
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3668,15 +4688,15 @@ export interface operations {
|
|
|
3668
4688
|
};
|
|
3669
4689
|
operationsCopyfile: {
|
|
3670
4690
|
parameters: {
|
|
3671
|
-
query
|
|
4691
|
+
query?: {
|
|
3672
4692
|
/** @description Source remote name or path, such as `drive:` or `/` for the local filesystem. */
|
|
3673
|
-
srcFs
|
|
4693
|
+
srcFs?: components["parameters"]["Operations_CopyfilePostSrcFsParam"];
|
|
3674
4694
|
/** @description Path to the source object within `srcFs`, for example `dir/file.txt`. */
|
|
3675
|
-
srcRemote
|
|
4695
|
+
srcRemote?: components["parameters"]["Operations_CopyfilePostSrcRemoteParam"];
|
|
3676
4696
|
/** @description Destination remote name or path, such as `drive2:` or `/` for local filesystem. */
|
|
3677
|
-
dstFs
|
|
4697
|
+
dstFs?: components["parameters"]["Operations_CopyfilePostDstFsParam"];
|
|
3678
4698
|
/** @description Target path within `dstFs` where the file should be written. */
|
|
3679
|
-
dstRemote
|
|
4699
|
+
dstRemote?: components["parameters"]["Operations_CopyfilePostDstRemoteParam"];
|
|
3680
4700
|
/** @description Assign the request to a custom stats group. */
|
|
3681
4701
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
3682
4702
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -3686,7 +4706,11 @@ export interface operations {
|
|
|
3686
4706
|
path?: never;
|
|
3687
4707
|
cookie?: never;
|
|
3688
4708
|
};
|
|
3689
|
-
requestBody?:
|
|
4709
|
+
requestBody?: {
|
|
4710
|
+
content: {
|
|
4711
|
+
"application/json": components["schemas"]["OperationsCopyfileRequest"];
|
|
4712
|
+
};
|
|
4713
|
+
};
|
|
3690
4714
|
responses: {
|
|
3691
4715
|
200: components["responses"]["EmptyObjectResponse"];
|
|
3692
4716
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3695,13 +4719,13 @@ export interface operations {
|
|
|
3695
4719
|
};
|
|
3696
4720
|
operationsCopyurl: {
|
|
3697
4721
|
parameters: {
|
|
3698
|
-
query
|
|
4722
|
+
query?: {
|
|
3699
4723
|
/** @description Remote name or path that will receive the downloaded file, e.g. `drive:`. */
|
|
3700
|
-
fs
|
|
4724
|
+
fs?: components["parameters"]["Operations_CopyurlPostFsParam"];
|
|
3701
4725
|
/** @description Destination path within `fs` where the fetched object will be stored. */
|
|
3702
|
-
remote
|
|
4726
|
+
remote?: components["parameters"]["Operations_CopyurlPostRemoteParam"];
|
|
3703
4727
|
/** @description Source URL to fetch the object from. */
|
|
3704
|
-
url
|
|
4728
|
+
url?: components["parameters"]["Operations_CopyurlPostUrlParam"];
|
|
3705
4729
|
/** @description Set to true to derive the destination filename from the URL. */
|
|
3706
4730
|
autoFilename?: components["parameters"]["Operations_CopyurlPostAutoFilenameParam"];
|
|
3707
4731
|
/** @description Assign the request to a custom stats group. */
|
|
@@ -3713,7 +4737,11 @@ export interface operations {
|
|
|
3713
4737
|
path?: never;
|
|
3714
4738
|
cookie?: never;
|
|
3715
4739
|
};
|
|
3716
|
-
requestBody?:
|
|
4740
|
+
requestBody?: {
|
|
4741
|
+
content: {
|
|
4742
|
+
"application/json": components["schemas"]["OperationsCopyurlRequest"];
|
|
4743
|
+
};
|
|
4744
|
+
};
|
|
3717
4745
|
responses: {
|
|
3718
4746
|
200: components["responses"]["EmptyObjectResponse"];
|
|
3719
4747
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3722,9 +4750,9 @@ export interface operations {
|
|
|
3722
4750
|
};
|
|
3723
4751
|
operationsDelete: {
|
|
3724
4752
|
parameters: {
|
|
3725
|
-
query
|
|
4753
|
+
query?: {
|
|
3726
4754
|
/** @description Remote name or path whose contents should be removed. */
|
|
3727
|
-
fs
|
|
4755
|
+
fs?: components["parameters"]["Operations_DeletePostFsParam"];
|
|
3728
4756
|
/** @description JSON encoded config overrides applied for this call only. */
|
|
3729
4757
|
_config?: components["parameters"]["GlobalConfigParam"];
|
|
3730
4758
|
/** @description JSON encoded filter overrides applied for this call only. */
|
|
@@ -3738,7 +4766,11 @@ export interface operations {
|
|
|
3738
4766
|
path?: never;
|
|
3739
4767
|
cookie?: never;
|
|
3740
4768
|
};
|
|
3741
|
-
requestBody?:
|
|
4769
|
+
requestBody?: {
|
|
4770
|
+
content: {
|
|
4771
|
+
"application/json": components["schemas"]["OperationsDeleteRequest"];
|
|
4772
|
+
};
|
|
4773
|
+
};
|
|
3742
4774
|
responses: {
|
|
3743
4775
|
200: components["responses"]["EmptyObjectResponse"];
|
|
3744
4776
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3747,11 +4779,11 @@ export interface operations {
|
|
|
3747
4779
|
};
|
|
3748
4780
|
operationsDeletefile: {
|
|
3749
4781
|
parameters: {
|
|
3750
|
-
query
|
|
4782
|
+
query?: {
|
|
3751
4783
|
/** @description Remote name or path that contains the file to delete. */
|
|
3752
|
-
fs
|
|
4784
|
+
fs?: components["parameters"]["Operations_DeletefilePostFsParam"];
|
|
3753
4785
|
/** @description Exact path to the file within `fs` that should be deleted. */
|
|
3754
|
-
remote
|
|
4786
|
+
remote?: components["parameters"]["Operations_DeletefilePostRemoteParam"];
|
|
3755
4787
|
/** @description Assign the request to a custom stats group. */
|
|
3756
4788
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
3757
4789
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -3761,7 +4793,11 @@ export interface operations {
|
|
|
3761
4793
|
path?: never;
|
|
3762
4794
|
cookie?: never;
|
|
3763
4795
|
};
|
|
3764
|
-
requestBody?:
|
|
4796
|
+
requestBody?: {
|
|
4797
|
+
content: {
|
|
4798
|
+
"application/json": components["schemas"]["OperationsDeletefileRequest"];
|
|
4799
|
+
};
|
|
4800
|
+
};
|
|
3765
4801
|
responses: {
|
|
3766
4802
|
200: components["responses"]["EmptyObjectResponse"];
|
|
3767
4803
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3770,9 +4806,9 @@ export interface operations {
|
|
|
3770
4806
|
};
|
|
3771
4807
|
operationsFsinfo: {
|
|
3772
4808
|
parameters: {
|
|
3773
|
-
query
|
|
4809
|
+
query?: {
|
|
3774
4810
|
/** @description Remote name or path to inspect, e.g. `drive:`. */
|
|
3775
|
-
fs
|
|
4811
|
+
fs?: components["parameters"]["Operations_FsinfoPostFsParam"];
|
|
3776
4812
|
/** @description Assign the request to a custom stats group. */
|
|
3777
4813
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
3778
4814
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -3782,7 +4818,11 @@ export interface operations {
|
|
|
3782
4818
|
path?: never;
|
|
3783
4819
|
cookie?: never;
|
|
3784
4820
|
};
|
|
3785
|
-
requestBody?:
|
|
4821
|
+
requestBody?: {
|
|
4822
|
+
content: {
|
|
4823
|
+
"application/json": components["schemas"]["OperationsFsinfoRequest"];
|
|
4824
|
+
};
|
|
4825
|
+
};
|
|
3786
4826
|
responses: {
|
|
3787
4827
|
200: components["responses"]["OperationsFsinfoResponse"];
|
|
3788
4828
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3791,11 +4831,11 @@ export interface operations {
|
|
|
3791
4831
|
};
|
|
3792
4832
|
operationsHashsum: {
|
|
3793
4833
|
parameters: {
|
|
3794
|
-
query
|
|
4834
|
+
query?: {
|
|
3795
4835
|
/** @description Remote name or path to hash, such as `drive:` or `/`. */
|
|
3796
|
-
fs
|
|
4836
|
+
fs?: components["parameters"]["Operations_HashsumPostFsParam"];
|
|
3797
4837
|
/** @description Hash algorithm to use, e.g. `md5`, `sha1`, or another supported name. */
|
|
3798
|
-
hashType
|
|
4838
|
+
hashType?: components["parameters"]["Operations_HashsumPostHashTypeParam"];
|
|
3799
4839
|
/** @description Set to true to force reading the data instead of using remote checksums. */
|
|
3800
4840
|
download?: components["parameters"]["Operations_HashsumPostDownloadParam"];
|
|
3801
4841
|
/** @description Set to true to emit hash values in base64 rather than hexadecimal. */
|
|
@@ -3809,7 +4849,11 @@ export interface operations {
|
|
|
3809
4849
|
path?: never;
|
|
3810
4850
|
cookie?: never;
|
|
3811
4851
|
};
|
|
3812
|
-
requestBody?:
|
|
4852
|
+
requestBody?: {
|
|
4853
|
+
content: {
|
|
4854
|
+
"application/json": components["schemas"]["OperationsHashsumRequest"];
|
|
4855
|
+
};
|
|
4856
|
+
};
|
|
3813
4857
|
responses: {
|
|
3814
4858
|
200: components["responses"]["OperationsHashsumResponse"];
|
|
3815
4859
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3818,13 +4862,13 @@ export interface operations {
|
|
|
3818
4862
|
};
|
|
3819
4863
|
operationsHashsumfile: {
|
|
3820
4864
|
parameters: {
|
|
3821
|
-
query
|
|
4865
|
+
query?: {
|
|
3822
4866
|
/** @description Remote name or path containing the file to hash. */
|
|
3823
|
-
fs
|
|
4867
|
+
fs?: components["parameters"]["Operations_HashsumfilePostFsParam"];
|
|
3824
4868
|
/** @description Path to the specific file within `fs` to hash. */
|
|
3825
|
-
remote
|
|
4869
|
+
remote?: components["parameters"]["Operations_HashsumfilePostRemoteParam"];
|
|
3826
4870
|
/** @description Hash algorithm to use, e.g. `md5`, `sha1`, or another supported name. */
|
|
3827
|
-
hashType
|
|
4871
|
+
hashType?: components["parameters"]["Operations_HashsumfilePostHashTypeParam"];
|
|
3828
4872
|
/** @description Set to true to force reading the data instead of using remote checksums. */
|
|
3829
4873
|
download?: components["parameters"]["Operations_HashsumfilePostDownloadParam"];
|
|
3830
4874
|
/** @description Set to true to emit the hash value in base64 rather than hexadecimal. */
|
|
@@ -3838,7 +4882,11 @@ export interface operations {
|
|
|
3838
4882
|
path?: never;
|
|
3839
4883
|
cookie?: never;
|
|
3840
4884
|
};
|
|
3841
|
-
requestBody?:
|
|
4885
|
+
requestBody?: {
|
|
4886
|
+
content: {
|
|
4887
|
+
"application/json": components["schemas"]["OperationsHashsumfileRequest"];
|
|
4888
|
+
};
|
|
4889
|
+
};
|
|
3842
4890
|
responses: {
|
|
3843
4891
|
200: components["responses"]["OperationsHashsumfileResponse"];
|
|
3844
4892
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3847,15 +4895,15 @@ export interface operations {
|
|
|
3847
4895
|
};
|
|
3848
4896
|
operationsMovefile: {
|
|
3849
4897
|
parameters: {
|
|
3850
|
-
query
|
|
4898
|
+
query?: {
|
|
3851
4899
|
/** @description Source remote name or path containing the file to move. */
|
|
3852
|
-
srcFs
|
|
4900
|
+
srcFs?: components["parameters"]["Operations_MovefilePostSrcFsParam"];
|
|
3853
4901
|
/** @description Path to the source object within `srcFs`. */
|
|
3854
|
-
srcRemote
|
|
4902
|
+
srcRemote?: components["parameters"]["Operations_MovefilePostSrcRemoteParam"];
|
|
3855
4903
|
/** @description Destination remote name or path where the file will be moved. */
|
|
3856
|
-
dstFs
|
|
4904
|
+
dstFs?: components["parameters"]["Operations_MovefilePostDstFsParam"];
|
|
3857
4905
|
/** @description Destination path within `dstFs` for the moved object. */
|
|
3858
|
-
dstRemote
|
|
4906
|
+
dstRemote?: components["parameters"]["Operations_MovefilePostDstRemoteParam"];
|
|
3859
4907
|
/** @description Assign the request to a custom stats group. */
|
|
3860
4908
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
3861
4909
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -3865,7 +4913,11 @@ export interface operations {
|
|
|
3865
4913
|
path?: never;
|
|
3866
4914
|
cookie?: never;
|
|
3867
4915
|
};
|
|
3868
|
-
requestBody?:
|
|
4916
|
+
requestBody?: {
|
|
4917
|
+
content: {
|
|
4918
|
+
"application/json": components["schemas"]["OperationsMovefileRequest"];
|
|
4919
|
+
};
|
|
4920
|
+
};
|
|
3869
4921
|
responses: {
|
|
3870
4922
|
200: components["responses"]["EmptyObjectResponse"];
|
|
3871
4923
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3874,11 +4926,11 @@ export interface operations {
|
|
|
3874
4926
|
};
|
|
3875
4927
|
operationsPubliclink: {
|
|
3876
4928
|
parameters: {
|
|
3877
|
-
query
|
|
4929
|
+
query?: {
|
|
3878
4930
|
/** @description Remote name or path hosting the object for which to manage a public link. */
|
|
3879
|
-
fs
|
|
4931
|
+
fs?: components["parameters"]["Operations_PubliclinkPostFsParam"];
|
|
3880
4932
|
/** @description Path within `fs` to the object for which to create or remove a public link. */
|
|
3881
|
-
remote
|
|
4933
|
+
remote?: components["parameters"]["Operations_PubliclinkPostRemoteParam"];
|
|
3882
4934
|
/** @description Set to true to remove an existing public link instead of creating one. */
|
|
3883
4935
|
unlink?: components["parameters"]["Operations_PubliclinkPostUnlinkParam"];
|
|
3884
4936
|
/** @description Optional expiration time for the public link, formatted as supported by the backend. */
|
|
@@ -3892,7 +4944,11 @@ export interface operations {
|
|
|
3892
4944
|
path?: never;
|
|
3893
4945
|
cookie?: never;
|
|
3894
4946
|
};
|
|
3895
|
-
requestBody?:
|
|
4947
|
+
requestBody?: {
|
|
4948
|
+
content: {
|
|
4949
|
+
"application/json": components["schemas"]["OperationsPubliclinkRequest"];
|
|
4950
|
+
};
|
|
4951
|
+
};
|
|
3896
4952
|
responses: {
|
|
3897
4953
|
200: components["responses"]["OperationsPubliclinkResponse"];
|
|
3898
4954
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3901,11 +4957,11 @@ export interface operations {
|
|
|
3901
4957
|
};
|
|
3902
4958
|
operationsRmdirs: {
|
|
3903
4959
|
parameters: {
|
|
3904
|
-
query
|
|
4960
|
+
query?: {
|
|
3905
4961
|
/** @description Remote name or path to scan for empty directories. */
|
|
3906
|
-
fs
|
|
4962
|
+
fs?: components["parameters"]["Operations_RmdirsPostFsParam"];
|
|
3907
4963
|
/** @description Path within `fs` whose empty subdirectories should be removed. */
|
|
3908
|
-
remote
|
|
4964
|
+
remote?: components["parameters"]["Operations_RmdirsPostRemoteParam"];
|
|
3909
4965
|
/** @description Set to true to preserve the top-level directory even if empty. */
|
|
3910
4966
|
leaveRoot?: components["parameters"]["Operations_RmdirsPostLeaveRootParam"];
|
|
3911
4967
|
/** @description Assign the request to a custom stats group. */
|
|
@@ -3917,7 +4973,11 @@ export interface operations {
|
|
|
3917
4973
|
path?: never;
|
|
3918
4974
|
cookie?: never;
|
|
3919
4975
|
};
|
|
3920
|
-
requestBody?:
|
|
4976
|
+
requestBody?: {
|
|
4977
|
+
content: {
|
|
4978
|
+
"application/json": components["schemas"]["OperationsRmdirsRequest"];
|
|
4979
|
+
};
|
|
4980
|
+
};
|
|
3921
4981
|
responses: {
|
|
3922
4982
|
200: components["responses"]["EmptyObjectResponse"];
|
|
3923
4983
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3926,9 +4986,9 @@ export interface operations {
|
|
|
3926
4986
|
};
|
|
3927
4987
|
operationsSettier: {
|
|
3928
4988
|
parameters: {
|
|
3929
|
-
query
|
|
4989
|
+
query?: {
|
|
3930
4990
|
/** @description Remote name or path whose storage class tier should be changed. */
|
|
3931
|
-
fs
|
|
4991
|
+
fs?: components["parameters"]["Operations_SettierPostFsParam"];
|
|
3932
4992
|
/** @description Assign the request to a custom stats group. */
|
|
3933
4993
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
3934
4994
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -3938,7 +4998,11 @@ export interface operations {
|
|
|
3938
4998
|
path?: never;
|
|
3939
4999
|
cookie?: never;
|
|
3940
5000
|
};
|
|
3941
|
-
requestBody?:
|
|
5001
|
+
requestBody?: {
|
|
5002
|
+
content: {
|
|
5003
|
+
"application/json": components["schemas"]["OperationsSettierRequest"];
|
|
5004
|
+
};
|
|
5005
|
+
};
|
|
3942
5006
|
responses: {
|
|
3943
5007
|
200: components["responses"]["EmptyObjectResponse"];
|
|
3944
5008
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3947,11 +5011,11 @@ export interface operations {
|
|
|
3947
5011
|
};
|
|
3948
5012
|
operationsSettierfile: {
|
|
3949
5013
|
parameters: {
|
|
3950
|
-
query
|
|
5014
|
+
query?: {
|
|
3951
5015
|
/** @description Remote name or path that contains the object whose tier should change. */
|
|
3952
|
-
fs
|
|
5016
|
+
fs?: components["parameters"]["Operations_SettierfilePostFsParam"];
|
|
3953
5017
|
/** @description Path within `fs` to the object whose storage class tier should be updated. */
|
|
3954
|
-
remote
|
|
5018
|
+
remote?: components["parameters"]["Operations_SettierfilePostRemoteParam"];
|
|
3955
5019
|
/** @description Assign the request to a custom stats group. */
|
|
3956
5020
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
3957
5021
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -3961,7 +5025,11 @@ export interface operations {
|
|
|
3961
5025
|
path?: never;
|
|
3962
5026
|
cookie?: never;
|
|
3963
5027
|
};
|
|
3964
|
-
requestBody?:
|
|
5028
|
+
requestBody?: {
|
|
5029
|
+
content: {
|
|
5030
|
+
"application/json": components["schemas"]["OperationsSettierfileRequest"];
|
|
5031
|
+
};
|
|
5032
|
+
};
|
|
3965
5033
|
responses: {
|
|
3966
5034
|
200: components["responses"]["EmptyObjectResponse"];
|
|
3967
5035
|
"4XX": components["responses"]["RcError"];
|
|
@@ -3970,9 +5038,9 @@ export interface operations {
|
|
|
3970
5038
|
};
|
|
3971
5039
|
operationsSize: {
|
|
3972
5040
|
parameters: {
|
|
3973
|
-
query
|
|
5041
|
+
query?: {
|
|
3974
5042
|
/** @description Remote name or path to measure aggregate size information for. */
|
|
3975
|
-
fs
|
|
5043
|
+
fs?: components["parameters"]["Operations_SizePostFsParam"];
|
|
3976
5044
|
/** @description Assign the request to a custom stats group. */
|
|
3977
5045
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
3978
5046
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -3982,7 +5050,11 @@ export interface operations {
|
|
|
3982
5050
|
path?: never;
|
|
3983
5051
|
cookie?: never;
|
|
3984
5052
|
};
|
|
3985
|
-
requestBody?:
|
|
5053
|
+
requestBody?: {
|
|
5054
|
+
content: {
|
|
5055
|
+
"application/json": components["schemas"]["OperationsSizeRequest"];
|
|
5056
|
+
};
|
|
5057
|
+
};
|
|
3986
5058
|
responses: {
|
|
3987
5059
|
200: components["responses"]["OperationsSizeResponse"];
|
|
3988
5060
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4003,7 +5075,11 @@ export interface operations {
|
|
|
4003
5075
|
path?: never;
|
|
4004
5076
|
cookie?: never;
|
|
4005
5077
|
};
|
|
4006
|
-
requestBody?:
|
|
5078
|
+
requestBody?: {
|
|
5079
|
+
content: {
|
|
5080
|
+
"application/json": components["schemas"]["CoreBwlimitRequest"];
|
|
5081
|
+
};
|
|
5082
|
+
};
|
|
4007
5083
|
responses: {
|
|
4008
5084
|
200: components["responses"]["CoreBwlimitResponse"];
|
|
4009
5085
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4012,9 +5088,9 @@ export interface operations {
|
|
|
4012
5088
|
};
|
|
4013
5089
|
coreCommand: {
|
|
4014
5090
|
parameters: {
|
|
4015
|
-
query
|
|
5091
|
+
query?: {
|
|
4016
5092
|
/** @description Name of the rclone command to execute, for example `ls` or `lsf`. */
|
|
4017
|
-
command
|
|
5093
|
+
command?: components["parameters"]["Core_CommandPostCommandParam"];
|
|
4018
5094
|
/** @description Optional positional arguments for the command. Repeat to supply multiple values. */
|
|
4019
5095
|
arg?: components["parameters"]["Core_CommandPostArgParam"];
|
|
4020
5096
|
/** @description Optional command options encoded as a JSON string. */
|
|
@@ -4030,7 +5106,11 @@ export interface operations {
|
|
|
4030
5106
|
path?: never;
|
|
4031
5107
|
cookie?: never;
|
|
4032
5108
|
};
|
|
4033
|
-
requestBody?:
|
|
5109
|
+
requestBody?: {
|
|
5110
|
+
content: {
|
|
5111
|
+
"application/json": components["schemas"]["CoreCommandRequest"];
|
|
5112
|
+
};
|
|
5113
|
+
};
|
|
4034
5114
|
responses: {
|
|
4035
5115
|
200: components["responses"]["CoreCommandResponse"];
|
|
4036
5116
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4051,7 +5131,11 @@ export interface operations {
|
|
|
4051
5131
|
path?: never;
|
|
4052
5132
|
cookie?: never;
|
|
4053
5133
|
};
|
|
4054
|
-
requestBody?:
|
|
5134
|
+
requestBody?: {
|
|
5135
|
+
content: {
|
|
5136
|
+
"application/json": components["schemas"]["CoreDuRequest"];
|
|
5137
|
+
};
|
|
5138
|
+
};
|
|
4055
5139
|
responses: {
|
|
4056
5140
|
200: components["responses"]["CoreDuResponse"];
|
|
4057
5141
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4070,7 +5154,11 @@ export interface operations {
|
|
|
4070
5154
|
path?: never;
|
|
4071
5155
|
cookie?: never;
|
|
4072
5156
|
};
|
|
4073
|
-
requestBody?:
|
|
5157
|
+
requestBody?: {
|
|
5158
|
+
content: {
|
|
5159
|
+
"application/json": components["schemas"]["CoreGcRequest"];
|
|
5160
|
+
};
|
|
5161
|
+
};
|
|
4074
5162
|
responses: {
|
|
4075
5163
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4076
5164
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4089,7 +5177,11 @@ export interface operations {
|
|
|
4089
5177
|
path?: never;
|
|
4090
5178
|
cookie?: never;
|
|
4091
5179
|
};
|
|
4092
|
-
requestBody?:
|
|
5180
|
+
requestBody?: {
|
|
5181
|
+
content: {
|
|
5182
|
+
"application/json": components["schemas"]["CoreGroupListRequest"];
|
|
5183
|
+
};
|
|
5184
|
+
};
|
|
4093
5185
|
responses: {
|
|
4094
5186
|
/** @description Names of stats groups. */
|
|
4095
5187
|
200: {
|
|
@@ -4118,7 +5210,11 @@ export interface operations {
|
|
|
4118
5210
|
path?: never;
|
|
4119
5211
|
cookie?: never;
|
|
4120
5212
|
};
|
|
4121
|
-
requestBody?:
|
|
5213
|
+
requestBody?: {
|
|
5214
|
+
content: {
|
|
5215
|
+
"application/json": components["schemas"]["CoreMemstatsRequest"];
|
|
5216
|
+
};
|
|
5217
|
+
};
|
|
4122
5218
|
responses: {
|
|
4123
5219
|
/** @description Memory statistics fields from the Go runtime. */
|
|
4124
5220
|
200: {
|
|
@@ -4137,9 +5233,9 @@ export interface operations {
|
|
|
4137
5233
|
};
|
|
4138
5234
|
coreObscure: {
|
|
4139
5235
|
parameters: {
|
|
4140
|
-
query
|
|
5236
|
+
query?: {
|
|
4141
5237
|
/** @description Plain-text string to obscure for storage in the config file. */
|
|
4142
|
-
clear
|
|
5238
|
+
clear?: components["parameters"]["Core_ObscurePostClearParam"];
|
|
4143
5239
|
/** @description Assign the request to a custom stats group. */
|
|
4144
5240
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4145
5241
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4149,7 +5245,11 @@ export interface operations {
|
|
|
4149
5245
|
path?: never;
|
|
4150
5246
|
cookie?: never;
|
|
4151
5247
|
};
|
|
4152
|
-
requestBody?:
|
|
5248
|
+
requestBody?: {
|
|
5249
|
+
content: {
|
|
5250
|
+
"application/json": components["schemas"]["CoreObscureRequest"];
|
|
5251
|
+
};
|
|
5252
|
+
};
|
|
4153
5253
|
responses: {
|
|
4154
5254
|
/** @description Obscured string result. */
|
|
4155
5255
|
200: {
|
|
@@ -4178,7 +5278,11 @@ export interface operations {
|
|
|
4178
5278
|
path?: never;
|
|
4179
5279
|
cookie?: never;
|
|
4180
5280
|
};
|
|
4181
|
-
requestBody?:
|
|
5281
|
+
requestBody?: {
|
|
5282
|
+
content: {
|
|
5283
|
+
"application/json": components["schemas"]["CorePidRequest"];
|
|
5284
|
+
};
|
|
5285
|
+
};
|
|
4182
5286
|
responses: {
|
|
4183
5287
|
/** @description Process ID payload. */
|
|
4184
5288
|
200: {
|
|
@@ -4209,7 +5313,11 @@ export interface operations {
|
|
|
4209
5313
|
path?: never;
|
|
4210
5314
|
cookie?: never;
|
|
4211
5315
|
};
|
|
4212
|
-
requestBody?:
|
|
5316
|
+
requestBody?: {
|
|
5317
|
+
content: {
|
|
5318
|
+
"application/json": components["schemas"]["CoreQuitRequest"];
|
|
5319
|
+
};
|
|
5320
|
+
};
|
|
4213
5321
|
responses: {
|
|
4214
5322
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4215
5323
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4218,9 +5326,9 @@ export interface operations {
|
|
|
4218
5326
|
};
|
|
4219
5327
|
coreStatsDelete: {
|
|
4220
5328
|
parameters: {
|
|
4221
|
-
query
|
|
5329
|
+
query?: {
|
|
4222
5330
|
/** @description Stats group identifier to remove. */
|
|
4223
|
-
group
|
|
5331
|
+
group?: components["parameters"]["Core_StatsDeletePostGroupParam"];
|
|
4224
5332
|
/** @description Assign the request to a custom stats group. */
|
|
4225
5333
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4226
5334
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4230,7 +5338,11 @@ export interface operations {
|
|
|
4230
5338
|
path?: never;
|
|
4231
5339
|
cookie?: never;
|
|
4232
5340
|
};
|
|
4233
|
-
requestBody?:
|
|
5341
|
+
requestBody?: {
|
|
5342
|
+
content: {
|
|
5343
|
+
"application/json": components["schemas"]["CoreStatsDeleteRequest"];
|
|
5344
|
+
};
|
|
5345
|
+
};
|
|
4234
5346
|
responses: {
|
|
4235
5347
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4236
5348
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4251,7 +5363,11 @@ export interface operations {
|
|
|
4251
5363
|
path?: never;
|
|
4252
5364
|
cookie?: never;
|
|
4253
5365
|
};
|
|
4254
|
-
requestBody?:
|
|
5366
|
+
requestBody?: {
|
|
5367
|
+
content: {
|
|
5368
|
+
"application/json": components["schemas"]["CoreStatsResetRequest"];
|
|
5369
|
+
};
|
|
5370
|
+
};
|
|
4255
5371
|
responses: {
|
|
4256
5372
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4257
5373
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4272,7 +5388,11 @@ export interface operations {
|
|
|
4272
5388
|
path?: never;
|
|
4273
5389
|
cookie?: never;
|
|
4274
5390
|
};
|
|
4275
|
-
requestBody?:
|
|
5391
|
+
requestBody?: {
|
|
5392
|
+
content: {
|
|
5393
|
+
"application/json": components["schemas"]["CoreTransferredRequest"];
|
|
5394
|
+
};
|
|
5395
|
+
};
|
|
4276
5396
|
responses: {
|
|
4277
5397
|
200: components["responses"]["CoreTransferredResponse"];
|
|
4278
5398
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4281,9 +5401,9 @@ export interface operations {
|
|
|
4281
5401
|
};
|
|
4282
5402
|
debugSetBlockProfileRate: {
|
|
4283
5403
|
parameters: {
|
|
4284
|
-
query
|
|
5404
|
+
query?: {
|
|
4285
5405
|
/** @description Sampling interval in nanoseconds for blocking profile collection; use 1 to capture all events. */
|
|
4286
|
-
rate
|
|
5406
|
+
rate?: components["parameters"]["Debug_SetBlockProfileRatePostRateParam"];
|
|
4287
5407
|
/** @description Assign the request to a custom stats group. */
|
|
4288
5408
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4289
5409
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4293,7 +5413,11 @@ export interface operations {
|
|
|
4293
5413
|
path?: never;
|
|
4294
5414
|
cookie?: never;
|
|
4295
5415
|
};
|
|
4296
|
-
requestBody?:
|
|
5416
|
+
requestBody?: {
|
|
5417
|
+
content: {
|
|
5418
|
+
"application/json": components["schemas"]["DebugSetBlockProfileRateRequest"];
|
|
5419
|
+
};
|
|
5420
|
+
};
|
|
4297
5421
|
responses: {
|
|
4298
5422
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4299
5423
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4302,9 +5426,9 @@ export interface operations {
|
|
|
4302
5426
|
};
|
|
4303
5427
|
debugSetGcPercent: {
|
|
4304
5428
|
parameters: {
|
|
4305
|
-
query
|
|
5429
|
+
query?: {
|
|
4306
5430
|
/** @description Target percentage of newly allocated data to trigger garbage collection. */
|
|
4307
|
-
"gc-percent"
|
|
5431
|
+
"gc-percent"?: components["parameters"]["Debug_SetGcPercentPostGcPercentParam"];
|
|
4308
5432
|
/** @description Assign the request to a custom stats group. */
|
|
4309
5433
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4310
5434
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4314,7 +5438,11 @@ export interface operations {
|
|
|
4314
5438
|
path?: never;
|
|
4315
5439
|
cookie?: never;
|
|
4316
5440
|
};
|
|
4317
|
-
requestBody?:
|
|
5441
|
+
requestBody?: {
|
|
5442
|
+
content: {
|
|
5443
|
+
"application/json": components["schemas"]["DebugSetGcPercentRequest"];
|
|
5444
|
+
};
|
|
5445
|
+
};
|
|
4318
5446
|
responses: {
|
|
4319
5447
|
200: components["responses"]["DebugSetGcPercentResponse"];
|
|
4320
5448
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4323,9 +5451,9 @@ export interface operations {
|
|
|
4323
5451
|
};
|
|
4324
5452
|
debugSetMutexProfileFraction: {
|
|
4325
5453
|
parameters: {
|
|
4326
|
-
query
|
|
5454
|
+
query?: {
|
|
4327
5455
|
/** @description Sampling fraction for mutex contention profiling; set to 0 to disable. */
|
|
4328
|
-
rate
|
|
5456
|
+
rate?: components["parameters"]["Debug_SetMutexProfileFractionPostRateParam"];
|
|
4329
5457
|
/** @description Assign the request to a custom stats group. */
|
|
4330
5458
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4331
5459
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4335,7 +5463,11 @@ export interface operations {
|
|
|
4335
5463
|
path?: never;
|
|
4336
5464
|
cookie?: never;
|
|
4337
5465
|
};
|
|
4338
|
-
requestBody?:
|
|
5466
|
+
requestBody?: {
|
|
5467
|
+
content: {
|
|
5468
|
+
"application/json": components["schemas"]["DebugSetMutexProfileFractionRequest"];
|
|
5469
|
+
};
|
|
5470
|
+
};
|
|
4339
5471
|
responses: {
|
|
4340
5472
|
200: components["responses"]["DebugSetMutexProfileFractionResponse"];
|
|
4341
5473
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4344,9 +5476,9 @@ export interface operations {
|
|
|
4344
5476
|
};
|
|
4345
5477
|
debugSetSoftMemoryLimit: {
|
|
4346
5478
|
parameters: {
|
|
4347
|
-
query
|
|
5479
|
+
query?: {
|
|
4348
5480
|
/** @description Soft memory limit for the Go runtime in bytes. */
|
|
4349
|
-
"mem-limit"
|
|
5481
|
+
"mem-limit"?: components["parameters"]["Debug_SetSoftMemoryLimitPostMemLimitParam"];
|
|
4350
5482
|
/** @description Assign the request to a custom stats group. */
|
|
4351
5483
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4352
5484
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4356,7 +5488,11 @@ export interface operations {
|
|
|
4356
5488
|
path?: never;
|
|
4357
5489
|
cookie?: never;
|
|
4358
5490
|
};
|
|
4359
|
-
requestBody?:
|
|
5491
|
+
requestBody?: {
|
|
5492
|
+
content: {
|
|
5493
|
+
"application/json": components["schemas"]["DebugSetSoftMemoryLimitRequest"];
|
|
5494
|
+
};
|
|
5495
|
+
};
|
|
4360
5496
|
responses: {
|
|
4361
5497
|
200: components["responses"]["DebugSetSoftMemoryLimitResponse"];
|
|
4362
5498
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4375,7 +5511,11 @@ export interface operations {
|
|
|
4375
5511
|
path?: never;
|
|
4376
5512
|
cookie?: never;
|
|
4377
5513
|
};
|
|
4378
|
-
requestBody?:
|
|
5514
|
+
requestBody?: {
|
|
5515
|
+
content: {
|
|
5516
|
+
"application/json": components["schemas"]["FscacheClearRequest"];
|
|
5517
|
+
};
|
|
5518
|
+
};
|
|
4379
5519
|
responses: {
|
|
4380
5520
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4381
5521
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4394,7 +5534,11 @@ export interface operations {
|
|
|
4394
5534
|
path?: never;
|
|
4395
5535
|
cookie?: never;
|
|
4396
5536
|
};
|
|
4397
|
-
requestBody?:
|
|
5537
|
+
requestBody?: {
|
|
5538
|
+
content: {
|
|
5539
|
+
"application/json": components["schemas"]["FscacheEntriesRequest"];
|
|
5540
|
+
};
|
|
5541
|
+
};
|
|
4398
5542
|
responses: {
|
|
4399
5543
|
200: components["responses"]["FscacheEntriesResponse"];
|
|
4400
5544
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4413,7 +5557,11 @@ export interface operations {
|
|
|
4413
5557
|
path?: never;
|
|
4414
5558
|
cookie?: never;
|
|
4415
5559
|
};
|
|
4416
|
-
requestBody?:
|
|
5560
|
+
requestBody?: {
|
|
5561
|
+
content: {
|
|
5562
|
+
"application/json": components["schemas"]["MountListmountsRequest"];
|
|
5563
|
+
};
|
|
5564
|
+
};
|
|
4417
5565
|
responses: {
|
|
4418
5566
|
200: components["responses"]["MountListmountsResponse"];
|
|
4419
5567
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4422,11 +5570,11 @@ export interface operations {
|
|
|
4422
5570
|
};
|
|
4423
5571
|
mountMount: {
|
|
4424
5572
|
parameters: {
|
|
4425
|
-
query
|
|
5573
|
+
query?: {
|
|
4426
5574
|
/** @description Remote path to mount, such as `drive:` or `remote:subdir`. */
|
|
4427
|
-
fs
|
|
5575
|
+
fs?: components["parameters"]["Mount_MountPostFsParam"];
|
|
4428
5576
|
/** @description Absolute local path where the remote should be mounted. */
|
|
4429
|
-
mountPoint
|
|
5577
|
+
mountPoint?: components["parameters"]["Mount_MountPostMountPointParam"];
|
|
4430
5578
|
/** @description Optional mount implementation to use (`mount`, `cmount`, or `mount2`). */
|
|
4431
5579
|
mountType?: components["parameters"]["Mount_MountPostMountTypeParam"];
|
|
4432
5580
|
/** @description Mount options encoded as JSON, matching flags accepted by `rclone mount`. */
|
|
@@ -4446,7 +5594,11 @@ export interface operations {
|
|
|
4446
5594
|
path?: never;
|
|
4447
5595
|
cookie?: never;
|
|
4448
5596
|
};
|
|
4449
|
-
requestBody?:
|
|
5597
|
+
requestBody?: {
|
|
5598
|
+
content: {
|
|
5599
|
+
"application/json": components["schemas"]["MountMountRequest"];
|
|
5600
|
+
};
|
|
5601
|
+
};
|
|
4450
5602
|
responses: {
|
|
4451
5603
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4452
5604
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4465,7 +5617,11 @@ export interface operations {
|
|
|
4465
5617
|
path?: never;
|
|
4466
5618
|
cookie?: never;
|
|
4467
5619
|
};
|
|
4468
|
-
requestBody?:
|
|
5620
|
+
requestBody?: {
|
|
5621
|
+
content: {
|
|
5622
|
+
"application/json": components["schemas"]["MountTypesRequest"];
|
|
5623
|
+
};
|
|
5624
|
+
};
|
|
4469
5625
|
responses: {
|
|
4470
5626
|
200: components["responses"]["MountTypesResponse"];
|
|
4471
5627
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4474,9 +5630,9 @@ export interface operations {
|
|
|
4474
5630
|
};
|
|
4475
5631
|
mountUnmount: {
|
|
4476
5632
|
parameters: {
|
|
4477
|
-
query
|
|
5633
|
+
query?: {
|
|
4478
5634
|
/** @description Local mount point path to unmount. */
|
|
4479
|
-
mountPoint
|
|
5635
|
+
mountPoint?: components["parameters"]["Mount_UnmountPostMountPointParam"];
|
|
4480
5636
|
/** @description Assign the request to a custom stats group. */
|
|
4481
5637
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4482
5638
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4486,7 +5642,11 @@ export interface operations {
|
|
|
4486
5642
|
path?: never;
|
|
4487
5643
|
cookie?: never;
|
|
4488
5644
|
};
|
|
4489
|
-
requestBody?:
|
|
5645
|
+
requestBody?: {
|
|
5646
|
+
content: {
|
|
5647
|
+
"application/json": components["schemas"]["MountUnmountRequest"];
|
|
5648
|
+
};
|
|
5649
|
+
};
|
|
4490
5650
|
responses: {
|
|
4491
5651
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4492
5652
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4505,7 +5665,11 @@ export interface operations {
|
|
|
4505
5665
|
path?: never;
|
|
4506
5666
|
cookie?: never;
|
|
4507
5667
|
};
|
|
4508
|
-
requestBody?:
|
|
5668
|
+
requestBody?: {
|
|
5669
|
+
content: {
|
|
5670
|
+
"application/json": components["schemas"]["MountUnmountallRequest"];
|
|
5671
|
+
};
|
|
5672
|
+
};
|
|
4509
5673
|
responses: {
|
|
4510
5674
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4511
5675
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4524,7 +5688,11 @@ export interface operations {
|
|
|
4524
5688
|
path?: never;
|
|
4525
5689
|
cookie?: never;
|
|
4526
5690
|
};
|
|
4527
|
-
requestBody?:
|
|
5691
|
+
requestBody?: {
|
|
5692
|
+
content: {
|
|
5693
|
+
"application/json": components["schemas"]["RcNoopAuthRequest"];
|
|
5694
|
+
};
|
|
5695
|
+
};
|
|
4528
5696
|
responses: {
|
|
4529
5697
|
200: components["responses"]["RcNoopResponse"];
|
|
4530
5698
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4543,7 +5711,11 @@ export interface operations {
|
|
|
4543
5711
|
path?: never;
|
|
4544
5712
|
cookie?: never;
|
|
4545
5713
|
};
|
|
4546
|
-
requestBody?:
|
|
5714
|
+
requestBody?: {
|
|
5715
|
+
content: {
|
|
5716
|
+
"application/json": components["schemas"]["RcErrorRequest"];
|
|
5717
|
+
};
|
|
5718
|
+
};
|
|
4547
5719
|
responses: {
|
|
4548
5720
|
200: components["responses"]["EmptyResponse"];
|
|
4549
5721
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4562,7 +5734,11 @@ export interface operations {
|
|
|
4562
5734
|
path?: never;
|
|
4563
5735
|
cookie?: never;
|
|
4564
5736
|
};
|
|
4565
|
-
requestBody?:
|
|
5737
|
+
requestBody?: {
|
|
5738
|
+
content: {
|
|
5739
|
+
"application/json": components["schemas"]["RcListRequest"];
|
|
5740
|
+
};
|
|
5741
|
+
};
|
|
4566
5742
|
responses: {
|
|
4567
5743
|
200: components["responses"]["RcListResponse"];
|
|
4568
5744
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4571,9 +5747,9 @@ export interface operations {
|
|
|
4571
5747
|
};
|
|
4572
5748
|
backendCommand: {
|
|
4573
5749
|
parameters: {
|
|
4574
|
-
query
|
|
5750
|
+
query?: {
|
|
4575
5751
|
/** @description Backend-specific command to invoke. */
|
|
4576
|
-
command
|
|
5752
|
+
command?: components["parameters"]["Backend_CommandPostCommandParam"];
|
|
4577
5753
|
/** @description Remote name or path the backend command should target. */
|
|
4578
5754
|
fs?: components["parameters"]["Backend_CommandPostFsParam"];
|
|
4579
5755
|
/** @description Optional positional arguments for the backend command. */
|
|
@@ -4589,7 +5765,11 @@ export interface operations {
|
|
|
4589
5765
|
path?: never;
|
|
4590
5766
|
cookie?: never;
|
|
4591
5767
|
};
|
|
4592
|
-
requestBody?:
|
|
5768
|
+
requestBody?: {
|
|
5769
|
+
content: {
|
|
5770
|
+
"application/json": components["schemas"]["BackendCommandRequest"];
|
|
5771
|
+
};
|
|
5772
|
+
};
|
|
4593
5773
|
responses: {
|
|
4594
5774
|
200: components["responses"]["BackendCommandResponse"];
|
|
4595
5775
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4598,9 +5778,9 @@ export interface operations {
|
|
|
4598
5778
|
};
|
|
4599
5779
|
cacheExpire: {
|
|
4600
5780
|
parameters: {
|
|
4601
|
-
query
|
|
5781
|
+
query?: {
|
|
4602
5782
|
/** @description Remote path to expire from the cache, e.g. `remote:path/to/dir`. */
|
|
4603
|
-
remote
|
|
5783
|
+
remote?: components["parameters"]["Cache_ExpirePostRemoteParam"];
|
|
4604
5784
|
/** @description Set to true to drop cached chunk data along with directory entries. */
|
|
4605
5785
|
withData?: components["parameters"]["Cache_ExpirePostWithDataParam"];
|
|
4606
5786
|
/** @description Assign the request to a custom stats group. */
|
|
@@ -4612,7 +5792,11 @@ export interface operations {
|
|
|
4612
5792
|
path?: never;
|
|
4613
5793
|
cookie?: never;
|
|
4614
5794
|
};
|
|
4615
|
-
requestBody?:
|
|
5795
|
+
requestBody?: {
|
|
5796
|
+
content: {
|
|
5797
|
+
"application/json": components["schemas"]["CacheExpireRequest"];
|
|
5798
|
+
};
|
|
5799
|
+
};
|
|
4616
5800
|
responses: {
|
|
4617
5801
|
200: components["responses"]["EmptyResponse"];
|
|
4618
5802
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4635,7 +5819,11 @@ export interface operations {
|
|
|
4635
5819
|
path?: never;
|
|
4636
5820
|
cookie?: never;
|
|
4637
5821
|
};
|
|
4638
|
-
requestBody?:
|
|
5822
|
+
requestBody?: {
|
|
5823
|
+
content: {
|
|
5824
|
+
"application/json": components["schemas"]["CacheFetchRequest"];
|
|
5825
|
+
};
|
|
5826
|
+
};
|
|
4639
5827
|
responses: {
|
|
4640
5828
|
200: components["responses"]["EmptyResponse"];
|
|
4641
5829
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4654,7 +5842,11 @@ export interface operations {
|
|
|
4654
5842
|
path?: never;
|
|
4655
5843
|
cookie?: never;
|
|
4656
5844
|
};
|
|
4657
|
-
requestBody?:
|
|
5845
|
+
requestBody?: {
|
|
5846
|
+
content: {
|
|
5847
|
+
"application/json": components["schemas"]["CacheStatsRequest"];
|
|
5848
|
+
};
|
|
5849
|
+
};
|
|
4658
5850
|
responses: {
|
|
4659
5851
|
200: components["responses"]["EmptyResponse"];
|
|
4660
5852
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4663,13 +5855,13 @@ export interface operations {
|
|
|
4663
5855
|
};
|
|
4664
5856
|
configCreate: {
|
|
4665
5857
|
parameters: {
|
|
4666
|
-
query
|
|
5858
|
+
query?: {
|
|
4667
5859
|
/** @description Name of the new remote configuration. */
|
|
4668
|
-
name
|
|
5860
|
+
name?: components["parameters"]["Config_CreatePostNameParam"];
|
|
4669
5861
|
/** @description JSON object of configuration key/value pairs required for the remote. */
|
|
4670
|
-
parameters
|
|
5862
|
+
parameters?: components["parameters"]["Config_CreatePostParametersParam"];
|
|
4671
5863
|
/** @description Backend type identifier, such as `drive`, `s3`, or `dropbox`. */
|
|
4672
|
-
type
|
|
5864
|
+
type?: components["parameters"]["Config_CreatePostTypeParam"];
|
|
4673
5865
|
/** @description Optional JSON object controlling interactive behaviour (e.g. `obscure`, `continue`). */
|
|
4674
5866
|
opt?: components["parameters"]["Config_CreatePostOptParam"];
|
|
4675
5867
|
/** @description Assign the request to a custom stats group. */
|
|
@@ -4681,7 +5873,11 @@ export interface operations {
|
|
|
4681
5873
|
path?: never;
|
|
4682
5874
|
cookie?: never;
|
|
4683
5875
|
};
|
|
4684
|
-
requestBody?:
|
|
5876
|
+
requestBody?: {
|
|
5877
|
+
content: {
|
|
5878
|
+
"application/json": components["schemas"]["ConfigCreateRequest"];
|
|
5879
|
+
};
|
|
5880
|
+
};
|
|
4685
5881
|
responses: {
|
|
4686
5882
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4687
5883
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4690,9 +5886,9 @@ export interface operations {
|
|
|
4690
5886
|
};
|
|
4691
5887
|
configDelete: {
|
|
4692
5888
|
parameters: {
|
|
4693
|
-
query
|
|
5889
|
+
query?: {
|
|
4694
5890
|
/** @description Name of the remote configuration to delete. */
|
|
4695
|
-
name
|
|
5891
|
+
name?: components["parameters"]["Config_DeletePostNameParam"];
|
|
4696
5892
|
/** @description Assign the request to a custom stats group. */
|
|
4697
5893
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4698
5894
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4702,7 +5898,11 @@ export interface operations {
|
|
|
4702
5898
|
path?: never;
|
|
4703
5899
|
cookie?: never;
|
|
4704
5900
|
};
|
|
4705
|
-
requestBody?:
|
|
5901
|
+
requestBody?: {
|
|
5902
|
+
content: {
|
|
5903
|
+
"application/json": components["schemas"]["ConfigDeleteRequest"];
|
|
5904
|
+
};
|
|
5905
|
+
};
|
|
4706
5906
|
responses: {
|
|
4707
5907
|
200: components["responses"]["EmptyResponse"];
|
|
4708
5908
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4721,7 +5921,11 @@ export interface operations {
|
|
|
4721
5921
|
path?: never;
|
|
4722
5922
|
cookie?: never;
|
|
4723
5923
|
};
|
|
4724
|
-
requestBody?:
|
|
5924
|
+
requestBody?: {
|
|
5925
|
+
content: {
|
|
5926
|
+
"application/json": components["schemas"]["ConfigDumpRequest"];
|
|
5927
|
+
};
|
|
5928
|
+
};
|
|
4725
5929
|
responses: {
|
|
4726
5930
|
200: components["responses"]["ConfigDumpResponse"];
|
|
4727
5931
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4730,9 +5934,9 @@ export interface operations {
|
|
|
4730
5934
|
};
|
|
4731
5935
|
configGet: {
|
|
4732
5936
|
parameters: {
|
|
4733
|
-
query
|
|
5937
|
+
query?: {
|
|
4734
5938
|
/** @description Name of the remote configuration to fetch. */
|
|
4735
|
-
name
|
|
5939
|
+
name?: components["parameters"]["Config_GetPostNameParam"];
|
|
4736
5940
|
/** @description Assign the request to a custom stats group. */
|
|
4737
5941
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4738
5942
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4742,7 +5946,11 @@ export interface operations {
|
|
|
4742
5946
|
path?: never;
|
|
4743
5947
|
cookie?: never;
|
|
4744
5948
|
};
|
|
4745
|
-
requestBody?:
|
|
5949
|
+
requestBody?: {
|
|
5950
|
+
content: {
|
|
5951
|
+
"application/json": components["schemas"]["ConfigGetRequest"];
|
|
5952
|
+
};
|
|
5953
|
+
};
|
|
4746
5954
|
responses: {
|
|
4747
5955
|
200: components["responses"]["ConfigGetResponse"];
|
|
4748
5956
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4761,7 +5969,11 @@ export interface operations {
|
|
|
4761
5969
|
path?: never;
|
|
4762
5970
|
cookie?: never;
|
|
4763
5971
|
};
|
|
4764
|
-
requestBody?:
|
|
5972
|
+
requestBody?: {
|
|
5973
|
+
content: {
|
|
5974
|
+
"application/json": components["schemas"]["ConfigListremotesRequest"];
|
|
5975
|
+
};
|
|
5976
|
+
};
|
|
4765
5977
|
responses: {
|
|
4766
5978
|
200: components["responses"]["ConfigListremotesResponse"];
|
|
4767
5979
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4770,11 +5982,11 @@ export interface operations {
|
|
|
4770
5982
|
};
|
|
4771
5983
|
configPassword: {
|
|
4772
5984
|
parameters: {
|
|
4773
|
-
query
|
|
5985
|
+
query?: {
|
|
4774
5986
|
/** @description Name of the remote whose secrets should be updated. */
|
|
4775
|
-
name
|
|
5987
|
+
name?: components["parameters"]["Config_PasswordPostNameParam"];
|
|
4776
5988
|
/** @description JSON object of password answers, typically including `pass`. */
|
|
4777
|
-
parameters
|
|
5989
|
+
parameters?: components["parameters"]["Config_PasswordPostParametersParam"];
|
|
4778
5990
|
/** @description Assign the request to a custom stats group. */
|
|
4779
5991
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4780
5992
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4784,7 +5996,11 @@ export interface operations {
|
|
|
4784
5996
|
path?: never;
|
|
4785
5997
|
cookie?: never;
|
|
4786
5998
|
};
|
|
4787
|
-
requestBody?:
|
|
5999
|
+
requestBody?: {
|
|
6000
|
+
content: {
|
|
6001
|
+
"application/json": components["schemas"]["ConfigPasswordRequest"];
|
|
6002
|
+
};
|
|
6003
|
+
};
|
|
4788
6004
|
responses: {
|
|
4789
6005
|
200: components["responses"]["EmptyResponse"];
|
|
4790
6006
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4803,7 +6019,11 @@ export interface operations {
|
|
|
4803
6019
|
path?: never;
|
|
4804
6020
|
cookie?: never;
|
|
4805
6021
|
};
|
|
4806
|
-
requestBody?:
|
|
6022
|
+
requestBody?: {
|
|
6023
|
+
content: {
|
|
6024
|
+
"application/json": components["schemas"]["ConfigPathsRequest"];
|
|
6025
|
+
};
|
|
6026
|
+
};
|
|
4807
6027
|
responses: {
|
|
4808
6028
|
200: components["responses"]["ConfigPathsResponse"];
|
|
4809
6029
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4822,7 +6042,11 @@ export interface operations {
|
|
|
4822
6042
|
path?: never;
|
|
4823
6043
|
cookie?: never;
|
|
4824
6044
|
};
|
|
4825
|
-
requestBody?:
|
|
6045
|
+
requestBody?: {
|
|
6046
|
+
content: {
|
|
6047
|
+
"application/json": components["schemas"]["ConfigProvidersRequest"];
|
|
6048
|
+
};
|
|
6049
|
+
};
|
|
4826
6050
|
responses: {
|
|
4827
6051
|
200: components["responses"]["ConfigProvidersResponse"];
|
|
4828
6052
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4831,9 +6055,9 @@ export interface operations {
|
|
|
4831
6055
|
};
|
|
4832
6056
|
configSetpath: {
|
|
4833
6057
|
parameters: {
|
|
4834
|
-
query
|
|
6058
|
+
query?: {
|
|
4835
6059
|
/** @description Absolute path to the `rclone.conf` file that rclone should use. */
|
|
4836
|
-
path
|
|
6060
|
+
path?: components["parameters"]["Config_SetpathPostPathParam"];
|
|
4837
6061
|
/** @description Assign the request to a custom stats group. */
|
|
4838
6062
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4839
6063
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4843,7 +6067,11 @@ export interface operations {
|
|
|
4843
6067
|
path?: never;
|
|
4844
6068
|
cookie?: never;
|
|
4845
6069
|
};
|
|
4846
|
-
requestBody?:
|
|
6070
|
+
requestBody?: {
|
|
6071
|
+
content: {
|
|
6072
|
+
"application/json": components["schemas"]["ConfigSetpathRequest"];
|
|
6073
|
+
};
|
|
6074
|
+
};
|
|
4847
6075
|
responses: {
|
|
4848
6076
|
200: components["responses"]["EmptyResponse"];
|
|
4849
6077
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4852,9 +6080,9 @@ export interface operations {
|
|
|
4852
6080
|
};
|
|
4853
6081
|
configUnlock: {
|
|
4854
6082
|
parameters: {
|
|
4855
|
-
query
|
|
6083
|
+
query?: {
|
|
4856
6084
|
/** @description Password used to unlock an encrypted config file. */
|
|
4857
|
-
configPassword
|
|
6085
|
+
configPassword?: components["parameters"]["Config_UnlockPostConfigPasswordParam"];
|
|
4858
6086
|
/** @description Assign the request to a custom stats group. */
|
|
4859
6087
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
4860
6088
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -4864,7 +6092,11 @@ export interface operations {
|
|
|
4864
6092
|
path?: never;
|
|
4865
6093
|
cookie?: never;
|
|
4866
6094
|
};
|
|
4867
|
-
requestBody?:
|
|
6095
|
+
requestBody?: {
|
|
6096
|
+
content: {
|
|
6097
|
+
"application/json": components["schemas"]["ConfigUnlockRequest"];
|
|
6098
|
+
};
|
|
6099
|
+
};
|
|
4868
6100
|
responses: {
|
|
4869
6101
|
200: components["responses"]["EmptyResponse"];
|
|
4870
6102
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4873,11 +6105,11 @@ export interface operations {
|
|
|
4873
6105
|
};
|
|
4874
6106
|
configUpdate: {
|
|
4875
6107
|
parameters: {
|
|
4876
|
-
query
|
|
6108
|
+
query?: {
|
|
4877
6109
|
/** @description Name of the remote configuration to update. */
|
|
4878
|
-
name
|
|
6110
|
+
name?: components["parameters"]["Config_UpdatePostNameParam"];
|
|
4879
6111
|
/** @description JSON object of configuration key/value pairs to apply to the remote. */
|
|
4880
|
-
parameters
|
|
6112
|
+
parameters?: components["parameters"]["Config_UpdatePostParametersParam"];
|
|
4881
6113
|
/** @description Optional JSON object controlling update behaviour (e.g. `obscure`, `continue`). */
|
|
4882
6114
|
opt?: components["parameters"]["Config_UpdatePostOptParam"];
|
|
4883
6115
|
/** @description Assign the request to a custom stats group. */
|
|
@@ -4889,7 +6121,11 @@ export interface operations {
|
|
|
4889
6121
|
path?: never;
|
|
4890
6122
|
cookie?: never;
|
|
4891
6123
|
};
|
|
4892
|
-
requestBody?:
|
|
6124
|
+
requestBody?: {
|
|
6125
|
+
content: {
|
|
6126
|
+
"application/json": components["schemas"]["ConfigUpdateRequest"];
|
|
6127
|
+
};
|
|
6128
|
+
};
|
|
4893
6129
|
responses: {
|
|
4894
6130
|
200: components["responses"]["EmptyObjectResponse"];
|
|
4895
6131
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4908,7 +6144,11 @@ export interface operations {
|
|
|
4908
6144
|
path?: never;
|
|
4909
6145
|
cookie?: never;
|
|
4910
6146
|
};
|
|
4911
|
-
requestBody?:
|
|
6147
|
+
requestBody?: {
|
|
6148
|
+
content: {
|
|
6149
|
+
"application/json": components["schemas"]["CoreVersionRequest"];
|
|
6150
|
+
};
|
|
6151
|
+
};
|
|
4912
6152
|
responses: {
|
|
4913
6153
|
200: components["responses"]["CoreVersionResponse"];
|
|
4914
6154
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4931,7 +6171,11 @@ export interface operations {
|
|
|
4931
6171
|
path?: never;
|
|
4932
6172
|
cookie?: never;
|
|
4933
6173
|
};
|
|
4934
|
-
requestBody?:
|
|
6174
|
+
requestBody?: {
|
|
6175
|
+
content: {
|
|
6176
|
+
"application/json": components["schemas"]["CoreStatsRequest"];
|
|
6177
|
+
};
|
|
6178
|
+
};
|
|
4935
6179
|
responses: {
|
|
4936
6180
|
200: components["responses"]["CoreStatsResponse"];
|
|
4937
6181
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4973,7 +6217,11 @@ export interface operations {
|
|
|
4973
6217
|
path?: never;
|
|
4974
6218
|
cookie?: never;
|
|
4975
6219
|
};
|
|
4976
|
-
requestBody?:
|
|
6220
|
+
requestBody?: {
|
|
6221
|
+
content: {
|
|
6222
|
+
"application/json": components["schemas"]["JobListRequest"];
|
|
6223
|
+
};
|
|
6224
|
+
};
|
|
4977
6225
|
responses: {
|
|
4978
6226
|
200: components["responses"]["JobListResponse"];
|
|
4979
6227
|
"4XX": components["responses"]["RcError"];
|
|
@@ -4982,9 +6230,9 @@ export interface operations {
|
|
|
4982
6230
|
};
|
|
4983
6231
|
jobStatus: {
|
|
4984
6232
|
parameters: {
|
|
4985
|
-
query
|
|
6233
|
+
query?: {
|
|
4986
6234
|
/** @description Numeric identifier of the job to query, as returned from an async call. */
|
|
4987
|
-
jobid
|
|
6235
|
+
jobid?: components["parameters"]["Job_StatusPostJobidParam"];
|
|
4988
6236
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
4989
6237
|
_async?: components["parameters"]["GlobalAsyncParam"];
|
|
4990
6238
|
};
|
|
@@ -4992,7 +6240,11 @@ export interface operations {
|
|
|
4992
6240
|
path?: never;
|
|
4993
6241
|
cookie?: never;
|
|
4994
6242
|
};
|
|
4995
|
-
requestBody?:
|
|
6243
|
+
requestBody?: {
|
|
6244
|
+
content: {
|
|
6245
|
+
"application/json": components["schemas"]["JobStatusRequest"];
|
|
6246
|
+
};
|
|
6247
|
+
};
|
|
4996
6248
|
responses: {
|
|
4997
6249
|
200: components["responses"]["JobStatusResponse"];
|
|
4998
6250
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5001,9 +6253,9 @@ export interface operations {
|
|
|
5001
6253
|
};
|
|
5002
6254
|
jobStop: {
|
|
5003
6255
|
parameters: {
|
|
5004
|
-
query
|
|
6256
|
+
query?: {
|
|
5005
6257
|
/** @description Numeric identifier of the job to cancel. */
|
|
5006
|
-
jobid
|
|
6258
|
+
jobid?: components["parameters"]["Job_StopPostJobidParam"];
|
|
5007
6259
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
5008
6260
|
_async?: components["parameters"]["GlobalAsyncParam"];
|
|
5009
6261
|
};
|
|
@@ -5011,7 +6263,11 @@ export interface operations {
|
|
|
5011
6263
|
path?: never;
|
|
5012
6264
|
cookie?: never;
|
|
5013
6265
|
};
|
|
5014
|
-
requestBody?:
|
|
6266
|
+
requestBody?: {
|
|
6267
|
+
content: {
|
|
6268
|
+
"application/json": components["schemas"]["JobStopRequest"];
|
|
6269
|
+
};
|
|
6270
|
+
};
|
|
5015
6271
|
responses: {
|
|
5016
6272
|
200: components["responses"]["EmptyObjectResponse"];
|
|
5017
6273
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5020,9 +6276,9 @@ export interface operations {
|
|
|
5020
6276
|
};
|
|
5021
6277
|
jobStopgroup: {
|
|
5022
6278
|
parameters: {
|
|
5023
|
-
query
|
|
6279
|
+
query?: {
|
|
5024
6280
|
/** @description Stats group name whose active jobs should be stopped. */
|
|
5025
|
-
group
|
|
6281
|
+
group?: components["parameters"]["Job_StopgroupPostGroupParam"];
|
|
5026
6282
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
5027
6283
|
_async?: components["parameters"]["GlobalAsyncParam"];
|
|
5028
6284
|
};
|
|
@@ -5030,7 +6286,11 @@ export interface operations {
|
|
|
5030
6286
|
path?: never;
|
|
5031
6287
|
cookie?: never;
|
|
5032
6288
|
};
|
|
5033
|
-
requestBody?:
|
|
6289
|
+
requestBody?: {
|
|
6290
|
+
content: {
|
|
6291
|
+
"application/json": components["schemas"]["JobStopgroupRequest"];
|
|
6292
|
+
};
|
|
6293
|
+
};
|
|
5034
6294
|
responses: {
|
|
5035
6295
|
200: components["responses"]["EmptyObjectResponse"];
|
|
5036
6296
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5039,11 +6299,11 @@ export interface operations {
|
|
|
5039
6299
|
};
|
|
5040
6300
|
operationsList: {
|
|
5041
6301
|
parameters: {
|
|
5042
|
-
query
|
|
6302
|
+
query?: {
|
|
5043
6303
|
/** @description Remote name or path to list, for example `drive:`. */
|
|
5044
|
-
fs
|
|
6304
|
+
fs?: components["parameters"]["Operations_ListPostFsParam"];
|
|
5045
6305
|
/** @description Directory path within `fs` to list; leave empty to target the root. */
|
|
5046
|
-
remote
|
|
6306
|
+
remote?: components["parameters"]["Operations_ListPostRemoteParam"];
|
|
5047
6307
|
/** @description Optional JSON-encoded object of listing flags (e.g. `{ "recurse": true, "showHash": true }`). */
|
|
5048
6308
|
opt?: components["parameters"]["Operations_ListPostOptParam"];
|
|
5049
6309
|
/** @description Set to true to list directories recursively. */
|
|
@@ -5075,7 +6335,11 @@ export interface operations {
|
|
|
5075
6335
|
path?: never;
|
|
5076
6336
|
cookie?: never;
|
|
5077
6337
|
};
|
|
5078
|
-
requestBody?:
|
|
6338
|
+
requestBody?: {
|
|
6339
|
+
content: {
|
|
6340
|
+
"application/json": components["schemas"]["OperationsListRequest"];
|
|
6341
|
+
};
|
|
6342
|
+
};
|
|
5079
6343
|
responses: {
|
|
5080
6344
|
200: components["responses"]["OperationsListResponse"];
|
|
5081
6345
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5084,11 +6348,11 @@ export interface operations {
|
|
|
5084
6348
|
};
|
|
5085
6349
|
operationsStat: {
|
|
5086
6350
|
parameters: {
|
|
5087
|
-
query
|
|
6351
|
+
query?: {
|
|
5088
6352
|
/** @description Remote name or path that contains the item to inspect. */
|
|
5089
|
-
fs
|
|
6353
|
+
fs?: components["parameters"]["Operations_StatPostFsParam"];
|
|
5090
6354
|
/** @description Path to the file or directory within `fs` to describe. */
|
|
5091
|
-
remote
|
|
6355
|
+
remote?: components["parameters"]["Operations_StatPostRemoteParam"];
|
|
5092
6356
|
/** @description Optional JSON object of listing flags, matching those accepted by `operations/list`. */
|
|
5093
6357
|
opt?: components["parameters"]["Operations_StatPostOptParam"];
|
|
5094
6358
|
/** @description Assign the request to a custom stats group. */
|
|
@@ -5100,7 +6364,11 @@ export interface operations {
|
|
|
5100
6364
|
path?: never;
|
|
5101
6365
|
cookie?: never;
|
|
5102
6366
|
};
|
|
5103
|
-
requestBody?:
|
|
6367
|
+
requestBody?: {
|
|
6368
|
+
content: {
|
|
6369
|
+
"application/json": components["schemas"]["OperationsStatRequest"];
|
|
6370
|
+
};
|
|
6371
|
+
};
|
|
5104
6372
|
responses: {
|
|
5105
6373
|
200: components["responses"]["OperationsStatResponse"];
|
|
5106
6374
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5109,9 +6377,9 @@ export interface operations {
|
|
|
5109
6377
|
};
|
|
5110
6378
|
operationsAbout: {
|
|
5111
6379
|
parameters: {
|
|
5112
|
-
query
|
|
6380
|
+
query?: {
|
|
5113
6381
|
/** @description Remote name or path to query for capacity information. */
|
|
5114
|
-
fs
|
|
6382
|
+
fs?: components["parameters"]["Operations_AboutPostFsParam"];
|
|
5115
6383
|
/** @description Assign the request to a custom stats group. */
|
|
5116
6384
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
5117
6385
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -5121,7 +6389,11 @@ export interface operations {
|
|
|
5121
6389
|
path?: never;
|
|
5122
6390
|
cookie?: never;
|
|
5123
6391
|
};
|
|
5124
|
-
requestBody?:
|
|
6392
|
+
requestBody?: {
|
|
6393
|
+
content: {
|
|
6394
|
+
"application/json": components["schemas"]["OperationsAboutRequest"];
|
|
6395
|
+
};
|
|
6396
|
+
};
|
|
5125
6397
|
responses: {
|
|
5126
6398
|
200: components["responses"]["OperationsAboutResponse"];
|
|
5127
6399
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5130,11 +6402,11 @@ export interface operations {
|
|
|
5130
6402
|
};
|
|
5131
6403
|
operationsUploadfile: {
|
|
5132
6404
|
parameters: {
|
|
5133
|
-
query
|
|
6405
|
+
query?: {
|
|
5134
6406
|
/** @description Remote name or path where the uploaded file should be stored. */
|
|
5135
|
-
fs
|
|
6407
|
+
fs?: components["parameters"]["Operations_UploadfilePostFsParam"];
|
|
5136
6408
|
/** @description Destination path within `fs` for the uploaded file. */
|
|
5137
|
-
remote
|
|
6409
|
+
remote?: components["parameters"]["Operations_UploadfilePostRemoteParam"];
|
|
5138
6410
|
/** @description Assign the request to a custom stats group. */
|
|
5139
6411
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
5140
6412
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -5158,11 +6430,11 @@ export interface operations {
|
|
|
5158
6430
|
};
|
|
5159
6431
|
operationsPurge: {
|
|
5160
6432
|
parameters: {
|
|
5161
|
-
query
|
|
6433
|
+
query?: {
|
|
5162
6434
|
/** @description Remote name or path from which to remove all contents. */
|
|
5163
|
-
fs
|
|
6435
|
+
fs?: components["parameters"]["Operations_PurgePostFsParam"];
|
|
5164
6436
|
/** @description Path within `fs` whose contents should be purged. */
|
|
5165
|
-
remote
|
|
6437
|
+
remote?: components["parameters"]["Operations_PurgePostRemoteParam"];
|
|
5166
6438
|
/** @description JSON encoded config overrides applied for this call only. */
|
|
5167
6439
|
_config?: components["parameters"]["GlobalConfigParam"];
|
|
5168
6440
|
/** @description JSON encoded filter overrides applied for this call only. */
|
|
@@ -5176,7 +6448,11 @@ export interface operations {
|
|
|
5176
6448
|
path?: never;
|
|
5177
6449
|
cookie?: never;
|
|
5178
6450
|
};
|
|
5179
|
-
requestBody?:
|
|
6451
|
+
requestBody?: {
|
|
6452
|
+
content: {
|
|
6453
|
+
"application/json": components["schemas"]["OperationsPurgeRequest"];
|
|
6454
|
+
};
|
|
6455
|
+
};
|
|
5180
6456
|
responses: {
|
|
5181
6457
|
200: components["responses"]["EmptyObjectResponse"];
|
|
5182
6458
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5185,11 +6461,11 @@ export interface operations {
|
|
|
5185
6461
|
};
|
|
5186
6462
|
operationsMkdir: {
|
|
5187
6463
|
parameters: {
|
|
5188
|
-
query
|
|
6464
|
+
query?: {
|
|
5189
6465
|
/** @description Remote name or path in which to create a directory. */
|
|
5190
|
-
fs
|
|
6466
|
+
fs?: components["parameters"]["Operations_MkdirPostFsParam"];
|
|
5191
6467
|
/** @description Directory path within `fs` to create. */
|
|
5192
|
-
remote
|
|
6468
|
+
remote?: components["parameters"]["Operations_MkdirPostRemoteParam"];
|
|
5193
6469
|
/** @description Assign the request to a custom stats group. */
|
|
5194
6470
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
5195
6471
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -5199,7 +6475,11 @@ export interface operations {
|
|
|
5199
6475
|
path?: never;
|
|
5200
6476
|
cookie?: never;
|
|
5201
6477
|
};
|
|
5202
|
-
requestBody?:
|
|
6478
|
+
requestBody?: {
|
|
6479
|
+
content: {
|
|
6480
|
+
"application/json": components["schemas"]["OperationsMkdirRequest"];
|
|
6481
|
+
};
|
|
6482
|
+
};
|
|
5203
6483
|
responses: {
|
|
5204
6484
|
200: components["responses"]["EmptyObjectResponse"];
|
|
5205
6485
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5208,11 +6488,11 @@ export interface operations {
|
|
|
5208
6488
|
};
|
|
5209
6489
|
operationsRmdir: {
|
|
5210
6490
|
parameters: {
|
|
5211
|
-
query
|
|
6491
|
+
query?: {
|
|
5212
6492
|
/** @description Remote name or path containing the directory to remove. */
|
|
5213
|
-
fs
|
|
6493
|
+
fs?: components["parameters"]["Operations_RmdirPostFsParam"];
|
|
5214
6494
|
/** @description Directory path within `fs` to delete. */
|
|
5215
|
-
remote
|
|
6495
|
+
remote?: components["parameters"]["Operations_RmdirPostRemoteParam"];
|
|
5216
6496
|
/** @description Assign the request to a custom stats group. */
|
|
5217
6497
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
5218
6498
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -5222,7 +6502,11 @@ export interface operations {
|
|
|
5222
6502
|
path?: never;
|
|
5223
6503
|
cookie?: never;
|
|
5224
6504
|
};
|
|
5225
|
-
requestBody?:
|
|
6505
|
+
requestBody?: {
|
|
6506
|
+
content: {
|
|
6507
|
+
"application/json": components["schemas"]["OperationsRmdirRequest"];
|
|
6508
|
+
};
|
|
6509
|
+
};
|
|
5226
6510
|
responses: {
|
|
5227
6511
|
200: components["responses"]["EmptyObjectResponse"];
|
|
5228
6512
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5231,11 +6515,11 @@ export interface operations {
|
|
|
5231
6515
|
};
|
|
5232
6516
|
operationsCheck: {
|
|
5233
6517
|
parameters: {
|
|
5234
|
-
query
|
|
6518
|
+
query?: {
|
|
5235
6519
|
/** @description Source remote name or path to verify, e.g. `drive:`. */
|
|
5236
|
-
srcFs
|
|
6520
|
+
srcFs?: components["parameters"]["Operations_CheckPostSrcFsParam"];
|
|
5237
6521
|
/** @description Destination remote name or path that should match the source. */
|
|
5238
|
-
dstFs
|
|
6522
|
+
dstFs?: components["parameters"]["Operations_CheckPostDstFsParam"];
|
|
5239
6523
|
/** @description Set to true to read file contents during comparison instead of relying on hashes. */
|
|
5240
6524
|
download?: components["parameters"]["Operations_CheckPostDownloadParam"];
|
|
5241
6525
|
/** @description Hash name to expect in the supplied SUM file, such as `md5`. */
|
|
@@ -5267,7 +6551,11 @@ export interface operations {
|
|
|
5267
6551
|
path?: never;
|
|
5268
6552
|
cookie?: never;
|
|
5269
6553
|
};
|
|
5270
|
-
requestBody?:
|
|
6554
|
+
requestBody?: {
|
|
6555
|
+
content: {
|
|
6556
|
+
"application/json": components["schemas"]["OperationsCheckRequest"];
|
|
6557
|
+
};
|
|
6558
|
+
};
|
|
5271
6559
|
responses: {
|
|
5272
6560
|
200: components["responses"]["OperationsCheckResponse"];
|
|
5273
6561
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5276,11 +6564,11 @@ export interface operations {
|
|
|
5276
6564
|
};
|
|
5277
6565
|
syncSync: {
|
|
5278
6566
|
parameters: {
|
|
5279
|
-
query
|
|
6567
|
+
query?: {
|
|
5280
6568
|
/** @description Source remote path to sync from, e.g. `drive:src`. */
|
|
5281
|
-
srcFs
|
|
6569
|
+
srcFs?: components["parameters"]["Sync_SyncPostSrcFsParam"];
|
|
5282
6570
|
/** @description Destination remote path to sync to, e.g. `drive:dst`. */
|
|
5283
|
-
dstFs
|
|
6571
|
+
dstFs?: components["parameters"]["Sync_SyncPostDstFsParam"];
|
|
5284
6572
|
/** @description Set to true to create empty source directories on the destination. */
|
|
5285
6573
|
createEmptySrcDirs?: components["parameters"]["Sync_SyncPostCreateEmptySrcDirsParam"];
|
|
5286
6574
|
/** @description JSON encoded config overrides applied for this call only. */
|
|
@@ -5296,7 +6584,11 @@ export interface operations {
|
|
|
5296
6584
|
path?: never;
|
|
5297
6585
|
cookie?: never;
|
|
5298
6586
|
};
|
|
5299
|
-
requestBody?:
|
|
6587
|
+
requestBody?: {
|
|
6588
|
+
content: {
|
|
6589
|
+
"application/json": components["schemas"]["SyncSyncRequest"];
|
|
6590
|
+
};
|
|
6591
|
+
};
|
|
5300
6592
|
responses: {
|
|
5301
6593
|
200: components["responses"]["SyncJobResponse"];
|
|
5302
6594
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5305,11 +6597,11 @@ export interface operations {
|
|
|
5305
6597
|
};
|
|
5306
6598
|
syncCopy: {
|
|
5307
6599
|
parameters: {
|
|
5308
|
-
query
|
|
6600
|
+
query?: {
|
|
5309
6601
|
/** @description Source remote path to copy from. */
|
|
5310
|
-
srcFs
|
|
6602
|
+
srcFs?: components["parameters"]["Sync_CopyPostSrcFsParam"];
|
|
5311
6603
|
/** @description Destination remote path to copy to. */
|
|
5312
|
-
dstFs
|
|
6604
|
+
dstFs?: components["parameters"]["Sync_CopyPostDstFsParam"];
|
|
5313
6605
|
/** @description Set to true to replicate empty source directories on the destination. */
|
|
5314
6606
|
createEmptySrcDirs?: components["parameters"]["Sync_CopyPostCreateEmptySrcDirsParam"];
|
|
5315
6607
|
/** @description JSON encoded config overrides applied for this call only. */
|
|
@@ -5325,7 +6617,11 @@ export interface operations {
|
|
|
5325
6617
|
path?: never;
|
|
5326
6618
|
cookie?: never;
|
|
5327
6619
|
};
|
|
5328
|
-
requestBody?:
|
|
6620
|
+
requestBody?: {
|
|
6621
|
+
content: {
|
|
6622
|
+
"application/json": components["schemas"]["SyncCopyRequest"];
|
|
6623
|
+
};
|
|
6624
|
+
};
|
|
5329
6625
|
responses: {
|
|
5330
6626
|
200: components["responses"]["SyncJobResponse"];
|
|
5331
6627
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5334,11 +6630,11 @@ export interface operations {
|
|
|
5334
6630
|
};
|
|
5335
6631
|
syncMove: {
|
|
5336
6632
|
parameters: {
|
|
5337
|
-
query
|
|
6633
|
+
query?: {
|
|
5338
6634
|
/** @description Source remote path whose contents will be moved. */
|
|
5339
|
-
srcFs
|
|
6635
|
+
srcFs?: components["parameters"]["Sync_MovePostSrcFsParam"];
|
|
5340
6636
|
/** @description Destination remote path that will receive moved files. */
|
|
5341
|
-
dstFs
|
|
6637
|
+
dstFs?: components["parameters"]["Sync_MovePostDstFsParam"];
|
|
5342
6638
|
/** @description Set to true to create empty source directories on the destination. */
|
|
5343
6639
|
createEmptySrcDirs?: components["parameters"]["Sync_MovePostCreateEmptySrcDirsParam"];
|
|
5344
6640
|
/** @description Set to true to delete empty directories from the source after the move completes. */
|
|
@@ -5356,7 +6652,11 @@ export interface operations {
|
|
|
5356
6652
|
path?: never;
|
|
5357
6653
|
cookie?: never;
|
|
5358
6654
|
};
|
|
5359
|
-
requestBody?:
|
|
6655
|
+
requestBody?: {
|
|
6656
|
+
content: {
|
|
6657
|
+
"application/json": components["schemas"]["SyncMoveRequest"];
|
|
6658
|
+
};
|
|
6659
|
+
};
|
|
5360
6660
|
responses: {
|
|
5361
6661
|
200: components["responses"]["SyncJobResponse"];
|
|
5362
6662
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5365,11 +6665,11 @@ export interface operations {
|
|
|
5365
6665
|
};
|
|
5366
6666
|
syncBisync: {
|
|
5367
6667
|
parameters: {
|
|
5368
|
-
query
|
|
6668
|
+
query?: {
|
|
5369
6669
|
/** @description First remote directory, e.g. `drive:path1`. */
|
|
5370
|
-
path1
|
|
6670
|
+
path1?: components["parameters"]["Sync_BisyncPostPath1Param"];
|
|
5371
6671
|
/** @description Second remote directory, e.g. `drive:path2`. */
|
|
5372
|
-
path2
|
|
6672
|
+
path2?: components["parameters"]["Sync_BisyncPostPath2Param"];
|
|
5373
6673
|
/** @description Set to true to simulate the bisync run without making changes. */
|
|
5374
6674
|
dryRun?: components["parameters"]["Sync_BisyncPostDryRunParam"];
|
|
5375
6675
|
/** @description Set to true to perform a one-time resync, rebuilding bisync history. */
|
|
@@ -5415,7 +6715,11 @@ export interface operations {
|
|
|
5415
6715
|
path?: never;
|
|
5416
6716
|
cookie?: never;
|
|
5417
6717
|
};
|
|
5418
|
-
requestBody?:
|
|
6718
|
+
requestBody?: {
|
|
6719
|
+
content: {
|
|
6720
|
+
"application/json": components["schemas"]["SyncBisyncRequest"];
|
|
6721
|
+
};
|
|
6722
|
+
};
|
|
5419
6723
|
responses: {
|
|
5420
6724
|
200: components["responses"]["SyncJobResponse"];
|
|
5421
6725
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5434,7 +6738,11 @@ export interface operations {
|
|
|
5434
6738
|
path?: never;
|
|
5435
6739
|
cookie?: never;
|
|
5436
6740
|
};
|
|
5437
|
-
requestBody?:
|
|
6741
|
+
requestBody?: {
|
|
6742
|
+
content: {
|
|
6743
|
+
"application/json": components["schemas"]["OptionsBlocksRequest"];
|
|
6744
|
+
};
|
|
6745
|
+
};
|
|
5438
6746
|
responses: {
|
|
5439
6747
|
200: components["responses"]["OptionsBlocksResponse"];
|
|
5440
6748
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5455,7 +6763,11 @@ export interface operations {
|
|
|
5455
6763
|
path?: never;
|
|
5456
6764
|
cookie?: never;
|
|
5457
6765
|
};
|
|
5458
|
-
requestBody?:
|
|
6766
|
+
requestBody?: {
|
|
6767
|
+
content: {
|
|
6768
|
+
"application/json": components["schemas"]["OptionsGetRequest"];
|
|
6769
|
+
};
|
|
6770
|
+
};
|
|
5459
6771
|
responses: {
|
|
5460
6772
|
200: components["responses"]["OptionsGetResponse"];
|
|
5461
6773
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5476,7 +6788,11 @@ export interface operations {
|
|
|
5476
6788
|
path?: never;
|
|
5477
6789
|
cookie?: never;
|
|
5478
6790
|
};
|
|
5479
|
-
requestBody?:
|
|
6791
|
+
requestBody?: {
|
|
6792
|
+
content: {
|
|
6793
|
+
"application/json": components["schemas"]["OptionsInfoRequest"];
|
|
6794
|
+
};
|
|
6795
|
+
};
|
|
5480
6796
|
responses: {
|
|
5481
6797
|
200: components["responses"]["OptionsInfoResponse"];
|
|
5482
6798
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5525,7 +6841,11 @@ export interface operations {
|
|
|
5525
6841
|
path?: never;
|
|
5526
6842
|
cookie?: never;
|
|
5527
6843
|
};
|
|
5528
|
-
requestBody?:
|
|
6844
|
+
requestBody?: {
|
|
6845
|
+
content: {
|
|
6846
|
+
"application/json": components["schemas"]["OptionsSetRequest"];
|
|
6847
|
+
};
|
|
6848
|
+
};
|
|
5529
6849
|
responses: {
|
|
5530
6850
|
200: components["responses"]["EmptyObjectResponse"];
|
|
5531
6851
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5544,7 +6864,11 @@ export interface operations {
|
|
|
5544
6864
|
path?: never;
|
|
5545
6865
|
cookie?: never;
|
|
5546
6866
|
};
|
|
5547
|
-
requestBody?:
|
|
6867
|
+
requestBody?: {
|
|
6868
|
+
content: {
|
|
6869
|
+
"application/json": components["schemas"]["OptionsLocalRequest"];
|
|
6870
|
+
};
|
|
6871
|
+
};
|
|
5548
6872
|
responses: {
|
|
5549
6873
|
200: components["responses"]["OptionsLocalResponse"];
|
|
5550
6874
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5563,7 +6887,11 @@ export interface operations {
|
|
|
5563
6887
|
path?: never;
|
|
5564
6888
|
cookie?: never;
|
|
5565
6889
|
};
|
|
5566
|
-
requestBody?:
|
|
6890
|
+
requestBody?: {
|
|
6891
|
+
content: {
|
|
6892
|
+
"application/json": components["schemas"]["ServeListRequest"];
|
|
6893
|
+
};
|
|
6894
|
+
};
|
|
5567
6895
|
responses: {
|
|
5568
6896
|
200: components["responses"]["ServeListResponse"];
|
|
5569
6897
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5572,13 +6900,13 @@ export interface operations {
|
|
|
5572
6900
|
};
|
|
5573
6901
|
serveStart: {
|
|
5574
6902
|
parameters: {
|
|
5575
|
-
query
|
|
6903
|
+
query?: {
|
|
5576
6904
|
/** @description Type of server to start (e.g. `http`, `webdav`, `ftp`, `sftp`). */
|
|
5577
|
-
type
|
|
6905
|
+
type?: components["parameters"]["Serve_StartPostTypeParam"];
|
|
5578
6906
|
/** @description Remote path that will be served. */
|
|
5579
|
-
fs
|
|
6907
|
+
fs?: components["parameters"]["Serve_StartPostFsParam"];
|
|
5580
6908
|
/** @description Address and port to bind the server to, such as `:5572` or `localhost:8080`. */
|
|
5581
|
-
addr
|
|
6909
|
+
addr?: components["parameters"]["Serve_StartPostAddrParam"];
|
|
5582
6910
|
/** @description Additional arbitrary parameters allowed. */
|
|
5583
6911
|
params?: components["parameters"]["Serve_StartPostAdditionalParam"];
|
|
5584
6912
|
/** @description JSON encoded config overrides applied for this call only. */
|
|
@@ -5594,7 +6922,11 @@ export interface operations {
|
|
|
5594
6922
|
path?: never;
|
|
5595
6923
|
cookie?: never;
|
|
5596
6924
|
};
|
|
5597
|
-
requestBody?:
|
|
6925
|
+
requestBody?: {
|
|
6926
|
+
content: {
|
|
6927
|
+
"application/json": components["schemas"]["ServeStartRequest"];
|
|
6928
|
+
};
|
|
6929
|
+
};
|
|
5598
6930
|
responses: {
|
|
5599
6931
|
200: components["responses"]["ServeStartResponse"];
|
|
5600
6932
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5603,9 +6935,9 @@ export interface operations {
|
|
|
5603
6935
|
};
|
|
5604
6936
|
serveStop: {
|
|
5605
6937
|
parameters: {
|
|
5606
|
-
query
|
|
6938
|
+
query?: {
|
|
5607
6939
|
/** @description Identifier of the running serve instance returned by `serve/start`. */
|
|
5608
|
-
id
|
|
6940
|
+
id?: components["parameters"]["Serve_StopPostIdParam"];
|
|
5609
6941
|
/** @description Assign the request to a custom stats group. */
|
|
5610
6942
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
5611
6943
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -5615,7 +6947,11 @@ export interface operations {
|
|
|
5615
6947
|
path?: never;
|
|
5616
6948
|
cookie?: never;
|
|
5617
6949
|
};
|
|
5618
|
-
requestBody?:
|
|
6950
|
+
requestBody?: {
|
|
6951
|
+
content: {
|
|
6952
|
+
"application/json": components["schemas"]["ServeStopRequest"];
|
|
6953
|
+
};
|
|
6954
|
+
};
|
|
5619
6955
|
responses: {
|
|
5620
6956
|
200: components["responses"]["EmptyObjectResponse"];
|
|
5621
6957
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5634,7 +6970,11 @@ export interface operations {
|
|
|
5634
6970
|
path?: never;
|
|
5635
6971
|
cookie?: never;
|
|
5636
6972
|
};
|
|
5637
|
-
requestBody?:
|
|
6973
|
+
requestBody?: {
|
|
6974
|
+
content: {
|
|
6975
|
+
"application/json": components["schemas"]["ServeStopallRequest"];
|
|
6976
|
+
};
|
|
6977
|
+
};
|
|
5638
6978
|
responses: {
|
|
5639
6979
|
200: components["responses"]["EmptyObjectResponse"];
|
|
5640
6980
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5653,9 +6993,13 @@ export interface operations {
|
|
|
5653
6993
|
path?: never;
|
|
5654
6994
|
cookie?: never;
|
|
5655
6995
|
};
|
|
5656
|
-
requestBody?:
|
|
6996
|
+
requestBody?: {
|
|
6997
|
+
content: {
|
|
6998
|
+
"application/json": components["schemas"]["ServeTypesRequest"];
|
|
6999
|
+
};
|
|
7000
|
+
};
|
|
5657
7001
|
responses: {
|
|
5658
|
-
200: components["responses"]["
|
|
7002
|
+
200: components["responses"]["ServeTypesResponse"];
|
|
5659
7003
|
"4XX": components["responses"]["RcError"];
|
|
5660
7004
|
"5XX": components["responses"]["RcError"];
|
|
5661
7005
|
};
|
|
@@ -5676,7 +7020,11 @@ export interface operations {
|
|
|
5676
7020
|
path?: never;
|
|
5677
7021
|
cookie?: never;
|
|
5678
7022
|
};
|
|
5679
|
-
requestBody?:
|
|
7023
|
+
requestBody?: {
|
|
7024
|
+
content: {
|
|
7025
|
+
"application/json": components["schemas"]["VfsForgetRequest"];
|
|
7026
|
+
};
|
|
7027
|
+
};
|
|
5680
7028
|
responses: {
|
|
5681
7029
|
200: components["responses"]["VfsForgetResponse"];
|
|
5682
7030
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5697,7 +7045,11 @@ export interface operations {
|
|
|
5697
7045
|
path?: never;
|
|
5698
7046
|
cookie?: never;
|
|
5699
7047
|
};
|
|
5700
|
-
requestBody?:
|
|
7048
|
+
requestBody?: {
|
|
7049
|
+
content: {
|
|
7050
|
+
"application/json": components["schemas"]["VfsListRequest"];
|
|
7051
|
+
};
|
|
7052
|
+
};
|
|
5701
7053
|
responses: {
|
|
5702
7054
|
200: components["responses"]["VfsListResponse"];
|
|
5703
7055
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5722,7 +7074,11 @@ export interface operations {
|
|
|
5722
7074
|
path?: never;
|
|
5723
7075
|
cookie?: never;
|
|
5724
7076
|
};
|
|
5725
|
-
requestBody?:
|
|
7077
|
+
requestBody?: {
|
|
7078
|
+
content: {
|
|
7079
|
+
"application/json": components["schemas"]["VfsPollIntervalRequest"];
|
|
7080
|
+
};
|
|
7081
|
+
};
|
|
5726
7082
|
responses: {
|
|
5727
7083
|
200: components["responses"]["VfsPollIntervalResponse"];
|
|
5728
7084
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5743,7 +7099,11 @@ export interface operations {
|
|
|
5743
7099
|
path?: never;
|
|
5744
7100
|
cookie?: never;
|
|
5745
7101
|
};
|
|
5746
|
-
requestBody?:
|
|
7102
|
+
requestBody?: {
|
|
7103
|
+
content: {
|
|
7104
|
+
"application/json": components["schemas"]["VfsQueueRequest"];
|
|
7105
|
+
};
|
|
7106
|
+
};
|
|
5747
7107
|
responses: {
|
|
5748
7108
|
200: components["responses"]["VfsQueueResponse"];
|
|
5749
7109
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5752,13 +7112,13 @@ export interface operations {
|
|
|
5752
7112
|
};
|
|
5753
7113
|
vfsQueueSetExpiry: {
|
|
5754
7114
|
parameters: {
|
|
5755
|
-
query
|
|
7115
|
+
query?: {
|
|
5756
7116
|
/** @description Optional VFS identifier for the queued item. */
|
|
5757
7117
|
fs?: components["parameters"]["Vfs_QueueSetExpiryPostFsParam"];
|
|
5758
7118
|
/** @description Queue item ID as returned by `vfs/queue`. */
|
|
5759
|
-
id
|
|
7119
|
+
id?: components["parameters"]["Vfs_QueueSetExpiryPostIdParam"];
|
|
5760
7120
|
/** @description New eligibility time in seconds (may be negative for immediate upload). */
|
|
5761
|
-
expiry
|
|
7121
|
+
expiry?: components["parameters"]["Vfs_QueueSetExpiryPostExpiryParam"];
|
|
5762
7122
|
/** @description Set to true to treat `expiry` as relative to the current value. */
|
|
5763
7123
|
relative?: components["parameters"]["Vfs_QueueSetExpiryPostRelativeParam"];
|
|
5764
7124
|
/** @description Assign the request to a custom stats group. */
|
|
@@ -5770,7 +7130,11 @@ export interface operations {
|
|
|
5770
7130
|
path?: never;
|
|
5771
7131
|
cookie?: never;
|
|
5772
7132
|
};
|
|
5773
|
-
requestBody?:
|
|
7133
|
+
requestBody?: {
|
|
7134
|
+
content: {
|
|
7135
|
+
"application/json": components["schemas"]["VfsQueueSetExpiryRequest"];
|
|
7136
|
+
};
|
|
7137
|
+
};
|
|
5774
7138
|
responses: {
|
|
5775
7139
|
200: components["responses"]["EmptyObjectResponse"];
|
|
5776
7140
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5795,7 +7159,11 @@ export interface operations {
|
|
|
5795
7159
|
path?: never;
|
|
5796
7160
|
cookie?: never;
|
|
5797
7161
|
};
|
|
5798
|
-
requestBody?:
|
|
7162
|
+
requestBody?: {
|
|
7163
|
+
content: {
|
|
7164
|
+
"application/json": components["schemas"]["VfsRefreshRequest"];
|
|
7165
|
+
};
|
|
7166
|
+
};
|
|
5799
7167
|
responses: {
|
|
5800
7168
|
200: components["responses"]["VfsRefreshResponse"];
|
|
5801
7169
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5816,7 +7184,11 @@ export interface operations {
|
|
|
5816
7184
|
path?: never;
|
|
5817
7185
|
cookie?: never;
|
|
5818
7186
|
};
|
|
5819
|
-
requestBody?:
|
|
7187
|
+
requestBody?: {
|
|
7188
|
+
content: {
|
|
7189
|
+
"application/json": components["schemas"]["VfsStatsRequest"];
|
|
7190
|
+
};
|
|
7191
|
+
};
|
|
5820
7192
|
responses: {
|
|
5821
7193
|
200: components["responses"]["VfsStatsResponse"];
|
|
5822
7194
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5825,9 +7197,9 @@ export interface operations {
|
|
|
5825
7197
|
};
|
|
5826
7198
|
pluginsctlAddPlugin: {
|
|
5827
7199
|
parameters: {
|
|
5828
|
-
query
|
|
7200
|
+
query?: {
|
|
5829
7201
|
/** @description Repository URL of the plugin to install. */
|
|
5830
|
-
url
|
|
7202
|
+
url?: components["parameters"]["Pluginsctl_AddPluginPostUrlParam"];
|
|
5831
7203
|
/** @description Assign the request to a custom stats group. */
|
|
5832
7204
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
5833
7205
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -5837,7 +7209,11 @@ export interface operations {
|
|
|
5837
7209
|
path?: never;
|
|
5838
7210
|
cookie?: never;
|
|
5839
7211
|
};
|
|
5840
|
-
requestBody?:
|
|
7212
|
+
requestBody?: {
|
|
7213
|
+
content: {
|
|
7214
|
+
"application/json": components["schemas"]["PluginsctlAddPluginRequest"];
|
|
7215
|
+
};
|
|
7216
|
+
};
|
|
5841
7217
|
responses: {
|
|
5842
7218
|
200: components["responses"]["EmptyObjectResponse"];
|
|
5843
7219
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5860,7 +7236,11 @@ export interface operations {
|
|
|
5860
7236
|
path?: never;
|
|
5861
7237
|
cookie?: never;
|
|
5862
7238
|
};
|
|
5863
|
-
requestBody?:
|
|
7239
|
+
requestBody?: {
|
|
7240
|
+
content: {
|
|
7241
|
+
"application/json": components["schemas"]["PluginsctlGetPluginsForTypeRequest"];
|
|
7242
|
+
};
|
|
7243
|
+
};
|
|
5864
7244
|
responses: {
|
|
5865
7245
|
200: components["responses"]["PluginsctlGetPluginsForTypeResponse"];
|
|
5866
7246
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5879,7 +7259,11 @@ export interface operations {
|
|
|
5879
7259
|
path?: never;
|
|
5880
7260
|
cookie?: never;
|
|
5881
7261
|
};
|
|
5882
|
-
requestBody?:
|
|
7262
|
+
requestBody?: {
|
|
7263
|
+
content: {
|
|
7264
|
+
"application/json": components["schemas"]["PluginsctlListPluginsRequest"];
|
|
7265
|
+
};
|
|
7266
|
+
};
|
|
5883
7267
|
responses: {
|
|
5884
7268
|
200: components["responses"]["PluginsctlListPluginsResponse"];
|
|
5885
7269
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5898,7 +7282,11 @@ export interface operations {
|
|
|
5898
7282
|
path?: never;
|
|
5899
7283
|
cookie?: never;
|
|
5900
7284
|
};
|
|
5901
|
-
requestBody?:
|
|
7285
|
+
requestBody?: {
|
|
7286
|
+
content: {
|
|
7287
|
+
"application/json": components["schemas"]["PluginsctlListTestPluginsRequest"];
|
|
7288
|
+
};
|
|
7289
|
+
};
|
|
5902
7290
|
responses: {
|
|
5903
7291
|
200: components["responses"]["PluginsctlListTestPluginsResponse"];
|
|
5904
7292
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5907,9 +7295,9 @@ export interface operations {
|
|
|
5907
7295
|
};
|
|
5908
7296
|
pluginsctlRemovePlugin: {
|
|
5909
7297
|
parameters: {
|
|
5910
|
-
query
|
|
7298
|
+
query?: {
|
|
5911
7299
|
/** @description Name of the plugin to uninstall. */
|
|
5912
|
-
name
|
|
7300
|
+
name?: components["parameters"]["Pluginsctl_RemovePluginPostNameParam"];
|
|
5913
7301
|
/** @description Assign the request to a custom stats group. */
|
|
5914
7302
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
5915
7303
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -5919,7 +7307,11 @@ export interface operations {
|
|
|
5919
7307
|
path?: never;
|
|
5920
7308
|
cookie?: never;
|
|
5921
7309
|
};
|
|
5922
|
-
requestBody?:
|
|
7310
|
+
requestBody?: {
|
|
7311
|
+
content: {
|
|
7312
|
+
"application/json": components["schemas"]["PluginsctlRemovePluginRequest"];
|
|
7313
|
+
};
|
|
7314
|
+
};
|
|
5923
7315
|
responses: {
|
|
5924
7316
|
200: components["responses"]["EmptyResponse"];
|
|
5925
7317
|
"4XX": components["responses"]["RcError"];
|
|
@@ -5928,9 +7320,9 @@ export interface operations {
|
|
|
5928
7320
|
};
|
|
5929
7321
|
pluginsctlRemoveTestPlugin: {
|
|
5930
7322
|
parameters: {
|
|
5931
|
-
query
|
|
7323
|
+
query?: {
|
|
5932
7324
|
/** @description Name of the test plugin to uninstall. */
|
|
5933
|
-
name
|
|
7325
|
+
name?: components["parameters"]["Pluginsctl_RemoveTestPluginPostNameParam"];
|
|
5934
7326
|
/** @description Assign the request to a custom stats group. */
|
|
5935
7327
|
_group?: components["parameters"]["GlobalGroupParam"];
|
|
5936
7328
|
/** @description Run the command asynchronously. Returns a job id immediately. */
|
|
@@ -5940,7 +7332,11 @@ export interface operations {
|
|
|
5940
7332
|
path?: never;
|
|
5941
7333
|
cookie?: never;
|
|
5942
7334
|
};
|
|
5943
|
-
requestBody?:
|
|
7335
|
+
requestBody?: {
|
|
7336
|
+
content: {
|
|
7337
|
+
"application/json": components["schemas"]["PluginsctlRemoveTestPluginRequest"];
|
|
7338
|
+
};
|
|
7339
|
+
};
|
|
5944
7340
|
responses: {
|
|
5945
7341
|
200: components["responses"]["EmptyResponse"];
|
|
5946
7342
|
"4XX": components["responses"]["RcError"];
|