@alicloud/appstream-center20210901 3.0.0 → 3.1.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 +2337 -155
- package/dist/client.js +1396 -94
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +3418 -305
package/dist/client.d.ts
CHANGED
|
@@ -237,6 +237,8 @@ export declare class CreateAppInstanceGroupRequestNodePool extends $dara.Model {
|
|
|
237
237
|
}
|
|
238
238
|
export declare class CreateAppInstanceGroupRequestRuntimePolicy extends $dara.Model {
|
|
239
239
|
debugMode?: string;
|
|
240
|
+
perSessionPerApp?: boolean;
|
|
241
|
+
sessionPreOpen?: string;
|
|
240
242
|
/**
|
|
241
243
|
* @remarks
|
|
242
244
|
* 会话类型。
|
|
@@ -245,6 +247,7 @@ export declare class CreateAppInstanceGroupRequestRuntimePolicy extends $dara.Mo
|
|
|
245
247
|
* NORMAL
|
|
246
248
|
*/
|
|
247
249
|
sessionType?: string;
|
|
250
|
+
sessionUserGenerationMode?: string;
|
|
248
251
|
static names(): {
|
|
249
252
|
[key: string]: string;
|
|
250
253
|
};
|
|
@@ -278,8 +281,24 @@ export declare class CreateAppInstanceGroupRequestSecurityPolicy extends $dara.M
|
|
|
278
281
|
[key: string]: any;
|
|
279
282
|
});
|
|
280
283
|
}
|
|
284
|
+
export declare class CreateAppInstanceGroupRequestStoragePolicyUserProfile extends $dara.Model {
|
|
285
|
+
remoteStoragePath?: string;
|
|
286
|
+
remoteStorageType?: string;
|
|
287
|
+
userProfileSwitch?: boolean;
|
|
288
|
+
static names(): {
|
|
289
|
+
[key: string]: string;
|
|
290
|
+
};
|
|
291
|
+
static types(): {
|
|
292
|
+
[key: string]: any;
|
|
293
|
+
};
|
|
294
|
+
validate(): void;
|
|
295
|
+
constructor(map?: {
|
|
296
|
+
[key: string]: any;
|
|
297
|
+
});
|
|
298
|
+
}
|
|
281
299
|
export declare class CreateAppInstanceGroupRequestStoragePolicy extends $dara.Model {
|
|
282
300
|
storageTypeList?: string[];
|
|
301
|
+
userProfile?: CreateAppInstanceGroupRequestStoragePolicyUserProfile;
|
|
283
302
|
static names(): {
|
|
284
303
|
[key: string]: string;
|
|
285
304
|
};
|
|
@@ -368,21 +387,38 @@ export declare class CreateAppInstanceGroupResponseBodyAppInstanceGroupModel ext
|
|
|
368
387
|
}
|
|
369
388
|
export declare class DeleteAppInstancesResponseBodyDeleteAppInstanceModels extends $dara.Model {
|
|
370
389
|
/**
|
|
390
|
+
* @remarks
|
|
391
|
+
* The ID of the application instance.
|
|
392
|
+
*
|
|
371
393
|
* @example
|
|
372
394
|
* ai-gbuea*****
|
|
373
395
|
*/
|
|
374
396
|
appInstanceId?: string;
|
|
375
397
|
/**
|
|
398
|
+
* @remarks
|
|
399
|
+
* The error code.
|
|
400
|
+
*
|
|
376
401
|
* @example
|
|
377
402
|
* InvalidParameter.ProductType
|
|
378
403
|
*/
|
|
379
404
|
code?: string;
|
|
380
405
|
/**
|
|
406
|
+
* @remarks
|
|
407
|
+
* The error message.
|
|
408
|
+
*
|
|
381
409
|
* @example
|
|
382
410
|
* The parameter ProductType is invalid.
|
|
383
411
|
*/
|
|
384
412
|
message?: string;
|
|
385
413
|
/**
|
|
414
|
+
* @remarks
|
|
415
|
+
* Specifies whether the application instance is deleted.
|
|
416
|
+
*
|
|
417
|
+
* Valid values:
|
|
418
|
+
*
|
|
419
|
+
* * true
|
|
420
|
+
* * false
|
|
421
|
+
*
|
|
386
422
|
* @example
|
|
387
423
|
* true
|
|
388
424
|
*/
|
|
@@ -763,18 +799,40 @@ export declare class GetAppInstanceGroupResponseBodyAppInstanceGroupModels exten
|
|
|
763
799
|
}
|
|
764
800
|
export declare class GetResourcePriceResponseBodyPriceListPricePromotions extends $dara.Model {
|
|
765
801
|
/**
|
|
802
|
+
* @remarks
|
|
803
|
+
* The coupon code.
|
|
804
|
+
*
|
|
766
805
|
* @example
|
|
767
806
|
* coupon****
|
|
768
807
|
*/
|
|
769
808
|
optionCode?: string;
|
|
809
|
+
/**
|
|
810
|
+
* @remarks
|
|
811
|
+
* The coupon description.
|
|
812
|
+
*/
|
|
770
813
|
promotionDesc?: string;
|
|
771
814
|
/**
|
|
815
|
+
* @remarks
|
|
816
|
+
* The coupon ID.
|
|
817
|
+
*
|
|
772
818
|
* @example
|
|
773
819
|
* 1847709****
|
|
774
820
|
*/
|
|
775
821
|
promotionId?: string;
|
|
822
|
+
/**
|
|
823
|
+
* @remarks
|
|
824
|
+
* The coupon name.
|
|
825
|
+
*/
|
|
776
826
|
promotionName?: string;
|
|
777
827
|
/**
|
|
828
|
+
* @remarks
|
|
829
|
+
* Indicates whether the coupon was used.
|
|
830
|
+
*
|
|
831
|
+
* Valid values:
|
|
832
|
+
*
|
|
833
|
+
* * true
|
|
834
|
+
* * false
|
|
835
|
+
*
|
|
778
836
|
* @example
|
|
779
837
|
* true
|
|
780
838
|
*/
|
|
@@ -792,22 +850,38 @@ export declare class GetResourcePriceResponseBodyPriceListPricePromotions extend
|
|
|
792
850
|
}
|
|
793
851
|
export declare class GetResourcePriceResponseBodyPriceListPrice extends $dara.Model {
|
|
794
852
|
/**
|
|
853
|
+
* @remarks
|
|
854
|
+
* The currency type.
|
|
855
|
+
*
|
|
795
856
|
* @example
|
|
796
857
|
* CNY
|
|
797
858
|
*/
|
|
798
859
|
currency?: string;
|
|
799
860
|
/**
|
|
861
|
+
* @remarks
|
|
862
|
+
* The discount. The actual price is calculated based on the following formula: Actual price = Original price - Discount.
|
|
863
|
+
*
|
|
800
864
|
* @example
|
|
801
865
|
* 999.0
|
|
802
866
|
*/
|
|
803
867
|
discountPrice?: string;
|
|
804
868
|
/**
|
|
869
|
+
* @remarks
|
|
870
|
+
* The original price.
|
|
871
|
+
*
|
|
805
872
|
* @example
|
|
806
873
|
* 6700
|
|
807
874
|
*/
|
|
808
875
|
originalPrice?: string;
|
|
876
|
+
/**
|
|
877
|
+
* @remarks
|
|
878
|
+
* The coupon metadata.
|
|
879
|
+
*/
|
|
809
880
|
promotions?: GetResourcePriceResponseBodyPriceListPricePromotions[];
|
|
810
881
|
/**
|
|
882
|
+
* @remarks
|
|
883
|
+
* The actual price. The actual price is calculated based on the following formula: Actual price = Original price - Discount.
|
|
884
|
+
*
|
|
811
885
|
* @example
|
|
812
886
|
* 5278.0
|
|
813
887
|
*/
|
|
@@ -824,8 +898,15 @@ export declare class GetResourcePriceResponseBodyPriceListPrice extends $dara.Mo
|
|
|
824
898
|
});
|
|
825
899
|
}
|
|
826
900
|
export declare class GetResourcePriceResponseBodyPriceListRules extends $dara.Model {
|
|
901
|
+
/**
|
|
902
|
+
* @remarks
|
|
903
|
+
* The description of the price calculation rule.
|
|
904
|
+
*/
|
|
827
905
|
description?: string;
|
|
828
906
|
/**
|
|
907
|
+
* @remarks
|
|
908
|
+
* The ID of the price calculation rule.
|
|
909
|
+
*
|
|
829
910
|
* @example
|
|
830
911
|
* 260904273633****
|
|
831
912
|
*/
|
|
@@ -842,12 +923,28 @@ export declare class GetResourcePriceResponseBodyPriceListRules extends $dara.Mo
|
|
|
842
923
|
});
|
|
843
924
|
}
|
|
844
925
|
export declare class GetResourcePriceResponseBodyPriceList extends $dara.Model {
|
|
926
|
+
/**
|
|
927
|
+
* @remarks
|
|
928
|
+
* The price details.
|
|
929
|
+
*/
|
|
845
930
|
price?: GetResourcePriceResponseBodyPriceListPrice;
|
|
846
931
|
/**
|
|
932
|
+
* @remarks
|
|
933
|
+
* The price type.
|
|
934
|
+
*
|
|
935
|
+
* Valid values:
|
|
936
|
+
*
|
|
937
|
+
* * Connected: in use
|
|
938
|
+
* * Standby: pending for use.
|
|
939
|
+
*
|
|
847
940
|
* @example
|
|
848
941
|
* Standby
|
|
849
942
|
*/
|
|
850
943
|
priceType?: string;
|
|
944
|
+
/**
|
|
945
|
+
* @remarks
|
|
946
|
+
* The price calculation rules.
|
|
947
|
+
*/
|
|
851
948
|
rules?: GetResourcePriceResponseBodyPriceListRules[];
|
|
852
949
|
static names(): {
|
|
853
950
|
[key: string]: string;
|
|
@@ -862,18 +959,40 @@ export declare class GetResourcePriceResponseBodyPriceList extends $dara.Model {
|
|
|
862
959
|
}
|
|
863
960
|
export declare class GetResourcePriceResponseBodyPriceModelPricePromotions extends $dara.Model {
|
|
864
961
|
/**
|
|
962
|
+
* @remarks
|
|
963
|
+
* The coupon code.
|
|
964
|
+
*
|
|
865
965
|
* @example
|
|
866
966
|
* coupon****
|
|
867
967
|
*/
|
|
868
968
|
optionCode?: string;
|
|
969
|
+
/**
|
|
970
|
+
* @remarks
|
|
971
|
+
* The coupon description.
|
|
972
|
+
*/
|
|
869
973
|
promotionDesc?: string;
|
|
870
974
|
/**
|
|
975
|
+
* @remarks
|
|
976
|
+
* The coupon ID.
|
|
977
|
+
*
|
|
871
978
|
* @example
|
|
872
979
|
* 17440009****
|
|
873
980
|
*/
|
|
874
981
|
promotionId?: string;
|
|
982
|
+
/**
|
|
983
|
+
* @remarks
|
|
984
|
+
* The coupon name.
|
|
985
|
+
*/
|
|
875
986
|
promotionName?: string;
|
|
876
987
|
/**
|
|
988
|
+
* @remarks
|
|
989
|
+
* Indicates whether the coupon was used.
|
|
990
|
+
*
|
|
991
|
+
* Valid values:
|
|
992
|
+
*
|
|
993
|
+
* * true
|
|
994
|
+
* * false
|
|
995
|
+
*
|
|
877
996
|
* @example
|
|
878
997
|
* true
|
|
879
998
|
*/
|
|
@@ -891,22 +1010,38 @@ export declare class GetResourcePriceResponseBodyPriceModelPricePromotions exten
|
|
|
891
1010
|
}
|
|
892
1011
|
export declare class GetResourcePriceResponseBodyPriceModelPrice extends $dara.Model {
|
|
893
1012
|
/**
|
|
1013
|
+
* @remarks
|
|
1014
|
+
* The currency type.
|
|
1015
|
+
*
|
|
894
1016
|
* @example
|
|
895
1017
|
* CNY
|
|
896
1018
|
*/
|
|
897
1019
|
currency?: string;
|
|
898
1020
|
/**
|
|
1021
|
+
* @remarks
|
|
1022
|
+
* The discount. The actual price is calculated based on the following formula: Actual price = Original price - Discount.
|
|
1023
|
+
*
|
|
899
1024
|
* @example
|
|
900
1025
|
* 1.00
|
|
901
1026
|
*/
|
|
902
1027
|
discountPrice?: string;
|
|
903
1028
|
/**
|
|
1029
|
+
* @remarks
|
|
1030
|
+
* The original price.
|
|
1031
|
+
*
|
|
904
1032
|
* @example
|
|
905
1033
|
* 11.00
|
|
906
1034
|
*/
|
|
907
1035
|
originalPrice?: string;
|
|
1036
|
+
/**
|
|
1037
|
+
* @remarks
|
|
1038
|
+
* The coupon metadata.
|
|
1039
|
+
*/
|
|
908
1040
|
promotions?: GetResourcePriceResponseBodyPriceModelPricePromotions[];
|
|
909
1041
|
/**
|
|
1042
|
+
* @remarks
|
|
1043
|
+
* The actual price. The actual price is calculated based on the following formula: Actual price = Original price - Discount.
|
|
1044
|
+
*
|
|
910
1045
|
* @example
|
|
911
1046
|
* 10.00
|
|
912
1047
|
*/
|
|
@@ -923,8 +1058,15 @@ export declare class GetResourcePriceResponseBodyPriceModelPrice extends $dara.M
|
|
|
923
1058
|
});
|
|
924
1059
|
}
|
|
925
1060
|
export declare class GetResourcePriceResponseBodyPriceModelRules extends $dara.Model {
|
|
1061
|
+
/**
|
|
1062
|
+
* @remarks
|
|
1063
|
+
* The description of the price calculation rule.
|
|
1064
|
+
*/
|
|
926
1065
|
description?: string;
|
|
927
1066
|
/**
|
|
1067
|
+
* @remarks
|
|
1068
|
+
* The ID of the price calculation rule.
|
|
1069
|
+
*
|
|
928
1070
|
* @example
|
|
929
1071
|
* 102002100393****
|
|
930
1072
|
*/
|
|
@@ -941,7 +1083,15 @@ export declare class GetResourcePriceResponseBodyPriceModelRules extends $dara.M
|
|
|
941
1083
|
});
|
|
942
1084
|
}
|
|
943
1085
|
export declare class GetResourcePriceResponseBodyPriceModel extends $dara.Model {
|
|
1086
|
+
/**
|
|
1087
|
+
* @remarks
|
|
1088
|
+
* The price details.
|
|
1089
|
+
*/
|
|
944
1090
|
price?: GetResourcePriceResponseBodyPriceModelPrice;
|
|
1091
|
+
/**
|
|
1092
|
+
* @remarks
|
|
1093
|
+
* The price calculation rules.
|
|
1094
|
+
*/
|
|
945
1095
|
rules?: GetResourcePriceResponseBodyPriceModelRules[];
|
|
946
1096
|
static names(): {
|
|
947
1097
|
[key: string]: string;
|
|
@@ -956,18 +1106,40 @@ export declare class GetResourcePriceResponseBodyPriceModel extends $dara.Model
|
|
|
956
1106
|
}
|
|
957
1107
|
export declare class GetResourceRenewPriceResponseBodyDataPricePromotions extends $dara.Model {
|
|
958
1108
|
/**
|
|
1109
|
+
* @remarks
|
|
1110
|
+
* The coupon code.
|
|
1111
|
+
*
|
|
959
1112
|
* @example
|
|
960
1113
|
* coupon****
|
|
961
1114
|
*/
|
|
962
1115
|
optionCode?: string;
|
|
1116
|
+
/**
|
|
1117
|
+
* @remarks
|
|
1118
|
+
* The coupon description.
|
|
1119
|
+
*/
|
|
963
1120
|
promotionDesc?: string;
|
|
964
1121
|
/**
|
|
1122
|
+
* @remarks
|
|
1123
|
+
* The coupon ID.
|
|
1124
|
+
*
|
|
965
1125
|
* @example
|
|
966
1126
|
* 139965*****
|
|
967
1127
|
*/
|
|
968
1128
|
promotionId?: string;
|
|
1129
|
+
/**
|
|
1130
|
+
* @remarks
|
|
1131
|
+
* The coupon name.
|
|
1132
|
+
*/
|
|
969
1133
|
promotionName?: string;
|
|
970
1134
|
/**
|
|
1135
|
+
* @remarks
|
|
1136
|
+
* Indicates whether the coupon was used.
|
|
1137
|
+
*
|
|
1138
|
+
* Valid values:
|
|
1139
|
+
*
|
|
1140
|
+
* * true
|
|
1141
|
+
* * false
|
|
1142
|
+
*
|
|
971
1143
|
* @example
|
|
972
1144
|
* true
|
|
973
1145
|
*/
|
|
@@ -985,22 +1157,38 @@ export declare class GetResourceRenewPriceResponseBodyDataPricePromotions extend
|
|
|
985
1157
|
}
|
|
986
1158
|
export declare class GetResourceRenewPriceResponseBodyDataPrice extends $dara.Model {
|
|
987
1159
|
/**
|
|
1160
|
+
* @remarks
|
|
1161
|
+
* The currency type.
|
|
1162
|
+
*
|
|
988
1163
|
* @example
|
|
989
1164
|
* CNY
|
|
990
1165
|
*/
|
|
991
1166
|
currency?: string;
|
|
992
1167
|
/**
|
|
1168
|
+
* @remarks
|
|
1169
|
+
* The discount. The actual price is calculated based on the following formula: Actual price = Original price - Discount.
|
|
1170
|
+
*
|
|
993
1171
|
* @example
|
|
994
1172
|
* 1
|
|
995
1173
|
*/
|
|
996
1174
|
discountPrice?: string;
|
|
997
1175
|
/**
|
|
1176
|
+
* @remarks
|
|
1177
|
+
* The original price.
|
|
1178
|
+
*
|
|
998
1179
|
* @example
|
|
999
1180
|
* 11
|
|
1000
1181
|
*/
|
|
1001
1182
|
originalPrice?: string;
|
|
1183
|
+
/**
|
|
1184
|
+
* @remarks
|
|
1185
|
+
* The coupon description.
|
|
1186
|
+
*/
|
|
1002
1187
|
promotions?: GetResourceRenewPriceResponseBodyDataPricePromotions[];
|
|
1003
1188
|
/**
|
|
1189
|
+
* @remarks
|
|
1190
|
+
* The actual price. The actual price is calculated based on the following formula: Actual price = Original price - Discount.
|
|
1191
|
+
*
|
|
1004
1192
|
* @example
|
|
1005
1193
|
* 10
|
|
1006
1194
|
*/
|
|
@@ -1017,8 +1205,15 @@ export declare class GetResourceRenewPriceResponseBodyDataPrice extends $dara.Mo
|
|
|
1017
1205
|
});
|
|
1018
1206
|
}
|
|
1019
1207
|
export declare class GetResourceRenewPriceResponseBodyDataRules extends $dara.Model {
|
|
1208
|
+
/**
|
|
1209
|
+
* @remarks
|
|
1210
|
+
* The description of the price calculation rule.
|
|
1211
|
+
*/
|
|
1020
1212
|
description?: string;
|
|
1021
1213
|
/**
|
|
1214
|
+
* @remarks
|
|
1215
|
+
* The ID of the price calculation rule.
|
|
1216
|
+
*
|
|
1022
1217
|
* @example
|
|
1023
1218
|
* 20002****
|
|
1024
1219
|
*/
|
|
@@ -1035,7 +1230,15 @@ export declare class GetResourceRenewPriceResponseBodyDataRules extends $dara.Mo
|
|
|
1035
1230
|
});
|
|
1036
1231
|
}
|
|
1037
1232
|
export declare class GetResourceRenewPriceResponseBodyData extends $dara.Model {
|
|
1233
|
+
/**
|
|
1234
|
+
* @remarks
|
|
1235
|
+
* The price details.
|
|
1236
|
+
*/
|
|
1038
1237
|
price?: GetResourceRenewPriceResponseBodyDataPrice;
|
|
1238
|
+
/**
|
|
1239
|
+
* @remarks
|
|
1240
|
+
* The price calculation rules.
|
|
1241
|
+
*/
|
|
1039
1242
|
rules?: GetResourceRenewPriceResponseBodyDataRules[];
|
|
1040
1243
|
static names(): {
|
|
1041
1244
|
[key: string]: string;
|
|
@@ -1119,9 +1322,6 @@ export declare class ListAccessPagesResponseBodyData extends $dara.Model {
|
|
|
1119
1322
|
}
|
|
1120
1323
|
export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModelsApps extends $dara.Model {
|
|
1121
1324
|
/**
|
|
1122
|
-
* @remarks
|
|
1123
|
-
* 应用图标。
|
|
1124
|
-
*
|
|
1125
1325
|
* @example
|
|
1126
1326
|
* https://app-center-icon-****.png
|
|
1127
1327
|
*/
|
|
@@ -1133,20 +1333,10 @@ export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModelsApps
|
|
|
1133
1333
|
appId?: string;
|
|
1134
1334
|
appName?: string;
|
|
1135
1335
|
/**
|
|
1136
|
-
* @remarks
|
|
1137
|
-
* 应用版本。
|
|
1138
|
-
*
|
|
1139
1336
|
* @example
|
|
1140
1337
|
* 1.0.0
|
|
1141
1338
|
*/
|
|
1142
1339
|
appVersion?: string;
|
|
1143
|
-
/**
|
|
1144
|
-
* @remarks
|
|
1145
|
-
* 应用版本名称。
|
|
1146
|
-
*
|
|
1147
|
-
* @example
|
|
1148
|
-
* 初始版本
|
|
1149
|
-
*/
|
|
1150
1340
|
appVersionName?: string;
|
|
1151
1341
|
static names(): {
|
|
1152
1342
|
[key: string]: string;
|
|
@@ -1211,6 +1401,13 @@ export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModelsNodeP
|
|
|
1211
1401
|
* 2
|
|
1212
1402
|
*/
|
|
1213
1403
|
amount?: number;
|
|
1404
|
+
/**
|
|
1405
|
+
* @remarks
|
|
1406
|
+
* The maximum number of idle sessions. After you specify a value for this parameter, auto scaling is triggered only if the number of idle sessions in the delivery group is smaller than the specified value and the session usage exceeds the value specified for `ScalingUsageThreshold`. Otherwise, the system determines that the idle sessions in the delivery group are sufficient and does not perform auto scaling.`` You can use this parameter to flexibly manage auto scaling and reduce costs.
|
|
1407
|
+
*
|
|
1408
|
+
* @example
|
|
1409
|
+
* 3
|
|
1410
|
+
*/
|
|
1214
1411
|
maxIdleAppInstanceAmount?: number;
|
|
1215
1412
|
/**
|
|
1216
1413
|
* @example
|
|
@@ -1327,6 +1524,33 @@ export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModelsOtaIn
|
|
|
1327
1524
|
[key: string]: any;
|
|
1328
1525
|
});
|
|
1329
1526
|
}
|
|
1527
|
+
export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModelsResourceTags extends $dara.Model {
|
|
1528
|
+
/**
|
|
1529
|
+
* @remarks
|
|
1530
|
+
* The tag key.
|
|
1531
|
+
*/
|
|
1532
|
+
key?: string;
|
|
1533
|
+
/**
|
|
1534
|
+
* @remarks
|
|
1535
|
+
* The tag type. Valid values: Custom and System.
|
|
1536
|
+
*/
|
|
1537
|
+
scope?: string;
|
|
1538
|
+
/**
|
|
1539
|
+
* @remarks
|
|
1540
|
+
* The tag value.
|
|
1541
|
+
*/
|
|
1542
|
+
value?: string;
|
|
1543
|
+
static names(): {
|
|
1544
|
+
[key: string]: string;
|
|
1545
|
+
};
|
|
1546
|
+
static types(): {
|
|
1547
|
+
[key: string]: any;
|
|
1548
|
+
};
|
|
1549
|
+
validate(): void;
|
|
1550
|
+
constructor(map?: {
|
|
1551
|
+
[key: string]: any;
|
|
1552
|
+
});
|
|
1553
|
+
}
|
|
1330
1554
|
export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModels extends $dara.Model {
|
|
1331
1555
|
/**
|
|
1332
1556
|
* @example
|
|
@@ -1350,9 +1574,6 @@ export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModels exte
|
|
|
1350
1574
|
*/
|
|
1351
1575
|
appInstanceType?: string;
|
|
1352
1576
|
/**
|
|
1353
|
-
* @remarks
|
|
1354
|
-
* 策略ID。
|
|
1355
|
-
*
|
|
1356
1577
|
* @example
|
|
1357
1578
|
* pg-g3k5wa2ms2****
|
|
1358
1579
|
*/
|
|
@@ -1361,9 +1582,6 @@ export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModels exte
|
|
|
1361
1582
|
appPolicyVersion?: string;
|
|
1362
1583
|
apps?: ListAppInstanceGroupResponseBodyAppInstanceGroupModelsApps[];
|
|
1363
1584
|
/**
|
|
1364
|
-
* @remarks
|
|
1365
|
-
* 售卖模式。
|
|
1366
|
-
*
|
|
1367
1585
|
* @example
|
|
1368
1586
|
* Node
|
|
1369
1587
|
*/
|
|
@@ -1393,9 +1611,20 @@ export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModels exte
|
|
|
1393
1611
|
* 1
|
|
1394
1612
|
*/
|
|
1395
1613
|
minAmount?: number;
|
|
1614
|
+
/**
|
|
1615
|
+
* @remarks
|
|
1616
|
+
* The resource groups.
|
|
1617
|
+
*/
|
|
1396
1618
|
nodePool?: ListAppInstanceGroupResponseBodyAppInstanceGroupModelsNodePool[];
|
|
1397
1619
|
officeSiteId?: string;
|
|
1398
1620
|
/**
|
|
1621
|
+
* @remarks
|
|
1622
|
+
* The type of the operating system.
|
|
1623
|
+
*
|
|
1624
|
+
* Valid value:
|
|
1625
|
+
*
|
|
1626
|
+
* * Windows
|
|
1627
|
+
*
|
|
1399
1628
|
* @example
|
|
1400
1629
|
* Windows
|
|
1401
1630
|
*/
|
|
@@ -1431,6 +1660,11 @@ export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModels exte
|
|
|
1431
1660
|
* AVAILABLE
|
|
1432
1661
|
*/
|
|
1433
1662
|
resourceStatus?: string;
|
|
1663
|
+
/**
|
|
1664
|
+
* @remarks
|
|
1665
|
+
* The tags added to the resources.
|
|
1666
|
+
*/
|
|
1667
|
+
resourceTags?: ListAppInstanceGroupResponseBodyAppInstanceGroupModelsResourceTags[];
|
|
1434
1668
|
/**
|
|
1435
1669
|
* @example
|
|
1436
1670
|
* 5
|
|
@@ -1479,11 +1713,17 @@ export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModels exte
|
|
|
1479
1713
|
}
|
|
1480
1714
|
export declare class ListAppInstancesResponseBodyAppInstanceModelsBindInfo extends $dara.Model {
|
|
1481
1715
|
/**
|
|
1716
|
+
* @remarks
|
|
1717
|
+
* The ID of the end user that is bound to the application instance.
|
|
1718
|
+
*
|
|
1482
1719
|
* @example
|
|
1483
1720
|
* app.test
|
|
1484
1721
|
*/
|
|
1485
1722
|
endUserId?: string;
|
|
1486
1723
|
/**
|
|
1724
|
+
* @remarks
|
|
1725
|
+
* The use duration of the application instance. Unit: seconds.
|
|
1726
|
+
*
|
|
1487
1727
|
* @example
|
|
1488
1728
|
* 2000
|
|
1489
1729
|
*/
|
|
@@ -1501,37 +1741,91 @@ export declare class ListAppInstancesResponseBodyAppInstanceModelsBindInfo exten
|
|
|
1501
1741
|
}
|
|
1502
1742
|
export declare class ListAppInstancesResponseBodyAppInstanceModels extends $dara.Model {
|
|
1503
1743
|
/**
|
|
1744
|
+
* @remarks
|
|
1745
|
+
* The ID of the delivery group.
|
|
1746
|
+
*
|
|
1504
1747
|
* @example
|
|
1505
1748
|
* aig-dk8p95irqfst9****
|
|
1506
1749
|
*/
|
|
1507
1750
|
appInstanceGroupId?: string;
|
|
1508
1751
|
/**
|
|
1752
|
+
* @remarks
|
|
1753
|
+
* The ID of the application instance.
|
|
1754
|
+
*
|
|
1509
1755
|
* @example
|
|
1510
1756
|
* ai-8dl7dzchklmka****
|
|
1511
1757
|
*/
|
|
1512
1758
|
appInstanceId?: string;
|
|
1759
|
+
/**
|
|
1760
|
+
* @remarks
|
|
1761
|
+
* The information about the binding between the application instance and end users.
|
|
1762
|
+
*/
|
|
1513
1763
|
bindInfo?: ListAppInstancesResponseBodyAppInstanceModelsBindInfo;
|
|
1514
1764
|
/**
|
|
1765
|
+
* @remarks
|
|
1766
|
+
* The billing method of the app instance. Valid values:
|
|
1767
|
+
*
|
|
1768
|
+
* * **PrePaid**: subscription.
|
|
1769
|
+
* * **PostPaid**: pay-as-you-go
|
|
1770
|
+
*
|
|
1771
|
+
* > This parameter is returned only if the ChargeResourceMode parameter of the delivery group to which the app instance belongs is set to Node.
|
|
1772
|
+
*
|
|
1773
|
+
* @example
|
|
1774
|
+
* PostPaid
|
|
1775
|
+
*/
|
|
1776
|
+
chargeType?: string;
|
|
1777
|
+
/**
|
|
1778
|
+
* @remarks
|
|
1779
|
+
* The time when the application instance was created.
|
|
1780
|
+
*
|
|
1515
1781
|
* @example
|
|
1516
1782
|
* 2023-03-07T20:29:19.000+08:00
|
|
1517
1783
|
*/
|
|
1518
1784
|
gmtCreate?: string;
|
|
1519
1785
|
/**
|
|
1786
|
+
* @remarks
|
|
1787
|
+
* The time when the application instance was updated.
|
|
1788
|
+
*
|
|
1520
1789
|
* @example
|
|
1521
1790
|
* 2023-03-07T20:29:19.000+08:00
|
|
1522
1791
|
*/
|
|
1523
1792
|
gmtModified?: string;
|
|
1524
1793
|
/**
|
|
1794
|
+
* @remarks
|
|
1795
|
+
* The public IP address associated with the primary NIC. This value is returned only if `StrategyType` is set to `Mixed`.
|
|
1796
|
+
*
|
|
1525
1797
|
* @example
|
|
1526
1798
|
* 10.13.13.211
|
|
1527
1799
|
*/
|
|
1528
1800
|
mainEthPublicIp?: string;
|
|
1801
|
+
networkInterfaceIp?: string;
|
|
1802
|
+
/**
|
|
1803
|
+
* @remarks
|
|
1804
|
+
* The ID of the node on which the app instance runs.
|
|
1805
|
+
*
|
|
1806
|
+
* > This parameter is returned only if the ChargeResourceMode parameter of the delivery group to which the app instance belongs is set to Node.
|
|
1807
|
+
*
|
|
1808
|
+
* @example
|
|
1809
|
+
* i-bp13********
|
|
1810
|
+
*/
|
|
1811
|
+
nodeId?: string;
|
|
1529
1812
|
/**
|
|
1813
|
+
* @remarks
|
|
1814
|
+
* The session status. This parameter is returned only if the application instance is in the `RUNNING` state.
|
|
1815
|
+
*
|
|
1816
|
+
* Valid values:
|
|
1817
|
+
*
|
|
1818
|
+
* * disconnect: disconnected
|
|
1819
|
+
* * connect: connected
|
|
1820
|
+
*
|
|
1530
1821
|
* @example
|
|
1531
1822
|
* connect
|
|
1532
1823
|
*/
|
|
1533
1824
|
sessionStatus?: string;
|
|
1534
1825
|
/**
|
|
1826
|
+
* @remarks
|
|
1827
|
+
* The status of the application instance.
|
|
1828
|
+
*
|
|
1535
1829
|
* @example
|
|
1536
1830
|
* BOUND
|
|
1537
1831
|
*/
|
|
@@ -1606,18 +1900,24 @@ export declare class ListBindInfoResponseBodyBindInfoModels extends $dara.Model
|
|
|
1606
1900
|
}
|
|
1607
1901
|
export declare class ListNodeInstanceTypeResponseBodyNodeInstanceTypeModels extends $dara.Model {
|
|
1608
1902
|
/**
|
|
1903
|
+
* @remarks
|
|
1904
|
+
* The number of vCPUs.
|
|
1905
|
+
*
|
|
1609
1906
|
* @example
|
|
1610
1907
|
* 4
|
|
1611
1908
|
*/
|
|
1612
1909
|
cpu?: string;
|
|
1613
1910
|
/**
|
|
1911
|
+
* @remarks
|
|
1912
|
+
* The number of GPUs.
|
|
1913
|
+
*
|
|
1614
1914
|
* @example
|
|
1615
1915
|
* 2
|
|
1616
1916
|
*/
|
|
1617
1917
|
gpu?: string;
|
|
1618
1918
|
/**
|
|
1619
1919
|
* @remarks
|
|
1620
|
-
*
|
|
1920
|
+
* The GPU size. Unit: MB.
|
|
1621
1921
|
*
|
|
1622
1922
|
* @example
|
|
1623
1923
|
* 8192
|
|
@@ -1625,39 +1925,53 @@ export declare class ListNodeInstanceTypeResponseBodyNodeInstanceTypeModels exte
|
|
|
1625
1925
|
gpuMemory?: number;
|
|
1626
1926
|
/**
|
|
1627
1927
|
* @remarks
|
|
1628
|
-
*
|
|
1928
|
+
* The maximum number of sessions to which a resource can connect at the same time. If a resource connects to a large number of sessions at the same time, user experience can be compromised. The value range varies based on the resource type. The following items describe the value ranges of different resource types:
|
|
1629
1929
|
*
|
|
1630
|
-
*
|
|
1631
|
-
*
|
|
1632
|
-
*
|
|
1633
|
-
*
|
|
1634
|
-
*
|
|
1930
|
+
* * appstreaming.general.4c8g: 1 to 2
|
|
1931
|
+
* * appstreaming.general.8c16g: 1 to 4
|
|
1932
|
+
* * appstreaming.vgpu.8c16g.4g: 1 to 4
|
|
1933
|
+
* * appstreaming.vgpu.8c31g.16g: 1 to 4
|
|
1934
|
+
* * appstreaming.vgpu.14c93g.12g: 1 to 6
|
|
1635
1935
|
*
|
|
1636
1936
|
* @example
|
|
1637
1937
|
* 4
|
|
1638
1938
|
*/
|
|
1639
1939
|
maxCapacity?: number;
|
|
1640
1940
|
/**
|
|
1941
|
+
* @remarks
|
|
1942
|
+
* The memory size. Unit: MB.
|
|
1943
|
+
*
|
|
1641
1944
|
* @example
|
|
1642
1945
|
* 8192
|
|
1643
1946
|
*/
|
|
1644
1947
|
memory?: number;
|
|
1645
1948
|
/**
|
|
1949
|
+
* @remarks
|
|
1950
|
+
* The ID of the resource type.
|
|
1951
|
+
*
|
|
1646
1952
|
* @example
|
|
1647
1953
|
* appstreaming.vgpu.4c8g.2g
|
|
1648
1954
|
*/
|
|
1649
1955
|
nodeInstanceType?: string;
|
|
1650
1956
|
/**
|
|
1957
|
+
* @remarks
|
|
1958
|
+
* The resource type family.
|
|
1959
|
+
*
|
|
1960
|
+
* Valid values:
|
|
1961
|
+
*
|
|
1962
|
+
* * appstreaming.general: WUYING - General
|
|
1963
|
+
* * appstreaming.vgpu: WUYING - Graphics
|
|
1964
|
+
*
|
|
1651
1965
|
* @example
|
|
1652
1966
|
* appstreaming.vgpu
|
|
1653
1967
|
*/
|
|
1654
1968
|
nodeInstanceTypeFamily?: string;
|
|
1655
1969
|
/**
|
|
1656
1970
|
* @remarks
|
|
1657
|
-
*
|
|
1971
|
+
* The name of the resource type.
|
|
1658
1972
|
*
|
|
1659
1973
|
* @example
|
|
1660
|
-
*
|
|
1974
|
+
* WUYING - General - 4 vCPUs 8 GB Memory
|
|
1661
1975
|
*/
|
|
1662
1976
|
nodeTypeName?: string;
|
|
1663
1977
|
static names(): {
|
|
@@ -1671,30 +1985,17 @@ export declare class ListNodeInstanceTypeResponseBodyNodeInstanceTypeModels exte
|
|
|
1671
1985
|
[key: string]: any;
|
|
1672
1986
|
});
|
|
1673
1987
|
}
|
|
1674
|
-
export declare class
|
|
1675
|
-
/**
|
|
1676
|
-
* @example
|
|
1677
|
-
* 0.0.1-R-20220708.110604
|
|
1678
|
-
*/
|
|
1679
|
-
otaVersion?: string;
|
|
1680
|
-
/**
|
|
1681
|
-
* @example
|
|
1682
|
-
* RUNNING
|
|
1683
|
-
*/
|
|
1684
|
-
taskDisplayStatus?: string;
|
|
1988
|
+
export declare class ListNodesResponseBodyNodeModels extends $dara.Model {
|
|
1685
1989
|
/**
|
|
1686
1990
|
* @example
|
|
1687
|
-
*
|
|
1991
|
+
* PostPaid
|
|
1688
1992
|
*/
|
|
1689
|
-
|
|
1993
|
+
chargeType?: string;
|
|
1690
1994
|
/**
|
|
1691
|
-
* @remarks
|
|
1692
|
-
* Use the UTC time format: yyyy-MM-ddTHH:mmZ
|
|
1693
|
-
*
|
|
1694
1995
|
* @example
|
|
1695
|
-
*
|
|
1996
|
+
* i-bp13********
|
|
1696
1997
|
*/
|
|
1697
|
-
|
|
1998
|
+
nodeId?: string;
|
|
1698
1999
|
static names(): {
|
|
1699
2000
|
[key: string]: string;
|
|
1700
2001
|
};
|
|
@@ -1706,12 +2007,74 @@ export declare class ListOtaTaskResponseBodyTaskList extends $dara.Model {
|
|
|
1706
2007
|
[key: string]: any;
|
|
1707
2008
|
});
|
|
1708
2009
|
}
|
|
1709
|
-
export declare class
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
2010
|
+
export declare class ListOtaTaskResponseBodyTaskList extends $dara.Model {
|
|
2011
|
+
/**
|
|
2012
|
+
* @remarks
|
|
2013
|
+
* The OTA version.
|
|
2014
|
+
*
|
|
2015
|
+
* @example
|
|
2016
|
+
* 0.0.1-R-20220708.110604
|
|
2017
|
+
*/
|
|
2018
|
+
otaVersion?: string;
|
|
2019
|
+
/**
|
|
2020
|
+
* @remarks
|
|
2021
|
+
* The task status.
|
|
2022
|
+
*
|
|
2023
|
+
* Valid values:
|
|
2024
|
+
*
|
|
2025
|
+
* * FAILED
|
|
2026
|
+
* * RUNNING
|
|
2027
|
+
* * TERMINATED
|
|
2028
|
+
* * PART_FINISHED
|
|
2029
|
+
* * STANDBY
|
|
2030
|
+
* * FINISHED
|
|
2031
|
+
*
|
|
2032
|
+
* @example
|
|
2033
|
+
* RUNNING
|
|
2034
|
+
*/
|
|
2035
|
+
taskDisplayStatus?: string;
|
|
2036
|
+
/**
|
|
2037
|
+
* @remarks
|
|
2038
|
+
* The task ID.
|
|
2039
|
+
*
|
|
2040
|
+
* @example
|
|
2041
|
+
* ota-be7jzm29wrrz5****
|
|
2042
|
+
*/
|
|
2043
|
+
taskId?: string;
|
|
2044
|
+
/**
|
|
2045
|
+
* @remarks
|
|
2046
|
+
* The start time of the OTA update task. The time follows the ISO 8601 standard.
|
|
2047
|
+
*
|
|
2048
|
+
* Use the UTC time format: yyyy-MM-ddTHH:mmZ
|
|
2049
|
+
*
|
|
2050
|
+
* @example
|
|
2051
|
+
* 2022-08-04T14:36:00+08:00
|
|
2052
|
+
*/
|
|
2053
|
+
taskStartTime?: string;
|
|
2054
|
+
static names(): {
|
|
2055
|
+
[key: string]: string;
|
|
2056
|
+
};
|
|
2057
|
+
static types(): {
|
|
2058
|
+
[key: string]: any;
|
|
2059
|
+
};
|
|
2060
|
+
validate(): void;
|
|
2061
|
+
constructor(map?: {
|
|
2062
|
+
[key: string]: any;
|
|
2063
|
+
});
|
|
2064
|
+
}
|
|
2065
|
+
export declare class ListRegionsResponseBodyRegionModels extends $dara.Model {
|
|
2066
|
+
/**
|
|
2067
|
+
* @remarks
|
|
2068
|
+
* The region ID.
|
|
2069
|
+
*
|
|
2070
|
+
* @example
|
|
2071
|
+
* cn-hangzhou
|
|
2072
|
+
*/
|
|
2073
|
+
regionId?: string;
|
|
2074
|
+
static names(): {
|
|
2075
|
+
[key: string]: string;
|
|
2076
|
+
};
|
|
2077
|
+
static types(): {
|
|
1715
2078
|
[key: string]: any;
|
|
1716
2079
|
};
|
|
1717
2080
|
validate(): void;
|
|
@@ -1857,8 +2220,97 @@ export declare class ListSessionPackagesResponseBodyData extends $dara.Model {
|
|
|
1857
2220
|
[key: string]: any;
|
|
1858
2221
|
});
|
|
1859
2222
|
}
|
|
2223
|
+
export declare class ListTagCloudResourcesResponseBodyResourceTagsTags extends $dara.Model {
|
|
2224
|
+
/**
|
|
2225
|
+
* @remarks
|
|
2226
|
+
* The tag key.
|
|
2227
|
+
*
|
|
2228
|
+
* @example
|
|
2229
|
+
* Resolution
|
|
2230
|
+
*/
|
|
2231
|
+
key?: string;
|
|
2232
|
+
/**
|
|
2233
|
+
* @remarks
|
|
2234
|
+
* The tag type.
|
|
2235
|
+
*
|
|
2236
|
+
* Valid values:
|
|
2237
|
+
*
|
|
2238
|
+
* * Custom: custom tag.
|
|
2239
|
+
* * System: system tag.
|
|
2240
|
+
*
|
|
2241
|
+
* @example
|
|
2242
|
+
* Custom
|
|
2243
|
+
*/
|
|
2244
|
+
scope?: string;
|
|
2245
|
+
/**
|
|
2246
|
+
* @remarks
|
|
2247
|
+
* The tag value.
|
|
2248
|
+
*
|
|
2249
|
+
* @example
|
|
2250
|
+
* 1080p
|
|
2251
|
+
*/
|
|
2252
|
+
value?: string;
|
|
2253
|
+
static names(): {
|
|
2254
|
+
[key: string]: string;
|
|
2255
|
+
};
|
|
2256
|
+
static types(): {
|
|
2257
|
+
[key: string]: any;
|
|
2258
|
+
};
|
|
2259
|
+
validate(): void;
|
|
2260
|
+
constructor(map?: {
|
|
2261
|
+
[key: string]: any;
|
|
2262
|
+
});
|
|
2263
|
+
}
|
|
2264
|
+
export declare class ListTagCloudResourcesResponseBodyResourceTags extends $dara.Model {
|
|
2265
|
+
/**
|
|
2266
|
+
* @remarks
|
|
2267
|
+
* The resource ID.
|
|
2268
|
+
*
|
|
2269
|
+
* @example
|
|
2270
|
+
* aig-0001
|
|
2271
|
+
*/
|
|
2272
|
+
resourceId?: string;
|
|
2273
|
+
/**
|
|
2274
|
+
* @remarks
|
|
2275
|
+
* The type of the cloud resource.
|
|
2276
|
+
*
|
|
2277
|
+
* Valid values:
|
|
2278
|
+
*
|
|
2279
|
+
* * AppId: app ID.
|
|
2280
|
+
* * WyId: Alibaba Cloud Workspace user ID.
|
|
2281
|
+
* * AppInstanceGroupId: delivery group ID.
|
|
2282
|
+
* * AliUid: tenant ID.
|
|
2283
|
+
*
|
|
2284
|
+
* @example
|
|
2285
|
+
* AppInstanceGroupId
|
|
2286
|
+
*/
|
|
2287
|
+
resourceType?: string;
|
|
2288
|
+
/**
|
|
2289
|
+
* @remarks
|
|
2290
|
+
* The tags.
|
|
2291
|
+
*/
|
|
2292
|
+
tags?: ListTagCloudResourcesResponseBodyResourceTagsTags[];
|
|
2293
|
+
static names(): {
|
|
2294
|
+
[key: string]: string;
|
|
2295
|
+
};
|
|
2296
|
+
static types(): {
|
|
2297
|
+
[key: string]: any;
|
|
2298
|
+
};
|
|
2299
|
+
validate(): void;
|
|
2300
|
+
constructor(map?: {
|
|
2301
|
+
[key: string]: any;
|
|
2302
|
+
});
|
|
2303
|
+
}
|
|
1860
2304
|
export declare class ListTenantConfigResponseBodyTenantConfigModel extends $dara.Model {
|
|
1861
2305
|
/**
|
|
2306
|
+
* @remarks
|
|
2307
|
+
* Indicates whether the resource expiration reminder feature is enabled.
|
|
2308
|
+
*
|
|
2309
|
+
* Valid values:
|
|
2310
|
+
*
|
|
2311
|
+
* * true
|
|
2312
|
+
* * false
|
|
2313
|
+
*
|
|
1862
2314
|
* @example
|
|
1863
2315
|
* true
|
|
1864
2316
|
*/
|
|
@@ -1875,7 +2327,26 @@ export declare class ListTenantConfigResponseBodyTenantConfigModel extends $dara
|
|
|
1875
2327
|
});
|
|
1876
2328
|
}
|
|
1877
2329
|
export declare class ModifyAppInstanceGroupAttributeRequestNetworkDomainRules extends $dara.Model {
|
|
2330
|
+
/**
|
|
2331
|
+
* @remarks
|
|
2332
|
+
* The domain name.
|
|
2333
|
+
*
|
|
2334
|
+
* @example
|
|
2335
|
+
* www.example.com
|
|
2336
|
+
*/
|
|
1878
2337
|
domain?: string;
|
|
2338
|
+
/**
|
|
2339
|
+
* @remarks
|
|
2340
|
+
* The policy used for the domain name.
|
|
2341
|
+
*
|
|
2342
|
+
* Valid values:
|
|
2343
|
+
*
|
|
2344
|
+
* * allow
|
|
2345
|
+
* * block
|
|
2346
|
+
*
|
|
2347
|
+
* @example
|
|
2348
|
+
* block
|
|
2349
|
+
*/
|
|
1879
2350
|
policy?: string;
|
|
1880
2351
|
static names(): {
|
|
1881
2352
|
[key: string]: string;
|
|
@@ -1889,6 +2360,10 @@ export declare class ModifyAppInstanceGroupAttributeRequestNetworkDomainRules ex
|
|
|
1889
2360
|
});
|
|
1890
2361
|
}
|
|
1891
2362
|
export declare class ModifyAppInstanceGroupAttributeRequestNetwork extends $dara.Model {
|
|
2363
|
+
/**
|
|
2364
|
+
* @remarks
|
|
2365
|
+
* The domain name rules.
|
|
2366
|
+
*/
|
|
1892
2367
|
domainRules?: ModifyAppInstanceGroupAttributeRequestNetworkDomainRules[];
|
|
1893
2368
|
static names(): {
|
|
1894
2369
|
[key: string]: string;
|
|
@@ -1903,11 +2378,23 @@ export declare class ModifyAppInstanceGroupAttributeRequestNetwork extends $dara
|
|
|
1903
2378
|
}
|
|
1904
2379
|
export declare class ModifyAppInstanceGroupAttributeRequestNodePool extends $dara.Model {
|
|
1905
2380
|
/**
|
|
2381
|
+
* @remarks
|
|
2382
|
+
* The maximum number of sessions to which a resource can connect at the same time. If a resource connects to a large number of sessions at the same time, user experience can be compromised. The value range varies based on the resource type. The following items describe the value ranges of different resource types:
|
|
2383
|
+
*
|
|
2384
|
+
* * appstreaming.general.4c8g: 1 to 2
|
|
2385
|
+
* * appstreaming.general.8c16g: 1 to 4
|
|
2386
|
+
* * appstreaming.vgpu.8c16g.4g: 1 to 4
|
|
2387
|
+
* * appstreaming.vgpu.8c31g.16g: 1 to 4
|
|
2388
|
+
* * appstreaming.vgpu.14c93g.12g: 1 to 6
|
|
2389
|
+
*
|
|
1906
2390
|
* @example
|
|
1907
2391
|
* 2
|
|
1908
2392
|
*/
|
|
1909
2393
|
nodeCapacity?: number;
|
|
1910
2394
|
/**
|
|
2395
|
+
* @remarks
|
|
2396
|
+
* The ID of the resource group.
|
|
2397
|
+
*
|
|
1911
2398
|
* @example
|
|
1912
2399
|
* rg-ew7va2g1wl3vm****
|
|
1913
2400
|
*/
|
|
@@ -1925,11 +2412,27 @@ export declare class ModifyAppInstanceGroupAttributeRequestNodePool extends $dar
|
|
|
1925
2412
|
}
|
|
1926
2413
|
export declare class ModifyAppInstanceGroupAttributeRequestSecurityPolicy extends $dara.Model {
|
|
1927
2414
|
/**
|
|
2415
|
+
* @remarks
|
|
2416
|
+
* Specifies whether to reset after unbinding from a delivery group.
|
|
2417
|
+
*
|
|
2418
|
+
* Valid values:
|
|
2419
|
+
*
|
|
2420
|
+
* * true
|
|
2421
|
+
* * false
|
|
2422
|
+
*
|
|
1928
2423
|
* @example
|
|
1929
2424
|
* true
|
|
1930
2425
|
*/
|
|
1931
2426
|
resetAfterUnbind?: boolean;
|
|
1932
2427
|
/**
|
|
2428
|
+
* @remarks
|
|
2429
|
+
* Specifies whether to skip user permission verification.
|
|
2430
|
+
*
|
|
2431
|
+
* Valid values:
|
|
2432
|
+
*
|
|
2433
|
+
* * true
|
|
2434
|
+
* * false: This is the default value.
|
|
2435
|
+
*
|
|
1933
2436
|
* @example
|
|
1934
2437
|
* false
|
|
1935
2438
|
*/
|
|
@@ -1945,6 +2448,39 @@ export declare class ModifyAppInstanceGroupAttributeRequestSecurityPolicy extend
|
|
|
1945
2448
|
[key: string]: any;
|
|
1946
2449
|
});
|
|
1947
2450
|
}
|
|
2451
|
+
export declare class ModifyAppInstanceGroupAttributeRequestStoragePolicyUserProfile extends $dara.Model {
|
|
2452
|
+
/**
|
|
2453
|
+
* @remarks
|
|
2454
|
+
* The ID of the File Storage NAS (NAS) file system used to store user data.
|
|
2455
|
+
*
|
|
2456
|
+
* @example
|
|
2457
|
+
* 06ae94****
|
|
2458
|
+
*/
|
|
2459
|
+
fileSystemId?: string;
|
|
2460
|
+
/**
|
|
2461
|
+
* @remarks
|
|
2462
|
+
* Specifies whether user data roaming is enabled.
|
|
2463
|
+
*
|
|
2464
|
+
* Valid values:
|
|
2465
|
+
*
|
|
2466
|
+
* * true
|
|
2467
|
+
* * false
|
|
2468
|
+
*
|
|
2469
|
+
* @example
|
|
2470
|
+
* false
|
|
2471
|
+
*/
|
|
2472
|
+
userProfileSwitch?: boolean;
|
|
2473
|
+
static names(): {
|
|
2474
|
+
[key: string]: string;
|
|
2475
|
+
};
|
|
2476
|
+
static types(): {
|
|
2477
|
+
[key: string]: any;
|
|
2478
|
+
};
|
|
2479
|
+
validate(): void;
|
|
2480
|
+
constructor(map?: {
|
|
2481
|
+
[key: string]: any;
|
|
2482
|
+
});
|
|
2483
|
+
}
|
|
1948
2484
|
export declare class ModifyAppInstanceGroupAttributeRequestStoragePolicyUserProfileFollow extends $dara.Model {
|
|
1949
2485
|
fileSystemId?: string;
|
|
1950
2486
|
profileFollowSwitch?: boolean;
|
|
@@ -1960,7 +2496,16 @@ export declare class ModifyAppInstanceGroupAttributeRequestStoragePolicyUserProf
|
|
|
1960
2496
|
});
|
|
1961
2497
|
}
|
|
1962
2498
|
export declare class ModifyAppInstanceGroupAttributeRequestStoragePolicy extends $dara.Model {
|
|
2499
|
+
/**
|
|
2500
|
+
* @remarks
|
|
2501
|
+
* The storage types.
|
|
2502
|
+
*/
|
|
1963
2503
|
storageTypeList?: string[];
|
|
2504
|
+
/**
|
|
2505
|
+
* @remarks
|
|
2506
|
+
* The configurations of user data roaming.
|
|
2507
|
+
*/
|
|
2508
|
+
userProfile?: ModifyAppInstanceGroupAttributeRequestStoragePolicyUserProfile;
|
|
1964
2509
|
userProfileFollow?: ModifyAppInstanceGroupAttributeRequestStoragePolicyUserProfileFollow;
|
|
1965
2510
|
static names(): {
|
|
1966
2511
|
[key: string]: string;
|
|
@@ -2016,6 +2561,49 @@ export declare class ModifyAppPolicyRequestVideoPolicy extends $dara.Model {
|
|
|
2016
2561
|
[key: string]: any;
|
|
2017
2562
|
});
|
|
2018
2563
|
}
|
|
2564
|
+
export declare class ModifyNodePoolAmountRequestNodePool extends $dara.Model {
|
|
2565
|
+
/**
|
|
2566
|
+
* @remarks
|
|
2567
|
+
* This parameter is required.
|
|
2568
|
+
*
|
|
2569
|
+
* @example
|
|
2570
|
+
* 1
|
|
2571
|
+
*/
|
|
2572
|
+
nodeAmount?: number;
|
|
2573
|
+
/**
|
|
2574
|
+
* @example
|
|
2575
|
+
* EXPAND_FROM_POST_PAID_EXPLICIT
|
|
2576
|
+
*/
|
|
2577
|
+
prePaidNodeAmountModifyMode?: string;
|
|
2578
|
+
prePaidNodeAmountModifyNodeIds?: string[];
|
|
2579
|
+
static names(): {
|
|
2580
|
+
[key: string]: string;
|
|
2581
|
+
};
|
|
2582
|
+
static types(): {
|
|
2583
|
+
[key: string]: any;
|
|
2584
|
+
};
|
|
2585
|
+
validate(): void;
|
|
2586
|
+
constructor(map?: {
|
|
2587
|
+
[key: string]: any;
|
|
2588
|
+
});
|
|
2589
|
+
}
|
|
2590
|
+
export declare class ModifyNodePoolAmountResponseBodyData extends $dara.Model {
|
|
2591
|
+
/**
|
|
2592
|
+
* @example
|
|
2593
|
+
* 23429322113****
|
|
2594
|
+
*/
|
|
2595
|
+
orderId?: string;
|
|
2596
|
+
static names(): {
|
|
2597
|
+
[key: string]: string;
|
|
2598
|
+
};
|
|
2599
|
+
static types(): {
|
|
2600
|
+
[key: string]: any;
|
|
2601
|
+
};
|
|
2602
|
+
validate(): void;
|
|
2603
|
+
constructor(map?: {
|
|
2604
|
+
[key: string]: any;
|
|
2605
|
+
});
|
|
2606
|
+
}
|
|
2019
2607
|
export declare class ModifyNodePoolAttributeRequestNodePoolStrategyRecurrenceSchedulesTimerPeriods extends $dara.Model {
|
|
2020
2608
|
/**
|
|
2021
2609
|
* @remarks
|
|
@@ -2163,41 +2751,50 @@ export declare class ModifyNodePoolAttributeRequestNodePoolStrategy extends $dar
|
|
|
2163
2751
|
[key: string]: any;
|
|
2164
2752
|
});
|
|
2165
2753
|
}
|
|
2166
|
-
export declare class
|
|
2754
|
+
export declare class TagCloudResourcesRequestTags extends $dara.Model {
|
|
2167
2755
|
/**
|
|
2168
2756
|
* @remarks
|
|
2169
2757
|
* This parameter is required.
|
|
2170
2758
|
*
|
|
2171
2759
|
* @example
|
|
2172
|
-
*
|
|
2760
|
+
* Resolution
|
|
2173
2761
|
*/
|
|
2174
|
-
|
|
2762
|
+
key?: string;
|
|
2175
2763
|
/**
|
|
2176
2764
|
* @remarks
|
|
2177
2765
|
* This parameter is required.
|
|
2178
2766
|
*
|
|
2179
2767
|
* @example
|
|
2180
|
-
*
|
|
2768
|
+
* 720p
|
|
2181
2769
|
*/
|
|
2182
|
-
|
|
2770
|
+
value?: string;
|
|
2771
|
+
static names(): {
|
|
2772
|
+
[key: string]: string;
|
|
2773
|
+
};
|
|
2774
|
+
static types(): {
|
|
2775
|
+
[key: string]: any;
|
|
2776
|
+
};
|
|
2777
|
+
validate(): void;
|
|
2778
|
+
constructor(map?: {
|
|
2779
|
+
[key: string]: any;
|
|
2780
|
+
});
|
|
2781
|
+
}
|
|
2782
|
+
export declare class TagCloudResourcesResponseBodyFailedResourcesTags extends $dara.Model {
|
|
2183
2783
|
/**
|
|
2184
2784
|
* @example
|
|
2185
|
-
*
|
|
2785
|
+
* System/Scheduler/STOP_NEW_USER_CONNECTION
|
|
2186
2786
|
*/
|
|
2187
|
-
|
|
2787
|
+
key?: string;
|
|
2188
2788
|
/**
|
|
2189
|
-
* @remarks
|
|
2190
|
-
* This parameter is required.
|
|
2191
|
-
*
|
|
2192
2789
|
* @example
|
|
2193
|
-
*
|
|
2790
|
+
* System
|
|
2194
2791
|
*/
|
|
2195
|
-
|
|
2792
|
+
scope?: string;
|
|
2196
2793
|
/**
|
|
2197
2794
|
* @example
|
|
2198
|
-
*
|
|
2795
|
+
* true
|
|
2199
2796
|
*/
|
|
2200
|
-
|
|
2797
|
+
value?: string;
|
|
2201
2798
|
static names(): {
|
|
2202
2799
|
[key: string]: string;
|
|
2203
2800
|
};
|
|
@@ -2209,27 +2806,28 @@ export declare class AccessPageSetAclRequest extends $dara.Model {
|
|
|
2209
2806
|
[key: string]: any;
|
|
2210
2807
|
});
|
|
2211
2808
|
}
|
|
2212
|
-
export declare class
|
|
2809
|
+
export declare class TagCloudResourcesResponseBodyFailedResources extends $dara.Model {
|
|
2213
2810
|
/**
|
|
2214
2811
|
* @example
|
|
2215
|
-
*
|
|
2812
|
+
* TAG_KEY_DUPLICATED
|
|
2216
2813
|
*/
|
|
2217
2814
|
code?: string;
|
|
2218
2815
|
/**
|
|
2219
2816
|
* @example
|
|
2220
|
-
*
|
|
2817
|
+
* Duplicate tag keys exist.
|
|
2221
2818
|
*/
|
|
2222
2819
|
message?: string;
|
|
2223
2820
|
/**
|
|
2224
2821
|
* @example
|
|
2225
|
-
*
|
|
2822
|
+
* aig-001
|
|
2226
2823
|
*/
|
|
2227
|
-
|
|
2824
|
+
resourceId?: string;
|
|
2228
2825
|
/**
|
|
2229
2826
|
* @example
|
|
2230
|
-
*
|
|
2827
|
+
* AppInstanceGroupId
|
|
2231
2828
|
*/
|
|
2232
|
-
|
|
2829
|
+
resourceType?: string;
|
|
2830
|
+
tags?: TagCloudResourcesResponseBodyFailedResourcesTags[];
|
|
2233
2831
|
static names(): {
|
|
2234
2832
|
[key: string]: string;
|
|
2235
2833
|
};
|
|
@@ -2241,15 +2839,182 @@ export declare class AccessPageSetAclResponseBody extends $dara.Model {
|
|
|
2241
2839
|
[key: string]: any;
|
|
2242
2840
|
});
|
|
2243
2841
|
}
|
|
2244
|
-
export declare class
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2842
|
+
export declare class UntagCloudResourcesResponseBodyFailedResourcesTags extends $dara.Model {
|
|
2843
|
+
/**
|
|
2844
|
+
* @remarks
|
|
2845
|
+
* The tag key.
|
|
2846
|
+
*
|
|
2847
|
+
* @example
|
|
2848
|
+
* Resolution
|
|
2849
|
+
*/
|
|
2850
|
+
key?: string;
|
|
2851
|
+
/**
|
|
2852
|
+
* @remarks
|
|
2853
|
+
* The tag type.
|
|
2854
|
+
*
|
|
2855
|
+
* Valid values:
|
|
2856
|
+
*
|
|
2857
|
+
* * Custom: custom tag.
|
|
2858
|
+
* * System: system tag.
|
|
2859
|
+
*
|
|
2860
|
+
* @example
|
|
2861
|
+
* Custom
|
|
2862
|
+
*/
|
|
2863
|
+
scope?: string;
|
|
2864
|
+
static names(): {
|
|
2865
|
+
[key: string]: string;
|
|
2866
|
+
};
|
|
2867
|
+
static types(): {
|
|
2868
|
+
[key: string]: any;
|
|
2869
|
+
};
|
|
2870
|
+
validate(): void;
|
|
2871
|
+
constructor(map?: {
|
|
2872
|
+
[key: string]: any;
|
|
2873
|
+
});
|
|
2874
|
+
}
|
|
2875
|
+
export declare class UntagCloudResourcesResponseBodyFailedResources extends $dara.Model {
|
|
2876
|
+
/**
|
|
2877
|
+
* @remarks
|
|
2878
|
+
* The error code.
|
|
2879
|
+
*
|
|
2880
|
+
* @example
|
|
2881
|
+
* UNTAG_RESOURCE_FAILED
|
|
2882
|
+
*/
|
|
2883
|
+
code?: string;
|
|
2884
|
+
/**
|
|
2885
|
+
* @remarks
|
|
2886
|
+
* The error message.
|
|
2887
|
+
*
|
|
2888
|
+
* @example
|
|
2889
|
+
* Failed to untag resource.
|
|
2890
|
+
*/
|
|
2891
|
+
message?: string;
|
|
2892
|
+
/**
|
|
2893
|
+
* @remarks
|
|
2894
|
+
* The resource IDs.
|
|
2895
|
+
*
|
|
2896
|
+
* @example
|
|
2897
|
+
* aig-00000001
|
|
2898
|
+
*/
|
|
2899
|
+
resourceId?: string;
|
|
2900
|
+
/**
|
|
2901
|
+
* @remarks
|
|
2902
|
+
* The type of the cloud resource.
|
|
2903
|
+
*
|
|
2904
|
+
* Valid values:
|
|
2905
|
+
*
|
|
2906
|
+
* * AppId: app ID.
|
|
2907
|
+
* * WyId: Alibaba Cloud Workspace user ID.
|
|
2908
|
+
* * AppInstanceGroupId: delivery group ID.
|
|
2909
|
+
* * AliUid: tenant ID.
|
|
2910
|
+
*
|
|
2911
|
+
* @example
|
|
2912
|
+
* AppInstanceGroupId
|
|
2913
|
+
*/
|
|
2914
|
+
resourceType?: string;
|
|
2915
|
+
/**
|
|
2916
|
+
* @remarks
|
|
2917
|
+
* The tags that failed to be removed from the cloud resources.
|
|
2918
|
+
*/
|
|
2919
|
+
tags?: UntagCloudResourcesResponseBodyFailedResourcesTags[];
|
|
2920
|
+
static names(): {
|
|
2921
|
+
[key: string]: string;
|
|
2922
|
+
};
|
|
2923
|
+
static types(): {
|
|
2924
|
+
[key: string]: any;
|
|
2925
|
+
};
|
|
2926
|
+
validate(): void;
|
|
2927
|
+
constructor(map?: {
|
|
2928
|
+
[key: string]: any;
|
|
2929
|
+
});
|
|
2930
|
+
}
|
|
2931
|
+
export declare class AccessPageSetAclRequest extends $dara.Model {
|
|
2932
|
+
/**
|
|
2933
|
+
* @remarks
|
|
2934
|
+
* This parameter is required.
|
|
2935
|
+
*
|
|
2936
|
+
* @example
|
|
2937
|
+
* FREE_ACCESS
|
|
2938
|
+
*/
|
|
2939
|
+
accessMode?: string;
|
|
2940
|
+
/**
|
|
2941
|
+
* @remarks
|
|
2942
|
+
* This parameter is required.
|
|
2943
|
+
*
|
|
2944
|
+
* @example
|
|
2945
|
+
* a-062wec3cwmayw****
|
|
2946
|
+
*/
|
|
2947
|
+
accessPageId?: string;
|
|
2948
|
+
/**
|
|
2949
|
+
* @example
|
|
2950
|
+
* notepad_test
|
|
2951
|
+
*/
|
|
2952
|
+
accessPageName?: string;
|
|
2953
|
+
/**
|
|
2954
|
+
* @remarks
|
|
2955
|
+
* This parameter is required.
|
|
2956
|
+
*
|
|
2957
|
+
* @example
|
|
2958
|
+
* 7
|
|
2959
|
+
*/
|
|
2960
|
+
effectTime?: number;
|
|
2961
|
+
/**
|
|
2962
|
+
* @example
|
|
2963
|
+
* Day
|
|
2964
|
+
*/
|
|
2965
|
+
unit?: string;
|
|
2966
|
+
static names(): {
|
|
2967
|
+
[key: string]: string;
|
|
2968
|
+
};
|
|
2969
|
+
static types(): {
|
|
2970
|
+
[key: string]: any;
|
|
2971
|
+
};
|
|
2972
|
+
validate(): void;
|
|
2973
|
+
constructor(map?: {
|
|
2974
|
+
[key: string]: any;
|
|
2975
|
+
});
|
|
2976
|
+
}
|
|
2977
|
+
export declare class AccessPageSetAclResponseBody extends $dara.Model {
|
|
2978
|
+
/**
|
|
2979
|
+
* @example
|
|
2980
|
+
* 200
|
|
2981
|
+
*/
|
|
2982
|
+
code?: string;
|
|
2983
|
+
/**
|
|
2984
|
+
* @example
|
|
2985
|
+
* InternalError
|
|
2986
|
+
*/
|
|
2987
|
+
message?: string;
|
|
2988
|
+
/**
|
|
2989
|
+
* @example
|
|
2990
|
+
* E25FC620-6B6F-12D2-A992-AD8727DC****
|
|
2991
|
+
*/
|
|
2992
|
+
requestId?: string;
|
|
2993
|
+
/**
|
|
2994
|
+
* @example
|
|
2995
|
+
* true
|
|
2996
|
+
*/
|
|
2997
|
+
success?: string;
|
|
2998
|
+
static names(): {
|
|
2999
|
+
[key: string]: string;
|
|
3000
|
+
};
|
|
3001
|
+
static types(): {
|
|
3002
|
+
[key: string]: any;
|
|
3003
|
+
};
|
|
3004
|
+
validate(): void;
|
|
3005
|
+
constructor(map?: {
|
|
3006
|
+
[key: string]: any;
|
|
3007
|
+
});
|
|
3008
|
+
}
|
|
3009
|
+
export declare class AccessPageSetAclResponse extends $dara.Model {
|
|
3010
|
+
headers?: {
|
|
3011
|
+
[key: string]: string;
|
|
3012
|
+
};
|
|
3013
|
+
statusCode?: number;
|
|
3014
|
+
body?: AccessPageSetAclResponseBody;
|
|
3015
|
+
static names(): {
|
|
3016
|
+
[key: string]: string;
|
|
3017
|
+
};
|
|
2253
3018
|
static types(): {
|
|
2254
3019
|
[key: string]: any;
|
|
2255
3020
|
};
|
|
@@ -2261,6 +3026,8 @@ export declare class AccessPageSetAclResponse extends $dara.Model {
|
|
|
2261
3026
|
export declare class ApproveOtaTaskRequest extends $dara.Model {
|
|
2262
3027
|
/**
|
|
2263
3028
|
* @remarks
|
|
3029
|
+
* The ID of the delivery group. You can call the [ListAppInstanceGroup](https://help.aliyun.com/document_detail/428506.html) operation to obtain the ID.
|
|
3030
|
+
*
|
|
2264
3031
|
* This parameter is required.
|
|
2265
3032
|
*
|
|
2266
3033
|
* @example
|
|
@@ -2269,6 +3036,8 @@ export declare class ApproveOtaTaskRequest extends $dara.Model {
|
|
|
2269
3036
|
appInstanceGroupId?: string;
|
|
2270
3037
|
/**
|
|
2271
3038
|
* @remarks
|
|
3039
|
+
* The ID of the region where the delivery group resides. You can call the [ListRegions](https://help.aliyun.com/document_detail/428500.html) operation to query the list of regions supported by App Streaming.
|
|
3040
|
+
*
|
|
2272
3041
|
* This parameter is required.
|
|
2273
3042
|
*
|
|
2274
3043
|
* @example
|
|
@@ -2277,6 +3046,14 @@ export declare class ApproveOtaTaskRequest extends $dara.Model {
|
|
|
2277
3046
|
bizRegionId?: string;
|
|
2278
3047
|
/**
|
|
2279
3048
|
* @remarks
|
|
3049
|
+
* The type of the OTA update task.
|
|
3050
|
+
*
|
|
3051
|
+
* Valid values:
|
|
3052
|
+
*
|
|
3053
|
+
* * Fota: update of the system components of Alibaba Cloud Workspace
|
|
3054
|
+
* * AppUpdate
|
|
3055
|
+
* * ImageUpdate
|
|
3056
|
+
*
|
|
2280
3057
|
* This parameter is required.
|
|
2281
3058
|
*
|
|
2282
3059
|
* @example
|
|
@@ -2285,6 +3062,8 @@ export declare class ApproveOtaTaskRequest extends $dara.Model {
|
|
|
2285
3062
|
otaType?: string;
|
|
2286
3063
|
/**
|
|
2287
3064
|
* @remarks
|
|
3065
|
+
* The start time of the OTA update task. The time follows the ISO 8601 standard.
|
|
3066
|
+
*
|
|
2288
3067
|
* This parameter is required.
|
|
2289
3068
|
*
|
|
2290
3069
|
* Use the UTC time format: yyyy-MM-ddTHH:mmZ
|
|
@@ -2295,6 +3074,10 @@ export declare class ApproveOtaTaskRequest extends $dara.Model {
|
|
|
2295
3074
|
startTime?: string;
|
|
2296
3075
|
/**
|
|
2297
3076
|
* @remarks
|
|
3077
|
+
* The ID of the OTA update task. You can call the [ListAppInstanceGroup](https://help.aliyun.com/document_detail/428506.html) operation to obtain the ID.
|
|
3078
|
+
*
|
|
3079
|
+
* > Each successful call to the `ApproveOtaTask` operation causes a value change of this parameter.`` Before you call this operation, call the `ListAppInstanceGroup` operation again to obtain the latest value of this parameter.``
|
|
3080
|
+
*
|
|
2298
3081
|
* This parameter is required.
|
|
2299
3082
|
*
|
|
2300
3083
|
* @example
|
|
@@ -2314,16 +3097,25 @@ export declare class ApproveOtaTaskRequest extends $dara.Model {
|
|
|
2314
3097
|
}
|
|
2315
3098
|
export declare class ApproveOtaTaskResponseBody extends $dara.Model {
|
|
2316
3099
|
/**
|
|
3100
|
+
* @remarks
|
|
3101
|
+
* The execution result. If the request was successful, `success` is returned. If the request failed, an error message is returned.
|
|
3102
|
+
*
|
|
2317
3103
|
* @example
|
|
2318
3104
|
* OtaTask.Running
|
|
2319
3105
|
*/
|
|
2320
3106
|
code?: string;
|
|
2321
3107
|
/**
|
|
3108
|
+
* @remarks
|
|
3109
|
+
* The error message. If the value of `Code` is `success`, this parameter is not returned.
|
|
3110
|
+
*
|
|
2322
3111
|
* @example
|
|
2323
3112
|
* The task is running and cannot be sumitted.
|
|
2324
3113
|
*/
|
|
2325
3114
|
message?: string;
|
|
2326
3115
|
/**
|
|
3116
|
+
* @remarks
|
|
3117
|
+
* The request ID.
|
|
3118
|
+
*
|
|
2327
3119
|
* @example
|
|
2328
3120
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
2329
3121
|
*/
|
|
@@ -2739,6 +3531,7 @@ export declare class CreateAppInstanceGroupRequest extends $dara.Model {
|
|
|
2739
3531
|
*/
|
|
2740
3532
|
appCenterImageId?: string;
|
|
2741
3533
|
appInstanceGroupName?: string;
|
|
3534
|
+
appPackageType?: string;
|
|
2742
3535
|
appPolicyId?: string;
|
|
2743
3536
|
/**
|
|
2744
3537
|
* @example
|
|
@@ -2774,6 +3567,7 @@ export declare class CreateAppInstanceGroupRequest extends $dara.Model {
|
|
|
2774
3567
|
* PrePaid
|
|
2775
3568
|
*/
|
|
2776
3569
|
chargeType?: string;
|
|
3570
|
+
clusterId?: string;
|
|
2777
3571
|
network?: CreateAppInstanceGroupRequestNetwork;
|
|
2778
3572
|
nodePool?: CreateAppInstanceGroupRequestNodePool;
|
|
2779
3573
|
/**
|
|
@@ -2818,6 +3612,7 @@ export declare class CreateAppInstanceGroupRequest extends $dara.Model {
|
|
|
2818
3612
|
*/
|
|
2819
3613
|
sessionTimeout?: number;
|
|
2820
3614
|
storagePolicy?: CreateAppInstanceGroupRequestStoragePolicy;
|
|
3615
|
+
subPayType?: string;
|
|
2821
3616
|
userDefinePolicy?: CreateAppInstanceGroupRequestUserDefinePolicy;
|
|
2822
3617
|
userInfo?: CreateAppInstanceGroupRequestUserInfo;
|
|
2823
3618
|
users?: string[];
|
|
@@ -2843,6 +3638,7 @@ export declare class CreateAppInstanceGroupShrinkRequest extends $dara.Model {
|
|
|
2843
3638
|
*/
|
|
2844
3639
|
appCenterImageId?: string;
|
|
2845
3640
|
appInstanceGroupName?: string;
|
|
3641
|
+
appPackageType?: string;
|
|
2846
3642
|
appPolicyId?: string;
|
|
2847
3643
|
/**
|
|
2848
3644
|
* @example
|
|
@@ -2878,6 +3674,7 @@ export declare class CreateAppInstanceGroupShrinkRequest extends $dara.Model {
|
|
|
2878
3674
|
* PrePaid
|
|
2879
3675
|
*/
|
|
2880
3676
|
chargeType?: string;
|
|
3677
|
+
clusterId?: string;
|
|
2881
3678
|
networkShrink?: string;
|
|
2882
3679
|
nodePoolShrink?: string;
|
|
2883
3680
|
/**
|
|
@@ -2922,6 +3719,7 @@ export declare class CreateAppInstanceGroupShrinkRequest extends $dara.Model {
|
|
|
2922
3719
|
*/
|
|
2923
3720
|
sessionTimeout?: number;
|
|
2924
3721
|
storagePolicyShrink?: string;
|
|
3722
|
+
subPayType?: string;
|
|
2925
3723
|
userDefinePolicyShrink?: string;
|
|
2926
3724
|
userInfoShrink?: string;
|
|
2927
3725
|
users?: string[];
|
|
@@ -2971,6 +3769,8 @@ export declare class CreateAppInstanceGroupResponse extends $dara.Model {
|
|
|
2971
3769
|
export declare class CreateImageFromAppInstanceGroupRequest extends $dara.Model {
|
|
2972
3770
|
/**
|
|
2973
3771
|
* @remarks
|
|
3772
|
+
* The image name.
|
|
3773
|
+
*
|
|
2974
3774
|
* This parameter is required.
|
|
2975
3775
|
*
|
|
2976
3776
|
* @example
|
|
@@ -2979,6 +3779,8 @@ export declare class CreateImageFromAppInstanceGroupRequest extends $dara.Model
|
|
|
2979
3779
|
appCenterImageName?: string;
|
|
2980
3780
|
/**
|
|
2981
3781
|
* @remarks
|
|
3782
|
+
* The ID of the delivery group. You can call the [ListAppInstanceGroup](https://help.aliyun.com/document_detail/428506.html) operation to obtain the ID.
|
|
3783
|
+
*
|
|
2982
3784
|
* This parameter is required.
|
|
2983
3785
|
*
|
|
2984
3786
|
* @example
|
|
@@ -2987,6 +3789,12 @@ export declare class CreateImageFromAppInstanceGroupRequest extends $dara.Model
|
|
|
2987
3789
|
appInstanceGroupId?: string;
|
|
2988
3790
|
/**
|
|
2989
3791
|
* @remarks
|
|
3792
|
+
* The product type.
|
|
3793
|
+
*
|
|
3794
|
+
* Valid value:
|
|
3795
|
+
*
|
|
3796
|
+
* * CloudApp: App Streaming
|
|
3797
|
+
*
|
|
2990
3798
|
* This parameter is required.
|
|
2991
3799
|
*
|
|
2992
3800
|
* @example
|
|
@@ -3006,11 +3814,17 @@ export declare class CreateImageFromAppInstanceGroupRequest extends $dara.Model
|
|
|
3006
3814
|
}
|
|
3007
3815
|
export declare class CreateImageFromAppInstanceGroupResponseBody extends $dara.Model {
|
|
3008
3816
|
/**
|
|
3817
|
+
* @remarks
|
|
3818
|
+
* The image ID.
|
|
3819
|
+
*
|
|
3009
3820
|
* @example
|
|
3010
3821
|
* img-bp13mu****
|
|
3011
3822
|
*/
|
|
3012
3823
|
imageId?: string;
|
|
3013
3824
|
/**
|
|
3825
|
+
* @remarks
|
|
3826
|
+
* The request ID.
|
|
3827
|
+
*
|
|
3014
3828
|
* @example
|
|
3015
3829
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
3016
3830
|
*/
|
|
@@ -3111,6 +3925,8 @@ export declare class DeleteAccessPageResponse extends $dara.Model {
|
|
|
3111
3925
|
export declare class DeleteAppInstanceGroupRequest extends $dara.Model {
|
|
3112
3926
|
/**
|
|
3113
3927
|
* @remarks
|
|
3928
|
+
* The ID of the delivery group.
|
|
3929
|
+
*
|
|
3114
3930
|
* This parameter is required.
|
|
3115
3931
|
*
|
|
3116
3932
|
* @example
|
|
@@ -3119,6 +3935,12 @@ export declare class DeleteAppInstanceGroupRequest extends $dara.Model {
|
|
|
3119
3935
|
appInstanceGroupId?: string;
|
|
3120
3936
|
/**
|
|
3121
3937
|
* @remarks
|
|
3938
|
+
* The product type.
|
|
3939
|
+
*
|
|
3940
|
+
* Valid value:
|
|
3941
|
+
*
|
|
3942
|
+
* * CloudApp: App Streaming
|
|
3943
|
+
*
|
|
3122
3944
|
* This parameter is required.
|
|
3123
3945
|
*
|
|
3124
3946
|
* @example
|
|
@@ -3138,6 +3960,9 @@ export declare class DeleteAppInstanceGroupRequest extends $dara.Model {
|
|
|
3138
3960
|
}
|
|
3139
3961
|
export declare class DeleteAppInstanceGroupResponseBody extends $dara.Model {
|
|
3140
3962
|
/**
|
|
3963
|
+
* @remarks
|
|
3964
|
+
* The request ID.
|
|
3965
|
+
*
|
|
3141
3966
|
* @example
|
|
3142
3967
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
3143
3968
|
*/
|
|
@@ -3173,6 +3998,8 @@ export declare class DeleteAppInstanceGroupResponse extends $dara.Model {
|
|
|
3173
3998
|
export declare class DeleteAppInstancesRequest extends $dara.Model {
|
|
3174
3999
|
/**
|
|
3175
4000
|
* @remarks
|
|
4001
|
+
* The ID of the delivery group. You can call the [listAppInstanceGroup](https://help.aliyun.com/document_detail/428506.html) operation to obtain the ID.
|
|
4002
|
+
*
|
|
3176
4003
|
* This parameter is required.
|
|
3177
4004
|
*
|
|
3178
4005
|
* @example
|
|
@@ -3181,6 +4008,8 @@ export declare class DeleteAppInstancesRequest extends $dara.Model {
|
|
|
3181
4008
|
appInstanceGroupId?: string;
|
|
3182
4009
|
/**
|
|
3183
4010
|
* @remarks
|
|
4011
|
+
* The IDs of application instances.
|
|
4012
|
+
*
|
|
3184
4013
|
* This parameter is required.
|
|
3185
4014
|
*
|
|
3186
4015
|
* **if can be null:**
|
|
@@ -3189,6 +4018,12 @@ export declare class DeleteAppInstancesRequest extends $dara.Model {
|
|
|
3189
4018
|
appInstanceIds?: string[];
|
|
3190
4019
|
/**
|
|
3191
4020
|
* @remarks
|
|
4021
|
+
* The product type.
|
|
4022
|
+
*
|
|
4023
|
+
* Valid value:
|
|
4024
|
+
*
|
|
4025
|
+
* * CloudApp: App Streaming
|
|
4026
|
+
*
|
|
3192
4027
|
* This parameter is required.
|
|
3193
4028
|
*
|
|
3194
4029
|
* @example
|
|
@@ -3207,8 +4042,15 @@ export declare class DeleteAppInstancesRequest extends $dara.Model {
|
|
|
3207
4042
|
});
|
|
3208
4043
|
}
|
|
3209
4044
|
export declare class DeleteAppInstancesResponseBody extends $dara.Model {
|
|
4045
|
+
/**
|
|
4046
|
+
* @remarks
|
|
4047
|
+
* The data returned.
|
|
4048
|
+
*/
|
|
3210
4049
|
deleteAppInstanceModels?: DeleteAppInstancesResponseBodyDeleteAppInstanceModels[];
|
|
3211
4050
|
/**
|
|
4051
|
+
* @remarks
|
|
4052
|
+
* The request ID.
|
|
4053
|
+
*
|
|
3212
4054
|
* @example
|
|
3213
4055
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
3214
4056
|
*/
|
|
@@ -3392,34 +4234,72 @@ export declare class GetAppInstanceGroupResponse extends $dara.Model {
|
|
|
3392
4234
|
}
|
|
3393
4235
|
export declare class GetConnectionTicketRequest extends $dara.Model {
|
|
3394
4236
|
/**
|
|
4237
|
+
* @remarks
|
|
4238
|
+
* The application ID.
|
|
4239
|
+
*
|
|
4240
|
+
* > This parameter is required for the first call to this operation and optional for subsequent calls to the operation.
|
|
4241
|
+
*
|
|
3395
4242
|
* @example
|
|
3396
4243
|
* ca-e4s0puhmwi7v****
|
|
3397
4244
|
*/
|
|
3398
4245
|
appId?: string;
|
|
4246
|
+
/**
|
|
4247
|
+
* @remarks
|
|
4248
|
+
* The delivery groups.
|
|
4249
|
+
*
|
|
4250
|
+
* > * If you configure this parameter, the system assigns application instances only among the specified authorized delivery groups.
|
|
4251
|
+
* > * This parameter is required if you configure `AppInstanceId` or `AppInstancePersistentId`.
|
|
4252
|
+
*/
|
|
3399
4253
|
appInstanceGroupIdList?: string[];
|
|
3400
4254
|
/**
|
|
4255
|
+
* @remarks
|
|
4256
|
+
* The ID of the application instance.
|
|
4257
|
+
*
|
|
4258
|
+
* > * If you configure this parameter, the system attempts to assign only the specified application instance.
|
|
4259
|
+
* > * If you configure this parameter, you must also configure `AppInstanceGroupIdList` and the number of delivery groups specified by `AppInstanceGroupIdList` must be 1.
|
|
4260
|
+
*
|
|
3401
4261
|
* @example
|
|
3402
4262
|
* ai-1rznfnrvsa99d****
|
|
3403
4263
|
*/
|
|
3404
4264
|
appInstanceId?: string;
|
|
4265
|
+
/**
|
|
4266
|
+
* @remarks
|
|
4267
|
+
* The ID of the persistent session.
|
|
4268
|
+
*
|
|
4269
|
+
* @example
|
|
4270
|
+
* p-0bxls9m3cl7s****
|
|
4271
|
+
*/
|
|
3405
4272
|
appInstancePersistentId?: string;
|
|
3406
4273
|
/**
|
|
4274
|
+
* @remarks
|
|
4275
|
+
* The parameters that are configured to start the application. For information about how to obtain these parameters, see [Obtain parameters configured to install and start an application](https://help.aliyun.com/document_detail/426045.html).
|
|
4276
|
+
*
|
|
3407
4277
|
* @example
|
|
3408
4278
|
* /q /n
|
|
3409
4279
|
*/
|
|
3410
4280
|
appStartParam?: string;
|
|
3411
4281
|
/**
|
|
4282
|
+
* @remarks
|
|
4283
|
+
* The application version. If you configure this parameter, only an application of the specified version is started. If you do not configure this parameter, an application of a random authorized version is started.
|
|
4284
|
+
*
|
|
3412
4285
|
* @example
|
|
3413
4286
|
* 1.0.0
|
|
3414
4287
|
*/
|
|
3415
4288
|
appVersion?: string;
|
|
3416
4289
|
/**
|
|
4290
|
+
* @remarks
|
|
4291
|
+
* The region ID.
|
|
4292
|
+
*
|
|
4293
|
+
* > If you configure this parameter, the system assigns application instances only among the delivery groups that reside in the specified region.
|
|
4294
|
+
*
|
|
3417
4295
|
* @example
|
|
3418
4296
|
* cn-hangzhou
|
|
3419
4297
|
*/
|
|
3420
4298
|
bizRegionId?: string;
|
|
3421
4299
|
/**
|
|
3422
4300
|
* @remarks
|
|
4301
|
+
* The ID of the convenience account.
|
|
4302
|
+
*
|
|
3423
4303
|
* This parameter is required.
|
|
3424
4304
|
*
|
|
3425
4305
|
* @example
|
|
@@ -3428,6 +4308,13 @@ export declare class GetConnectionTicketRequest extends $dara.Model {
|
|
|
3428
4308
|
endUserId?: string;
|
|
3429
4309
|
/**
|
|
3430
4310
|
* @remarks
|
|
4311
|
+
* The product type.
|
|
4312
|
+
*
|
|
4313
|
+
* Valid values:
|
|
4314
|
+
*
|
|
4315
|
+
* * CloudApp: App Streaming
|
|
4316
|
+
* * AndroidCloud: Cloud Phone
|
|
4317
|
+
*
|
|
3431
4318
|
* This parameter is required.
|
|
3432
4319
|
*
|
|
3433
4320
|
* @example
|
|
@@ -3435,6 +4322,11 @@ export declare class GetConnectionTicketRequest extends $dara.Model {
|
|
|
3435
4322
|
*/
|
|
3436
4323
|
productType?: string;
|
|
3437
4324
|
/**
|
|
4325
|
+
* @remarks
|
|
4326
|
+
* The task ID.
|
|
4327
|
+
*
|
|
4328
|
+
* > This parameter is required for calls other than the first call to this operation. You can use this parameter to query the task status and connection credential.
|
|
4329
|
+
*
|
|
3438
4330
|
* @example
|
|
3439
4331
|
* 28778acb-a469-4bc0-8e0f****
|
|
3440
4332
|
*/
|
|
@@ -3452,43 +4344,93 @@ export declare class GetConnectionTicketRequest extends $dara.Model {
|
|
|
3452
4344
|
}
|
|
3453
4345
|
export declare class GetConnectionTicketResponseBody extends $dara.Model {
|
|
3454
4346
|
/**
|
|
4347
|
+
* @remarks
|
|
4348
|
+
* The ID of the delivery group.
|
|
4349
|
+
*
|
|
3455
4350
|
* @example
|
|
3456
4351
|
* aig-53fvrq1oan****
|
|
3457
4352
|
*/
|
|
3458
4353
|
appInstanceGroupId?: string;
|
|
3459
4354
|
/**
|
|
4355
|
+
* @remarks
|
|
4356
|
+
* The ID of the application instance.
|
|
4357
|
+
*
|
|
3460
4358
|
* @example
|
|
3461
4359
|
* ai-7ybdeiyoeh5e****
|
|
3462
4360
|
*/
|
|
3463
4361
|
appInstanceId?: string;
|
|
4362
|
+
/**
|
|
4363
|
+
* @remarks
|
|
4364
|
+
* The ID of the persistent session.
|
|
4365
|
+
*
|
|
4366
|
+
* @example
|
|
4367
|
+
* p-0bxls9m3cl7s****
|
|
4368
|
+
*/
|
|
3464
4369
|
appInstancePersistentId?: string;
|
|
3465
4370
|
/**
|
|
4371
|
+
* @remarks
|
|
4372
|
+
* The region ID.
|
|
4373
|
+
*
|
|
3466
4374
|
* @example
|
|
3467
4375
|
* cn-hangzhou
|
|
3468
4376
|
*/
|
|
3469
4377
|
bizRegionId?: string;
|
|
3470
4378
|
/**
|
|
4379
|
+
* @remarks
|
|
4380
|
+
* The operating system.
|
|
4381
|
+
*
|
|
4382
|
+
* Valid value:
|
|
4383
|
+
*
|
|
4384
|
+
* * Windows: the Windows operating system
|
|
4385
|
+
*
|
|
3471
4386
|
* @example
|
|
3472
4387
|
* Windows
|
|
3473
4388
|
*/
|
|
3474
4389
|
osType?: string;
|
|
3475
4390
|
/**
|
|
4391
|
+
* @remarks
|
|
4392
|
+
* The request ID.
|
|
4393
|
+
*
|
|
3476
4394
|
* @example
|
|
3477
4395
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
3478
4396
|
*/
|
|
3479
4397
|
requestId?: string;
|
|
3480
4398
|
/**
|
|
4399
|
+
* @remarks
|
|
4400
|
+
* The task ID.
|
|
4401
|
+
*
|
|
3481
4402
|
* @example
|
|
3482
4403
|
* f3d1b31c-605e-4d04-a896****
|
|
3483
4404
|
*/
|
|
3484
4405
|
taskId?: string;
|
|
3485
4406
|
/**
|
|
4407
|
+
* @remarks
|
|
4408
|
+
* The task status.
|
|
4409
|
+
*
|
|
4410
|
+
* Valid values:
|
|
4411
|
+
*
|
|
4412
|
+
* * Finished: The task is complete.
|
|
4413
|
+
* * Failed: The task failed.
|
|
4414
|
+
* * Running: The task is being executed.
|
|
4415
|
+
*
|
|
3486
4416
|
* @example
|
|
3487
4417
|
* Running
|
|
3488
4418
|
*/
|
|
3489
4419
|
taskStatus?: string;
|
|
4420
|
+
/**
|
|
4421
|
+
* @remarks
|
|
4422
|
+
* The ID of the Alibaba Cloud account.
|
|
4423
|
+
*
|
|
4424
|
+
* @example
|
|
4425
|
+
* 148871678899****
|
|
4426
|
+
*/
|
|
3490
4427
|
tenantId?: number;
|
|
3491
4428
|
/**
|
|
4429
|
+
* @remarks
|
|
4430
|
+
* The credential that is used to connect to App Streaming.
|
|
4431
|
+
*
|
|
4432
|
+
* > This parameter is displayed for calls other than the first call to this operation.
|
|
4433
|
+
*
|
|
3492
4434
|
* @example
|
|
3493
4435
|
* DQpbRGVza3RvcF0NCkZvcmNlVGxzVHlwZT0xDQpHV1Rva2VuUGFydDE9MDAva09ROW1FUTU3dU****
|
|
3494
4436
|
*/
|
|
@@ -3524,6 +4466,8 @@ export declare class GetConnectionTicketResponse extends $dara.Model {
|
|
|
3524
4466
|
export declare class GetDebugAppInstanceRequest extends $dara.Model {
|
|
3525
4467
|
/**
|
|
3526
4468
|
* @remarks
|
|
4469
|
+
* The ID of the delivery group. You can call the `listAppInstanceGroup` operation to obtain the ID.
|
|
4470
|
+
*
|
|
3527
4471
|
* This parameter is required.
|
|
3528
4472
|
*
|
|
3529
4473
|
* @example
|
|
@@ -3532,6 +4476,12 @@ export declare class GetDebugAppInstanceRequest extends $dara.Model {
|
|
|
3532
4476
|
appInstanceGroupId?: string;
|
|
3533
4477
|
/**
|
|
3534
4478
|
* @remarks
|
|
4479
|
+
* The product type.
|
|
4480
|
+
*
|
|
4481
|
+
* Valid value:
|
|
4482
|
+
*
|
|
4483
|
+
* * CloudApp: App Streaming
|
|
4484
|
+
*
|
|
3535
4485
|
* This parameter is required.
|
|
3536
4486
|
*
|
|
3537
4487
|
* @example
|
|
@@ -3550,32 +4500,61 @@ export declare class GetDebugAppInstanceRequest extends $dara.Model {
|
|
|
3550
4500
|
});
|
|
3551
4501
|
}
|
|
3552
4502
|
export declare class GetDebugAppInstanceResponseBody extends $dara.Model {
|
|
3553
|
-
appId?: string;
|
|
3554
4503
|
/**
|
|
4504
|
+
* @remarks
|
|
4505
|
+
* The application ID.
|
|
4506
|
+
*
|
|
4507
|
+
* @example
|
|
4508
|
+
* __DEBUG_APP
|
|
4509
|
+
*/
|
|
4510
|
+
appId?: string;
|
|
4511
|
+
/**
|
|
4512
|
+
* @remarks
|
|
4513
|
+
* The ID of the delivery group.
|
|
4514
|
+
*
|
|
3555
4515
|
* @example
|
|
3556
4516
|
* aig-9ciijz60n4xsv****
|
|
3557
4517
|
*/
|
|
3558
4518
|
appInstanceGroupId?: string;
|
|
3559
4519
|
/**
|
|
4520
|
+
* @remarks
|
|
4521
|
+
* The ID of the application instance.
|
|
4522
|
+
*
|
|
3560
4523
|
* @example
|
|
3561
4524
|
* ai-7ybdeiyoeh5e****
|
|
3562
4525
|
*/
|
|
3563
4526
|
appInstanceId?: string;
|
|
3564
4527
|
/**
|
|
4528
|
+
* @remarks
|
|
4529
|
+
* The ID of the application version.
|
|
4530
|
+
*
|
|
3565
4531
|
* @example
|
|
3566
4532
|
* 1.1
|
|
3567
4533
|
*/
|
|
3568
4534
|
appVersion?: string;
|
|
3569
4535
|
/**
|
|
4536
|
+
* @remarks
|
|
4537
|
+
* The authorization code. This authorization code is valid for 3 minutes and can be used only once, regardless of whether the authentication succeeds. If multiple authentication codes are generated for a user, only the latest authentication code takes effect.
|
|
4538
|
+
*
|
|
3570
4539
|
* @example
|
|
3571
4540
|
* e4e169bea1cc48e8afac53**********
|
|
3572
4541
|
*/
|
|
3573
4542
|
authCode?: string;
|
|
3574
4543
|
/**
|
|
4544
|
+
* @remarks
|
|
4545
|
+
* The request ID.
|
|
4546
|
+
*
|
|
3575
4547
|
* @example
|
|
3576
4548
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
3577
4549
|
*/
|
|
3578
4550
|
requestId?: string;
|
|
4551
|
+
/**
|
|
4552
|
+
* @remarks
|
|
4553
|
+
* The user ID.
|
|
4554
|
+
*
|
|
4555
|
+
* @example
|
|
4556
|
+
* __debug__
|
|
4557
|
+
*/
|
|
3579
4558
|
userId?: string;
|
|
3580
4559
|
static names(): {
|
|
3581
4560
|
[key: string]: string;
|
|
@@ -3608,6 +4587,8 @@ export declare class GetDebugAppInstanceResponse extends $dara.Model {
|
|
|
3608
4587
|
export declare class GetOtaTaskByTaskIdRequest extends $dara.Model {
|
|
3609
4588
|
/**
|
|
3610
4589
|
* @remarks
|
|
4590
|
+
* The ID of the OTA update task. You can call the [ListAppInstanceGroup](https://help.aliyun.com/document_detail/428506.html) operation to obtain the ID.
|
|
4591
|
+
*
|
|
3611
4592
|
* This parameter is required.
|
|
3612
4593
|
*
|
|
3613
4594
|
* @example
|
|
@@ -3627,28 +4608,46 @@ export declare class GetOtaTaskByTaskIdRequest extends $dara.Model {
|
|
|
3627
4608
|
}
|
|
3628
4609
|
export declare class GetOtaTaskByTaskIdResponseBody extends $dara.Model {
|
|
3629
4610
|
/**
|
|
4611
|
+
* @remarks
|
|
4612
|
+
* The error code.
|
|
4613
|
+
*
|
|
3630
4614
|
* @example
|
|
3631
4615
|
* OtaTask.Running
|
|
3632
4616
|
*/
|
|
3633
4617
|
code?: string;
|
|
3634
4618
|
/**
|
|
4619
|
+
* @remarks
|
|
4620
|
+
* The error message.
|
|
4621
|
+
*
|
|
3635
4622
|
* @example
|
|
3636
4623
|
* The task is running and cannot be sumitted.
|
|
3637
4624
|
*/
|
|
3638
4625
|
message?: string;
|
|
3639
4626
|
/**
|
|
4627
|
+
* @remarks
|
|
4628
|
+
* The OTA version.
|
|
4629
|
+
*
|
|
3640
4630
|
* @example
|
|
3641
4631
|
* 0.0.1-R-20220708.110604
|
|
3642
4632
|
*/
|
|
3643
4633
|
otaVersion?: string;
|
|
4634
|
+
/**
|
|
4635
|
+
* @remarks
|
|
4636
|
+
* The version description.
|
|
4637
|
+
*/
|
|
3644
4638
|
releaseNote?: string;
|
|
3645
4639
|
/**
|
|
4640
|
+
* @remarks
|
|
4641
|
+
* The request ID.
|
|
4642
|
+
*
|
|
3646
4643
|
* @example
|
|
3647
4644
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
3648
4645
|
*/
|
|
3649
4646
|
requestId?: string;
|
|
3650
4647
|
/**
|
|
3651
4648
|
* @remarks
|
|
4649
|
+
* The execution time of the OTA update task. The time follows the ISO 8601 standard.
|
|
4650
|
+
*
|
|
3652
4651
|
* Use the UTC time format: yyyy-MM-ddTHH:mmZ
|
|
3653
4652
|
*
|
|
3654
4653
|
* @example
|
|
@@ -3686,6 +4685,8 @@ export declare class GetOtaTaskByTaskIdResponse extends $dara.Model {
|
|
|
3686
4685
|
export declare class GetResourcePriceRequest extends $dara.Model {
|
|
3687
4686
|
/**
|
|
3688
4687
|
* @remarks
|
|
4688
|
+
* The number of resources to purchase.
|
|
4689
|
+
*
|
|
3689
4690
|
* This parameter is required.
|
|
3690
4691
|
*
|
|
3691
4692
|
* @example
|
|
@@ -3693,12 +4694,24 @@ export declare class GetResourcePriceRequest extends $dara.Model {
|
|
|
3693
4694
|
*/
|
|
3694
4695
|
amount?: number;
|
|
3695
4696
|
/**
|
|
4697
|
+
* @remarks
|
|
4698
|
+
* The type ID of the sessions that you purchase. You can call the `ListAppInstanceType` operation to obtain the ID.
|
|
4699
|
+
*
|
|
4700
|
+
* You must specify one of AppInstanceType and NodeInstanceType. If you specify both of the parameters, the value of NodeInstanceType takes effect.
|
|
4701
|
+
*
|
|
3696
4702
|
* @example
|
|
3697
4703
|
* appstreaming.general
|
|
3698
4704
|
*/
|
|
3699
4705
|
appInstanceType?: string;
|
|
3700
4706
|
/**
|
|
3701
4707
|
* @remarks
|
|
4708
|
+
* The ID of the region where the delivery group resides. For information about the supported regions, see [Limits](https://help.aliyun.com/document_detail/426036.html).
|
|
4709
|
+
*
|
|
4710
|
+
* Valid values:
|
|
4711
|
+
*
|
|
4712
|
+
* * cn-shanghai: China (Shanghai).
|
|
4713
|
+
* * cn-hangzhou: China (Hangzhou)
|
|
4714
|
+
*
|
|
3702
4715
|
* This parameter is required.
|
|
3703
4716
|
*
|
|
3704
4717
|
* @example
|
|
@@ -3707,6 +4720,13 @@ export declare class GetResourcePriceRequest extends $dara.Model {
|
|
|
3707
4720
|
bizRegionId?: string;
|
|
3708
4721
|
/**
|
|
3709
4722
|
* @remarks
|
|
4723
|
+
* The billing method.
|
|
4724
|
+
*
|
|
4725
|
+
* Valid values:
|
|
4726
|
+
*
|
|
4727
|
+
* * PostPaid: pay-as-you-go
|
|
4728
|
+
* * PrePaid: subscription
|
|
4729
|
+
*
|
|
3710
4730
|
* This parameter is required.
|
|
3711
4731
|
*
|
|
3712
4732
|
* @example
|
|
@@ -3714,12 +4734,27 @@ export declare class GetResourcePriceRequest extends $dara.Model {
|
|
|
3714
4734
|
*/
|
|
3715
4735
|
chargeType?: string;
|
|
3716
4736
|
/**
|
|
4737
|
+
* @remarks
|
|
4738
|
+
* The ID of the resource type that you purchase. You can call the [ListNodeInstanceType](https://help.aliyun.com/document_detail/428502.html) to obtain the ID.
|
|
4739
|
+
*
|
|
4740
|
+
* You must specify one of AppInstanceType and NodeInstanceType. If you specify both of the parameters, the value of NodeInstanceType takes effect.
|
|
4741
|
+
*
|
|
4742
|
+
* Valid values:
|
|
4743
|
+
*
|
|
4744
|
+
* * appstreaming.vgpu.8c16g.4g: WUYING - Graphics - 8 vCPUs, 16 GiB Memory, 4 GiB GPU Memory
|
|
4745
|
+
* * appstreaming.general.8c16g: WUYING - General - 8 vCPUs, 16 GiB Memory
|
|
4746
|
+
* * appstreaming.general.4c8g: WUYING - General - 4 vCPUs, 8 GiB Memory
|
|
4747
|
+
* * appstreaming.vgpu.14c93g.12g: WUYING - Graphics - 14 vCPUs, 93 GiB Memory, 12 GiB GPU Memory.
|
|
4748
|
+
* * appstreaming.vgpu.8c31g.16g: WUYING - Graphics - 8 vCPUs, 31 GiB Memory, 16 GiB GPU Memory
|
|
4749
|
+
*
|
|
3717
4750
|
* @example
|
|
3718
4751
|
* appstreaming.vgpu.4c8g.2g
|
|
3719
4752
|
*/
|
|
3720
4753
|
nodeInstanceType?: string;
|
|
3721
4754
|
/**
|
|
3722
4755
|
* @remarks
|
|
4756
|
+
* The subscription duration of resources. This parameter must be configured together with `PeriodUnit`.
|
|
4757
|
+
*
|
|
3723
4758
|
* This parameter is required.
|
|
3724
4759
|
*
|
|
3725
4760
|
* @example
|
|
@@ -3728,11 +4763,33 @@ export declare class GetResourcePriceRequest extends $dara.Model {
|
|
|
3728
4763
|
period?: number;
|
|
3729
4764
|
/**
|
|
3730
4765
|
* @remarks
|
|
4766
|
+
* The unit of the subscription duration. This parameter must be configured together with `Period`. The following items describe valid values for the combinations of `Period` and `PeriodUnit`:
|
|
4767
|
+
*
|
|
4768
|
+
* * 1 Week
|
|
4769
|
+
* * 1 Month
|
|
4770
|
+
* * 2 Month
|
|
4771
|
+
* * 3 Month
|
|
4772
|
+
* * 6 Month
|
|
4773
|
+
* * 1 Year
|
|
4774
|
+
* * 2 Year
|
|
4775
|
+
* * 3 Year
|
|
4776
|
+
*
|
|
4777
|
+
* > The value of this parameter is case-insensitive. For example, `Week` is valid and `week` is invalid. If you specify a value combination other than the preceding combinations, such as `2 Week`, the operation can still be called. However, an error occurs when you place the order.
|
|
4778
|
+
*
|
|
3731
4779
|
* This parameter is required.
|
|
4780
|
+
*
|
|
4781
|
+
* @example
|
|
4782
|
+
* Week
|
|
3732
4783
|
*/
|
|
3733
4784
|
periodUnit?: string;
|
|
3734
4785
|
/**
|
|
3735
4786
|
* @remarks
|
|
4787
|
+
* The product type.
|
|
4788
|
+
*
|
|
4789
|
+
* Valid value:
|
|
4790
|
+
*
|
|
4791
|
+
* * CloudApp: App Streaming
|
|
4792
|
+
*
|
|
3736
4793
|
* This parameter is required.
|
|
3737
4794
|
*
|
|
3738
4795
|
* @example
|
|
@@ -3752,18 +4809,39 @@ export declare class GetResourcePriceRequest extends $dara.Model {
|
|
|
3752
4809
|
}
|
|
3753
4810
|
export declare class GetResourcePriceResponseBody extends $dara.Model {
|
|
3754
4811
|
/**
|
|
4812
|
+
* @remarks
|
|
4813
|
+
* The error code.
|
|
4814
|
+
*
|
|
3755
4815
|
* @example
|
|
3756
4816
|
* InvalidParameter.ProductType
|
|
3757
4817
|
*/
|
|
3758
4818
|
code?: string;
|
|
3759
4819
|
/**
|
|
4820
|
+
* @remarks
|
|
4821
|
+
* The error message.
|
|
4822
|
+
*
|
|
3760
4823
|
* @example
|
|
3761
4824
|
* The parameter ProductType is invalid.
|
|
3762
4825
|
*/
|
|
3763
4826
|
message?: string;
|
|
4827
|
+
/**
|
|
4828
|
+
* @remarks
|
|
4829
|
+
* The price objects.
|
|
4830
|
+
*
|
|
4831
|
+
* This parameter is returned only if a value is specified for AppInstanceType.
|
|
4832
|
+
*/
|
|
3764
4833
|
priceList?: GetResourcePriceResponseBodyPriceList[];
|
|
4834
|
+
/**
|
|
4835
|
+
* @remarks
|
|
4836
|
+
* The price object.
|
|
4837
|
+
*
|
|
4838
|
+
* This parameter is returned only if a value is specified for NodeInstanceType.
|
|
4839
|
+
*/
|
|
3765
4840
|
priceModel?: GetResourcePriceResponseBodyPriceModel;
|
|
3766
4841
|
/**
|
|
4842
|
+
* @remarks
|
|
4843
|
+
* The request ID.
|
|
4844
|
+
*
|
|
3767
4845
|
* @example
|
|
3768
4846
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
3769
4847
|
*/
|
|
@@ -3799,6 +4877,8 @@ export declare class GetResourcePriceResponse extends $dara.Model {
|
|
|
3799
4877
|
export declare class GetResourceRenewPriceRequest extends $dara.Model {
|
|
3800
4878
|
/**
|
|
3801
4879
|
* @remarks
|
|
4880
|
+
* The ID of the delivery group. You can call the [ListAppInstanceGroup](https://help.aliyun.com/document_detail/428506.html) operation to obtain the ID.
|
|
4881
|
+
*
|
|
3802
4882
|
* This parameter is required.
|
|
3803
4883
|
*
|
|
3804
4884
|
* @example
|
|
@@ -3807,6 +4887,8 @@ export declare class GetResourceRenewPriceRequest extends $dara.Model {
|
|
|
3807
4887
|
appInstanceGroupId?: string;
|
|
3808
4888
|
/**
|
|
3809
4889
|
* @remarks
|
|
4890
|
+
* The subscription duration of resources. This parameter must be configured together with `PeriodUnit`.
|
|
4891
|
+
*
|
|
3810
4892
|
* This parameter is required.
|
|
3811
4893
|
*
|
|
3812
4894
|
* @example
|
|
@@ -3815,6 +4897,19 @@ export declare class GetResourceRenewPriceRequest extends $dara.Model {
|
|
|
3815
4897
|
period?: number;
|
|
3816
4898
|
/**
|
|
3817
4899
|
* @remarks
|
|
4900
|
+
* The unit of the subscription duration. This parameter must be configured together with `Period`. The following items describe valid values for the combinations of `Period` and `PeriodUnit`:
|
|
4901
|
+
*
|
|
4902
|
+
* * 1 Week
|
|
4903
|
+
* * 1 Month
|
|
4904
|
+
* * 2 Month
|
|
4905
|
+
* * 3 Month
|
|
4906
|
+
* * 6 Month
|
|
4907
|
+
* * 1 Year
|
|
4908
|
+
* * 2 Year
|
|
4909
|
+
* * 3 Year
|
|
4910
|
+
*
|
|
4911
|
+
* > The value of this parameter is case-insensitive. For example, `Week` is valid and `week` is invalid. If you specify a value combination other than the preceding combinations, such as `2 Week`, the operation can still be called. However, an error occurs when you place the order.
|
|
4912
|
+
*
|
|
3818
4913
|
* This parameter is required.
|
|
3819
4914
|
*
|
|
3820
4915
|
* @example
|
|
@@ -3823,6 +4918,12 @@ export declare class GetResourceRenewPriceRequest extends $dara.Model {
|
|
|
3823
4918
|
periodUnit?: string;
|
|
3824
4919
|
/**
|
|
3825
4920
|
* @remarks
|
|
4921
|
+
* The product type.
|
|
4922
|
+
*
|
|
4923
|
+
* Valid value:
|
|
4924
|
+
*
|
|
4925
|
+
* * CloudApp: App Streaming
|
|
4926
|
+
*
|
|
3826
4927
|
* This parameter is required.
|
|
3827
4928
|
*
|
|
3828
4929
|
* @example
|
|
@@ -3841,8 +4942,15 @@ export declare class GetResourceRenewPriceRequest extends $dara.Model {
|
|
|
3841
4942
|
});
|
|
3842
4943
|
}
|
|
3843
4944
|
export declare class GetResourceRenewPriceResponseBody extends $dara.Model {
|
|
4945
|
+
/**
|
|
4946
|
+
* @remarks
|
|
4947
|
+
* The price object.
|
|
4948
|
+
*/
|
|
3844
4949
|
data?: GetResourceRenewPriceResponseBodyData;
|
|
3845
4950
|
/**
|
|
4951
|
+
* @remarks
|
|
4952
|
+
* The request ID.
|
|
4953
|
+
*
|
|
3846
4954
|
* @example
|
|
3847
4955
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
3848
4956
|
*/
|
|
@@ -3990,8 +5098,23 @@ export declare class ListAppInstanceGroupRequest extends $dara.Model {
|
|
|
3990
5098
|
*/
|
|
3991
5099
|
appInstanceGroupId?: string;
|
|
3992
5100
|
appInstanceGroupName?: string;
|
|
5101
|
+
/**
|
|
5102
|
+
* @remarks
|
|
5103
|
+
* The ID of the region where the delivery group resides. For information about the supported regions, see [Limits](https://help.aliyun.com/document_detail/426036.html).
|
|
5104
|
+
*
|
|
5105
|
+
* Valid values:
|
|
5106
|
+
*
|
|
5107
|
+
* * cn-shanghai: China (Shanghai)
|
|
5108
|
+
* * cn-hangzhou: China (Hangzhou)
|
|
5109
|
+
*
|
|
5110
|
+
* @example
|
|
5111
|
+
* cn-hangzhou
|
|
5112
|
+
*/
|
|
3993
5113
|
bizRegionId?: string;
|
|
3994
5114
|
/**
|
|
5115
|
+
* @remarks
|
|
5116
|
+
* The ID of the resource specification that you purchase. You can call the [ListNodeInstanceType](~~ListNodeInstanceType~~) operation to obtain the ID.
|
|
5117
|
+
*
|
|
3995
5118
|
* @example
|
|
3996
5119
|
* appstreaming.vgpu.4c8g.2g
|
|
3997
5120
|
*/
|
|
@@ -4003,6 +5126,9 @@ export declare class ListAppInstanceGroupRequest extends $dara.Model {
|
|
|
4003
5126
|
*/
|
|
4004
5127
|
pageNumber?: number;
|
|
4005
5128
|
/**
|
|
5129
|
+
* @remarks
|
|
5130
|
+
* The number of entries per page. The value cannot be greater than `100`.
|
|
5131
|
+
*
|
|
4006
5132
|
* @example
|
|
4007
5133
|
* 10
|
|
4008
5134
|
*/
|
|
@@ -4016,6 +5142,9 @@ export declare class ListAppInstanceGroupRequest extends $dara.Model {
|
|
|
4016
5142
|
*/
|
|
4017
5143
|
productType?: string;
|
|
4018
5144
|
/**
|
|
5145
|
+
* @remarks
|
|
5146
|
+
* The region ID.
|
|
5147
|
+
*
|
|
4019
5148
|
* @example
|
|
4020
5149
|
* cn-hangzhou
|
|
4021
5150
|
*
|
|
@@ -4035,6 +5164,10 @@ export declare class ListAppInstanceGroupRequest extends $dara.Model {
|
|
|
4035
5164
|
});
|
|
4036
5165
|
}
|
|
4037
5166
|
export declare class ListAppInstanceGroupResponseBody extends $dara.Model {
|
|
5167
|
+
/**
|
|
5168
|
+
* @remarks
|
|
5169
|
+
* The delivery groups.
|
|
5170
|
+
*/
|
|
4038
5171
|
appInstanceGroupModels?: ListAppInstanceGroupResponseBodyAppInstanceGroupModels[];
|
|
4039
5172
|
/**
|
|
4040
5173
|
* @example
|
|
@@ -4087,6 +5220,8 @@ export declare class ListAppInstanceGroupResponse extends $dara.Model {
|
|
|
4087
5220
|
export declare class ListAppInstancesRequest extends $dara.Model {
|
|
4088
5221
|
/**
|
|
4089
5222
|
* @remarks
|
|
5223
|
+
* The ID of the delivery group.
|
|
5224
|
+
*
|
|
4090
5225
|
* This parameter is required.
|
|
4091
5226
|
*
|
|
4092
5227
|
* @example
|
|
@@ -4094,35 +5229,63 @@ export declare class ListAppInstancesRequest extends $dara.Model {
|
|
|
4094
5229
|
*/
|
|
4095
5230
|
appInstanceGroupId?: string;
|
|
4096
5231
|
/**
|
|
5232
|
+
* @remarks
|
|
5233
|
+
* The ID of the application instance.
|
|
5234
|
+
*
|
|
4097
5235
|
* @example
|
|
4098
5236
|
* ai-azn3kmwruh1vl****
|
|
4099
5237
|
*/
|
|
4100
5238
|
appInstanceId?: string;
|
|
4101
5239
|
/**
|
|
5240
|
+
* @remarks
|
|
5241
|
+
* The IDs of the application instances. Up to 100 IDs can be specified.
|
|
5242
|
+
*
|
|
4102
5243
|
* **if can be null:**
|
|
4103
5244
|
* false
|
|
4104
5245
|
*/
|
|
4105
5246
|
appInstanceIdList?: string[];
|
|
4106
5247
|
/**
|
|
5248
|
+
* @remarks
|
|
5249
|
+
* Specifies whether to query the information about deleted app instances. If you set this parameter to true, you must configure AppInstanceIdList. Otherwise, a parameter error is reported.
|
|
5250
|
+
*
|
|
5251
|
+
* Valid values:
|
|
5252
|
+
*
|
|
5253
|
+
* * true
|
|
5254
|
+
* * false
|
|
5255
|
+
*
|
|
4107
5256
|
* @example
|
|
4108
5257
|
* true
|
|
4109
5258
|
*/
|
|
4110
5259
|
includeDeleted?: boolean;
|
|
4111
5260
|
/**
|
|
5261
|
+
* @remarks
|
|
5262
|
+
* The page number. Default value: `1`. We recommend that you specify this parameter.
|
|
5263
|
+
*
|
|
4112
5264
|
* @example
|
|
4113
5265
|
* 1
|
|
4114
5266
|
*/
|
|
4115
5267
|
pageNumber?: number;
|
|
4116
5268
|
/**
|
|
5269
|
+
* @remarks
|
|
5270
|
+
* The number of entries per page. The value cannot be greater than `100`. Default value: `20`. We recommend that you specify this parameter.
|
|
5271
|
+
*
|
|
4117
5272
|
* @example
|
|
4118
5273
|
* 20
|
|
4119
5274
|
*/
|
|
4120
5275
|
pageSize?: number;
|
|
4121
5276
|
/**
|
|
5277
|
+
* @remarks
|
|
5278
|
+
* The status of the application instances.
|
|
5279
|
+
*
|
|
4122
5280
|
* **if can be null:**
|
|
4123
5281
|
* false
|
|
4124
5282
|
*/
|
|
4125
5283
|
status?: string[];
|
|
5284
|
+
/**
|
|
5285
|
+
* @remarks
|
|
5286
|
+
* The user IDs. You can specify up to 100 IDs.
|
|
5287
|
+
*/
|
|
5288
|
+
userIdList?: string[];
|
|
4126
5289
|
static names(): {
|
|
4127
5290
|
[key: string]: string;
|
|
4128
5291
|
};
|
|
@@ -4135,23 +5298,39 @@ export declare class ListAppInstancesRequest extends $dara.Model {
|
|
|
4135
5298
|
});
|
|
4136
5299
|
}
|
|
4137
5300
|
export declare class ListAppInstancesResponseBody extends $dara.Model {
|
|
5301
|
+
/**
|
|
5302
|
+
* @remarks
|
|
5303
|
+
* The app instances.
|
|
5304
|
+
*/
|
|
4138
5305
|
appInstanceModels?: ListAppInstancesResponseBodyAppInstanceModels[];
|
|
4139
5306
|
/**
|
|
5307
|
+
* @remarks
|
|
5308
|
+
* The page number of the returned page. We recommend that you configure this parameter.
|
|
5309
|
+
*
|
|
4140
5310
|
* @example
|
|
4141
5311
|
* 1
|
|
4142
5312
|
*/
|
|
4143
5313
|
pageNumber?: number;
|
|
4144
5314
|
/**
|
|
5315
|
+
* @remarks
|
|
5316
|
+
* The number of entries returned on each page. The value cannot be greater than `100`. We recommend that you configure this parameter.
|
|
5317
|
+
*
|
|
4145
5318
|
* @example
|
|
4146
5319
|
* 10
|
|
4147
5320
|
*/
|
|
4148
5321
|
pageSize?: number;
|
|
4149
5322
|
/**
|
|
5323
|
+
* @remarks
|
|
5324
|
+
* The request ID.
|
|
5325
|
+
*
|
|
4150
5326
|
* @example
|
|
4151
5327
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
4152
5328
|
*/
|
|
4153
5329
|
requestId?: string;
|
|
4154
5330
|
/**
|
|
5331
|
+
* @remarks
|
|
5332
|
+
* The total number of entries returned.
|
|
5333
|
+
*
|
|
4155
5334
|
* @example
|
|
4156
5335
|
* 18
|
|
4157
5336
|
*/
|
|
@@ -4264,7 +5443,12 @@ export declare class ListBindInfoResponse extends $dara.Model {
|
|
|
4264
5443
|
export declare class ListNodeInstanceTypeRequest extends $dara.Model {
|
|
4265
5444
|
/**
|
|
4266
5445
|
* @remarks
|
|
4267
|
-
*
|
|
5446
|
+
* The ID of the region where the resource resides. For information about the supported regions, see [Limits](https://help.aliyun.com/document_detail/426036.html).
|
|
5447
|
+
*
|
|
5448
|
+
* Valid values:
|
|
5449
|
+
*
|
|
5450
|
+
* * cn-shanghai: China (Shanghai)
|
|
5451
|
+
* * cn-hangzhou: China (Hangzhou)
|
|
4268
5452
|
*
|
|
4269
5453
|
* @example
|
|
4270
5454
|
* cn-hangzhou
|
|
@@ -4275,7 +5459,12 @@ export declare class ListNodeInstanceTypeRequest extends $dara.Model {
|
|
|
4275
5459
|
gpuMemory?: number;
|
|
4276
5460
|
/**
|
|
4277
5461
|
* @remarks
|
|
4278
|
-
*
|
|
5462
|
+
* The language that you want to use.
|
|
5463
|
+
*
|
|
5464
|
+
* Valid values:
|
|
5465
|
+
*
|
|
5466
|
+
* * en-US: English (US)
|
|
5467
|
+
* * zh-CN: Simplified Chinese
|
|
4279
5468
|
*
|
|
4280
5469
|
* @example
|
|
4281
5470
|
* zh-CN
|
|
@@ -4283,6 +5472,9 @@ export declare class ListNodeInstanceTypeRequest extends $dara.Model {
|
|
|
4283
5472
|
language?: string;
|
|
4284
5473
|
memory?: number;
|
|
4285
5474
|
/**
|
|
5475
|
+
* @remarks
|
|
5476
|
+
* The resource type that you want to query. If you do not configure this parameter, all resource types are returned.
|
|
5477
|
+
*
|
|
4286
5478
|
* @example
|
|
4287
5479
|
* appstreaming.vgpu.4c8g.2g
|
|
4288
5480
|
*/
|
|
@@ -4291,7 +5483,11 @@ export declare class ListNodeInstanceTypeRequest extends $dara.Model {
|
|
|
4291
5483
|
orderBy?: string;
|
|
4292
5484
|
/**
|
|
4293
5485
|
* @remarks
|
|
4294
|
-
*
|
|
5486
|
+
* The operating system that is supported.
|
|
5487
|
+
*
|
|
5488
|
+
* Valid value:
|
|
5489
|
+
*
|
|
5490
|
+
* * Windows: the Windows operating system
|
|
4295
5491
|
*
|
|
4296
5492
|
* @example
|
|
4297
5493
|
* Windows
|
|
@@ -4299,6 +5495,8 @@ export declare class ListNodeInstanceTypeRequest extends $dara.Model {
|
|
|
4299
5495
|
osType?: string;
|
|
4300
5496
|
/**
|
|
4301
5497
|
* @remarks
|
|
5498
|
+
* The number of the page to return.
|
|
5499
|
+
*
|
|
4302
5500
|
* This parameter is required.
|
|
4303
5501
|
*
|
|
4304
5502
|
* @example
|
|
@@ -4307,6 +5505,8 @@ export declare class ListNodeInstanceTypeRequest extends $dara.Model {
|
|
|
4307
5505
|
pageNumber?: number;
|
|
4308
5506
|
/**
|
|
4309
5507
|
* @remarks
|
|
5508
|
+
* The number of entries to return on each page. Valid values: 1 to 100.
|
|
5509
|
+
*
|
|
4310
5510
|
* This parameter is required.
|
|
4311
5511
|
*
|
|
4312
5512
|
* @example
|
|
@@ -4315,6 +5515,12 @@ export declare class ListNodeInstanceTypeRequest extends $dara.Model {
|
|
|
4315
5515
|
pageSize?: number;
|
|
4316
5516
|
/**
|
|
4317
5517
|
* @remarks
|
|
5518
|
+
* The product type.
|
|
5519
|
+
*
|
|
5520
|
+
* Valid value:
|
|
5521
|
+
*
|
|
5522
|
+
* * CloudApp: App Streaming
|
|
5523
|
+
*
|
|
4318
5524
|
* This parameter is required.
|
|
4319
5525
|
*
|
|
4320
5526
|
* @example
|
|
@@ -4334,19 +5540,39 @@ export declare class ListNodeInstanceTypeRequest extends $dara.Model {
|
|
|
4334
5540
|
});
|
|
4335
5541
|
}
|
|
4336
5542
|
export declare class ListNodeInstanceTypeResponseBody extends $dara.Model {
|
|
5543
|
+
/**
|
|
5544
|
+
* @remarks
|
|
5545
|
+
* The resource types.
|
|
5546
|
+
*/
|
|
4337
5547
|
nodeInstanceTypeModels?: ListNodeInstanceTypeResponseBodyNodeInstanceTypeModels[];
|
|
4338
5548
|
/**
|
|
5549
|
+
* @remarks
|
|
5550
|
+
* The page number of the returned page.
|
|
5551
|
+
*
|
|
4339
5552
|
* @example
|
|
4340
5553
|
* 1
|
|
4341
5554
|
*/
|
|
4342
5555
|
pageNumber?: number;
|
|
4343
5556
|
/**
|
|
5557
|
+
* @remarks
|
|
5558
|
+
* The number of entries on each page.
|
|
5559
|
+
*
|
|
4344
5560
|
* @example
|
|
4345
5561
|
* 10
|
|
4346
5562
|
*/
|
|
4347
5563
|
pageSize?: number;
|
|
5564
|
+
/**
|
|
5565
|
+
* @remarks
|
|
5566
|
+
* The request ID.
|
|
5567
|
+
*
|
|
5568
|
+
* @example
|
|
5569
|
+
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
5570
|
+
*/
|
|
4348
5571
|
requestId?: string;
|
|
4349
5572
|
/**
|
|
5573
|
+
* @remarks
|
|
5574
|
+
* The total number of entries returned.
|
|
5575
|
+
*
|
|
4350
5576
|
* @example
|
|
4351
5577
|
* 6
|
|
4352
5578
|
*/
|
|
@@ -4379,7 +5605,7 @@ export declare class ListNodeInstanceTypeResponse extends $dara.Model {
|
|
|
4379
5605
|
[key: string]: any;
|
|
4380
5606
|
});
|
|
4381
5607
|
}
|
|
4382
|
-
export declare class
|
|
5608
|
+
export declare class ListNodesRequest extends $dara.Model {
|
|
4383
5609
|
/**
|
|
4384
5610
|
* @remarks
|
|
4385
5611
|
* This parameter is required.
|
|
@@ -4393,25 +5619,25 @@ export declare class ListOtaTaskRequest extends $dara.Model {
|
|
|
4393
5619
|
* This parameter is required.
|
|
4394
5620
|
*
|
|
4395
5621
|
* @example
|
|
4396
|
-
*
|
|
5622
|
+
* 1
|
|
4397
5623
|
*/
|
|
4398
|
-
|
|
5624
|
+
pageNumber?: number;
|
|
4399
5625
|
/**
|
|
4400
5626
|
* @remarks
|
|
4401
5627
|
* This parameter is required.
|
|
4402
5628
|
*
|
|
4403
5629
|
* @example
|
|
4404
|
-
*
|
|
5630
|
+
* 10
|
|
4405
5631
|
*/
|
|
4406
|
-
|
|
5632
|
+
pageSize?: number;
|
|
4407
5633
|
/**
|
|
4408
5634
|
* @remarks
|
|
4409
5635
|
* This parameter is required.
|
|
4410
5636
|
*
|
|
4411
5637
|
* @example
|
|
4412
|
-
*
|
|
5638
|
+
* CloudApp
|
|
4413
5639
|
*/
|
|
4414
|
-
|
|
5640
|
+
productType?: string;
|
|
4415
5641
|
static names(): {
|
|
4416
5642
|
[key: string]: string;
|
|
4417
5643
|
};
|
|
@@ -4423,28 +5649,28 @@ export declare class ListOtaTaskRequest extends $dara.Model {
|
|
|
4423
5649
|
[key: string]: any;
|
|
4424
5650
|
});
|
|
4425
5651
|
}
|
|
4426
|
-
export declare class
|
|
5652
|
+
export declare class ListNodesResponseBody extends $dara.Model {
|
|
4427
5653
|
/**
|
|
4428
5654
|
* @example
|
|
4429
|
-
*
|
|
5655
|
+
* 100
|
|
4430
5656
|
*/
|
|
4431
|
-
|
|
5657
|
+
count?: number;
|
|
5658
|
+
nodeModels?: ListNodesResponseBodyNodeModels[];
|
|
4432
5659
|
/**
|
|
4433
5660
|
* @example
|
|
4434
5661
|
* 10
|
|
4435
5662
|
*/
|
|
4436
|
-
|
|
5663
|
+
perPageSize?: number;
|
|
4437
5664
|
/**
|
|
4438
5665
|
* @example
|
|
4439
5666
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
4440
5667
|
*/
|
|
4441
5668
|
requestId?: string;
|
|
4442
|
-
taskList?: ListOtaTaskResponseBodyTaskList[];
|
|
4443
5669
|
/**
|
|
4444
5670
|
* @example
|
|
4445
|
-
*
|
|
5671
|
+
* 1
|
|
4446
5672
|
*/
|
|
4447
|
-
|
|
5673
|
+
toPage?: number;
|
|
4448
5674
|
static names(): {
|
|
4449
5675
|
[key: string]: string;
|
|
4450
5676
|
};
|
|
@@ -4456,12 +5682,12 @@ export declare class ListOtaTaskResponseBody extends $dara.Model {
|
|
|
4456
5682
|
[key: string]: any;
|
|
4457
5683
|
});
|
|
4458
5684
|
}
|
|
4459
|
-
export declare class
|
|
5685
|
+
export declare class ListNodesResponse extends $dara.Model {
|
|
4460
5686
|
headers?: {
|
|
4461
5687
|
[key: string]: string;
|
|
4462
5688
|
};
|
|
4463
5689
|
statusCode?: number;
|
|
4464
|
-
body?:
|
|
5690
|
+
body?: ListNodesResponseBody;
|
|
4465
5691
|
static names(): {
|
|
4466
5692
|
[key: string]: string;
|
|
4467
5693
|
};
|
|
@@ -4473,9 +5699,51 @@ export declare class ListOtaTaskResponse extends $dara.Model {
|
|
|
4473
5699
|
[key: string]: any;
|
|
4474
5700
|
});
|
|
4475
5701
|
}
|
|
4476
|
-
export declare class
|
|
4477
|
-
|
|
4478
|
-
|
|
5702
|
+
export declare class ListOtaTaskRequest extends $dara.Model {
|
|
5703
|
+
/**
|
|
5704
|
+
* @remarks
|
|
5705
|
+
* The ID of the delivery group.
|
|
5706
|
+
*
|
|
5707
|
+
* This parameter is required.
|
|
5708
|
+
*
|
|
5709
|
+
* @example
|
|
5710
|
+
* aig-53fvrq1oanz6c****
|
|
5711
|
+
*/
|
|
5712
|
+
appInstanceGroupId?: string;
|
|
5713
|
+
/**
|
|
5714
|
+
* @remarks
|
|
5715
|
+
* The type of the OTA update task.
|
|
5716
|
+
*
|
|
5717
|
+
* Valid values:
|
|
5718
|
+
*
|
|
5719
|
+
* * Fota: update of the system components of Alibaba Cloud Workspace
|
|
5720
|
+
*
|
|
5721
|
+
* This parameter is required.
|
|
5722
|
+
*
|
|
5723
|
+
* @example
|
|
5724
|
+
* Fota
|
|
5725
|
+
*/
|
|
5726
|
+
otaType?: string;
|
|
5727
|
+
/**
|
|
5728
|
+
* @remarks
|
|
5729
|
+
* The page number of the page to return.
|
|
5730
|
+
*
|
|
5731
|
+
* This parameter is required.
|
|
5732
|
+
*
|
|
5733
|
+
* @example
|
|
5734
|
+
* 1
|
|
5735
|
+
*/
|
|
5736
|
+
pageNumber?: number;
|
|
5737
|
+
/**
|
|
5738
|
+
* @remarks
|
|
5739
|
+
* The number of entries to return on each page. Valid values: 1 to 100.
|
|
5740
|
+
*
|
|
5741
|
+
* This parameter is required.
|
|
5742
|
+
*
|
|
5743
|
+
* @example
|
|
5744
|
+
* 10
|
|
5745
|
+
*/
|
|
5746
|
+
pageSize?: number;
|
|
4479
5747
|
static names(): {
|
|
4480
5748
|
[key: string]: string;
|
|
4481
5749
|
};
|
|
@@ -4487,17 +5755,126 @@ export declare class ListRegionsRequest extends $dara.Model {
|
|
|
4487
5755
|
[key: string]: any;
|
|
4488
5756
|
});
|
|
4489
5757
|
}
|
|
4490
|
-
export declare class
|
|
4491
|
-
|
|
5758
|
+
export declare class ListOtaTaskResponseBody extends $dara.Model {
|
|
5759
|
+
/**
|
|
5760
|
+
* @remarks
|
|
5761
|
+
* The page number of the returned page.
|
|
5762
|
+
*
|
|
5763
|
+
* @example
|
|
5764
|
+
* 1
|
|
5765
|
+
*/
|
|
5766
|
+
pageNumber?: number;
|
|
5767
|
+
/**
|
|
5768
|
+
* @remarks
|
|
5769
|
+
* The number of entries on each page.
|
|
5770
|
+
*
|
|
5771
|
+
* @example
|
|
5772
|
+
* 10
|
|
5773
|
+
*/
|
|
5774
|
+
pageSize?: number;
|
|
5775
|
+
/**
|
|
5776
|
+
* @remarks
|
|
5777
|
+
* The request ID.
|
|
5778
|
+
*
|
|
5779
|
+
* @example
|
|
5780
|
+
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
5781
|
+
*/
|
|
4492
5782
|
requestId?: string;
|
|
4493
|
-
|
|
4494
|
-
|
|
4495
|
-
|
|
4496
|
-
|
|
4497
|
-
|
|
4498
|
-
|
|
4499
|
-
|
|
4500
|
-
|
|
5783
|
+
/**
|
|
5784
|
+
* @remarks
|
|
5785
|
+
* The OTA update tasks.
|
|
5786
|
+
*/
|
|
5787
|
+
taskList?: ListOtaTaskResponseBodyTaskList[];
|
|
5788
|
+
/**
|
|
5789
|
+
* @remarks
|
|
5790
|
+
* The total number of OTA update tasks.
|
|
5791
|
+
*
|
|
5792
|
+
* @example
|
|
5793
|
+
* 6
|
|
5794
|
+
*/
|
|
5795
|
+
totalCount?: number;
|
|
5796
|
+
static names(): {
|
|
5797
|
+
[key: string]: string;
|
|
5798
|
+
};
|
|
5799
|
+
static types(): {
|
|
5800
|
+
[key: string]: any;
|
|
5801
|
+
};
|
|
5802
|
+
validate(): void;
|
|
5803
|
+
constructor(map?: {
|
|
5804
|
+
[key: string]: any;
|
|
5805
|
+
});
|
|
5806
|
+
}
|
|
5807
|
+
export declare class ListOtaTaskResponse extends $dara.Model {
|
|
5808
|
+
headers?: {
|
|
5809
|
+
[key: string]: string;
|
|
5810
|
+
};
|
|
5811
|
+
statusCode?: number;
|
|
5812
|
+
body?: ListOtaTaskResponseBody;
|
|
5813
|
+
static names(): {
|
|
5814
|
+
[key: string]: string;
|
|
5815
|
+
};
|
|
5816
|
+
static types(): {
|
|
5817
|
+
[key: string]: any;
|
|
5818
|
+
};
|
|
5819
|
+
validate(): void;
|
|
5820
|
+
constructor(map?: {
|
|
5821
|
+
[key: string]: any;
|
|
5822
|
+
});
|
|
5823
|
+
}
|
|
5824
|
+
export declare class ListRegionsRequest extends $dara.Model {
|
|
5825
|
+
/**
|
|
5826
|
+
* @remarks
|
|
5827
|
+
* > This parameter is not publicly available.
|
|
5828
|
+
*
|
|
5829
|
+
* @example
|
|
5830
|
+
* null
|
|
5831
|
+
*/
|
|
5832
|
+
bizSource?: string;
|
|
5833
|
+
/**
|
|
5834
|
+
* @remarks
|
|
5835
|
+
* The product type.
|
|
5836
|
+
*
|
|
5837
|
+
* Valid value:
|
|
5838
|
+
*
|
|
5839
|
+
* * CloudApp: App Streaming
|
|
5840
|
+
*
|
|
5841
|
+
* @example
|
|
5842
|
+
* CloudApp
|
|
5843
|
+
*/
|
|
5844
|
+
productType?: string;
|
|
5845
|
+
static names(): {
|
|
5846
|
+
[key: string]: string;
|
|
5847
|
+
};
|
|
5848
|
+
static types(): {
|
|
5849
|
+
[key: string]: any;
|
|
5850
|
+
};
|
|
5851
|
+
validate(): void;
|
|
5852
|
+
constructor(map?: {
|
|
5853
|
+
[key: string]: any;
|
|
5854
|
+
});
|
|
5855
|
+
}
|
|
5856
|
+
export declare class ListRegionsResponseBody extends $dara.Model {
|
|
5857
|
+
/**
|
|
5858
|
+
* @remarks
|
|
5859
|
+
* The region IDs.
|
|
5860
|
+
*/
|
|
5861
|
+
regionModels?: ListRegionsResponseBodyRegionModels[];
|
|
5862
|
+
/**
|
|
5863
|
+
* @remarks
|
|
5864
|
+
* The request ID.
|
|
5865
|
+
*
|
|
5866
|
+
* @example
|
|
5867
|
+
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
5868
|
+
*/
|
|
5869
|
+
requestId?: string;
|
|
5870
|
+
static names(): {
|
|
5871
|
+
[key: string]: string;
|
|
5872
|
+
};
|
|
5873
|
+
static types(): {
|
|
5874
|
+
[key: string]: any;
|
|
5875
|
+
};
|
|
5876
|
+
validate(): void;
|
|
5877
|
+
constructor(map?: {
|
|
4501
5878
|
[key: string]: any;
|
|
4502
5879
|
});
|
|
4503
5880
|
}
|
|
@@ -4607,12 +5984,147 @@ export declare class ListSessionPackagesResponse extends $dara.Model {
|
|
|
4607
5984
|
[key: string]: any;
|
|
4608
5985
|
});
|
|
4609
5986
|
}
|
|
5987
|
+
export declare class ListTagCloudResourcesRequest extends $dara.Model {
|
|
5988
|
+
/**
|
|
5989
|
+
* @remarks
|
|
5990
|
+
* The number of entries per page. Maximum value: 1000. Default value: 50.
|
|
5991
|
+
*
|
|
5992
|
+
* @example
|
|
5993
|
+
* 50
|
|
5994
|
+
*
|
|
5995
|
+
* **if can be null:**
|
|
5996
|
+
* true
|
|
5997
|
+
*/
|
|
5998
|
+
maxResults?: number;
|
|
5999
|
+
/**
|
|
6000
|
+
* @remarks
|
|
6001
|
+
* The pagination token that is used in the next request to retrieve a new page of results.
|
|
6002
|
+
*
|
|
6003
|
+
* @example
|
|
6004
|
+
* ptnJAAAAAAAxNzE5OTEwNQ==
|
|
6005
|
+
*/
|
|
6006
|
+
nextToken?: string;
|
|
6007
|
+
/**
|
|
6008
|
+
* @remarks
|
|
6009
|
+
* The resource IDs. You can specify up to 50 resource IDs. You do not need to specify this parameter if you set ResourceType to AliUid.
|
|
6010
|
+
*/
|
|
6011
|
+
resourceIds?: string[];
|
|
6012
|
+
/**
|
|
6013
|
+
* @remarks
|
|
6014
|
+
* The type of the cloud resource.
|
|
6015
|
+
*
|
|
6016
|
+
* Valid values:
|
|
6017
|
+
*
|
|
6018
|
+
* * AppId: app ID.
|
|
6019
|
+
* * WyId: Alibaba Cloud Workspace user ID.
|
|
6020
|
+
* * AppInstanceGroupId: delivery group ID.
|
|
6021
|
+
* * AliUid: tenant ID.
|
|
6022
|
+
*
|
|
6023
|
+
* This parameter is required.
|
|
6024
|
+
*
|
|
6025
|
+
* @example
|
|
6026
|
+
* AppInstanceGroupId
|
|
6027
|
+
*/
|
|
6028
|
+
resourceType?: string;
|
|
6029
|
+
/**
|
|
6030
|
+
* @remarks
|
|
6031
|
+
* The tag type.
|
|
6032
|
+
*
|
|
6033
|
+
* Valid values:
|
|
6034
|
+
*
|
|
6035
|
+
* * All (default): all tags.
|
|
6036
|
+
* * Custom: custom tag.
|
|
6037
|
+
* * System: system tag.
|
|
6038
|
+
*
|
|
6039
|
+
* @example
|
|
6040
|
+
* Custom
|
|
6041
|
+
*
|
|
6042
|
+
* **if can be null:**
|
|
6043
|
+
* true
|
|
6044
|
+
*/
|
|
6045
|
+
scope?: string;
|
|
6046
|
+
static names(): {
|
|
6047
|
+
[key: string]: string;
|
|
6048
|
+
};
|
|
6049
|
+
static types(): {
|
|
6050
|
+
[key: string]: any;
|
|
6051
|
+
};
|
|
6052
|
+
validate(): void;
|
|
6053
|
+
constructor(map?: {
|
|
6054
|
+
[key: string]: any;
|
|
6055
|
+
});
|
|
6056
|
+
}
|
|
6057
|
+
export declare class ListTagCloudResourcesResponseBody extends $dara.Model {
|
|
6058
|
+
/**
|
|
6059
|
+
* @remarks
|
|
6060
|
+
* Indicates whether the next query is required.
|
|
6061
|
+
*
|
|
6062
|
+
* @example
|
|
6063
|
+
* AAAAAYRHtOLVQzCYj17y+OP7LZRrUJaF4rnBGQkWwMiVHlLZBB1w3Us37CVvhvyM0TXavA==
|
|
6064
|
+
*/
|
|
6065
|
+
nextToken?: string;
|
|
6066
|
+
/**
|
|
6067
|
+
* @remarks
|
|
6068
|
+
* The request ID.
|
|
6069
|
+
*
|
|
6070
|
+
* @example
|
|
6071
|
+
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
6072
|
+
*/
|
|
6073
|
+
requestId?: string;
|
|
6074
|
+
/**
|
|
6075
|
+
* @remarks
|
|
6076
|
+
* The tags added to the cloud resources.
|
|
6077
|
+
*/
|
|
6078
|
+
resourceTags?: ListTagCloudResourcesResponseBodyResourceTags[];
|
|
6079
|
+
/**
|
|
6080
|
+
* @remarks
|
|
6081
|
+
* The total number of entries.
|
|
6082
|
+
*
|
|
6083
|
+
* @example
|
|
6084
|
+
* 15
|
|
6085
|
+
*/
|
|
6086
|
+
totalCount?: number;
|
|
6087
|
+
static names(): {
|
|
6088
|
+
[key: string]: string;
|
|
6089
|
+
};
|
|
6090
|
+
static types(): {
|
|
6091
|
+
[key: string]: any;
|
|
6092
|
+
};
|
|
6093
|
+
validate(): void;
|
|
6094
|
+
constructor(map?: {
|
|
6095
|
+
[key: string]: any;
|
|
6096
|
+
});
|
|
6097
|
+
}
|
|
6098
|
+
export declare class ListTagCloudResourcesResponse extends $dara.Model {
|
|
6099
|
+
headers?: {
|
|
6100
|
+
[key: string]: string;
|
|
6101
|
+
};
|
|
6102
|
+
statusCode?: number;
|
|
6103
|
+
body?: ListTagCloudResourcesResponseBody;
|
|
6104
|
+
static names(): {
|
|
6105
|
+
[key: string]: string;
|
|
6106
|
+
};
|
|
6107
|
+
static types(): {
|
|
6108
|
+
[key: string]: any;
|
|
6109
|
+
};
|
|
6110
|
+
validate(): void;
|
|
6111
|
+
constructor(map?: {
|
|
6112
|
+
[key: string]: any;
|
|
6113
|
+
});
|
|
6114
|
+
}
|
|
4610
6115
|
export declare class ListTenantConfigResponseBody extends $dara.Model {
|
|
4611
6116
|
/**
|
|
6117
|
+
* @remarks
|
|
6118
|
+
* The request ID.
|
|
6119
|
+
*
|
|
4612
6120
|
* @example
|
|
4613
6121
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
4614
6122
|
*/
|
|
4615
6123
|
requestId?: string;
|
|
6124
|
+
/**
|
|
6125
|
+
* @remarks
|
|
6126
|
+
* The user configurations.
|
|
6127
|
+
*/
|
|
4616
6128
|
tenantConfigModel?: ListTenantConfigResponseBodyTenantConfigModel;
|
|
4617
6129
|
static names(): {
|
|
4618
6130
|
[key: string]: string;
|
|
@@ -4645,6 +6157,8 @@ export declare class ListTenantConfigResponse extends $dara.Model {
|
|
|
4645
6157
|
export declare class LogOffAllSessionsInAppInstanceGroupRequest extends $dara.Model {
|
|
4646
6158
|
/**
|
|
4647
6159
|
* @remarks
|
|
6160
|
+
* The ID of the delivery group.
|
|
6161
|
+
*
|
|
4648
6162
|
* This parameter is required.
|
|
4649
6163
|
*
|
|
4650
6164
|
* @example
|
|
@@ -4653,6 +6167,12 @@ export declare class LogOffAllSessionsInAppInstanceGroupRequest extends $dara.Mo
|
|
|
4653
6167
|
appInstanceGroupId?: string;
|
|
4654
6168
|
/**
|
|
4655
6169
|
* @remarks
|
|
6170
|
+
* The product type.
|
|
6171
|
+
*
|
|
6172
|
+
* Valid value:
|
|
6173
|
+
*
|
|
6174
|
+
* * CloudApp: App Streaming
|
|
6175
|
+
*
|
|
4656
6176
|
* This parameter is required.
|
|
4657
6177
|
*
|
|
4658
6178
|
* @example
|
|
@@ -4672,16 +6192,25 @@ export declare class LogOffAllSessionsInAppInstanceGroupRequest extends $dara.Mo
|
|
|
4672
6192
|
}
|
|
4673
6193
|
export declare class LogOffAllSessionsInAppInstanceGroupResponseBody extends $dara.Model {
|
|
4674
6194
|
/**
|
|
6195
|
+
* @remarks
|
|
6196
|
+
* The error code.
|
|
6197
|
+
*
|
|
4675
6198
|
* @example
|
|
4676
6199
|
* InvalidParameter.ProductType
|
|
4677
6200
|
*/
|
|
4678
6201
|
code?: string;
|
|
4679
6202
|
/**
|
|
6203
|
+
* @remarks
|
|
6204
|
+
* The error message.
|
|
6205
|
+
*
|
|
4680
6206
|
* @example
|
|
4681
6207
|
* The parameter ProductType is invalid.
|
|
4682
6208
|
*/
|
|
4683
6209
|
message?: string;
|
|
4684
6210
|
/**
|
|
6211
|
+
* @remarks
|
|
6212
|
+
* The request ID.
|
|
6213
|
+
*
|
|
4685
6214
|
* @example
|
|
4686
6215
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
4687
6216
|
*/
|
|
@@ -4717,32 +6246,98 @@ export declare class LogOffAllSessionsInAppInstanceGroupResponse extends $dara.M
|
|
|
4717
6246
|
export declare class ModifyAppInstanceGroupAttributeRequest extends $dara.Model {
|
|
4718
6247
|
/**
|
|
4719
6248
|
* @remarks
|
|
6249
|
+
* The ID of the delivery group.
|
|
6250
|
+
*
|
|
4720
6251
|
* This parameter is required.
|
|
4721
6252
|
*
|
|
4722
6253
|
* @example
|
|
4723
6254
|
* aig-9ciijz60n4xsv****
|
|
4724
6255
|
*/
|
|
4725
6256
|
appInstanceGroupId?: string;
|
|
6257
|
+
/**
|
|
6258
|
+
* @remarks
|
|
6259
|
+
* The name of the delivery group.
|
|
6260
|
+
*/
|
|
4726
6261
|
appInstanceGroupName?: string;
|
|
6262
|
+
/**
|
|
6263
|
+
* @remarks
|
|
6264
|
+
* The network settings.
|
|
6265
|
+
*
|
|
6266
|
+
* > If you want to use this parameter, submit a ticket.
|
|
6267
|
+
*/
|
|
4727
6268
|
network?: ModifyAppInstanceGroupAttributeRequestNetwork;
|
|
6269
|
+
/**
|
|
6270
|
+
* @remarks
|
|
6271
|
+
* The information about the resource group.
|
|
6272
|
+
*/
|
|
4728
6273
|
nodePool?: ModifyAppInstanceGroupAttributeRequestNodePool;
|
|
6274
|
+
/**
|
|
6275
|
+
* @remarks
|
|
6276
|
+
* Specifies whether only one application can be opened in a session.
|
|
6277
|
+
*
|
|
6278
|
+
* * After you enable this feature, the system assigns a session to each application if you open multiple applications in a delivery group. This consumes a larger number of sessions.
|
|
6279
|
+
*
|
|
6280
|
+
* Valid values:
|
|
6281
|
+
*
|
|
6282
|
+
* * true
|
|
6283
|
+
* * false
|
|
6284
|
+
*
|
|
6285
|
+
* @example
|
|
6286
|
+
* false
|
|
6287
|
+
*/
|
|
4729
6288
|
perSessionPerApp?: boolean;
|
|
6289
|
+
/**
|
|
6290
|
+
* @remarks
|
|
6291
|
+
* The application ID of the pre-open application. If you set `PreOpenMode` to `SINGLE_APP`, you cannot leave this parameter empty.``
|
|
6292
|
+
*
|
|
6293
|
+
* @example
|
|
6294
|
+
* ca-b2ronxxd****
|
|
6295
|
+
*/
|
|
4730
6296
|
preOpenAppId?: string;
|
|
6297
|
+
/**
|
|
6298
|
+
* @remarks
|
|
6299
|
+
* The pre-open mode.
|
|
6300
|
+
*
|
|
6301
|
+
* Valid values:
|
|
6302
|
+
*
|
|
6303
|
+
* * SINGLE_APP: enables the pre-open mode for a single application.
|
|
6304
|
+
* * OFF: disables the pre-open mode. This is the default value.
|
|
6305
|
+
*
|
|
6306
|
+
* @example
|
|
6307
|
+
* OFF
|
|
6308
|
+
*/
|
|
4731
6309
|
preOpenMode?: string;
|
|
4732
6310
|
/**
|
|
4733
6311
|
* @remarks
|
|
6312
|
+
* The product type.
|
|
6313
|
+
*
|
|
6314
|
+
* Valid value:
|
|
6315
|
+
*
|
|
6316
|
+
* * CloudApp: App Streaming
|
|
6317
|
+
*
|
|
4734
6318
|
* This parameter is required.
|
|
4735
6319
|
*
|
|
4736
6320
|
* @example
|
|
4737
6321
|
* CloudApp
|
|
4738
6322
|
*/
|
|
4739
6323
|
productType?: string;
|
|
6324
|
+
/**
|
|
6325
|
+
* @remarks
|
|
6326
|
+
* The security policy.
|
|
6327
|
+
*/
|
|
4740
6328
|
securityPolicy?: ModifyAppInstanceGroupAttributeRequestSecurityPolicy;
|
|
4741
6329
|
/**
|
|
6330
|
+
* @remarks
|
|
6331
|
+
* The duration for which sessions are retained after disconnection. Unit: minutes. After an end user disconnects from a session, the session is closed only after the specified duration elapses. If you want to permanently retain sessions, set this parameter to `-1`. Valid values:-1 and 3 to 300. Default value: `15`.
|
|
6332
|
+
*
|
|
4742
6333
|
* @example
|
|
4743
6334
|
* 15
|
|
4744
6335
|
*/
|
|
4745
6336
|
sessionTimeout?: number;
|
|
6337
|
+
/**
|
|
6338
|
+
* @remarks
|
|
6339
|
+
* The storage policy.
|
|
6340
|
+
*/
|
|
4746
6341
|
storagePolicy?: ModifyAppInstanceGroupAttributeRequestStoragePolicy;
|
|
4747
6342
|
static names(): {
|
|
4748
6343
|
[key: string]: string;
|
|
@@ -4758,32 +6353,98 @@ export declare class ModifyAppInstanceGroupAttributeRequest extends $dara.Model
|
|
|
4758
6353
|
export declare class ModifyAppInstanceGroupAttributeShrinkRequest extends $dara.Model {
|
|
4759
6354
|
/**
|
|
4760
6355
|
* @remarks
|
|
6356
|
+
* The ID of the delivery group.
|
|
6357
|
+
*
|
|
4761
6358
|
* This parameter is required.
|
|
4762
6359
|
*
|
|
4763
6360
|
* @example
|
|
4764
6361
|
* aig-9ciijz60n4xsv****
|
|
4765
6362
|
*/
|
|
4766
6363
|
appInstanceGroupId?: string;
|
|
6364
|
+
/**
|
|
6365
|
+
* @remarks
|
|
6366
|
+
* The name of the delivery group.
|
|
6367
|
+
*/
|
|
4767
6368
|
appInstanceGroupName?: string;
|
|
6369
|
+
/**
|
|
6370
|
+
* @remarks
|
|
6371
|
+
* The network settings.
|
|
6372
|
+
*
|
|
6373
|
+
* > If you want to use this parameter, submit a ticket.
|
|
6374
|
+
*/
|
|
4768
6375
|
networkShrink?: string;
|
|
6376
|
+
/**
|
|
6377
|
+
* @remarks
|
|
6378
|
+
* The information about the resource group.
|
|
6379
|
+
*/
|
|
4769
6380
|
nodePoolShrink?: string;
|
|
6381
|
+
/**
|
|
6382
|
+
* @remarks
|
|
6383
|
+
* Specifies whether only one application can be opened in a session.
|
|
6384
|
+
*
|
|
6385
|
+
* * After you enable this feature, the system assigns a session to each application if you open multiple applications in a delivery group. This consumes a larger number of sessions.
|
|
6386
|
+
*
|
|
6387
|
+
* Valid values:
|
|
6388
|
+
*
|
|
6389
|
+
* * true
|
|
6390
|
+
* * false
|
|
6391
|
+
*
|
|
6392
|
+
* @example
|
|
6393
|
+
* false
|
|
6394
|
+
*/
|
|
4770
6395
|
perSessionPerApp?: boolean;
|
|
6396
|
+
/**
|
|
6397
|
+
* @remarks
|
|
6398
|
+
* The application ID of the pre-open application. If you set `PreOpenMode` to `SINGLE_APP`, you cannot leave this parameter empty.``
|
|
6399
|
+
*
|
|
6400
|
+
* @example
|
|
6401
|
+
* ca-b2ronxxd****
|
|
6402
|
+
*/
|
|
4771
6403
|
preOpenAppId?: string;
|
|
6404
|
+
/**
|
|
6405
|
+
* @remarks
|
|
6406
|
+
* The pre-open mode.
|
|
6407
|
+
*
|
|
6408
|
+
* Valid values:
|
|
6409
|
+
*
|
|
6410
|
+
* * SINGLE_APP: enables the pre-open mode for a single application.
|
|
6411
|
+
* * OFF: disables the pre-open mode. This is the default value.
|
|
6412
|
+
*
|
|
6413
|
+
* @example
|
|
6414
|
+
* OFF
|
|
6415
|
+
*/
|
|
4772
6416
|
preOpenMode?: string;
|
|
4773
6417
|
/**
|
|
4774
6418
|
* @remarks
|
|
6419
|
+
* The product type.
|
|
6420
|
+
*
|
|
6421
|
+
* Valid value:
|
|
6422
|
+
*
|
|
6423
|
+
* * CloudApp: App Streaming
|
|
6424
|
+
*
|
|
4775
6425
|
* This parameter is required.
|
|
4776
6426
|
*
|
|
4777
6427
|
* @example
|
|
4778
6428
|
* CloudApp
|
|
4779
6429
|
*/
|
|
4780
6430
|
productType?: string;
|
|
6431
|
+
/**
|
|
6432
|
+
* @remarks
|
|
6433
|
+
* The security policy.
|
|
6434
|
+
*/
|
|
4781
6435
|
securityPolicyShrink?: string;
|
|
4782
6436
|
/**
|
|
6437
|
+
* @remarks
|
|
6438
|
+
* The duration for which sessions are retained after disconnection. Unit: minutes. After an end user disconnects from a session, the session is closed only after the specified duration elapses. If you want to permanently retain sessions, set this parameter to `-1`. Valid values:-1 and 3 to 300. Default value: `15`.
|
|
6439
|
+
*
|
|
4783
6440
|
* @example
|
|
4784
6441
|
* 15
|
|
4785
6442
|
*/
|
|
4786
6443
|
sessionTimeout?: number;
|
|
6444
|
+
/**
|
|
6445
|
+
* @remarks
|
|
6446
|
+
* The storage policy.
|
|
6447
|
+
*/
|
|
4787
6448
|
storagePolicyShrink?: string;
|
|
4788
6449
|
static names(): {
|
|
4789
6450
|
[key: string]: string;
|
|
@@ -4798,16 +6459,25 @@ export declare class ModifyAppInstanceGroupAttributeShrinkRequest extends $dara.
|
|
|
4798
6459
|
}
|
|
4799
6460
|
export declare class ModifyAppInstanceGroupAttributeResponseBody extends $dara.Model {
|
|
4800
6461
|
/**
|
|
6462
|
+
* @remarks
|
|
6463
|
+
* The error code.
|
|
6464
|
+
*
|
|
4801
6465
|
* @example
|
|
4802
6466
|
* InvalidParameter.ProductType
|
|
4803
6467
|
*/
|
|
4804
6468
|
code?: string;
|
|
4805
6469
|
/**
|
|
6470
|
+
* @remarks
|
|
6471
|
+
* The error message.
|
|
6472
|
+
*
|
|
4806
6473
|
* @example
|
|
4807
6474
|
* The parameter ProductType is invalid.
|
|
4808
6475
|
*/
|
|
4809
6476
|
message?: string;
|
|
4810
6477
|
/**
|
|
6478
|
+
* @remarks
|
|
6479
|
+
* The request ID.
|
|
6480
|
+
*
|
|
4811
6481
|
* @example
|
|
4812
6482
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
4813
6483
|
*/
|
|
@@ -4932,6 +6602,107 @@ export declare class ModifyAppPolicyResponse extends $dara.Model {
|
|
|
4932
6602
|
[key: string]: any;
|
|
4933
6603
|
});
|
|
4934
6604
|
}
|
|
6605
|
+
export declare class ModifyNodePoolAmountRequest extends $dara.Model {
|
|
6606
|
+
/**
|
|
6607
|
+
* @remarks
|
|
6608
|
+
* This parameter is required.
|
|
6609
|
+
*
|
|
6610
|
+
* @example
|
|
6611
|
+
* aig-9ciijz60n4xsv****
|
|
6612
|
+
*/
|
|
6613
|
+
appInstanceGroupId?: string;
|
|
6614
|
+
/**
|
|
6615
|
+
* @remarks
|
|
6616
|
+
* This parameter is required.
|
|
6617
|
+
*/
|
|
6618
|
+
nodePool?: ModifyNodePoolAmountRequestNodePool;
|
|
6619
|
+
/**
|
|
6620
|
+
* @remarks
|
|
6621
|
+
* This parameter is required.
|
|
6622
|
+
*
|
|
6623
|
+
* @example
|
|
6624
|
+
* CloudApp
|
|
6625
|
+
*/
|
|
6626
|
+
productType?: string;
|
|
6627
|
+
static names(): {
|
|
6628
|
+
[key: string]: string;
|
|
6629
|
+
};
|
|
6630
|
+
static types(): {
|
|
6631
|
+
[key: string]: any;
|
|
6632
|
+
};
|
|
6633
|
+
validate(): void;
|
|
6634
|
+
constructor(map?: {
|
|
6635
|
+
[key: string]: any;
|
|
6636
|
+
});
|
|
6637
|
+
}
|
|
6638
|
+
export declare class ModifyNodePoolAmountShrinkRequest extends $dara.Model {
|
|
6639
|
+
/**
|
|
6640
|
+
* @remarks
|
|
6641
|
+
* This parameter is required.
|
|
6642
|
+
*
|
|
6643
|
+
* @example
|
|
6644
|
+
* aig-9ciijz60n4xsv****
|
|
6645
|
+
*/
|
|
6646
|
+
appInstanceGroupId?: string;
|
|
6647
|
+
/**
|
|
6648
|
+
* @remarks
|
|
6649
|
+
* This parameter is required.
|
|
6650
|
+
*/
|
|
6651
|
+
nodePoolShrink?: string;
|
|
6652
|
+
/**
|
|
6653
|
+
* @remarks
|
|
6654
|
+
* This parameter is required.
|
|
6655
|
+
*
|
|
6656
|
+
* @example
|
|
6657
|
+
* CloudApp
|
|
6658
|
+
*/
|
|
6659
|
+
productType?: string;
|
|
6660
|
+
static names(): {
|
|
6661
|
+
[key: string]: string;
|
|
6662
|
+
};
|
|
6663
|
+
static types(): {
|
|
6664
|
+
[key: string]: any;
|
|
6665
|
+
};
|
|
6666
|
+
validate(): void;
|
|
6667
|
+
constructor(map?: {
|
|
6668
|
+
[key: string]: any;
|
|
6669
|
+
});
|
|
6670
|
+
}
|
|
6671
|
+
export declare class ModifyNodePoolAmountResponseBody extends $dara.Model {
|
|
6672
|
+
data?: ModifyNodePoolAmountResponseBodyData;
|
|
6673
|
+
/**
|
|
6674
|
+
* @example
|
|
6675
|
+
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
6676
|
+
*/
|
|
6677
|
+
requestId?: string;
|
|
6678
|
+
static names(): {
|
|
6679
|
+
[key: string]: string;
|
|
6680
|
+
};
|
|
6681
|
+
static types(): {
|
|
6682
|
+
[key: string]: any;
|
|
6683
|
+
};
|
|
6684
|
+
validate(): void;
|
|
6685
|
+
constructor(map?: {
|
|
6686
|
+
[key: string]: any;
|
|
6687
|
+
});
|
|
6688
|
+
}
|
|
6689
|
+
export declare class ModifyNodePoolAmountResponse extends $dara.Model {
|
|
6690
|
+
headers?: {
|
|
6691
|
+
[key: string]: string;
|
|
6692
|
+
};
|
|
6693
|
+
statusCode?: number;
|
|
6694
|
+
body?: ModifyNodePoolAmountResponseBody;
|
|
6695
|
+
static names(): {
|
|
6696
|
+
[key: string]: string;
|
|
6697
|
+
};
|
|
6698
|
+
static types(): {
|
|
6699
|
+
[key: string]: any;
|
|
6700
|
+
};
|
|
6701
|
+
validate(): void;
|
|
6702
|
+
constructor(map?: {
|
|
6703
|
+
[key: string]: any;
|
|
6704
|
+
});
|
|
6705
|
+
}
|
|
4935
6706
|
export declare class ModifyNodePoolAttributeRequest extends $dara.Model {
|
|
4936
6707
|
/**
|
|
4937
6708
|
* @example
|
|
@@ -5050,6 +6821,14 @@ export declare class ModifyNodePoolAttributeResponse extends $dara.Model {
|
|
|
5050
6821
|
}
|
|
5051
6822
|
export declare class ModifyTenantConfigRequest extends $dara.Model {
|
|
5052
6823
|
/**
|
|
6824
|
+
* @remarks
|
|
6825
|
+
* Specifies whether to enable the resource expiration reminder feature.
|
|
6826
|
+
*
|
|
6827
|
+
* Valid values:
|
|
6828
|
+
*
|
|
6829
|
+
* * true
|
|
6830
|
+
* * false
|
|
6831
|
+
*
|
|
5053
6832
|
* @example
|
|
5054
6833
|
* true
|
|
5055
6834
|
*/
|
|
@@ -5067,6 +6846,9 @@ export declare class ModifyTenantConfigRequest extends $dara.Model {
|
|
|
5067
6846
|
}
|
|
5068
6847
|
export declare class ModifyTenantConfigResponseBody extends $dara.Model {
|
|
5069
6848
|
/**
|
|
6849
|
+
* @remarks
|
|
6850
|
+
* The request ID.
|
|
6851
|
+
*
|
|
5070
6852
|
* @example
|
|
5071
6853
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
5072
6854
|
*/
|
|
@@ -5102,6 +6884,8 @@ export declare class ModifyTenantConfigResponse extends $dara.Model {
|
|
|
5102
6884
|
export declare class PageListAppInstanceGroupUserRequest extends $dara.Model {
|
|
5103
6885
|
/**
|
|
5104
6886
|
* @remarks
|
|
6887
|
+
* The ID of the delivery group.
|
|
6888
|
+
*
|
|
5105
6889
|
* This parameter is required.
|
|
5106
6890
|
*
|
|
5107
6891
|
* @example
|
|
@@ -5109,17 +6893,29 @@ export declare class PageListAppInstanceGroupUserRequest extends $dara.Model {
|
|
|
5109
6893
|
*/
|
|
5110
6894
|
appInstanceGroupId?: string;
|
|
5111
6895
|
/**
|
|
6896
|
+
* @remarks
|
|
6897
|
+
* The number of the page to return. We recommend that you configure this parameter.
|
|
6898
|
+
*
|
|
5112
6899
|
* @example
|
|
5113
6900
|
* 1
|
|
5114
6901
|
*/
|
|
5115
6902
|
pageNumber?: number;
|
|
5116
6903
|
/**
|
|
6904
|
+
* @remarks
|
|
6905
|
+
* The number of entries to be return on each page. The value cannot be greater than `100`. We recommend that you configure this parameter.
|
|
6906
|
+
*
|
|
5117
6907
|
* @example
|
|
5118
6908
|
* 10
|
|
5119
6909
|
*/
|
|
5120
6910
|
pageSize?: number;
|
|
5121
6911
|
/**
|
|
5122
6912
|
* @remarks
|
|
6913
|
+
* The product type.
|
|
6914
|
+
*
|
|
6915
|
+
* Valid value:
|
|
6916
|
+
*
|
|
6917
|
+
* * CloudApp: App Streaming
|
|
6918
|
+
*
|
|
5123
6919
|
* This parameter is required.
|
|
5124
6920
|
*
|
|
5125
6921
|
* @example
|
|
@@ -5139,10 +6935,17 @@ export declare class PageListAppInstanceGroupUserRequest extends $dara.Model {
|
|
|
5139
6935
|
}
|
|
5140
6936
|
export declare class PageListAppInstanceGroupUserResponseBody extends $dara.Model {
|
|
5141
6937
|
/**
|
|
6938
|
+
* @remarks
|
|
6939
|
+
* The request ID.
|
|
6940
|
+
*
|
|
5142
6941
|
* @example
|
|
5143
6942
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
5144
6943
|
*/
|
|
5145
6944
|
requestId?: string;
|
|
6945
|
+
/**
|
|
6946
|
+
* @remarks
|
|
6947
|
+
* The users.
|
|
6948
|
+
*/
|
|
5146
6949
|
users?: string[];
|
|
5147
6950
|
static names(): {
|
|
5148
6951
|
[key: string]: string;
|
|
@@ -5175,6 +6978,8 @@ export declare class PageListAppInstanceGroupUserResponse extends $dara.Model {
|
|
|
5175
6978
|
export declare class RenewAppInstanceGroupRequest extends $dara.Model {
|
|
5176
6979
|
/**
|
|
5177
6980
|
* @remarks
|
|
6981
|
+
* The ID of the delivery group.
|
|
6982
|
+
*
|
|
5178
6983
|
* This parameter is required.
|
|
5179
6984
|
*
|
|
5180
6985
|
* @example
|
|
@@ -5182,12 +6987,22 @@ export declare class RenewAppInstanceGroupRequest extends $dara.Model {
|
|
|
5182
6987
|
*/
|
|
5183
6988
|
appInstanceGroupId?: string;
|
|
5184
6989
|
/**
|
|
6990
|
+
* @remarks
|
|
6991
|
+
* Specifies whether to enable automatic payment.
|
|
6992
|
+
*
|
|
6993
|
+
* Valid values:
|
|
6994
|
+
*
|
|
6995
|
+
* * true
|
|
6996
|
+
* * false: manual payment. This is the default value.
|
|
6997
|
+
*
|
|
5185
6998
|
* @example
|
|
5186
6999
|
* false
|
|
5187
7000
|
*/
|
|
5188
7001
|
autoPay?: boolean;
|
|
5189
7002
|
/**
|
|
5190
7003
|
* @remarks
|
|
7004
|
+
* The subscription duration of resources. This parameter must be configured together with `PeriodUnit`.
|
|
7005
|
+
*
|
|
5191
7006
|
* This parameter is required.
|
|
5192
7007
|
*
|
|
5193
7008
|
* @example
|
|
@@ -5196,11 +7011,33 @@ export declare class RenewAppInstanceGroupRequest extends $dara.Model {
|
|
|
5196
7011
|
period?: number;
|
|
5197
7012
|
/**
|
|
5198
7013
|
* @remarks
|
|
7014
|
+
* The unit of the subscription duration. This parameter must be configured together with `Period`. The following items describe valid values for the combinations of `Period` and `PeriodUnit`:
|
|
7015
|
+
*
|
|
7016
|
+
* * 1 Week
|
|
7017
|
+
* * 1 Month
|
|
7018
|
+
* * 2 Month
|
|
7019
|
+
* * 3 Month
|
|
7020
|
+
* * 6 Month
|
|
7021
|
+
* * 1 Year
|
|
7022
|
+
* * 2 Year
|
|
7023
|
+
* * 3 Year
|
|
7024
|
+
*
|
|
7025
|
+
* > The value of this parameter is case-insensitive. For example, `Week` is valid and `week` is invalid. If you specify a value combination other than the preceding combinations, such as `2 Week`, the operation can still be called. However, an error occurs when you place the order.
|
|
7026
|
+
*
|
|
5199
7027
|
* This parameter is required.
|
|
7028
|
+
*
|
|
7029
|
+
* @example
|
|
7030
|
+
* Week
|
|
5200
7031
|
*/
|
|
5201
7032
|
periodUnit?: string;
|
|
5202
7033
|
/**
|
|
5203
7034
|
* @remarks
|
|
7035
|
+
* The product type.
|
|
7036
|
+
*
|
|
7037
|
+
* Valid value:
|
|
7038
|
+
*
|
|
7039
|
+
* * CloudApp: App Streaming
|
|
7040
|
+
*
|
|
5204
7041
|
* This parameter is required.
|
|
5205
7042
|
*
|
|
5206
7043
|
* @example
|
|
@@ -5208,6 +7045,9 @@ export declare class RenewAppInstanceGroupRequest extends $dara.Model {
|
|
|
5208
7045
|
*/
|
|
5209
7046
|
productType?: string;
|
|
5210
7047
|
/**
|
|
7048
|
+
* @remarks
|
|
7049
|
+
* The promotion ID. You can call the [GetResourcePrice](https://help.aliyun.com/document_detail/428503.html) operation to obtain the ID.
|
|
7050
|
+
*
|
|
5211
7051
|
* @example
|
|
5212
7052
|
* 17440009****
|
|
5213
7053
|
*/
|
|
@@ -5225,21 +7065,33 @@ export declare class RenewAppInstanceGroupRequest extends $dara.Model {
|
|
|
5225
7065
|
}
|
|
5226
7066
|
export declare class RenewAppInstanceGroupResponseBody extends $dara.Model {
|
|
5227
7067
|
/**
|
|
7068
|
+
* @remarks
|
|
7069
|
+
* The error code.
|
|
7070
|
+
*
|
|
5228
7071
|
* @example
|
|
5229
7072
|
* InvalidParameter.ProductType
|
|
5230
7073
|
*/
|
|
5231
7074
|
code?: string;
|
|
5232
7075
|
/**
|
|
7076
|
+
* @remarks
|
|
7077
|
+
* The error message.
|
|
7078
|
+
*
|
|
5233
7079
|
* @example
|
|
5234
7080
|
* The parameter ProductType is invalid.
|
|
5235
7081
|
*/
|
|
5236
7082
|
message?: string;
|
|
5237
7083
|
/**
|
|
7084
|
+
* @remarks
|
|
7085
|
+
* The order ID.
|
|
7086
|
+
*
|
|
5238
7087
|
* @example
|
|
5239
7088
|
* 123456****
|
|
5240
7089
|
*/
|
|
5241
7090
|
orderId?: string;
|
|
5242
7091
|
/**
|
|
7092
|
+
* @remarks
|
|
7093
|
+
* The request ID.
|
|
7094
|
+
*
|
|
5243
7095
|
* @example
|
|
5244
7096
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
5245
7097
|
*/
|
|
@@ -5272,9 +7124,72 @@ export declare class RenewAppInstanceGroupResponse extends $dara.Model {
|
|
|
5272
7124
|
[key: string]: any;
|
|
5273
7125
|
});
|
|
5274
7126
|
}
|
|
7127
|
+
export declare class TagCloudResourcesRequest extends $dara.Model {
|
|
7128
|
+
resourceIds?: string[];
|
|
7129
|
+
/**
|
|
7130
|
+
* @remarks
|
|
7131
|
+
* This parameter is required.
|
|
7132
|
+
*
|
|
7133
|
+
* @example
|
|
7134
|
+
* AppInstanceGroupId
|
|
7135
|
+
*/
|
|
7136
|
+
resourceType?: string;
|
|
7137
|
+
/**
|
|
7138
|
+
* @remarks
|
|
7139
|
+
* This parameter is required.
|
|
7140
|
+
*/
|
|
7141
|
+
tags?: TagCloudResourcesRequestTags[];
|
|
7142
|
+
static names(): {
|
|
7143
|
+
[key: string]: string;
|
|
7144
|
+
};
|
|
7145
|
+
static types(): {
|
|
7146
|
+
[key: string]: any;
|
|
7147
|
+
};
|
|
7148
|
+
validate(): void;
|
|
7149
|
+
constructor(map?: {
|
|
7150
|
+
[key: string]: any;
|
|
7151
|
+
});
|
|
7152
|
+
}
|
|
7153
|
+
export declare class TagCloudResourcesResponseBody extends $dara.Model {
|
|
7154
|
+
failedResources?: TagCloudResourcesResponseBodyFailedResources[];
|
|
7155
|
+
/**
|
|
7156
|
+
* @example
|
|
7157
|
+
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
7158
|
+
*/
|
|
7159
|
+
requestId?: string;
|
|
7160
|
+
static names(): {
|
|
7161
|
+
[key: string]: string;
|
|
7162
|
+
};
|
|
7163
|
+
static types(): {
|
|
7164
|
+
[key: string]: any;
|
|
7165
|
+
};
|
|
7166
|
+
validate(): void;
|
|
7167
|
+
constructor(map?: {
|
|
7168
|
+
[key: string]: any;
|
|
7169
|
+
});
|
|
7170
|
+
}
|
|
7171
|
+
export declare class TagCloudResourcesResponse extends $dara.Model {
|
|
7172
|
+
headers?: {
|
|
7173
|
+
[key: string]: string;
|
|
7174
|
+
};
|
|
7175
|
+
statusCode?: number;
|
|
7176
|
+
body?: TagCloudResourcesResponseBody;
|
|
7177
|
+
static names(): {
|
|
7178
|
+
[key: string]: string;
|
|
7179
|
+
};
|
|
7180
|
+
static types(): {
|
|
7181
|
+
[key: string]: any;
|
|
7182
|
+
};
|
|
7183
|
+
validate(): void;
|
|
7184
|
+
constructor(map?: {
|
|
7185
|
+
[key: string]: any;
|
|
7186
|
+
});
|
|
7187
|
+
}
|
|
5275
7188
|
export declare class UnbindRequest extends $dara.Model {
|
|
5276
7189
|
/**
|
|
5277
7190
|
* @remarks
|
|
7191
|
+
* The ID of the delivery group. You can call the [GetConnectionTicket](~~GetConnectionTicket~~) operation to obtain the ID.
|
|
7192
|
+
*
|
|
5278
7193
|
* This parameter is required.
|
|
5279
7194
|
*
|
|
5280
7195
|
* @example
|
|
@@ -5282,13 +7197,25 @@ export declare class UnbindRequest extends $dara.Model {
|
|
|
5282
7197
|
*/
|
|
5283
7198
|
appInstanceGroupId?: string;
|
|
5284
7199
|
/**
|
|
7200
|
+
* @remarks
|
|
7201
|
+
* The session ID. You can call the [GetConnectionTicket](~~GetConnectionTicket~~) operation to obtain the ID.
|
|
7202
|
+
*
|
|
5285
7203
|
* @example
|
|
5286
7204
|
* ai-d297eyf83g5ni****
|
|
5287
7205
|
*/
|
|
5288
7206
|
appInstanceId?: string;
|
|
7207
|
+
/**
|
|
7208
|
+
* @remarks
|
|
7209
|
+
* The ID of the persistent session. You can call the [GetConnectionTicket](~~GetConnectionTicket~~) operation to obtain the ID.
|
|
7210
|
+
*
|
|
7211
|
+
* @example
|
|
7212
|
+
* p-0bxls9m3cl7s****
|
|
7213
|
+
*/
|
|
5289
7214
|
appInstancePersistentId?: string;
|
|
5290
7215
|
/**
|
|
5291
7216
|
* @remarks
|
|
7217
|
+
* The username.
|
|
7218
|
+
*
|
|
5292
7219
|
* This parameter is required.
|
|
5293
7220
|
*
|
|
5294
7221
|
* @example
|
|
@@ -5297,6 +7224,12 @@ export declare class UnbindRequest extends $dara.Model {
|
|
|
5297
7224
|
endUserId?: string;
|
|
5298
7225
|
/**
|
|
5299
7226
|
* @remarks
|
|
7227
|
+
* The product type.
|
|
7228
|
+
*
|
|
7229
|
+
* Valid value:
|
|
7230
|
+
*
|
|
7231
|
+
* * CloudApp: App Streaming
|
|
7232
|
+
*
|
|
5300
7233
|
* This parameter is required.
|
|
5301
7234
|
*
|
|
5302
7235
|
* @example
|
|
@@ -5316,6 +7249,9 @@ export declare class UnbindRequest extends $dara.Model {
|
|
|
5316
7249
|
}
|
|
5317
7250
|
export declare class UnbindResponseBody extends $dara.Model {
|
|
5318
7251
|
/**
|
|
7252
|
+
* @remarks
|
|
7253
|
+
* The request ID.
|
|
7254
|
+
*
|
|
5319
7255
|
* @example
|
|
5320
7256
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
5321
7257
|
*/
|
|
@@ -5348,9 +7284,99 @@ export declare class UnbindResponse extends $dara.Model {
|
|
|
5348
7284
|
[key: string]: any;
|
|
5349
7285
|
});
|
|
5350
7286
|
}
|
|
7287
|
+
export declare class UntagCloudResourcesRequest extends $dara.Model {
|
|
7288
|
+
/**
|
|
7289
|
+
* @remarks
|
|
7290
|
+
* The resource IDs. You can specify up to 50 resource IDs. You do not need to specify this parameter if you set ResourceType to AliUid.
|
|
7291
|
+
*/
|
|
7292
|
+
resourceIds?: string[];
|
|
7293
|
+
/**
|
|
7294
|
+
* @remarks
|
|
7295
|
+
* The type of the resource from which you want to remove tags.
|
|
7296
|
+
*
|
|
7297
|
+
* Valid values:
|
|
7298
|
+
*
|
|
7299
|
+
* * AppId: app ID.
|
|
7300
|
+
* * WyId: Alibaba Cloud Workspace user ID.
|
|
7301
|
+
* * AppInstanceGroupId: delivery group ID.
|
|
7302
|
+
* * AliUid: tenant ID.
|
|
7303
|
+
*
|
|
7304
|
+
* This parameter is required.
|
|
7305
|
+
*
|
|
7306
|
+
* @example
|
|
7307
|
+
* AppInstanceGroupId
|
|
7308
|
+
*/
|
|
7309
|
+
resourceType?: string;
|
|
7310
|
+
/**
|
|
7311
|
+
* @remarks
|
|
7312
|
+
* The tags that you want to remove from the cloud resources. System and custom tags are supported. You can specify up to 10 tags.
|
|
7313
|
+
*
|
|
7314
|
+
* Valid values for system tags:
|
|
7315
|
+
*
|
|
7316
|
+
* * `System/Scheduler/GRAYSCALE`: canary tags.
|
|
7317
|
+
* * `System/Scheduler/STOP_NEW_USER_CONNECTION`: tags used to stop new users bound to the delivery group from establishing a connection.
|
|
7318
|
+
*
|
|
7319
|
+
* This parameter is required.
|
|
7320
|
+
*/
|
|
7321
|
+
tagKeys?: string[];
|
|
7322
|
+
static names(): {
|
|
7323
|
+
[key: string]: string;
|
|
7324
|
+
};
|
|
7325
|
+
static types(): {
|
|
7326
|
+
[key: string]: any;
|
|
7327
|
+
};
|
|
7328
|
+
validate(): void;
|
|
7329
|
+
constructor(map?: {
|
|
7330
|
+
[key: string]: any;
|
|
7331
|
+
});
|
|
7332
|
+
}
|
|
7333
|
+
export declare class UntagCloudResourcesResponseBody extends $dara.Model {
|
|
7334
|
+
/**
|
|
7335
|
+
* @remarks
|
|
7336
|
+
* The cloud resources whose tags failed to be removed and the corresponding tags.
|
|
7337
|
+
*/
|
|
7338
|
+
failedResources?: UntagCloudResourcesResponseBodyFailedResources[];
|
|
7339
|
+
/**
|
|
7340
|
+
* @remarks
|
|
7341
|
+
* The request ID.
|
|
7342
|
+
*
|
|
7343
|
+
* @example
|
|
7344
|
+
* E25FC620-6B6F-12D2-A992-AD8727DC****
|
|
7345
|
+
*/
|
|
7346
|
+
requestId?: string;
|
|
7347
|
+
static names(): {
|
|
7348
|
+
[key: string]: string;
|
|
7349
|
+
};
|
|
7350
|
+
static types(): {
|
|
7351
|
+
[key: string]: any;
|
|
7352
|
+
};
|
|
7353
|
+
validate(): void;
|
|
7354
|
+
constructor(map?: {
|
|
7355
|
+
[key: string]: any;
|
|
7356
|
+
});
|
|
7357
|
+
}
|
|
7358
|
+
export declare class UntagCloudResourcesResponse extends $dara.Model {
|
|
7359
|
+
headers?: {
|
|
7360
|
+
[key: string]: string;
|
|
7361
|
+
};
|
|
7362
|
+
statusCode?: number;
|
|
7363
|
+
body?: UntagCloudResourcesResponseBody;
|
|
7364
|
+
static names(): {
|
|
7365
|
+
[key: string]: string;
|
|
7366
|
+
};
|
|
7367
|
+
static types(): {
|
|
7368
|
+
[key: string]: any;
|
|
7369
|
+
};
|
|
7370
|
+
validate(): void;
|
|
7371
|
+
constructor(map?: {
|
|
7372
|
+
[key: string]: any;
|
|
7373
|
+
});
|
|
7374
|
+
}
|
|
5351
7375
|
export declare class UpdateAppInstanceGroupImageRequest extends $dara.Model {
|
|
5352
7376
|
/**
|
|
5353
7377
|
* @remarks
|
|
7378
|
+
* The image ID of the application. You can obtain the ID from the Images page in the App Streaming console.
|
|
7379
|
+
*
|
|
5354
7380
|
* This parameter is required.
|
|
5355
7381
|
*
|
|
5356
7382
|
* @example
|
|
@@ -5359,6 +7385,8 @@ export declare class UpdateAppInstanceGroupImageRequest extends $dara.Model {
|
|
|
5359
7385
|
appCenterImageId?: string;
|
|
5360
7386
|
/**
|
|
5361
7387
|
* @remarks
|
|
7388
|
+
* The ID of the delivery group.
|
|
7389
|
+
*
|
|
5362
7390
|
* This parameter is required.
|
|
5363
7391
|
*
|
|
5364
7392
|
* @example
|
|
@@ -5367,6 +7395,13 @@ export declare class UpdateAppInstanceGroupImageRequest extends $dara.Model {
|
|
|
5367
7395
|
appInstanceGroupId?: string;
|
|
5368
7396
|
/**
|
|
5369
7397
|
* @remarks
|
|
7398
|
+
* The ID of the region where the delivery group resides. For information about the supported regions, see [Limits](https://help.aliyun.com/document_detail/426036.html).
|
|
7399
|
+
*
|
|
7400
|
+
* Valid values:
|
|
7401
|
+
*
|
|
7402
|
+
* * cn-shanghai: China (Shanghai).
|
|
7403
|
+
* * cn-hangzhou: China (Hangzhou)
|
|
7404
|
+
*
|
|
5370
7405
|
* This parameter is required.
|
|
5371
7406
|
*
|
|
5372
7407
|
* @example
|
|
@@ -5375,6 +7410,12 @@ export declare class UpdateAppInstanceGroupImageRequest extends $dara.Model {
|
|
|
5375
7410
|
bizRegionId?: string;
|
|
5376
7411
|
/**
|
|
5377
7412
|
* @remarks
|
|
7413
|
+
* The product type.
|
|
7414
|
+
*
|
|
7415
|
+
* Valid value:
|
|
7416
|
+
*
|
|
7417
|
+
* * CloudApp: App Streaming
|
|
7418
|
+
*
|
|
5378
7419
|
* This parameter is required.
|
|
5379
7420
|
*
|
|
5380
7421
|
* @example
|
|
@@ -5394,16 +7435,25 @@ export declare class UpdateAppInstanceGroupImageRequest extends $dara.Model {
|
|
|
5394
7435
|
}
|
|
5395
7436
|
export declare class UpdateAppInstanceGroupImageResponseBody extends $dara.Model {
|
|
5396
7437
|
/**
|
|
7438
|
+
* @remarks
|
|
7439
|
+
* The error code.
|
|
7440
|
+
*
|
|
5397
7441
|
* @example
|
|
5398
7442
|
* InvalidParameter.ProductType
|
|
5399
7443
|
*/
|
|
5400
7444
|
code?: string;
|
|
5401
7445
|
/**
|
|
7446
|
+
* @remarks
|
|
7447
|
+
* The error message.
|
|
7448
|
+
*
|
|
5402
7449
|
* @example
|
|
5403
7450
|
* The parameter ProductType is invalid.
|
|
5404
7451
|
*/
|
|
5405
7452
|
message?: string;
|
|
5406
7453
|
/**
|
|
7454
|
+
* @remarks
|
|
7455
|
+
* The request ID.
|
|
7456
|
+
*
|
|
5407
7457
|
* @example
|
|
5408
7458
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
5409
7459
|
*/
|
|
@@ -5457,7 +7507,7 @@ export default class Client extends OpenApi {
|
|
|
5457
7507
|
*/
|
|
5458
7508
|
accessPageSetAcl(request: AccessPageSetAclRequest): Promise<AccessPageSetAclResponse>;
|
|
5459
7509
|
/**
|
|
5460
|
-
*
|
|
7510
|
+
* Sets the execution time of an over-the-air (OTA) update task.
|
|
5461
7511
|
*
|
|
5462
7512
|
* @param request - ApproveOtaTaskRequest
|
|
5463
7513
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5465,7 +7515,7 @@ export default class Client extends OpenApi {
|
|
|
5465
7515
|
*/
|
|
5466
7516
|
approveOtaTaskWithOptions(request: ApproveOtaTaskRequest, runtime: $dara.RuntimeOptions): Promise<ApproveOtaTaskResponse>;
|
|
5467
7517
|
/**
|
|
5468
|
-
*
|
|
7518
|
+
* Sets the execution time of an over-the-air (OTA) update task.
|
|
5469
7519
|
*
|
|
5470
7520
|
* @param request - ApproveOtaTaskRequest
|
|
5471
7521
|
* @returns ApproveOtaTaskResponse
|
|
@@ -5547,7 +7597,7 @@ export default class Client extends OpenApi {
|
|
|
5547
7597
|
*/
|
|
5548
7598
|
createAppInstanceGroup(request: CreateAppInstanceGroupRequest): Promise<CreateAppInstanceGroupResponse>;
|
|
5549
7599
|
/**
|
|
5550
|
-
*
|
|
7600
|
+
* Creates a new image by debugging the delivery group.
|
|
5551
7601
|
*
|
|
5552
7602
|
* @param request - CreateImageFromAppInstanceGroupRequest
|
|
5553
7603
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5555,7 +7605,7 @@ export default class Client extends OpenApi {
|
|
|
5555
7605
|
*/
|
|
5556
7606
|
createImageFromAppInstanceGroupWithOptions(request: CreateImageFromAppInstanceGroupRequest, runtime: $dara.RuntimeOptions): Promise<CreateImageFromAppInstanceGroupResponse>;
|
|
5557
7607
|
/**
|
|
5558
|
-
*
|
|
7608
|
+
* Creates a new image by debugging the delivery group.
|
|
5559
7609
|
*
|
|
5560
7610
|
* @param request - CreateImageFromAppInstanceGroupRequest
|
|
5561
7611
|
* @returns CreateImageFromAppInstanceGroupResponse
|
|
@@ -5577,7 +7627,10 @@ export default class Client extends OpenApi {
|
|
|
5577
7627
|
*/
|
|
5578
7628
|
deleteAccessPage(request: DeleteAccessPageRequest): Promise<DeleteAccessPageResponse>;
|
|
5579
7629
|
/**
|
|
5580
|
-
*
|
|
7630
|
+
* Deletes a delivery group that uses the By Resource - Pay-as-you-go billing method.
|
|
7631
|
+
*
|
|
7632
|
+
* @remarks
|
|
7633
|
+
* > You cannot call this operation to delete a subscription delivery group.
|
|
5581
7634
|
*
|
|
5582
7635
|
* @param request - DeleteAppInstanceGroupRequest
|
|
5583
7636
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5585,14 +7638,20 @@ export default class Client extends OpenApi {
|
|
|
5585
7638
|
*/
|
|
5586
7639
|
deleteAppInstanceGroupWithOptions(request: DeleteAppInstanceGroupRequest, runtime: $dara.RuntimeOptions): Promise<DeleteAppInstanceGroupResponse>;
|
|
5587
7640
|
/**
|
|
5588
|
-
*
|
|
7641
|
+
* Deletes a delivery group that uses the By Resource - Pay-as-you-go billing method.
|
|
7642
|
+
*
|
|
7643
|
+
* @remarks
|
|
7644
|
+
* > You cannot call this operation to delete a subscription delivery group.
|
|
5589
7645
|
*
|
|
5590
7646
|
* @param request - DeleteAppInstanceGroupRequest
|
|
5591
7647
|
* @returns DeleteAppInstanceGroupResponse
|
|
5592
7648
|
*/
|
|
5593
7649
|
deleteAppInstanceGroup(request: DeleteAppInstanceGroupRequest): Promise<DeleteAppInstanceGroupResponse>;
|
|
5594
7650
|
/**
|
|
5595
|
-
*
|
|
7651
|
+
* Deletes an application instance.
|
|
7652
|
+
*
|
|
7653
|
+
* @remarks
|
|
7654
|
+
* Only application instances that are in the Initializing or Idle state can be deleted. The operation can be called only by specific customers.
|
|
5596
7655
|
*
|
|
5597
7656
|
* @param request - DeleteAppInstancesRequest
|
|
5598
7657
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5600,7 +7659,10 @@ export default class Client extends OpenApi {
|
|
|
5600
7659
|
*/
|
|
5601
7660
|
deleteAppInstancesWithOptions(request: DeleteAppInstancesRequest, runtime: $dara.RuntimeOptions): Promise<DeleteAppInstancesResponse>;
|
|
5602
7661
|
/**
|
|
5603
|
-
*
|
|
7662
|
+
* Deletes an application instance.
|
|
7663
|
+
*
|
|
7664
|
+
* @remarks
|
|
7665
|
+
* Only application instances that are in the Initializing or Idle state can be deleted. The operation can be called only by specific customers.
|
|
5604
7666
|
*
|
|
5605
7667
|
* @param request - DeleteAppInstancesRequest
|
|
5606
7668
|
* @returns DeleteAppInstancesResponse
|
|
@@ -5637,7 +7699,12 @@ export default class Client extends OpenApi {
|
|
|
5637
7699
|
*/
|
|
5638
7700
|
getAppInstanceGroup(request: GetAppInstanceGroupRequest): Promise<GetAppInstanceGroupResponse>;
|
|
5639
7701
|
/**
|
|
5640
|
-
*
|
|
7702
|
+
* Queries the credential that is used to connect to App Streaming.
|
|
7703
|
+
*
|
|
7704
|
+
* @remarks
|
|
7705
|
+
* You must call this operation at least twice to obtain a connection credential.
|
|
7706
|
+
* The first time you call this operation, the system assigns an application instance to the specified convenience account and then starts the application. In this case, the ID of the started task, which is indicated by `TaskID`, is returned.
|
|
7707
|
+
* In subsequent calls, you must configure `TaskID` to query whether the task is completed. If the value of `TaskStatus` in the response is `Finished`, the connection credential, which is indicated by `Ticket`, is returned.
|
|
5641
7708
|
*
|
|
5642
7709
|
* @param request - GetConnectionTicketRequest
|
|
5643
7710
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5645,14 +7712,19 @@ export default class Client extends OpenApi {
|
|
|
5645
7712
|
*/
|
|
5646
7713
|
getConnectionTicketWithOptions(request: GetConnectionTicketRequest, runtime: $dara.RuntimeOptions): Promise<GetConnectionTicketResponse>;
|
|
5647
7714
|
/**
|
|
5648
|
-
*
|
|
7715
|
+
* Queries the credential that is used to connect to App Streaming.
|
|
7716
|
+
*
|
|
7717
|
+
* @remarks
|
|
7718
|
+
* You must call this operation at least twice to obtain a connection credential.
|
|
7719
|
+
* The first time you call this operation, the system assigns an application instance to the specified convenience account and then starts the application. In this case, the ID of the started task, which is indicated by `TaskID`, is returned.
|
|
7720
|
+
* In subsequent calls, you must configure `TaskID` to query whether the task is completed. If the value of `TaskStatus` in the response is `Finished`, the connection credential, which is indicated by `Ticket`, is returned.
|
|
5649
7721
|
*
|
|
5650
7722
|
* @param request - GetConnectionTicketRequest
|
|
5651
7723
|
* @returns GetConnectionTicketResponse
|
|
5652
7724
|
*/
|
|
5653
7725
|
getConnectionTicket(request: GetConnectionTicketRequest): Promise<GetConnectionTicketResponse>;
|
|
5654
7726
|
/**
|
|
5655
|
-
*
|
|
7727
|
+
* Queries information that is used to debug an application instance.
|
|
5656
7728
|
*
|
|
5657
7729
|
* @param request - GetDebugAppInstanceRequest
|
|
5658
7730
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5660,14 +7732,14 @@ export default class Client extends OpenApi {
|
|
|
5660
7732
|
*/
|
|
5661
7733
|
getDebugAppInstanceWithOptions(request: GetDebugAppInstanceRequest, runtime: $dara.RuntimeOptions): Promise<GetDebugAppInstanceResponse>;
|
|
5662
7734
|
/**
|
|
5663
|
-
*
|
|
7735
|
+
* Queries information that is used to debug an application instance.
|
|
5664
7736
|
*
|
|
5665
7737
|
* @param request - GetDebugAppInstanceRequest
|
|
5666
7738
|
* @returns GetDebugAppInstanceResponse
|
|
5667
7739
|
*/
|
|
5668
7740
|
getDebugAppInstance(request: GetDebugAppInstanceRequest): Promise<GetDebugAppInstanceResponse>;
|
|
5669
7741
|
/**
|
|
5670
|
-
*
|
|
7742
|
+
* Queries the details of an over-the-air (OTA) update task, including the available versions and version description.
|
|
5671
7743
|
*
|
|
5672
7744
|
* @param request - GetOtaTaskByTaskIdRequest
|
|
5673
7745
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5675,14 +7747,14 @@ export default class Client extends OpenApi {
|
|
|
5675
7747
|
*/
|
|
5676
7748
|
getOtaTaskByTaskIdWithOptions(request: GetOtaTaskByTaskIdRequest, runtime: $dara.RuntimeOptions): Promise<GetOtaTaskByTaskIdResponse>;
|
|
5677
7749
|
/**
|
|
5678
|
-
*
|
|
7750
|
+
* Queries the details of an over-the-air (OTA) update task, including the available versions and version description.
|
|
5679
7751
|
*
|
|
5680
7752
|
* @param request - GetOtaTaskByTaskIdRequest
|
|
5681
7753
|
* @returns GetOtaTaskByTaskIdResponse
|
|
5682
7754
|
*/
|
|
5683
7755
|
getOtaTaskByTaskId(request: GetOtaTaskByTaskIdRequest): Promise<GetOtaTaskByTaskIdResponse>;
|
|
5684
7756
|
/**
|
|
5685
|
-
*
|
|
7757
|
+
* Queries resource prices.
|
|
5686
7758
|
*
|
|
5687
7759
|
* @param request - GetResourcePriceRequest
|
|
5688
7760
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5690,14 +7762,14 @@ export default class Client extends OpenApi {
|
|
|
5690
7762
|
*/
|
|
5691
7763
|
getResourcePriceWithOptions(request: GetResourcePriceRequest, runtime: $dara.RuntimeOptions): Promise<GetResourcePriceResponse>;
|
|
5692
7764
|
/**
|
|
5693
|
-
*
|
|
7765
|
+
* Queries resource prices.
|
|
5694
7766
|
*
|
|
5695
7767
|
* @param request - GetResourcePriceRequest
|
|
5696
7768
|
* @returns GetResourcePriceResponse
|
|
5697
7769
|
*/
|
|
5698
7770
|
getResourcePrice(request: GetResourcePriceRequest): Promise<GetResourcePriceResponse>;
|
|
5699
7771
|
/**
|
|
5700
|
-
*
|
|
7772
|
+
* Queries the renewal prices of App Streaming resources.
|
|
5701
7773
|
*
|
|
5702
7774
|
* @param request - GetResourceRenewPriceRequest
|
|
5703
7775
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5705,7 +7777,7 @@ export default class Client extends OpenApi {
|
|
|
5705
7777
|
*/
|
|
5706
7778
|
getResourceRenewPriceWithOptions(request: GetResourceRenewPriceRequest, runtime: $dara.RuntimeOptions): Promise<GetResourceRenewPriceResponse>;
|
|
5707
7779
|
/**
|
|
5708
|
-
*
|
|
7780
|
+
* Queries the renewal prices of App Streaming resources.
|
|
5709
7781
|
*
|
|
5710
7782
|
* @param request - GetResourceRenewPriceRequest
|
|
5711
7783
|
* @returns GetResourceRenewPriceResponse
|
|
@@ -5727,7 +7799,7 @@ export default class Client extends OpenApi {
|
|
|
5727
7799
|
*/
|
|
5728
7800
|
listAccessPages(request: ListAccessPagesRequest): Promise<ListAccessPagesResponse>;
|
|
5729
7801
|
/**
|
|
5730
|
-
*
|
|
7802
|
+
* Queries the details of multiple delivery groups that meet the query conditions.
|
|
5731
7803
|
*
|
|
5732
7804
|
* @param request - ListAppInstanceGroupRequest
|
|
5733
7805
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5735,14 +7807,14 @@ export default class Client extends OpenApi {
|
|
|
5735
7807
|
*/
|
|
5736
7808
|
listAppInstanceGroupWithOptions(request: ListAppInstanceGroupRequest, runtime: $dara.RuntimeOptions): Promise<ListAppInstanceGroupResponse>;
|
|
5737
7809
|
/**
|
|
5738
|
-
*
|
|
7810
|
+
* Queries the details of multiple delivery groups that meet the query conditions.
|
|
5739
7811
|
*
|
|
5740
7812
|
* @param request - ListAppInstanceGroupRequest
|
|
5741
7813
|
* @returns ListAppInstanceGroupResponse
|
|
5742
7814
|
*/
|
|
5743
7815
|
listAppInstanceGroup(request: ListAppInstanceGroupRequest): Promise<ListAppInstanceGroupResponse>;
|
|
5744
7816
|
/**
|
|
5745
|
-
*
|
|
7817
|
+
* Queries the details of application instances in a delivery group, including the IDs, status, creation time, update time, session status, and public IP addresses associated with the primary NICs of the instances.
|
|
5746
7818
|
*
|
|
5747
7819
|
* @param request - ListAppInstancesRequest
|
|
5748
7820
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5750,7 +7822,7 @@ export default class Client extends OpenApi {
|
|
|
5750
7822
|
*/
|
|
5751
7823
|
listAppInstancesWithOptions(request: ListAppInstancesRequest, runtime: $dara.RuntimeOptions): Promise<ListAppInstancesResponse>;
|
|
5752
7824
|
/**
|
|
5753
|
-
*
|
|
7825
|
+
* Queries the details of application instances in a delivery group, including the IDs, status, creation time, update time, session status, and public IP addresses associated with the primary NICs of the instances.
|
|
5754
7826
|
*
|
|
5755
7827
|
* @param request - ListAppInstancesRequest
|
|
5756
7828
|
* @returns ListAppInstancesResponse
|
|
@@ -5772,7 +7844,7 @@ export default class Client extends OpenApi {
|
|
|
5772
7844
|
*/
|
|
5773
7845
|
listBindInfo(request: ListBindInfoRequest): Promise<ListBindInfoResponse>;
|
|
5774
7846
|
/**
|
|
5775
|
-
*
|
|
7847
|
+
* Queries the resource types that are available for purchase when you create a delivery group.
|
|
5776
7848
|
*
|
|
5777
7849
|
* @param request - ListNodeInstanceTypeRequest
|
|
5778
7850
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5780,14 +7852,29 @@ export default class Client extends OpenApi {
|
|
|
5780
7852
|
*/
|
|
5781
7853
|
listNodeInstanceTypeWithOptions(request: ListNodeInstanceTypeRequest, runtime: $dara.RuntimeOptions): Promise<ListNodeInstanceTypeResponse>;
|
|
5782
7854
|
/**
|
|
5783
|
-
*
|
|
7855
|
+
* Queries the resource types that are available for purchase when you create a delivery group.
|
|
5784
7856
|
*
|
|
5785
7857
|
* @param request - ListNodeInstanceTypeRequest
|
|
5786
7858
|
* @returns ListNodeInstanceTypeResponse
|
|
5787
7859
|
*/
|
|
5788
7860
|
listNodeInstanceType(request: ListNodeInstanceTypeRequest): Promise<ListNodeInstanceTypeResponse>;
|
|
5789
7861
|
/**
|
|
5790
|
-
*
|
|
7862
|
+
* 查询节点列表
|
|
7863
|
+
*
|
|
7864
|
+
* @param request - ListNodesRequest
|
|
7865
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
7866
|
+
* @returns ListNodesResponse
|
|
7867
|
+
*/
|
|
7868
|
+
listNodesWithOptions(request: ListNodesRequest, runtime: $dara.RuntimeOptions): Promise<ListNodesResponse>;
|
|
7869
|
+
/**
|
|
7870
|
+
* 查询节点列表
|
|
7871
|
+
*
|
|
7872
|
+
* @param request - ListNodesRequest
|
|
7873
|
+
* @returns ListNodesResponse
|
|
7874
|
+
*/
|
|
7875
|
+
listNodes(request: ListNodesRequest): Promise<ListNodesResponse>;
|
|
7876
|
+
/**
|
|
7877
|
+
* Queries the information about over-the-air (OTA) update tasks.
|
|
5791
7878
|
*
|
|
5792
7879
|
* @param request - ListOtaTaskRequest
|
|
5793
7880
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5795,14 +7882,17 @@ export default class Client extends OpenApi {
|
|
|
5795
7882
|
*/
|
|
5796
7883
|
listOtaTaskWithOptions(request: ListOtaTaskRequest, runtime: $dara.RuntimeOptions): Promise<ListOtaTaskResponse>;
|
|
5797
7884
|
/**
|
|
5798
|
-
*
|
|
7885
|
+
* Queries the information about over-the-air (OTA) update tasks.
|
|
5799
7886
|
*
|
|
5800
7887
|
* @param request - ListOtaTaskRequest
|
|
5801
7888
|
* @returns ListOtaTaskResponse
|
|
5802
7889
|
*/
|
|
5803
7890
|
listOtaTask(request: ListOtaTaskRequest): Promise<ListOtaTaskResponse>;
|
|
5804
7891
|
/**
|
|
5805
|
-
*
|
|
7892
|
+
* Queries the regions that are supported by App Streaming.
|
|
7893
|
+
*
|
|
7894
|
+
* @remarks
|
|
7895
|
+
* > All supported regions instead of available regions are returned by this operation. For more information, see [Supported regions](https://help.aliyun.com/document_detail/426036.html).
|
|
5806
7896
|
*
|
|
5807
7897
|
* @param request - ListRegionsRequest
|
|
5808
7898
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5810,7 +7900,10 @@ export default class Client extends OpenApi {
|
|
|
5810
7900
|
*/
|
|
5811
7901
|
listRegionsWithOptions(request: ListRegionsRequest, runtime: $dara.RuntimeOptions): Promise<ListRegionsResponse>;
|
|
5812
7902
|
/**
|
|
5813
|
-
*
|
|
7903
|
+
* Queries the regions that are supported by App Streaming.
|
|
7904
|
+
*
|
|
7905
|
+
* @remarks
|
|
7906
|
+
* > All supported regions instead of available regions are returned by this operation. For more information, see [Supported regions](https://help.aliyun.com/document_detail/426036.html).
|
|
5814
7907
|
*
|
|
5815
7908
|
* @param request - ListRegionsRequest
|
|
5816
7909
|
* @returns ListRegionsResponse
|
|
@@ -5832,17 +7925,38 @@ export default class Client extends OpenApi {
|
|
|
5832
7925
|
*/
|
|
5833
7926
|
listSessionPackages(request: ListSessionPackagesRequest): Promise<ListSessionPackagesResponse>;
|
|
5834
7927
|
/**
|
|
7928
|
+
* Queries the tags added to one or more cloud resources.
|
|
7929
|
+
*
|
|
7930
|
+
* @param request - ListTagCloudResourcesRequest
|
|
7931
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
7932
|
+
* @returns ListTagCloudResourcesResponse
|
|
7933
|
+
*/
|
|
7934
|
+
listTagCloudResourcesWithOptions(request: ListTagCloudResourcesRequest, runtime: $dara.RuntimeOptions): Promise<ListTagCloudResourcesResponse>;
|
|
7935
|
+
/**
|
|
7936
|
+
* Queries the tags added to one or more cloud resources.
|
|
7937
|
+
*
|
|
7938
|
+
* @param request - ListTagCloudResourcesRequest
|
|
7939
|
+
* @returns ListTagCloudResourcesResponse
|
|
7940
|
+
*/
|
|
7941
|
+
listTagCloudResources(request: ListTagCloudResourcesRequest): Promise<ListTagCloudResourcesResponse>;
|
|
7942
|
+
/**
|
|
7943
|
+
* Queries the configurations of the administrator account, such as whether the resource expiration reminder feature is enabled.
|
|
7944
|
+
*
|
|
5835
7945
|
* @param request - ListTenantConfigRequest
|
|
5836
7946
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
5837
7947
|
* @returns ListTenantConfigResponse
|
|
5838
7948
|
*/
|
|
5839
7949
|
listTenantConfigWithOptions(runtime: $dara.RuntimeOptions): Promise<ListTenantConfigResponse>;
|
|
5840
7950
|
/**
|
|
7951
|
+
* Queries the configurations of the administrator account, such as whether the resource expiration reminder feature is enabled.
|
|
5841
7952
|
* @returns ListTenantConfigResponse
|
|
5842
7953
|
*/
|
|
5843
7954
|
listTenantConfig(): Promise<ListTenantConfigResponse>;
|
|
5844
7955
|
/**
|
|
5845
|
-
*
|
|
7956
|
+
* Closes all sessions in a pay-as-you-go delivery group for which a scheduled scaling policy is used.
|
|
7957
|
+
*
|
|
7958
|
+
* @remarks
|
|
7959
|
+
* > This operation can be called only if you use a pay-as-you-go delivery group for which a scheduled scaling policy is used and if you call the operation at a time other than the scheduled time.
|
|
5846
7960
|
*
|
|
5847
7961
|
* @param request - LogOffAllSessionsInAppInstanceGroupRequest
|
|
5848
7962
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5850,14 +7964,17 @@ export default class Client extends OpenApi {
|
|
|
5850
7964
|
*/
|
|
5851
7965
|
logOffAllSessionsInAppInstanceGroupWithOptions(request: LogOffAllSessionsInAppInstanceGroupRequest, runtime: $dara.RuntimeOptions): Promise<LogOffAllSessionsInAppInstanceGroupResponse>;
|
|
5852
7966
|
/**
|
|
5853
|
-
*
|
|
7967
|
+
* Closes all sessions in a pay-as-you-go delivery group for which a scheduled scaling policy is used.
|
|
7968
|
+
*
|
|
7969
|
+
* @remarks
|
|
7970
|
+
* > This operation can be called only if you use a pay-as-you-go delivery group for which a scheduled scaling policy is used and if you call the operation at a time other than the scheduled time.
|
|
5854
7971
|
*
|
|
5855
7972
|
* @param request - LogOffAllSessionsInAppInstanceGroupRequest
|
|
5856
7973
|
* @returns LogOffAllSessionsInAppInstanceGroupResponse
|
|
5857
7974
|
*/
|
|
5858
7975
|
logOffAllSessionsInAppInstanceGroup(request: LogOffAllSessionsInAppInstanceGroupRequest): Promise<LogOffAllSessionsInAppInstanceGroupResponse>;
|
|
5859
7976
|
/**
|
|
5860
|
-
*
|
|
7977
|
+
* Modifies the general policies of a delivery group, including the number of concurrent sessions and the retention period of disconnected sessions.
|
|
5861
7978
|
*
|
|
5862
7979
|
* @param tmpReq - ModifyAppInstanceGroupAttributeRequest
|
|
5863
7980
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5865,7 +7982,7 @@ export default class Client extends OpenApi {
|
|
|
5865
7982
|
*/
|
|
5866
7983
|
modifyAppInstanceGroupAttributeWithOptions(tmpReq: ModifyAppInstanceGroupAttributeRequest, runtime: $dara.RuntimeOptions): Promise<ModifyAppInstanceGroupAttributeResponse>;
|
|
5867
7984
|
/**
|
|
5868
|
-
*
|
|
7985
|
+
* Modifies the general policies of a delivery group, including the number of concurrent sessions and the retention period of disconnected sessions.
|
|
5869
7986
|
*
|
|
5870
7987
|
* @param request - ModifyAppInstanceGroupAttributeRequest
|
|
5871
7988
|
* @returns ModifyAppInstanceGroupAttributeResponse
|
|
@@ -5886,6 +8003,21 @@ export default class Client extends OpenApi {
|
|
|
5886
8003
|
* @returns ModifyAppPolicyResponse
|
|
5887
8004
|
*/
|
|
5888
8005
|
modifyAppPolicy(request: ModifyAppPolicyRequest): Promise<ModifyAppPolicyResponse>;
|
|
8006
|
+
/**
|
|
8007
|
+
* 包年包月交付组节点数量升级
|
|
8008
|
+
*
|
|
8009
|
+
* @param tmpReq - ModifyNodePoolAmountRequest
|
|
8010
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
8011
|
+
* @returns ModifyNodePoolAmountResponse
|
|
8012
|
+
*/
|
|
8013
|
+
modifyNodePoolAmountWithOptions(tmpReq: ModifyNodePoolAmountRequest, runtime: $dara.RuntimeOptions): Promise<ModifyNodePoolAmountResponse>;
|
|
8014
|
+
/**
|
|
8015
|
+
* 包年包月交付组节点数量升级
|
|
8016
|
+
*
|
|
8017
|
+
* @param request - ModifyNodePoolAmountRequest
|
|
8018
|
+
* @returns ModifyNodePoolAmountResponse
|
|
8019
|
+
*/
|
|
8020
|
+
modifyNodePoolAmount(request: ModifyNodePoolAmountRequest): Promise<ModifyNodePoolAmountResponse>;
|
|
5889
8021
|
/**
|
|
5890
8022
|
* @param tmpReq - ModifyNodePoolAttributeRequest
|
|
5891
8023
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5898,18 +8030,22 @@ export default class Client extends OpenApi {
|
|
|
5898
8030
|
*/
|
|
5899
8031
|
modifyNodePoolAttribute(request: ModifyNodePoolAttributeRequest): Promise<ModifyNodePoolAttributeResponse>;
|
|
5900
8032
|
/**
|
|
8033
|
+
* Modifies the configurations of the administrator account, such as whether to enable the resource expiration reminder feature.
|
|
8034
|
+
*
|
|
5901
8035
|
* @param request - ModifyTenantConfigRequest
|
|
5902
8036
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
5903
8037
|
* @returns ModifyTenantConfigResponse
|
|
5904
8038
|
*/
|
|
5905
8039
|
modifyTenantConfigWithOptions(request: ModifyTenantConfigRequest, runtime: $dara.RuntimeOptions): Promise<ModifyTenantConfigResponse>;
|
|
5906
8040
|
/**
|
|
8041
|
+
* Modifies the configurations of the administrator account, such as whether to enable the resource expiration reminder feature.
|
|
8042
|
+
*
|
|
5907
8043
|
* @param request - ModifyTenantConfigRequest
|
|
5908
8044
|
* @returns ModifyTenantConfigResponse
|
|
5909
8045
|
*/
|
|
5910
8046
|
modifyTenantConfig(request: ModifyTenantConfigRequest): Promise<ModifyTenantConfigResponse>;
|
|
5911
8047
|
/**
|
|
5912
|
-
*
|
|
8048
|
+
* Queries the assigned users that are added to a delivery group by page.
|
|
5913
8049
|
*
|
|
5914
8050
|
* @param request - PageListAppInstanceGroupUserRequest
|
|
5915
8051
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5917,14 +8053,17 @@ export default class Client extends OpenApi {
|
|
|
5917
8053
|
*/
|
|
5918
8054
|
pageListAppInstanceGroupUserWithOptions(request: PageListAppInstanceGroupUserRequest, runtime: $dara.RuntimeOptions): Promise<PageListAppInstanceGroupUserResponse>;
|
|
5919
8055
|
/**
|
|
5920
|
-
*
|
|
8056
|
+
* Queries the assigned users that are added to a delivery group by page.
|
|
5921
8057
|
*
|
|
5922
8058
|
* @param request - PageListAppInstanceGroupUserRequest
|
|
5923
8059
|
* @returns PageListAppInstanceGroupUserResponse
|
|
5924
8060
|
*/
|
|
5925
8061
|
pageListAppInstanceGroupUser(request: PageListAppInstanceGroupUserRequest): Promise<PageListAppInstanceGroupUserResponse>;
|
|
5926
8062
|
/**
|
|
5927
|
-
*
|
|
8063
|
+
* Renews a delivery group.
|
|
8064
|
+
*
|
|
8065
|
+
* @remarks
|
|
8066
|
+
* Before you call this operation, make sure that you fully understand the [billing methods and prices](https://help.aliyun.com/document_detail/426039.html) of App Streaming.
|
|
5928
8067
|
*
|
|
5929
8068
|
* @param request - RenewAppInstanceGroupRequest
|
|
5930
8069
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5932,14 +8071,32 @@ export default class Client extends OpenApi {
|
|
|
5932
8071
|
*/
|
|
5933
8072
|
renewAppInstanceGroupWithOptions(request: RenewAppInstanceGroupRequest, runtime: $dara.RuntimeOptions): Promise<RenewAppInstanceGroupResponse>;
|
|
5934
8073
|
/**
|
|
5935
|
-
*
|
|
8074
|
+
* Renews a delivery group.
|
|
8075
|
+
*
|
|
8076
|
+
* @remarks
|
|
8077
|
+
* Before you call this operation, make sure that you fully understand the [billing methods and prices](https://help.aliyun.com/document_detail/426039.html) of App Streaming.
|
|
5936
8078
|
*
|
|
5937
8079
|
* @param request - RenewAppInstanceGroupRequest
|
|
5938
8080
|
* @returns RenewAppInstanceGroupResponse
|
|
5939
8081
|
*/
|
|
5940
8082
|
renewAppInstanceGroup(request: RenewAppInstanceGroupRequest): Promise<RenewAppInstanceGroupResponse>;
|
|
5941
8083
|
/**
|
|
5942
|
-
*
|
|
8084
|
+
* 为云资源创建并绑定标签
|
|
8085
|
+
*
|
|
8086
|
+
* @param request - TagCloudResourcesRequest
|
|
8087
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
8088
|
+
* @returns TagCloudResourcesResponse
|
|
8089
|
+
*/
|
|
8090
|
+
tagCloudResourcesWithOptions(request: TagCloudResourcesRequest, runtime: $dara.RuntimeOptions): Promise<TagCloudResourcesResponse>;
|
|
8091
|
+
/**
|
|
8092
|
+
* 为云资源创建并绑定标签
|
|
8093
|
+
*
|
|
8094
|
+
* @param request - TagCloudResourcesRequest
|
|
8095
|
+
* @returns TagCloudResourcesResponse
|
|
8096
|
+
*/
|
|
8097
|
+
tagCloudResources(request: TagCloudResourcesRequest): Promise<TagCloudResourcesResponse>;
|
|
8098
|
+
/**
|
|
8099
|
+
* Unbinds a user and a session.
|
|
5943
8100
|
*
|
|
5944
8101
|
* @param request - UnbindRequest
|
|
5945
8102
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5947,14 +8104,34 @@ export default class Client extends OpenApi {
|
|
|
5947
8104
|
*/
|
|
5948
8105
|
unbindWithOptions(request: UnbindRequest, runtime: $dara.RuntimeOptions): Promise<UnbindResponse>;
|
|
5949
8106
|
/**
|
|
5950
|
-
*
|
|
8107
|
+
* Unbinds a user and a session.
|
|
5951
8108
|
*
|
|
5952
8109
|
* @param request - UnbindRequest
|
|
5953
8110
|
* @returns UnbindResponse
|
|
5954
8111
|
*/
|
|
5955
8112
|
unbind(request: UnbindRequest): Promise<UnbindResponse>;
|
|
5956
8113
|
/**
|
|
5957
|
-
*
|
|
8114
|
+
* Removes tags from cloud resources.
|
|
8115
|
+
*
|
|
8116
|
+
* @param request - UntagCloudResourcesRequest
|
|
8117
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
8118
|
+
* @returns UntagCloudResourcesResponse
|
|
8119
|
+
*/
|
|
8120
|
+
untagCloudResourcesWithOptions(request: UntagCloudResourcesRequest, runtime: $dara.RuntimeOptions): Promise<UntagCloudResourcesResponse>;
|
|
8121
|
+
/**
|
|
8122
|
+
* Removes tags from cloud resources.
|
|
8123
|
+
*
|
|
8124
|
+
* @param request - UntagCloudResourcesRequest
|
|
8125
|
+
* @returns UntagCloudResourcesResponse
|
|
8126
|
+
*/
|
|
8127
|
+
untagCloudResources(request: UntagCloudResourcesRequest): Promise<UntagCloudResourcesResponse>;
|
|
8128
|
+
/**
|
|
8129
|
+
* Updates the image of a delivery group.
|
|
8130
|
+
*
|
|
8131
|
+
* @remarks
|
|
8132
|
+
* *
|
|
8133
|
+
* **Warning** After the image is updated, the end user session accessing the cloud application will be disconnected. Exercise caution to avoid end user data loss.
|
|
8134
|
+
* > After the image of the delivery group is updated, the change takes effect on the terminal in approximately 2 minutes.
|
|
5958
8135
|
*
|
|
5959
8136
|
* @param request - UpdateAppInstanceGroupImageRequest
|
|
5960
8137
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -5962,7 +8139,12 @@ export default class Client extends OpenApi {
|
|
|
5962
8139
|
*/
|
|
5963
8140
|
updateAppInstanceGroupImageWithOptions(request: UpdateAppInstanceGroupImageRequest, runtime: $dara.RuntimeOptions): Promise<UpdateAppInstanceGroupImageResponse>;
|
|
5964
8141
|
/**
|
|
5965
|
-
*
|
|
8142
|
+
* Updates the image of a delivery group.
|
|
8143
|
+
*
|
|
8144
|
+
* @remarks
|
|
8145
|
+
* *
|
|
8146
|
+
* **Warning** After the image is updated, the end user session accessing the cloud application will be disconnected. Exercise caution to avoid end user data loss.
|
|
8147
|
+
* > After the image of the delivery group is updated, the change takes effect on the terminal in approximately 2 minutes.
|
|
5966
8148
|
*
|
|
5967
8149
|
* @param request - UpdateAppInstanceGroupImageRequest
|
|
5968
8150
|
* @returns UpdateAppInstanceGroupImageResponse
|