@alicloud/paistudio20220112 1.1.2 → 1.1.3
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/client.d.ts +14 -0
- package/dist/client.js +330 -56
- package/dist/client.js.map +1 -1
- package/package.json +2 -1
- package/src/client.ts +329 -50
package/dist/client.d.ts
CHANGED
|
@@ -202,6 +202,19 @@ export declare class Features extends $tea.Model {
|
|
|
202
202
|
[key: string]: any;
|
|
203
203
|
});
|
|
204
204
|
}
|
|
205
|
+
export declare class ForwardInfo extends $tea.Model {
|
|
206
|
+
eipAllocationId?: string;
|
|
207
|
+
natGatewayId?: string;
|
|
208
|
+
static names(): {
|
|
209
|
+
[key: string]: string;
|
|
210
|
+
};
|
|
211
|
+
static types(): {
|
|
212
|
+
[key: string]: any;
|
|
213
|
+
};
|
|
214
|
+
constructor(map?: {
|
|
215
|
+
[key: string]: any;
|
|
216
|
+
});
|
|
217
|
+
}
|
|
205
218
|
export declare class GPUInfo extends $tea.Model {
|
|
206
219
|
count?: number;
|
|
207
220
|
type?: string;
|
|
@@ -1569,6 +1582,7 @@ export declare class UserViewMetric extends $tea.Model {
|
|
|
1569
1582
|
});
|
|
1570
1583
|
}
|
|
1571
1584
|
export declare class UserVpc extends $tea.Model {
|
|
1585
|
+
defaultForwardInfo?: ForwardInfo;
|
|
1572
1586
|
defaultRoute?: string;
|
|
1573
1587
|
extendedCIDRs?: string[];
|
|
1574
1588
|
roleArn?: string;
|