@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
|
@@ -45,7 +45,7 @@ export class ListApplicationsResponseBodyDataApplicationsChildrenTags extends $d
|
|
|
45
45
|
export class ListApplicationsResponseBodyDataApplicationsChildren extends $dara.Model {
|
|
46
46
|
/**
|
|
47
47
|
* @remarks
|
|
48
|
-
* Indicates whether the
|
|
48
|
+
* Indicates whether the application is being deleted.
|
|
49
49
|
*
|
|
50
50
|
* @example
|
|
51
51
|
* false
|
|
@@ -61,7 +61,7 @@ export class ListApplicationsResponseBodyDataApplicationsChildren extends $dara.
|
|
|
61
61
|
appDescription?: string;
|
|
62
62
|
/**
|
|
63
63
|
* @remarks
|
|
64
|
-
* The ID
|
|
64
|
+
* The application ID.
|
|
65
65
|
*
|
|
66
66
|
* @example
|
|
67
67
|
* xxx-xxx-xxx-xxx
|
|
@@ -69,7 +69,7 @@ export class ListApplicationsResponseBodyDataApplicationsChildren extends $dara.
|
|
|
69
69
|
appId?: string;
|
|
70
70
|
/**
|
|
71
71
|
* @remarks
|
|
72
|
-
* The name
|
|
72
|
+
* The application name.
|
|
73
73
|
*
|
|
74
74
|
* @example
|
|
75
75
|
* app1
|
|
@@ -77,7 +77,7 @@ export class ListApplicationsResponseBodyDataApplicationsChildren extends $dara.
|
|
|
77
77
|
appName?: string;
|
|
78
78
|
/**
|
|
79
79
|
* @remarks
|
|
80
|
-
* The
|
|
80
|
+
* The deployment type of the application.
|
|
81
81
|
*
|
|
82
82
|
* @example
|
|
83
83
|
* Image
|
|
@@ -85,7 +85,7 @@ export class ListApplicationsResponseBodyDataApplicationsChildren extends $dara.
|
|
|
85
85
|
appType?: string;
|
|
86
86
|
/**
|
|
87
87
|
* @remarks
|
|
88
|
-
* The
|
|
88
|
+
* The base application ID.
|
|
89
89
|
*
|
|
90
90
|
* @example
|
|
91
91
|
* ee99cce6-1c8e-4bfa-96c3-3e2fa9******
|
|
@@ -93,7 +93,7 @@ export class ListApplicationsResponseBodyDataApplicationsChildren extends $dara.
|
|
|
93
93
|
baseAppId?: string;
|
|
94
94
|
/**
|
|
95
95
|
* @remarks
|
|
96
|
-
* The CPU
|
|
96
|
+
* The CPU size.
|
|
97
97
|
*
|
|
98
98
|
* @example
|
|
99
99
|
* 2000
|
|
@@ -101,12 +101,12 @@ export class ListApplicationsResponseBodyDataApplicationsChildren extends $dara.
|
|
|
101
101
|
cpu?: number;
|
|
102
102
|
/**
|
|
103
103
|
* @remarks
|
|
104
|
-
* Indicates
|
|
104
|
+
* Indicates whether idle mode is enabled.
|
|
105
105
|
*/
|
|
106
106
|
enableIdle?: string;
|
|
107
107
|
/**
|
|
108
108
|
* @remarks
|
|
109
|
-
* The
|
|
109
|
+
* The number of instances.
|
|
110
110
|
*
|
|
111
111
|
* @example
|
|
112
112
|
* 2
|
|
@@ -114,12 +114,12 @@ export class ListApplicationsResponseBodyDataApplicationsChildren extends $dara.
|
|
|
114
114
|
instances?: number;
|
|
115
115
|
/**
|
|
116
116
|
* @remarks
|
|
117
|
-
*
|
|
117
|
+
* Specifies whether the application is stateful.
|
|
118
118
|
*/
|
|
119
119
|
isStateful?: boolean;
|
|
120
120
|
/**
|
|
121
121
|
* @remarks
|
|
122
|
-
* The memory
|
|
122
|
+
* The memory size.
|
|
123
123
|
*
|
|
124
124
|
* @example
|
|
125
125
|
* 2048
|
|
@@ -127,7 +127,7 @@ export class ListApplicationsResponseBodyDataApplicationsChildren extends $dara.
|
|
|
127
127
|
mem?: number;
|
|
128
128
|
/**
|
|
129
129
|
* @remarks
|
|
130
|
-
* Indicates whether
|
|
130
|
+
* Indicates whether MSE microservice governance is enabled for the application.
|
|
131
131
|
*
|
|
132
132
|
* @example
|
|
133
133
|
* true
|
|
@@ -143,7 +143,7 @@ export class ListApplicationsResponseBodyDataApplicationsChildren extends $dara.
|
|
|
143
143
|
namespaceId?: string;
|
|
144
144
|
/**
|
|
145
145
|
* @remarks
|
|
146
|
-
* The name
|
|
146
|
+
* The namespace name.
|
|
147
147
|
*
|
|
148
148
|
* @example
|
|
149
149
|
* demo
|
|
@@ -151,13 +151,11 @@ export class ListApplicationsResponseBodyDataApplicationsChildren extends $dara.
|
|
|
151
151
|
namespaceName?: string;
|
|
152
152
|
/**
|
|
153
153
|
* @remarks
|
|
154
|
-
* The
|
|
155
|
-
*
|
|
156
|
-
* - lite: Lite
|
|
154
|
+
* The application version. Valid values:
|
|
157
155
|
*
|
|
158
|
-
* -
|
|
159
|
-
*
|
|
160
|
-
* - pro:
|
|
156
|
+
* - lite: Lite Edition
|
|
157
|
+
* - std: Standard Edition
|
|
158
|
+
* - pro: Professional Edition
|
|
161
159
|
*
|
|
162
160
|
* @example
|
|
163
161
|
* pro
|
|
@@ -194,7 +192,7 @@ export class ListApplicationsResponseBodyDataApplicationsChildren extends $dara.
|
|
|
194
192
|
runningInstances?: number;
|
|
195
193
|
/**
|
|
196
194
|
* @remarks
|
|
197
|
-
* Indicates whether
|
|
195
|
+
* Indicates whether the elastic scaling policy is enabled.
|
|
198
196
|
*
|
|
199
197
|
* @example
|
|
200
198
|
* false
|
|
@@ -202,7 +200,7 @@ export class ListApplicationsResponseBodyDataApplicationsChildren extends $dara.
|
|
|
202
200
|
scaleRuleEnabled?: boolean;
|
|
203
201
|
/**
|
|
204
202
|
* @remarks
|
|
205
|
-
* The type of the
|
|
203
|
+
* The type of the elastic scaling rule.
|
|
206
204
|
*
|
|
207
205
|
* @example
|
|
208
206
|
* timing
|
|
@@ -210,7 +208,7 @@ export class ListApplicationsResponseBodyDataApplicationsChildren extends $dara.
|
|
|
210
208
|
scaleRuleType?: string;
|
|
211
209
|
/**
|
|
212
210
|
* @remarks
|
|
213
|
-
*
|
|
211
|
+
* The application tags.
|
|
214
212
|
*/
|
|
215
213
|
tags?: ListApplicationsResponseBodyDataApplicationsChildrenTags[];
|
|
216
214
|
static names(): { [key: string]: string } {
|
|
@@ -325,7 +323,6 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
325
323
|
* Indicates whether the application is being deleted. Valid values:
|
|
326
324
|
*
|
|
327
325
|
* - **true**: The application is being deleted.
|
|
328
|
-
*
|
|
329
326
|
* - **false**: The application is not being deleted.
|
|
330
327
|
*
|
|
331
328
|
* @example
|
|
@@ -334,7 +331,7 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
334
331
|
appDeletingStatus?: boolean;
|
|
335
332
|
/**
|
|
336
333
|
* @remarks
|
|
337
|
-
* The description
|
|
334
|
+
* The application description.
|
|
338
335
|
*
|
|
339
336
|
* @example
|
|
340
337
|
* description
|
|
@@ -342,7 +339,7 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
342
339
|
appDescription?: string;
|
|
343
340
|
/**
|
|
344
341
|
* @remarks
|
|
345
|
-
* The ID
|
|
342
|
+
* The application ID.
|
|
346
343
|
*
|
|
347
344
|
* @example
|
|
348
345
|
* f7730764-d88f-4b9a-8d8e-cd8efbfe****
|
|
@@ -358,7 +355,7 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
358
355
|
appName?: string;
|
|
359
356
|
/**
|
|
360
357
|
* @remarks
|
|
361
|
-
* The
|
|
358
|
+
* The deployment type of the application.
|
|
362
359
|
*
|
|
363
360
|
* @example
|
|
364
361
|
* Image
|
|
@@ -366,7 +363,7 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
366
363
|
appType?: string;
|
|
367
364
|
/**
|
|
368
365
|
* @remarks
|
|
369
|
-
* The
|
|
366
|
+
* The base application ID. This property exists only for canary release applications.
|
|
370
367
|
*
|
|
371
368
|
* @example
|
|
372
369
|
* xxx-xxx-xx-xxx
|
|
@@ -374,25 +371,19 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
374
371
|
baseAppId?: string;
|
|
375
372
|
/**
|
|
376
373
|
* @remarks
|
|
377
|
-
*
|
|
374
|
+
* The list of canary release applications for this application.
|
|
378
375
|
*/
|
|
379
376
|
children?: ListApplicationsResponseBodyDataApplicationsChildren[];
|
|
380
377
|
/**
|
|
381
378
|
* @remarks
|
|
382
|
-
* The CPU
|
|
379
|
+
* The CPU required for each instance, in millicores. This value cannot be 0. Only the following defined specifications are supported:
|
|
383
380
|
*
|
|
384
381
|
* - **500**
|
|
385
|
-
*
|
|
386
382
|
* - **1000**
|
|
387
|
-
*
|
|
388
383
|
* - **2000**
|
|
389
|
-
*
|
|
390
384
|
* - **4000**
|
|
391
|
-
*
|
|
392
385
|
* - **8000**
|
|
393
|
-
*
|
|
394
386
|
* - **16000**
|
|
395
|
-
*
|
|
396
387
|
* - **32000**
|
|
397
388
|
*
|
|
398
389
|
* @example
|
|
@@ -401,7 +392,7 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
401
392
|
cpu?: number;
|
|
402
393
|
/**
|
|
403
394
|
* @remarks
|
|
404
|
-
* The disk size in GB.
|
|
395
|
+
* The disk storage size, in GB.
|
|
405
396
|
*
|
|
406
397
|
* @example
|
|
407
398
|
* 20
|
|
@@ -409,7 +400,7 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
409
400
|
diskSize?: number;
|
|
410
401
|
/**
|
|
411
402
|
* @remarks
|
|
412
|
-
* Indicates
|
|
403
|
+
* Indicates whether idle mode is enabled.
|
|
413
404
|
*
|
|
414
405
|
* @example
|
|
415
406
|
* false
|
|
@@ -417,7 +408,7 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
417
408
|
enableIdle?: string;
|
|
418
409
|
/**
|
|
419
410
|
* @remarks
|
|
420
|
-
* The URL
|
|
411
|
+
* The image URL.
|
|
421
412
|
*
|
|
422
413
|
* @example
|
|
423
414
|
* registry.cn-hangzhou.aliyuncs.com/sae-serverless-demo/sae-demo:microservice-java-provider-v1.0
|
|
@@ -425,7 +416,7 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
425
416
|
imageUrl?: string;
|
|
426
417
|
/**
|
|
427
418
|
* @remarks
|
|
428
|
-
* The
|
|
419
|
+
* The number of application instances.
|
|
429
420
|
*
|
|
430
421
|
* @example
|
|
431
422
|
* 2
|
|
@@ -433,37 +424,28 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
433
424
|
instances?: number;
|
|
434
425
|
/**
|
|
435
426
|
* @remarks
|
|
436
|
-
*
|
|
427
|
+
* Specifies whether the application is stateful.
|
|
437
428
|
*/
|
|
438
429
|
isStateful?: boolean;
|
|
439
430
|
/**
|
|
440
431
|
* @remarks
|
|
441
|
-
* The labels
|
|
432
|
+
* The labels.
|
|
442
433
|
*/
|
|
443
434
|
labels?: { [key: string]: string };
|
|
444
435
|
/**
|
|
445
436
|
* @remarks
|
|
446
|
-
* The memory
|
|
447
|
-
*
|
|
448
|
-
* - **1024**: For a CPU allocation of 500 or 1,000 millicores.
|
|
449
|
-
*
|
|
450
|
-
* - **2048**: For a CPU allocation of 500, 1,000, or 2,000 millicores.
|
|
451
|
-
*
|
|
452
|
-
* - **4096**: For a CPU allocation of 1,000, 2,000, or 4,000 millicores.
|
|
453
|
-
*
|
|
454
|
-
* - **8192**: For a CPU allocation of 2,000, 4,000, or 8,000 millicores.
|
|
455
|
-
*
|
|
456
|
-
* - **12288**: For a CPU allocation of 12,000 millicores.
|
|
437
|
+
* 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:
|
|
457
438
|
*
|
|
458
|
-
* - **
|
|
459
|
-
*
|
|
460
|
-
* - **
|
|
461
|
-
*
|
|
462
|
-
* - **
|
|
463
|
-
*
|
|
464
|
-
* - **
|
|
465
|
-
*
|
|
466
|
-
* - **
|
|
439
|
+
* - **1024**: corresponds to 500 and 1000 millicores of CPU.
|
|
440
|
+
* - **2048**: corresponds to 500, 1000, and 2000 millicores of CPU.
|
|
441
|
+
* - **4096**: corresponds to 1000, 2000, and 4000 millicores of CPU.
|
|
442
|
+
* - **8192**: corresponds to 2000, 4000, and 8000 millicores of CPU.
|
|
443
|
+
* - **12288**: corresponds to 12000 millicores of CPU.
|
|
444
|
+
* - **16384**: corresponds to 4000, 8000, and 16000 millicores of CPU.
|
|
445
|
+
* - **24576**: corresponds to 12000 millicores of CPU.
|
|
446
|
+
* - **32768**: corresponds to 16000 millicores of CPU.
|
|
447
|
+
* - **65536**: corresponds to 8000, 16000, and 32000 millicores of CPU.
|
|
448
|
+
* - **131072**: corresponds to 32000 millicores of CPU.
|
|
467
449
|
*
|
|
468
450
|
* @example
|
|
469
451
|
* 1024
|
|
@@ -471,7 +453,7 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
471
453
|
mem?: number;
|
|
472
454
|
/**
|
|
473
455
|
* @remarks
|
|
474
|
-
* Indicates whether
|
|
456
|
+
* Indicates whether MSE microservice governance is enabled for the application.
|
|
475
457
|
*
|
|
476
458
|
* @example
|
|
477
459
|
* true
|
|
@@ -479,13 +461,13 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
479
461
|
mseEnabled?: boolean;
|
|
480
462
|
/**
|
|
481
463
|
* @remarks
|
|
482
|
-
* The
|
|
464
|
+
* The MSE microservice governance namespace.
|
|
483
465
|
*
|
|
484
|
-
* - default: Free
|
|
466
|
+
* - default: Free Edition
|
|
485
467
|
*
|
|
486
|
-
* - sae-pro: Professional
|
|
468
|
+
* - sae-pro: Professional Edition
|
|
487
469
|
*
|
|
488
|
-
* - sae-ent: Enterprise
|
|
470
|
+
* - sae-ent: Enterprise Edition
|
|
489
471
|
*
|
|
490
472
|
* @example
|
|
491
473
|
* sae-ent
|
|
@@ -493,7 +475,7 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
493
475
|
mseNamespaceId?: string;
|
|
494
476
|
/**
|
|
495
477
|
* @remarks
|
|
496
|
-
* The ID
|
|
478
|
+
* The namespace ID.
|
|
497
479
|
*
|
|
498
480
|
* @example
|
|
499
481
|
* cn-beijing:demo
|
|
@@ -501,7 +483,7 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
501
483
|
namespaceId?: string;
|
|
502
484
|
/**
|
|
503
485
|
* @remarks
|
|
504
|
-
* The name
|
|
486
|
+
* The namespace name.
|
|
505
487
|
*
|
|
506
488
|
* @example
|
|
507
489
|
* demo
|
|
@@ -509,13 +491,11 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
509
491
|
namespaceName?: string;
|
|
510
492
|
/**
|
|
511
493
|
* @remarks
|
|
512
|
-
* The
|
|
513
|
-
*
|
|
514
|
-
* - lite: Lite
|
|
494
|
+
* The application version. Valid values:
|
|
515
495
|
*
|
|
516
|
-
* -
|
|
517
|
-
*
|
|
518
|
-
* - pro:
|
|
496
|
+
* - lite: Lite Edition
|
|
497
|
+
* - std: Standard Edition
|
|
498
|
+
* - pro: Professional Edition
|
|
519
499
|
*
|
|
520
500
|
* @example
|
|
521
501
|
* pro
|
|
@@ -523,7 +503,7 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
523
503
|
newSaeVersion?: string;
|
|
524
504
|
/**
|
|
525
505
|
* @remarks
|
|
526
|
-
* The
|
|
506
|
+
* The deployment package URL.
|
|
527
507
|
*/
|
|
528
508
|
packageUrl?: string;
|
|
529
509
|
/**
|
|
@@ -534,9 +514,10 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
534
514
|
* java
|
|
535
515
|
*/
|
|
536
516
|
programmingLanguage?: string;
|
|
517
|
+
raspEnabled?: boolean;
|
|
537
518
|
/**
|
|
538
519
|
* @remarks
|
|
539
|
-
* The
|
|
520
|
+
* The region ID.
|
|
540
521
|
*
|
|
541
522
|
* @example
|
|
542
523
|
* cn-beijing
|
|
@@ -557,12 +538,12 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
557
538
|
runningInstances?: number;
|
|
558
539
|
/**
|
|
559
540
|
* @remarks
|
|
560
|
-
*
|
|
541
|
+
* The application tags.
|
|
561
542
|
*/
|
|
562
543
|
tags?: ListApplicationsResponseBodyDataApplicationsTags[];
|
|
563
544
|
/**
|
|
564
545
|
* @remarks
|
|
565
|
-
*
|
|
546
|
+
* VPC ID。
|
|
566
547
|
*/
|
|
567
548
|
vpcId?: string;
|
|
568
549
|
static names(): { [key: string]: string } {
|
|
@@ -589,6 +570,7 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
589
570
|
newSaeVersion: 'NewSaeVersion',
|
|
590
571
|
packageUrl: 'PackageUrl',
|
|
591
572
|
programmingLanguage: 'ProgrammingLanguage',
|
|
573
|
+
raspEnabled: 'RaspEnabled',
|
|
592
574
|
regionId: 'RegionId',
|
|
593
575
|
resourceType: 'ResourceType',
|
|
594
576
|
runningInstances: 'RunningInstances',
|
|
@@ -621,6 +603,7 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
621
603
|
newSaeVersion: 'string',
|
|
622
604
|
packageUrl: 'string',
|
|
623
605
|
programmingLanguage: 'string',
|
|
606
|
+
raspEnabled: 'boolean',
|
|
624
607
|
regionId: 'string',
|
|
625
608
|
resourceType: 'string',
|
|
626
609
|
runningInstances: 'number',
|
|
@@ -650,7 +633,7 @@ export class ListApplicationsResponseBodyDataApplications extends $dara.Model {
|
|
|
650
633
|
export class ListApplicationsResponseBodyData extends $dara.Model {
|
|
651
634
|
/**
|
|
652
635
|
* @remarks
|
|
653
|
-
*
|
|
636
|
+
* The application list.
|
|
654
637
|
*/
|
|
655
638
|
applications?: ListApplicationsResponseBodyDataApplications[];
|
|
656
639
|
/**
|
|
@@ -663,7 +646,7 @@ export class ListApplicationsResponseBodyData extends $dara.Model {
|
|
|
663
646
|
currentPage?: number;
|
|
664
647
|
/**
|
|
665
648
|
* @remarks
|
|
666
|
-
* The
|
|
649
|
+
* The page size.
|
|
667
650
|
*
|
|
668
651
|
* @example
|
|
669
652
|
* 20
|
|
@@ -710,15 +693,12 @@ export class ListApplicationsResponseBodyData extends $dara.Model {
|
|
|
710
693
|
export class ListApplicationsResponseBody extends $dara.Model {
|
|
711
694
|
/**
|
|
712
695
|
* @remarks
|
|
713
|
-
* The
|
|
696
|
+
* The API status or POP error code. Valid values:
|
|
714
697
|
*
|
|
715
|
-
* - **2xx**:
|
|
716
|
-
*
|
|
717
|
-
* - **
|
|
718
|
-
*
|
|
719
|
-
* - **4xx**: The request was invalid.
|
|
720
|
-
*
|
|
721
|
-
* - **5xx**: A server error occurred.
|
|
698
|
+
* - **2xx**: Success.
|
|
699
|
+
* - **3xx**: Redirection.
|
|
700
|
+
* - **4xx**: Request error.
|
|
701
|
+
* - **5xx**: Server error.
|
|
722
702
|
*
|
|
723
703
|
* @example
|
|
724
704
|
* 200
|
|
@@ -726,7 +706,7 @@ export class ListApplicationsResponseBody extends $dara.Model {
|
|
|
726
706
|
code?: string;
|
|
727
707
|
/**
|
|
728
708
|
* @remarks
|
|
729
|
-
*
|
|
709
|
+
* The current page number.
|
|
730
710
|
*
|
|
731
711
|
* @example
|
|
732
712
|
* 1
|
|
@@ -734,21 +714,20 @@ export class ListApplicationsResponseBody extends $dara.Model {
|
|
|
734
714
|
currentPage?: number;
|
|
735
715
|
/**
|
|
736
716
|
* @remarks
|
|
737
|
-
* The
|
|
717
|
+
* The application list.
|
|
738
718
|
*/
|
|
739
719
|
data?: ListApplicationsResponseBodyData;
|
|
740
720
|
/**
|
|
741
721
|
* @remarks
|
|
742
|
-
* The error code.
|
|
722
|
+
* The error code. Valid values:
|
|
743
723
|
*
|
|
744
|
-
* -
|
|
745
|
-
*
|
|
746
|
-
* - A failed request returns the **ErrorCode** field. For more information, see the **Error codes** section in this topic.
|
|
724
|
+
* - If the request is successful, the **ErrorCode** field is not returned.
|
|
725
|
+
* - If the request fails, the **ErrorCode** field is returned. For more information, see the **Error codes** section in this topic.
|
|
747
726
|
*/
|
|
748
727
|
errorCode?: string;
|
|
749
728
|
/**
|
|
750
729
|
* @remarks
|
|
751
|
-
*
|
|
730
|
+
* The additional information about the call result.
|
|
752
731
|
*
|
|
753
732
|
* @example
|
|
754
733
|
* success
|
|
@@ -756,7 +735,7 @@ export class ListApplicationsResponseBody extends $dara.Model {
|
|
|
756
735
|
message?: string;
|
|
757
736
|
/**
|
|
758
737
|
* @remarks
|
|
759
|
-
*
|
|
738
|
+
* The page size.
|
|
760
739
|
*
|
|
761
740
|
* @example
|
|
762
741
|
* 20
|
|
@@ -764,7 +743,7 @@ export class ListApplicationsResponseBody extends $dara.Model {
|
|
|
764
743
|
pageSize?: number;
|
|
765
744
|
/**
|
|
766
745
|
* @remarks
|
|
767
|
-
* The
|
|
746
|
+
* The request ID.
|
|
768
747
|
*
|
|
769
748
|
* @example
|
|
770
749
|
* B4D805CA-926D-41B1-8E63-7AD0C1ED****
|
|
@@ -772,11 +751,10 @@ export class ListApplicationsResponseBody extends $dara.Model {
|
|
|
772
751
|
requestId?: string;
|
|
773
752
|
/**
|
|
774
753
|
* @remarks
|
|
775
|
-
* Indicates whether the
|
|
776
|
-
*
|
|
777
|
-
* - **true**: The request was successful.
|
|
754
|
+
* Indicates whether the application list is retrieved. Valid values:
|
|
778
755
|
*
|
|
779
|
-
* - **
|
|
756
|
+
* - **true**: Retrieved.
|
|
757
|
+
* - **false**: Not retrieved.
|
|
780
758
|
*
|
|
781
759
|
* @example
|
|
782
760
|
* true
|
|
@@ -784,7 +762,7 @@ export class ListApplicationsResponseBody extends $dara.Model {
|
|
|
784
762
|
success?: boolean;
|
|
785
763
|
/**
|
|
786
764
|
* @remarks
|
|
787
|
-
*
|
|
765
|
+
* The total number of applications.
|
|
788
766
|
*
|
|
789
767
|
* @example
|
|
790
768
|
* 2
|
package/src/models/model.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';
|