@leaflow/sdk 0.58.0 → 0.60.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.
@@ -1527,6 +1527,10 @@ export interface components {
1527
1527
  lines: components["schemas"]["QuoteLine"][];
1528
1528
  };
1529
1529
  QuoteLineResult: {
1530
+ /** @description Tax included in the account quote. Absent in public catalogue estimates. */
1531
+ tax_amount?: components["schemas"]["Money"];
1532
+ /** @description Tax already included in the displayed price. */
1533
+ tax_included_amount?: components["schemas"]["Money"];
1530
1534
  /** @description Which line of the request this answers. */
1531
1535
  index: number;
1532
1536
  /**
@@ -1564,6 +1568,10 @@ export interface components {
1564
1568
  currency: string;
1565
1569
  };
1566
1570
  QuoteChangeResult: {
1571
+ /** @description Tax included in the account quote. Absent in public catalogue estimates. */
1572
+ tax_amount?: components["schemas"]["Money"];
1573
+ /** @description Tax already included in the displayed price. */
1574
+ tax_included_amount?: components["schemas"]["Money"];
1567
1575
  index: number;
1568
1576
  /** Format: uuid */
1569
1577
  subscription_item_id: string;
@@ -1985,6 +1993,11 @@ export interface components {
1985
1993
  /** @enum {string} */
1986
1994
  InvoiceStatus: "draft" | "open" | "paid" | "void" | "uncollectible";
1987
1995
  Invoice: {
1996
+ /**
1997
+ * Format: uuid
1998
+ * @description The purchase that produced this invoice. Absent on usage invoices.
1999
+ */
2000
+ order_id?: string;
1988
2001
  /** Format: uuid */
1989
2002
  id: string;
1990
2003
  /** Format: int64 */
@@ -2035,6 +2048,17 @@ export interface components {
2035
2048
  total_count?: number;
2036
2049
  };
2037
2050
  InvoiceItem: {
2051
+ /** @description Discount applied to this line before tax. */
2052
+ discount_amount?: string;
2053
+ /** @description Tax on the discounted line, including tax already included in the price. */
2054
+ tax_amount?: string;
2055
+ /** @description The part of tax_amount already included in amount. */
2056
+ tax_included_amount?: string;
2057
+ /**
2058
+ * Format: uuid
2059
+ * @description The original order line. Refunds follow that line's original payment sources.
2060
+ */
2061
+ order_item_id?: string;
2038
2062
  /** Format: uuid */
2039
2063
  id: string;
2040
2064
  /** @enum {string} */
@@ -2444,6 +2468,10 @@ export interface components {
2444
2468
  /** @enum {string} */
2445
2469
  OrderState: "pending" | "paid" | "fulfilled" | "failed" | "canceled";
2446
2470
  Order: {
2471
+ /** @description Total tax after discounts, including any tax already included in the price. */
2472
+ tax_amount?: string;
2473
+ /** @description The part of tax_amount already included in gross_amount; it is not charged again. */
2474
+ tax_included_amount?: string;
2447
2475
  /** Format: uuid */
2448
2476
  id: string;
2449
2477
  /**
@@ -2652,6 +2680,10 @@ export interface components {
2652
2680
  flat_amount?: components["schemas"]["Money"];
2653
2681
  };
2654
2682
  OrderItem: {
2683
+ /** @description Total tax after discounts, including any tax already included in the price. */
2684
+ tax_amount?: string;
2685
+ /** @description The part of tax_amount already included in gross_amount; it is not charged again. */
2686
+ tax_included_amount?: string;
2655
2687
  /** Format: uuid */
2656
2688
  id: string;
2657
2689
  /** Format: uuid */
@@ -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"][201]["content"]["application/json"];
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"][200]["content"]["application/json"];
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"][200]["content"]["application/json"];
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"][200]["content"]["application/json"];
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"][200]["content"]["application/json"];
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"][200]["content"]["application/json"];
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/private-networks`. */
183
- export type ListPrivateNetworksResult = operations["list-private-networks"]["responses"][200]["content"]["application/json"];
184
- /** The query parameters of `GET /api/v1/private-networks`. */
185
- export type ListPrivateNetworksQuery = operations["list-private-networks"]["parameters"]["query"];
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"];