rclone-openapi 1.72.1 → 1.73.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. package/README.md +1 -0
  2. package/openapi.json +3611 -9
  3. package/openapi.yaml +3086 -758
  4. package/package.json +5 -4
  5. package/types.d.ts +1839 -310
package/types.d.ts CHANGED
@@ -164,6 +164,26 @@ export interface paths {
164
164
  patch?: never;
165
165
  trace?: never;
166
166
  };
167
+ "/operations/hashsumfile": {
168
+ parameters: {
169
+ query?: never;
170
+ header?: never;
171
+ path?: never;
172
+ cookie?: never;
173
+ };
174
+ get?: never;
175
+ put?: never;
176
+ /**
177
+ * Hash a single file
178
+ * @description Returns the hash of a single file using the specified hash algorithm.
179
+ */
180
+ post: operations["operationsHashsumfile"];
181
+ delete?: never;
182
+ options?: never;
183
+ head?: never;
184
+ patch?: never;
185
+ trace?: never;
186
+ };
167
187
  "/operations/movefile": {
168
188
  parameters: {
169
189
  query?: never;
@@ -2063,231 +2083,1303 @@ export interface components {
2063
2083
  } & {
2064
2084
  [key: string]: unknown;
2065
2085
  };
2066
- };
2067
- responses: {
2068
- /** @description Any error response (HTTP 4xx/5xx) */
2069
- RcError: {
2070
- headers: {
2071
- [name: string]: unknown;
2072
- };
2073
- content: {
2074
- "application/json": components["schemas"]["RcError"];
2086
+ RcNoopRequest: {
2087
+ /** @description Additional arbitrary parameters allowed. */
2088
+ params?: {
2089
+ [key: string]: unknown;
2075
2090
  };
2091
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2092
+ _async?: boolean;
2076
2093
  };
2077
- /** @description Results of the batch job execution. */
2078
- JobBatchResponse: {
2079
- headers: {
2080
- [name: string]: unknown;
2081
- };
2082
- content: {
2083
- "application/json": {
2084
- /** @description Identifier for this rclone process. */
2085
- executeId: string;
2086
- /** @description ID of the async job. */
2087
- jobid: number;
2088
- };
2089
- };
2094
+ OperationsCleanupRequest: {
2095
+ /** @description Remote name or path to clean up, for example `drive:`. */
2096
+ fs: string;
2097
+ /** @description Assign the request to a custom stats group. */
2098
+ _group?: string;
2099
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2100
+ _async?: boolean;
2090
2101
  };
2091
- /** @description Request succeeded with no response body. */
2092
- EmptyResponse: {
2093
- headers: {
2094
- [name: string]: unknown;
2095
- };
2096
- content?: never;
2102
+ OperationsCopyfileRequest: {
2103
+ /** @description Source remote name or path, such as `drive:` or `/` for the local filesystem. */
2104
+ srcFs: string;
2105
+ /** @description Path to the source object within `srcFs`, for example `dir/file.txt`. */
2106
+ srcRemote: string;
2107
+ /** @description Destination remote name or path, such as `drive2:` or `/` for local filesystem. */
2108
+ dstFs: string;
2109
+ /** @description Target path within `dstFs` where the file should be written. */
2110
+ dstRemote: string;
2111
+ /** @description Assign the request to a custom stats group. */
2112
+ _group?: string;
2113
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2114
+ _async?: boolean;
2097
2115
  };
2098
- /** @description Request succeeded returning an empty JSON object. */
2099
- EmptyObjectResponse: {
2100
- headers: {
2101
- [name: string]: unknown;
2102
- };
2103
- content: {
2104
- "application/json": Record<string, never>;
2105
- };
2116
+ OperationsCopyurlRequest: {
2117
+ /** @description Remote name or path that will receive the downloaded file, e.g. `drive:`. */
2118
+ fs: string;
2119
+ /** @description Destination path within `fs` where the fetched object will be stored. */
2120
+ remote: string;
2121
+ /** @description Source URL to fetch the object from. */
2122
+ url: string;
2123
+ /** @description Set to true to derive the destination filename from the URL. */
2124
+ autoFilename?: boolean;
2125
+ /** @description Assign the request to a custom stats group. */
2126
+ _group?: string;
2127
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2128
+ _async?: boolean;
2106
2129
  };
2107
- /** @description Response for sync operations, containing job ID if async. */
2108
- SyncJobResponse: {
2109
- headers: {
2110
- [name: string]: unknown;
2111
- };
2112
- content: {
2113
- "application/json": {
2114
- /** @description Job ID of the operation. */
2115
- jobid?: number;
2116
- };
2117
- };
2130
+ OperationsDeleteRequest: {
2131
+ /** @description Remote name or path whose contents should be removed. */
2132
+ fs: string;
2133
+ /** @description JSON encoded config overrides applied for this call only. */
2134
+ _config?: string;
2135
+ /** @description JSON encoded filter overrides applied for this call only. */
2136
+ _filter?: string;
2137
+ /** @description Assign the request to a custom stats group. */
2138
+ _group?: string;
2139
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2140
+ _async?: boolean;
2118
2141
  };
2119
- /** @description Echoes any supplied parameters, useful for testing RC connectivity. */
2120
- RcNoopResponse: {
2121
- headers: {
2122
- [name: string]: unknown;
2123
- };
2124
- content: {
2125
- "application/json": {
2126
- [key: string]: unknown;
2127
- };
2128
- };
2142
+ OperationsDeletefileRequest: {
2143
+ /** @description Remote name or path that contains the file to delete. */
2144
+ fs: string;
2145
+ /** @description Exact path to the file within `fs` that should be deleted. */
2146
+ remote: string;
2147
+ /** @description Assign the request to a custom stats group. */
2148
+ _group?: string;
2149
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2150
+ _async?: boolean;
2129
2151
  };
2130
- /** @description Capabilities, supported hashes, and metadata for the specified remote. */
2131
- OperationsFsinfoResponse: {
2132
- headers: {
2133
- [name: string]: unknown;
2134
- };
2135
- content: {
2136
- "application/json": {
2137
- Features: {
2138
- [key: string]: boolean;
2139
- };
2140
- Hashes: string[];
2141
- MetadataInfo?: {
2142
- [key: string]: unknown;
2143
- } | null;
2144
- Name: string;
2145
- Precision: number;
2146
- Root: string;
2147
- String: string;
2148
- };
2149
- };
2152
+ OperationsFsinfoRequest: {
2153
+ /** @description Remote name or path to inspect, e.g. `drive:`. */
2154
+ fs: string;
2155
+ /** @description Assign the request to a custom stats group. */
2156
+ _group?: string;
2157
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2158
+ _async?: boolean;
2150
2159
  };
2151
- /** @description Hash algorithm used and the ordered hash lines emitted by `operations/hashsum`. */
2152
- OperationsHashsumResponse: {
2153
- headers: {
2154
- [name: string]: unknown;
2155
- };
2156
- content: {
2157
- "application/json": {
2158
- hashType: string;
2159
- hashsum: string[];
2160
- };
2161
- };
2160
+ OperationsHashsumRequest: {
2161
+ /** @description Remote name or path to hash, such as `drive:` or `/`. */
2162
+ fs: string;
2163
+ /** @description Hash algorithm to use, e.g. `md5`, `sha1`, or another supported name. */
2164
+ hashType: string;
2165
+ /** @description Set to true to force reading the data instead of using remote checksums. */
2166
+ download?: boolean;
2167
+ /** @description Set to true to emit hash values in base64 rather than hexadecimal. */
2168
+ base64?: boolean;
2169
+ /** @description Assign the request to a custom stats group. */
2170
+ _group?: string;
2171
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2172
+ _async?: boolean;
2162
2173
  };
2163
- /** @description Public sharing URL returned by `operations/publiclink`. */
2164
- OperationsPubliclinkResponse: {
2165
- headers: {
2166
- [name: string]: unknown;
2167
- };
2168
- content: {
2169
- "application/json": {
2170
- /** Format: uri */
2171
- url: string;
2172
- };
2173
- };
2174
+ OperationsHashsumfileRequest: {
2175
+ /** @description Remote name or path containing the file to hash. */
2176
+ fs: string;
2177
+ /** @description Path to the specific file within `fs` to hash. */
2178
+ remote: string;
2179
+ /** @description Hash algorithm to use, e.g. `md5`, `sha1`, or another supported name. */
2180
+ hashType: string;
2181
+ /** @description Set to true to force reading the data instead of using remote checksums. */
2182
+ download?: boolean;
2183
+ /** @description Set to true to emit the hash value in base64 rather than hexadecimal. */
2184
+ base64?: boolean;
2185
+ /** @description Assign the request to a custom stats group. */
2186
+ _group?: string;
2187
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2188
+ _async?: boolean;
2174
2189
  };
2175
- /** @description Aggregate object counts and total size from `operations/size`. */
2176
- OperationsSizeResponse: {
2177
- headers: {
2178
- [name: string]: unknown;
2179
- };
2180
- content: {
2181
- "application/json": {
2182
- bytes: number;
2183
- count: number;
2184
- sizeless: number;
2185
- };
2186
- };
2190
+ OperationsMovefileRequest: {
2191
+ /** @description Source remote name or path containing the file to move. */
2192
+ srcFs: string;
2193
+ /** @description Path to the source object within `srcFs`. */
2194
+ srcRemote: string;
2195
+ /** @description Destination remote name or path where the file will be moved. */
2196
+ dstFs: string;
2197
+ /** @description Destination path within `dstFs` for the moved object. */
2198
+ dstRemote: string;
2199
+ /** @description Assign the request to a custom stats group. */
2200
+ _group?: string;
2201
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2202
+ _async?: boolean;
2187
2203
  };
2188
- /** @description Effective bandwidth limits in bytes per second and human readable form. */
2189
- CoreBwlimitResponse: {
2190
- headers: {
2191
- [name: string]: unknown;
2192
- };
2193
- content: {
2194
- "application/json": {
2195
- bytesPerSecond: number;
2196
- bytesPerSecondRx: number;
2197
- bytesPerSecondTx: number;
2198
- rate: string;
2199
- };
2200
- };
2204
+ OperationsPubliclinkRequest: {
2205
+ /** @description Remote name or path hosting the object for which to manage a public link. */
2206
+ fs: string;
2207
+ /** @description Path within `fs` to the object for which to create or remove a public link. */
2208
+ remote: string;
2209
+ /** @description Set to true to remove an existing public link instead of creating one. */
2210
+ unlink?: boolean;
2211
+ /** @description Optional expiration time for the public link, formatted as supported by the backend. */
2212
+ expire?: string;
2213
+ /** @description Assign the request to a custom stats group. */
2214
+ _group?: string;
2215
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2216
+ _async?: boolean;
2201
2217
  };
2202
- /** @description Outcome of a command executed with `core/command`, including streamed result. */
2203
- CoreCommandResponse: {
2204
- headers: {
2205
- [name: string]: unknown;
2206
- };
2207
- content: {
2208
- "application/json": {
2209
- error: boolean;
2210
- result?: string | null;
2211
- returnType?: string | null;
2212
- };
2213
- };
2218
+ OperationsRmdirsRequest: {
2219
+ /** @description Remote name or path to scan for empty directories. */
2220
+ fs: string;
2221
+ /** @description Path within `fs` whose empty subdirectories should be removed. */
2222
+ remote: string;
2223
+ /** @description Set to true to preserve the top-level directory even if empty. */
2224
+ leaveRoot?: boolean;
2225
+ /** @description Assign the request to a custom stats group. */
2226
+ _group?: string;
2227
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2228
+ _async?: boolean;
2214
2229
  };
2215
- /** @description Disk usage summary for the requested directory. */
2216
- CoreDuResponse: {
2217
- headers: {
2218
- [name: string]: unknown;
2219
- };
2220
- content: {
2221
- "application/json": {
2222
- dir: string;
2223
- info: {
2224
- Free: number;
2225
- Available: number;
2226
- Total: number;
2227
- };
2228
- };
2229
- };
2230
+ OperationsSettierRequest: {
2231
+ /** @description Remote name or path whose storage class tier should be changed. */
2232
+ fs: string;
2233
+ /** @description Assign the request to a custom stats group. */
2234
+ _group?: string;
2235
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2236
+ _async?: boolean;
2230
2237
  };
2231
- /** @description Completed transfer records including size, status, and timestamps. */
2232
- CoreTransferredResponse: {
2233
- headers: {
2234
- [name: string]: unknown;
2235
- };
2236
- content: {
2237
- "application/json": {
2238
- transferred: ({
2239
- /** @description Stats group identifier this transfer belonged to. */
2240
- group: string;
2241
- /** @description Source remote or filesystem used for the transfer. */
2242
- srcFs?: string;
2243
- /** @description Destination remote or filesystem used for the transfer. */
2244
- dstFs?: string;
2245
- /** @description Source path within `srcFs`, when provided. */
2246
- srcRemote?: string;
2247
- /** @description Destination path within `dstFs`, when provided. */
2248
- dstRemote?: string;
2249
- name?: string;
2250
- size?: number;
2251
- bytes?: number;
2252
- checked?: boolean;
2253
- /** @enum {string} */
2254
- what?: "transferring" | "deleting" | "checking" | "importing" | "hashing" | "merging" | "listing" | "moving" | "renaming";
2255
- /** @description ISO8601 timestamp when the transfer started. */
2256
- started_at?: string;
2257
- /** @description ISO8601 timestamp when the transfer completed. */
2258
- completed_at?: string;
2259
- timestamp?: number;
2260
- error?: string;
2261
- jobid?: number;
2262
- } & {
2263
- [key: string]: unknown;
2264
- })[];
2265
- };
2266
- };
2238
+ OperationsSettierfileRequest: {
2239
+ /** @description Remote name or path that contains the object whose tier should change. */
2240
+ fs: string;
2241
+ /** @description Path within `fs` to the object whose storage class tier should be updated. */
2242
+ remote: string;
2243
+ /** @description Assign the request to a custom stats group. */
2244
+ _group?: string;
2245
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2246
+ _async?: boolean;
2267
2247
  };
2268
- /** @description Previous garbage collection target percentage returned after update. */
2269
- DebugSetGcPercentResponse: {
2270
- headers: {
2271
- [name: string]: unknown;
2272
- };
2273
- content: {
2274
- "application/json": {
2275
- "existing-gc-percent": number;
2276
- };
2277
- };
2248
+ OperationsSizeRequest: {
2249
+ /** @description Remote name or path to measure aggregate size information for. */
2250
+ fs: string;
2251
+ /** @description Assign the request to a custom stats group. */
2252
+ _group?: string;
2253
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2254
+ _async?: boolean;
2278
2255
  };
2279
- /** @description Previous mutex profiling sampling rate. */
2280
- DebugSetMutexProfileFractionResponse: {
2281
- headers: {
2282
- [name: string]: unknown;
2283
- };
2284
- content: {
2285
- "application/json": {
2286
- previousRate: number;
2287
- };
2288
- };
2256
+ CoreBwlimitRequest: {
2257
+ /** @description Bandwidth limit to apply, for example `off`, `5M`, or a schedule string. */
2258
+ rate?: string;
2259
+ /** @description Assign the request to a custom stats group. */
2260
+ _group?: string;
2261
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2262
+ _async?: boolean;
2289
2263
  };
2290
- /** @description Previous soft memory limit before the change. */
2264
+ CoreCommandRequest: {
2265
+ /** @description Name of the rclone command to execute, for example `ls` or `lsf`. */
2266
+ command: string;
2267
+ /** @description Optional positional arguments for the command. Repeat to supply multiple values. */
2268
+ arg?: string[];
2269
+ /** @description Optional command options encoded as a JSON string. */
2270
+ opt?: string;
2271
+ /** @description Controls how output is returned; accepts `COMBINED_OUTPUT`, `STREAM`, `STREAM_ONLY_STDOUT`, or `STREAM_ONLY_STDERR`. */
2272
+ returnType?: string;
2273
+ /** @description Assign the request to a custom stats group. */
2274
+ _group?: string;
2275
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2276
+ _async?: boolean;
2277
+ };
2278
+ CoreDuRequest: {
2279
+ /** @description Local directory path to report disk usage for. Defaults to the rclone cache directory when omitted. */
2280
+ dir?: string;
2281
+ /** @description Assign the request to a custom stats group. */
2282
+ _group?: string;
2283
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2284
+ _async?: boolean;
2285
+ };
2286
+ CoreGcRequest: {
2287
+ /** @description Assign the request to a custom stats group. */
2288
+ _group?: string;
2289
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2290
+ _async?: boolean;
2291
+ };
2292
+ CoreGroupListRequest: {
2293
+ /** @description Assign the request to a custom stats group. */
2294
+ _group?: string;
2295
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2296
+ _async?: boolean;
2297
+ };
2298
+ CoreMemstatsRequest: {
2299
+ /** @description Assign the request to a custom stats group. */
2300
+ _group?: string;
2301
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2302
+ _async?: boolean;
2303
+ };
2304
+ CoreObscureRequest: {
2305
+ /** @description Plain-text string to obscure for storage in the config file. */
2306
+ clear: string;
2307
+ /** @description Assign the request to a custom stats group. */
2308
+ _group?: string;
2309
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2310
+ _async?: boolean;
2311
+ };
2312
+ CorePidRequest: {
2313
+ /** @description Assign the request to a custom stats group. */
2314
+ _group?: string;
2315
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2316
+ _async?: boolean;
2317
+ };
2318
+ CoreQuitRequest: {
2319
+ /** @description Optional exit code to use when terminating the rclone process. */
2320
+ exitCode?: number;
2321
+ /** @description Assign the request to a custom stats group. */
2322
+ _group?: string;
2323
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2324
+ _async?: boolean;
2325
+ };
2326
+ CoreStatsDeleteRequest: {
2327
+ /** @description Stats group identifier to remove. */
2328
+ group: string;
2329
+ /** @description Assign the request to a custom stats group. */
2330
+ _group?: string;
2331
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2332
+ _async?: boolean;
2333
+ };
2334
+ CoreStatsResetRequest: {
2335
+ /** @description Stats group identifier whose counters should be reset. Leave unset to reset all groups. */
2336
+ group?: string;
2337
+ /** @description Assign the request to a custom stats group. */
2338
+ _group?: string;
2339
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2340
+ _async?: boolean;
2341
+ };
2342
+ CoreTransferredRequest: {
2343
+ /** @description Stats group identifier to filter the completed transfer list. Leave unset for all groups. */
2344
+ group?: string;
2345
+ /** @description Assign the request to a custom stats group. */
2346
+ _group?: string;
2347
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2348
+ _async?: boolean;
2349
+ };
2350
+ DebugSetBlockProfileRateRequest: {
2351
+ /** @description Sampling interval in nanoseconds for blocking profile collection; use 1 to capture all events. */
2352
+ rate: number;
2353
+ /** @description Assign the request to a custom stats group. */
2354
+ _group?: string;
2355
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2356
+ _async?: boolean;
2357
+ };
2358
+ DebugSetGcPercentRequest: {
2359
+ /** @description Target percentage of newly allocated data to trigger garbage collection. */
2360
+ "gc-percent": number;
2361
+ /** @description Assign the request to a custom stats group. */
2362
+ _group?: string;
2363
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2364
+ _async?: boolean;
2365
+ };
2366
+ DebugSetMutexProfileFractionRequest: {
2367
+ /** @description Sampling fraction for mutex contention profiling; set to 0 to disable. */
2368
+ rate: number;
2369
+ /** @description Assign the request to a custom stats group. */
2370
+ _group?: string;
2371
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2372
+ _async?: boolean;
2373
+ };
2374
+ DebugSetSoftMemoryLimitRequest: {
2375
+ /** @description Soft memory limit for the Go runtime in bytes. */
2376
+ "mem-limit": number;
2377
+ /** @description Assign the request to a custom stats group. */
2378
+ _group?: string;
2379
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2380
+ _async?: boolean;
2381
+ };
2382
+ FscacheClearRequest: {
2383
+ /** @description Assign the request to a custom stats group. */
2384
+ _group?: string;
2385
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2386
+ _async?: boolean;
2387
+ };
2388
+ FscacheEntriesRequest: {
2389
+ /** @description Assign the request to a custom stats group. */
2390
+ _group?: string;
2391
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2392
+ _async?: boolean;
2393
+ };
2394
+ MountListmountsRequest: {
2395
+ /** @description Assign the request to a custom stats group. */
2396
+ _group?: string;
2397
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2398
+ _async?: boolean;
2399
+ };
2400
+ MountMountRequest: {
2401
+ /** @description Remote path to mount, such as `drive:` or `remote:subdir`. */
2402
+ fs: string;
2403
+ /** @description Absolute local path where the remote should be mounted. */
2404
+ mountPoint: string;
2405
+ /** @description Optional mount implementation to use (`mount`, `cmount`, or `mount2`). */
2406
+ mountType?: string;
2407
+ /** @description Mount options encoded as JSON, matching flags accepted by `rclone mount`. */
2408
+ mountOpt?: string;
2409
+ /** @description VFS options encoded as JSON, matching flags accepted by `rclone mount`. */
2410
+ vfsOpt?: string;
2411
+ /** @description JSON encoded config overrides applied for this call only. */
2412
+ _config?: string;
2413
+ /** @description JSON encoded filter overrides applied for this call only. */
2414
+ _filter?: string;
2415
+ /** @description Assign the request to a custom stats group. */
2416
+ _group?: string;
2417
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2418
+ _async?: boolean;
2419
+ };
2420
+ MountTypesRequest: {
2421
+ /** @description Assign the request to a custom stats group. */
2422
+ _group?: string;
2423
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2424
+ _async?: boolean;
2425
+ };
2426
+ MountUnmountRequest: {
2427
+ /** @description Local mount point path to unmount. */
2428
+ mountPoint: string;
2429
+ /** @description Assign the request to a custom stats group. */
2430
+ _group?: string;
2431
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2432
+ _async?: boolean;
2433
+ };
2434
+ MountUnmountallRequest: {
2435
+ /** @description Assign the request to a custom stats group. */
2436
+ _group?: string;
2437
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2438
+ _async?: boolean;
2439
+ };
2440
+ RcNoopAuthRequest: {
2441
+ /** @description Additional arbitrary parameters allowed. */
2442
+ params?: {
2443
+ [key: string]: unknown;
2444
+ };
2445
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2446
+ _async?: boolean;
2447
+ };
2448
+ RcErrorRequest: {
2449
+ /** @description Additional arbitrary parameters allowed. */
2450
+ params?: {
2451
+ [key: string]: unknown;
2452
+ };
2453
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2454
+ _async?: boolean;
2455
+ };
2456
+ RcListRequest: {
2457
+ /** @description Assign the request to a custom stats group. */
2458
+ _group?: string;
2459
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2460
+ _async?: boolean;
2461
+ };
2462
+ BackendCommandRequest: {
2463
+ /** @description Backend-specific command to invoke. */
2464
+ command: string;
2465
+ /** @description Remote name or path the backend command should target. */
2466
+ fs?: string;
2467
+ /** @description Optional positional arguments for the backend command. */
2468
+ arg?: string[];
2469
+ /** @description Backend command options encoded as a JSON string. */
2470
+ opt?: string;
2471
+ /** @description Assign the request to a custom stats group. */
2472
+ _group?: string;
2473
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2474
+ _async?: boolean;
2475
+ };
2476
+ CacheExpireRequest: {
2477
+ /** @description Remote path to expire from the cache, e.g. `remote:path/to/dir`. */
2478
+ remote: string;
2479
+ /** @description Set to true to drop cached chunk data along with directory entries. */
2480
+ withData?: boolean;
2481
+ /** @description Assign the request to a custom stats group. */
2482
+ _group?: string;
2483
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2484
+ _async?: boolean;
2485
+ };
2486
+ CacheFetchRequest: {
2487
+ /** @description Comma-separated chunk specifier list (e.g. `0:10,25:30`) describing file pieces to prefetch. */
2488
+ chunks?: string;
2489
+ /** @description Additional arbitrary parameters allowed. */
2490
+ params?: {
2491
+ [key: string]: unknown;
2492
+ };
2493
+ /** @description Assign the request to a custom stats group. */
2494
+ _group?: string;
2495
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2496
+ _async?: boolean;
2497
+ };
2498
+ CacheStatsRequest: {
2499
+ /** @description Assign the request to a custom stats group. */
2500
+ _group?: string;
2501
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2502
+ _async?: boolean;
2503
+ };
2504
+ ConfigCreateRequest: {
2505
+ /** @description Name of the new remote configuration. */
2506
+ name: string;
2507
+ /** @description JSON object of configuration key/value pairs required for the remote. */
2508
+ parameters: string;
2509
+ /** @description Backend type identifier, such as `drive`, `s3`, or `dropbox`. */
2510
+ type: string;
2511
+ /** @description Optional JSON object controlling interactive behaviour (e.g. `obscure`, `continue`). */
2512
+ opt?: string;
2513
+ /** @description Assign the request to a custom stats group. */
2514
+ _group?: string;
2515
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2516
+ _async?: boolean;
2517
+ };
2518
+ ConfigDeleteRequest: {
2519
+ /** @description Name of the remote configuration to delete. */
2520
+ name: string;
2521
+ /** @description Assign the request to a custom stats group. */
2522
+ _group?: string;
2523
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2524
+ _async?: boolean;
2525
+ };
2526
+ ConfigDumpRequest: {
2527
+ /** @description Assign the request to a custom stats group. */
2528
+ _group?: string;
2529
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2530
+ _async?: boolean;
2531
+ };
2532
+ ConfigGetRequest: {
2533
+ /** @description Name of the remote configuration to fetch. */
2534
+ name: string;
2535
+ /** @description Assign the request to a custom stats group. */
2536
+ _group?: string;
2537
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2538
+ _async?: boolean;
2539
+ };
2540
+ ConfigListremotesRequest: {
2541
+ /** @description Assign the request to a custom stats group. */
2542
+ _group?: string;
2543
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2544
+ _async?: boolean;
2545
+ };
2546
+ ConfigPasswordRequest: {
2547
+ /** @description Name of the remote whose secrets should be updated. */
2548
+ name: string;
2549
+ /** @description JSON object of password answers, typically including `pass`. */
2550
+ parameters: string;
2551
+ /** @description Assign the request to a custom stats group. */
2552
+ _group?: string;
2553
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2554
+ _async?: boolean;
2555
+ };
2556
+ ConfigPathsRequest: {
2557
+ /** @description Assign the request to a custom stats group. */
2558
+ _group?: string;
2559
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2560
+ _async?: boolean;
2561
+ };
2562
+ ConfigProvidersRequest: {
2563
+ /** @description Assign the request to a custom stats group. */
2564
+ _group?: string;
2565
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2566
+ _async?: boolean;
2567
+ };
2568
+ ConfigSetpathRequest: {
2569
+ /** @description Absolute path to the `rclone.conf` file that rclone should use. */
2570
+ path: string;
2571
+ /** @description Assign the request to a custom stats group. */
2572
+ _group?: string;
2573
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2574
+ _async?: boolean;
2575
+ };
2576
+ ConfigUnlockRequest: {
2577
+ /** @description Password used to unlock an encrypted config file. */
2578
+ configPassword: string;
2579
+ /** @description Assign the request to a custom stats group. */
2580
+ _group?: string;
2581
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2582
+ _async?: boolean;
2583
+ };
2584
+ ConfigUpdateRequest: {
2585
+ /** @description Name of the remote configuration to update. */
2586
+ name: string;
2587
+ /** @description JSON object of configuration key/value pairs to apply to the remote. */
2588
+ parameters: string;
2589
+ /** @description Optional JSON object controlling update behaviour (e.g. `obscure`, `continue`). */
2590
+ opt?: string;
2591
+ /** @description Assign the request to a custom stats group. */
2592
+ _group?: string;
2593
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2594
+ _async?: boolean;
2595
+ };
2596
+ CoreVersionRequest: {
2597
+ /** @description Assign the request to a custom stats group. */
2598
+ _group?: string;
2599
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2600
+ _async?: boolean;
2601
+ };
2602
+ CoreStatsRequest: {
2603
+ /** @description Stats group identifier to return a snapshot for. Leave unset to include all groups. */
2604
+ group?: string;
2605
+ /** @description When true, omit the `transferring` and `checking` arrays from the response. */
2606
+ short?: boolean;
2607
+ /** @description Assign the request to a custom stats group. */
2608
+ _group?: string;
2609
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2610
+ _async?: boolean;
2611
+ };
2612
+ JobListRequest: {
2613
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2614
+ _async?: boolean;
2615
+ };
2616
+ JobStatusRequest: {
2617
+ /** @description Numeric identifier of the job to query, as returned from an async call. */
2618
+ jobid: number;
2619
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2620
+ _async?: boolean;
2621
+ };
2622
+ JobStopRequest: {
2623
+ /** @description Numeric identifier of the job to cancel. */
2624
+ jobid: number;
2625
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2626
+ _async?: boolean;
2627
+ };
2628
+ JobStopgroupRequest: {
2629
+ /** @description Stats group name whose active jobs should be stopped. */
2630
+ group: string;
2631
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2632
+ _async?: boolean;
2633
+ };
2634
+ OperationsListRequest: {
2635
+ /** @description Remote name or path to list, for example `drive:`. */
2636
+ fs: string;
2637
+ /** @description Directory path within `fs` to list; leave empty to target the root. */
2638
+ remote: string;
2639
+ /** @description Optional JSON-encoded object of listing flags (e.g. `{ "recurse": true, "showHash": true }`). */
2640
+ opt?: string;
2641
+ /** @description Set to true to list directories recursively. */
2642
+ recurse?: boolean;
2643
+ /** @description Set to true to omit modification times for faster listings on some backends. */
2644
+ noModTime?: boolean;
2645
+ /** @description Set to true to include encrypted names when using crypt remotes. */
2646
+ showEncrypted?: boolean;
2647
+ /** @description Set to true to include original backend identifiers where available. */
2648
+ showOrigIDs?: boolean;
2649
+ /** @description Set to true to include hash digests for each entry. */
2650
+ showHash?: boolean;
2651
+ /** @description Set to true to omit MIME type detection. */
2652
+ noMimeType?: boolean;
2653
+ /** @description Set to true to return only directory entries. */
2654
+ dirsOnly?: boolean;
2655
+ /** @description Set to true to return only file entries. */
2656
+ filesOnly?: boolean;
2657
+ /** @description Set to true to include backend-provided metadata maps. */
2658
+ metadata?: boolean;
2659
+ /** @description Specify one or more hash algorithms to include when `showHash` is true (e.g. `md5`). */
2660
+ hashTypes?: string[];
2661
+ /** @description Assign the request to a custom stats group. */
2662
+ _group?: string;
2663
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2664
+ _async?: boolean;
2665
+ };
2666
+ OperationsStatRequest: {
2667
+ /** @description Remote name or path that contains the item to inspect. */
2668
+ fs: string;
2669
+ /** @description Path to the file or directory within `fs` to describe. */
2670
+ remote: string;
2671
+ /** @description Optional JSON object of listing flags, matching those accepted by `operations/list`. */
2672
+ opt?: string;
2673
+ /** @description Assign the request to a custom stats group. */
2674
+ _group?: string;
2675
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2676
+ _async?: boolean;
2677
+ };
2678
+ OperationsAboutRequest: {
2679
+ /** @description Remote name or path to query for capacity information. */
2680
+ fs: string;
2681
+ /** @description Assign the request to a custom stats group. */
2682
+ _group?: string;
2683
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2684
+ _async?: boolean;
2685
+ };
2686
+ OperationsPurgeRequest: {
2687
+ /** @description Remote name or path from which to remove all contents. */
2688
+ fs: string;
2689
+ /** @description Path within `fs` whose contents should be purged. */
2690
+ remote: string;
2691
+ /** @description JSON encoded config overrides applied for this call only. */
2692
+ _config?: string;
2693
+ /** @description JSON encoded filter overrides applied for this call only. */
2694
+ _filter?: string;
2695
+ /** @description Assign the request to a custom stats group. */
2696
+ _group?: string;
2697
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2698
+ _async?: boolean;
2699
+ };
2700
+ OperationsMkdirRequest: {
2701
+ /** @description Remote name or path in which to create a directory. */
2702
+ fs: string;
2703
+ /** @description Directory path within `fs` to create. */
2704
+ remote: string;
2705
+ /** @description Assign the request to a custom stats group. */
2706
+ _group?: string;
2707
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2708
+ _async?: boolean;
2709
+ };
2710
+ OperationsRmdirRequest: {
2711
+ /** @description Remote name or path containing the directory to remove. */
2712
+ fs: string;
2713
+ /** @description Directory path within `fs` to delete. */
2714
+ remote: string;
2715
+ /** @description Assign the request to a custom stats group. */
2716
+ _group?: string;
2717
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2718
+ _async?: boolean;
2719
+ };
2720
+ OperationsCheckRequest: {
2721
+ /** @description Source remote name or path to verify, e.g. `drive:`. */
2722
+ srcFs: string;
2723
+ /** @description Destination remote name or path that should match the source. */
2724
+ dstFs: string;
2725
+ /** @description Set to true to read file contents during comparison instead of relying on hashes. */
2726
+ download?: boolean;
2727
+ /** @description Hash name to expect in the supplied SUM file, such as `md5`. */
2728
+ checkFileHash?: string;
2729
+ /** @description Remote containing the checksum SUM file when using `checkFileHash`. */
2730
+ checkFileFs?: string;
2731
+ /** @description Path within `checkFileFs` to the checksum SUM file. */
2732
+ checkFileRemote?: string;
2733
+ /** @description Set to true to only ensure that source files exist on the destination. */
2734
+ oneWay?: boolean;
2735
+ /** @description Set to true to include a combined summary report in the response. */
2736
+ combined?: boolean;
2737
+ /** @description Set to true to report files missing from the source. */
2738
+ missingOnSrc?: boolean;
2739
+ /** @description Set to true to report files missing from the destination. */
2740
+ missingOnDst?: boolean;
2741
+ /** @description Set to true to include matching files in the report. */
2742
+ match?: boolean;
2743
+ /** @description Set to true to include differing files in the report. */
2744
+ differ?: boolean;
2745
+ /** @description Set to true to include entries that encountered errors. */
2746
+ error?: boolean;
2747
+ /** @description Assign the request to a custom stats group. */
2748
+ _group?: string;
2749
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2750
+ _async?: boolean;
2751
+ };
2752
+ SyncSyncRequest: {
2753
+ /** @description Source remote path to sync from, e.g. `drive:src`. */
2754
+ srcFs: string;
2755
+ /** @description Destination remote path to sync to, e.g. `drive:dst`. */
2756
+ dstFs: string;
2757
+ /** @description Set to true to create empty source directories on the destination. */
2758
+ createEmptySrcDirs?: boolean;
2759
+ /** @description JSON encoded config overrides applied for this call only. */
2760
+ _config?: string;
2761
+ /** @description JSON encoded filter overrides applied for this call only. */
2762
+ _filter?: string;
2763
+ /** @description Assign the request to a custom stats group. */
2764
+ _group?: string;
2765
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2766
+ _async?: boolean;
2767
+ };
2768
+ SyncCopyRequest: {
2769
+ /** @description Source remote path to copy from. */
2770
+ srcFs: string;
2771
+ /** @description Destination remote path to copy to. */
2772
+ dstFs: string;
2773
+ /** @description Set to true to replicate empty source directories on the destination. */
2774
+ createEmptySrcDirs?: boolean;
2775
+ /** @description JSON encoded config overrides applied for this call only. */
2776
+ _config?: string;
2777
+ /** @description JSON encoded filter overrides applied for this call only. */
2778
+ _filter?: string;
2779
+ /** @description Assign the request to a custom stats group. */
2780
+ _group?: string;
2781
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2782
+ _async?: boolean;
2783
+ };
2784
+ SyncMoveRequest: {
2785
+ /** @description Source remote path whose contents will be moved. */
2786
+ srcFs: string;
2787
+ /** @description Destination remote path that will receive moved files. */
2788
+ dstFs: string;
2789
+ /** @description Set to true to create empty source directories on the destination. */
2790
+ createEmptySrcDirs?: boolean;
2791
+ /** @description Set to true to delete empty directories from the source after the move completes. */
2792
+ deleteEmptySrcDirs?: boolean;
2793
+ /** @description JSON encoded config overrides applied for this call only. */
2794
+ _config?: string;
2795
+ /** @description JSON encoded filter overrides applied for this call only. */
2796
+ _filter?: string;
2797
+ /** @description Assign the request to a custom stats group. */
2798
+ _group?: string;
2799
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2800
+ _async?: boolean;
2801
+ };
2802
+ SyncBisyncRequest: {
2803
+ /** @description First remote directory, e.g. `drive:path1`. */
2804
+ path1: string;
2805
+ /** @description Second remote directory, e.g. `drive:path2`. */
2806
+ path2: string;
2807
+ /** @description Set to true to simulate the bisync run without making changes. */
2808
+ dryRun?: boolean;
2809
+ /** @description Set to true to perform a one-time resync, rebuilding bisync history. */
2810
+ resync?: boolean;
2811
+ /** @description Set to true to abort if `RCLONE_TEST` files are missing on either side. */
2812
+ checkAccess?: boolean;
2813
+ /** @description Override the access-check sentinel filename; defaults to `RCLONE_TEST`. */
2814
+ checkFilename?: string;
2815
+ /** @description Abort the run if deletions exceed this percentage (default 50). */
2816
+ maxDelete?: number;
2817
+ /** @description Set to true to bypass the `maxDelete` safety check. */
2818
+ force?: boolean;
2819
+ /** @description Controls final listing comparison; leave true for normal verification or set false to skip. */
2820
+ checkSync?: boolean;
2821
+ /** @description Set to true to mirror empty directories between the two paths. */
2822
+ createEmptySrcDirs?: boolean;
2823
+ /** @description Set to true to remove empty directories during cleanup. */
2824
+ removeEmptyDirs?: boolean;
2825
+ /** @description Path to an rclone filters file applied to both paths. */
2826
+ filtersFile?: string;
2827
+ /** @description Set to true to ignore checksum differences when comparing listings. */
2828
+ ignoreListingChecksum?: boolean;
2829
+ /** @description Set to true to allow retrying after certain recoverable errors. */
2830
+ resilient?: boolean;
2831
+ /** @description Directory path used to store bisync working files. */
2832
+ workdir?: string;
2833
+ /** @description Backup directory on the first remote for changed files. */
2834
+ backupdir1?: string;
2835
+ /** @description Backup directory on the second remote for changed files. */
2836
+ backupdir2?: string;
2837
+ /** @description Set to true to keep bisync working files after completion. */
2838
+ noCleanup?: boolean;
2839
+ /** @description JSON encoded config overrides applied for this call only. */
2840
+ _config?: string;
2841
+ /** @description JSON encoded filter overrides applied for this call only. */
2842
+ _filter?: string;
2843
+ /** @description Assign the request to a custom stats group. */
2844
+ _group?: string;
2845
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2846
+ _async?: boolean;
2847
+ };
2848
+ OptionsBlocksRequest: {
2849
+ /** @description Assign the request to a custom stats group. */
2850
+ _group?: string;
2851
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2852
+ _async?: boolean;
2853
+ };
2854
+ OptionsGetRequest: {
2855
+ /** @description Optional comma-separated list of option block names to return. */
2856
+ blocks?: string;
2857
+ /** @description Assign the request to a custom stats group. */
2858
+ _group?: string;
2859
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2860
+ _async?: boolean;
2861
+ };
2862
+ OptionsInfoRequest: {
2863
+ /** @description Optional comma-separated list of option block names to describe. */
2864
+ blocks?: string;
2865
+ /** @description Assign the request to a custom stats group. */
2866
+ _group?: string;
2867
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2868
+ _async?: boolean;
2869
+ };
2870
+ OptionsSetRequest: {
2871
+ /** @description Overrides for the `dlna` option block. */
2872
+ dlna?: {
2873
+ [key: string]: string | number | boolean | unknown[] | {
2874
+ [key: string]: unknown;
2875
+ };
2876
+ };
2877
+ /** @description Overrides for the `filter` option block. */
2878
+ filter?: {
2879
+ [key: string]: string | number | boolean | unknown[] | {
2880
+ [key: string]: unknown;
2881
+ };
2882
+ };
2883
+ /** @description Overrides for the `ftp` option block. */
2884
+ ftp?: {
2885
+ [key: string]: string | number | boolean | unknown[] | {
2886
+ [key: string]: unknown;
2887
+ };
2888
+ };
2889
+ /** @description Overrides for the `main` option block. */
2890
+ main?: {
2891
+ [key: string]: string | number | boolean | unknown[] | {
2892
+ [key: string]: unknown;
2893
+ };
2894
+ };
2895
+ /** @description Overrides for the `http` option block. */
2896
+ http?: {
2897
+ [key: string]: string | number | boolean | unknown[] | {
2898
+ [key: string]: unknown;
2899
+ };
2900
+ };
2901
+ /** @description Overrides for the `log` option block. */
2902
+ log?: {
2903
+ [key: string]: string | number | boolean | unknown[] | {
2904
+ [key: string]: unknown;
2905
+ };
2906
+ };
2907
+ /** @description Overrides for the `mount` option block. */
2908
+ mount?: {
2909
+ [key: string]: string | number | boolean | unknown[] | {
2910
+ [key: string]: unknown;
2911
+ };
2912
+ };
2913
+ /** @description Overrides for the `nfs` option block. */
2914
+ nfs?: {
2915
+ [key: string]: string | number | boolean | unknown[] | {
2916
+ [key: string]: unknown;
2917
+ };
2918
+ };
2919
+ /** @description Overrides for the `proxy` option block. */
2920
+ proxy?: {
2921
+ [key: string]: string | number | boolean | unknown[] | {
2922
+ [key: string]: unknown;
2923
+ };
2924
+ };
2925
+ /** @description Overrides for the `rc` option block. */
2926
+ rc?: {
2927
+ [key: string]: string | number | boolean | unknown[] | {
2928
+ [key: string]: unknown;
2929
+ };
2930
+ };
2931
+ /** @description Overrides for the `restic` option block. */
2932
+ restic?: {
2933
+ [key: string]: string | number | boolean | unknown[] | {
2934
+ [key: string]: unknown;
2935
+ };
2936
+ };
2937
+ /** @description Overrides for the `s3` option block. */
2938
+ s3?: {
2939
+ [key: string]: string | number | boolean | unknown[] | {
2940
+ [key: string]: unknown;
2941
+ };
2942
+ };
2943
+ /** @description Overrides for the `sftp` option block. */
2944
+ sftp?: {
2945
+ [key: string]: string | number | boolean | unknown[] | {
2946
+ [key: string]: unknown;
2947
+ };
2948
+ };
2949
+ /** @description Overrides for the `vfs` option block. */
2950
+ vfs?: {
2951
+ [key: string]: string | number | boolean | unknown[] | {
2952
+ [key: string]: unknown;
2953
+ };
2954
+ };
2955
+ /** @description Overrides for the `webdav` option block. */
2956
+ webdav?: {
2957
+ [key: string]: string | number | boolean | unknown[] | {
2958
+ [key: string]: unknown;
2959
+ };
2960
+ };
2961
+ /** @description Assign the request to a custom stats group. */
2962
+ _group?: string;
2963
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2964
+ _async?: boolean;
2965
+ } & {
2966
+ [key: string]: unknown;
2967
+ };
2968
+ OptionsLocalRequest: {
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
+ ServeListRequest: {
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
+ ServeStartRequest: {
2981
+ /** @description Type of server to start (e.g. `http`, `webdav`, `ftp`, `sftp`). */
2982
+ type: string;
2983
+ /** @description Remote path that will be served. */
2984
+ fs: string;
2985
+ /** @description Address and port to bind the server to, such as `:5572` or `localhost:8080`. */
2986
+ addr: string;
2987
+ /** @description Additional arbitrary parameters allowed. */
2988
+ params?: {
2989
+ [key: string]: unknown;
2990
+ };
2991
+ /** @description JSON encoded config overrides applied for this call only. */
2992
+ _config?: string;
2993
+ /** @description JSON encoded filter overrides applied for this call only. */
2994
+ _filter?: string;
2995
+ /** @description Assign the request to a custom stats group. */
2996
+ _group?: string;
2997
+ /** @description Run the command asynchronously. Returns a job id immediately. */
2998
+ _async?: boolean;
2999
+ };
3000
+ ServeStopRequest: {
3001
+ /** @description Identifier of the running serve instance returned by `serve/start`. */
3002
+ id: string;
3003
+ /** @description Assign the request to a custom stats group. */
3004
+ _group?: string;
3005
+ /** @description Run the command asynchronously. Returns a job id immediately. */
3006
+ _async?: boolean;
3007
+ };
3008
+ ServeStopallRequest: {
3009
+ /** @description Assign the request to a custom stats group. */
3010
+ _group?: string;
3011
+ /** @description Run the command asynchronously. Returns a job id immediately. */
3012
+ _async?: boolean;
3013
+ };
3014
+ ServeTypesRequest: {
3015
+ /** @description Assign the request to a custom stats group. */
3016
+ _group?: string;
3017
+ /** @description Run the command asynchronously. Returns a job id immediately. */
3018
+ _async?: boolean;
3019
+ };
3020
+ VfsForgetRequest: {
3021
+ /** @description Optional VFS identifier to target; required when more than one VFS is active. */
3022
+ fs?: string;
3023
+ /** @description Additional arbitrary parameters allowed. */
3024
+ params?: {
3025
+ [key: string]: unknown;
3026
+ };
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
+ VfsListRequest: {
3033
+ /** @description Optional VFS identifier; omit to list all active VFS instances. */
3034
+ fs?: string;
3035
+ /** @description Assign the request to a custom stats group. */
3036
+ _group?: string;
3037
+ /** @description Run the command asynchronously. Returns a job id immediately. */
3038
+ _async?: boolean;
3039
+ };
3040
+ VfsPollIntervalRequest: {
3041
+ /** @description Optional VFS identifier whose poll interval should be queried or modified. */
3042
+ fs?: string;
3043
+ /** @description Duration string (e.g. `5m`) to set as the new poll interval. */
3044
+ interval?: string;
3045
+ /** @description Duration to wait for the poll interval change to take effect; `0` waits indefinitely. */
3046
+ timeout?: 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
+ VfsQueueRequest: {
3053
+ /** @description Optional VFS identifier whose upload queue should be inspected. */
3054
+ fs?: string;
3055
+ /** @description Assign the request to a custom stats group. */
3056
+ _group?: string;
3057
+ /** @description Run the command asynchronously. Returns a job id immediately. */
3058
+ _async?: boolean;
3059
+ };
3060
+ VfsQueueSetExpiryRequest: {
3061
+ /** @description Optional VFS identifier for the queued item. */
3062
+ fs?: string;
3063
+ /** @description Queue item ID as returned by `vfs/queue`. */
3064
+ id: number;
3065
+ /** @description New eligibility time in seconds (may be negative for immediate upload). */
3066
+ expiry: number;
3067
+ /** @description Set to true to treat `expiry` as relative to the current value. */
3068
+ relative?: boolean;
3069
+ /** @description Assign the request to a custom stats group. */
3070
+ _group?: string;
3071
+ /** @description Run the command asynchronously. Returns a job id immediately. */
3072
+ _async?: boolean;
3073
+ };
3074
+ VfsRefreshRequest: {
3075
+ /** @description Optional VFS identifier whose directory cache should be refreshed. */
3076
+ fs?: string;
3077
+ /** @description Set to true to refresh entire directory trees. */
3078
+ recursive?: boolean;
3079
+ /** @description Additional arbitrary parameters allowed. */
3080
+ params?: {
3081
+ [key: string]: unknown;
3082
+ };
3083
+ /** @description Assign the request to a custom stats group. */
3084
+ _group?: string;
3085
+ /** @description Run the command asynchronously. Returns a job id immediately. */
3086
+ _async?: boolean;
3087
+ };
3088
+ VfsStatsRequest: {
3089
+ /** @description Optional VFS identifier whose statistics should be returned. */
3090
+ fs?: string;
3091
+ /** @description Assign the request to a custom stats group. */
3092
+ _group?: string;
3093
+ /** @description Run the command asynchronously. Returns a job id immediately. */
3094
+ _async?: boolean;
3095
+ };
3096
+ PluginsctlAddPluginRequest: {
3097
+ /** @description Repository URL of the plugin to install. */
3098
+ url: string;
3099
+ /** @description Assign the request to a custom stats group. */
3100
+ _group?: string;
3101
+ /** @description Run the command asynchronously. Returns a job id immediately. */
3102
+ _async?: boolean;
3103
+ };
3104
+ PluginsctlGetPluginsForTypeRequest: {
3105
+ /** @description MIME type to match when listing plugins. */
3106
+ type?: string;
3107
+ /** @description Filter results by plugin type (e.g. `test`). */
3108
+ pluginType?: string;
3109
+ /** @description Assign the request to a custom stats group. */
3110
+ _group?: string;
3111
+ /** @description Run the command asynchronously. Returns a job id immediately. */
3112
+ _async?: boolean;
3113
+ };
3114
+ PluginsctlListPluginsRequest: {
3115
+ /** @description Assign the request to a custom stats group. */
3116
+ _group?: string;
3117
+ /** @description Run the command asynchronously. Returns a job id immediately. */
3118
+ _async?: boolean;
3119
+ };
3120
+ PluginsctlListTestPluginsRequest: {
3121
+ /** @description Assign the request to a custom stats group. */
3122
+ _group?: string;
3123
+ /** @description Run the command asynchronously. Returns a job id immediately. */
3124
+ _async?: boolean;
3125
+ };
3126
+ PluginsctlRemovePluginRequest: {
3127
+ /** @description Name of the plugin to uninstall. */
3128
+ name: string;
3129
+ /** @description Assign the request to a custom stats group. */
3130
+ _group?: string;
3131
+ /** @description Run the command asynchronously. Returns a job id immediately. */
3132
+ _async?: boolean;
3133
+ };
3134
+ PluginsctlRemoveTestPluginRequest: {
3135
+ /** @description Name of the test plugin to uninstall. */
3136
+ name: string;
3137
+ /** @description Assign the request to a custom stats group. */
3138
+ _group?: string;
3139
+ /** @description Run the command asynchronously. Returns a job id immediately. */
3140
+ _async?: boolean;
3141
+ };
3142
+ };
3143
+ responses: {
3144
+ /** @description Any error response (HTTP 4xx/5xx) */
3145
+ RcError: {
3146
+ headers: {
3147
+ [name: string]: unknown;
3148
+ };
3149
+ content: {
3150
+ "application/json": components["schemas"]["RcError"];
3151
+ };
3152
+ };
3153
+ /** @description Results of the batch job execution. */
3154
+ JobBatchResponse: {
3155
+ headers: {
3156
+ [name: string]: unknown;
3157
+ };
3158
+ content: {
3159
+ "application/json": {
3160
+ /** @description Identifier for this rclone process. */
3161
+ executeId: string;
3162
+ /** @description ID of the async job. */
3163
+ jobid: number;
3164
+ };
3165
+ };
3166
+ };
3167
+ /** @description Request succeeded with no response body. */
3168
+ EmptyResponse: {
3169
+ headers: {
3170
+ [name: string]: unknown;
3171
+ };
3172
+ content?: never;
3173
+ };
3174
+ /** @description Request succeeded returning an empty JSON object. */
3175
+ EmptyObjectResponse: {
3176
+ headers: {
3177
+ [name: string]: unknown;
3178
+ };
3179
+ content: {
3180
+ "application/json": {
3181
+ [key: string]: unknown;
3182
+ };
3183
+ };
3184
+ };
3185
+ /** @description Response for sync operations, containing job ID if async. */
3186
+ SyncJobResponse: {
3187
+ headers: {
3188
+ [name: string]: unknown;
3189
+ };
3190
+ content: {
3191
+ "application/json": {
3192
+ /** @description Job ID of the operation. */
3193
+ jobid?: number;
3194
+ };
3195
+ };
3196
+ };
3197
+ /** @description Echoes any supplied parameters, useful for testing RC connectivity. */
3198
+ RcNoopResponse: {
3199
+ headers: {
3200
+ [name: string]: unknown;
3201
+ };
3202
+ content: {
3203
+ "application/json": {
3204
+ [key: string]: unknown;
3205
+ };
3206
+ };
3207
+ };
3208
+ /** @description Capabilities, supported hashes, and metadata for the specified remote. */
3209
+ OperationsFsinfoResponse: {
3210
+ headers: {
3211
+ [name: string]: unknown;
3212
+ };
3213
+ content: {
3214
+ "application/json": {
3215
+ Features: {
3216
+ [key: string]: boolean;
3217
+ };
3218
+ Hashes: string[];
3219
+ MetadataInfo?: {
3220
+ [key: string]: unknown;
3221
+ } | null;
3222
+ Name: string;
3223
+ Precision: number;
3224
+ Root: string;
3225
+ String: string;
3226
+ };
3227
+ };
3228
+ };
3229
+ /** @description Hash algorithm used and the ordered hash lines emitted by `operations/hashsum`. */
3230
+ OperationsHashsumResponse: {
3231
+ headers: {
3232
+ [name: string]: unknown;
3233
+ };
3234
+ content: {
3235
+ "application/json": {
3236
+ hashType: string;
3237
+ hashsum: string[];
3238
+ };
3239
+ };
3240
+ };
3241
+ /** @description Hash algorithm used and the hash value for a single file from `operations/hashsumfile`. */
3242
+ OperationsHashsumfileResponse: {
3243
+ headers: {
3244
+ [name: string]: unknown;
3245
+ };
3246
+ content: {
3247
+ "application/json": {
3248
+ /** @description The hash algorithm that was used. */
3249
+ hashType: string;
3250
+ /** @description The hash value of the file. */
3251
+ hash: string;
3252
+ };
3253
+ };
3254
+ };
3255
+ /** @description Public sharing URL returned by `operations/publiclink`. */
3256
+ OperationsPubliclinkResponse: {
3257
+ headers: {
3258
+ [name: string]: unknown;
3259
+ };
3260
+ content: {
3261
+ "application/json": {
3262
+ /** Format: uri */
3263
+ url: string;
3264
+ };
3265
+ };
3266
+ };
3267
+ /** @description Aggregate object counts and total size from `operations/size`. */
3268
+ OperationsSizeResponse: {
3269
+ headers: {
3270
+ [name: string]: unknown;
3271
+ };
3272
+ content: {
3273
+ "application/json": {
3274
+ bytes: number;
3275
+ count: number;
3276
+ sizeless: number;
3277
+ };
3278
+ };
3279
+ };
3280
+ /** @description Effective bandwidth limits in bytes per second and human readable form. */
3281
+ CoreBwlimitResponse: {
3282
+ headers: {
3283
+ [name: string]: unknown;
3284
+ };
3285
+ content: {
3286
+ "application/json": {
3287
+ bytesPerSecond: number;
3288
+ bytesPerSecondRx: number;
3289
+ bytesPerSecondTx: number;
3290
+ rate: string;
3291
+ };
3292
+ };
3293
+ };
3294
+ /** @description Outcome of a command executed with `core/command`, including streamed result. */
3295
+ CoreCommandResponse: {
3296
+ headers: {
3297
+ [name: string]: unknown;
3298
+ };
3299
+ content: {
3300
+ "application/json": {
3301
+ error: boolean;
3302
+ result?: string | null;
3303
+ returnType?: string | null;
3304
+ };
3305
+ };
3306
+ };
3307
+ /** @description Disk usage summary for the requested directory. */
3308
+ CoreDuResponse: {
3309
+ headers: {
3310
+ [name: string]: unknown;
3311
+ };
3312
+ content: {
3313
+ "application/json": {
3314
+ dir: string;
3315
+ info: {
3316
+ Free: number;
3317
+ Available: number;
3318
+ Total: number;
3319
+ };
3320
+ };
3321
+ };
3322
+ };
3323
+ /** @description Completed transfer records including size, status, and timestamps. */
3324
+ CoreTransferredResponse: {
3325
+ headers: {
3326
+ [name: string]: unknown;
3327
+ };
3328
+ content: {
3329
+ "application/json": {
3330
+ transferred: ({
3331
+ /** @description Stats group identifier this transfer belonged to. */
3332
+ group: string;
3333
+ /** @description Source remote or filesystem used for the transfer. */
3334
+ srcFs?: string;
3335
+ /** @description Destination remote or filesystem used for the transfer. */
3336
+ dstFs?: string;
3337
+ /** @description Source path within `srcFs`, when provided. */
3338
+ srcRemote?: string;
3339
+ /** @description Destination path within `dstFs`, when provided. */
3340
+ dstRemote?: string;
3341
+ name?: string;
3342
+ size?: number;
3343
+ bytes?: number;
3344
+ checked?: boolean;
3345
+ /** @enum {string} */
3346
+ what?: "transferring" | "deleting" | "checking" | "importing" | "hashing" | "merging" | "listing" | "moving" | "renaming";
3347
+ /** @description ISO8601 timestamp when the transfer started. */
3348
+ started_at?: string;
3349
+ /** @description ISO8601 timestamp when the transfer completed. */
3350
+ completed_at?: string;
3351
+ timestamp?: number;
3352
+ error?: string;
3353
+ jobid?: number;
3354
+ } & {
3355
+ [key: string]: unknown;
3356
+ })[];
3357
+ };
3358
+ };
3359
+ };
3360
+ /** @description Previous garbage collection target percentage returned after update. */
3361
+ DebugSetGcPercentResponse: {
3362
+ headers: {
3363
+ [name: string]: unknown;
3364
+ };
3365
+ content: {
3366
+ "application/json": {
3367
+ "existing-gc-percent": number;
3368
+ };
3369
+ };
3370
+ };
3371
+ /** @description Previous mutex profiling sampling rate. */
3372
+ DebugSetMutexProfileFractionResponse: {
3373
+ headers: {
3374
+ [name: string]: unknown;
3375
+ };
3376
+ content: {
3377
+ "application/json": {
3378
+ previousRate: number;
3379
+ };
3380
+ };
3381
+ };
3382
+ /** @description Previous soft memory limit before the change. */
2291
3383
  DebugSetSoftMemoryLimitResponse: {
2292
3384
  headers: {
2293
3385
  [name: string]: unknown;
@@ -3127,7 +4219,9 @@ export interface components {
3127
4219
  /** @description Assign the request to a custom stats group. */
3128
4220
  GlobalGroupParam: string;
3129
4221
  /** @description Additional arbitrary parameters allowed. */
3130
- Rc_NoopPostAdditionalParam: Record<string, never>;
4222
+ Rc_NoopPostAdditionalParam: {
4223
+ [key: string]: unknown;
4224
+ };
3131
4225
  /** @description Do this many commands concurrently. Defaults to --transfers if not set. */
3132
4226
  Job_BatchPostConcurrencyParam: number;
3133
4227
  /** @description List of inputs to the commands with an extra _path parameter. */
@@ -3171,6 +4265,16 @@ export interface components {
3171
4265
  Operations_HashsumPostDownloadParam: boolean;
3172
4266
  /** @description Set to true to emit hash values in base64 rather than hexadecimal. */
3173
4267
  Operations_HashsumPostBase64Param: boolean;
4268
+ /** @description Remote name or path containing the file to hash. */
4269
+ Operations_HashsumfilePostFsParam: string;
4270
+ /** @description Path to the specific file within `fs` to hash. */
4271
+ Operations_HashsumfilePostRemoteParam: string;
4272
+ /** @description Hash algorithm to use, e.g. `md5`, `sha1`, or another supported name. */
4273
+ Operations_HashsumfilePostHashTypeParam: string;
4274
+ /** @description Set to true to force reading the data instead of using remote checksums. */
4275
+ Operations_HashsumfilePostDownloadParam: boolean;
4276
+ /** @description Set to true to emit the hash value in base64 rather than hexadecimal. */
4277
+ Operations_HashsumfilePostBase64Param: boolean;
3174
4278
  /** @description Source remote name or path containing the file to move. */
3175
4279
  Operations_MovefilePostSrcFsParam: string;
3176
4280
  /** @description Path to the source object within `srcFs`. */
@@ -3248,9 +4352,13 @@ export interface components {
3248
4352
  /** @description Local mount point path to unmount. */
3249
4353
  Mount_UnmountPostMountPointParam: string;
3250
4354
  /** @description Additional arbitrary parameters allowed. */
3251
- Rc_NoopauthPostAdditionalParam: Record<string, never>;
4355
+ Rc_NoopauthPostAdditionalParam: {
4356
+ [key: string]: unknown;
4357
+ };
3252
4358
  /** @description Additional arbitrary parameters allowed. */
3253
- Rc_ErrorPostAdditionalParam: Record<string, never>;
4359
+ Rc_ErrorPostAdditionalParam: {
4360
+ [key: string]: unknown;
4361
+ };
3254
4362
  /** @description Backend-specific command to invoke. */
3255
4363
  Backend_CommandPostCommandParam: string;
3256
4364
  /** @description Remote name or path the backend command should target. */
@@ -3266,7 +4374,9 @@ export interface components {
3266
4374
  /** @description Comma-separated chunk specifier list (e.g. `0:10,25:30`) describing file pieces to prefetch. */
3267
4375
  Cache_FetchPostChunksParam: string;
3268
4376
  /** @description Additional arbitrary parameters allowed. */
3269
- Cache_FetchPostAdditionalParam: Record<string, never>;
4377
+ Cache_FetchPostAdditionalParam: {
4378
+ [key: string]: unknown;
4379
+ };
3270
4380
  /** @description Name of the new remote configuration. */
3271
4381
  Config_CreatePostNameParam: string;
3272
4382
  /** @description JSON object of configuration key/value pairs required for the remote. */
@@ -3532,13 +4642,17 @@ export interface components {
3532
4642
  /** @description Address and port to bind the server to, such as `:5572` or `localhost:8080`. */
3533
4643
  Serve_StartPostAddrParam: string;
3534
4644
  /** @description Additional arbitrary parameters allowed. */
3535
- Serve_StartPostAdditionalParam: Record<string, never>;
4645
+ Serve_StartPostAdditionalParam: {
4646
+ [key: string]: unknown;
4647
+ };
3536
4648
  /** @description Identifier of the running serve instance returned by `serve/start`. */
3537
4649
  Serve_StopPostIdParam: string;
3538
4650
  /** @description Optional VFS identifier to target; required when more than one VFS is active. */
3539
4651
  Vfs_ForgetPostFsParam: string;
3540
4652
  /** @description Additional arbitrary parameters allowed. */
3541
- Vfs_ForgetPostAdditionalParam: Record<string, never>;
4653
+ Vfs_ForgetPostAdditionalParam: {
4654
+ [key: string]: unknown;
4655
+ };
3542
4656
  /** @description Optional VFS identifier; omit to list all active VFS instances. */
3543
4657
  Vfs_ListPostFsParam: string;
3544
4658
  /** @description Optional VFS identifier whose poll interval should be queried or modified. */
@@ -3562,7 +4676,9 @@ export interface components {
3562
4676
  /** @description Set to true to refresh entire directory trees. */
3563
4677
  Vfs_RefreshPostRecursiveParam: boolean;
3564
4678
  /** @description Additional arbitrary parameters allowed. */
3565
- Vfs_RefreshPostAdditionalParam: Record<string, never>;
4679
+ Vfs_RefreshPostAdditionalParam: {
4680
+ [key: string]: unknown;
4681
+ };
3566
4682
  /** @description Optional VFS identifier whose statistics should be returned. */
3567
4683
  Vfs_StatsPostFsParam: string;
3568
4684
  /** @description Repository URL of the plugin to install. */
@@ -3594,7 +4710,11 @@ export interface operations {
3594
4710
  path?: never;
3595
4711
  cookie?: never;
3596
4712
  };
3597
- requestBody?: never;
4713
+ requestBody?: {
4714
+ content: {
4715
+ "application/json": components["schemas"]["RcNoopRequest"];
4716
+ };
4717
+ };
3598
4718
  responses: {
3599
4719
  200: components["responses"]["RcNoopResponse"];
3600
4720
  "4XX": components["responses"]["RcError"];
@@ -3615,7 +4735,11 @@ export interface operations {
3615
4735
  path?: never;
3616
4736
  cookie?: never;
3617
4737
  };
3618
- requestBody?: never;
4738
+ requestBody?: {
4739
+ content: {
4740
+ "application/json": components["schemas"]["OperationsCleanupRequest"];
4741
+ };
4742
+ };
3619
4743
  responses: {
3620
4744
  200: components["responses"]["EmptyObjectResponse"];
3621
4745
  "4XX": components["responses"]["RcError"];
@@ -3642,7 +4766,11 @@ export interface operations {
3642
4766
  path?: never;
3643
4767
  cookie?: never;
3644
4768
  };
3645
- requestBody?: never;
4769
+ requestBody?: {
4770
+ content: {
4771
+ "application/json": components["schemas"]["OperationsCopyfileRequest"];
4772
+ };
4773
+ };
3646
4774
  responses: {
3647
4775
  200: components["responses"]["EmptyObjectResponse"];
3648
4776
  "4XX": components["responses"]["RcError"];
@@ -3669,7 +4797,11 @@ export interface operations {
3669
4797
  path?: never;
3670
4798
  cookie?: never;
3671
4799
  };
3672
- requestBody?: never;
4800
+ requestBody?: {
4801
+ content: {
4802
+ "application/json": components["schemas"]["OperationsCopyurlRequest"];
4803
+ };
4804
+ };
3673
4805
  responses: {
3674
4806
  200: components["responses"]["EmptyObjectResponse"];
3675
4807
  "4XX": components["responses"]["RcError"];
@@ -3694,7 +4826,11 @@ export interface operations {
3694
4826
  path?: never;
3695
4827
  cookie?: never;
3696
4828
  };
3697
- requestBody?: never;
4829
+ requestBody?: {
4830
+ content: {
4831
+ "application/json": components["schemas"]["OperationsDeleteRequest"];
4832
+ };
4833
+ };
3698
4834
  responses: {
3699
4835
  200: components["responses"]["EmptyObjectResponse"];
3700
4836
  "4XX": components["responses"]["RcError"];
@@ -3717,7 +4853,11 @@ export interface operations {
3717
4853
  path?: never;
3718
4854
  cookie?: never;
3719
4855
  };
3720
- requestBody?: never;
4856
+ requestBody?: {
4857
+ content: {
4858
+ "application/json": components["schemas"]["OperationsDeletefileRequest"];
4859
+ };
4860
+ };
3721
4861
  responses: {
3722
4862
  200: components["responses"]["EmptyObjectResponse"];
3723
4863
  "4XX": components["responses"]["RcError"];
@@ -3738,7 +4878,11 @@ export interface operations {
3738
4878
  path?: never;
3739
4879
  cookie?: never;
3740
4880
  };
3741
- requestBody?: never;
4881
+ requestBody?: {
4882
+ content: {
4883
+ "application/json": components["schemas"]["OperationsFsinfoRequest"];
4884
+ };
4885
+ };
3742
4886
  responses: {
3743
4887
  200: components["responses"]["OperationsFsinfoResponse"];
3744
4888
  "4XX": components["responses"]["RcError"];
@@ -3765,13 +4909,50 @@ export interface operations {
3765
4909
  path?: never;
3766
4910
  cookie?: never;
3767
4911
  };
3768
- requestBody?: never;
4912
+ requestBody?: {
4913
+ content: {
4914
+ "application/json": components["schemas"]["OperationsHashsumRequest"];
4915
+ };
4916
+ };
3769
4917
  responses: {
3770
4918
  200: components["responses"]["OperationsHashsumResponse"];
3771
4919
  "4XX": components["responses"]["RcError"];
3772
4920
  "5XX": components["responses"]["RcError"];
3773
4921
  };
3774
4922
  };
4923
+ operationsHashsumfile: {
4924
+ parameters: {
4925
+ query: {
4926
+ /** @description Remote name or path containing the file to hash. */
4927
+ fs: components["parameters"]["Operations_HashsumfilePostFsParam"];
4928
+ /** @description Path to the specific file within `fs` to hash. */
4929
+ remote: components["parameters"]["Operations_HashsumfilePostRemoteParam"];
4930
+ /** @description Hash algorithm to use, e.g. `md5`, `sha1`, or another supported name. */
4931
+ hashType: components["parameters"]["Operations_HashsumfilePostHashTypeParam"];
4932
+ /** @description Set to true to force reading the data instead of using remote checksums. */
4933
+ download?: components["parameters"]["Operations_HashsumfilePostDownloadParam"];
4934
+ /** @description Set to true to emit the hash value in base64 rather than hexadecimal. */
4935
+ base64?: components["parameters"]["Operations_HashsumfilePostBase64Param"];
4936
+ /** @description Assign the request to a custom stats group. */
4937
+ _group?: components["parameters"]["GlobalGroupParam"];
4938
+ /** @description Run the command asynchronously. Returns a job id immediately. */
4939
+ _async?: components["parameters"]["GlobalAsyncParam"];
4940
+ };
4941
+ header?: never;
4942
+ path?: never;
4943
+ cookie?: never;
4944
+ };
4945
+ requestBody?: {
4946
+ content: {
4947
+ "application/json": components["schemas"]["OperationsHashsumfileRequest"];
4948
+ };
4949
+ };
4950
+ responses: {
4951
+ 200: components["responses"]["OperationsHashsumfileResponse"];
4952
+ "4XX": components["responses"]["RcError"];
4953
+ "5XX": components["responses"]["RcError"];
4954
+ };
4955
+ };
3775
4956
  operationsMovefile: {
3776
4957
  parameters: {
3777
4958
  query: {
@@ -3792,7 +4973,11 @@ export interface operations {
3792
4973
  path?: never;
3793
4974
  cookie?: never;
3794
4975
  };
3795
- requestBody?: never;
4976
+ requestBody?: {
4977
+ content: {
4978
+ "application/json": components["schemas"]["OperationsMovefileRequest"];
4979
+ };
4980
+ };
3796
4981
  responses: {
3797
4982
  200: components["responses"]["EmptyObjectResponse"];
3798
4983
  "4XX": components["responses"]["RcError"];
@@ -3819,7 +5004,11 @@ export interface operations {
3819
5004
  path?: never;
3820
5005
  cookie?: never;
3821
5006
  };
3822
- requestBody?: never;
5007
+ requestBody?: {
5008
+ content: {
5009
+ "application/json": components["schemas"]["OperationsPubliclinkRequest"];
5010
+ };
5011
+ };
3823
5012
  responses: {
3824
5013
  200: components["responses"]["OperationsPubliclinkResponse"];
3825
5014
  "4XX": components["responses"]["RcError"];
@@ -3844,7 +5033,11 @@ export interface operations {
3844
5033
  path?: never;
3845
5034
  cookie?: never;
3846
5035
  };
3847
- requestBody?: never;
5036
+ requestBody?: {
5037
+ content: {
5038
+ "application/json": components["schemas"]["OperationsRmdirsRequest"];
5039
+ };
5040
+ };
3848
5041
  responses: {
3849
5042
  200: components["responses"]["EmptyObjectResponse"];
3850
5043
  "4XX": components["responses"]["RcError"];
@@ -3865,7 +5058,11 @@ export interface operations {
3865
5058
  path?: never;
3866
5059
  cookie?: never;
3867
5060
  };
3868
- requestBody?: never;
5061
+ requestBody?: {
5062
+ content: {
5063
+ "application/json": components["schemas"]["OperationsSettierRequest"];
5064
+ };
5065
+ };
3869
5066
  responses: {
3870
5067
  200: components["responses"]["EmptyObjectResponse"];
3871
5068
  "4XX": components["responses"]["RcError"];
@@ -3888,7 +5085,11 @@ export interface operations {
3888
5085
  path?: never;
3889
5086
  cookie?: never;
3890
5087
  };
3891
- requestBody?: never;
5088
+ requestBody?: {
5089
+ content: {
5090
+ "application/json": components["schemas"]["OperationsSettierfileRequest"];
5091
+ };
5092
+ };
3892
5093
  responses: {
3893
5094
  200: components["responses"]["EmptyObjectResponse"];
3894
5095
  "4XX": components["responses"]["RcError"];
@@ -3909,7 +5110,11 @@ export interface operations {
3909
5110
  path?: never;
3910
5111
  cookie?: never;
3911
5112
  };
3912
- requestBody?: never;
5113
+ requestBody?: {
5114
+ content: {
5115
+ "application/json": components["schemas"]["OperationsSizeRequest"];
5116
+ };
5117
+ };
3913
5118
  responses: {
3914
5119
  200: components["responses"]["OperationsSizeResponse"];
3915
5120
  "4XX": components["responses"]["RcError"];
@@ -3930,7 +5135,11 @@ export interface operations {
3930
5135
  path?: never;
3931
5136
  cookie?: never;
3932
5137
  };
3933
- requestBody?: never;
5138
+ requestBody?: {
5139
+ content: {
5140
+ "application/json": components["schemas"]["CoreBwlimitRequest"];
5141
+ };
5142
+ };
3934
5143
  responses: {
3935
5144
  200: components["responses"]["CoreBwlimitResponse"];
3936
5145
  "4XX": components["responses"]["RcError"];
@@ -3957,7 +5166,11 @@ export interface operations {
3957
5166
  path?: never;
3958
5167
  cookie?: never;
3959
5168
  };
3960
- requestBody?: never;
5169
+ requestBody?: {
5170
+ content: {
5171
+ "application/json": components["schemas"]["CoreCommandRequest"];
5172
+ };
5173
+ };
3961
5174
  responses: {
3962
5175
  200: components["responses"]["CoreCommandResponse"];
3963
5176
  "4XX": components["responses"]["RcError"];
@@ -3978,7 +5191,11 @@ export interface operations {
3978
5191
  path?: never;
3979
5192
  cookie?: never;
3980
5193
  };
3981
- requestBody?: never;
5194
+ requestBody?: {
5195
+ content: {
5196
+ "application/json": components["schemas"]["CoreDuRequest"];
5197
+ };
5198
+ };
3982
5199
  responses: {
3983
5200
  200: components["responses"]["CoreDuResponse"];
3984
5201
  "4XX": components["responses"]["RcError"];
@@ -3997,7 +5214,11 @@ export interface operations {
3997
5214
  path?: never;
3998
5215
  cookie?: never;
3999
5216
  };
4000
- requestBody?: never;
5217
+ requestBody?: {
5218
+ content: {
5219
+ "application/json": components["schemas"]["CoreGcRequest"];
5220
+ };
5221
+ };
4001
5222
  responses: {
4002
5223
  200: components["responses"]["EmptyObjectResponse"];
4003
5224
  "4XX": components["responses"]["RcError"];
@@ -4016,7 +5237,11 @@ export interface operations {
4016
5237
  path?: never;
4017
5238
  cookie?: never;
4018
5239
  };
4019
- requestBody?: never;
5240
+ requestBody?: {
5241
+ content: {
5242
+ "application/json": components["schemas"]["CoreGroupListRequest"];
5243
+ };
5244
+ };
4020
5245
  responses: {
4021
5246
  /** @description Names of stats groups. */
4022
5247
  200: {
@@ -4045,7 +5270,11 @@ export interface operations {
4045
5270
  path?: never;
4046
5271
  cookie?: never;
4047
5272
  };
4048
- requestBody?: never;
5273
+ requestBody?: {
5274
+ content: {
5275
+ "application/json": components["schemas"]["CoreMemstatsRequest"];
5276
+ };
5277
+ };
4049
5278
  responses: {
4050
5279
  /** @description Memory statistics fields from the Go runtime. */
4051
5280
  200: {
@@ -4076,7 +5305,11 @@ export interface operations {
4076
5305
  path?: never;
4077
5306
  cookie?: never;
4078
5307
  };
4079
- requestBody?: never;
5308
+ requestBody?: {
5309
+ content: {
5310
+ "application/json": components["schemas"]["CoreObscureRequest"];
5311
+ };
5312
+ };
4080
5313
  responses: {
4081
5314
  /** @description Obscured string result. */
4082
5315
  200: {
@@ -4105,7 +5338,11 @@ export interface operations {
4105
5338
  path?: never;
4106
5339
  cookie?: never;
4107
5340
  };
4108
- requestBody?: never;
5341
+ requestBody?: {
5342
+ content: {
5343
+ "application/json": components["schemas"]["CorePidRequest"];
5344
+ };
5345
+ };
4109
5346
  responses: {
4110
5347
  /** @description Process ID payload. */
4111
5348
  200: {
@@ -4136,7 +5373,11 @@ export interface operations {
4136
5373
  path?: never;
4137
5374
  cookie?: never;
4138
5375
  };
4139
- requestBody?: never;
5376
+ requestBody?: {
5377
+ content: {
5378
+ "application/json": components["schemas"]["CoreQuitRequest"];
5379
+ };
5380
+ };
4140
5381
  responses: {
4141
5382
  200: components["responses"]["EmptyObjectResponse"];
4142
5383
  "4XX": components["responses"]["RcError"];
@@ -4157,7 +5398,11 @@ export interface operations {
4157
5398
  path?: never;
4158
5399
  cookie?: never;
4159
5400
  };
4160
- requestBody?: never;
5401
+ requestBody?: {
5402
+ content: {
5403
+ "application/json": components["schemas"]["CoreStatsDeleteRequest"];
5404
+ };
5405
+ };
4161
5406
  responses: {
4162
5407
  200: components["responses"]["EmptyObjectResponse"];
4163
5408
  "4XX": components["responses"]["RcError"];
@@ -4178,7 +5423,11 @@ export interface operations {
4178
5423
  path?: never;
4179
5424
  cookie?: never;
4180
5425
  };
4181
- requestBody?: never;
5426
+ requestBody?: {
5427
+ content: {
5428
+ "application/json": components["schemas"]["CoreStatsResetRequest"];
5429
+ };
5430
+ };
4182
5431
  responses: {
4183
5432
  200: components["responses"]["EmptyObjectResponse"];
4184
5433
  "4XX": components["responses"]["RcError"];
@@ -4199,7 +5448,11 @@ export interface operations {
4199
5448
  path?: never;
4200
5449
  cookie?: never;
4201
5450
  };
4202
- requestBody?: never;
5451
+ requestBody?: {
5452
+ content: {
5453
+ "application/json": components["schemas"]["CoreTransferredRequest"];
5454
+ };
5455
+ };
4203
5456
  responses: {
4204
5457
  200: components["responses"]["CoreTransferredResponse"];
4205
5458
  "4XX": components["responses"]["RcError"];
@@ -4220,7 +5473,11 @@ export interface operations {
4220
5473
  path?: never;
4221
5474
  cookie?: never;
4222
5475
  };
4223
- requestBody?: never;
5476
+ requestBody?: {
5477
+ content: {
5478
+ "application/json": components["schemas"]["DebugSetBlockProfileRateRequest"];
5479
+ };
5480
+ };
4224
5481
  responses: {
4225
5482
  200: components["responses"]["EmptyObjectResponse"];
4226
5483
  "4XX": components["responses"]["RcError"];
@@ -4241,7 +5498,11 @@ export interface operations {
4241
5498
  path?: never;
4242
5499
  cookie?: never;
4243
5500
  };
4244
- requestBody?: never;
5501
+ requestBody?: {
5502
+ content: {
5503
+ "application/json": components["schemas"]["DebugSetGcPercentRequest"];
5504
+ };
5505
+ };
4245
5506
  responses: {
4246
5507
  200: components["responses"]["DebugSetGcPercentResponse"];
4247
5508
  "4XX": components["responses"]["RcError"];
@@ -4262,7 +5523,11 @@ export interface operations {
4262
5523
  path?: never;
4263
5524
  cookie?: never;
4264
5525
  };
4265
- requestBody?: never;
5526
+ requestBody?: {
5527
+ content: {
5528
+ "application/json": components["schemas"]["DebugSetMutexProfileFractionRequest"];
5529
+ };
5530
+ };
4266
5531
  responses: {
4267
5532
  200: components["responses"]["DebugSetMutexProfileFractionResponse"];
4268
5533
  "4XX": components["responses"]["RcError"];
@@ -4283,7 +5548,11 @@ export interface operations {
4283
5548
  path?: never;
4284
5549
  cookie?: never;
4285
5550
  };
4286
- requestBody?: never;
5551
+ requestBody?: {
5552
+ content: {
5553
+ "application/json": components["schemas"]["DebugSetSoftMemoryLimitRequest"];
5554
+ };
5555
+ };
4287
5556
  responses: {
4288
5557
  200: components["responses"]["DebugSetSoftMemoryLimitResponse"];
4289
5558
  "4XX": components["responses"]["RcError"];
@@ -4302,7 +5571,11 @@ export interface operations {
4302
5571
  path?: never;
4303
5572
  cookie?: never;
4304
5573
  };
4305
- requestBody?: never;
5574
+ requestBody?: {
5575
+ content: {
5576
+ "application/json": components["schemas"]["FscacheClearRequest"];
5577
+ };
5578
+ };
4306
5579
  responses: {
4307
5580
  200: components["responses"]["EmptyObjectResponse"];
4308
5581
  "4XX": components["responses"]["RcError"];
@@ -4321,7 +5594,11 @@ export interface operations {
4321
5594
  path?: never;
4322
5595
  cookie?: never;
4323
5596
  };
4324
- requestBody?: never;
5597
+ requestBody?: {
5598
+ content: {
5599
+ "application/json": components["schemas"]["FscacheEntriesRequest"];
5600
+ };
5601
+ };
4325
5602
  responses: {
4326
5603
  200: components["responses"]["FscacheEntriesResponse"];
4327
5604
  "4XX": components["responses"]["RcError"];
@@ -4340,7 +5617,11 @@ export interface operations {
4340
5617
  path?: never;
4341
5618
  cookie?: never;
4342
5619
  };
4343
- requestBody?: never;
5620
+ requestBody?: {
5621
+ content: {
5622
+ "application/json": components["schemas"]["MountListmountsRequest"];
5623
+ };
5624
+ };
4344
5625
  responses: {
4345
5626
  200: components["responses"]["MountListmountsResponse"];
4346
5627
  "4XX": components["responses"]["RcError"];
@@ -4373,7 +5654,11 @@ export interface operations {
4373
5654
  path?: never;
4374
5655
  cookie?: never;
4375
5656
  };
4376
- requestBody?: never;
5657
+ requestBody?: {
5658
+ content: {
5659
+ "application/json": components["schemas"]["MountMountRequest"];
5660
+ };
5661
+ };
4377
5662
  responses: {
4378
5663
  200: components["responses"]["EmptyObjectResponse"];
4379
5664
  "4XX": components["responses"]["RcError"];
@@ -4392,7 +5677,11 @@ export interface operations {
4392
5677
  path?: never;
4393
5678
  cookie?: never;
4394
5679
  };
4395
- requestBody?: never;
5680
+ requestBody?: {
5681
+ content: {
5682
+ "application/json": components["schemas"]["MountTypesRequest"];
5683
+ };
5684
+ };
4396
5685
  responses: {
4397
5686
  200: components["responses"]["MountTypesResponse"];
4398
5687
  "4XX": components["responses"]["RcError"];
@@ -4413,7 +5702,11 @@ export interface operations {
4413
5702
  path?: never;
4414
5703
  cookie?: never;
4415
5704
  };
4416
- requestBody?: never;
5705
+ requestBody?: {
5706
+ content: {
5707
+ "application/json": components["schemas"]["MountUnmountRequest"];
5708
+ };
5709
+ };
4417
5710
  responses: {
4418
5711
  200: components["responses"]["EmptyObjectResponse"];
4419
5712
  "4XX": components["responses"]["RcError"];
@@ -4432,7 +5725,11 @@ export interface operations {
4432
5725
  path?: never;
4433
5726
  cookie?: never;
4434
5727
  };
4435
- requestBody?: never;
5728
+ requestBody?: {
5729
+ content: {
5730
+ "application/json": components["schemas"]["MountUnmountallRequest"];
5731
+ };
5732
+ };
4436
5733
  responses: {
4437
5734
  200: components["responses"]["EmptyObjectResponse"];
4438
5735
  "4XX": components["responses"]["RcError"];
@@ -4451,7 +5748,11 @@ export interface operations {
4451
5748
  path?: never;
4452
5749
  cookie?: never;
4453
5750
  };
4454
- requestBody?: never;
5751
+ requestBody?: {
5752
+ content: {
5753
+ "application/json": components["schemas"]["RcNoopAuthRequest"];
5754
+ };
5755
+ };
4455
5756
  responses: {
4456
5757
  200: components["responses"]["RcNoopResponse"];
4457
5758
  "4XX": components["responses"]["RcError"];
@@ -4470,7 +5771,11 @@ export interface operations {
4470
5771
  path?: never;
4471
5772
  cookie?: never;
4472
5773
  };
4473
- requestBody?: never;
5774
+ requestBody?: {
5775
+ content: {
5776
+ "application/json": components["schemas"]["RcErrorRequest"];
5777
+ };
5778
+ };
4474
5779
  responses: {
4475
5780
  200: components["responses"]["EmptyResponse"];
4476
5781
  "4XX": components["responses"]["RcError"];
@@ -4489,7 +5794,11 @@ export interface operations {
4489
5794
  path?: never;
4490
5795
  cookie?: never;
4491
5796
  };
4492
- requestBody?: never;
5797
+ requestBody?: {
5798
+ content: {
5799
+ "application/json": components["schemas"]["RcListRequest"];
5800
+ };
5801
+ };
4493
5802
  responses: {
4494
5803
  200: components["responses"]["RcListResponse"];
4495
5804
  "4XX": components["responses"]["RcError"];
@@ -4516,7 +5825,11 @@ export interface operations {
4516
5825
  path?: never;
4517
5826
  cookie?: never;
4518
5827
  };
4519
- requestBody?: never;
5828
+ requestBody?: {
5829
+ content: {
5830
+ "application/json": components["schemas"]["BackendCommandRequest"];
5831
+ };
5832
+ };
4520
5833
  responses: {
4521
5834
  200: components["responses"]["BackendCommandResponse"];
4522
5835
  "4XX": components["responses"]["RcError"];
@@ -4539,7 +5852,11 @@ export interface operations {
4539
5852
  path?: never;
4540
5853
  cookie?: never;
4541
5854
  };
4542
- requestBody?: never;
5855
+ requestBody?: {
5856
+ content: {
5857
+ "application/json": components["schemas"]["CacheExpireRequest"];
5858
+ };
5859
+ };
4543
5860
  responses: {
4544
5861
  200: components["responses"]["EmptyResponse"];
4545
5862
  "4XX": components["responses"]["RcError"];
@@ -4562,7 +5879,11 @@ export interface operations {
4562
5879
  path?: never;
4563
5880
  cookie?: never;
4564
5881
  };
4565
- requestBody?: never;
5882
+ requestBody?: {
5883
+ content: {
5884
+ "application/json": components["schemas"]["CacheFetchRequest"];
5885
+ };
5886
+ };
4566
5887
  responses: {
4567
5888
  200: components["responses"]["EmptyResponse"];
4568
5889
  "4XX": components["responses"]["RcError"];
@@ -4581,7 +5902,11 @@ export interface operations {
4581
5902
  path?: never;
4582
5903
  cookie?: never;
4583
5904
  };
4584
- requestBody?: never;
5905
+ requestBody?: {
5906
+ content: {
5907
+ "application/json": components["schemas"]["CacheStatsRequest"];
5908
+ };
5909
+ };
4585
5910
  responses: {
4586
5911
  200: components["responses"]["EmptyResponse"];
4587
5912
  "4XX": components["responses"]["RcError"];
@@ -4608,7 +5933,11 @@ export interface operations {
4608
5933
  path?: never;
4609
5934
  cookie?: never;
4610
5935
  };
4611
- requestBody?: never;
5936
+ requestBody?: {
5937
+ content: {
5938
+ "application/json": components["schemas"]["ConfigCreateRequest"];
5939
+ };
5940
+ };
4612
5941
  responses: {
4613
5942
  200: components["responses"]["EmptyObjectResponse"];
4614
5943
  "4XX": components["responses"]["RcError"];
@@ -4629,7 +5958,11 @@ export interface operations {
4629
5958
  path?: never;
4630
5959
  cookie?: never;
4631
5960
  };
4632
- requestBody?: never;
5961
+ requestBody?: {
5962
+ content: {
5963
+ "application/json": components["schemas"]["ConfigDeleteRequest"];
5964
+ };
5965
+ };
4633
5966
  responses: {
4634
5967
  200: components["responses"]["EmptyResponse"];
4635
5968
  "4XX": components["responses"]["RcError"];
@@ -4648,7 +5981,11 @@ export interface operations {
4648
5981
  path?: never;
4649
5982
  cookie?: never;
4650
5983
  };
4651
- requestBody?: never;
5984
+ requestBody?: {
5985
+ content: {
5986
+ "application/json": components["schemas"]["ConfigDumpRequest"];
5987
+ };
5988
+ };
4652
5989
  responses: {
4653
5990
  200: components["responses"]["ConfigDumpResponse"];
4654
5991
  "4XX": components["responses"]["RcError"];
@@ -4669,7 +6006,11 @@ export interface operations {
4669
6006
  path?: never;
4670
6007
  cookie?: never;
4671
6008
  };
4672
- requestBody?: never;
6009
+ requestBody?: {
6010
+ content: {
6011
+ "application/json": components["schemas"]["ConfigGetRequest"];
6012
+ };
6013
+ };
4673
6014
  responses: {
4674
6015
  200: components["responses"]["ConfigGetResponse"];
4675
6016
  "4XX": components["responses"]["RcError"];
@@ -4688,7 +6029,11 @@ export interface operations {
4688
6029
  path?: never;
4689
6030
  cookie?: never;
4690
6031
  };
4691
- requestBody?: never;
6032
+ requestBody?: {
6033
+ content: {
6034
+ "application/json": components["schemas"]["ConfigListremotesRequest"];
6035
+ };
6036
+ };
4692
6037
  responses: {
4693
6038
  200: components["responses"]["ConfigListremotesResponse"];
4694
6039
  "4XX": components["responses"]["RcError"];
@@ -4711,7 +6056,11 @@ export interface operations {
4711
6056
  path?: never;
4712
6057
  cookie?: never;
4713
6058
  };
4714
- requestBody?: never;
6059
+ requestBody?: {
6060
+ content: {
6061
+ "application/json": components["schemas"]["ConfigPasswordRequest"];
6062
+ };
6063
+ };
4715
6064
  responses: {
4716
6065
  200: components["responses"]["EmptyResponse"];
4717
6066
  "4XX": components["responses"]["RcError"];
@@ -4730,7 +6079,11 @@ export interface operations {
4730
6079
  path?: never;
4731
6080
  cookie?: never;
4732
6081
  };
4733
- requestBody?: never;
6082
+ requestBody?: {
6083
+ content: {
6084
+ "application/json": components["schemas"]["ConfigPathsRequest"];
6085
+ };
6086
+ };
4734
6087
  responses: {
4735
6088
  200: components["responses"]["ConfigPathsResponse"];
4736
6089
  "4XX": components["responses"]["RcError"];
@@ -4749,7 +6102,11 @@ export interface operations {
4749
6102
  path?: never;
4750
6103
  cookie?: never;
4751
6104
  };
4752
- requestBody?: never;
6105
+ requestBody?: {
6106
+ content: {
6107
+ "application/json": components["schemas"]["ConfigProvidersRequest"];
6108
+ };
6109
+ };
4753
6110
  responses: {
4754
6111
  200: components["responses"]["ConfigProvidersResponse"];
4755
6112
  "4XX": components["responses"]["RcError"];
@@ -4770,7 +6127,11 @@ export interface operations {
4770
6127
  path?: never;
4771
6128
  cookie?: never;
4772
6129
  };
4773
- requestBody?: never;
6130
+ requestBody?: {
6131
+ content: {
6132
+ "application/json": components["schemas"]["ConfigSetpathRequest"];
6133
+ };
6134
+ };
4774
6135
  responses: {
4775
6136
  200: components["responses"]["EmptyResponse"];
4776
6137
  "4XX": components["responses"]["RcError"];
@@ -4791,7 +6152,11 @@ export interface operations {
4791
6152
  path?: never;
4792
6153
  cookie?: never;
4793
6154
  };
4794
- requestBody?: never;
6155
+ requestBody?: {
6156
+ content: {
6157
+ "application/json": components["schemas"]["ConfigUnlockRequest"];
6158
+ };
6159
+ };
4795
6160
  responses: {
4796
6161
  200: components["responses"]["EmptyResponse"];
4797
6162
  "4XX": components["responses"]["RcError"];
@@ -4816,7 +6181,11 @@ export interface operations {
4816
6181
  path?: never;
4817
6182
  cookie?: never;
4818
6183
  };
4819
- requestBody?: never;
6184
+ requestBody?: {
6185
+ content: {
6186
+ "application/json": components["schemas"]["ConfigUpdateRequest"];
6187
+ };
6188
+ };
4820
6189
  responses: {
4821
6190
  200: components["responses"]["EmptyObjectResponse"];
4822
6191
  "4XX": components["responses"]["RcError"];
@@ -4835,7 +6204,11 @@ export interface operations {
4835
6204
  path?: never;
4836
6205
  cookie?: never;
4837
6206
  };
4838
- requestBody?: never;
6207
+ requestBody?: {
6208
+ content: {
6209
+ "application/json": components["schemas"]["CoreVersionRequest"];
6210
+ };
6211
+ };
4839
6212
  responses: {
4840
6213
  200: components["responses"]["CoreVersionResponse"];
4841
6214
  "4XX": components["responses"]["RcError"];
@@ -4858,7 +6231,11 @@ export interface operations {
4858
6231
  path?: never;
4859
6232
  cookie?: never;
4860
6233
  };
4861
- requestBody?: never;
6234
+ requestBody?: {
6235
+ content: {
6236
+ "application/json": components["schemas"]["CoreStatsRequest"];
6237
+ };
6238
+ };
4862
6239
  responses: {
4863
6240
  200: components["responses"]["CoreStatsResponse"];
4864
6241
  "4XX": components["responses"]["RcError"];
@@ -4900,7 +6277,11 @@ export interface operations {
4900
6277
  path?: never;
4901
6278
  cookie?: never;
4902
6279
  };
4903
- requestBody?: never;
6280
+ requestBody?: {
6281
+ content: {
6282
+ "application/json": components["schemas"]["JobListRequest"];
6283
+ };
6284
+ };
4904
6285
  responses: {
4905
6286
  200: components["responses"]["JobListResponse"];
4906
6287
  "4XX": components["responses"]["RcError"];
@@ -4919,7 +6300,11 @@ export interface operations {
4919
6300
  path?: never;
4920
6301
  cookie?: never;
4921
6302
  };
4922
- requestBody?: never;
6303
+ requestBody?: {
6304
+ content: {
6305
+ "application/json": components["schemas"]["JobStatusRequest"];
6306
+ };
6307
+ };
4923
6308
  responses: {
4924
6309
  200: components["responses"]["JobStatusResponse"];
4925
6310
  "4XX": components["responses"]["RcError"];
@@ -4938,7 +6323,11 @@ export interface operations {
4938
6323
  path?: never;
4939
6324
  cookie?: never;
4940
6325
  };
4941
- requestBody?: never;
6326
+ requestBody?: {
6327
+ content: {
6328
+ "application/json": components["schemas"]["JobStopRequest"];
6329
+ };
6330
+ };
4942
6331
  responses: {
4943
6332
  200: components["responses"]["EmptyObjectResponse"];
4944
6333
  "4XX": components["responses"]["RcError"];
@@ -4957,7 +6346,11 @@ export interface operations {
4957
6346
  path?: never;
4958
6347
  cookie?: never;
4959
6348
  };
4960
- requestBody?: never;
6349
+ requestBody?: {
6350
+ content: {
6351
+ "application/json": components["schemas"]["JobStopgroupRequest"];
6352
+ };
6353
+ };
4961
6354
  responses: {
4962
6355
  200: components["responses"]["EmptyObjectResponse"];
4963
6356
  "4XX": components["responses"]["RcError"];
@@ -5002,7 +6395,11 @@ export interface operations {
5002
6395
  path?: never;
5003
6396
  cookie?: never;
5004
6397
  };
5005
- requestBody?: never;
6398
+ requestBody?: {
6399
+ content: {
6400
+ "application/json": components["schemas"]["OperationsListRequest"];
6401
+ };
6402
+ };
5006
6403
  responses: {
5007
6404
  200: components["responses"]["OperationsListResponse"];
5008
6405
  "4XX": components["responses"]["RcError"];
@@ -5027,7 +6424,11 @@ export interface operations {
5027
6424
  path?: never;
5028
6425
  cookie?: never;
5029
6426
  };
5030
- requestBody?: never;
6427
+ requestBody?: {
6428
+ content: {
6429
+ "application/json": components["schemas"]["OperationsStatRequest"];
6430
+ };
6431
+ };
5031
6432
  responses: {
5032
6433
  200: components["responses"]["OperationsStatResponse"];
5033
6434
  "4XX": components["responses"]["RcError"];
@@ -5048,7 +6449,11 @@ export interface operations {
5048
6449
  path?: never;
5049
6450
  cookie?: never;
5050
6451
  };
5051
- requestBody?: never;
6452
+ requestBody?: {
6453
+ content: {
6454
+ "application/json": components["schemas"]["OperationsAboutRequest"];
6455
+ };
6456
+ };
5052
6457
  responses: {
5053
6458
  200: components["responses"]["OperationsAboutResponse"];
5054
6459
  "4XX": components["responses"]["RcError"];
@@ -5103,7 +6508,11 @@ export interface operations {
5103
6508
  path?: never;
5104
6509
  cookie?: never;
5105
6510
  };
5106
- requestBody?: never;
6511
+ requestBody?: {
6512
+ content: {
6513
+ "application/json": components["schemas"]["OperationsPurgeRequest"];
6514
+ };
6515
+ };
5107
6516
  responses: {
5108
6517
  200: components["responses"]["EmptyObjectResponse"];
5109
6518
  "4XX": components["responses"]["RcError"];
@@ -5126,7 +6535,11 @@ export interface operations {
5126
6535
  path?: never;
5127
6536
  cookie?: never;
5128
6537
  };
5129
- requestBody?: never;
6538
+ requestBody?: {
6539
+ content: {
6540
+ "application/json": components["schemas"]["OperationsMkdirRequest"];
6541
+ };
6542
+ };
5130
6543
  responses: {
5131
6544
  200: components["responses"]["EmptyObjectResponse"];
5132
6545
  "4XX": components["responses"]["RcError"];
@@ -5149,7 +6562,11 @@ export interface operations {
5149
6562
  path?: never;
5150
6563
  cookie?: never;
5151
6564
  };
5152
- requestBody?: never;
6565
+ requestBody?: {
6566
+ content: {
6567
+ "application/json": components["schemas"]["OperationsRmdirRequest"];
6568
+ };
6569
+ };
5153
6570
  responses: {
5154
6571
  200: components["responses"]["EmptyObjectResponse"];
5155
6572
  "4XX": components["responses"]["RcError"];
@@ -5194,7 +6611,11 @@ export interface operations {
5194
6611
  path?: never;
5195
6612
  cookie?: never;
5196
6613
  };
5197
- requestBody?: never;
6614
+ requestBody?: {
6615
+ content: {
6616
+ "application/json": components["schemas"]["OperationsCheckRequest"];
6617
+ };
6618
+ };
5198
6619
  responses: {
5199
6620
  200: components["responses"]["OperationsCheckResponse"];
5200
6621
  "4XX": components["responses"]["RcError"];
@@ -5223,7 +6644,11 @@ export interface operations {
5223
6644
  path?: never;
5224
6645
  cookie?: never;
5225
6646
  };
5226
- requestBody?: never;
6647
+ requestBody?: {
6648
+ content: {
6649
+ "application/json": components["schemas"]["SyncSyncRequest"];
6650
+ };
6651
+ };
5227
6652
  responses: {
5228
6653
  200: components["responses"]["SyncJobResponse"];
5229
6654
  "4XX": components["responses"]["RcError"];
@@ -5252,7 +6677,11 @@ export interface operations {
5252
6677
  path?: never;
5253
6678
  cookie?: never;
5254
6679
  };
5255
- requestBody?: never;
6680
+ requestBody?: {
6681
+ content: {
6682
+ "application/json": components["schemas"]["SyncCopyRequest"];
6683
+ };
6684
+ };
5256
6685
  responses: {
5257
6686
  200: components["responses"]["SyncJobResponse"];
5258
6687
  "4XX": components["responses"]["RcError"];
@@ -5283,7 +6712,11 @@ export interface operations {
5283
6712
  path?: never;
5284
6713
  cookie?: never;
5285
6714
  };
5286
- requestBody?: never;
6715
+ requestBody?: {
6716
+ content: {
6717
+ "application/json": components["schemas"]["SyncMoveRequest"];
6718
+ };
6719
+ };
5287
6720
  responses: {
5288
6721
  200: components["responses"]["SyncJobResponse"];
5289
6722
  "4XX": components["responses"]["RcError"];
@@ -5342,7 +6775,11 @@ export interface operations {
5342
6775
  path?: never;
5343
6776
  cookie?: never;
5344
6777
  };
5345
- requestBody?: never;
6778
+ requestBody?: {
6779
+ content: {
6780
+ "application/json": components["schemas"]["SyncBisyncRequest"];
6781
+ };
6782
+ };
5346
6783
  responses: {
5347
6784
  200: components["responses"]["SyncJobResponse"];
5348
6785
  "4XX": components["responses"]["RcError"];
@@ -5361,7 +6798,11 @@ export interface operations {
5361
6798
  path?: never;
5362
6799
  cookie?: never;
5363
6800
  };
5364
- requestBody?: never;
6801
+ requestBody?: {
6802
+ content: {
6803
+ "application/json": components["schemas"]["OptionsBlocksRequest"];
6804
+ };
6805
+ };
5365
6806
  responses: {
5366
6807
  200: components["responses"]["OptionsBlocksResponse"];
5367
6808
  "4XX": components["responses"]["RcError"];
@@ -5382,7 +6823,11 @@ export interface operations {
5382
6823
  path?: never;
5383
6824
  cookie?: never;
5384
6825
  };
5385
- requestBody?: never;
6826
+ requestBody?: {
6827
+ content: {
6828
+ "application/json": components["schemas"]["OptionsGetRequest"];
6829
+ };
6830
+ };
5386
6831
  responses: {
5387
6832
  200: components["responses"]["OptionsGetResponse"];
5388
6833
  "4XX": components["responses"]["RcError"];
@@ -5403,7 +6848,11 @@ export interface operations {
5403
6848
  path?: never;
5404
6849
  cookie?: never;
5405
6850
  };
5406
- requestBody?: never;
6851
+ requestBody?: {
6852
+ content: {
6853
+ "application/json": components["schemas"]["OptionsInfoRequest"];
6854
+ };
6855
+ };
5407
6856
  responses: {
5408
6857
  200: components["responses"]["OptionsInfoResponse"];
5409
6858
  "4XX": components["responses"]["RcError"];
@@ -5452,7 +6901,11 @@ export interface operations {
5452
6901
  path?: never;
5453
6902
  cookie?: never;
5454
6903
  };
5455
- requestBody?: never;
6904
+ requestBody?: {
6905
+ content: {
6906
+ "application/json": components["schemas"]["OptionsSetRequest"];
6907
+ };
6908
+ };
5456
6909
  responses: {
5457
6910
  200: components["responses"]["EmptyObjectResponse"];
5458
6911
  "4XX": components["responses"]["RcError"];
@@ -5471,7 +6924,11 @@ export interface operations {
5471
6924
  path?: never;
5472
6925
  cookie?: never;
5473
6926
  };
5474
- requestBody?: never;
6927
+ requestBody?: {
6928
+ content: {
6929
+ "application/json": components["schemas"]["OptionsLocalRequest"];
6930
+ };
6931
+ };
5475
6932
  responses: {
5476
6933
  200: components["responses"]["OptionsLocalResponse"];
5477
6934
  "4XX": components["responses"]["RcError"];
@@ -5490,7 +6947,11 @@ export interface operations {
5490
6947
  path?: never;
5491
6948
  cookie?: never;
5492
6949
  };
5493
- requestBody?: never;
6950
+ requestBody?: {
6951
+ content: {
6952
+ "application/json": components["schemas"]["ServeListRequest"];
6953
+ };
6954
+ };
5494
6955
  responses: {
5495
6956
  200: components["responses"]["ServeListResponse"];
5496
6957
  "4XX": components["responses"]["RcError"];
@@ -5521,7 +6982,11 @@ export interface operations {
5521
6982
  path?: never;
5522
6983
  cookie?: never;
5523
6984
  };
5524
- requestBody?: never;
6985
+ requestBody?: {
6986
+ content: {
6987
+ "application/json": components["schemas"]["ServeStartRequest"];
6988
+ };
6989
+ };
5525
6990
  responses: {
5526
6991
  200: components["responses"]["ServeStartResponse"];
5527
6992
  "4XX": components["responses"]["RcError"];
@@ -5542,7 +7007,11 @@ export interface operations {
5542
7007
  path?: never;
5543
7008
  cookie?: never;
5544
7009
  };
5545
- requestBody?: never;
7010
+ requestBody?: {
7011
+ content: {
7012
+ "application/json": components["schemas"]["ServeStopRequest"];
7013
+ };
7014
+ };
5546
7015
  responses: {
5547
7016
  200: components["responses"]["EmptyObjectResponse"];
5548
7017
  "4XX": components["responses"]["RcError"];
@@ -5561,7 +7030,11 @@ export interface operations {
5561
7030
  path?: never;
5562
7031
  cookie?: never;
5563
7032
  };
5564
- requestBody?: never;
7033
+ requestBody?: {
7034
+ content: {
7035
+ "application/json": components["schemas"]["ServeStopallRequest"];
7036
+ };
7037
+ };
5565
7038
  responses: {
5566
7039
  200: components["responses"]["EmptyObjectResponse"];
5567
7040
  "4XX": components["responses"]["RcError"];
@@ -5580,7 +7053,11 @@ export interface operations {
5580
7053
  path?: never;
5581
7054
  cookie?: never;
5582
7055
  };
5583
- requestBody?: never;
7056
+ requestBody?: {
7057
+ content: {
7058
+ "application/json": components["schemas"]["ServeTypesRequest"];
7059
+ };
7060
+ };
5584
7061
  responses: {
5585
7062
  200: components["responses"]["EmptyResponse"];
5586
7063
  "4XX": components["responses"]["RcError"];
@@ -5603,7 +7080,11 @@ export interface operations {
5603
7080
  path?: never;
5604
7081
  cookie?: never;
5605
7082
  };
5606
- requestBody?: never;
7083
+ requestBody?: {
7084
+ content: {
7085
+ "application/json": components["schemas"]["VfsForgetRequest"];
7086
+ };
7087
+ };
5607
7088
  responses: {
5608
7089
  200: components["responses"]["VfsForgetResponse"];
5609
7090
  "4XX": components["responses"]["RcError"];
@@ -5624,7 +7105,11 @@ export interface operations {
5624
7105
  path?: never;
5625
7106
  cookie?: never;
5626
7107
  };
5627
- requestBody?: never;
7108
+ requestBody?: {
7109
+ content: {
7110
+ "application/json": components["schemas"]["VfsListRequest"];
7111
+ };
7112
+ };
5628
7113
  responses: {
5629
7114
  200: components["responses"]["VfsListResponse"];
5630
7115
  "4XX": components["responses"]["RcError"];
@@ -5649,7 +7134,11 @@ export interface operations {
5649
7134
  path?: never;
5650
7135
  cookie?: never;
5651
7136
  };
5652
- requestBody?: never;
7137
+ requestBody?: {
7138
+ content: {
7139
+ "application/json": components["schemas"]["VfsPollIntervalRequest"];
7140
+ };
7141
+ };
5653
7142
  responses: {
5654
7143
  200: components["responses"]["VfsPollIntervalResponse"];
5655
7144
  "4XX": components["responses"]["RcError"];
@@ -5670,7 +7159,11 @@ export interface operations {
5670
7159
  path?: never;
5671
7160
  cookie?: never;
5672
7161
  };
5673
- requestBody?: never;
7162
+ requestBody?: {
7163
+ content: {
7164
+ "application/json": components["schemas"]["VfsQueueRequest"];
7165
+ };
7166
+ };
5674
7167
  responses: {
5675
7168
  200: components["responses"]["VfsQueueResponse"];
5676
7169
  "4XX": components["responses"]["RcError"];
@@ -5697,7 +7190,11 @@ export interface operations {
5697
7190
  path?: never;
5698
7191
  cookie?: never;
5699
7192
  };
5700
- requestBody?: never;
7193
+ requestBody?: {
7194
+ content: {
7195
+ "application/json": components["schemas"]["VfsQueueSetExpiryRequest"];
7196
+ };
7197
+ };
5701
7198
  responses: {
5702
7199
  200: components["responses"]["EmptyObjectResponse"];
5703
7200
  "4XX": components["responses"]["RcError"];
@@ -5722,7 +7219,11 @@ export interface operations {
5722
7219
  path?: never;
5723
7220
  cookie?: never;
5724
7221
  };
5725
- requestBody?: never;
7222
+ requestBody?: {
7223
+ content: {
7224
+ "application/json": components["schemas"]["VfsRefreshRequest"];
7225
+ };
7226
+ };
5726
7227
  responses: {
5727
7228
  200: components["responses"]["VfsRefreshResponse"];
5728
7229
  "4XX": components["responses"]["RcError"];
@@ -5743,7 +7244,11 @@ export interface operations {
5743
7244
  path?: never;
5744
7245
  cookie?: never;
5745
7246
  };
5746
- requestBody?: never;
7247
+ requestBody?: {
7248
+ content: {
7249
+ "application/json": components["schemas"]["VfsStatsRequest"];
7250
+ };
7251
+ };
5747
7252
  responses: {
5748
7253
  200: components["responses"]["VfsStatsResponse"];
5749
7254
  "4XX": components["responses"]["RcError"];
@@ -5764,7 +7269,11 @@ export interface operations {
5764
7269
  path?: never;
5765
7270
  cookie?: never;
5766
7271
  };
5767
- requestBody?: never;
7272
+ requestBody?: {
7273
+ content: {
7274
+ "application/json": components["schemas"]["PluginsctlAddPluginRequest"];
7275
+ };
7276
+ };
5768
7277
  responses: {
5769
7278
  200: components["responses"]["EmptyObjectResponse"];
5770
7279
  "4XX": components["responses"]["RcError"];
@@ -5787,7 +7296,11 @@ export interface operations {
5787
7296
  path?: never;
5788
7297
  cookie?: never;
5789
7298
  };
5790
- requestBody?: never;
7299
+ requestBody?: {
7300
+ content: {
7301
+ "application/json": components["schemas"]["PluginsctlGetPluginsForTypeRequest"];
7302
+ };
7303
+ };
5791
7304
  responses: {
5792
7305
  200: components["responses"]["PluginsctlGetPluginsForTypeResponse"];
5793
7306
  "4XX": components["responses"]["RcError"];
@@ -5806,7 +7319,11 @@ export interface operations {
5806
7319
  path?: never;
5807
7320
  cookie?: never;
5808
7321
  };
5809
- requestBody?: never;
7322
+ requestBody?: {
7323
+ content: {
7324
+ "application/json": components["schemas"]["PluginsctlListPluginsRequest"];
7325
+ };
7326
+ };
5810
7327
  responses: {
5811
7328
  200: components["responses"]["PluginsctlListPluginsResponse"];
5812
7329
  "4XX": components["responses"]["RcError"];
@@ -5825,7 +7342,11 @@ export interface operations {
5825
7342
  path?: never;
5826
7343
  cookie?: never;
5827
7344
  };
5828
- requestBody?: never;
7345
+ requestBody?: {
7346
+ content: {
7347
+ "application/json": components["schemas"]["PluginsctlListTestPluginsRequest"];
7348
+ };
7349
+ };
5829
7350
  responses: {
5830
7351
  200: components["responses"]["PluginsctlListTestPluginsResponse"];
5831
7352
  "4XX": components["responses"]["RcError"];
@@ -5846,7 +7367,11 @@ export interface operations {
5846
7367
  path?: never;
5847
7368
  cookie?: never;
5848
7369
  };
5849
- requestBody?: never;
7370
+ requestBody?: {
7371
+ content: {
7372
+ "application/json": components["schemas"]["PluginsctlRemovePluginRequest"];
7373
+ };
7374
+ };
5850
7375
  responses: {
5851
7376
  200: components["responses"]["EmptyResponse"];
5852
7377
  "4XX": components["responses"]["RcError"];
@@ -5867,7 +7392,11 @@ export interface operations {
5867
7392
  path?: never;
5868
7393
  cookie?: never;
5869
7394
  };
5870
- requestBody?: never;
7395
+ requestBody?: {
7396
+ content: {
7397
+ "application/json": components["schemas"]["PluginsctlRemoveTestPluginRequest"];
7398
+ };
7399
+ };
5871
7400
  responses: {
5872
7401
  200: components["responses"]["EmptyResponse"];
5873
7402
  "4XX": components["responses"]["RcError"];