@leaflow/sdk 0.11.0 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/compute/v1/index.d.ts +4 -0
- package/dist/compute/v1/schema.d.ts +363 -260
- package/package.json +1 -1
|
@@ -90,6 +90,10 @@ export type RenameInstanceBody = NonNullable<operations["rename-instance"]["requ
|
|
|
90
90
|
export type ActOnInstanceResult = operations["act-on-instance"]["responses"][200]["content"]["application/json"];
|
|
91
91
|
/** `POST /api/v1/instances/{instanceId}/actions` 的请求体。 */
|
|
92
92
|
export type ActOnInstanceBody = NonNullable<operations["act-on-instance"]["requestBody"]>["content"]["application/json"];
|
|
93
|
+
/** `POST /api/v1/instances/{instanceId}/commands` 成功时的响应体。 */
|
|
94
|
+
export type RunInstanceCommandResult = operations["run-instance-command"]["responses"][200]["content"]["application/json"];
|
|
95
|
+
/** `POST /api/v1/instances/{instanceId}/commands` 的请求体。 */
|
|
96
|
+
export type RunInstanceCommandBody = NonNullable<operations["run-instance-command"]["requestBody"]>["content"]["application/json"];
|
|
93
97
|
/** `POST /api/v1/instances/{instanceId}/console` 成功时的响应体。 */
|
|
94
98
|
export type OpenInstanceConsoleResult = operations["open-instance-console"]["responses"][200]["content"]["application/json"];
|
|
95
99
|
/** `GET /api/v1/instances/{instanceId}/console-output` 成功时的响应体。 */
|