@alicloud/appstream-center20210901 1.0.8 → 1.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 +1446 -296
- package/dist/client.js +2985 -670
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +3761 -855
package/dist/client.d.ts
CHANGED
|
@@ -4,12 +4,8 @@
|
|
|
4
4
|
import * as $Util from '@alicloud/tea-util';
|
|
5
5
|
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
|
|
6
6
|
import * as $tea from '@alicloud/tea-typescript';
|
|
7
|
-
export declare class
|
|
8
|
-
|
|
9
|
-
bizRegionId?: string;
|
|
10
|
-
otaType?: string;
|
|
11
|
-
startTime?: string;
|
|
12
|
-
taskId?: string;
|
|
7
|
+
export declare class AccessPageGetAclRequest extends $tea.Model {
|
|
8
|
+
accessPageId?: string;
|
|
13
9
|
static names(): {
|
|
14
10
|
[key: string]: string;
|
|
15
11
|
};
|
|
@@ -20,10 +16,12 @@ export declare class ApproveOtaTaskRequest extends $tea.Model {
|
|
|
20
16
|
[key: string]: any;
|
|
21
17
|
});
|
|
22
18
|
}
|
|
23
|
-
export declare class
|
|
19
|
+
export declare class AccessPageGetAclResponseBody extends $tea.Model {
|
|
24
20
|
code?: string;
|
|
21
|
+
data?: AccessPageGetAclResponseBodyData[];
|
|
25
22
|
message?: string;
|
|
26
23
|
requestId?: string;
|
|
24
|
+
success?: string;
|
|
27
25
|
static names(): {
|
|
28
26
|
[key: string]: string;
|
|
29
27
|
};
|
|
@@ -34,12 +32,12 @@ export declare class ApproveOtaTaskResponseBody extends $tea.Model {
|
|
|
34
32
|
[key: string]: any;
|
|
35
33
|
});
|
|
36
34
|
}
|
|
37
|
-
export declare class
|
|
35
|
+
export declare class AccessPageGetAclResponse extends $tea.Model {
|
|
38
36
|
headers: {
|
|
39
37
|
[key: string]: string;
|
|
40
38
|
};
|
|
41
39
|
statusCode: number;
|
|
42
|
-
body:
|
|
40
|
+
body: AccessPageGetAclResponseBody;
|
|
43
41
|
static names(): {
|
|
44
42
|
[key: string]: string;
|
|
45
43
|
};
|
|
@@ -50,11 +48,12 @@ export declare class ApproveOtaTaskResponse extends $tea.Model {
|
|
|
50
48
|
[key: string]: any;
|
|
51
49
|
});
|
|
52
50
|
}
|
|
53
|
-
export declare class
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
51
|
+
export declare class AccessPageSetAclRequest extends $tea.Model {
|
|
52
|
+
accessMode?: string;
|
|
53
|
+
accessPageId?: string;
|
|
54
|
+
accessPageName?: string;
|
|
55
|
+
effectTime?: number;
|
|
56
|
+
unit?: string;
|
|
58
57
|
static names(): {
|
|
59
58
|
[key: string]: string;
|
|
60
59
|
};
|
|
@@ -65,8 +64,11 @@ export declare class AuthorizeInstanceGroupRequest extends $tea.Model {
|
|
|
65
64
|
[key: string]: any;
|
|
66
65
|
});
|
|
67
66
|
}
|
|
68
|
-
export declare class
|
|
67
|
+
export declare class AccessPageSetAclResponseBody extends $tea.Model {
|
|
68
|
+
code?: string;
|
|
69
|
+
message?: string;
|
|
69
70
|
requestId?: string;
|
|
71
|
+
success?: string;
|
|
70
72
|
static names(): {
|
|
71
73
|
[key: string]: string;
|
|
72
74
|
};
|
|
@@ -77,12 +79,12 @@ export declare class AuthorizeInstanceGroupResponseBody extends $tea.Model {
|
|
|
77
79
|
[key: string]: any;
|
|
78
80
|
});
|
|
79
81
|
}
|
|
80
|
-
export declare class
|
|
82
|
+
export declare class AccessPageSetAclResponse extends $tea.Model {
|
|
81
83
|
headers: {
|
|
82
84
|
[key: string]: string;
|
|
83
85
|
};
|
|
84
86
|
statusCode: number;
|
|
85
|
-
body:
|
|
87
|
+
body: AccessPageSetAclResponseBody;
|
|
86
88
|
static names(): {
|
|
87
89
|
[key: string]: string;
|
|
88
90
|
};
|
|
@@ -93,8 +95,11 @@ export declare class AuthorizeInstanceGroupResponse extends $tea.Model {
|
|
|
93
95
|
[key: string]: any;
|
|
94
96
|
});
|
|
95
97
|
}
|
|
96
|
-
export declare class
|
|
98
|
+
export declare class ApproveOtaTaskRequest extends $tea.Model {
|
|
97
99
|
appInstanceGroupId?: string;
|
|
100
|
+
bizRegionId?: string;
|
|
101
|
+
otaType?: string;
|
|
102
|
+
startTime?: string;
|
|
98
103
|
taskId?: string;
|
|
99
104
|
static names(): {
|
|
100
105
|
[key: string]: string;
|
|
@@ -106,7 +111,7 @@ export declare class CancelOtaTaskRequest extends $tea.Model {
|
|
|
106
111
|
[key: string]: any;
|
|
107
112
|
});
|
|
108
113
|
}
|
|
109
|
-
export declare class
|
|
114
|
+
export declare class ApproveOtaTaskResponseBody extends $tea.Model {
|
|
110
115
|
code?: string;
|
|
111
116
|
message?: string;
|
|
112
117
|
requestId?: string;
|
|
@@ -120,12 +125,12 @@ export declare class CancelOtaTaskResponseBody extends $tea.Model {
|
|
|
120
125
|
[key: string]: any;
|
|
121
126
|
});
|
|
122
127
|
}
|
|
123
|
-
export declare class
|
|
128
|
+
export declare class ApproveOtaTaskResponse extends $tea.Model {
|
|
124
129
|
headers: {
|
|
125
130
|
[key: string]: string;
|
|
126
131
|
};
|
|
127
132
|
statusCode: number;
|
|
128
|
-
body:
|
|
133
|
+
body: ApproveOtaTaskResponseBody;
|
|
129
134
|
static names(): {
|
|
130
135
|
[key: string]: string;
|
|
131
136
|
};
|
|
@@ -136,27 +141,15 @@ export declare class CancelOtaTaskResponse extends $tea.Model {
|
|
|
136
141
|
[key: string]: any;
|
|
137
142
|
});
|
|
138
143
|
}
|
|
139
|
-
export declare class
|
|
140
|
-
appCenterImageId?: string;
|
|
141
|
-
appInstanceGroupName?: string;
|
|
142
|
-
autoPay?: boolean;
|
|
143
|
-
autoRenew?: boolean;
|
|
144
|
-
bizRegionId?: string;
|
|
145
|
-
chargeResourceMode?: string;
|
|
144
|
+
export declare class AskSessionPackagePriceRequest extends $tea.Model {
|
|
146
145
|
chargeType?: string;
|
|
147
|
-
|
|
148
|
-
nodePool?: CreateAppInstanceGroupRequestNodePool;
|
|
146
|
+
maxSessions?: number;
|
|
149
147
|
period?: number;
|
|
150
148
|
periodUnit?: string;
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
securityPolicy?: CreateAppInstanceGroupRequestSecurityPolicy;
|
|
156
|
-
sessionTimeout?: number;
|
|
157
|
-
storagePolicy?: CreateAppInstanceGroupRequestStoragePolicy;
|
|
158
|
-
userInfo?: CreateAppInstanceGroupRequestUserInfo;
|
|
159
|
-
users?: string[];
|
|
149
|
+
region?: string;
|
|
150
|
+
sessionPackageType?: string;
|
|
151
|
+
sessionSpec?: string;
|
|
152
|
+
sessionType?: string;
|
|
160
153
|
static names(): {
|
|
161
154
|
[key: string]: string;
|
|
162
155
|
};
|
|
@@ -167,27 +160,39 @@ export declare class CreateAppInstanceGroupRequest extends $tea.Model {
|
|
|
167
160
|
[key: string]: any;
|
|
168
161
|
});
|
|
169
162
|
}
|
|
170
|
-
export declare class
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
163
|
+
export declare class AskSessionPackagePriceResponseBody extends $tea.Model {
|
|
164
|
+
data?: AskSessionPackagePriceResponseBodyData[];
|
|
165
|
+
requestId?: string;
|
|
166
|
+
static names(): {
|
|
167
|
+
[key: string]: string;
|
|
168
|
+
};
|
|
169
|
+
static types(): {
|
|
170
|
+
[key: string]: any;
|
|
171
|
+
};
|
|
172
|
+
constructor(map?: {
|
|
173
|
+
[key: string]: any;
|
|
174
|
+
});
|
|
175
|
+
}
|
|
176
|
+
export declare class AskSessionPackagePriceResponse extends $tea.Model {
|
|
177
|
+
headers: {
|
|
178
|
+
[key: string]: string;
|
|
179
|
+
};
|
|
180
|
+
statusCode: number;
|
|
181
|
+
body: AskSessionPackagePriceResponseBody;
|
|
182
|
+
static names(): {
|
|
183
|
+
[key: string]: string;
|
|
184
|
+
};
|
|
185
|
+
static types(): {
|
|
186
|
+
[key: string]: any;
|
|
187
|
+
};
|
|
188
|
+
constructor(map?: {
|
|
189
|
+
[key: string]: any;
|
|
190
|
+
});
|
|
191
|
+
}
|
|
192
|
+
export declare class AskSessionPackageRenewPriceRequest extends $tea.Model {
|
|
180
193
|
period?: number;
|
|
181
194
|
periodUnit?: string;
|
|
182
|
-
|
|
183
|
-
productType?: string;
|
|
184
|
-
promotionId?: string;
|
|
185
|
-
runtimePolicyShrink?: string;
|
|
186
|
-
securityPolicyShrink?: string;
|
|
187
|
-
sessionTimeout?: number;
|
|
188
|
-
storagePolicyShrink?: string;
|
|
189
|
-
userInfoShrink?: string;
|
|
190
|
-
users?: string[];
|
|
195
|
+
sessionPackageId?: string;
|
|
191
196
|
static names(): {
|
|
192
197
|
[key: string]: string;
|
|
193
198
|
};
|
|
@@ -198,8 +203,8 @@ export declare class CreateAppInstanceGroupShrinkRequest extends $tea.Model {
|
|
|
198
203
|
[key: string]: any;
|
|
199
204
|
});
|
|
200
205
|
}
|
|
201
|
-
export declare class
|
|
202
|
-
|
|
206
|
+
export declare class AskSessionPackageRenewPriceResponseBody extends $tea.Model {
|
|
207
|
+
data?: AskSessionPackageRenewPriceResponseBodyData[];
|
|
203
208
|
requestId?: string;
|
|
204
209
|
static names(): {
|
|
205
210
|
[key: string]: string;
|
|
@@ -211,12 +216,12 @@ export declare class CreateAppInstanceGroupResponseBody extends $tea.Model {
|
|
|
211
216
|
[key: string]: any;
|
|
212
217
|
});
|
|
213
218
|
}
|
|
214
|
-
export declare class
|
|
219
|
+
export declare class AskSessionPackageRenewPriceResponse extends $tea.Model {
|
|
215
220
|
headers: {
|
|
216
221
|
[key: string]: string;
|
|
217
222
|
};
|
|
218
223
|
statusCode: number;
|
|
219
|
-
body:
|
|
224
|
+
body: AskSessionPackageRenewPriceResponseBody;
|
|
220
225
|
static names(): {
|
|
221
226
|
[key: string]: string;
|
|
222
227
|
};
|
|
@@ -227,10 +232,11 @@ export declare class CreateAppInstanceGroupResponse extends $tea.Model {
|
|
|
227
232
|
[key: string]: any;
|
|
228
233
|
});
|
|
229
234
|
}
|
|
230
|
-
export declare class
|
|
231
|
-
appCenterImageName?: string;
|
|
235
|
+
export declare class AuthorizeInstanceGroupRequest extends $tea.Model {
|
|
232
236
|
appInstanceGroupId?: string;
|
|
237
|
+
authorizeUserIds?: string[];
|
|
233
238
|
productType?: string;
|
|
239
|
+
unAuthorizeUserIds?: string[];
|
|
234
240
|
static names(): {
|
|
235
241
|
[key: string]: string;
|
|
236
242
|
};
|
|
@@ -241,8 +247,7 @@ export declare class CreateImageFromAppInstanceGroupRequest extends $tea.Model {
|
|
|
241
247
|
[key: string]: any;
|
|
242
248
|
});
|
|
243
249
|
}
|
|
244
|
-
export declare class
|
|
245
|
-
imageId?: string;
|
|
250
|
+
export declare class AuthorizeInstanceGroupResponseBody extends $tea.Model {
|
|
246
251
|
requestId?: string;
|
|
247
252
|
static names(): {
|
|
248
253
|
[key: string]: string;
|
|
@@ -254,12 +259,12 @@ export declare class CreateImageFromAppInstanceGroupResponseBody extends $tea.Mo
|
|
|
254
259
|
[key: string]: any;
|
|
255
260
|
});
|
|
256
261
|
}
|
|
257
|
-
export declare class
|
|
262
|
+
export declare class AuthorizeInstanceGroupResponse extends $tea.Model {
|
|
258
263
|
headers: {
|
|
259
264
|
[key: string]: string;
|
|
260
265
|
};
|
|
261
266
|
statusCode: number;
|
|
262
|
-
body:
|
|
267
|
+
body: AuthorizeInstanceGroupResponseBody;
|
|
263
268
|
static names(): {
|
|
264
269
|
[key: string]: string;
|
|
265
270
|
};
|
|
@@ -270,9 +275,17 @@ export declare class CreateImageFromAppInstanceGroupResponse extends $tea.Model
|
|
|
270
275
|
[key: string]: any;
|
|
271
276
|
});
|
|
272
277
|
}
|
|
273
|
-
export declare class
|
|
274
|
-
|
|
275
|
-
|
|
278
|
+
export declare class BuySessionPackageRequest extends $tea.Model {
|
|
279
|
+
chargeType?: string;
|
|
280
|
+
maxSessions?: number;
|
|
281
|
+
period?: number;
|
|
282
|
+
periodUnit?: string;
|
|
283
|
+
projectId?: string;
|
|
284
|
+
region?: string;
|
|
285
|
+
sessionPackageName?: string;
|
|
286
|
+
sessionPackageType?: string;
|
|
287
|
+
sessionSpec?: string;
|
|
288
|
+
sessionType?: string;
|
|
276
289
|
static names(): {
|
|
277
290
|
[key: string]: string;
|
|
278
291
|
};
|
|
@@ -283,8 +296,12 @@ export declare class DeleteAppInstanceGroupRequest extends $tea.Model {
|
|
|
283
296
|
[key: string]: any;
|
|
284
297
|
});
|
|
285
298
|
}
|
|
286
|
-
export declare class
|
|
299
|
+
export declare class BuySessionPackageResponseBody extends $tea.Model {
|
|
300
|
+
code?: string;
|
|
301
|
+
message?: string;
|
|
287
302
|
requestId?: string;
|
|
303
|
+
sessionPackageId?: number;
|
|
304
|
+
success?: string;
|
|
288
305
|
static names(): {
|
|
289
306
|
[key: string]: string;
|
|
290
307
|
};
|
|
@@ -295,12 +312,12 @@ export declare class DeleteAppInstanceGroupResponseBody extends $tea.Model {
|
|
|
295
312
|
[key: string]: any;
|
|
296
313
|
});
|
|
297
314
|
}
|
|
298
|
-
export declare class
|
|
315
|
+
export declare class BuySessionPackageResponse extends $tea.Model {
|
|
299
316
|
headers: {
|
|
300
317
|
[key: string]: string;
|
|
301
318
|
};
|
|
302
319
|
statusCode: number;
|
|
303
|
-
body:
|
|
320
|
+
body: BuySessionPackageResponseBody;
|
|
304
321
|
static names(): {
|
|
305
322
|
[key: string]: string;
|
|
306
323
|
};
|
|
@@ -311,10 +328,9 @@ export declare class DeleteAppInstanceGroupResponse extends $tea.Model {
|
|
|
311
328
|
[key: string]: any;
|
|
312
329
|
});
|
|
313
330
|
}
|
|
314
|
-
export declare class
|
|
331
|
+
export declare class CancelOtaTaskRequest extends $tea.Model {
|
|
315
332
|
appInstanceGroupId?: string;
|
|
316
|
-
|
|
317
|
-
productType?: string;
|
|
333
|
+
taskId?: string;
|
|
318
334
|
static names(): {
|
|
319
335
|
[key: string]: string;
|
|
320
336
|
};
|
|
@@ -325,8 +341,9 @@ export declare class DeleteAppInstancesRequest extends $tea.Model {
|
|
|
325
341
|
[key: string]: any;
|
|
326
342
|
});
|
|
327
343
|
}
|
|
328
|
-
export declare class
|
|
329
|
-
|
|
344
|
+
export declare class CancelOtaTaskResponseBody extends $tea.Model {
|
|
345
|
+
code?: string;
|
|
346
|
+
message?: string;
|
|
330
347
|
requestId?: string;
|
|
331
348
|
static names(): {
|
|
332
349
|
[key: string]: string;
|
|
@@ -338,12 +355,12 @@ export declare class DeleteAppInstancesResponseBody extends $tea.Model {
|
|
|
338
355
|
[key: string]: any;
|
|
339
356
|
});
|
|
340
357
|
}
|
|
341
|
-
export declare class
|
|
358
|
+
export declare class CancelOtaTaskResponse extends $tea.Model {
|
|
342
359
|
headers: {
|
|
343
360
|
[key: string]: string;
|
|
344
361
|
};
|
|
345
362
|
statusCode: number;
|
|
346
|
-
body:
|
|
363
|
+
body: CancelOtaTaskResponseBody;
|
|
347
364
|
static names(): {
|
|
348
365
|
[key: string]: string;
|
|
349
366
|
};
|
|
@@ -354,9 +371,13 @@ export declare class DeleteAppInstancesResponse extends $tea.Model {
|
|
|
354
371
|
[key: string]: any;
|
|
355
372
|
});
|
|
356
373
|
}
|
|
357
|
-
export declare class
|
|
358
|
-
|
|
359
|
-
|
|
374
|
+
export declare class CreateAccessPageRequest extends $tea.Model {
|
|
375
|
+
accessPageName?: string;
|
|
376
|
+
cloudEnvId?: string;
|
|
377
|
+
effectTime?: number;
|
|
378
|
+
projectId?: string;
|
|
379
|
+
projectName?: string;
|
|
380
|
+
unit?: string;
|
|
360
381
|
static names(): {
|
|
361
382
|
[key: string]: string;
|
|
362
383
|
};
|
|
@@ -367,9 +388,12 @@ export declare class GetAppInstanceGroupRequest extends $tea.Model {
|
|
|
367
388
|
[key: string]: any;
|
|
368
389
|
});
|
|
369
390
|
}
|
|
370
|
-
export declare class
|
|
371
|
-
|
|
391
|
+
export declare class CreateAccessPageResponseBody extends $tea.Model {
|
|
392
|
+
code?: string;
|
|
393
|
+
data?: string;
|
|
394
|
+
message?: string;
|
|
372
395
|
requestId?: string;
|
|
396
|
+
success?: string;
|
|
373
397
|
static names(): {
|
|
374
398
|
[key: string]: string;
|
|
375
399
|
};
|
|
@@ -380,12 +404,12 @@ export declare class GetAppInstanceGroupResponseBody extends $tea.Model {
|
|
|
380
404
|
[key: string]: any;
|
|
381
405
|
});
|
|
382
406
|
}
|
|
383
|
-
export declare class
|
|
407
|
+
export declare class CreateAccessPageResponse extends $tea.Model {
|
|
384
408
|
headers: {
|
|
385
409
|
[key: string]: string;
|
|
386
410
|
};
|
|
387
411
|
statusCode: number;
|
|
388
|
-
body:
|
|
412
|
+
body: CreateAccessPageResponseBody;
|
|
389
413
|
static names(): {
|
|
390
414
|
[key: string]: string;
|
|
391
415
|
};
|
|
@@ -396,16 +420,27 @@ export declare class GetAppInstanceGroupResponse extends $tea.Model {
|
|
|
396
420
|
[key: string]: any;
|
|
397
421
|
});
|
|
398
422
|
}
|
|
399
|
-
export declare class
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
appVersion?: string;
|
|
423
|
+
export declare class CreateAppInstanceGroupRequest extends $tea.Model {
|
|
424
|
+
appCenterImageId?: string;
|
|
425
|
+
appInstanceGroupName?: string;
|
|
426
|
+
autoPay?: boolean;
|
|
427
|
+
autoRenew?: boolean;
|
|
405
428
|
bizRegionId?: string;
|
|
406
|
-
|
|
429
|
+
chargeResourceMode?: string;
|
|
430
|
+
chargeType?: string;
|
|
431
|
+
network?: CreateAppInstanceGroupRequestNetwork;
|
|
432
|
+
nodePool?: CreateAppInstanceGroupRequestNodePool;
|
|
433
|
+
period?: number;
|
|
434
|
+
periodUnit?: string;
|
|
435
|
+
preOpenAppId?: string;
|
|
407
436
|
productType?: string;
|
|
408
|
-
|
|
437
|
+
promotionId?: string;
|
|
438
|
+
runtimePolicy?: CreateAppInstanceGroupRequestRuntimePolicy;
|
|
439
|
+
securityPolicy?: CreateAppInstanceGroupRequestSecurityPolicy;
|
|
440
|
+
sessionTimeout?: number;
|
|
441
|
+
storagePolicy?: CreateAppInstanceGroupRequestStoragePolicy;
|
|
442
|
+
userInfo?: CreateAppInstanceGroupRequestUserInfo;
|
|
443
|
+
users?: string[];
|
|
409
444
|
static names(): {
|
|
410
445
|
[key: string]: string;
|
|
411
446
|
};
|
|
@@ -416,16 +451,40 @@ export declare class GetConnectionTicketRequest extends $tea.Model {
|
|
|
416
451
|
[key: string]: any;
|
|
417
452
|
});
|
|
418
453
|
}
|
|
419
|
-
export declare class
|
|
420
|
-
|
|
421
|
-
|
|
454
|
+
export declare class CreateAppInstanceGroupShrinkRequest extends $tea.Model {
|
|
455
|
+
appCenterImageId?: string;
|
|
456
|
+
appInstanceGroupName?: string;
|
|
457
|
+
autoPay?: boolean;
|
|
458
|
+
autoRenew?: boolean;
|
|
422
459
|
bizRegionId?: string;
|
|
423
|
-
|
|
460
|
+
chargeResourceMode?: string;
|
|
461
|
+
chargeType?: string;
|
|
462
|
+
networkShrink?: string;
|
|
463
|
+
nodePoolShrink?: string;
|
|
464
|
+
period?: number;
|
|
465
|
+
periodUnit?: string;
|
|
466
|
+
preOpenAppId?: string;
|
|
467
|
+
productType?: string;
|
|
468
|
+
promotionId?: string;
|
|
469
|
+
runtimePolicyShrink?: string;
|
|
470
|
+
securityPolicyShrink?: string;
|
|
471
|
+
sessionTimeout?: number;
|
|
472
|
+
storagePolicyShrink?: string;
|
|
473
|
+
userInfoShrink?: string;
|
|
474
|
+
users?: string[];
|
|
475
|
+
static names(): {
|
|
476
|
+
[key: string]: string;
|
|
477
|
+
};
|
|
478
|
+
static types(): {
|
|
479
|
+
[key: string]: any;
|
|
480
|
+
};
|
|
481
|
+
constructor(map?: {
|
|
482
|
+
[key: string]: any;
|
|
483
|
+
});
|
|
484
|
+
}
|
|
485
|
+
export declare class CreateAppInstanceGroupResponseBody extends $tea.Model {
|
|
486
|
+
appInstanceGroupModel?: CreateAppInstanceGroupResponseBodyAppInstanceGroupModel;
|
|
424
487
|
requestId?: string;
|
|
425
|
-
taskId?: string;
|
|
426
|
-
taskStatus?: string;
|
|
427
|
-
tenantId?: number;
|
|
428
|
-
ticket?: string;
|
|
429
488
|
static names(): {
|
|
430
489
|
[key: string]: string;
|
|
431
490
|
};
|
|
@@ -436,12 +495,12 @@ export declare class GetConnectionTicketResponseBody extends $tea.Model {
|
|
|
436
495
|
[key: string]: any;
|
|
437
496
|
});
|
|
438
497
|
}
|
|
439
|
-
export declare class
|
|
498
|
+
export declare class CreateAppInstanceGroupResponse extends $tea.Model {
|
|
440
499
|
headers: {
|
|
441
500
|
[key: string]: string;
|
|
442
501
|
};
|
|
443
502
|
statusCode: number;
|
|
444
|
-
body:
|
|
503
|
+
body: CreateAppInstanceGroupResponseBody;
|
|
445
504
|
static names(): {
|
|
446
505
|
[key: string]: string;
|
|
447
506
|
};
|
|
@@ -452,7 +511,8 @@ export declare class GetConnectionTicketResponse extends $tea.Model {
|
|
|
452
511
|
[key: string]: any;
|
|
453
512
|
});
|
|
454
513
|
}
|
|
455
|
-
export declare class
|
|
514
|
+
export declare class CreateImageFromAppInstanceGroupRequest extends $tea.Model {
|
|
515
|
+
appCenterImageName?: string;
|
|
456
516
|
appInstanceGroupId?: string;
|
|
457
517
|
productType?: string;
|
|
458
518
|
static names(): {
|
|
@@ -465,14 +525,9 @@ export declare class GetDebugAppInstanceRequest extends $tea.Model {
|
|
|
465
525
|
[key: string]: any;
|
|
466
526
|
});
|
|
467
527
|
}
|
|
468
|
-
export declare class
|
|
469
|
-
|
|
470
|
-
appInstanceGroupId?: string;
|
|
471
|
-
appInstanceId?: string;
|
|
472
|
-
appVersion?: string;
|
|
473
|
-
authCode?: string;
|
|
528
|
+
export declare class CreateImageFromAppInstanceGroupResponseBody extends $tea.Model {
|
|
529
|
+
imageId?: string;
|
|
474
530
|
requestId?: string;
|
|
475
|
-
userId?: string;
|
|
476
531
|
static names(): {
|
|
477
532
|
[key: string]: string;
|
|
478
533
|
};
|
|
@@ -483,12 +538,12 @@ export declare class GetDebugAppInstanceResponseBody extends $tea.Model {
|
|
|
483
538
|
[key: string]: any;
|
|
484
539
|
});
|
|
485
540
|
}
|
|
486
|
-
export declare class
|
|
541
|
+
export declare class CreateImageFromAppInstanceGroupResponse extends $tea.Model {
|
|
487
542
|
headers: {
|
|
488
543
|
[key: string]: string;
|
|
489
544
|
};
|
|
490
545
|
statusCode: number;
|
|
491
|
-
body:
|
|
546
|
+
body: CreateImageFromAppInstanceGroupResponseBody;
|
|
492
547
|
static names(): {
|
|
493
548
|
[key: string]: string;
|
|
494
549
|
};
|
|
@@ -499,8 +554,20 @@ export declare class GetDebugAppInstanceResponse extends $tea.Model {
|
|
|
499
554
|
[key: string]: any;
|
|
500
555
|
});
|
|
501
556
|
}
|
|
502
|
-
export declare class
|
|
503
|
-
|
|
557
|
+
export declare class CreateProjectRequest extends $tea.Model {
|
|
558
|
+
clipboard?: number;
|
|
559
|
+
cloudEnvId?: string;
|
|
560
|
+
contentId?: string;
|
|
561
|
+
description?: string;
|
|
562
|
+
fileTransfer?: number;
|
|
563
|
+
frameRate?: number;
|
|
564
|
+
keepAliveDuration?: number;
|
|
565
|
+
projectName?: string;
|
|
566
|
+
sessionResolutionHeight?: number;
|
|
567
|
+
sessionResolutionWidth?: number;
|
|
568
|
+
sessionSpec?: string;
|
|
569
|
+
streamingMode?: string;
|
|
570
|
+
terminalResolutionAdaptation?: boolean;
|
|
504
571
|
static names(): {
|
|
505
572
|
[key: string]: string;
|
|
506
573
|
};
|
|
@@ -511,13 +578,14 @@ export declare class GetOtaTaskByTaskIdRequest extends $tea.Model {
|
|
|
511
578
|
[key: string]: any;
|
|
512
579
|
});
|
|
513
580
|
}
|
|
514
|
-
export declare class
|
|
581
|
+
export declare class CreateProjectResponseBody extends $tea.Model {
|
|
515
582
|
code?: string;
|
|
583
|
+
data?: string;
|
|
516
584
|
message?: string;
|
|
517
|
-
|
|
518
|
-
|
|
585
|
+
pageNumber?: number;
|
|
586
|
+
pageSize?: number;
|
|
519
587
|
requestId?: string;
|
|
520
|
-
|
|
588
|
+
success?: string;
|
|
521
589
|
static names(): {
|
|
522
590
|
[key: string]: string;
|
|
523
591
|
};
|
|
@@ -528,12 +596,12 @@ export declare class GetOtaTaskByTaskIdResponseBody extends $tea.Model {
|
|
|
528
596
|
[key: string]: any;
|
|
529
597
|
});
|
|
530
598
|
}
|
|
531
|
-
export declare class
|
|
599
|
+
export declare class CreateProjectResponse extends $tea.Model {
|
|
532
600
|
headers: {
|
|
533
601
|
[key: string]: string;
|
|
534
602
|
};
|
|
535
603
|
statusCode: number;
|
|
536
|
-
body:
|
|
604
|
+
body: CreateProjectResponseBody;
|
|
537
605
|
static names(): {
|
|
538
606
|
[key: string]: string;
|
|
539
607
|
};
|
|
@@ -544,15 +612,8 @@ export declare class GetOtaTaskByTaskIdResponse extends $tea.Model {
|
|
|
544
612
|
[key: string]: any;
|
|
545
613
|
});
|
|
546
614
|
}
|
|
547
|
-
export declare class
|
|
548
|
-
|
|
549
|
-
appInstanceType?: string;
|
|
550
|
-
bizRegionId?: string;
|
|
551
|
-
chargeType?: string;
|
|
552
|
-
nodeInstanceType?: string;
|
|
553
|
-
period?: number;
|
|
554
|
-
periodUnit?: string;
|
|
555
|
-
productType?: string;
|
|
615
|
+
export declare class DeleteAccessPageRequest extends $tea.Model {
|
|
616
|
+
accessPageId?: string;
|
|
556
617
|
static names(): {
|
|
557
618
|
[key: string]: string;
|
|
558
619
|
};
|
|
@@ -563,12 +624,11 @@ export declare class GetResourcePriceRequest extends $tea.Model {
|
|
|
563
624
|
[key: string]: any;
|
|
564
625
|
});
|
|
565
626
|
}
|
|
566
|
-
export declare class
|
|
627
|
+
export declare class DeleteAccessPageResponseBody extends $tea.Model {
|
|
567
628
|
code?: string;
|
|
568
629
|
message?: string;
|
|
569
|
-
priceList?: GetResourcePriceResponseBodyPriceList[];
|
|
570
|
-
priceModel?: GetResourcePriceResponseBodyPriceModel;
|
|
571
630
|
requestId?: string;
|
|
631
|
+
success?: string;
|
|
572
632
|
static names(): {
|
|
573
633
|
[key: string]: string;
|
|
574
634
|
};
|
|
@@ -579,12 +639,473 @@ export declare class GetResourcePriceResponseBody extends $tea.Model {
|
|
|
579
639
|
[key: string]: any;
|
|
580
640
|
});
|
|
581
641
|
}
|
|
582
|
-
export declare class
|
|
642
|
+
export declare class DeleteAccessPageResponse extends $tea.Model {
|
|
583
643
|
headers: {
|
|
584
644
|
[key: string]: string;
|
|
585
645
|
};
|
|
586
646
|
statusCode: number;
|
|
587
|
-
body:
|
|
647
|
+
body: DeleteAccessPageResponseBody;
|
|
648
|
+
static names(): {
|
|
649
|
+
[key: string]: string;
|
|
650
|
+
};
|
|
651
|
+
static types(): {
|
|
652
|
+
[key: string]: any;
|
|
653
|
+
};
|
|
654
|
+
constructor(map?: {
|
|
655
|
+
[key: string]: any;
|
|
656
|
+
});
|
|
657
|
+
}
|
|
658
|
+
export declare class DeleteAppInstanceGroupRequest extends $tea.Model {
|
|
659
|
+
appInstanceGroupId?: string;
|
|
660
|
+
productType?: string;
|
|
661
|
+
static names(): {
|
|
662
|
+
[key: string]: string;
|
|
663
|
+
};
|
|
664
|
+
static types(): {
|
|
665
|
+
[key: string]: any;
|
|
666
|
+
};
|
|
667
|
+
constructor(map?: {
|
|
668
|
+
[key: string]: any;
|
|
669
|
+
});
|
|
670
|
+
}
|
|
671
|
+
export declare class DeleteAppInstanceGroupResponseBody extends $tea.Model {
|
|
672
|
+
requestId?: string;
|
|
673
|
+
static names(): {
|
|
674
|
+
[key: string]: string;
|
|
675
|
+
};
|
|
676
|
+
static types(): {
|
|
677
|
+
[key: string]: any;
|
|
678
|
+
};
|
|
679
|
+
constructor(map?: {
|
|
680
|
+
[key: string]: any;
|
|
681
|
+
});
|
|
682
|
+
}
|
|
683
|
+
export declare class DeleteAppInstanceGroupResponse extends $tea.Model {
|
|
684
|
+
headers: {
|
|
685
|
+
[key: string]: string;
|
|
686
|
+
};
|
|
687
|
+
statusCode: number;
|
|
688
|
+
body: DeleteAppInstanceGroupResponseBody;
|
|
689
|
+
static names(): {
|
|
690
|
+
[key: string]: string;
|
|
691
|
+
};
|
|
692
|
+
static types(): {
|
|
693
|
+
[key: string]: any;
|
|
694
|
+
};
|
|
695
|
+
constructor(map?: {
|
|
696
|
+
[key: string]: any;
|
|
697
|
+
});
|
|
698
|
+
}
|
|
699
|
+
export declare class DeleteAppInstancesRequest extends $tea.Model {
|
|
700
|
+
appInstanceGroupId?: string;
|
|
701
|
+
appInstanceIds?: string[];
|
|
702
|
+
productType?: string;
|
|
703
|
+
static names(): {
|
|
704
|
+
[key: string]: string;
|
|
705
|
+
};
|
|
706
|
+
static types(): {
|
|
707
|
+
[key: string]: any;
|
|
708
|
+
};
|
|
709
|
+
constructor(map?: {
|
|
710
|
+
[key: string]: any;
|
|
711
|
+
});
|
|
712
|
+
}
|
|
713
|
+
export declare class DeleteAppInstancesResponseBody extends $tea.Model {
|
|
714
|
+
deleteAppInstanceModels?: DeleteAppInstancesResponseBodyDeleteAppInstanceModels[];
|
|
715
|
+
requestId?: string;
|
|
716
|
+
static names(): {
|
|
717
|
+
[key: string]: string;
|
|
718
|
+
};
|
|
719
|
+
static types(): {
|
|
720
|
+
[key: string]: any;
|
|
721
|
+
};
|
|
722
|
+
constructor(map?: {
|
|
723
|
+
[key: string]: any;
|
|
724
|
+
});
|
|
725
|
+
}
|
|
726
|
+
export declare class DeleteAppInstancesResponse extends $tea.Model {
|
|
727
|
+
headers: {
|
|
728
|
+
[key: string]: string;
|
|
729
|
+
};
|
|
730
|
+
statusCode: number;
|
|
731
|
+
body: DeleteAppInstancesResponseBody;
|
|
732
|
+
static names(): {
|
|
733
|
+
[key: string]: string;
|
|
734
|
+
};
|
|
735
|
+
static types(): {
|
|
736
|
+
[key: string]: any;
|
|
737
|
+
};
|
|
738
|
+
constructor(map?: {
|
|
739
|
+
[key: string]: any;
|
|
740
|
+
});
|
|
741
|
+
}
|
|
742
|
+
export declare class DeleteProjectRequest extends $tea.Model {
|
|
743
|
+
projectId?: string;
|
|
744
|
+
static names(): {
|
|
745
|
+
[key: string]: string;
|
|
746
|
+
};
|
|
747
|
+
static types(): {
|
|
748
|
+
[key: string]: any;
|
|
749
|
+
};
|
|
750
|
+
constructor(map?: {
|
|
751
|
+
[key: string]: any;
|
|
752
|
+
});
|
|
753
|
+
}
|
|
754
|
+
export declare class DeleteProjectResponseBody extends $tea.Model {
|
|
755
|
+
code?: string;
|
|
756
|
+
data?: boolean;
|
|
757
|
+
message?: string;
|
|
758
|
+
requestId?: string;
|
|
759
|
+
success?: string;
|
|
760
|
+
static names(): {
|
|
761
|
+
[key: string]: string;
|
|
762
|
+
};
|
|
763
|
+
static types(): {
|
|
764
|
+
[key: string]: any;
|
|
765
|
+
};
|
|
766
|
+
constructor(map?: {
|
|
767
|
+
[key: string]: any;
|
|
768
|
+
});
|
|
769
|
+
}
|
|
770
|
+
export declare class DeleteProjectResponse extends $tea.Model {
|
|
771
|
+
headers: {
|
|
772
|
+
[key: string]: string;
|
|
773
|
+
};
|
|
774
|
+
statusCode: number;
|
|
775
|
+
body: DeleteProjectResponseBody;
|
|
776
|
+
static names(): {
|
|
777
|
+
[key: string]: string;
|
|
778
|
+
};
|
|
779
|
+
static types(): {
|
|
780
|
+
[key: string]: any;
|
|
781
|
+
};
|
|
782
|
+
constructor(map?: {
|
|
783
|
+
[key: string]: any;
|
|
784
|
+
});
|
|
785
|
+
}
|
|
786
|
+
export declare class GetAccessPageSessionRequest extends $tea.Model {
|
|
787
|
+
accessPageId?: string;
|
|
788
|
+
accessPageToken?: string;
|
|
789
|
+
externalUserId?: string;
|
|
790
|
+
static names(): {
|
|
791
|
+
[key: string]: string;
|
|
792
|
+
};
|
|
793
|
+
static types(): {
|
|
794
|
+
[key: string]: any;
|
|
795
|
+
};
|
|
796
|
+
constructor(map?: {
|
|
797
|
+
[key: string]: any;
|
|
798
|
+
});
|
|
799
|
+
}
|
|
800
|
+
export declare class GetAccessPageSessionResponseBody extends $tea.Model {
|
|
801
|
+
code?: string;
|
|
802
|
+
data?: GetAccessPageSessionResponseBodyData;
|
|
803
|
+
message?: string;
|
|
804
|
+
requestId?: string;
|
|
805
|
+
success?: string;
|
|
806
|
+
static names(): {
|
|
807
|
+
[key: string]: string;
|
|
808
|
+
};
|
|
809
|
+
static types(): {
|
|
810
|
+
[key: string]: any;
|
|
811
|
+
};
|
|
812
|
+
constructor(map?: {
|
|
813
|
+
[key: string]: any;
|
|
814
|
+
});
|
|
815
|
+
}
|
|
816
|
+
export declare class GetAccessPageSessionResponse extends $tea.Model {
|
|
817
|
+
headers: {
|
|
818
|
+
[key: string]: string;
|
|
819
|
+
};
|
|
820
|
+
statusCode: number;
|
|
821
|
+
body: GetAccessPageSessionResponseBody;
|
|
822
|
+
static names(): {
|
|
823
|
+
[key: string]: string;
|
|
824
|
+
};
|
|
825
|
+
static types(): {
|
|
826
|
+
[key: string]: any;
|
|
827
|
+
};
|
|
828
|
+
constructor(map?: {
|
|
829
|
+
[key: string]: any;
|
|
830
|
+
});
|
|
831
|
+
}
|
|
832
|
+
export declare class GetAppInstanceGroupRequest extends $tea.Model {
|
|
833
|
+
appInstanceGroupId?: string;
|
|
834
|
+
productType?: string;
|
|
835
|
+
static names(): {
|
|
836
|
+
[key: string]: string;
|
|
837
|
+
};
|
|
838
|
+
static types(): {
|
|
839
|
+
[key: string]: any;
|
|
840
|
+
};
|
|
841
|
+
constructor(map?: {
|
|
842
|
+
[key: string]: any;
|
|
843
|
+
});
|
|
844
|
+
}
|
|
845
|
+
export declare class GetAppInstanceGroupResponseBody extends $tea.Model {
|
|
846
|
+
appInstanceGroupModels?: GetAppInstanceGroupResponseBodyAppInstanceGroupModels;
|
|
847
|
+
requestId?: string;
|
|
848
|
+
static names(): {
|
|
849
|
+
[key: string]: string;
|
|
850
|
+
};
|
|
851
|
+
static types(): {
|
|
852
|
+
[key: string]: any;
|
|
853
|
+
};
|
|
854
|
+
constructor(map?: {
|
|
855
|
+
[key: string]: any;
|
|
856
|
+
});
|
|
857
|
+
}
|
|
858
|
+
export declare class GetAppInstanceGroupResponse extends $tea.Model {
|
|
859
|
+
headers: {
|
|
860
|
+
[key: string]: string;
|
|
861
|
+
};
|
|
862
|
+
statusCode: number;
|
|
863
|
+
body: GetAppInstanceGroupResponseBody;
|
|
864
|
+
static names(): {
|
|
865
|
+
[key: string]: string;
|
|
866
|
+
};
|
|
867
|
+
static types(): {
|
|
868
|
+
[key: string]: any;
|
|
869
|
+
};
|
|
870
|
+
constructor(map?: {
|
|
871
|
+
[key: string]: any;
|
|
872
|
+
});
|
|
873
|
+
}
|
|
874
|
+
export declare class GetConnectionTicketRequest extends $tea.Model {
|
|
875
|
+
appId?: string;
|
|
876
|
+
appInstanceGroupIdList?: string[];
|
|
877
|
+
appInstanceId?: string;
|
|
878
|
+
appInstancePersistentId?: string;
|
|
879
|
+
appStartParam?: string;
|
|
880
|
+
appVersion?: string;
|
|
881
|
+
bizRegionId?: string;
|
|
882
|
+
endUserId?: string;
|
|
883
|
+
productType?: string;
|
|
884
|
+
taskId?: string;
|
|
885
|
+
static names(): {
|
|
886
|
+
[key: string]: string;
|
|
887
|
+
};
|
|
888
|
+
static types(): {
|
|
889
|
+
[key: string]: any;
|
|
890
|
+
};
|
|
891
|
+
constructor(map?: {
|
|
892
|
+
[key: string]: any;
|
|
893
|
+
});
|
|
894
|
+
}
|
|
895
|
+
export declare class GetConnectionTicketResponseBody extends $tea.Model {
|
|
896
|
+
appInstanceGroupId?: string;
|
|
897
|
+
appInstanceId?: string;
|
|
898
|
+
appInstancePersistentId?: string;
|
|
899
|
+
bizRegionId?: string;
|
|
900
|
+
osType?: string;
|
|
901
|
+
requestId?: string;
|
|
902
|
+
taskId?: string;
|
|
903
|
+
taskStatus?: string;
|
|
904
|
+
tenantId?: number;
|
|
905
|
+
ticket?: string;
|
|
906
|
+
static names(): {
|
|
907
|
+
[key: string]: string;
|
|
908
|
+
};
|
|
909
|
+
static types(): {
|
|
910
|
+
[key: string]: any;
|
|
911
|
+
};
|
|
912
|
+
constructor(map?: {
|
|
913
|
+
[key: string]: any;
|
|
914
|
+
});
|
|
915
|
+
}
|
|
916
|
+
export declare class GetConnectionTicketResponse extends $tea.Model {
|
|
917
|
+
headers: {
|
|
918
|
+
[key: string]: string;
|
|
919
|
+
};
|
|
920
|
+
statusCode: number;
|
|
921
|
+
body: GetConnectionTicketResponseBody;
|
|
922
|
+
static names(): {
|
|
923
|
+
[key: string]: string;
|
|
924
|
+
};
|
|
925
|
+
static types(): {
|
|
926
|
+
[key: string]: any;
|
|
927
|
+
};
|
|
928
|
+
constructor(map?: {
|
|
929
|
+
[key: string]: any;
|
|
930
|
+
});
|
|
931
|
+
}
|
|
932
|
+
export declare class GetDebugAppInstanceRequest extends $tea.Model {
|
|
933
|
+
appInstanceGroupId?: string;
|
|
934
|
+
productType?: string;
|
|
935
|
+
static names(): {
|
|
936
|
+
[key: string]: string;
|
|
937
|
+
};
|
|
938
|
+
static types(): {
|
|
939
|
+
[key: string]: any;
|
|
940
|
+
};
|
|
941
|
+
constructor(map?: {
|
|
942
|
+
[key: string]: any;
|
|
943
|
+
});
|
|
944
|
+
}
|
|
945
|
+
export declare class GetDebugAppInstanceResponseBody extends $tea.Model {
|
|
946
|
+
appId?: string;
|
|
947
|
+
appInstanceGroupId?: string;
|
|
948
|
+
appInstanceId?: string;
|
|
949
|
+
appVersion?: string;
|
|
950
|
+
authCode?: string;
|
|
951
|
+
requestId?: string;
|
|
952
|
+
userId?: string;
|
|
953
|
+
static names(): {
|
|
954
|
+
[key: string]: string;
|
|
955
|
+
};
|
|
956
|
+
static types(): {
|
|
957
|
+
[key: string]: any;
|
|
958
|
+
};
|
|
959
|
+
constructor(map?: {
|
|
960
|
+
[key: string]: any;
|
|
961
|
+
});
|
|
962
|
+
}
|
|
963
|
+
export declare class GetDebugAppInstanceResponse extends $tea.Model {
|
|
964
|
+
headers: {
|
|
965
|
+
[key: string]: string;
|
|
966
|
+
};
|
|
967
|
+
statusCode: number;
|
|
968
|
+
body: GetDebugAppInstanceResponseBody;
|
|
969
|
+
static names(): {
|
|
970
|
+
[key: string]: string;
|
|
971
|
+
};
|
|
972
|
+
static types(): {
|
|
973
|
+
[key: string]: any;
|
|
974
|
+
};
|
|
975
|
+
constructor(map?: {
|
|
976
|
+
[key: string]: any;
|
|
977
|
+
});
|
|
978
|
+
}
|
|
979
|
+
export declare class GetOtaTaskByTaskIdRequest extends $tea.Model {
|
|
980
|
+
taskId?: string;
|
|
981
|
+
static names(): {
|
|
982
|
+
[key: string]: string;
|
|
983
|
+
};
|
|
984
|
+
static types(): {
|
|
985
|
+
[key: string]: any;
|
|
986
|
+
};
|
|
987
|
+
constructor(map?: {
|
|
988
|
+
[key: string]: any;
|
|
989
|
+
});
|
|
990
|
+
}
|
|
991
|
+
export declare class GetOtaTaskByTaskIdResponseBody extends $tea.Model {
|
|
992
|
+
code?: string;
|
|
993
|
+
message?: string;
|
|
994
|
+
otaVersion?: string;
|
|
995
|
+
releaseNote?: string;
|
|
996
|
+
requestId?: string;
|
|
997
|
+
taskStartTime?: string;
|
|
998
|
+
static names(): {
|
|
999
|
+
[key: string]: string;
|
|
1000
|
+
};
|
|
1001
|
+
static types(): {
|
|
1002
|
+
[key: string]: any;
|
|
1003
|
+
};
|
|
1004
|
+
constructor(map?: {
|
|
1005
|
+
[key: string]: any;
|
|
1006
|
+
});
|
|
1007
|
+
}
|
|
1008
|
+
export declare class GetOtaTaskByTaskIdResponse extends $tea.Model {
|
|
1009
|
+
headers: {
|
|
1010
|
+
[key: string]: string;
|
|
1011
|
+
};
|
|
1012
|
+
statusCode: number;
|
|
1013
|
+
body: GetOtaTaskByTaskIdResponseBody;
|
|
1014
|
+
static names(): {
|
|
1015
|
+
[key: string]: string;
|
|
1016
|
+
};
|
|
1017
|
+
static types(): {
|
|
1018
|
+
[key: string]: any;
|
|
1019
|
+
};
|
|
1020
|
+
constructor(map?: {
|
|
1021
|
+
[key: string]: any;
|
|
1022
|
+
});
|
|
1023
|
+
}
|
|
1024
|
+
export declare class GetProjectPoliciesRequest extends $tea.Model {
|
|
1025
|
+
projectId?: string;
|
|
1026
|
+
static names(): {
|
|
1027
|
+
[key: string]: string;
|
|
1028
|
+
};
|
|
1029
|
+
static types(): {
|
|
1030
|
+
[key: string]: any;
|
|
1031
|
+
};
|
|
1032
|
+
constructor(map?: {
|
|
1033
|
+
[key: string]: any;
|
|
1034
|
+
});
|
|
1035
|
+
}
|
|
1036
|
+
export declare class GetProjectPoliciesResponseBody extends $tea.Model {
|
|
1037
|
+
code?: string;
|
|
1038
|
+
data?: GetProjectPoliciesResponseBodyData;
|
|
1039
|
+
message?: string;
|
|
1040
|
+
requestId?: string;
|
|
1041
|
+
success?: string;
|
|
1042
|
+
static names(): {
|
|
1043
|
+
[key: string]: string;
|
|
1044
|
+
};
|
|
1045
|
+
static types(): {
|
|
1046
|
+
[key: string]: any;
|
|
1047
|
+
};
|
|
1048
|
+
constructor(map?: {
|
|
1049
|
+
[key: string]: any;
|
|
1050
|
+
});
|
|
1051
|
+
}
|
|
1052
|
+
export declare class GetProjectPoliciesResponse extends $tea.Model {
|
|
1053
|
+
headers: {
|
|
1054
|
+
[key: string]: string;
|
|
1055
|
+
};
|
|
1056
|
+
statusCode: number;
|
|
1057
|
+
body: GetProjectPoliciesResponseBody;
|
|
1058
|
+
static names(): {
|
|
1059
|
+
[key: string]: string;
|
|
1060
|
+
};
|
|
1061
|
+
static types(): {
|
|
1062
|
+
[key: string]: any;
|
|
1063
|
+
};
|
|
1064
|
+
constructor(map?: {
|
|
1065
|
+
[key: string]: any;
|
|
1066
|
+
});
|
|
1067
|
+
}
|
|
1068
|
+
export declare class GetResourcePriceRequest extends $tea.Model {
|
|
1069
|
+
amount?: number;
|
|
1070
|
+
appInstanceType?: string;
|
|
1071
|
+
bizRegionId?: string;
|
|
1072
|
+
chargeType?: string;
|
|
1073
|
+
nodeInstanceType?: string;
|
|
1074
|
+
period?: number;
|
|
1075
|
+
periodUnit?: string;
|
|
1076
|
+
productType?: string;
|
|
1077
|
+
static names(): {
|
|
1078
|
+
[key: string]: string;
|
|
1079
|
+
};
|
|
1080
|
+
static types(): {
|
|
1081
|
+
[key: string]: any;
|
|
1082
|
+
};
|
|
1083
|
+
constructor(map?: {
|
|
1084
|
+
[key: string]: any;
|
|
1085
|
+
});
|
|
1086
|
+
}
|
|
1087
|
+
export declare class GetResourcePriceResponseBody extends $tea.Model {
|
|
1088
|
+
code?: string;
|
|
1089
|
+
message?: string;
|
|
1090
|
+
priceList?: GetResourcePriceResponseBodyPriceList[];
|
|
1091
|
+
priceModel?: GetResourcePriceResponseBodyPriceModel;
|
|
1092
|
+
requestId?: string;
|
|
1093
|
+
static names(): {
|
|
1094
|
+
[key: string]: string;
|
|
1095
|
+
};
|
|
1096
|
+
static types(): {
|
|
1097
|
+
[key: string]: any;
|
|
1098
|
+
};
|
|
1099
|
+
constructor(map?: {
|
|
1100
|
+
[key: string]: any;
|
|
1101
|
+
});
|
|
1102
|
+
}
|
|
1103
|
+
export declare class GetResourcePriceResponse extends $tea.Model {
|
|
1104
|
+
headers: {
|
|
1105
|
+
[key: string]: string;
|
|
1106
|
+
};
|
|
1107
|
+
statusCode: number;
|
|
1108
|
+
body: GetResourcePriceResponseBody;
|
|
588
1109
|
static names(): {
|
|
589
1110
|
[key: string]: string;
|
|
590
1111
|
};
|
|
@@ -597,9 +1118,257 @@ export declare class GetResourcePriceResponse extends $tea.Model {
|
|
|
597
1118
|
}
|
|
598
1119
|
export declare class GetResourceRenewPriceRequest extends $tea.Model {
|
|
599
1120
|
appInstanceGroupId?: string;
|
|
600
|
-
period?: number;
|
|
601
|
-
periodUnit?: string;
|
|
602
|
-
productType?: string;
|
|
1121
|
+
period?: number;
|
|
1122
|
+
periodUnit?: string;
|
|
1123
|
+
productType?: string;
|
|
1124
|
+
static names(): {
|
|
1125
|
+
[key: string]: string;
|
|
1126
|
+
};
|
|
1127
|
+
static types(): {
|
|
1128
|
+
[key: string]: any;
|
|
1129
|
+
};
|
|
1130
|
+
constructor(map?: {
|
|
1131
|
+
[key: string]: any;
|
|
1132
|
+
});
|
|
1133
|
+
}
|
|
1134
|
+
export declare class GetResourceRenewPriceResponseBody extends $tea.Model {
|
|
1135
|
+
data?: GetResourceRenewPriceResponseBodyData;
|
|
1136
|
+
requestId?: string;
|
|
1137
|
+
static names(): {
|
|
1138
|
+
[key: string]: string;
|
|
1139
|
+
};
|
|
1140
|
+
static types(): {
|
|
1141
|
+
[key: string]: any;
|
|
1142
|
+
};
|
|
1143
|
+
constructor(map?: {
|
|
1144
|
+
[key: string]: any;
|
|
1145
|
+
});
|
|
1146
|
+
}
|
|
1147
|
+
export declare class GetResourceRenewPriceResponse extends $tea.Model {
|
|
1148
|
+
headers: {
|
|
1149
|
+
[key: string]: string;
|
|
1150
|
+
};
|
|
1151
|
+
statusCode: number;
|
|
1152
|
+
body: GetResourceRenewPriceResponseBody;
|
|
1153
|
+
static names(): {
|
|
1154
|
+
[key: string]: string;
|
|
1155
|
+
};
|
|
1156
|
+
static types(): {
|
|
1157
|
+
[key: string]: any;
|
|
1158
|
+
};
|
|
1159
|
+
constructor(map?: {
|
|
1160
|
+
[key: string]: any;
|
|
1161
|
+
});
|
|
1162
|
+
}
|
|
1163
|
+
export declare class ListAccessPagesRequest extends $tea.Model {
|
|
1164
|
+
accessPageId?: string;
|
|
1165
|
+
accessPageName?: string;
|
|
1166
|
+
pageNumber?: number;
|
|
1167
|
+
pageSize?: number;
|
|
1168
|
+
projectId?: string;
|
|
1169
|
+
sortType?: string;
|
|
1170
|
+
static names(): {
|
|
1171
|
+
[key: string]: string;
|
|
1172
|
+
};
|
|
1173
|
+
static types(): {
|
|
1174
|
+
[key: string]: any;
|
|
1175
|
+
};
|
|
1176
|
+
constructor(map?: {
|
|
1177
|
+
[key: string]: any;
|
|
1178
|
+
});
|
|
1179
|
+
}
|
|
1180
|
+
export declare class ListAccessPagesResponseBody extends $tea.Model {
|
|
1181
|
+
code?: string;
|
|
1182
|
+
count?: string;
|
|
1183
|
+
data?: ListAccessPagesResponseBodyData[];
|
|
1184
|
+
message?: string;
|
|
1185
|
+
pageNumber?: string;
|
|
1186
|
+
pageSize?: string;
|
|
1187
|
+
requestId?: string;
|
|
1188
|
+
success?: string;
|
|
1189
|
+
static names(): {
|
|
1190
|
+
[key: string]: string;
|
|
1191
|
+
};
|
|
1192
|
+
static types(): {
|
|
1193
|
+
[key: string]: any;
|
|
1194
|
+
};
|
|
1195
|
+
constructor(map?: {
|
|
1196
|
+
[key: string]: any;
|
|
1197
|
+
});
|
|
1198
|
+
}
|
|
1199
|
+
export declare class ListAccessPagesResponse extends $tea.Model {
|
|
1200
|
+
headers: {
|
|
1201
|
+
[key: string]: string;
|
|
1202
|
+
};
|
|
1203
|
+
statusCode: number;
|
|
1204
|
+
body: ListAccessPagesResponseBody;
|
|
1205
|
+
static names(): {
|
|
1206
|
+
[key: string]: string;
|
|
1207
|
+
};
|
|
1208
|
+
static types(): {
|
|
1209
|
+
[key: string]: any;
|
|
1210
|
+
};
|
|
1211
|
+
constructor(map?: {
|
|
1212
|
+
[key: string]: any;
|
|
1213
|
+
});
|
|
1214
|
+
}
|
|
1215
|
+
export declare class ListAppInstanceGroupRequest extends $tea.Model {
|
|
1216
|
+
appCenterImageId?: string;
|
|
1217
|
+
appInstanceGroupId?: string;
|
|
1218
|
+
appInstanceGroupName?: string;
|
|
1219
|
+
bizRegionId?: string;
|
|
1220
|
+
nodeInstanceType?: string;
|
|
1221
|
+
pageNumber?: number;
|
|
1222
|
+
pageSize?: number;
|
|
1223
|
+
productType?: string;
|
|
1224
|
+
status?: string[];
|
|
1225
|
+
static names(): {
|
|
1226
|
+
[key: string]: string;
|
|
1227
|
+
};
|
|
1228
|
+
static types(): {
|
|
1229
|
+
[key: string]: any;
|
|
1230
|
+
};
|
|
1231
|
+
constructor(map?: {
|
|
1232
|
+
[key: string]: any;
|
|
1233
|
+
});
|
|
1234
|
+
}
|
|
1235
|
+
export declare class ListAppInstanceGroupResponseBody extends $tea.Model {
|
|
1236
|
+
appInstanceGroupModels?: ListAppInstanceGroupResponseBodyAppInstanceGroupModels[];
|
|
1237
|
+
pageNumber?: number;
|
|
1238
|
+
pageSize?: number;
|
|
1239
|
+
requestId?: string;
|
|
1240
|
+
totalCount?: number;
|
|
1241
|
+
static names(): {
|
|
1242
|
+
[key: string]: string;
|
|
1243
|
+
};
|
|
1244
|
+
static types(): {
|
|
1245
|
+
[key: string]: any;
|
|
1246
|
+
};
|
|
1247
|
+
constructor(map?: {
|
|
1248
|
+
[key: string]: any;
|
|
1249
|
+
});
|
|
1250
|
+
}
|
|
1251
|
+
export declare class ListAppInstanceGroupResponse extends $tea.Model {
|
|
1252
|
+
headers: {
|
|
1253
|
+
[key: string]: string;
|
|
1254
|
+
};
|
|
1255
|
+
statusCode: number;
|
|
1256
|
+
body: ListAppInstanceGroupResponseBody;
|
|
1257
|
+
static names(): {
|
|
1258
|
+
[key: string]: string;
|
|
1259
|
+
};
|
|
1260
|
+
static types(): {
|
|
1261
|
+
[key: string]: any;
|
|
1262
|
+
};
|
|
1263
|
+
constructor(map?: {
|
|
1264
|
+
[key: string]: any;
|
|
1265
|
+
});
|
|
1266
|
+
}
|
|
1267
|
+
export declare class ListAppInstancesRequest extends $tea.Model {
|
|
1268
|
+
appInstanceGroupId?: string;
|
|
1269
|
+
appInstanceId?: string;
|
|
1270
|
+
appInstanceIdList?: string[];
|
|
1271
|
+
includeDeleted?: boolean;
|
|
1272
|
+
pageNumber?: number;
|
|
1273
|
+
pageSize?: number;
|
|
1274
|
+
status?: string[];
|
|
1275
|
+
static names(): {
|
|
1276
|
+
[key: string]: string;
|
|
1277
|
+
};
|
|
1278
|
+
static types(): {
|
|
1279
|
+
[key: string]: any;
|
|
1280
|
+
};
|
|
1281
|
+
constructor(map?: {
|
|
1282
|
+
[key: string]: any;
|
|
1283
|
+
});
|
|
1284
|
+
}
|
|
1285
|
+
export declare class ListAppInstancesResponseBody extends $tea.Model {
|
|
1286
|
+
appInstanceModels?: ListAppInstancesResponseBodyAppInstanceModels[];
|
|
1287
|
+
pageNumber?: number;
|
|
1288
|
+
pageSize?: number;
|
|
1289
|
+
requestId?: string;
|
|
1290
|
+
totalCount?: number;
|
|
1291
|
+
static names(): {
|
|
1292
|
+
[key: string]: string;
|
|
1293
|
+
};
|
|
1294
|
+
static types(): {
|
|
1295
|
+
[key: string]: any;
|
|
1296
|
+
};
|
|
1297
|
+
constructor(map?: {
|
|
1298
|
+
[key: string]: any;
|
|
1299
|
+
});
|
|
1300
|
+
}
|
|
1301
|
+
export declare class ListAppInstancesResponse extends $tea.Model {
|
|
1302
|
+
headers: {
|
|
1303
|
+
[key: string]: string;
|
|
1304
|
+
};
|
|
1305
|
+
statusCode: number;
|
|
1306
|
+
body: ListAppInstancesResponseBody;
|
|
1307
|
+
static names(): {
|
|
1308
|
+
[key: string]: string;
|
|
1309
|
+
};
|
|
1310
|
+
static types(): {
|
|
1311
|
+
[key: string]: any;
|
|
1312
|
+
};
|
|
1313
|
+
constructor(map?: {
|
|
1314
|
+
[key: string]: any;
|
|
1315
|
+
});
|
|
1316
|
+
}
|
|
1317
|
+
export declare class ListNodeInstanceTypeRequest extends $tea.Model {
|
|
1318
|
+
bizRegionId?: string;
|
|
1319
|
+
language?: string;
|
|
1320
|
+
nodeInstanceType?: string;
|
|
1321
|
+
osType?: string;
|
|
1322
|
+
pageNumber?: number;
|
|
1323
|
+
pageSize?: number;
|
|
1324
|
+
productType?: string;
|
|
1325
|
+
static names(): {
|
|
1326
|
+
[key: string]: string;
|
|
1327
|
+
};
|
|
1328
|
+
static types(): {
|
|
1329
|
+
[key: string]: any;
|
|
1330
|
+
};
|
|
1331
|
+
constructor(map?: {
|
|
1332
|
+
[key: string]: any;
|
|
1333
|
+
});
|
|
1334
|
+
}
|
|
1335
|
+
export declare class ListNodeInstanceTypeResponseBody extends $tea.Model {
|
|
1336
|
+
nodeInstanceTypeModels?: ListNodeInstanceTypeResponseBodyNodeInstanceTypeModels[];
|
|
1337
|
+
pageNumber?: number;
|
|
1338
|
+
pageSize?: number;
|
|
1339
|
+
requestId?: string;
|
|
1340
|
+
totalCount?: number;
|
|
1341
|
+
static names(): {
|
|
1342
|
+
[key: string]: string;
|
|
1343
|
+
};
|
|
1344
|
+
static types(): {
|
|
1345
|
+
[key: string]: any;
|
|
1346
|
+
};
|
|
1347
|
+
constructor(map?: {
|
|
1348
|
+
[key: string]: any;
|
|
1349
|
+
});
|
|
1350
|
+
}
|
|
1351
|
+
export declare class ListNodeInstanceTypeResponse extends $tea.Model {
|
|
1352
|
+
headers: {
|
|
1353
|
+
[key: string]: string;
|
|
1354
|
+
};
|
|
1355
|
+
statusCode: number;
|
|
1356
|
+
body: ListNodeInstanceTypeResponseBody;
|
|
1357
|
+
static names(): {
|
|
1358
|
+
[key: string]: string;
|
|
1359
|
+
};
|
|
1360
|
+
static types(): {
|
|
1361
|
+
[key: string]: any;
|
|
1362
|
+
};
|
|
1363
|
+
constructor(map?: {
|
|
1364
|
+
[key: string]: any;
|
|
1365
|
+
});
|
|
1366
|
+
}
|
|
1367
|
+
export declare class ListOtaTaskRequest extends $tea.Model {
|
|
1368
|
+
appInstanceGroupId?: string;
|
|
1369
|
+
otaType?: string;
|
|
1370
|
+
pageNumber?: number;
|
|
1371
|
+
pageSize?: number;
|
|
603
1372
|
static names(): {
|
|
604
1373
|
[key: string]: string;
|
|
605
1374
|
};
|
|
@@ -610,9 +1379,12 @@ export declare class GetResourceRenewPriceRequest extends $tea.Model {
|
|
|
610
1379
|
[key: string]: any;
|
|
611
1380
|
});
|
|
612
1381
|
}
|
|
613
|
-
export declare class
|
|
614
|
-
|
|
1382
|
+
export declare class ListOtaTaskResponseBody extends $tea.Model {
|
|
1383
|
+
pageNumber?: number;
|
|
1384
|
+
pageSize?: number;
|
|
615
1385
|
requestId?: string;
|
|
1386
|
+
taskList?: ListOtaTaskResponseBodyTaskList[];
|
|
1387
|
+
totalCount?: number;
|
|
616
1388
|
static names(): {
|
|
617
1389
|
[key: string]: string;
|
|
618
1390
|
};
|
|
@@ -623,12 +1395,12 @@ export declare class GetResourceRenewPriceResponseBody extends $tea.Model {
|
|
|
623
1395
|
[key: string]: any;
|
|
624
1396
|
});
|
|
625
1397
|
}
|
|
626
|
-
export declare class
|
|
1398
|
+
export declare class ListOtaTaskResponse extends $tea.Model {
|
|
627
1399
|
headers: {
|
|
628
1400
|
[key: string]: string;
|
|
629
1401
|
};
|
|
630
1402
|
statusCode: number;
|
|
631
|
-
body:
|
|
1403
|
+
body: ListOtaTaskResponseBody;
|
|
632
1404
|
static names(): {
|
|
633
1405
|
[key: string]: string;
|
|
634
1406
|
};
|
|
@@ -639,16 +1411,13 @@ export declare class GetResourceRenewPriceResponse extends $tea.Model {
|
|
|
639
1411
|
[key: string]: any;
|
|
640
1412
|
});
|
|
641
1413
|
}
|
|
642
|
-
export declare class
|
|
643
|
-
appCenterImageId?: string;
|
|
644
|
-
appInstanceGroupId?: string;
|
|
645
|
-
appInstanceGroupName?: string;
|
|
646
|
-
nodeInstanceType?: string;
|
|
1414
|
+
export declare class ListProjectsRequest extends $tea.Model {
|
|
647
1415
|
pageNumber?: number;
|
|
648
1416
|
pageSize?: number;
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
1417
|
+
projectId?: string;
|
|
1418
|
+
projectName?: string;
|
|
1419
|
+
sortType?: string;
|
|
1420
|
+
stateList?: number[];
|
|
652
1421
|
static names(): {
|
|
653
1422
|
[key: string]: string;
|
|
654
1423
|
};
|
|
@@ -659,11 +1428,14 @@ export declare class ListAppInstanceGroupRequest extends $tea.Model {
|
|
|
659
1428
|
[key: string]: any;
|
|
660
1429
|
});
|
|
661
1430
|
}
|
|
662
|
-
export declare class
|
|
663
|
-
|
|
1431
|
+
export declare class ListProjectsResponseBody extends $tea.Model {
|
|
1432
|
+
code?: string;
|
|
1433
|
+
data?: ListProjectsResponseBodyData[];
|
|
1434
|
+
message?: string;
|
|
664
1435
|
pageNumber?: number;
|
|
665
1436
|
pageSize?: number;
|
|
666
1437
|
requestId?: string;
|
|
1438
|
+
success?: string;
|
|
667
1439
|
totalCount?: number;
|
|
668
1440
|
static names(): {
|
|
669
1441
|
[key: string]: string;
|
|
@@ -675,12 +1447,12 @@ export declare class ListAppInstanceGroupResponseBody extends $tea.Model {
|
|
|
675
1447
|
[key: string]: any;
|
|
676
1448
|
});
|
|
677
1449
|
}
|
|
678
|
-
export declare class
|
|
1450
|
+
export declare class ListProjectsResponse extends $tea.Model {
|
|
679
1451
|
headers: {
|
|
680
1452
|
[key: string]: string;
|
|
681
1453
|
};
|
|
682
1454
|
statusCode: number;
|
|
683
|
-
body:
|
|
1455
|
+
body: ListProjectsResponseBody;
|
|
684
1456
|
static names(): {
|
|
685
1457
|
[key: string]: string;
|
|
686
1458
|
};
|
|
@@ -691,14 +1463,43 @@ export declare class ListAppInstanceGroupResponse extends $tea.Model {
|
|
|
691
1463
|
[key: string]: any;
|
|
692
1464
|
});
|
|
693
1465
|
}
|
|
694
|
-
export declare class
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
1466
|
+
export declare class ListRegionsResponseBody extends $tea.Model {
|
|
1467
|
+
regionModels?: ListRegionsResponseBodyRegionModels[];
|
|
1468
|
+
requestId?: string;
|
|
1469
|
+
static names(): {
|
|
1470
|
+
[key: string]: string;
|
|
1471
|
+
};
|
|
1472
|
+
static types(): {
|
|
1473
|
+
[key: string]: any;
|
|
1474
|
+
};
|
|
1475
|
+
constructor(map?: {
|
|
1476
|
+
[key: string]: any;
|
|
1477
|
+
});
|
|
1478
|
+
}
|
|
1479
|
+
export declare class ListRegionsResponse extends $tea.Model {
|
|
1480
|
+
headers: {
|
|
1481
|
+
[key: string]: string;
|
|
1482
|
+
};
|
|
1483
|
+
statusCode: number;
|
|
1484
|
+
body: ListRegionsResponseBody;
|
|
1485
|
+
static names(): {
|
|
1486
|
+
[key: string]: string;
|
|
1487
|
+
};
|
|
1488
|
+
static types(): {
|
|
1489
|
+
[key: string]: any;
|
|
1490
|
+
};
|
|
1491
|
+
constructor(map?: {
|
|
1492
|
+
[key: string]: any;
|
|
1493
|
+
});
|
|
1494
|
+
}
|
|
1495
|
+
export declare class ListSessionPackagesRequest extends $tea.Model {
|
|
699
1496
|
pageNumber?: number;
|
|
700
1497
|
pageSize?: number;
|
|
701
|
-
|
|
1498
|
+
projectId?: string;
|
|
1499
|
+
sessionPackageId?: string;
|
|
1500
|
+
sessionPackageName?: string;
|
|
1501
|
+
sortType?: string;
|
|
1502
|
+
stateList?: number[];
|
|
702
1503
|
static names(): {
|
|
703
1504
|
[key: string]: string;
|
|
704
1505
|
};
|
|
@@ -709,8 +1510,8 @@ export declare class ListAppInstancesRequest extends $tea.Model {
|
|
|
709
1510
|
[key: string]: any;
|
|
710
1511
|
});
|
|
711
1512
|
}
|
|
712
|
-
export declare class
|
|
713
|
-
|
|
1513
|
+
export declare class ListSessionPackagesResponseBody extends $tea.Model {
|
|
1514
|
+
data?: ListSessionPackagesResponseBodyData[];
|
|
714
1515
|
pageNumber?: number;
|
|
715
1516
|
pageSize?: number;
|
|
716
1517
|
requestId?: string;
|
|
@@ -725,12 +1526,12 @@ export declare class ListAppInstancesResponseBody extends $tea.Model {
|
|
|
725
1526
|
[key: string]: any;
|
|
726
1527
|
});
|
|
727
1528
|
}
|
|
728
|
-
export declare class
|
|
1529
|
+
export declare class ListSessionPackagesResponse extends $tea.Model {
|
|
729
1530
|
headers: {
|
|
730
1531
|
[key: string]: string;
|
|
731
1532
|
};
|
|
732
1533
|
statusCode: number;
|
|
733
|
-
body:
|
|
1534
|
+
body: ListSessionPackagesResponseBody;
|
|
734
1535
|
static names(): {
|
|
735
1536
|
[key: string]: string;
|
|
736
1537
|
};
|
|
@@ -741,13 +1542,37 @@ export declare class ListAppInstancesResponse extends $tea.Model {
|
|
|
741
1542
|
[key: string]: any;
|
|
742
1543
|
});
|
|
743
1544
|
}
|
|
744
|
-
export declare class
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
1545
|
+
export declare class ListTenantConfigResponseBody extends $tea.Model {
|
|
1546
|
+
requestId?: string;
|
|
1547
|
+
tenantConfigModel?: ListTenantConfigResponseBodyTenantConfigModel;
|
|
1548
|
+
static names(): {
|
|
1549
|
+
[key: string]: string;
|
|
1550
|
+
};
|
|
1551
|
+
static types(): {
|
|
1552
|
+
[key: string]: any;
|
|
1553
|
+
};
|
|
1554
|
+
constructor(map?: {
|
|
1555
|
+
[key: string]: any;
|
|
1556
|
+
});
|
|
1557
|
+
}
|
|
1558
|
+
export declare class ListTenantConfigResponse extends $tea.Model {
|
|
1559
|
+
headers: {
|
|
1560
|
+
[key: string]: string;
|
|
1561
|
+
};
|
|
1562
|
+
statusCode: number;
|
|
1563
|
+
body: ListTenantConfigResponseBody;
|
|
1564
|
+
static names(): {
|
|
1565
|
+
[key: string]: string;
|
|
1566
|
+
};
|
|
1567
|
+
static types(): {
|
|
1568
|
+
[key: string]: any;
|
|
1569
|
+
};
|
|
1570
|
+
constructor(map?: {
|
|
1571
|
+
[key: string]: any;
|
|
1572
|
+
});
|
|
1573
|
+
}
|
|
1574
|
+
export declare class LogOffAllSessionsInAppInstanceGroupRequest extends $tea.Model {
|
|
1575
|
+
appInstanceGroupId?: string;
|
|
751
1576
|
productType?: string;
|
|
752
1577
|
static names(): {
|
|
753
1578
|
[key: string]: string;
|
|
@@ -759,12 +1584,10 @@ export declare class ListNodeInstanceTypeRequest extends $tea.Model {
|
|
|
759
1584
|
[key: string]: any;
|
|
760
1585
|
});
|
|
761
1586
|
}
|
|
762
|
-
export declare class
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
pageSize?: number;
|
|
1587
|
+
export declare class LogOffAllSessionsInAppInstanceGroupResponseBody extends $tea.Model {
|
|
1588
|
+
code?: string;
|
|
1589
|
+
message?: string;
|
|
766
1590
|
requestId?: string;
|
|
767
|
-
totalCount?: number;
|
|
768
1591
|
static names(): {
|
|
769
1592
|
[key: string]: string;
|
|
770
1593
|
};
|
|
@@ -775,12 +1598,12 @@ export declare class ListNodeInstanceTypeResponseBody extends $tea.Model {
|
|
|
775
1598
|
[key: string]: any;
|
|
776
1599
|
});
|
|
777
1600
|
}
|
|
778
|
-
export declare class
|
|
1601
|
+
export declare class LogOffAllSessionsInAppInstanceGroupResponse extends $tea.Model {
|
|
779
1602
|
headers: {
|
|
780
1603
|
[key: string]: string;
|
|
781
1604
|
};
|
|
782
1605
|
statusCode: number;
|
|
783
|
-
body:
|
|
1606
|
+
body: LogOffAllSessionsInAppInstanceGroupResponseBody;
|
|
784
1607
|
static names(): {
|
|
785
1608
|
[key: string]: string;
|
|
786
1609
|
};
|
|
@@ -791,11 +1614,62 @@ export declare class ListNodeInstanceTypeResponse extends $tea.Model {
|
|
|
791
1614
|
[key: string]: any;
|
|
792
1615
|
});
|
|
793
1616
|
}
|
|
794
|
-
export declare class
|
|
1617
|
+
export declare class MigrateSessionPackageRequest extends $tea.Model {
|
|
1618
|
+
destProjectId?: string;
|
|
1619
|
+
sessionPackageId?: string;
|
|
1620
|
+
sourceProjectId?: string;
|
|
1621
|
+
static names(): {
|
|
1622
|
+
[key: string]: string;
|
|
1623
|
+
};
|
|
1624
|
+
static types(): {
|
|
1625
|
+
[key: string]: any;
|
|
1626
|
+
};
|
|
1627
|
+
constructor(map?: {
|
|
1628
|
+
[key: string]: any;
|
|
1629
|
+
});
|
|
1630
|
+
}
|
|
1631
|
+
export declare class MigrateSessionPackageResponseBody extends $tea.Model {
|
|
1632
|
+
code?: string;
|
|
1633
|
+
message?: string;
|
|
1634
|
+
requestId?: string;
|
|
1635
|
+
success?: boolean;
|
|
1636
|
+
static names(): {
|
|
1637
|
+
[key: string]: string;
|
|
1638
|
+
};
|
|
1639
|
+
static types(): {
|
|
1640
|
+
[key: string]: any;
|
|
1641
|
+
};
|
|
1642
|
+
constructor(map?: {
|
|
1643
|
+
[key: string]: any;
|
|
1644
|
+
});
|
|
1645
|
+
}
|
|
1646
|
+
export declare class MigrateSessionPackageResponse extends $tea.Model {
|
|
1647
|
+
headers: {
|
|
1648
|
+
[key: string]: string;
|
|
1649
|
+
};
|
|
1650
|
+
statusCode: number;
|
|
1651
|
+
body: MigrateSessionPackageResponseBody;
|
|
1652
|
+
static names(): {
|
|
1653
|
+
[key: string]: string;
|
|
1654
|
+
};
|
|
1655
|
+
static types(): {
|
|
1656
|
+
[key: string]: any;
|
|
1657
|
+
};
|
|
1658
|
+
constructor(map?: {
|
|
1659
|
+
[key: string]: any;
|
|
1660
|
+
});
|
|
1661
|
+
}
|
|
1662
|
+
export declare class ModifyAppInstanceGroupAttributeRequest extends $tea.Model {
|
|
795
1663
|
appInstanceGroupId?: string;
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
1664
|
+
appInstanceGroupName?: string;
|
|
1665
|
+
network?: ModifyAppInstanceGroupAttributeRequestNetwork;
|
|
1666
|
+
nodePool?: ModifyAppInstanceGroupAttributeRequestNodePool;
|
|
1667
|
+
preOpenAppId?: string;
|
|
1668
|
+
preOpenMode?: string;
|
|
1669
|
+
productType?: string;
|
|
1670
|
+
securityPolicy?: ModifyAppInstanceGroupAttributeRequestSecurityPolicy;
|
|
1671
|
+
sessionTimeout?: number;
|
|
1672
|
+
storagePolicy?: ModifyAppInstanceGroupAttributeRequestStoragePolicy;
|
|
799
1673
|
static names(): {
|
|
800
1674
|
[key: string]: string;
|
|
801
1675
|
};
|
|
@@ -806,12 +1680,31 @@ export declare class ListOtaTaskRequest extends $tea.Model {
|
|
|
806
1680
|
[key: string]: any;
|
|
807
1681
|
});
|
|
808
1682
|
}
|
|
809
|
-
export declare class
|
|
810
|
-
|
|
811
|
-
|
|
1683
|
+
export declare class ModifyAppInstanceGroupAttributeShrinkRequest extends $tea.Model {
|
|
1684
|
+
appInstanceGroupId?: string;
|
|
1685
|
+
appInstanceGroupName?: string;
|
|
1686
|
+
networkShrink?: string;
|
|
1687
|
+
nodePoolShrink?: string;
|
|
1688
|
+
preOpenAppId?: string;
|
|
1689
|
+
preOpenMode?: string;
|
|
1690
|
+
productType?: string;
|
|
1691
|
+
securityPolicyShrink?: string;
|
|
1692
|
+
sessionTimeout?: number;
|
|
1693
|
+
storagePolicyShrink?: string;
|
|
1694
|
+
static names(): {
|
|
1695
|
+
[key: string]: string;
|
|
1696
|
+
};
|
|
1697
|
+
static types(): {
|
|
1698
|
+
[key: string]: any;
|
|
1699
|
+
};
|
|
1700
|
+
constructor(map?: {
|
|
1701
|
+
[key: string]: any;
|
|
1702
|
+
});
|
|
1703
|
+
}
|
|
1704
|
+
export declare class ModifyAppInstanceGroupAttributeResponseBody extends $tea.Model {
|
|
1705
|
+
code?: string;
|
|
1706
|
+
message?: string;
|
|
812
1707
|
requestId?: string;
|
|
813
|
-
taskList?: ListOtaTaskResponseBodyTaskList[];
|
|
814
|
-
totalCount?: number;
|
|
815
1708
|
static names(): {
|
|
816
1709
|
[key: string]: string;
|
|
817
1710
|
};
|
|
@@ -822,12 +1715,12 @@ export declare class ListOtaTaskResponseBody extends $tea.Model {
|
|
|
822
1715
|
[key: string]: any;
|
|
823
1716
|
});
|
|
824
1717
|
}
|
|
825
|
-
export declare class
|
|
1718
|
+
export declare class ModifyAppInstanceGroupAttributeResponse extends $tea.Model {
|
|
826
1719
|
headers: {
|
|
827
1720
|
[key: string]: string;
|
|
828
1721
|
};
|
|
829
1722
|
statusCode: number;
|
|
830
|
-
body:
|
|
1723
|
+
body: ModifyAppInstanceGroupAttributeResponseBody;
|
|
831
1724
|
static names(): {
|
|
832
1725
|
[key: string]: string;
|
|
833
1726
|
};
|
|
@@ -838,8 +1731,41 @@ export declare class ListOtaTaskResponse extends $tea.Model {
|
|
|
838
1731
|
[key: string]: any;
|
|
839
1732
|
});
|
|
840
1733
|
}
|
|
841
|
-
export declare class
|
|
842
|
-
|
|
1734
|
+
export declare class ModifyNodePoolAttributeRequest extends $tea.Model {
|
|
1735
|
+
bizRegionId?: string;
|
|
1736
|
+
nodeCapacity?: number;
|
|
1737
|
+
nodePoolStrategy?: ModifyNodePoolAttributeRequestNodePoolStrategy;
|
|
1738
|
+
poolId?: string;
|
|
1739
|
+
productType?: string;
|
|
1740
|
+
static names(): {
|
|
1741
|
+
[key: string]: string;
|
|
1742
|
+
};
|
|
1743
|
+
static types(): {
|
|
1744
|
+
[key: string]: any;
|
|
1745
|
+
};
|
|
1746
|
+
constructor(map?: {
|
|
1747
|
+
[key: string]: any;
|
|
1748
|
+
});
|
|
1749
|
+
}
|
|
1750
|
+
export declare class ModifyNodePoolAttributeShrinkRequest extends $tea.Model {
|
|
1751
|
+
bizRegionId?: string;
|
|
1752
|
+
nodeCapacity?: number;
|
|
1753
|
+
nodePoolStrategyShrink?: string;
|
|
1754
|
+
poolId?: string;
|
|
1755
|
+
productType?: string;
|
|
1756
|
+
static names(): {
|
|
1757
|
+
[key: string]: string;
|
|
1758
|
+
};
|
|
1759
|
+
static types(): {
|
|
1760
|
+
[key: string]: any;
|
|
1761
|
+
};
|
|
1762
|
+
constructor(map?: {
|
|
1763
|
+
[key: string]: any;
|
|
1764
|
+
});
|
|
1765
|
+
}
|
|
1766
|
+
export declare class ModifyNodePoolAttributeResponseBody extends $tea.Model {
|
|
1767
|
+
code?: string;
|
|
1768
|
+
message?: string;
|
|
843
1769
|
requestId?: string;
|
|
844
1770
|
static names(): {
|
|
845
1771
|
[key: string]: string;
|
|
@@ -851,12 +1777,32 @@ export declare class ListRegionsResponseBody extends $tea.Model {
|
|
|
851
1777
|
[key: string]: any;
|
|
852
1778
|
});
|
|
853
1779
|
}
|
|
854
|
-
export declare class
|
|
855
|
-
headers: {
|
|
856
|
-
[key: string]: string;
|
|
857
|
-
};
|
|
858
|
-
statusCode: number;
|
|
859
|
-
body:
|
|
1780
|
+
export declare class ModifyNodePoolAttributeResponse extends $tea.Model {
|
|
1781
|
+
headers: {
|
|
1782
|
+
[key: string]: string;
|
|
1783
|
+
};
|
|
1784
|
+
statusCode: number;
|
|
1785
|
+
body: ModifyNodePoolAttributeResponseBody;
|
|
1786
|
+
static names(): {
|
|
1787
|
+
[key: string]: string;
|
|
1788
|
+
};
|
|
1789
|
+
static types(): {
|
|
1790
|
+
[key: string]: any;
|
|
1791
|
+
};
|
|
1792
|
+
constructor(map?: {
|
|
1793
|
+
[key: string]: any;
|
|
1794
|
+
});
|
|
1795
|
+
}
|
|
1796
|
+
export declare class ModifyProjectPolicyRequest extends $tea.Model {
|
|
1797
|
+
clipboard?: number;
|
|
1798
|
+
fileTransfer?: number;
|
|
1799
|
+
frameRate?: number;
|
|
1800
|
+
keepAliveDuration?: number;
|
|
1801
|
+
projectId?: string;
|
|
1802
|
+
sessionResolutionHeight?: number;
|
|
1803
|
+
sessionResolutionWidth?: number;
|
|
1804
|
+
streamingMode?: string;
|
|
1805
|
+
terminalResolutionAdaptation?: boolean;
|
|
860
1806
|
static names(): {
|
|
861
1807
|
[key: string]: string;
|
|
862
1808
|
};
|
|
@@ -867,9 +1813,12 @@ export declare class ListRegionsResponse extends $tea.Model {
|
|
|
867
1813
|
[key: string]: any;
|
|
868
1814
|
});
|
|
869
1815
|
}
|
|
870
|
-
export declare class
|
|
1816
|
+
export declare class ModifyProjectPolicyResponseBody extends $tea.Model {
|
|
1817
|
+
code?: string;
|
|
1818
|
+
data?: string;
|
|
1819
|
+
message?: string;
|
|
871
1820
|
requestId?: string;
|
|
872
|
-
|
|
1821
|
+
success?: string;
|
|
873
1822
|
static names(): {
|
|
874
1823
|
[key: string]: string;
|
|
875
1824
|
};
|
|
@@ -880,12 +1829,12 @@ export declare class ListTenantConfigResponseBody extends $tea.Model {
|
|
|
880
1829
|
[key: string]: any;
|
|
881
1830
|
});
|
|
882
1831
|
}
|
|
883
|
-
export declare class
|
|
1832
|
+
export declare class ModifyProjectPolicyResponse extends $tea.Model {
|
|
884
1833
|
headers: {
|
|
885
1834
|
[key: string]: string;
|
|
886
1835
|
};
|
|
887
1836
|
statusCode: number;
|
|
888
|
-
body:
|
|
1837
|
+
body: ModifyProjectPolicyResponseBody;
|
|
889
1838
|
static names(): {
|
|
890
1839
|
[key: string]: string;
|
|
891
1840
|
};
|
|
@@ -896,9 +1845,8 @@ export declare class ListTenantConfigResponse extends $tea.Model {
|
|
|
896
1845
|
[key: string]: any;
|
|
897
1846
|
});
|
|
898
1847
|
}
|
|
899
|
-
export declare class
|
|
900
|
-
|
|
901
|
-
productType?: string;
|
|
1848
|
+
export declare class ModifyTenantConfigRequest extends $tea.Model {
|
|
1849
|
+
appInstanceGroupExpireRemind?: boolean;
|
|
902
1850
|
static names(): {
|
|
903
1851
|
[key: string]: string;
|
|
904
1852
|
};
|
|
@@ -909,9 +1857,7 @@ export declare class LogOffAllSessionsInAppInstanceGroupRequest extends $tea.Mod
|
|
|
909
1857
|
[key: string]: any;
|
|
910
1858
|
});
|
|
911
1859
|
}
|
|
912
|
-
export declare class
|
|
913
|
-
code?: string;
|
|
914
|
-
message?: string;
|
|
1860
|
+
export declare class ModifyTenantConfigResponseBody extends $tea.Model {
|
|
915
1861
|
requestId?: string;
|
|
916
1862
|
static names(): {
|
|
917
1863
|
[key: string]: string;
|
|
@@ -923,12 +1869,12 @@ export declare class LogOffAllSessionsInAppInstanceGroupResponseBody extends $te
|
|
|
923
1869
|
[key: string]: any;
|
|
924
1870
|
});
|
|
925
1871
|
}
|
|
926
|
-
export declare class
|
|
1872
|
+
export declare class ModifyTenantConfigResponse extends $tea.Model {
|
|
927
1873
|
headers: {
|
|
928
1874
|
[key: string]: string;
|
|
929
1875
|
};
|
|
930
1876
|
statusCode: number;
|
|
931
|
-
body:
|
|
1877
|
+
body: ModifyTenantConfigResponseBody;
|
|
932
1878
|
static names(): {
|
|
933
1879
|
[key: string]: string;
|
|
934
1880
|
};
|
|
@@ -939,17 +1885,11 @@ export declare class LogOffAllSessionsInAppInstanceGroupResponse extends $tea.Mo
|
|
|
939
1885
|
[key: string]: any;
|
|
940
1886
|
});
|
|
941
1887
|
}
|
|
942
|
-
export declare class
|
|
1888
|
+
export declare class PageListAppInstanceGroupUserRequest extends $tea.Model {
|
|
943
1889
|
appInstanceGroupId?: string;
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
nodePool?: ModifyAppInstanceGroupAttributeRequestNodePool;
|
|
947
|
-
preOpenAppId?: string;
|
|
948
|
-
preOpenMode?: string;
|
|
1890
|
+
pageNumber?: number;
|
|
1891
|
+
pageSize?: number;
|
|
949
1892
|
productType?: string;
|
|
950
|
-
securityPolicy?: ModifyAppInstanceGroupAttributeRequestSecurityPolicy;
|
|
951
|
-
sessionTimeout?: number;
|
|
952
|
-
storagePolicy?: ModifyAppInstanceGroupAttributeRequestStoragePolicy;
|
|
953
1893
|
static names(): {
|
|
954
1894
|
[key: string]: string;
|
|
955
1895
|
};
|
|
@@ -960,17 +1900,9 @@ export declare class ModifyAppInstanceGroupAttributeRequest extends $tea.Model {
|
|
|
960
1900
|
[key: string]: any;
|
|
961
1901
|
});
|
|
962
1902
|
}
|
|
963
|
-
export declare class
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
networkShrink?: string;
|
|
967
|
-
nodePoolShrink?: string;
|
|
968
|
-
preOpenAppId?: string;
|
|
969
|
-
preOpenMode?: string;
|
|
970
|
-
productType?: string;
|
|
971
|
-
securityPolicyShrink?: string;
|
|
972
|
-
sessionTimeout?: number;
|
|
973
|
-
storagePolicyShrink?: string;
|
|
1903
|
+
export declare class PageListAppInstanceGroupUserResponseBody extends $tea.Model {
|
|
1904
|
+
requestId?: string;
|
|
1905
|
+
users?: string[];
|
|
974
1906
|
static names(): {
|
|
975
1907
|
[key: string]: string;
|
|
976
1908
|
};
|
|
@@ -981,10 +1913,12 @@ export declare class ModifyAppInstanceGroupAttributeShrinkRequest extends $tea.M
|
|
|
981
1913
|
[key: string]: any;
|
|
982
1914
|
});
|
|
983
1915
|
}
|
|
984
|
-
export declare class
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
1916
|
+
export declare class PageListAppInstanceGroupUserResponse extends $tea.Model {
|
|
1917
|
+
headers: {
|
|
1918
|
+
[key: string]: string;
|
|
1919
|
+
};
|
|
1920
|
+
statusCode: number;
|
|
1921
|
+
body: PageListAppInstanceGroupUserResponseBody;
|
|
988
1922
|
static names(): {
|
|
989
1923
|
[key: string]: string;
|
|
990
1924
|
};
|
|
@@ -995,12 +1929,24 @@ export declare class ModifyAppInstanceGroupAttributeResponseBody extends $tea.Mo
|
|
|
995
1929
|
[key: string]: any;
|
|
996
1930
|
});
|
|
997
1931
|
}
|
|
998
|
-
export declare class
|
|
999
|
-
|
|
1932
|
+
export declare class RefreshAccessUrlRequest extends $tea.Model {
|
|
1933
|
+
accessPageId?: string;
|
|
1934
|
+
static names(): {
|
|
1000
1935
|
[key: string]: string;
|
|
1001
1936
|
};
|
|
1002
|
-
|
|
1003
|
-
|
|
1937
|
+
static types(): {
|
|
1938
|
+
[key: string]: any;
|
|
1939
|
+
};
|
|
1940
|
+
constructor(map?: {
|
|
1941
|
+
[key: string]: any;
|
|
1942
|
+
});
|
|
1943
|
+
}
|
|
1944
|
+
export declare class RefreshAccessUrlResponseBody extends $tea.Model {
|
|
1945
|
+
accessUrl?: string;
|
|
1946
|
+
code?: string;
|
|
1947
|
+
message?: string;
|
|
1948
|
+
requestId?: string;
|
|
1949
|
+
success?: string;
|
|
1004
1950
|
static names(): {
|
|
1005
1951
|
[key: string]: string;
|
|
1006
1952
|
};
|
|
@@ -1011,12 +1957,12 @@ export declare class ModifyAppInstanceGroupAttributeResponse extends $tea.Model
|
|
|
1011
1957
|
[key: string]: any;
|
|
1012
1958
|
});
|
|
1013
1959
|
}
|
|
1014
|
-
export declare class
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1960
|
+
export declare class RefreshAccessUrlResponse extends $tea.Model {
|
|
1961
|
+
headers: {
|
|
1962
|
+
[key: string]: string;
|
|
1963
|
+
};
|
|
1964
|
+
statusCode: number;
|
|
1965
|
+
body: RefreshAccessUrlResponseBody;
|
|
1020
1966
|
static names(): {
|
|
1021
1967
|
[key: string]: string;
|
|
1022
1968
|
};
|
|
@@ -1027,12 +1973,13 @@ export declare class ModifyNodePoolAttributeRequest extends $tea.Model {
|
|
|
1027
1973
|
[key: string]: any;
|
|
1028
1974
|
});
|
|
1029
1975
|
}
|
|
1030
|
-
export declare class
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1976
|
+
export declare class RenewAppInstanceGroupRequest extends $tea.Model {
|
|
1977
|
+
appInstanceGroupId?: string;
|
|
1978
|
+
autoPay?: boolean;
|
|
1979
|
+
period?: number;
|
|
1980
|
+
periodUnit?: string;
|
|
1035
1981
|
productType?: string;
|
|
1982
|
+
promotionId?: string;
|
|
1036
1983
|
static names(): {
|
|
1037
1984
|
[key: string]: string;
|
|
1038
1985
|
};
|
|
@@ -1043,9 +1990,10 @@ export declare class ModifyNodePoolAttributeShrinkRequest extends $tea.Model {
|
|
|
1043
1990
|
[key: string]: any;
|
|
1044
1991
|
});
|
|
1045
1992
|
}
|
|
1046
|
-
export declare class
|
|
1993
|
+
export declare class RenewAppInstanceGroupResponseBody extends $tea.Model {
|
|
1047
1994
|
code?: string;
|
|
1048
1995
|
message?: string;
|
|
1996
|
+
orderId?: string;
|
|
1049
1997
|
requestId?: string;
|
|
1050
1998
|
static names(): {
|
|
1051
1999
|
[key: string]: string;
|
|
@@ -1057,12 +2005,12 @@ export declare class ModifyNodePoolAttributeResponseBody extends $tea.Model {
|
|
|
1057
2005
|
[key: string]: any;
|
|
1058
2006
|
});
|
|
1059
2007
|
}
|
|
1060
|
-
export declare class
|
|
2008
|
+
export declare class RenewAppInstanceGroupResponse extends $tea.Model {
|
|
1061
2009
|
headers: {
|
|
1062
2010
|
[key: string]: string;
|
|
1063
2011
|
};
|
|
1064
2012
|
statusCode: number;
|
|
1065
|
-
body:
|
|
2013
|
+
body: RenewAppInstanceGroupResponseBody;
|
|
1066
2014
|
static names(): {
|
|
1067
2015
|
[key: string]: string;
|
|
1068
2016
|
};
|
|
@@ -1073,8 +2021,10 @@ export declare class ModifyNodePoolAttributeResponse extends $tea.Model {
|
|
|
1073
2021
|
[key: string]: any;
|
|
1074
2022
|
});
|
|
1075
2023
|
}
|
|
1076
|
-
export declare class
|
|
1077
|
-
|
|
2024
|
+
export declare class RenewSessionPackageRequest extends $tea.Model {
|
|
2025
|
+
period?: number;
|
|
2026
|
+
periodUnit?: string;
|
|
2027
|
+
sessionPackageId?: string;
|
|
1078
2028
|
static names(): {
|
|
1079
2029
|
[key: string]: string;
|
|
1080
2030
|
};
|
|
@@ -1085,8 +2035,12 @@ export declare class ModifyTenantConfigRequest extends $tea.Model {
|
|
|
1085
2035
|
[key: string]: any;
|
|
1086
2036
|
});
|
|
1087
2037
|
}
|
|
1088
|
-
export declare class
|
|
2038
|
+
export declare class RenewSessionPackageResponseBody extends $tea.Model {
|
|
2039
|
+
code?: string;
|
|
2040
|
+
message?: string;
|
|
1089
2041
|
requestId?: string;
|
|
2042
|
+
sessionPackageId?: number;
|
|
2043
|
+
success?: string;
|
|
1090
2044
|
static names(): {
|
|
1091
2045
|
[key: string]: string;
|
|
1092
2046
|
};
|
|
@@ -1097,12 +2051,12 @@ export declare class ModifyTenantConfigResponseBody extends $tea.Model {
|
|
|
1097
2051
|
[key: string]: any;
|
|
1098
2052
|
});
|
|
1099
2053
|
}
|
|
1100
|
-
export declare class
|
|
2054
|
+
export declare class RenewSessionPackageResponse extends $tea.Model {
|
|
1101
2055
|
headers: {
|
|
1102
2056
|
[key: string]: string;
|
|
1103
2057
|
};
|
|
1104
2058
|
statusCode: number;
|
|
1105
|
-
body:
|
|
2059
|
+
body: RenewSessionPackageResponseBody;
|
|
1106
2060
|
static names(): {
|
|
1107
2061
|
[key: string]: string;
|
|
1108
2062
|
};
|
|
@@ -1113,10 +2067,11 @@ export declare class ModifyTenantConfigResponse extends $tea.Model {
|
|
|
1113
2067
|
[key: string]: any;
|
|
1114
2068
|
});
|
|
1115
2069
|
}
|
|
1116
|
-
export declare class
|
|
2070
|
+
export declare class UnbindRequest extends $tea.Model {
|
|
1117
2071
|
appInstanceGroupId?: string;
|
|
1118
|
-
|
|
1119
|
-
|
|
2072
|
+
appInstanceId?: string;
|
|
2073
|
+
appInstancePersistentId?: string;
|
|
2074
|
+
endUserId?: string;
|
|
1120
2075
|
productType?: string;
|
|
1121
2076
|
static names(): {
|
|
1122
2077
|
[key: string]: string;
|
|
@@ -1128,9 +2083,8 @@ export declare class PageListAppInstanceGroupUserRequest extends $tea.Model {
|
|
|
1128
2083
|
[key: string]: any;
|
|
1129
2084
|
});
|
|
1130
2085
|
}
|
|
1131
|
-
export declare class
|
|
2086
|
+
export declare class UnbindResponseBody extends $tea.Model {
|
|
1132
2087
|
requestId?: string;
|
|
1133
|
-
users?: string[];
|
|
1134
2088
|
static names(): {
|
|
1135
2089
|
[key: string]: string;
|
|
1136
2090
|
};
|
|
@@ -1141,12 +2095,12 @@ export declare class PageListAppInstanceGroupUserResponseBody extends $tea.Model
|
|
|
1141
2095
|
[key: string]: any;
|
|
1142
2096
|
});
|
|
1143
2097
|
}
|
|
1144
|
-
export declare class
|
|
2098
|
+
export declare class UnbindResponse extends $tea.Model {
|
|
1145
2099
|
headers: {
|
|
1146
2100
|
[key: string]: string;
|
|
1147
2101
|
};
|
|
1148
2102
|
statusCode: number;
|
|
1149
|
-
body:
|
|
2103
|
+
body: UnbindResponseBody;
|
|
1150
2104
|
static names(): {
|
|
1151
2105
|
[key: string]: string;
|
|
1152
2106
|
};
|
|
@@ -1157,13 +2111,9 @@ export declare class PageListAppInstanceGroupUserResponse extends $tea.Model {
|
|
|
1157
2111
|
[key: string]: any;
|
|
1158
2112
|
});
|
|
1159
2113
|
}
|
|
1160
|
-
export declare class
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
period?: number;
|
|
1164
|
-
periodUnit?: string;
|
|
1165
|
-
productType?: string;
|
|
1166
|
-
promotionId?: string;
|
|
2114
|
+
export declare class UpdateAccessPageStateRequest extends $tea.Model {
|
|
2115
|
+
accessPageId?: string;
|
|
2116
|
+
accessPageState?: number;
|
|
1167
2117
|
static names(): {
|
|
1168
2118
|
[key: string]: string;
|
|
1169
2119
|
};
|
|
@@ -1174,11 +2124,11 @@ export declare class RenewAppInstanceGroupRequest extends $tea.Model {
|
|
|
1174
2124
|
[key: string]: any;
|
|
1175
2125
|
});
|
|
1176
2126
|
}
|
|
1177
|
-
export declare class
|
|
2127
|
+
export declare class UpdateAccessPageStateResponseBody extends $tea.Model {
|
|
1178
2128
|
code?: string;
|
|
1179
2129
|
message?: string;
|
|
1180
|
-
orderId?: string;
|
|
1181
2130
|
requestId?: string;
|
|
2131
|
+
success?: string;
|
|
1182
2132
|
static names(): {
|
|
1183
2133
|
[key: string]: string;
|
|
1184
2134
|
};
|
|
@@ -1189,12 +2139,12 @@ export declare class RenewAppInstanceGroupResponseBody extends $tea.Model {
|
|
|
1189
2139
|
[key: string]: any;
|
|
1190
2140
|
});
|
|
1191
2141
|
}
|
|
1192
|
-
export declare class
|
|
2142
|
+
export declare class UpdateAccessPageStateResponse extends $tea.Model {
|
|
1193
2143
|
headers: {
|
|
1194
2144
|
[key: string]: string;
|
|
1195
2145
|
};
|
|
1196
2146
|
statusCode: number;
|
|
1197
|
-
body:
|
|
2147
|
+
body: UpdateAccessPageStateResponseBody;
|
|
1198
2148
|
static names(): {
|
|
1199
2149
|
[key: string]: string;
|
|
1200
2150
|
};
|
|
@@ -1205,10 +2155,10 @@ export declare class RenewAppInstanceGroupResponse extends $tea.Model {
|
|
|
1205
2155
|
[key: string]: any;
|
|
1206
2156
|
});
|
|
1207
2157
|
}
|
|
1208
|
-
export declare class
|
|
2158
|
+
export declare class UpdateAppInstanceGroupImageRequest extends $tea.Model {
|
|
2159
|
+
appCenterImageId?: string;
|
|
1209
2160
|
appInstanceGroupId?: string;
|
|
1210
|
-
|
|
1211
|
-
endUserId?: string;
|
|
2161
|
+
bizRegionId?: string;
|
|
1212
2162
|
productType?: string;
|
|
1213
2163
|
static names(): {
|
|
1214
2164
|
[key: string]: string;
|
|
@@ -1220,7 +2170,9 @@ export declare class UnbindRequest extends $tea.Model {
|
|
|
1220
2170
|
[key: string]: any;
|
|
1221
2171
|
});
|
|
1222
2172
|
}
|
|
1223
|
-
export declare class
|
|
2173
|
+
export declare class UpdateAppInstanceGroupImageResponseBody extends $tea.Model {
|
|
2174
|
+
code?: string;
|
|
2175
|
+
message?: string;
|
|
1224
2176
|
requestId?: string;
|
|
1225
2177
|
static names(): {
|
|
1226
2178
|
[key: string]: string;
|
|
@@ -1232,12 +2184,12 @@ export declare class UnbindResponseBody extends $tea.Model {
|
|
|
1232
2184
|
[key: string]: any;
|
|
1233
2185
|
});
|
|
1234
2186
|
}
|
|
1235
|
-
export declare class
|
|
2187
|
+
export declare class UpdateAppInstanceGroupImageResponse extends $tea.Model {
|
|
1236
2188
|
headers: {
|
|
1237
2189
|
[key: string]: string;
|
|
1238
2190
|
};
|
|
1239
2191
|
statusCode: number;
|
|
1240
|
-
body:
|
|
2192
|
+
body: UpdateAppInstanceGroupImageResponseBody;
|
|
1241
2193
|
static names(): {
|
|
1242
2194
|
[key: string]: string;
|
|
1243
2195
|
};
|
|
@@ -1248,11 +2200,12 @@ export declare class UnbindResponse extends $tea.Model {
|
|
|
1248
2200
|
[key: string]: any;
|
|
1249
2201
|
});
|
|
1250
2202
|
}
|
|
1251
|
-
export declare class
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
2203
|
+
export declare class AccessPageGetAclResponseBodyData extends $tea.Model {
|
|
2204
|
+
accessMode?: string;
|
|
2205
|
+
accessUrl?: string;
|
|
2206
|
+
effectTime?: number;
|
|
2207
|
+
unit?: string;
|
|
2208
|
+
urlExpireTime?: string;
|
|
1256
2209
|
static names(): {
|
|
1257
2210
|
[key: string]: string;
|
|
1258
2211
|
};
|
|
@@ -1263,10 +2216,11 @@ export declare class UpdateAppInstanceGroupImageRequest extends $tea.Model {
|
|
|
1263
2216
|
[key: string]: any;
|
|
1264
2217
|
});
|
|
1265
2218
|
}
|
|
1266
|
-
export declare class
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
2219
|
+
export declare class AskSessionPackagePriceResponseBodyDataPrice extends $tea.Model {
|
|
2220
|
+
currency?: string;
|
|
2221
|
+
discountPrice?: number;
|
|
2222
|
+
originalPrice?: number;
|
|
2223
|
+
tradePrice?: number;
|
|
1270
2224
|
static names(): {
|
|
1271
2225
|
[key: string]: string;
|
|
1272
2226
|
};
|
|
@@ -1277,12 +2231,35 @@ export declare class UpdateAppInstanceGroupImageResponseBody extends $tea.Model
|
|
|
1277
2231
|
[key: string]: any;
|
|
1278
2232
|
});
|
|
1279
2233
|
}
|
|
1280
|
-
export declare class
|
|
1281
|
-
|
|
2234
|
+
export declare class AskSessionPackagePriceResponseBodyData extends $tea.Model {
|
|
2235
|
+
price?: AskSessionPackagePriceResponseBodyDataPrice;
|
|
2236
|
+
static names(): {
|
|
1282
2237
|
[key: string]: string;
|
|
1283
2238
|
};
|
|
1284
|
-
|
|
1285
|
-
|
|
2239
|
+
static types(): {
|
|
2240
|
+
[key: string]: any;
|
|
2241
|
+
};
|
|
2242
|
+
constructor(map?: {
|
|
2243
|
+
[key: string]: any;
|
|
2244
|
+
});
|
|
2245
|
+
}
|
|
2246
|
+
export declare class AskSessionPackageRenewPriceResponseBodyDataPrice extends $tea.Model {
|
|
2247
|
+
currency?: string;
|
|
2248
|
+
discountPrice?: number;
|
|
2249
|
+
originalPrice?: number;
|
|
2250
|
+
tradePrice?: number;
|
|
2251
|
+
static names(): {
|
|
2252
|
+
[key: string]: string;
|
|
2253
|
+
};
|
|
2254
|
+
static types(): {
|
|
2255
|
+
[key: string]: any;
|
|
2256
|
+
};
|
|
2257
|
+
constructor(map?: {
|
|
2258
|
+
[key: string]: any;
|
|
2259
|
+
});
|
|
2260
|
+
}
|
|
2261
|
+
export declare class AskSessionPackageRenewPriceResponseBodyData extends $tea.Model {
|
|
2262
|
+
price?: AskSessionPackageRenewPriceResponseBodyDataPrice;
|
|
1286
2263
|
static names(): {
|
|
1287
2264
|
[key: string]: string;
|
|
1288
2265
|
};
|
|
@@ -1464,9 +2441,25 @@ export declare class DeleteAppInstancesResponseBodyDeleteAppInstanceModels exten
|
|
|
1464
2441
|
[key: string]: any;
|
|
1465
2442
|
});
|
|
1466
2443
|
}
|
|
2444
|
+
export declare class GetAccessPageSessionResponseBodyData extends $tea.Model {
|
|
2445
|
+
connectTicket?: string;
|
|
2446
|
+
flowId?: string;
|
|
2447
|
+
static names(): {
|
|
2448
|
+
[key: string]: string;
|
|
2449
|
+
};
|
|
2450
|
+
static types(): {
|
|
2451
|
+
[key: string]: any;
|
|
2452
|
+
};
|
|
2453
|
+
constructor(map?: {
|
|
2454
|
+
[key: string]: any;
|
|
2455
|
+
});
|
|
2456
|
+
}
|
|
1467
2457
|
export declare class GetAppInstanceGroupResponseBodyAppInstanceGroupModelsApps extends $tea.Model {
|
|
2458
|
+
appIcon?: string;
|
|
1468
2459
|
appId?: string;
|
|
1469
2460
|
appName?: string;
|
|
2461
|
+
appVersion?: string;
|
|
2462
|
+
appVersionName?: string;
|
|
1470
2463
|
static names(): {
|
|
1471
2464
|
[key: string]: string;
|
|
1472
2465
|
};
|
|
@@ -1590,6 +2583,29 @@ export declare class GetAppInstanceGroupResponseBodyAppInstanceGroupModels exten
|
|
|
1590
2583
|
[key: string]: any;
|
|
1591
2584
|
});
|
|
1592
2585
|
}
|
|
2586
|
+
export declare class GetProjectPoliciesResponseBodyData extends $tea.Model {
|
|
2587
|
+
clipboard?: number;
|
|
2588
|
+
fileTransfer?: number;
|
|
2589
|
+
frameRate?: string;
|
|
2590
|
+
keepAliveDuration?: number;
|
|
2591
|
+
maxHours?: number;
|
|
2592
|
+
maxSessions?: number;
|
|
2593
|
+
projectId?: string;
|
|
2594
|
+
sessionResolutionHeight?: number;
|
|
2595
|
+
sessionResolutionWidth?: number;
|
|
2596
|
+
sessionSpec?: string;
|
|
2597
|
+
streamingMode?: string;
|
|
2598
|
+
terminalResolutionAdaptation?: boolean;
|
|
2599
|
+
static names(): {
|
|
2600
|
+
[key: string]: string;
|
|
2601
|
+
};
|
|
2602
|
+
static types(): {
|
|
2603
|
+
[key: string]: any;
|
|
2604
|
+
};
|
|
2605
|
+
constructor(map?: {
|
|
2606
|
+
[key: string]: any;
|
|
2607
|
+
});
|
|
2608
|
+
}
|
|
1593
2609
|
export declare class GetResourcePriceResponseBodyPriceListPricePromotions extends $tea.Model {
|
|
1594
2610
|
optionCode?: string;
|
|
1595
2611
|
promotionDesc?: string;
|
|
@@ -1765,6 +2781,30 @@ export declare class GetResourceRenewPriceResponseBodyData extends $tea.Model {
|
|
|
1765
2781
|
[key: string]: any;
|
|
1766
2782
|
});
|
|
1767
2783
|
}
|
|
2784
|
+
export declare class ListAccessPagesResponseBodyData extends $tea.Model {
|
|
2785
|
+
accessMode?: string;
|
|
2786
|
+
accessPageId?: string;
|
|
2787
|
+
accessPageName?: string;
|
|
2788
|
+
accessPageState?: string;
|
|
2789
|
+
accessUrl?: string;
|
|
2790
|
+
contentId?: string;
|
|
2791
|
+
contentName?: string;
|
|
2792
|
+
effectTime?: number;
|
|
2793
|
+
gmtCreate?: string;
|
|
2794
|
+
projectId?: string;
|
|
2795
|
+
projectName?: string;
|
|
2796
|
+
unit?: string;
|
|
2797
|
+
urlExpireTime?: string;
|
|
2798
|
+
static names(): {
|
|
2799
|
+
[key: string]: string;
|
|
2800
|
+
};
|
|
2801
|
+
static types(): {
|
|
2802
|
+
[key: string]: any;
|
|
2803
|
+
};
|
|
2804
|
+
constructor(map?: {
|
|
2805
|
+
[key: string]: any;
|
|
2806
|
+
});
|
|
2807
|
+
}
|
|
1768
2808
|
export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModelsApps extends $tea.Model {
|
|
1769
2809
|
appIcon?: string;
|
|
1770
2810
|
appId?: string;
|
|
@@ -1958,6 +2998,30 @@ export declare class ListOtaTaskResponseBodyTaskList extends $tea.Model {
|
|
|
1958
2998
|
[key: string]: any;
|
|
1959
2999
|
});
|
|
1960
3000
|
}
|
|
3001
|
+
export declare class ListProjectsResponseBodyData extends $tea.Model {
|
|
3002
|
+
accessPageId?: number[];
|
|
3003
|
+
availableHours?: number;
|
|
3004
|
+
contentId?: string;
|
|
3005
|
+
contentName?: string;
|
|
3006
|
+
createTime?: string;
|
|
3007
|
+
description?: string;
|
|
3008
|
+
inUseSessions?: number;
|
|
3009
|
+
maxHours?: number;
|
|
3010
|
+
maxSessions?: number;
|
|
3011
|
+
projectId?: string;
|
|
3012
|
+
projectName?: string;
|
|
3013
|
+
projectState?: string;
|
|
3014
|
+
sessionSpec?: string;
|
|
3015
|
+
static names(): {
|
|
3016
|
+
[key: string]: string;
|
|
3017
|
+
};
|
|
3018
|
+
static types(): {
|
|
3019
|
+
[key: string]: any;
|
|
3020
|
+
};
|
|
3021
|
+
constructor(map?: {
|
|
3022
|
+
[key: string]: any;
|
|
3023
|
+
});
|
|
3024
|
+
}
|
|
1961
3025
|
export declare class ListRegionsResponseBodyRegionModels extends $tea.Model {
|
|
1962
3026
|
regionId?: string;
|
|
1963
3027
|
static names(): {
|
|
@@ -1970,6 +3034,54 @@ export declare class ListRegionsResponseBodyRegionModels extends $tea.Model {
|
|
|
1970
3034
|
[key: string]: any;
|
|
1971
3035
|
});
|
|
1972
3036
|
}
|
|
3037
|
+
export declare class ListSessionPackagesResponseBodyDataInstanceObject extends $tea.Model {
|
|
3038
|
+
expiredTime?: string;
|
|
3039
|
+
instanceId?: string;
|
|
3040
|
+
instanceType?: string;
|
|
3041
|
+
resourceId?: string;
|
|
3042
|
+
resourceType?: string;
|
|
3043
|
+
startTime?: string;
|
|
3044
|
+
totalTime?: number;
|
|
3045
|
+
usedTime?: number;
|
|
3046
|
+
static names(): {
|
|
3047
|
+
[key: string]: string;
|
|
3048
|
+
};
|
|
3049
|
+
static types(): {
|
|
3050
|
+
[key: string]: any;
|
|
3051
|
+
};
|
|
3052
|
+
constructor(map?: {
|
|
3053
|
+
[key: string]: any;
|
|
3054
|
+
});
|
|
3055
|
+
}
|
|
3056
|
+
export declare class ListSessionPackagesResponseBodyData extends $tea.Model {
|
|
3057
|
+
availableHours?: number;
|
|
3058
|
+
chargeType?: string;
|
|
3059
|
+
deleteStatus?: number;
|
|
3060
|
+
gmtCreate?: string;
|
|
3061
|
+
gmtModifiedTime?: string;
|
|
3062
|
+
instanceObject?: ListSessionPackagesResponseBodyDataInstanceObject;
|
|
3063
|
+
maxHours?: number;
|
|
3064
|
+
maxSessions?: number;
|
|
3065
|
+
projectId?: string;
|
|
3066
|
+
projectName?: string;
|
|
3067
|
+
region?: string;
|
|
3068
|
+
sessionPackageId?: string;
|
|
3069
|
+
sessionPackageName?: string;
|
|
3070
|
+
sessionPackageTypeId?: string;
|
|
3071
|
+
sessionSpec?: string;
|
|
3072
|
+
sessionUsageRate?: number;
|
|
3073
|
+
state?: number;
|
|
3074
|
+
userIdentification?: number;
|
|
3075
|
+
static names(): {
|
|
3076
|
+
[key: string]: string;
|
|
3077
|
+
};
|
|
3078
|
+
static types(): {
|
|
3079
|
+
[key: string]: any;
|
|
3080
|
+
};
|
|
3081
|
+
constructor(map?: {
|
|
3082
|
+
[key: string]: any;
|
|
3083
|
+
});
|
|
3084
|
+
}
|
|
1973
3085
|
export declare class ListTenantConfigResponseBodyTenantConfigModel extends $tea.Model {
|
|
1974
3086
|
appInstanceGroupExpireRemind?: boolean;
|
|
1975
3087
|
static names(): {
|
|
@@ -2099,20 +3211,40 @@ export default class Client extends OpenApi {
|
|
|
2099
3211
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
2100
3212
|
[key: string]: string;
|
|
2101
3213
|
}, endpoint: string): string;
|
|
3214
|
+
accessPageGetAclWithOptions(request: AccessPageGetAclRequest, runtime: $Util.RuntimeOptions): Promise<AccessPageGetAclResponse>;
|
|
3215
|
+
accessPageGetAcl(request: AccessPageGetAclRequest): Promise<AccessPageGetAclResponse>;
|
|
3216
|
+
accessPageSetAclWithOptions(request: AccessPageSetAclRequest, runtime: $Util.RuntimeOptions): Promise<AccessPageSetAclResponse>;
|
|
3217
|
+
accessPageSetAcl(request: AccessPageSetAclRequest): Promise<AccessPageSetAclResponse>;
|
|
2102
3218
|
approveOtaTaskWithOptions(request: ApproveOtaTaskRequest, runtime: $Util.RuntimeOptions): Promise<ApproveOtaTaskResponse>;
|
|
2103
3219
|
approveOtaTask(request: ApproveOtaTaskRequest): Promise<ApproveOtaTaskResponse>;
|
|
3220
|
+
askSessionPackagePriceWithOptions(request: AskSessionPackagePriceRequest, runtime: $Util.RuntimeOptions): Promise<AskSessionPackagePriceResponse>;
|
|
3221
|
+
askSessionPackagePrice(request: AskSessionPackagePriceRequest): Promise<AskSessionPackagePriceResponse>;
|
|
3222
|
+
askSessionPackageRenewPriceWithOptions(request: AskSessionPackageRenewPriceRequest, runtime: $Util.RuntimeOptions): Promise<AskSessionPackageRenewPriceResponse>;
|
|
3223
|
+
askSessionPackageRenewPrice(request: AskSessionPackageRenewPriceRequest): Promise<AskSessionPackageRenewPriceResponse>;
|
|
2104
3224
|
authorizeInstanceGroupWithOptions(request: AuthorizeInstanceGroupRequest, runtime: $Util.RuntimeOptions): Promise<AuthorizeInstanceGroupResponse>;
|
|
2105
3225
|
authorizeInstanceGroup(request: AuthorizeInstanceGroupRequest): Promise<AuthorizeInstanceGroupResponse>;
|
|
3226
|
+
buySessionPackageWithOptions(request: BuySessionPackageRequest, runtime: $Util.RuntimeOptions): Promise<BuySessionPackageResponse>;
|
|
3227
|
+
buySessionPackage(request: BuySessionPackageRequest): Promise<BuySessionPackageResponse>;
|
|
2106
3228
|
cancelOtaTaskWithOptions(request: CancelOtaTaskRequest, runtime: $Util.RuntimeOptions): Promise<CancelOtaTaskResponse>;
|
|
2107
3229
|
cancelOtaTask(request: CancelOtaTaskRequest): Promise<CancelOtaTaskResponse>;
|
|
3230
|
+
createAccessPageWithOptions(request: CreateAccessPageRequest, runtime: $Util.RuntimeOptions): Promise<CreateAccessPageResponse>;
|
|
3231
|
+
createAccessPage(request: CreateAccessPageRequest): Promise<CreateAccessPageResponse>;
|
|
2108
3232
|
createAppInstanceGroupWithOptions(tmpReq: CreateAppInstanceGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateAppInstanceGroupResponse>;
|
|
2109
3233
|
createAppInstanceGroup(request: CreateAppInstanceGroupRequest): Promise<CreateAppInstanceGroupResponse>;
|
|
2110
3234
|
createImageFromAppInstanceGroupWithOptions(request: CreateImageFromAppInstanceGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateImageFromAppInstanceGroupResponse>;
|
|
2111
3235
|
createImageFromAppInstanceGroup(request: CreateImageFromAppInstanceGroupRequest): Promise<CreateImageFromAppInstanceGroupResponse>;
|
|
3236
|
+
createProjectWithOptions(request: CreateProjectRequest, runtime: $Util.RuntimeOptions): Promise<CreateProjectResponse>;
|
|
3237
|
+
createProject(request: CreateProjectRequest): Promise<CreateProjectResponse>;
|
|
3238
|
+
deleteAccessPageWithOptions(request: DeleteAccessPageRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAccessPageResponse>;
|
|
3239
|
+
deleteAccessPage(request: DeleteAccessPageRequest): Promise<DeleteAccessPageResponse>;
|
|
2112
3240
|
deleteAppInstanceGroupWithOptions(request: DeleteAppInstanceGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAppInstanceGroupResponse>;
|
|
2113
3241
|
deleteAppInstanceGroup(request: DeleteAppInstanceGroupRequest): Promise<DeleteAppInstanceGroupResponse>;
|
|
2114
3242
|
deleteAppInstancesWithOptions(request: DeleteAppInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAppInstancesResponse>;
|
|
2115
3243
|
deleteAppInstances(request: DeleteAppInstancesRequest): Promise<DeleteAppInstancesResponse>;
|
|
3244
|
+
deleteProjectWithOptions(request: DeleteProjectRequest, runtime: $Util.RuntimeOptions): Promise<DeleteProjectResponse>;
|
|
3245
|
+
deleteProject(request: DeleteProjectRequest): Promise<DeleteProjectResponse>;
|
|
3246
|
+
getAccessPageSessionWithOptions(request: GetAccessPageSessionRequest, runtime: $Util.RuntimeOptions): Promise<GetAccessPageSessionResponse>;
|
|
3247
|
+
getAccessPageSession(request: GetAccessPageSessionRequest): Promise<GetAccessPageSessionResponse>;
|
|
2116
3248
|
getAppInstanceGroupWithOptions(request: GetAppInstanceGroupRequest, runtime: $Util.RuntimeOptions): Promise<GetAppInstanceGroupResponse>;
|
|
2117
3249
|
getAppInstanceGroup(request: GetAppInstanceGroupRequest): Promise<GetAppInstanceGroupResponse>;
|
|
2118
3250
|
getConnectionTicketWithOptions(request: GetConnectionTicketRequest, runtime: $Util.RuntimeOptions): Promise<GetConnectionTicketResponse>;
|
|
@@ -2121,10 +3253,14 @@ export default class Client extends OpenApi {
|
|
|
2121
3253
|
getDebugAppInstance(request: GetDebugAppInstanceRequest): Promise<GetDebugAppInstanceResponse>;
|
|
2122
3254
|
getOtaTaskByTaskIdWithOptions(request: GetOtaTaskByTaskIdRequest, runtime: $Util.RuntimeOptions): Promise<GetOtaTaskByTaskIdResponse>;
|
|
2123
3255
|
getOtaTaskByTaskId(request: GetOtaTaskByTaskIdRequest): Promise<GetOtaTaskByTaskIdResponse>;
|
|
3256
|
+
getProjectPoliciesWithOptions(request: GetProjectPoliciesRequest, runtime: $Util.RuntimeOptions): Promise<GetProjectPoliciesResponse>;
|
|
3257
|
+
getProjectPolicies(request: GetProjectPoliciesRequest): Promise<GetProjectPoliciesResponse>;
|
|
2124
3258
|
getResourcePriceWithOptions(request: GetResourcePriceRequest, runtime: $Util.RuntimeOptions): Promise<GetResourcePriceResponse>;
|
|
2125
3259
|
getResourcePrice(request: GetResourcePriceRequest): Promise<GetResourcePriceResponse>;
|
|
2126
3260
|
getResourceRenewPriceWithOptions(request: GetResourceRenewPriceRequest, runtime: $Util.RuntimeOptions): Promise<GetResourceRenewPriceResponse>;
|
|
2127
3261
|
getResourceRenewPrice(request: GetResourceRenewPriceRequest): Promise<GetResourceRenewPriceResponse>;
|
|
3262
|
+
listAccessPagesWithOptions(request: ListAccessPagesRequest, runtime: $Util.RuntimeOptions): Promise<ListAccessPagesResponse>;
|
|
3263
|
+
listAccessPages(request: ListAccessPagesRequest): Promise<ListAccessPagesResponse>;
|
|
2128
3264
|
listAppInstanceGroupWithOptions(request: ListAppInstanceGroupRequest, runtime: $Util.RuntimeOptions): Promise<ListAppInstanceGroupResponse>;
|
|
2129
3265
|
listAppInstanceGroup(request: ListAppInstanceGroupRequest): Promise<ListAppInstanceGroupResponse>;
|
|
2130
3266
|
listAppInstancesWithOptions(request: ListAppInstancesRequest, runtime: $Util.RuntimeOptions): Promise<ListAppInstancesResponse>;
|
|
@@ -2133,24 +3269,38 @@ export default class Client extends OpenApi {
|
|
|
2133
3269
|
listNodeInstanceType(request: ListNodeInstanceTypeRequest): Promise<ListNodeInstanceTypeResponse>;
|
|
2134
3270
|
listOtaTaskWithOptions(request: ListOtaTaskRequest, runtime: $Util.RuntimeOptions): Promise<ListOtaTaskResponse>;
|
|
2135
3271
|
listOtaTask(request: ListOtaTaskRequest): Promise<ListOtaTaskResponse>;
|
|
3272
|
+
listProjectsWithOptions(request: ListProjectsRequest, runtime: $Util.RuntimeOptions): Promise<ListProjectsResponse>;
|
|
3273
|
+
listProjects(request: ListProjectsRequest): Promise<ListProjectsResponse>;
|
|
2136
3274
|
listRegionsWithOptions(runtime: $Util.RuntimeOptions): Promise<ListRegionsResponse>;
|
|
2137
3275
|
listRegions(): Promise<ListRegionsResponse>;
|
|
3276
|
+
listSessionPackagesWithOptions(request: ListSessionPackagesRequest, runtime: $Util.RuntimeOptions): Promise<ListSessionPackagesResponse>;
|
|
3277
|
+
listSessionPackages(request: ListSessionPackagesRequest): Promise<ListSessionPackagesResponse>;
|
|
2138
3278
|
listTenantConfigWithOptions(runtime: $Util.RuntimeOptions): Promise<ListTenantConfigResponse>;
|
|
2139
3279
|
listTenantConfig(): Promise<ListTenantConfigResponse>;
|
|
2140
3280
|
logOffAllSessionsInAppInstanceGroupWithOptions(request: LogOffAllSessionsInAppInstanceGroupRequest, runtime: $Util.RuntimeOptions): Promise<LogOffAllSessionsInAppInstanceGroupResponse>;
|
|
2141
3281
|
logOffAllSessionsInAppInstanceGroup(request: LogOffAllSessionsInAppInstanceGroupRequest): Promise<LogOffAllSessionsInAppInstanceGroupResponse>;
|
|
3282
|
+
migrateSessionPackageWithOptions(request: MigrateSessionPackageRequest, runtime: $Util.RuntimeOptions): Promise<MigrateSessionPackageResponse>;
|
|
3283
|
+
migrateSessionPackage(request: MigrateSessionPackageRequest): Promise<MigrateSessionPackageResponse>;
|
|
2142
3284
|
modifyAppInstanceGroupAttributeWithOptions(tmpReq: ModifyAppInstanceGroupAttributeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAppInstanceGroupAttributeResponse>;
|
|
2143
3285
|
modifyAppInstanceGroupAttribute(request: ModifyAppInstanceGroupAttributeRequest): Promise<ModifyAppInstanceGroupAttributeResponse>;
|
|
2144
3286
|
modifyNodePoolAttributeWithOptions(tmpReq: ModifyNodePoolAttributeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyNodePoolAttributeResponse>;
|
|
2145
3287
|
modifyNodePoolAttribute(request: ModifyNodePoolAttributeRequest): Promise<ModifyNodePoolAttributeResponse>;
|
|
3288
|
+
modifyProjectPolicyWithOptions(request: ModifyProjectPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ModifyProjectPolicyResponse>;
|
|
3289
|
+
modifyProjectPolicy(request: ModifyProjectPolicyRequest): Promise<ModifyProjectPolicyResponse>;
|
|
2146
3290
|
modifyTenantConfigWithOptions(request: ModifyTenantConfigRequest, runtime: $Util.RuntimeOptions): Promise<ModifyTenantConfigResponse>;
|
|
2147
3291
|
modifyTenantConfig(request: ModifyTenantConfigRequest): Promise<ModifyTenantConfigResponse>;
|
|
2148
3292
|
pageListAppInstanceGroupUserWithOptions(request: PageListAppInstanceGroupUserRequest, runtime: $Util.RuntimeOptions): Promise<PageListAppInstanceGroupUserResponse>;
|
|
2149
3293
|
pageListAppInstanceGroupUser(request: PageListAppInstanceGroupUserRequest): Promise<PageListAppInstanceGroupUserResponse>;
|
|
3294
|
+
refreshAccessUrlWithOptions(request: RefreshAccessUrlRequest, runtime: $Util.RuntimeOptions): Promise<RefreshAccessUrlResponse>;
|
|
3295
|
+
refreshAccessUrl(request: RefreshAccessUrlRequest): Promise<RefreshAccessUrlResponse>;
|
|
2150
3296
|
renewAppInstanceGroupWithOptions(request: RenewAppInstanceGroupRequest, runtime: $Util.RuntimeOptions): Promise<RenewAppInstanceGroupResponse>;
|
|
2151
3297
|
renewAppInstanceGroup(request: RenewAppInstanceGroupRequest): Promise<RenewAppInstanceGroupResponse>;
|
|
3298
|
+
renewSessionPackageWithOptions(request: RenewSessionPackageRequest, runtime: $Util.RuntimeOptions): Promise<RenewSessionPackageResponse>;
|
|
3299
|
+
renewSessionPackage(request: RenewSessionPackageRequest): Promise<RenewSessionPackageResponse>;
|
|
2152
3300
|
unbindWithOptions(request: UnbindRequest, runtime: $Util.RuntimeOptions): Promise<UnbindResponse>;
|
|
2153
3301
|
unbind(request: UnbindRequest): Promise<UnbindResponse>;
|
|
3302
|
+
updateAccessPageStateWithOptions(request: UpdateAccessPageStateRequest, runtime: $Util.RuntimeOptions): Promise<UpdateAccessPageStateResponse>;
|
|
3303
|
+
updateAccessPageState(request: UpdateAccessPageStateRequest): Promise<UpdateAccessPageStateResponse>;
|
|
2154
3304
|
updateAppInstanceGroupImageWithOptions(request: UpdateAppInstanceGroupImageRequest, runtime: $Util.RuntimeOptions): Promise<UpdateAppInstanceGroupImageResponse>;
|
|
2155
3305
|
updateAppInstanceGroupImage(request: UpdateAppInstanceGroupImageRequest): Promise<UpdateAppInstanceGroupImageResponse>;
|
|
2156
3306
|
}
|