@alicloud/sae20190506 2.12.3 → 2.12.4
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 +8 -8
- package/dist/client.js +23 -8
- package/dist/client.js.map +1 -1
- package/dist/models/CreateApplicationRequest.d.ts +232 -333
- package/dist/models/CreateApplicationRequest.js +29 -1
- package/dist/models/CreateApplicationRequest.js.map +1 -1
- package/dist/models/CreateApplicationResponseBody.d.ts +14 -21
- package/dist/models/CreateApplicationResponseBody.js.map +1 -1
- package/dist/models/CreateApplicationShrinkRequest.d.ts +217 -333
- package/dist/models/CreateApplicationShrinkRequest.js +2 -0
- package/dist/models/CreateApplicationShrinkRequest.js.map +1 -1
- package/dist/models/DeployApplicationRequest.d.ts +261 -382
- package/dist/models/DeployApplicationRequest.js +29 -1
- package/dist/models/DeployApplicationRequest.js.map +1 -1
- package/dist/models/DeployApplicationResponseBody.d.ts +20 -27
- package/dist/models/DeployApplicationResponseBody.js.map +1 -1
- package/dist/models/DeployApplicationShrinkRequest.d.ts +246 -382
- package/dist/models/DeployApplicationShrinkRequest.js +2 -0
- package/dist/models/DeployApplicationShrinkRequest.js.map +1 -1
- package/dist/models/DescribeApplicationConfigResponseBody.d.ts +299 -404
- package/dist/models/DescribeApplicationConfigResponseBody.js +29 -1
- package/dist/models/DescribeApplicationConfigResponseBody.js.map +1 -1
- package/dist/models/ListApplicationsRequest.d.ts +42 -61
- package/dist/models/ListApplicationsRequest.js +2 -0
- package/dist/models/ListApplicationsRequest.js.map +1 -1
- package/dist/models/ListApplicationsResponseBody.d.ts +77 -101
- package/dist/models/ListApplicationsResponseBody.js +2 -0
- package/dist/models/ListApplicationsResponseBody.js.map +1 -1
- package/dist/models/model.d.ts +3 -0
- package/dist/models/model.js +37 -31
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +28 -8
- package/src/models/CreateApplicationRequest.ts +252 -334
- package/src/models/CreateApplicationResponseBody.ts +14 -21
- package/src/models/CreateApplicationShrinkRequest.ts +220 -334
- package/src/models/DeployApplicationRequest.ts +281 -383
- package/src/models/DeployApplicationResponseBody.ts +20 -27
- package/src/models/DeployApplicationShrinkRequest.ts +249 -383
- package/src/models/DescribeApplicationConfigResponseBody.ts +319 -405
- package/src/models/ListApplicationsRequest.ts +44 -61
- package/src/models/ListApplicationsResponseBody.ts +79 -101
- package/src/models/model.ts +3 -0
|
@@ -30,7 +30,7 @@ export declare class ListApplicationsResponseBodyDataApplicationsChildrenTags ex
|
|
|
30
30
|
export declare class ListApplicationsResponseBodyDataApplicationsChildren extends $dara.Model {
|
|
31
31
|
/**
|
|
32
32
|
* @remarks
|
|
33
|
-
* Indicates whether the
|
|
33
|
+
* Indicates whether the application is being deleted.
|
|
34
34
|
*
|
|
35
35
|
* @example
|
|
36
36
|
* false
|
|
@@ -46,7 +46,7 @@ export declare class ListApplicationsResponseBodyDataApplicationsChildren extend
|
|
|
46
46
|
appDescription?: string;
|
|
47
47
|
/**
|
|
48
48
|
* @remarks
|
|
49
|
-
* The ID
|
|
49
|
+
* The application ID.
|
|
50
50
|
*
|
|
51
51
|
* @example
|
|
52
52
|
* xxx-xxx-xxx-xxx
|
|
@@ -54,7 +54,7 @@ export declare class ListApplicationsResponseBodyDataApplicationsChildren extend
|
|
|
54
54
|
appId?: string;
|
|
55
55
|
/**
|
|
56
56
|
* @remarks
|
|
57
|
-
* The name
|
|
57
|
+
* The application name.
|
|
58
58
|
*
|
|
59
59
|
* @example
|
|
60
60
|
* app1
|
|
@@ -62,7 +62,7 @@ export declare class ListApplicationsResponseBodyDataApplicationsChildren extend
|
|
|
62
62
|
appName?: string;
|
|
63
63
|
/**
|
|
64
64
|
* @remarks
|
|
65
|
-
* The
|
|
65
|
+
* The deployment type of the application.
|
|
66
66
|
*
|
|
67
67
|
* @example
|
|
68
68
|
* Image
|
|
@@ -70,7 +70,7 @@ export declare class ListApplicationsResponseBodyDataApplicationsChildren extend
|
|
|
70
70
|
appType?: string;
|
|
71
71
|
/**
|
|
72
72
|
* @remarks
|
|
73
|
-
* The
|
|
73
|
+
* The base application ID.
|
|
74
74
|
*
|
|
75
75
|
* @example
|
|
76
76
|
* ee99cce6-1c8e-4bfa-96c3-3e2fa9******
|
|
@@ -78,7 +78,7 @@ export declare class ListApplicationsResponseBodyDataApplicationsChildren extend
|
|
|
78
78
|
baseAppId?: string;
|
|
79
79
|
/**
|
|
80
80
|
* @remarks
|
|
81
|
-
* The CPU
|
|
81
|
+
* The CPU size.
|
|
82
82
|
*
|
|
83
83
|
* @example
|
|
84
84
|
* 2000
|
|
@@ -86,12 +86,12 @@ export declare class ListApplicationsResponseBodyDataApplicationsChildren extend
|
|
|
86
86
|
cpu?: number;
|
|
87
87
|
/**
|
|
88
88
|
* @remarks
|
|
89
|
-
* Indicates
|
|
89
|
+
* Indicates whether idle mode is enabled.
|
|
90
90
|
*/
|
|
91
91
|
enableIdle?: string;
|
|
92
92
|
/**
|
|
93
93
|
* @remarks
|
|
94
|
-
* The
|
|
94
|
+
* The number of instances.
|
|
95
95
|
*
|
|
96
96
|
* @example
|
|
97
97
|
* 2
|
|
@@ -99,12 +99,12 @@ export declare class ListApplicationsResponseBodyDataApplicationsChildren extend
|
|
|
99
99
|
instances?: number;
|
|
100
100
|
/**
|
|
101
101
|
* @remarks
|
|
102
|
-
*
|
|
102
|
+
* Specifies whether the application is stateful.
|
|
103
103
|
*/
|
|
104
104
|
isStateful?: boolean;
|
|
105
105
|
/**
|
|
106
106
|
* @remarks
|
|
107
|
-
* The memory
|
|
107
|
+
* The memory size.
|
|
108
108
|
*
|
|
109
109
|
* @example
|
|
110
110
|
* 2048
|
|
@@ -112,7 +112,7 @@ export declare class ListApplicationsResponseBodyDataApplicationsChildren extend
|
|
|
112
112
|
mem?: number;
|
|
113
113
|
/**
|
|
114
114
|
* @remarks
|
|
115
|
-
* Indicates whether
|
|
115
|
+
* Indicates whether MSE microservice governance is enabled for the application.
|
|
116
116
|
*
|
|
117
117
|
* @example
|
|
118
118
|
* true
|
|
@@ -128,7 +128,7 @@ export declare class ListApplicationsResponseBodyDataApplicationsChildren extend
|
|
|
128
128
|
namespaceId?: string;
|
|
129
129
|
/**
|
|
130
130
|
* @remarks
|
|
131
|
-
* The name
|
|
131
|
+
* The namespace name.
|
|
132
132
|
*
|
|
133
133
|
* @example
|
|
134
134
|
* demo
|
|
@@ -136,13 +136,11 @@ export declare class ListApplicationsResponseBodyDataApplicationsChildren extend
|
|
|
136
136
|
namespaceName?: string;
|
|
137
137
|
/**
|
|
138
138
|
* @remarks
|
|
139
|
-
* The
|
|
140
|
-
*
|
|
141
|
-
* - lite: Lite
|
|
139
|
+
* The application version. Valid values:
|
|
142
140
|
*
|
|
143
|
-
* -
|
|
144
|
-
*
|
|
145
|
-
* - pro:
|
|
141
|
+
* - lite: Lite Edition
|
|
142
|
+
* - std: Standard Edition
|
|
143
|
+
* - pro: Professional Edition
|
|
146
144
|
*
|
|
147
145
|
* @example
|
|
148
146
|
* pro
|
|
@@ -179,7 +177,7 @@ export declare class ListApplicationsResponseBodyDataApplicationsChildren extend
|
|
|
179
177
|
runningInstances?: number;
|
|
180
178
|
/**
|
|
181
179
|
* @remarks
|
|
182
|
-
* Indicates whether
|
|
180
|
+
* Indicates whether the elastic scaling policy is enabled.
|
|
183
181
|
*
|
|
184
182
|
* @example
|
|
185
183
|
* false
|
|
@@ -187,7 +185,7 @@ export declare class ListApplicationsResponseBodyDataApplicationsChildren extend
|
|
|
187
185
|
scaleRuleEnabled?: boolean;
|
|
188
186
|
/**
|
|
189
187
|
* @remarks
|
|
190
|
-
* The type of the
|
|
188
|
+
* The type of the elastic scaling rule.
|
|
191
189
|
*
|
|
192
190
|
* @example
|
|
193
191
|
* timing
|
|
@@ -195,7 +193,7 @@ export declare class ListApplicationsResponseBodyDataApplicationsChildren extend
|
|
|
195
193
|
scaleRuleType?: string;
|
|
196
194
|
/**
|
|
197
195
|
* @remarks
|
|
198
|
-
*
|
|
196
|
+
* The application tags.
|
|
199
197
|
*/
|
|
200
198
|
tags?: ListApplicationsResponseBodyDataApplicationsChildrenTags[];
|
|
201
199
|
static names(): {
|
|
@@ -243,7 +241,6 @@ export declare class ListApplicationsResponseBodyDataApplications extends $dara.
|
|
|
243
241
|
* Indicates whether the application is being deleted. Valid values:
|
|
244
242
|
*
|
|
245
243
|
* - **true**: The application is being deleted.
|
|
246
|
-
*
|
|
247
244
|
* - **false**: The application is not being deleted.
|
|
248
245
|
*
|
|
249
246
|
* @example
|
|
@@ -252,7 +249,7 @@ export declare class ListApplicationsResponseBodyDataApplications extends $dara.
|
|
|
252
249
|
appDeletingStatus?: boolean;
|
|
253
250
|
/**
|
|
254
251
|
* @remarks
|
|
255
|
-
* The description
|
|
252
|
+
* The application description.
|
|
256
253
|
*
|
|
257
254
|
* @example
|
|
258
255
|
* description
|
|
@@ -260,7 +257,7 @@ export declare class ListApplicationsResponseBodyDataApplications extends $dara.
|
|
|
260
257
|
appDescription?: string;
|
|
261
258
|
/**
|
|
262
259
|
* @remarks
|
|
263
|
-
* The ID
|
|
260
|
+
* The application ID.
|
|
264
261
|
*
|
|
265
262
|
* @example
|
|
266
263
|
* f7730764-d88f-4b9a-8d8e-cd8efbfe****
|
|
@@ -276,7 +273,7 @@ export declare class ListApplicationsResponseBodyDataApplications extends $dara.
|
|
|
276
273
|
appName?: string;
|
|
277
274
|
/**
|
|
278
275
|
* @remarks
|
|
279
|
-
* The
|
|
276
|
+
* The deployment type of the application.
|
|
280
277
|
*
|
|
281
278
|
* @example
|
|
282
279
|
* Image
|
|
@@ -284,7 +281,7 @@ export declare class ListApplicationsResponseBodyDataApplications extends $dara.
|
|
|
284
281
|
appType?: string;
|
|
285
282
|
/**
|
|
286
283
|
* @remarks
|
|
287
|
-
* The
|
|
284
|
+
* The base application ID. This property exists only for canary release applications.
|
|
288
285
|
*
|
|
289
286
|
* @example
|
|
290
287
|
* xxx-xxx-xx-xxx
|
|
@@ -292,25 +289,19 @@ export declare class ListApplicationsResponseBodyDataApplications extends $dara.
|
|
|
292
289
|
baseAppId?: string;
|
|
293
290
|
/**
|
|
294
291
|
* @remarks
|
|
295
|
-
*
|
|
292
|
+
* The list of canary release applications for this application.
|
|
296
293
|
*/
|
|
297
294
|
children?: ListApplicationsResponseBodyDataApplicationsChildren[];
|
|
298
295
|
/**
|
|
299
296
|
* @remarks
|
|
300
|
-
* The CPU
|
|
297
|
+
* The CPU required for each instance, in millicores. This value cannot be 0. Only the following defined specifications are supported:
|
|
301
298
|
*
|
|
302
299
|
* - **500**
|
|
303
|
-
*
|
|
304
300
|
* - **1000**
|
|
305
|
-
*
|
|
306
301
|
* - **2000**
|
|
307
|
-
*
|
|
308
302
|
* - **4000**
|
|
309
|
-
*
|
|
310
303
|
* - **8000**
|
|
311
|
-
*
|
|
312
304
|
* - **16000**
|
|
313
|
-
*
|
|
314
305
|
* - **32000**
|
|
315
306
|
*
|
|
316
307
|
* @example
|
|
@@ -319,7 +310,7 @@ export declare class ListApplicationsResponseBodyDataApplications extends $dara.
|
|
|
319
310
|
cpu?: number;
|
|
320
311
|
/**
|
|
321
312
|
* @remarks
|
|
322
|
-
* The disk size in GB.
|
|
313
|
+
* The disk storage size, in GB.
|
|
323
314
|
*
|
|
324
315
|
* @example
|
|
325
316
|
* 20
|
|
@@ -327,7 +318,7 @@ export declare class ListApplicationsResponseBodyDataApplications extends $dara.
|
|
|
327
318
|
diskSize?: number;
|
|
328
319
|
/**
|
|
329
320
|
* @remarks
|
|
330
|
-
* Indicates
|
|
321
|
+
* Indicates whether idle mode is enabled.
|
|
331
322
|
*
|
|
332
323
|
* @example
|
|
333
324
|
* false
|
|
@@ -335,7 +326,7 @@ export declare class ListApplicationsResponseBodyDataApplications extends $dara.
|
|
|
335
326
|
enableIdle?: string;
|
|
336
327
|
/**
|
|
337
328
|
* @remarks
|
|
338
|
-
* The URL
|
|
329
|
+
* The image URL.
|
|
339
330
|
*
|
|
340
331
|
* @example
|
|
341
332
|
* registry.cn-hangzhou.aliyuncs.com/sae-serverless-demo/sae-demo:microservice-java-provider-v1.0
|
|
@@ -343,7 +334,7 @@ export declare class ListApplicationsResponseBodyDataApplications extends $dara.
|
|
|
343
334
|
imageUrl?: string;
|
|
344
335
|
/**
|
|
345
336
|
* @remarks
|
|
346
|
-
* The
|
|
337
|
+
* The number of application instances.
|
|
347
338
|
*
|
|
348
339
|
* @example
|
|
349
340
|
* 2
|
|
@@ -351,39 +342,30 @@ export declare class ListApplicationsResponseBodyDataApplications extends $dara.
|
|
|
351
342
|
instances?: number;
|
|
352
343
|
/**
|
|
353
344
|
* @remarks
|
|
354
|
-
*
|
|
345
|
+
* Specifies whether the application is stateful.
|
|
355
346
|
*/
|
|
356
347
|
isStateful?: boolean;
|
|
357
348
|
/**
|
|
358
349
|
* @remarks
|
|
359
|
-
* The labels
|
|
350
|
+
* The labels.
|
|
360
351
|
*/
|
|
361
352
|
labels?: {
|
|
362
353
|
[key: string]: string;
|
|
363
354
|
};
|
|
364
355
|
/**
|
|
365
356
|
* @remarks
|
|
366
|
-
* The memory
|
|
367
|
-
*
|
|
368
|
-
* - **1024**: For a CPU allocation of 500 or 1,000 millicores.
|
|
369
|
-
*
|
|
370
|
-
* - **2048**: For a CPU allocation of 500, 1,000, or 2,000 millicores.
|
|
371
|
-
*
|
|
372
|
-
* - **4096**: For a CPU allocation of 1,000, 2,000, or 4,000 millicores.
|
|
373
|
-
*
|
|
374
|
-
* - **8192**: For a CPU allocation of 2,000, 4,000, or 8,000 millicores.
|
|
375
|
-
*
|
|
376
|
-
* - **12288**: For a CPU allocation of 12,000 millicores.
|
|
357
|
+
* The memory required for each instance, in MB. This value cannot be 0. The memory has a one-to-one mapping with CPU. Only the following defined specifications are supported:
|
|
377
358
|
*
|
|
378
|
-
* - **
|
|
379
|
-
*
|
|
380
|
-
* - **
|
|
381
|
-
*
|
|
382
|
-
* - **
|
|
383
|
-
*
|
|
384
|
-
* - **
|
|
385
|
-
*
|
|
386
|
-
* - **
|
|
359
|
+
* - **1024**: corresponds to 500 and 1000 millicores of CPU.
|
|
360
|
+
* - **2048**: corresponds to 500, 1000, and 2000 millicores of CPU.
|
|
361
|
+
* - **4096**: corresponds to 1000, 2000, and 4000 millicores of CPU.
|
|
362
|
+
* - **8192**: corresponds to 2000, 4000, and 8000 millicores of CPU.
|
|
363
|
+
* - **12288**: corresponds to 12000 millicores of CPU.
|
|
364
|
+
* - **16384**: corresponds to 4000, 8000, and 16000 millicores of CPU.
|
|
365
|
+
* - **24576**: corresponds to 12000 millicores of CPU.
|
|
366
|
+
* - **32768**: corresponds to 16000 millicores of CPU.
|
|
367
|
+
* - **65536**: corresponds to 8000, 16000, and 32000 millicores of CPU.
|
|
368
|
+
* - **131072**: corresponds to 32000 millicores of CPU.
|
|
387
369
|
*
|
|
388
370
|
* @example
|
|
389
371
|
* 1024
|
|
@@ -391,7 +373,7 @@ export declare class ListApplicationsResponseBodyDataApplications extends $dara.
|
|
|
391
373
|
mem?: number;
|
|
392
374
|
/**
|
|
393
375
|
* @remarks
|
|
394
|
-
* Indicates whether
|
|
376
|
+
* Indicates whether MSE microservice governance is enabled for the application.
|
|
395
377
|
*
|
|
396
378
|
* @example
|
|
397
379
|
* true
|
|
@@ -399,13 +381,13 @@ export declare class ListApplicationsResponseBodyDataApplications extends $dara.
|
|
|
399
381
|
mseEnabled?: boolean;
|
|
400
382
|
/**
|
|
401
383
|
* @remarks
|
|
402
|
-
* The
|
|
384
|
+
* The MSE microservice governance namespace.
|
|
403
385
|
*
|
|
404
|
-
* - default: Free
|
|
386
|
+
* - default: Free Edition
|
|
405
387
|
*
|
|
406
|
-
* - sae-pro: Professional
|
|
388
|
+
* - sae-pro: Professional Edition
|
|
407
389
|
*
|
|
408
|
-
* - sae-ent: Enterprise
|
|
390
|
+
* - sae-ent: Enterprise Edition
|
|
409
391
|
*
|
|
410
392
|
* @example
|
|
411
393
|
* sae-ent
|
|
@@ -413,7 +395,7 @@ export declare class ListApplicationsResponseBodyDataApplications extends $dara.
|
|
|
413
395
|
mseNamespaceId?: string;
|
|
414
396
|
/**
|
|
415
397
|
* @remarks
|
|
416
|
-
* The ID
|
|
398
|
+
* The namespace ID.
|
|
417
399
|
*
|
|
418
400
|
* @example
|
|
419
401
|
* cn-beijing:demo
|
|
@@ -421,7 +403,7 @@ export declare class ListApplicationsResponseBodyDataApplications extends $dara.
|
|
|
421
403
|
namespaceId?: string;
|
|
422
404
|
/**
|
|
423
405
|
* @remarks
|
|
424
|
-
* The name
|
|
406
|
+
* The namespace name.
|
|
425
407
|
*
|
|
426
408
|
* @example
|
|
427
409
|
* demo
|
|
@@ -429,13 +411,11 @@ export declare class ListApplicationsResponseBodyDataApplications extends $dara.
|
|
|
429
411
|
namespaceName?: string;
|
|
430
412
|
/**
|
|
431
413
|
* @remarks
|
|
432
|
-
* The
|
|
433
|
-
*
|
|
434
|
-
* - lite: Lite
|
|
414
|
+
* The application version. Valid values:
|
|
435
415
|
*
|
|
436
|
-
* -
|
|
437
|
-
*
|
|
438
|
-
* - pro:
|
|
416
|
+
* - lite: Lite Edition
|
|
417
|
+
* - std: Standard Edition
|
|
418
|
+
* - pro: Professional Edition
|
|
439
419
|
*
|
|
440
420
|
* @example
|
|
441
421
|
* pro
|
|
@@ -443,7 +423,7 @@ export declare class ListApplicationsResponseBodyDataApplications extends $dara.
|
|
|
443
423
|
newSaeVersion?: string;
|
|
444
424
|
/**
|
|
445
425
|
* @remarks
|
|
446
|
-
* The
|
|
426
|
+
* The deployment package URL.
|
|
447
427
|
*/
|
|
448
428
|
packageUrl?: string;
|
|
449
429
|
/**
|
|
@@ -454,9 +434,10 @@ export declare class ListApplicationsResponseBodyDataApplications extends $dara.
|
|
|
454
434
|
* java
|
|
455
435
|
*/
|
|
456
436
|
programmingLanguage?: string;
|
|
437
|
+
raspEnabled?: boolean;
|
|
457
438
|
/**
|
|
458
439
|
* @remarks
|
|
459
|
-
* The
|
|
440
|
+
* The region ID.
|
|
460
441
|
*
|
|
461
442
|
* @example
|
|
462
443
|
* cn-beijing
|
|
@@ -477,12 +458,12 @@ export declare class ListApplicationsResponseBodyDataApplications extends $dara.
|
|
|
477
458
|
runningInstances?: number;
|
|
478
459
|
/**
|
|
479
460
|
* @remarks
|
|
480
|
-
*
|
|
461
|
+
* The application tags.
|
|
481
462
|
*/
|
|
482
463
|
tags?: ListApplicationsResponseBodyDataApplicationsTags[];
|
|
483
464
|
/**
|
|
484
465
|
* @remarks
|
|
485
|
-
*
|
|
466
|
+
* VPC ID。
|
|
486
467
|
*/
|
|
487
468
|
vpcId?: string;
|
|
488
469
|
static names(): {
|
|
@@ -499,7 +480,7 @@ export declare class ListApplicationsResponseBodyDataApplications extends $dara.
|
|
|
499
480
|
export declare class ListApplicationsResponseBodyData extends $dara.Model {
|
|
500
481
|
/**
|
|
501
482
|
* @remarks
|
|
502
|
-
*
|
|
483
|
+
* The application list.
|
|
503
484
|
*/
|
|
504
485
|
applications?: ListApplicationsResponseBodyDataApplications[];
|
|
505
486
|
/**
|
|
@@ -512,7 +493,7 @@ export declare class ListApplicationsResponseBodyData extends $dara.Model {
|
|
|
512
493
|
currentPage?: number;
|
|
513
494
|
/**
|
|
514
495
|
* @remarks
|
|
515
|
-
* The
|
|
496
|
+
* The page size.
|
|
516
497
|
*
|
|
517
498
|
* @example
|
|
518
499
|
* 20
|
|
@@ -540,15 +521,12 @@ export declare class ListApplicationsResponseBodyData extends $dara.Model {
|
|
|
540
521
|
export declare class ListApplicationsResponseBody extends $dara.Model {
|
|
541
522
|
/**
|
|
542
523
|
* @remarks
|
|
543
|
-
* The
|
|
524
|
+
* The API status or POP error code. Valid values:
|
|
544
525
|
*
|
|
545
|
-
* - **2xx**:
|
|
546
|
-
*
|
|
547
|
-
* - **
|
|
548
|
-
*
|
|
549
|
-
* - **4xx**: The request was invalid.
|
|
550
|
-
*
|
|
551
|
-
* - **5xx**: A server error occurred.
|
|
526
|
+
* - **2xx**: Success.
|
|
527
|
+
* - **3xx**: Redirection.
|
|
528
|
+
* - **4xx**: Request error.
|
|
529
|
+
* - **5xx**: Server error.
|
|
552
530
|
*
|
|
553
531
|
* @example
|
|
554
532
|
* 200
|
|
@@ -556,7 +534,7 @@ export declare class ListApplicationsResponseBody extends $dara.Model {
|
|
|
556
534
|
code?: string;
|
|
557
535
|
/**
|
|
558
536
|
* @remarks
|
|
559
|
-
*
|
|
537
|
+
* The current page number.
|
|
560
538
|
*
|
|
561
539
|
* @example
|
|
562
540
|
* 1
|
|
@@ -564,21 +542,20 @@ export declare class ListApplicationsResponseBody extends $dara.Model {
|
|
|
564
542
|
currentPage?: number;
|
|
565
543
|
/**
|
|
566
544
|
* @remarks
|
|
567
|
-
* The
|
|
545
|
+
* The application list.
|
|
568
546
|
*/
|
|
569
547
|
data?: ListApplicationsResponseBodyData;
|
|
570
548
|
/**
|
|
571
549
|
* @remarks
|
|
572
|
-
* The error code.
|
|
550
|
+
* The error code. Valid values:
|
|
573
551
|
*
|
|
574
|
-
* -
|
|
575
|
-
*
|
|
576
|
-
* - A failed request returns the **ErrorCode** field. For more information, see the **Error codes** section in this topic.
|
|
552
|
+
* - If the request is successful, the **ErrorCode** field is not returned.
|
|
553
|
+
* - If the request fails, the **ErrorCode** field is returned. For more information, see the **Error codes** section in this topic.
|
|
577
554
|
*/
|
|
578
555
|
errorCode?: string;
|
|
579
556
|
/**
|
|
580
557
|
* @remarks
|
|
581
|
-
*
|
|
558
|
+
* The additional information about the call result.
|
|
582
559
|
*
|
|
583
560
|
* @example
|
|
584
561
|
* success
|
|
@@ -586,7 +563,7 @@ export declare class ListApplicationsResponseBody extends $dara.Model {
|
|
|
586
563
|
message?: string;
|
|
587
564
|
/**
|
|
588
565
|
* @remarks
|
|
589
|
-
*
|
|
566
|
+
* The page size.
|
|
590
567
|
*
|
|
591
568
|
* @example
|
|
592
569
|
* 20
|
|
@@ -594,7 +571,7 @@ export declare class ListApplicationsResponseBody extends $dara.Model {
|
|
|
594
571
|
pageSize?: number;
|
|
595
572
|
/**
|
|
596
573
|
* @remarks
|
|
597
|
-
* The
|
|
574
|
+
* The request ID.
|
|
598
575
|
*
|
|
599
576
|
* @example
|
|
600
577
|
* B4D805CA-926D-41B1-8E63-7AD0C1ED****
|
|
@@ -602,11 +579,10 @@ export declare class ListApplicationsResponseBody extends $dara.Model {
|
|
|
602
579
|
requestId?: string;
|
|
603
580
|
/**
|
|
604
581
|
* @remarks
|
|
605
|
-
* Indicates whether the
|
|
606
|
-
*
|
|
607
|
-
* - **true**: The request was successful.
|
|
582
|
+
* Indicates whether the application list is retrieved. Valid values:
|
|
608
583
|
*
|
|
609
|
-
* - **
|
|
584
|
+
* - **true**: Retrieved.
|
|
585
|
+
* - **false**: Not retrieved.
|
|
610
586
|
*
|
|
611
587
|
* @example
|
|
612
588
|
* true
|
|
@@ -614,7 +590,7 @@ export declare class ListApplicationsResponseBody extends $dara.Model {
|
|
|
614
590
|
success?: boolean;
|
|
615
591
|
/**
|
|
616
592
|
* @remarks
|
|
617
|
-
*
|
|
593
|
+
* The total number of applications.
|
|
618
594
|
*
|
|
619
595
|
* @example
|
|
620
596
|
* 2
|
|
@@ -167,6 +167,7 @@ class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
167
167
|
newSaeVersion: 'NewSaeVersion',
|
|
168
168
|
packageUrl: 'PackageUrl',
|
|
169
169
|
programmingLanguage: 'ProgrammingLanguage',
|
|
170
|
+
raspEnabled: 'RaspEnabled',
|
|
170
171
|
regionId: 'RegionId',
|
|
171
172
|
resourceType: 'ResourceType',
|
|
172
173
|
runningInstances: 'RunningInstances',
|
|
@@ -198,6 +199,7 @@ class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
198
199
|
newSaeVersion: 'string',
|
|
199
200
|
packageUrl: 'string',
|
|
200
201
|
programmingLanguage: 'string',
|
|
202
|
+
raspEnabled: 'boolean',
|
|
201
203
|
regionId: 'string',
|
|
202
204
|
resourceType: 'string',
|
|
203
205
|
runningInstances: 'number',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ListApplicationsResponseBody.js","sourceRoot":"","sources":["../../src/models/ListApplicationsResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,wDAAyD,SAAQ,KAAK,CAAC,KAAK;IAiBvF,MAAM,CAAC,KAAK;QACV,OAAO;YACL,GAAG,EAAE,KAAK;YACV,KAAK,EAAE,OAAO;SACf,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,GAAG,EAAE,QAAQ;YACb,KAAK,EAAE,QAAQ;SAChB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAtCD,4HAsCC;AAED,MAAa,oDAAqD,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"ListApplicationsResponseBody.js","sourceRoot":"","sources":["../../src/models/ListApplicationsResponseBody.ts"],"names":[],"mappings":"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"}
|
package/dist/models/model.d.ts
CHANGED
|
@@ -47,6 +47,7 @@ export { BatchStopApplicationsResponseBodyData } from './BatchStopApplicationsRe
|
|
|
47
47
|
export { BindNlbResponseBodyData } from './BindNlbResponseBody';
|
|
48
48
|
export { BindSlbResponseBodyData } from './BindSlbResponseBody';
|
|
49
49
|
export { ConfirmPipelineBatchResponseBodyData } from './ConfirmPipelineBatchResponseBody';
|
|
50
|
+
export { CreateApplicationRequestRaspConfig } from './CreateApplicationRequest';
|
|
50
51
|
export { CreateApplicationResponseBodyData } from './CreateApplicationResponseBody';
|
|
51
52
|
export { CreateApplicationScalingRuleResponseBodyDataMetricMetrics } from './CreateApplicationScalingRuleResponseBody';
|
|
52
53
|
export { CreateApplicationScalingRuleResponseBodyDataMetric } from './CreateApplicationScalingRuleResponseBody';
|
|
@@ -72,6 +73,7 @@ export { DeleteGreyTagRouteResponseBodyData } from './DeleteGreyTagRouteResponse
|
|
|
72
73
|
export { DeleteIngressResponseBodyData } from './DeleteIngressResponseBody';
|
|
73
74
|
export { DeleteInstancesResponseBodyData } from './DeleteInstancesResponseBody';
|
|
74
75
|
export { DeleteSecretResponseBodyData } from './DeleteSecretResponseBody';
|
|
76
|
+
export { DeployApplicationRequestRaspConfig } from './DeployApplicationRequest';
|
|
75
77
|
export { DeployApplicationResponseBodyData } from './DeployApplicationResponseBody';
|
|
76
78
|
export { DescribeAppServiceDetailResponseBodyDataMethodsParameterDefinitions } from './DescribeAppServiceDetailResponseBody';
|
|
77
79
|
export { DescribeAppServiceDetailResponseBodyDataMethods } from './DescribeAppServiceDetailResponseBody';
|
|
@@ -84,6 +86,7 @@ export { DescribeApplicationConfigResponseBodyDataInitContainersConfigSecretMoun
|
|
|
84
86
|
export { DescribeApplicationConfigResponseBodyDataInitContainersConfig } from './DescribeApplicationConfigResponseBody';
|
|
85
87
|
export { DescribeApplicationConfigResponseBodyDataMountDesc } from './DescribeApplicationConfigResponseBody';
|
|
86
88
|
export { DescribeApplicationConfigResponseBodyDataOssMountDescs } from './DescribeApplicationConfigResponseBody';
|
|
89
|
+
export { DescribeApplicationConfigResponseBodyDataRaspConfig } from './DescribeApplicationConfigResponseBody';
|
|
87
90
|
export { DescribeApplicationConfigResponseBodyDataSecretMountDesc } from './DescribeApplicationConfigResponseBody';
|
|
88
91
|
export { DescribeApplicationConfigResponseBodyDataSidecarContainersConfigConfigMapMountDesc } from './DescribeApplicationConfigResponseBody';
|
|
89
92
|
export { DescribeApplicationConfigResponseBodyDataSidecarContainersConfigEmptyDirDesc } from './DescribeApplicationConfigResponseBody';
|