@leaflow/sdk 0.59.0 → 0.62.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/billing/v1/schema.d.ts +19 -1
- package/dist/compute/v1/index.d.ts +18 -148
- package/dist/compute/v1/schema.d.ts +490 -3458
- package/dist/fabric/v1/client.d.ts +4 -0
- package/dist/fabric/v1/client.js +7 -0
- package/dist/fabric/v1/index.d.ts +115 -0
- package/dist/fabric/v1/index.js +5 -0
- package/dist/fabric/v1/schema.d.ts +2313 -0
- package/dist/fabric/v1/schema.js +5 -0
- package/dist/fleet/v1/index.d.ts +9 -1
- package/dist/fleet/v1/schema.d.ts +164 -29
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/storage/v1/client.d.ts +4 -0
- package/dist/storage/v1/client.js +7 -0
- package/dist/storage/v1/index.d.ts +85 -0
- package/dist/storage/v1/index.js +5 -0
- package/dist/storage/v1/schema.d.ts +1694 -0
- package/dist/storage/v1/schema.js +5 -0
- package/package.json +9 -1
|
@@ -1787,7 +1787,7 @@ export interface components {
|
|
|
1787
1787
|
* so. Nothing was charged in that case.
|
|
1788
1788
|
* @enum {string}
|
|
1789
1789
|
*/
|
|
1790
|
-
status: "pending" | "succeeded" | "failed";
|
|
1790
|
+
status: "pending" | "requires_action" | "succeeded" | "failed";
|
|
1791
1791
|
/** @description Which payment provider collected it. */
|
|
1792
1792
|
provider?: string;
|
|
1793
1793
|
/**
|
|
@@ -1804,6 +1804,10 @@ export interface components {
|
|
|
1804
1804
|
failure_reason?: string;
|
|
1805
1805
|
/** @description Where the payer completes the payment. Absent once it has completed. */
|
|
1806
1806
|
checkout_url?: string;
|
|
1807
|
+
/** @description Provider client secret for completing this same payment attempt in the browser. */
|
|
1808
|
+
client_secret?: string;
|
|
1809
|
+
/** @description Provider publishable key used with client_secret. */
|
|
1810
|
+
publishable_key?: string;
|
|
1807
1811
|
/** Format: date-time */
|
|
1808
1812
|
created_at: string;
|
|
1809
1813
|
/**
|
|
@@ -1972,6 +1976,10 @@ export interface components {
|
|
|
1972
1976
|
balance_applied?: components["schemas"]["Money"];
|
|
1973
1977
|
/** @description Present with `requires_action`. */
|
|
1974
1978
|
checkout_url?: string;
|
|
1979
|
+
/** @description Provider client secret for completing this same payment attempt in the browser. */
|
|
1980
|
+
client_secret?: string;
|
|
1981
|
+
/** @description Provider publishable key used with client_secret. */
|
|
1982
|
+
publishable_key?: string;
|
|
1975
1983
|
/**
|
|
1976
1984
|
* @description Whether paying again is worth attempting. False for a refusal that will keep
|
|
1977
1985
|
* happening — a closed account, an amount over a limit — so that a client does not
|
|
@@ -2439,6 +2447,11 @@ export interface components {
|
|
|
2439
2447
|
};
|
|
2440
2448
|
/** @description A resource currently accruing charges by the second. */
|
|
2441
2449
|
ActiveResource: {
|
|
2450
|
+
/**
|
|
2451
|
+
* Format: uuid
|
|
2452
|
+
* @description The metered subscription item charged for this resource; null for shared service usage.
|
|
2453
|
+
*/
|
|
2454
|
+
subscription_item_id?: string | null;
|
|
2442
2455
|
resource_id: string;
|
|
2443
2456
|
product: components["schemas"]["ObjectIdentity"];
|
|
2444
2457
|
/** @description What it is, as its own service names it. */
|
|
@@ -2680,6 +2693,11 @@ export interface components {
|
|
|
2680
2693
|
flat_amount?: components["schemas"]["Money"];
|
|
2681
2694
|
};
|
|
2682
2695
|
OrderItem: {
|
|
2696
|
+
/**
|
|
2697
|
+
* @description The payment timing of the selected price.
|
|
2698
|
+
* @enum {string}
|
|
2699
|
+
*/
|
|
2700
|
+
price_type?: "metered" | "prepaid" | "one_time";
|
|
2683
2701
|
/** @description Total tax after discounts, including any tax already included in the price. */
|
|
2684
2702
|
tax_amount?: string;
|
|
2685
2703
|
/** @description The part of tax_amount already included in gross_amount; it is not charged again. */
|
|
@@ -1,30 +1,6 @@
|
|
|
1
1
|
export type { paths, components, operations, webhooks } from "./schema.js";
|
|
2
2
|
export { client } from "./client.js";
|
|
3
3
|
import type { operations } from "./schema.js";
|
|
4
|
-
/** The success response body of `GET /api/v1/backups`. */
|
|
5
|
-
export type ListBackupsResult = operations["list-backups"]["responses"][200]["content"]["application/json"];
|
|
6
|
-
/** The query parameters of `GET /api/v1/backups`. */
|
|
7
|
-
export type ListBackupsQuery = operations["list-backups"]["parameters"]["query"];
|
|
8
|
-
/** The success response body of `POST /api/v1/backups`. */
|
|
9
|
-
export type CreateBackupResult = operations["create-backup"]["responses"][201]["content"]["application/json"];
|
|
10
|
-
/** The request body of `POST /api/v1/backups`. */
|
|
11
|
-
export type CreateBackupBody = NonNullable<operations["create-backup"]["requestBody"]>["content"]["application/json"];
|
|
12
|
-
/** The success response body of `GET /api/v1/backups/{backupId}`. */
|
|
13
|
-
export type GetBackupResult = operations["get-backup"]["responses"][200]["content"]["application/json"];
|
|
14
|
-
/** The success response body of `PATCH /api/v1/backups/{backupId}`. */
|
|
15
|
-
export type RenameBackupResult = operations["rename-backup"]["responses"][200]["content"]["application/json"];
|
|
16
|
-
/** The request body of `PATCH /api/v1/backups/{backupId}`. */
|
|
17
|
-
export type RenameBackupBody = NonNullable<operations["rename-backup"]["requestBody"]>["content"]["application/json"];
|
|
18
|
-
/** The success response body of `POST /api/v1/backups/{backupId}/restore`. */
|
|
19
|
-
export type RestoreBackupResult = operations["restore-backup"]["responses"][201]["content"]["application/json"];
|
|
20
|
-
/** The request body of `POST /api/v1/backups/{backupId}/restore`. */
|
|
21
|
-
export type RestoreBackupBody = NonNullable<operations["restore-backup"]["requestBody"]>["content"]["application/json"];
|
|
22
|
-
/** The success response body of `GET /api/v1/disk-types`. */
|
|
23
|
-
export type ListDiskTypesResult = operations["list-disk-types"]["responses"][200]["content"]["application/json"];
|
|
24
|
-
/** The query parameters of `GET /api/v1/disk-types`. */
|
|
25
|
-
export type ListDiskTypesQuery = operations["list-disk-types"]["parameters"]["query"];
|
|
26
|
-
/** The success response body of `GET /api/v1/disk-types/{diskTypeId}`. */
|
|
27
|
-
export type GetDiskTypeResult = operations["get-disk-type"]["responses"][200]["content"]["application/json"];
|
|
28
4
|
/** The success response body of `GET /api/v1/images`. */
|
|
29
5
|
export type ListImagesResult = operations["list-images"]["responses"][200]["content"]["application/json"];
|
|
30
6
|
/** The query parameters of `GET /api/v1/images`. */
|
|
@@ -33,56 +9,12 @@ export type ListImagesQuery = operations["list-images"]["parameters"]["query"];
|
|
|
33
9
|
export type ListInstanceTypesResult = operations["list-instance-types"]["responses"][200]["content"]["application/json"];
|
|
34
10
|
/** The query parameters of `GET /api/v1/instance-types`. */
|
|
35
11
|
export type ListInstanceTypesQuery = operations["list-instance-types"]["parameters"]["query"];
|
|
36
|
-
/** The success response body of `GET /api/v1/regions`. */
|
|
37
|
-
export type ListRegionsResult = operations["list-regions"]["responses"][200]["content"]["application/json"];
|
|
38
|
-
/** The success response body of `GET /api/v1/regions/{regionCode}/availability-zones`. */
|
|
39
|
-
export type ListAvailabilityZonesResult = operations["list-availability-zones"]["responses"][200]["content"]["application/json"];
|
|
40
|
-
/** The success response body of `GET /api/v1/disks`. */
|
|
41
|
-
export type ListDisksResult = operations["list-disks"]["responses"][200]["content"]["application/json"];
|
|
42
|
-
/** The query parameters of `GET /api/v1/disks`. */
|
|
43
|
-
export type ListDisksQuery = operations["list-disks"]["parameters"]["query"];
|
|
44
|
-
/** The success response body of `POST /api/v1/disks`. */
|
|
45
|
-
export type CreateDiskResult = operations["create-disk"]["responses"][201]["content"]["application/json"];
|
|
46
|
-
/** The request body of `POST /api/v1/disks`. */
|
|
47
|
-
export type CreateDiskBody = NonNullable<operations["create-disk"]["requestBody"]>["content"]["application/json"];
|
|
48
|
-
/** The success response body of `GET /api/v1/disks/{diskId}`. */
|
|
49
|
-
export type GetDiskResult = operations["get-disk"]["responses"][200]["content"]["application/json"];
|
|
50
|
-
/** The success response body of `PATCH /api/v1/disks/{diskId}`. */
|
|
51
|
-
export type RenameDiskResult = operations["rename-disk"]["responses"][200]["content"]["application/json"];
|
|
52
|
-
/** The request body of `PATCH /api/v1/disks/{diskId}`. */
|
|
53
|
-
export type RenameDiskBody = NonNullable<operations["rename-disk"]["requestBody"]>["content"]["application/json"];
|
|
54
|
-
/** The success response body of `POST /api/v1/disks/{diskId}/resize`. */
|
|
55
|
-
export type ResizeDiskResult = operations["resize-disk"]["responses"][200]["content"]["application/json"];
|
|
56
|
-
/** The request body of `POST /api/v1/disks/{diskId}/resize`. */
|
|
57
|
-
export type ResizeDiskBody = NonNullable<operations["resize-disk"]["requestBody"]>["content"]["application/json"];
|
|
58
|
-
/** The success response body of `POST /api/v1/disks/{diskId}/revert`. */
|
|
59
|
-
export type RevertDiskResult = operations["revert-disk"]["responses"][200]["content"]["application/json"];
|
|
60
|
-
/** The request body of `POST /api/v1/disks/{diskId}/revert`. */
|
|
61
|
-
export type RevertDiskBody = NonNullable<operations["revert-disk"]["requestBody"]>["content"]["application/json"];
|
|
62
|
-
/** The success response body of `GET /api/v1/floating-ips`. */
|
|
63
|
-
export type ListFloatingIpsResult = operations["list-floating-ips"]["responses"][200]["content"]["application/json"];
|
|
64
|
-
/** The success response body of `POST /api/v1/floating-ips`. */
|
|
65
|
-
export type AllocateFloatingIpResult = operations["allocate-floating-ip"]["responses"][201]["content"]["application/json"];
|
|
66
|
-
/** The request body of `POST /api/v1/floating-ips`. */
|
|
67
|
-
export type AllocateFloatingIpBody = NonNullable<operations["allocate-floating-ip"]["requestBody"]>["content"]["application/json"];
|
|
68
|
-
/** The success response body of `GET /api/v1/floating-ips/{floatingIpId}`. */
|
|
69
|
-
export type GetFloatingIpResult = operations["get-floating-ip"]["responses"][200]["content"]["application/json"];
|
|
70
|
-
/** The success response body of `PUT /api/v1/floating-ips/{floatingIpId}/bandwidth`. */
|
|
71
|
-
export type SetFloatingIpBandwidthResult = operations["set-floating-ip-bandwidth"]["responses"][200]["content"]["application/json"];
|
|
72
|
-
/** The request body of `PUT /api/v1/floating-ips/{floatingIpId}/bandwidth`. */
|
|
73
|
-
export type SetFloatingIpBandwidthBody = NonNullable<operations["set-floating-ip-bandwidth"]["requestBody"]>["content"]["application/json"];
|
|
74
|
-
/** The success response body of `PUT /api/v1/floating-ips/{floatingIpId}/binding`. */
|
|
75
|
-
export type BindFloatingIpResult = operations["bind-floating-ip"]["responses"][200]["content"]["application/json"];
|
|
76
|
-
/** The request body of `PUT /api/v1/floating-ips/{floatingIpId}/binding`. */
|
|
77
|
-
export type BindFloatingIpBody = NonNullable<operations["bind-floating-ip"]["requestBody"]>["content"]["application/json"];
|
|
78
|
-
/** The success response body of `DELETE /api/v1/floating-ips/{floatingIpId}/binding`. */
|
|
79
|
-
export type UnbindFloatingIpResult = operations["unbind-floating-ip"]["responses"][200]["content"]["application/json"];
|
|
80
12
|
/** The success response body of `GET /api/v1/instances`. */
|
|
81
13
|
export type ListInstancesResult = operations["list-instances"]["responses"][200]["content"]["application/json"];
|
|
82
14
|
/** The query parameters of `GET /api/v1/instances`. */
|
|
83
15
|
export type ListInstancesQuery = operations["list-instances"]["parameters"]["query"];
|
|
84
16
|
/** The success response body of `POST /api/v1/instances`. */
|
|
85
|
-
export type LaunchInstanceResult = operations["launch-instance"]["responses"][
|
|
17
|
+
export type LaunchInstanceResult = operations["launch-instance"]["responses"][202]["content"]["application/json"];
|
|
86
18
|
/** The request body of `POST /api/v1/instances`. */
|
|
87
19
|
export type LaunchInstanceBody = NonNullable<operations["launch-instance"]["requestBody"]>["content"]["application/json"];
|
|
88
20
|
/** The success response body of `GET /api/v1/instances/{instanceId}`. */
|
|
@@ -122,7 +54,7 @@ export type RebuildInstanceResult = operations["rebuild-instance"]["responses"][
|
|
|
122
54
|
/** The request body of `POST /api/v1/instances/{instanceId}/rebuild`. */
|
|
123
55
|
export type RebuildInstanceBody = NonNullable<operations["rebuild-instance"]["requestBody"]>["content"]["application/json"];
|
|
124
56
|
/** The success response body of `POST /api/v1/instances/{instanceId}/resize`. */
|
|
125
|
-
export type ResizeInstanceResult = operations["resize-instance"]["responses"][
|
|
57
|
+
export type ResizeInstanceResult = operations["resize-instance"]["responses"][202]["content"]["application/json"];
|
|
126
58
|
/** The request body of `POST /api/v1/instances/{instanceId}/resize`. */
|
|
127
59
|
export type ResizeInstanceBody = NonNullable<operations["resize-instance"]["requestBody"]>["content"]["application/json"];
|
|
128
60
|
/** The success response body of `POST /api/v1/instances/{instanceId}/resize/confirm`. */
|
|
@@ -130,11 +62,17 @@ export type ConfirmInstanceResizeResult = operations["confirm-instance-resize"][
|
|
|
130
62
|
/** The success response body of `POST /api/v1/instances/{instanceId}/resize/revert`. */
|
|
131
63
|
export type RevertInstanceResizeResult = operations["revert-instance-resize"]["responses"][200]["content"]["application/json"];
|
|
132
64
|
/** The success response body of `POST /api/v1/instances/{instanceId}/start`. */
|
|
133
|
-
export type StartInstanceResult = operations["start-instance"]["responses"][
|
|
65
|
+
export type StartInstanceResult = operations["start-instance"]["responses"][202]["content"]["application/json"];
|
|
66
|
+
/** The request body of `POST /api/v1/instances/{instanceId}/start`. */
|
|
67
|
+
export type StartInstanceBody = NonNullable<operations["start-instance"]["requestBody"]>["content"]["application/json"];
|
|
134
68
|
/** The success response body of `POST /api/v1/instances/{instanceId}/stop`. */
|
|
135
|
-
export type StopInstanceResult = operations["stop-instance"]["responses"][
|
|
69
|
+
export type StopInstanceResult = operations["stop-instance"]["responses"][202]["content"]["application/json"];
|
|
70
|
+
/** The request body of `POST /api/v1/instances/{instanceId}/stop`. */
|
|
71
|
+
export type StopInstanceBody = NonNullable<operations["stop-instance"]["requestBody"]>["content"]["application/json"];
|
|
136
72
|
/** The success response body of `GET /api/v1/instances/{instanceId}/disks`. */
|
|
137
73
|
export type ListInstanceDisksResult = operations["list-instance-disks"]["responses"][200]["content"]["application/json"];
|
|
74
|
+
/** The query parameters of `GET /api/v1/instances/{instanceId}/disks`. */
|
|
75
|
+
export type ListInstanceDisksQuery = operations["list-instance-disks"]["parameters"]["query"];
|
|
138
76
|
/** The success response body of `POST /api/v1/instances/{instanceId}/disks`. */
|
|
139
77
|
export type AttachDiskResult = operations["attach-disk"]["responses"][200]["content"]["application/json"];
|
|
140
78
|
/** The request body of `POST /api/v1/instances/{instanceId}/disks`. */
|
|
@@ -142,13 +80,15 @@ export type AttachDiskBody = NonNullable<operations["attach-disk"]["requestBody"
|
|
|
142
80
|
/** The success response body of `DELETE /api/v1/instances/{instanceId}/disks/{diskId}`. */
|
|
143
81
|
export type DetachDiskResult = operations["detach-disk"]["responses"][200]["content"]["application/json"];
|
|
144
82
|
/** The success response body of `POST /api/v1/instances/{instanceId}/floating-ips`. */
|
|
145
|
-
export type AttachInstanceFloatingIpResult = operations["attach-instance-floating-ip"]["responses"][
|
|
83
|
+
export type AttachInstanceFloatingIpResult = operations["attach-instance-floating-ip"]["responses"][202]["content"]["application/json"];
|
|
146
84
|
/** The request body of `POST /api/v1/instances/{instanceId}/floating-ips`. */
|
|
147
85
|
export type AttachInstanceFloatingIpBody = NonNullable<operations["attach-instance-floating-ip"]["requestBody"]>["content"]["application/json"];
|
|
148
86
|
/** The success response body of `DELETE /api/v1/instances/{instanceId}/floating-ips/{floatingIpId}`. */
|
|
149
|
-
export type DetachInstanceFloatingIpResult = operations["detach-instance-floating-ip"]["responses"][
|
|
87
|
+
export type DetachInstanceFloatingIpResult = operations["detach-instance-floating-ip"]["responses"][202]["content"]["application/json"];
|
|
150
88
|
/** The success response body of `GET /api/v1/instances/{instanceId}/ports`. */
|
|
151
89
|
export type ListInstancePortsResult = operations["list-instance-ports"]["responses"][200]["content"]["application/json"];
|
|
90
|
+
/** The query parameters of `GET /api/v1/instances/{instanceId}/ports`. */
|
|
91
|
+
export type ListInstancePortsQuery = operations["list-instance-ports"]["parameters"]["query"];
|
|
152
92
|
/** The success response body of `POST /api/v1/instances/{instanceId}/ports`. */
|
|
153
93
|
export type AttachPortResult = operations["attach-port"]["responses"][200]["content"]["application/json"];
|
|
154
94
|
/** The request body of `POST /api/v1/instances/{instanceId}/ports`. */
|
|
@@ -159,12 +99,6 @@ export type DetachPortResult = operations["detach-port"]["responses"][200]["cont
|
|
|
159
99
|
export type ListOperationLogsResult = operations["list-operation-logs"]["responses"][200]["content"]["application/json"];
|
|
160
100
|
/** The query parameters of `GET /api/v1/operation-logs`. */
|
|
161
101
|
export type ListOperationLogsQuery = operations["list-operation-logs"]["parameters"]["query"];
|
|
162
|
-
/** The success response body of `GET /api/v1/ports`. */
|
|
163
|
-
export type ListPortsResult = operations["list-ports"]["responses"][200]["content"]["application/json"];
|
|
164
|
-
/** The success response body of `POST /api/v1/ports`. */
|
|
165
|
-
export type CreatePortResult = operations["create-port"]["responses"][201]["content"]["application/json"];
|
|
166
|
-
/** The request body of `POST /api/v1/ports`. */
|
|
167
|
-
export type CreatePortBody = NonNullable<operations["create-port"]["requestBody"]>["content"]["application/json"];
|
|
168
102
|
/** The success response body of `GET /api/v1/private-images`. */
|
|
169
103
|
export type ListPrivateImagesResult = operations["list-private-images"]["responses"][200]["content"]["application/json"];
|
|
170
104
|
/** The query parameters of `GET /api/v1/private-images`. */
|
|
@@ -179,71 +113,7 @@ export type GetPrivateImageResult = operations["get-private-image"]["responses"]
|
|
|
179
113
|
export type RenamePrivateImageResult = operations["rename-private-image"]["responses"][200]["content"]["application/json"];
|
|
180
114
|
/** The request body of `PATCH /api/v1/private-images/{privateImageId}`. */
|
|
181
115
|
export type RenamePrivateImageBody = NonNullable<operations["rename-private-image"]["requestBody"]>["content"]["application/json"];
|
|
182
|
-
/** The success response body of `GET /api/v1/
|
|
183
|
-
export type
|
|
184
|
-
/** The query parameters of `GET /api/v1/
|
|
185
|
-
export type
|
|
186
|
-
/** The success response body of `POST /api/v1/private-networks`. */
|
|
187
|
-
export type CreatePrivateNetworkResult = operations["create-private-network"]["responses"][201]["content"]["application/json"];
|
|
188
|
-
/** The request body of `POST /api/v1/private-networks`. */
|
|
189
|
-
export type CreatePrivateNetworkBody = NonNullable<operations["create-private-network"]["requestBody"]>["content"]["application/json"];
|
|
190
|
-
/** The success response body of `GET /api/v1/private-networks/{privateNetworkId}`. */
|
|
191
|
-
export type GetPrivateNetworkResult = operations["get-private-network"]["responses"][200]["content"]["application/json"];
|
|
192
|
-
/** The success response body of `PATCH /api/v1/private-networks/{privateNetworkId}`. */
|
|
193
|
-
export type RenamePrivateNetworkResult = operations["rename-private-network"]["responses"][200]["content"]["application/json"];
|
|
194
|
-
/** The request body of `PATCH /api/v1/private-networks/{privateNetworkId}`. */
|
|
195
|
-
export type RenamePrivateNetworkBody = NonNullable<operations["rename-private-network"]["requestBody"]>["content"]["application/json"];
|
|
196
|
-
/** The success response body of `GET /api/v1/private-networks/{privateNetworkId}/ipv6`. */
|
|
197
|
-
export type GetPrivateNetworkIpv6Result = operations["get-private-network-ipv6"]["responses"][200]["content"]["application/json"];
|
|
198
|
-
/** The success response body of `POST /api/v1/private-networks/{privateNetworkId}/ipv6`. */
|
|
199
|
-
export type EnablePrivateNetworkIpv6Result = operations["enable-private-network-ipv6"]["responses"][200]["content"]["application/json"];
|
|
200
|
-
/** The success response body of `GET /api/v1/private-networks/{privateNetworkId}/routes`. */
|
|
201
|
-
export type ListRoutesResult = operations["list-routes"]["responses"][200]["content"]["application/json"];
|
|
202
|
-
/** The success response body of `POST /api/v1/private-networks/{privateNetworkId}/routes`. */
|
|
203
|
-
export type CreateRouteResult = operations["create-route"]["responses"][201]["content"]["application/json"];
|
|
204
|
-
/** The request body of `POST /api/v1/private-networks/{privateNetworkId}/routes`. */
|
|
205
|
-
export type CreateRouteBody = NonNullable<operations["create-route"]["requestBody"]>["content"]["application/json"];
|
|
206
|
-
/** The success response body of `GET /api/v1/private-networks/{privateNetworkId}/subnets`. */
|
|
207
|
-
export type ListSubnetsResult = operations["list-subnets"]["responses"][200]["content"]["application/json"];
|
|
208
|
-
/** The success response body of `POST /api/v1/private-networks/{privateNetworkId}/subnets`. */
|
|
209
|
-
export type CreateSubnetResult = operations["create-subnet"]["responses"][201]["content"]["application/json"];
|
|
210
|
-
/** The request body of `POST /api/v1/private-networks/{privateNetworkId}/subnets`. */
|
|
211
|
-
export type CreateSubnetBody = NonNullable<operations["create-subnet"]["requestBody"]>["content"]["application/json"];
|
|
212
|
-
/** The success response body of `GET /api/v1/private-networks/{privateNetworkId}/subnets/next-free-cidr`. */
|
|
213
|
-
export type SuggestSubnetCidrResult = operations["suggest-subnet-cidr"]["responses"][200]["content"]["application/json"];
|
|
214
|
-
/** The query parameters of `GET /api/v1/private-networks/{privateNetworkId}/subnets/next-free-cidr`. */
|
|
215
|
-
export type SuggestSubnetCidrQuery = operations["suggest-subnet-cidr"]["parameters"]["query"];
|
|
216
|
-
/** The success response body of `GET /api/v1/security-groups`. */
|
|
217
|
-
export type ListSecurityGroupsResult = operations["list-security-groups"]["responses"][200]["content"]["application/json"];
|
|
218
|
-
/** The query parameters of `GET /api/v1/security-groups`. */
|
|
219
|
-
export type ListSecurityGroupsQuery = operations["list-security-groups"]["parameters"]["query"];
|
|
220
|
-
/** The success response body of `POST /api/v1/security-groups`. */
|
|
221
|
-
export type CreateSecurityGroupResult = operations["create-security-group"]["responses"][201]["content"]["application/json"];
|
|
222
|
-
/** The request body of `POST /api/v1/security-groups`. */
|
|
223
|
-
export type CreateSecurityGroupBody = NonNullable<operations["create-security-group"]["requestBody"]>["content"]["application/json"];
|
|
224
|
-
/** The success response body of `GET /api/v1/security-groups/{securityGroupId}`. */
|
|
225
|
-
export type GetSecurityGroupResult = operations["get-security-group"]["responses"][200]["content"]["application/json"];
|
|
226
|
-
/** The success response body of `PATCH /api/v1/security-groups/{securityGroupId}`. */
|
|
227
|
-
export type RenameSecurityGroupResult = operations["rename-security-group"]["responses"][200]["content"]["application/json"];
|
|
228
|
-
/** The request body of `PATCH /api/v1/security-groups/{securityGroupId}`. */
|
|
229
|
-
export type RenameSecurityGroupBody = NonNullable<operations["rename-security-group"]["requestBody"]>["content"]["application/json"];
|
|
230
|
-
/** The success response body of `GET /api/v1/security-groups/{securityGroupId}/rules`. */
|
|
231
|
-
export type ListSecurityGroupRulesResult = operations["list-security-group-rules"]["responses"][200]["content"]["application/json"];
|
|
232
|
-
/** The success response body of `POST /api/v1/security-groups/{securityGroupId}/rules`. */
|
|
233
|
-
export type CreateSecurityGroupRuleResult = operations["create-security-group-rule"]["responses"][201]["content"]["application/json"];
|
|
234
|
-
/** The request body of `POST /api/v1/security-groups/{securityGroupId}/rules`. */
|
|
235
|
-
export type CreateSecurityGroupRuleBody = NonNullable<operations["create-security-group-rule"]["requestBody"]>["content"]["application/json"];
|
|
236
|
-
/** The success response body of `GET /api/v1/snapshots`. */
|
|
237
|
-
export type ListSnapshotsResult = operations["list-snapshots"]["responses"][200]["content"]["application/json"];
|
|
238
|
-
/** The query parameters of `GET /api/v1/snapshots`. */
|
|
239
|
-
export type ListSnapshotsQuery = operations["list-snapshots"]["parameters"]["query"];
|
|
240
|
-
/** The success response body of `POST /api/v1/snapshots`. */
|
|
241
|
-
export type CreateSnapshotResult = operations["create-snapshot"]["responses"][201]["content"]["application/json"];
|
|
242
|
-
/** The request body of `POST /api/v1/snapshots`. */
|
|
243
|
-
export type CreateSnapshotBody = NonNullable<operations["create-snapshot"]["requestBody"]>["content"]["application/json"];
|
|
244
|
-
/** The success response body of `GET /api/v1/snapshots/{snapshotId}`. */
|
|
245
|
-
export type GetSnapshotResult = operations["get-snapshot"]["responses"][200]["content"]["application/json"];
|
|
246
|
-
/** The success response body of `PATCH /api/v1/snapshots/{snapshotId}`. */
|
|
247
|
-
export type RenameSnapshotResult = operations["rename-snapshot"]["responses"][200]["content"]["application/json"];
|
|
248
|
-
/** The request body of `PATCH /api/v1/snapshots/{snapshotId}`. */
|
|
249
|
-
export type RenameSnapshotBody = NonNullable<operations["rename-snapshot"]["requestBody"]>["content"]["application/json"];
|
|
116
|
+
/** The success response body of `GET /api/v1/instances/{instanceId}/dependencies`. */
|
|
117
|
+
export type ListInstanceDependenciesResult = operations["list-instance-dependencies"]["responses"][200]["content"]["application/json"];
|
|
118
|
+
/** The query parameters of `GET /api/v1/instances/{instanceId}/dependencies`. */
|
|
119
|
+
export type ListInstanceDependenciesQuery = operations["list-instance-dependencies"]["parameters"]["query"];
|