@alicloud/pai-dsw20220101 1.1.43 → 1.2.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/client.d.ts +169 -72
- package/dist/client.js +502 -309
- package/dist/client.js.map +1 -1
- package/package.json +6 -6
- package/src/client.ts +290 -72
package/dist/client.d.ts
CHANGED
|
@@ -85,11 +85,11 @@ export declare class CreateIdleInstanceCullerResponseBody extends $tea.Model {
|
|
|
85
85
|
});
|
|
86
86
|
}
|
|
87
87
|
export declare class CreateIdleInstanceCullerResponse extends $tea.Model {
|
|
88
|
-
headers
|
|
88
|
+
headers?: {
|
|
89
89
|
[key: string]: string;
|
|
90
90
|
};
|
|
91
|
-
statusCode
|
|
92
|
-
body
|
|
91
|
+
statusCode?: number;
|
|
92
|
+
body?: CreateIdleInstanceCullerResponseBody;
|
|
93
93
|
static names(): {
|
|
94
94
|
[key: string]: string;
|
|
95
95
|
};
|
|
@@ -148,11 +148,11 @@ export declare class CreateInstanceResponseBody extends $tea.Model {
|
|
|
148
148
|
});
|
|
149
149
|
}
|
|
150
150
|
export declare class CreateInstanceResponse extends $tea.Model {
|
|
151
|
-
headers
|
|
151
|
+
headers?: {
|
|
152
152
|
[key: string]: string;
|
|
153
153
|
};
|
|
154
|
-
statusCode
|
|
155
|
-
body
|
|
154
|
+
statusCode?: number;
|
|
155
|
+
body?: CreateInstanceResponseBody;
|
|
156
156
|
static names(): {
|
|
157
157
|
[key: string]: string;
|
|
158
158
|
};
|
|
@@ -194,11 +194,11 @@ export declare class CreateInstanceShutdownTimerResponseBody extends $tea.Model
|
|
|
194
194
|
});
|
|
195
195
|
}
|
|
196
196
|
export declare class CreateInstanceShutdownTimerResponse extends $tea.Model {
|
|
197
|
-
headers
|
|
197
|
+
headers?: {
|
|
198
198
|
[key: string]: string;
|
|
199
199
|
};
|
|
200
|
-
statusCode
|
|
201
|
-
body
|
|
200
|
+
statusCode?: number;
|
|
201
|
+
body?: CreateInstanceShutdownTimerResponseBody;
|
|
202
202
|
static names(): {
|
|
203
203
|
[key: string]: string;
|
|
204
204
|
};
|
|
@@ -245,11 +245,11 @@ export declare class CreateInstanceSnapshotResponseBody extends $tea.Model {
|
|
|
245
245
|
});
|
|
246
246
|
}
|
|
247
247
|
export declare class CreateInstanceSnapshotResponse extends $tea.Model {
|
|
248
|
-
headers
|
|
248
|
+
headers?: {
|
|
249
249
|
[key: string]: string;
|
|
250
250
|
};
|
|
251
|
-
statusCode
|
|
252
|
-
body
|
|
251
|
+
statusCode?: number;
|
|
252
|
+
body?: CreateInstanceSnapshotResponseBody;
|
|
253
253
|
static names(): {
|
|
254
254
|
[key: string]: string;
|
|
255
255
|
};
|
|
@@ -277,11 +277,11 @@ export declare class DeleteIdleInstanceCullerResponseBody extends $tea.Model {
|
|
|
277
277
|
});
|
|
278
278
|
}
|
|
279
279
|
export declare class DeleteIdleInstanceCullerResponse extends $tea.Model {
|
|
280
|
-
headers
|
|
280
|
+
headers?: {
|
|
281
281
|
[key: string]: string;
|
|
282
282
|
};
|
|
283
|
-
statusCode
|
|
284
|
-
body
|
|
283
|
+
statusCode?: number;
|
|
284
|
+
body?: DeleteIdleInstanceCullerResponseBody;
|
|
285
285
|
static names(): {
|
|
286
286
|
[key: string]: string;
|
|
287
287
|
};
|
|
@@ -310,11 +310,11 @@ export declare class DeleteInstanceResponseBody extends $tea.Model {
|
|
|
310
310
|
});
|
|
311
311
|
}
|
|
312
312
|
export declare class DeleteInstanceResponse extends $tea.Model {
|
|
313
|
-
headers
|
|
313
|
+
headers?: {
|
|
314
314
|
[key: string]: string;
|
|
315
315
|
};
|
|
316
|
-
statusCode
|
|
317
|
-
body
|
|
316
|
+
statusCode?: number;
|
|
317
|
+
body?: DeleteInstanceResponseBody;
|
|
318
318
|
static names(): {
|
|
319
319
|
[key: string]: string;
|
|
320
320
|
};
|
|
@@ -343,11 +343,11 @@ export declare class DeleteInstanceShutdownTimerResponseBody extends $tea.Model
|
|
|
343
343
|
});
|
|
344
344
|
}
|
|
345
345
|
export declare class DeleteInstanceShutdownTimerResponse extends $tea.Model {
|
|
346
|
-
headers
|
|
346
|
+
headers?: {
|
|
347
347
|
[key: string]: string;
|
|
348
348
|
};
|
|
349
|
-
statusCode
|
|
350
|
-
body
|
|
349
|
+
statusCode?: number;
|
|
350
|
+
body?: DeleteInstanceShutdownTimerResponseBody;
|
|
351
351
|
static names(): {
|
|
352
352
|
[key: string]: string;
|
|
353
353
|
};
|
|
@@ -377,11 +377,11 @@ export declare class DeleteInstanceSnapshotResponseBody extends $tea.Model {
|
|
|
377
377
|
});
|
|
378
378
|
}
|
|
379
379
|
export declare class DeleteInstanceSnapshotResponse extends $tea.Model {
|
|
380
|
-
headers
|
|
380
|
+
headers?: {
|
|
381
381
|
[key: string]: string;
|
|
382
382
|
};
|
|
383
|
-
statusCode
|
|
384
|
-
body
|
|
383
|
+
statusCode?: number;
|
|
384
|
+
body?: DeleteInstanceSnapshotResponseBody;
|
|
385
385
|
static names(): {
|
|
386
386
|
[key: string]: string;
|
|
387
387
|
};
|
|
@@ -413,11 +413,11 @@ export declare class GetIdleInstanceCullerResponseBody extends $tea.Model {
|
|
|
413
413
|
});
|
|
414
414
|
}
|
|
415
415
|
export declare class GetIdleInstanceCullerResponse extends $tea.Model {
|
|
416
|
-
headers
|
|
416
|
+
headers?: {
|
|
417
417
|
[key: string]: string;
|
|
418
418
|
};
|
|
419
|
-
statusCode
|
|
420
|
-
body
|
|
419
|
+
statusCode?: number;
|
|
420
|
+
body?: GetIdleInstanceCullerResponseBody;
|
|
421
421
|
static names(): {
|
|
422
422
|
[key: string]: string;
|
|
423
423
|
};
|
|
@@ -456,6 +456,7 @@ export declare class GetInstanceResponseBody extends $tea.Model {
|
|
|
456
456
|
labels?: GetInstanceResponseBodyLabels[];
|
|
457
457
|
latestSnapshot?: GetInstanceResponseBodyLatestSnapshot;
|
|
458
458
|
message?: string;
|
|
459
|
+
nodeErrorRecovery?: GetInstanceResponseBodyNodeErrorRecovery;
|
|
459
460
|
paymentType?: string;
|
|
460
461
|
priority?: number;
|
|
461
462
|
reasonCode?: string;
|
|
@@ -485,11 +486,59 @@ export declare class GetInstanceResponseBody extends $tea.Model {
|
|
|
485
486
|
});
|
|
486
487
|
}
|
|
487
488
|
export declare class GetInstanceResponse extends $tea.Model {
|
|
488
|
-
headers
|
|
489
|
+
headers?: {
|
|
489
490
|
[key: string]: string;
|
|
490
491
|
};
|
|
491
|
-
statusCode
|
|
492
|
-
body
|
|
492
|
+
statusCode?: number;
|
|
493
|
+
body?: GetInstanceResponseBody;
|
|
494
|
+
static names(): {
|
|
495
|
+
[key: string]: string;
|
|
496
|
+
};
|
|
497
|
+
static types(): {
|
|
498
|
+
[key: string]: any;
|
|
499
|
+
};
|
|
500
|
+
constructor(map?: {
|
|
501
|
+
[key: string]: any;
|
|
502
|
+
});
|
|
503
|
+
}
|
|
504
|
+
export declare class GetInstanceEventsRequest extends $tea.Model {
|
|
505
|
+
endTime?: string;
|
|
506
|
+
maxEventsNum?: number;
|
|
507
|
+
startTime?: string;
|
|
508
|
+
static names(): {
|
|
509
|
+
[key: string]: string;
|
|
510
|
+
};
|
|
511
|
+
static types(): {
|
|
512
|
+
[key: string]: any;
|
|
513
|
+
};
|
|
514
|
+
constructor(map?: {
|
|
515
|
+
[key: string]: any;
|
|
516
|
+
});
|
|
517
|
+
}
|
|
518
|
+
export declare class GetInstanceEventsResponseBody extends $tea.Model {
|
|
519
|
+
code?: string;
|
|
520
|
+
events?: string[];
|
|
521
|
+
httpStatusCode?: number;
|
|
522
|
+
instanceId?: string;
|
|
523
|
+
message?: string;
|
|
524
|
+
requestId?: string;
|
|
525
|
+
success?: boolean;
|
|
526
|
+
static names(): {
|
|
527
|
+
[key: string]: string;
|
|
528
|
+
};
|
|
529
|
+
static types(): {
|
|
530
|
+
[key: string]: any;
|
|
531
|
+
};
|
|
532
|
+
constructor(map?: {
|
|
533
|
+
[key: string]: any;
|
|
534
|
+
});
|
|
535
|
+
}
|
|
536
|
+
export declare class GetInstanceEventsResponse extends $tea.Model {
|
|
537
|
+
headers?: {
|
|
538
|
+
[key: string]: string;
|
|
539
|
+
};
|
|
540
|
+
statusCode?: number;
|
|
541
|
+
body?: GetInstanceEventsResponseBody;
|
|
493
542
|
static names(): {
|
|
494
543
|
[key: string]: string;
|
|
495
544
|
};
|
|
@@ -534,11 +583,11 @@ export declare class GetInstanceMetricsResponseBody extends $tea.Model {
|
|
|
534
583
|
});
|
|
535
584
|
}
|
|
536
585
|
export declare class GetInstanceMetricsResponse extends $tea.Model {
|
|
537
|
-
headers
|
|
586
|
+
headers?: {
|
|
538
587
|
[key: string]: string;
|
|
539
588
|
};
|
|
540
|
-
statusCode
|
|
541
|
-
body
|
|
589
|
+
statusCode?: number;
|
|
590
|
+
body?: GetInstanceMetricsResponseBody;
|
|
542
591
|
static names(): {
|
|
543
592
|
[key: string]: string;
|
|
544
593
|
};
|
|
@@ -571,11 +620,11 @@ export declare class GetInstanceShutdownTimerResponseBody extends $tea.Model {
|
|
|
571
620
|
});
|
|
572
621
|
}
|
|
573
622
|
export declare class GetInstanceShutdownTimerResponse extends $tea.Model {
|
|
574
|
-
headers
|
|
623
|
+
headers?: {
|
|
575
624
|
[key: string]: string;
|
|
576
625
|
};
|
|
577
|
-
statusCode
|
|
578
|
-
body
|
|
626
|
+
statusCode?: number;
|
|
627
|
+
body?: GetInstanceShutdownTimerResponseBody;
|
|
579
628
|
static names(): {
|
|
580
629
|
[key: string]: string;
|
|
581
630
|
};
|
|
@@ -615,11 +664,11 @@ export declare class GetInstanceSnapshotResponseBody extends $tea.Model {
|
|
|
615
664
|
});
|
|
616
665
|
}
|
|
617
666
|
export declare class GetInstanceSnapshotResponse extends $tea.Model {
|
|
618
|
-
headers
|
|
667
|
+
headers?: {
|
|
619
668
|
[key: string]: string;
|
|
620
669
|
};
|
|
621
|
-
statusCode
|
|
622
|
-
body
|
|
670
|
+
statusCode?: number;
|
|
671
|
+
body?: GetInstanceSnapshotResponseBody;
|
|
623
672
|
static names(): {
|
|
624
673
|
[key: string]: string;
|
|
625
674
|
};
|
|
@@ -664,11 +713,11 @@ export declare class GetLifecycleResponseBody extends $tea.Model {
|
|
|
664
713
|
});
|
|
665
714
|
}
|
|
666
715
|
export declare class GetLifecycleResponse extends $tea.Model {
|
|
667
|
-
headers
|
|
716
|
+
headers?: {
|
|
668
717
|
[key: string]: string;
|
|
669
718
|
};
|
|
670
|
-
statusCode
|
|
671
|
-
body
|
|
719
|
+
statusCode?: number;
|
|
720
|
+
body?: GetLifecycleResponseBody;
|
|
672
721
|
static names(): {
|
|
673
722
|
[key: string]: string;
|
|
674
723
|
};
|
|
@@ -716,11 +765,11 @@ export declare class GetResourceGroupStatisticsResponseBody extends $tea.Model {
|
|
|
716
765
|
});
|
|
717
766
|
}
|
|
718
767
|
export declare class GetResourceGroupStatisticsResponse extends $tea.Model {
|
|
719
|
-
headers
|
|
768
|
+
headers?: {
|
|
720
769
|
[key: string]: string;
|
|
721
770
|
};
|
|
722
|
-
statusCode
|
|
723
|
-
body
|
|
771
|
+
statusCode?: number;
|
|
772
|
+
body?: GetResourceGroupStatisticsResponseBody;
|
|
724
773
|
static names(): {
|
|
725
774
|
[key: string]: string;
|
|
726
775
|
};
|
|
@@ -761,11 +810,11 @@ export declare class GetTokenResponseBody extends $tea.Model {
|
|
|
761
810
|
});
|
|
762
811
|
}
|
|
763
812
|
export declare class GetTokenResponse extends $tea.Model {
|
|
764
|
-
headers
|
|
813
|
+
headers?: {
|
|
765
814
|
[key: string]: string;
|
|
766
815
|
};
|
|
767
|
-
statusCode
|
|
768
|
-
body
|
|
816
|
+
statusCode?: number;
|
|
817
|
+
body?: GetTokenResponseBody;
|
|
769
818
|
static names(): {
|
|
770
819
|
[key: string]: string;
|
|
771
820
|
};
|
|
@@ -797,11 +846,11 @@ export declare class GetUserConfigResponseBody extends $tea.Model {
|
|
|
797
846
|
});
|
|
798
847
|
}
|
|
799
848
|
export declare class GetUserConfigResponse extends $tea.Model {
|
|
800
|
-
headers
|
|
849
|
+
headers?: {
|
|
801
850
|
[key: string]: string;
|
|
802
851
|
};
|
|
803
|
-
statusCode
|
|
804
|
-
body
|
|
852
|
+
statusCode?: number;
|
|
853
|
+
body?: GetUserConfigResponseBody;
|
|
805
854
|
static names(): {
|
|
806
855
|
[key: string]: string;
|
|
807
856
|
};
|
|
@@ -847,11 +896,11 @@ export declare class ListEcsSpecsResponseBody extends $tea.Model {
|
|
|
847
896
|
});
|
|
848
897
|
}
|
|
849
898
|
export declare class ListEcsSpecsResponse extends $tea.Model {
|
|
850
|
-
headers
|
|
899
|
+
headers?: {
|
|
851
900
|
[key: string]: string;
|
|
852
901
|
};
|
|
853
|
-
statusCode
|
|
854
|
-
body
|
|
902
|
+
statusCode?: number;
|
|
903
|
+
body?: ListEcsSpecsResponseBody;
|
|
855
904
|
static names(): {
|
|
856
905
|
[key: string]: string;
|
|
857
906
|
};
|
|
@@ -896,11 +945,11 @@ export declare class ListInstanceSnapshotResponseBody extends $tea.Model {
|
|
|
896
945
|
});
|
|
897
946
|
}
|
|
898
947
|
export declare class ListInstanceSnapshotResponse extends $tea.Model {
|
|
899
|
-
headers
|
|
948
|
+
headers?: {
|
|
900
949
|
[key: string]: string;
|
|
901
950
|
};
|
|
902
|
-
statusCode
|
|
903
|
-
body
|
|
951
|
+
statusCode?: number;
|
|
952
|
+
body?: ListInstanceSnapshotResponseBody;
|
|
904
953
|
static names(): {
|
|
905
954
|
[key: string]: string;
|
|
906
955
|
};
|
|
@@ -945,11 +994,11 @@ export declare class ListInstanceStatisticsResponseBody extends $tea.Model {
|
|
|
945
994
|
});
|
|
946
995
|
}
|
|
947
996
|
export declare class ListInstanceStatisticsResponse extends $tea.Model {
|
|
948
|
-
headers
|
|
997
|
+
headers?: {
|
|
949
998
|
[key: string]: string;
|
|
950
999
|
};
|
|
951
|
-
statusCode
|
|
952
|
-
body
|
|
1000
|
+
statusCode?: number;
|
|
1001
|
+
body?: ListInstanceStatisticsResponseBody;
|
|
953
1002
|
static names(): {
|
|
954
1003
|
[key: string]: string;
|
|
955
1004
|
};
|
|
@@ -1002,11 +1051,11 @@ export declare class ListInstancesResponseBody extends $tea.Model {
|
|
|
1002
1051
|
});
|
|
1003
1052
|
}
|
|
1004
1053
|
export declare class ListInstancesResponse extends $tea.Model {
|
|
1005
|
-
headers
|
|
1054
|
+
headers?: {
|
|
1006
1055
|
[key: string]: string;
|
|
1007
1056
|
};
|
|
1008
|
-
statusCode
|
|
1009
|
-
body
|
|
1057
|
+
statusCode?: number;
|
|
1058
|
+
body?: ListInstancesResponseBody;
|
|
1010
1059
|
static names(): {
|
|
1011
1060
|
[key: string]: string;
|
|
1012
1061
|
};
|
|
@@ -1035,11 +1084,11 @@ export declare class StartInstanceResponseBody extends $tea.Model {
|
|
|
1035
1084
|
});
|
|
1036
1085
|
}
|
|
1037
1086
|
export declare class StartInstanceResponse extends $tea.Model {
|
|
1038
|
-
headers
|
|
1087
|
+
headers?: {
|
|
1039
1088
|
[key: string]: string;
|
|
1040
1089
|
};
|
|
1041
|
-
statusCode
|
|
1042
|
-
body
|
|
1090
|
+
statusCode?: number;
|
|
1091
|
+
body?: StartInstanceResponseBody;
|
|
1043
1092
|
static names(): {
|
|
1044
1093
|
[key: string]: string;
|
|
1045
1094
|
};
|
|
@@ -1080,11 +1129,11 @@ export declare class StopInstanceResponseBody extends $tea.Model {
|
|
|
1080
1129
|
});
|
|
1081
1130
|
}
|
|
1082
1131
|
export declare class StopInstanceResponse extends $tea.Model {
|
|
1083
|
-
headers
|
|
1132
|
+
headers?: {
|
|
1084
1133
|
[key: string]: string;
|
|
1085
1134
|
};
|
|
1086
|
-
statusCode
|
|
1087
|
-
body
|
|
1135
|
+
statusCode?: number;
|
|
1136
|
+
body?: StopInstanceResponseBody;
|
|
1088
1137
|
static names(): {
|
|
1089
1138
|
[key: string]: string;
|
|
1090
1139
|
};
|
|
@@ -1097,9 +1146,11 @@ export declare class StopInstanceResponse extends $tea.Model {
|
|
|
1097
1146
|
}
|
|
1098
1147
|
export declare class UpdateInstanceRequest extends $tea.Model {
|
|
1099
1148
|
accessibility?: string;
|
|
1149
|
+
cloudDisks?: UpdateInstanceRequestCloudDisks[];
|
|
1100
1150
|
datasets?: UpdateInstanceRequestDatasets[];
|
|
1101
1151
|
disassociateDatasets?: boolean;
|
|
1102
1152
|
disassociateDriver?: boolean;
|
|
1153
|
+
disassociateForwardInfos?: boolean;
|
|
1103
1154
|
disassociateVpc?: boolean;
|
|
1104
1155
|
driver?: string;
|
|
1105
1156
|
ecsSpec?: string;
|
|
@@ -1139,11 +1190,11 @@ export declare class UpdateInstanceResponseBody extends $tea.Model {
|
|
|
1139
1190
|
});
|
|
1140
1191
|
}
|
|
1141
1192
|
export declare class UpdateInstanceResponse extends $tea.Model {
|
|
1142
|
-
headers
|
|
1193
|
+
headers?: {
|
|
1143
1194
|
[key: string]: string;
|
|
1144
1195
|
};
|
|
1145
|
-
statusCode
|
|
1146
|
-
body
|
|
1196
|
+
statusCode?: number;
|
|
1197
|
+
body?: UpdateInstanceResponseBody;
|
|
1147
1198
|
static names(): {
|
|
1148
1199
|
[key: string]: string;
|
|
1149
1200
|
};
|
|
@@ -1195,10 +1246,25 @@ export declare class ForwardInfoResponseConnectInfo extends $tea.Model {
|
|
|
1195
1246
|
[key: string]: any;
|
|
1196
1247
|
});
|
|
1197
1248
|
}
|
|
1249
|
+
export declare class CreateInstanceRequestCloudDisksStatus extends $tea.Model {
|
|
1250
|
+
available?: number;
|
|
1251
|
+
capacity?: number;
|
|
1252
|
+
usage?: number;
|
|
1253
|
+
static names(): {
|
|
1254
|
+
[key: string]: string;
|
|
1255
|
+
};
|
|
1256
|
+
static types(): {
|
|
1257
|
+
[key: string]: any;
|
|
1258
|
+
};
|
|
1259
|
+
constructor(map?: {
|
|
1260
|
+
[key: string]: any;
|
|
1261
|
+
});
|
|
1262
|
+
}
|
|
1198
1263
|
export declare class CreateInstanceRequestCloudDisks extends $tea.Model {
|
|
1199
1264
|
capacity?: string;
|
|
1200
1265
|
mountPath?: string;
|
|
1201
1266
|
path?: string;
|
|
1267
|
+
status?: CreateInstanceRequestCloudDisksStatus;
|
|
1202
1268
|
subType?: string;
|
|
1203
1269
|
static names(): {
|
|
1204
1270
|
[key: string]: string;
|
|
@@ -1395,6 +1461,20 @@ export declare class GetInstanceResponseBodyLatestSnapshot extends $tea.Model {
|
|
|
1395
1461
|
[key: string]: any;
|
|
1396
1462
|
});
|
|
1397
1463
|
}
|
|
1464
|
+
export declare class GetInstanceResponseBodyNodeErrorRecovery extends $tea.Model {
|
|
1465
|
+
autoSwitchCountdownSeconds?: number;
|
|
1466
|
+
enableAutoSwitchOnNodeError?: boolean;
|
|
1467
|
+
hasNodeError?: boolean;
|
|
1468
|
+
static names(): {
|
|
1469
|
+
[key: string]: string;
|
|
1470
|
+
};
|
|
1471
|
+
static types(): {
|
|
1472
|
+
[key: string]: any;
|
|
1473
|
+
};
|
|
1474
|
+
constructor(map?: {
|
|
1475
|
+
[key: string]: any;
|
|
1476
|
+
});
|
|
1477
|
+
}
|
|
1398
1478
|
export declare class GetInstanceResponseBodyRequestedResource extends $tea.Model {
|
|
1399
1479
|
CPU?: string;
|
|
1400
1480
|
GPU?: string;
|
|
@@ -1774,6 +1854,19 @@ export declare class ListInstancesResponseBodyInstances extends $tea.Model {
|
|
|
1774
1854
|
[key: string]: any;
|
|
1775
1855
|
});
|
|
1776
1856
|
}
|
|
1857
|
+
export declare class UpdateInstanceRequestCloudDisks extends $tea.Model {
|
|
1858
|
+
capacity?: string;
|
|
1859
|
+
subType?: string;
|
|
1860
|
+
static names(): {
|
|
1861
|
+
[key: string]: string;
|
|
1862
|
+
};
|
|
1863
|
+
static types(): {
|
|
1864
|
+
[key: string]: any;
|
|
1865
|
+
};
|
|
1866
|
+
constructor(map?: {
|
|
1867
|
+
[key: string]: any;
|
|
1868
|
+
});
|
|
1869
|
+
}
|
|
1777
1870
|
export declare class UpdateInstanceRequestDatasets extends $tea.Model {
|
|
1778
1871
|
datasetId?: string;
|
|
1779
1872
|
mountPath?: string;
|
|
@@ -1865,6 +1958,10 @@ export default class Client extends OpenApi {
|
|
|
1865
1958
|
[key: string]: string;
|
|
1866
1959
|
}, runtime: $Util.RuntimeOptions): Promise<GetInstanceResponse>;
|
|
1867
1960
|
getInstance(InstanceId: string): Promise<GetInstanceResponse>;
|
|
1961
|
+
getInstanceEventsWithOptions(InstanceId: string, request: GetInstanceEventsRequest, headers: {
|
|
1962
|
+
[key: string]: string;
|
|
1963
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetInstanceEventsResponse>;
|
|
1964
|
+
getInstanceEvents(InstanceId: string, request: GetInstanceEventsRequest): Promise<GetInstanceEventsResponse>;
|
|
1868
1965
|
getInstanceMetricsWithOptions(InstanceId: string, request: GetInstanceMetricsRequest, headers: {
|
|
1869
1966
|
[key: string]: string;
|
|
1870
1967
|
}, runtime: $Util.RuntimeOptions): Promise<GetInstanceMetricsResponse>;
|