@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.
Files changed (43) hide show
  1. package/dist/client.d.ts +8 -8
  2. package/dist/client.js +23 -8
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/CreateApplicationRequest.d.ts +232 -333
  5. package/dist/models/CreateApplicationRequest.js +29 -1
  6. package/dist/models/CreateApplicationRequest.js.map +1 -1
  7. package/dist/models/CreateApplicationResponseBody.d.ts +14 -21
  8. package/dist/models/CreateApplicationResponseBody.js.map +1 -1
  9. package/dist/models/CreateApplicationShrinkRequest.d.ts +217 -333
  10. package/dist/models/CreateApplicationShrinkRequest.js +2 -0
  11. package/dist/models/CreateApplicationShrinkRequest.js.map +1 -1
  12. package/dist/models/DeployApplicationRequest.d.ts +261 -382
  13. package/dist/models/DeployApplicationRequest.js +29 -1
  14. package/dist/models/DeployApplicationRequest.js.map +1 -1
  15. package/dist/models/DeployApplicationResponseBody.d.ts +20 -27
  16. package/dist/models/DeployApplicationResponseBody.js.map +1 -1
  17. package/dist/models/DeployApplicationShrinkRequest.d.ts +246 -382
  18. package/dist/models/DeployApplicationShrinkRequest.js +2 -0
  19. package/dist/models/DeployApplicationShrinkRequest.js.map +1 -1
  20. package/dist/models/DescribeApplicationConfigResponseBody.d.ts +299 -404
  21. package/dist/models/DescribeApplicationConfigResponseBody.js +29 -1
  22. package/dist/models/DescribeApplicationConfigResponseBody.js.map +1 -1
  23. package/dist/models/ListApplicationsRequest.d.ts +42 -61
  24. package/dist/models/ListApplicationsRequest.js +2 -0
  25. package/dist/models/ListApplicationsRequest.js.map +1 -1
  26. package/dist/models/ListApplicationsResponseBody.d.ts +77 -101
  27. package/dist/models/ListApplicationsResponseBody.js +2 -0
  28. package/dist/models/ListApplicationsResponseBody.js.map +1 -1
  29. package/dist/models/model.d.ts +3 -0
  30. package/dist/models/model.js +37 -31
  31. package/dist/models/model.js.map +1 -1
  32. package/package.json +1 -1
  33. package/src/client.ts +28 -8
  34. package/src/models/CreateApplicationRequest.ts +252 -334
  35. package/src/models/CreateApplicationResponseBody.ts +14 -21
  36. package/src/models/CreateApplicationShrinkRequest.ts +220 -334
  37. package/src/models/DeployApplicationRequest.ts +281 -383
  38. package/src/models/DeployApplicationResponseBody.ts +20 -27
  39. package/src/models/DeployApplicationShrinkRequest.ts +249 -383
  40. package/src/models/DescribeApplicationConfigResponseBody.ts +319 -405
  41. package/src/models/ListApplicationsRequest.ts +44 -61
  42. package/src/models/ListApplicationsResponseBody.ts +79 -101
  43. package/src/models/model.ts +3 -0
@@ -2,7 +2,7 @@ import * as $dara from '@darabonba/typescript';
2
2
  export declare class DescribeApplicationConfigResponseBodyDataConfigMapMountDesc extends $dara.Model {
3
3
  /**
4
4
  * @remarks
5
- * The ID of the ConfigMap.
5
+ * ConfigMap ID
6
6
  *
7
7
  * @example
8
8
  * 1
@@ -10,7 +10,7 @@ export declare class DescribeApplicationConfigResponseBodyDataConfigMapMountDesc
10
10
  configMapId?: number;
11
11
  /**
12
12
  * @remarks
13
- * The name of the ConfigMap.
13
+ * The ConfigMap name.
14
14
  *
15
15
  * @example
16
16
  * test
@@ -18,7 +18,7 @@ export declare class DescribeApplicationConfigResponseBodyDataConfigMapMountDesc
18
18
  configMapName?: string;
19
19
  /**
20
20
  * @remarks
21
- * The key of the key-value pair.
21
+ * The ConfigMap key-value pair.
22
22
  *
23
23
  * @example
24
24
  * k1
@@ -26,7 +26,7 @@ export declare class DescribeApplicationConfigResponseBodyDataConfigMapMountDesc
26
26
  key?: string;
27
27
  /**
28
28
  * @remarks
29
- * The mount path of the container.
29
+ * The container mount path.
30
30
  *
31
31
  * @example
32
32
  * /tmp
@@ -51,7 +51,7 @@ export declare class DescribeApplicationConfigResponseBodyDataEmptyDirDesc exten
51
51
  mountPath?: string;
52
52
  /**
53
53
  * @remarks
54
- * The name of the temporary storage.
54
+ * The temporary storage name.
55
55
  */
56
56
  name?: string;
57
57
  static names(): {
@@ -68,7 +68,7 @@ export declare class DescribeApplicationConfigResponseBodyDataEmptyDirDesc exten
68
68
  export declare class DescribeApplicationConfigResponseBodyDataInitContainersConfigConfigMapMountDesc extends $dara.Model {
69
69
  /**
70
70
  * @remarks
71
- * The ID of the ConfigMap.
71
+ * ConfigMap ID
72
72
  *
73
73
  * @example
74
74
  * 1
@@ -76,7 +76,7 @@ export declare class DescribeApplicationConfigResponseBodyDataInitContainersConf
76
76
  configMapId?: number;
77
77
  /**
78
78
  * @remarks
79
- * The name of the ConfigMap.
79
+ * The ConfigMap name.
80
80
  *
81
81
  * @example
82
82
  * test
@@ -84,7 +84,7 @@ export declare class DescribeApplicationConfigResponseBodyDataInitContainersConf
84
84
  configMapName?: string;
85
85
  /**
86
86
  * @remarks
87
- * The key of the key-value pair.
87
+ * The ConfigMap key-value pair.
88
88
  *
89
89
  * @example
90
90
  * k1
@@ -92,7 +92,7 @@ export declare class DescribeApplicationConfigResponseBodyDataInitContainersConf
92
92
  key?: string;
93
93
  /**
94
94
  * @remarks
95
- * The mount path of the container.
95
+ * The container mount path.
96
96
  *
97
97
  * @example
98
98
  * /tmp
@@ -112,12 +112,12 @@ export declare class DescribeApplicationConfigResponseBodyDataInitContainersConf
112
112
  export declare class DescribeApplicationConfigResponseBodyDataInitContainersConfigEmptyDirDesc extends $dara.Model {
113
113
  /**
114
114
  * @remarks
115
- * The path on which the volume is mounted in the container.
115
+ * The mount path of the data volume in the container.
116
116
  */
117
117
  mountPath?: string;
118
118
  /**
119
119
  * @remarks
120
- * The name of the temporary storage.
120
+ * The temporary storage name.
121
121
  */
122
122
  name?: string;
123
123
  static names(): {
@@ -144,12 +144,12 @@ export declare class DescribeApplicationConfigResponseBodyDataInitContainersConf
144
144
  mountPath?: string;
145
145
  /**
146
146
  * @remarks
147
- * The ID of the secret instance.
147
+ * The Secret instance ID.
148
148
  */
149
149
  secretId?: number;
150
150
  /**
151
151
  * @remarks
152
- * The name of the secret instance.
152
+ * The Secret instance name.
153
153
  */
154
154
  secretName?: string;
155
155
  static names(): {
@@ -166,7 +166,7 @@ export declare class DescribeApplicationConfigResponseBodyDataInitContainersConf
166
166
  export declare class DescribeApplicationConfigResponseBodyDataInitContainersConfig extends $dara.Model {
167
167
  /**
168
168
  * @remarks
169
- * The startup command of the image. The command must be an executable object that exists in the container. Example:
169
+ * The image startup command. This command must be an executable object that exists in the container. Example:
170
170
  *
171
171
  * ```
172
172
  * command:
@@ -175,7 +175,6 @@ export declare class DescribeApplicationConfigResponseBodyDataInitContainersConf
175
175
  * - >
176
176
  * - file0
177
177
  * ```
178
- *
179
178
  * Based on the preceding example, `Command="echo", CommandArgs=["abc", ">", "file0"]`.
180
179
  *
181
180
  * @example
@@ -184,11 +183,11 @@ export declare class DescribeApplicationConfigResponseBodyDataInitContainersConf
184
183
  command?: string;
185
184
  /**
186
185
  * @remarks
187
- * The arguments of the image startup command. The arguments are required by the preceding startup command **Command**. Format:
186
+ * The arguments for the image startup command. These are the arguments required by the startup command **Command**. Format:
188
187
  *
189
188
  * `["a","b"]`
190
189
  *
191
- * In the preceding example, `CommandArgs=["abc", ">", "file0"]`. The value `["abc", ">", "file0"]` must be converted into a string in the JSON array format. If this parameter is not required, you do not need to specify it.
190
+ * In the preceding example, `CommandArgs=["abc", ">", "file0"]`, where `["abc", ">", "file0"]` must be converted to the String type and the internal format is a JSON array. If this parameter is not required, leave it empty.
192
191
  *
193
192
  * @example
194
193
  * ["a","b"]
@@ -196,7 +195,7 @@ export declare class DescribeApplicationConfigResponseBodyDataInitContainersConf
196
195
  commandArgs?: string;
197
196
  /**
198
197
  * @remarks
199
- * The configurations of the ConfigMap.
198
+ * The ConfigMap information.
200
199
  */
201
200
  configMapMountDesc?: DescribeApplicationConfigResponseBodyDataInitContainersConfigConfigMapMountDesc[];
202
201
  /**
@@ -206,33 +205,20 @@ export declare class DescribeApplicationConfigResponseBodyDataInitContainersConf
206
205
  emptyDirDesc?: DescribeApplicationConfigResponseBodyDataInitContainersConfigEmptyDirDesc[];
207
206
  /**
208
207
  * @remarks
209
- * The environment variables of the container. You can customize environment variables or reference a ConfigMap. To reference a ConfigMap, you must first create a ConfigMap instance. For more information, see [CreateConfigMap](https://help.aliyun.com/document_detail/176914.html). Valid values:
210
- *
208
+ * The container environment variable parameters. You can customize environment variables or reference ConfigMap instances. To reference a ConfigMap instance, create a ConfigMap instance first. For more information, see [CreateConfigMap](https://help.aliyun.com/document_detail/176914.html). Valid values:
211
209
  * - Custom configuration
212
- *
213
- * - **name**: The name of the environment variable.
214
- *
215
- * - **value**: The value of the environment variable. This parameter takes precedence over valueFrom.
216
- *
217
- * - Reference a configuration item (valueFrom)
218
- *
219
- * - **name**: The name of the environment variable. You can reference a single key or all keys. To reference all keys, enter `sae-sys-configmap-all-<ConfigMap name>`, for example, `sae-sys-configmap-all-test1`.
220
- *
221
- * - **valueFrom**: The reference of the environment variable. Set the value to `configMapRef`.
222
- *
223
- * - **configMapId**: The ID of the ConfigMap.
224
- *
225
- * - **key**: The key. If you want to reference all keys, do not specify this parameter.
226
- *
210
+ * - **name**: the name of the environment variable.
211
+ * - **value**: the value of the environment variable. This takes priority over valueFrom.
212
+ * - Reference a ConfigMap instance (valueFrom)
213
+ * - **name**: the name of the environment variable. You can reference a single key or all keys. To reference all keys, enter `sae-sys-configmap-all-<ConfigMap name>`, such as `sae-sys-configmap-all-test1`.
214
+ * - **valueFrom**: the reference of the environment variable. Set the value to `configMapRef`.
215
+ * - **configMapId**: the ID of the ConfigMap instance.
216
+ * - **key**: the key. Do not set this field if you want to reference all keys.
227
217
  * - Reference a secret (valueFrom)
228
- *
229
- * - **name**: The name of the environment variable. You can reference a single key or all keys. To reference all keys, enter `sae-sys-secret-all-<Secret name>`, for example, `sae-sys-secret-all-test1`.
230
- *
231
- * - **valueFrom**: The reference of the environment variable. Set the value to `secretRef`.
232
- *
233
- * - **secretId**: The ID of the secret.
234
- *
235
- * - **key**: The key. If you want to reference all keys, do not specify this parameter.
218
+ * - **name**: the name of the environment variable. You can reference a single key or all keys. To reference all keys, enter `sae-sys-secret-all-<secret name>`, such as `sae-sys-secret-all-test1`.
219
+ * - **valueFrom**: the reference of the environment variable. Set the value to `secretRef`.
220
+ * - **secretId**: the ID of the secret.
221
+ * - **key**: the key. Do not set this field if you want to reference all keys.
236
222
  *
237
223
  * @example
238
224
  * [{"name":"TEST_ENV_KEY","value":"TEST_ENV_VAR"}]
@@ -240,7 +226,8 @@ export declare class DescribeApplicationConfigResponseBodyDataInitContainersConf
240
226
  envs?: string;
241
227
  /**
242
228
  * @remarks
243
- * The URL of the image that is used by the init container.
229
+ * The image URL used by the init container.
230
+ * [_single.resp.200.props.Data.InitContainersConfig.items.Env
244
231
  *
245
232
  * @example
246
233
  * registry.cn-shenzhen.aliyuncs.com/sae-serverless-demo/sae-demo:microservice-java-provider-v1.0
@@ -248,7 +235,7 @@ export declare class DescribeApplicationConfigResponseBodyDataInitContainersConf
248
235
  imageUrl?: string;
249
236
  /**
250
237
  * @remarks
251
- * The name of the init container.
238
+ * The init container name.
252
239
  *
253
240
  * @example
254
241
  * init-container
@@ -256,7 +243,7 @@ export declare class DescribeApplicationConfigResponseBodyDataInitContainersConf
256
243
  name?: string;
257
244
  /**
258
245
  * @remarks
259
- * The description of the secret that you want to mount.
246
+ * The Secret mount description.
260
247
  */
261
248
  secretMountDesc?: DescribeApplicationConfigResponseBodyDataInitContainersConfigSecretMountDesc[];
262
249
  static names(): {
@@ -273,7 +260,7 @@ export declare class DescribeApplicationConfigResponseBodyDataInitContainersConf
273
260
  export declare class DescribeApplicationConfigResponseBodyDataMountDesc extends $dara.Model {
274
261
  /**
275
262
  * @remarks
276
- * The mount path of the container.
263
+ * The container mount path.
277
264
  *
278
265
  * @example
279
266
  * /tmp
@@ -281,7 +268,7 @@ export declare class DescribeApplicationConfigResponseBodyDataMountDesc extends
281
268
  mountPath?: string;
282
269
  /**
283
270
  * @remarks
284
- * The path of the NAS file system.
271
+ * The NAS relative file directory.
285
272
  *
286
273
  * @example
287
274
  * /
@@ -309,7 +296,7 @@ export declare class DescribeApplicationConfigResponseBodyDataOssMountDescs exte
309
296
  bucketName?: string;
310
297
  /**
311
298
  * @remarks
312
- * The directory or object that you created in OSS. An error occurs if the mount directory does not exist.
299
+ * The directory or OSS object that you created in OSS. If the OSS mount directory does not exist, an exception is triggered.
313
300
  *
314
301
  * @example
315
302
  * data/user.data
@@ -317,7 +304,7 @@ export declare class DescribeApplicationConfigResponseBodyDataOssMountDescs exte
317
304
  bucketPath?: string;
318
305
  /**
319
306
  * @remarks
320
- * The path of the container in SAE. If the path exists, the path is overwritten. If the path does not exist, a new path is created.
307
+ * The container path in SAE. If the path already exists, it is overwritten. If the path does not exist, it is created.
321
308
  *
322
309
  * @example
323
310
  * /usr/data/user.data
@@ -325,11 +312,10 @@ export declare class DescribeApplicationConfigResponseBodyDataOssMountDescs exte
325
312
  mountPath?: string;
326
313
  /**
327
314
  * @remarks
328
- * Specifies whether the container has the read-only permission on the mount directory resources. Valid values:
329
- *
330
- * - **true**: The read-only permission.
315
+ * Indicates whether the container path has read-only permission to the mounted directory resources. Valid values:
331
316
  *
332
- * - **false**: The read and write permissions.
317
+ * - **true**: Read-only permission.
318
+ * - **false**: Read and write permission.
333
319
  *
334
320
  * @example
335
321
  * true
@@ -346,10 +332,25 @@ export declare class DescribeApplicationConfigResponseBodyDataOssMountDescs exte
346
332
  [key: string]: any;
347
333
  });
348
334
  }
335
+ export declare class DescribeApplicationConfigResponseBodyDataRaspConfig extends $dara.Model {
336
+ enableRasp?: boolean;
337
+ raspAppKey?: string;
338
+ raspAppName?: string;
339
+ static names(): {
340
+ [key: string]: string;
341
+ };
342
+ static types(): {
343
+ [key: string]: any;
344
+ };
345
+ validate(): void;
346
+ constructor(map?: {
347
+ [key: string]: any;
348
+ });
349
+ }
349
350
  export declare class DescribeApplicationConfigResponseBodyDataSecretMountDesc extends $dara.Model {
350
351
  /**
351
352
  * @remarks
352
- * The key of the data value that is encoded in Base64.
353
+ * The key with Base64-encoded data value.
353
354
  *
354
355
  * @example
355
356
  * task-center
@@ -365,7 +366,7 @@ export declare class DescribeApplicationConfigResponseBodyDataSecretMountDesc ex
365
366
  mountPath?: string;
366
367
  /**
367
368
  * @remarks
368
- * The ID of the queried secret instance.
369
+ * The queried Secret instance ID.
369
370
  *
370
371
  * @example
371
372
  * 520
@@ -373,7 +374,7 @@ export declare class DescribeApplicationConfigResponseBodyDataSecretMountDesc ex
373
374
  secretId?: number;
374
375
  /**
375
376
  * @remarks
376
- * The name of the secret instance.
377
+ * The Secret instance name.
377
378
  *
378
379
  * @example
379
380
  * dummy-name-opaque-894
@@ -393,7 +394,7 @@ export declare class DescribeApplicationConfigResponseBodyDataSecretMountDesc ex
393
394
  export declare class DescribeApplicationConfigResponseBodyDataSidecarContainersConfigConfigMapMountDesc extends $dara.Model {
394
395
  /**
395
396
  * @remarks
396
- * The ID of the ConfigMap instance.
397
+ * The ConfigMap instance ID.
397
398
  *
398
399
  * @example
399
400
  * 7361
@@ -401,7 +402,7 @@ export declare class DescribeApplicationConfigResponseBodyDataSidecarContainersC
401
402
  configMapId?: number;
402
403
  /**
403
404
  * @remarks
404
- * The name of the ConfigMap.
405
+ * The ConfigMap name.
405
406
  *
406
407
  * @example
407
408
  * ConfigMap-test
@@ -409,7 +410,7 @@ export declare class DescribeApplicationConfigResponseBodyDataSidecarContainersC
409
410
  configMapName?: string;
410
411
  /**
411
412
  * @remarks
412
- * The key of the ConfigMap.
413
+ * The ConfigMap key.
413
414
  *
414
415
  * @example
415
416
  * key
@@ -417,7 +418,7 @@ export declare class DescribeApplicationConfigResponseBodyDataSidecarContainersC
417
418
  key?: string;
418
419
  /**
419
420
  * @remarks
420
- * The mount path of the container.
421
+ * The container mount path.
421
422
  *
422
423
  * @example
423
424
  * /mnt/test
@@ -437,7 +438,7 @@ export declare class DescribeApplicationConfigResponseBodyDataSidecarContainersC
437
438
  export declare class DescribeApplicationConfigResponseBodyDataSidecarContainersConfigEmptyDirDesc extends $dara.Model {
438
439
  /**
439
440
  * @remarks
440
- * The path on which the volume is mounted in the container.
441
+ * The mount path of the data volume in the container.
441
442
  *
442
443
  * @example
443
444
  * /mnt/cache
@@ -445,7 +446,7 @@ export declare class DescribeApplicationConfigResponseBodyDataSidecarContainersC
445
446
  mountPath?: string;
446
447
  /**
447
448
  * @remarks
448
- * The name of the temporary storage.
449
+ * The temporary storage name.
449
450
  *
450
451
  * @example
451
452
  * sidecar-container
@@ -465,7 +466,7 @@ export declare class DescribeApplicationConfigResponseBodyDataSidecarContainersC
465
466
  export declare class DescribeApplicationConfigResponseBodyDataSidecarContainersConfigSecretMountDesc extends $dara.Model {
466
467
  /**
467
468
  * @remarks
468
- * The key of the data value that is encoded in Base64.
469
+ * The key with Base64-encoded data value.
469
470
  */
470
471
  key?: string;
471
472
  /**
@@ -475,12 +476,12 @@ export declare class DescribeApplicationConfigResponseBodyDataSidecarContainersC
475
476
  mountPath?: string;
476
477
  /**
477
478
  * @remarks
478
- * The ID of the secret instance.
479
+ * The Secret instance ID.
479
480
  */
480
481
  secretId?: number;
481
482
  /**
482
483
  * @remarks
483
- * The name of the secret instance.
484
+ * The Secret instance name.
484
485
  */
485
486
  secretName?: string;
486
487
  static names(): {
@@ -497,7 +498,7 @@ export declare class DescribeApplicationConfigResponseBodyDataSidecarContainersC
497
498
  export declare class DescribeApplicationConfigResponseBodyDataSidecarContainersConfig extends $dara.Model {
498
499
  /**
499
500
  * @remarks
500
- * The ID of the Container Registry Enterprise Edition instance. This parameter is required if **ImageUrl** is set to an image in Container Registry Enterprise Edition.
501
+ * The ACR Enterprise instance ID. This parameter is required when **ImageUrl** is from ACR Enterprise Edition.
501
502
  *
502
503
  * @example
503
504
  * cri-fhzlneorxala66ip
@@ -505,7 +506,7 @@ export declare class DescribeApplicationConfigResponseBodyDataSidecarContainersC
505
506
  acrInstanceId?: string;
506
507
  /**
507
508
  * @remarks
508
- * The startup command of the image. The command must be an executable object that exists in the container. Example:
509
+ * The image startup command. This command must be an executable object that exists in the container. Example:
509
510
  *
510
511
  * ```
511
512
  * command:
@@ -514,7 +515,6 @@ export declare class DescribeApplicationConfigResponseBodyDataSidecarContainersC
514
515
  * - >
515
516
  * - file0
516
517
  * ```
517
- *
518
518
  * Based on the preceding example, `Command="echo", CommandArgs=["abc", ">", "file0"]`.
519
519
  *
520
520
  * @example
@@ -523,11 +523,11 @@ export declare class DescribeApplicationConfigResponseBodyDataSidecarContainersC
523
523
  command?: string;
524
524
  /**
525
525
  * @remarks
526
- * The arguments of the image startup command. The arguments are required by the preceding startup command **Command**. Format:
526
+ * The arguments for the image startup command. These are the arguments required by the startup command **Command**. Format:
527
527
  *
528
528
  * `["a","b"]`
529
529
  *
530
- * In the preceding example, `CommandArgs=["abc", ">", "file0"]`. The value `["abc", ">", "file0"]` must be converted into a string in the JSON array format. If this parameter is not required, you do not need to specify it.
530
+ * In the preceding example, `CommandArgs=["abc", ">", "file0"]`, where `["abc", ">", "file0"]` must be converted to the String type and the internal format is a JSON array. If this parameter is not required, leave it empty.
531
531
  *
532
532
  * @example
533
533
  * [\\"-c\\",\\"echo \\\\\\"test\\\\\\" > /home/nas/test.log && sleep 10000000s\\"]
@@ -535,22 +535,17 @@ export declare class DescribeApplicationConfigResponseBodyDataSidecarContainersC
535
535
  commandArgs?: string;
536
536
  /**
537
537
  * @remarks
538
- * The description of the ConfigMap that you want to mount. Use the configuration item that you created on the Namespace Configuration Items page to inject configuration information into the container. The parameters are described as follows:
539
- *
540
- * - **configMapId**: The ID of the ConfigMap instance. You can call the [ListNamespacedConfigMaps](https://help.aliyun.com/document_detail/176917.html) operation to obtain the ID.
541
- *
542
- * - **key**: The key.
543
- *
544
- * > You can pass the `sae-sys-configmap-all` parameter to mount all keys.
545
- *
538
+ * The ConfigMap mount description. Use the configuration items created on the namespace configuration page to inject configuration information into the container. Parameter descriptions:
539
+ * - **configMapId**: The ConfigMap instance ID. You can obtain this ID by calling the [ListNamespacedConfigMaps](https://help.aliyun.com/document_detail/176917.html) operation.
540
+ * - **key**: The key-value pair.
541
+ * > You can mount all keys by passing the `sae-sys-configmap-all` parameter.
546
542
  * - **mountPath**: The mount path.
547
- *
548
- * - **ConfigMapName**: The name of the ConfigMap.
543
+ * - **ConfigMapName**: The ConfigMap name.
549
544
  */
550
545
  configMapMountDesc?: DescribeApplicationConfigResponseBodyDataSidecarContainersConfigConfigMapMountDesc[];
551
546
  /**
552
547
  * @remarks
553
- * The maximum CPU resources that the sidecar container can use from the main container.
548
+ * The maximum CPU resources of the primary container that the sidecar container can use.
554
549
  *
555
550
  * @example
556
551
  * 500
@@ -558,28 +553,20 @@ export declare class DescribeApplicationConfigResponseBodyDataSidecarContainersC
558
553
  cpu?: number;
559
554
  /**
560
555
  * @remarks
561
- * The shared temporary storage. Set a temporary storage directory and mount it to the main container and the sidecar container.
556
+ * The shared temporary storage. Sets a temporary storage directory and mounts it to the primary container and sidecar container.
562
557
  */
563
558
  emptyDirDesc?: DescribeApplicationConfigResponseBodyDataSidecarContainersConfigEmptyDirDesc[];
564
559
  /**
565
560
  * @remarks
566
- * The environment variables of the container. You can customize environment variables or reference a ConfigMap. To reference a ConfigMap, you must first create a ConfigMap instance. For more information, see [CreateConfigMap](https://help.aliyun.com/document_detail/176914.html). Valid values:
567
- *
561
+ * The container environment variable parameters. Custom values or references to configuration items are supported. To reference a configuration item, create a ConfigMap instance first. For more information, see [CreateConfigMap](https://help.aliyun.com/document_detail/176914.html). Valid values:
568
562
  * - Custom configuration
569
- *
570
- * - **name**: The name of the environment variable.
571
- *
572
- * - **value**: The value of the environment variable. This parameter takes precedence over valueFrom.
573
- *
574
- * - Reference a configuration item (valueFrom)
575
- *
576
- * - **name**: The name of the environment variable. You can reference a single key or all keys. To reference all keys, enter `sae-sys-configmap-all-<ConfigMap name>`, for example, `sae-sys-configmap-all-test1`.
577
- *
578
- * - **valueFrom**: The reference of the environment variable. Set the value to `configMapRef`.
579
- *
580
- * - **configMapId**: The ID of the ConfigMap.
581
- *
582
- * - **key**: The key. If you want to reference all keys, do not specify this parameter.
563
+ * - **name**: The environment variable name.
564
+ * - **value**: The environment variable value. This value takes precedence over valueFrom.
565
+ * - Reference to a configuration item (valueFrom)
566
+ * - **name**: The environment variable name. You can reference a single key or all keys. To reference all keys, enter `sae-sys-configmap-all-<ConfigMap name>`, such as `sae-sys-configmap-all-test1`.
567
+ * - **valueFrom**: The environment variable reference. Set the value to `configMapRef`.
568
+ * - **configMapId**: The ConfigMap ID.
569
+ * - **key**: The key. If all keys are referenced, do not set this field.
583
570
  *
584
571
  * @example
585
572
  * [{\\"name\\":\\"k1\\",\\"value\\":\\"c8e3a815-e5d3-4adf-abb3-98b106a607c4\\"}]
@@ -595,12 +582,12 @@ export declare class DescribeApplicationConfigResponseBodyDataSidecarContainersC
595
582
  imageUrl?: string;
596
583
  /**
597
584
  * @remarks
598
- * The health check on the container.
585
+ * The container health check.
599
586
  */
600
587
  liveness?: string;
601
588
  /**
602
589
  * @remarks
603
- * The maximum memory resources that the sidecar container can use from the main container.
590
+ * The maximum memory resources of the primary container that the sidecar container can use.
604
591
  *
605
592
  * @example
606
593
  * 1024
@@ -614,16 +601,24 @@ export declare class DescribeApplicationConfigResponseBodyDataSidecarContainersC
614
601
  * test
615
602
  */
616
603
  name?: string;
604
+ /**
605
+ * @remarks
606
+ * The script that is run after the container starts.
607
+ */
617
608
  postStart?: string;
609
+ /**
610
+ * @remarks
611
+ * The script that is run before the container stops.
612
+ */
618
613
  preStop?: string;
619
614
  /**
620
615
  * @remarks
621
- * The check on the application startup status.
616
+ * The application startup status check.
622
617
  */
623
618
  readiness?: string;
624
619
  /**
625
620
  * @remarks
626
- * The description of the secret that you want to mount.
621
+ * The Secret mount description.
627
622
  */
628
623
  secretMountDesc?: DescribeApplicationConfigResponseBodyDataSidecarContainersConfigSecretMountDesc[];
629
624
  static names(): {
@@ -668,7 +663,7 @@ export declare class DescribeApplicationConfigResponseBodyDataTags extends $dara
668
663
  export declare class DescribeApplicationConfigResponseBodyData extends $dara.Model {
669
664
  /**
670
665
  * @remarks
671
- * The Alibaba Cloud Resource Name (ARN) of the RAM role that is required to pull images across accounts. For more information, see [Pull images across Alibaba Cloud accounts](https://help.aliyun.com/document_detail/190675.html) and [Use a RAM role to grant permissions across Alibaba Cloud accounts](https://help.aliyun.com/document_detail/223585.html).
666
+ * The ARN of the RAM role required for pulling images across accounts. For more information, see [Pull Alibaba Cloud images across accounts](https://help.aliyun.com/document_detail/190675.html) and [Grant cross-account permissions by using RAM roles](https://help.aliyun.com/document_detail/223585.html).
672
667
  *
673
668
  * @example
674
669
  * acs:ram::123456789012****:role/adminrole
@@ -676,7 +671,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
676
671
  acrAssumeRoleArn?: string;
677
672
  /**
678
673
  * @remarks
679
- * The ID of the Container Registry Enterprise Edition instance.
674
+ * The ACR Enterprise instance ID.
680
675
  *
681
676
  * @example
682
677
  * cri-xxxxxx
@@ -689,7 +684,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
689
684
  agentVersion?: string;
690
685
  /**
691
686
  * @remarks
692
- * The configuration of the Application Load Balancer (ALB) gateway readiness gate.
687
+ * The ALB gateway ReadinessGate configuration.
693
688
  */
694
689
  albIngressReadinessGate?: string;
695
690
  /**
@@ -718,7 +713,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
718
713
  appName?: string;
719
714
  /**
720
715
  * @remarks
721
- * The type of the SAE application.
716
+ * The SAE application type.
722
717
  *
723
718
  * - micro_service
724
719
  *
@@ -732,11 +727,10 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
732
727
  appSource?: string;
733
728
  /**
734
729
  * @remarks
735
- * Specifies whether to bind an elastic IP address (EIP). Valid values:
736
- *
737
- * - **true**: Bind an EIP.
730
+ * Specifies whether to associate an EIP. Valid values:
738
731
  *
739
- * - **false**: Do not bind an EIP.
732
+ * - **true**: Associated.
733
+ * - **false**: Not associated.
740
734
  *
741
735
  * @example
742
736
  * true
@@ -752,7 +746,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
752
746
  baseAppId?: string;
753
747
  /**
754
748
  * @remarks
755
- * The interval between batches in a phased release. Unit: seconds.
749
+ * The wait time between batches during a phased release, in seconds.
756
750
  *
757
751
  * @example
758
752
  * 10
@@ -768,12 +762,12 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
768
762
  clusterId?: string;
769
763
  /**
770
764
  * @remarks
771
- * The Cloud Monitor service ID.
765
+ * The CloudMonitor service ID.
772
766
  */
773
767
  cmsServiceId?: string;
774
768
  /**
775
769
  * @remarks
776
- * The startup command of the image. The command must be an executable object that exists in the container. Example:
770
+ * The image startup command. This command must be an executable object that exists in the container. Example:
777
771
  *
778
772
  * ```
779
773
  * command:
@@ -782,7 +776,6 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
782
776
  * - >
783
777
  * - file0
784
778
  * ```
785
- *
786
779
  * Based on the preceding example, `Command="echo", CommandArgs=["abc", ">", "file0"]`.
787
780
  *
788
781
  * @example
@@ -791,11 +784,11 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
791
784
  command?: string;
792
785
  /**
793
786
  * @remarks
794
- * The arguments of the image startup command. The arguments are required by the **Command** parameter. Format:
787
+ * The arguments for the image startup command. These are the arguments required by the startup command **Command**. Format:
795
788
  *
796
789
  * `["a","b"]`
797
790
  *
798
- * In the example of the **Command** parameter, `CommandArgs=["abc", ">", "file0"]`. The value `["abc", ">", "file0"]` must be converted into a string in the JSON array format. If this parameter is not required, you do not need to specify it.
791
+ * In the example for the **Command** parameter, `CommandArgs=["abc", ">", "file0"]`, where `["abc", ">", "file0"]` must be converted to the String type and the internal format is a JSON array. If this parameter is not required, leave it empty.
799
792
  *
800
793
  * @example
801
794
  * ["a","b"]
@@ -803,25 +796,19 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
803
796
  commandArgs?: string;
804
797
  /**
805
798
  * @remarks
806
- * The configurations of the ConfigMap.
799
+ * The ConfigMap information.
807
800
  */
808
801
  configMapMountDesc?: DescribeApplicationConfigResponseBodyDataConfigMapMountDesc[];
809
802
  /**
810
803
  * @remarks
811
- * The CPU required by each instance. Unit: millicores. The value cannot be 0. The following specifications are supported:
804
+ * The CPU required by each instance, in millicores. This value cannot be 0. Only the following defined specifications are supported:
812
805
  *
813
806
  * - **500**
814
- *
815
807
  * - **1000**
816
- *
817
808
  * - **2000**
818
- *
819
809
  * - **4000**
820
- *
821
810
  * - **8000**
822
- *
823
811
  * - **16000**
824
- *
825
812
  * - **32000**
826
813
  *
827
814
  * @example
@@ -830,10 +817,9 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
830
817
  cpu?: number;
831
818
  /**
832
819
  * @remarks
833
- * The custom mapping between a domain name and an IP address in the container. Valid values:
820
+ * The custom host mapping in the container. Valid values:
834
821
  *
835
822
  * - **hostName**: The domain name or hostname.
836
- *
837
823
  * - **ip**: The IP address.
838
824
  *
839
825
  * @example
@@ -842,11 +828,10 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
842
828
  customHostAlias?: string;
843
829
  /**
844
830
  * @remarks
845
- * The type of the custom image. If you do not use a custom image, set this parameter to an empty string. Valid values:
846
- *
847
- * - internet: a public image
831
+ * The type of the custom image. If the image is not a custom image, set this parameter to an empty string. Valid values:
848
832
  *
849
- * - intranet: a private image
833
+ * - internet: public image
834
+ * - intranet: internal image
850
835
  *
851
836
  * @example
852
837
  * internet
@@ -862,7 +847,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
862
847
  deploymentName?: string;
863
848
  /**
864
849
  * @remarks
865
- * The disk storage size. Unit: GB.
850
+ * The disk storage size, in GB.
866
851
  *
867
852
  * @example
868
853
  * 20
@@ -870,16 +855,12 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
870
855
  diskSize?: number;
871
856
  /**
872
857
  * @remarks
873
- * The version of the .NET framework:
858
+ * The .NET framework version:
874
859
  *
875
860
  * - .NET 3.1
876
- *
877
861
  * - .NET 5.0
878
- *
879
862
  * - .NET 6.0
880
- *
881
863
  * - .NET 7.0
882
- *
883
864
  * - .NET 8.0
884
865
  *
885
866
  * @example
@@ -888,7 +869,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
888
869
  dotnet?: string;
889
870
  /**
890
871
  * @remarks
891
- * The version of the application runtime environment in the High-Speed Service Framework (HSF), such as an Ali-Tomcat container.
872
+ * The version of the application runtime environment in the HSF framework, such as the Ali-Tomcat container.
892
873
  *
893
874
  * @example
894
875
  * 3.5.3
@@ -901,11 +882,10 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
901
882
  emptyDirDesc?: DescribeApplicationConfigResponseBodyDataEmptyDirDesc[];
902
883
  /**
903
884
  * @remarks
904
- * Specifies whether to enable Application High Availability Service (AHAS). Valid values:
905
- *
906
- * - **true**: Enable AHAS.
885
+ * Specifies whether to connect to Application High Availability Service (AHAS). Valid values:
907
886
  *
908
- * - **false**: Disable AHAS.
887
+ * - **true**: Connected to AHAS.
888
+ * - **false**: Not connected to AHAS.
909
889
  *
910
890
  * @example
911
891
  * true
@@ -913,11 +893,10 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
913
893
  enableAhas?: string;
914
894
  /**
915
895
  * @remarks
916
- * Specifies whether to enable the CPU burst feature:
896
+ * Specifies whether to enable the CPU Burst feature. Valid values:
917
897
  *
918
- * - true: Enable
919
- *
920
- * - false: Disable
898
+ * - true: Enabled.
899
+ * - false: Not enabled.
921
900
  *
922
901
  * @example
923
902
  * true
@@ -925,11 +904,10 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
925
904
  enableCpuBurst?: string;
926
905
  /**
927
906
  * @remarks
928
- * Specifies whether to enable the canary release rule. This rule is applicable only to applications that use the Spring Cloud and Dubbo frameworks. Valid values:
929
- *
930
- * - **true**: Enable the canary release rule.
907
+ * Specifies whether to enable the traffic canary release rule. This rule applies only to applications that use the Spring Cloud and Dubbo frameworks. Valid values:
931
908
  *
932
- * - **false**: Disable the canary release rule.
909
+ * - **true**: Enabled.
910
+ * - **false**: Disabled.
933
911
  *
934
912
  * @example
935
913
  * false
@@ -937,11 +915,10 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
937
915
  enableGreyTagRoute?: boolean;
938
916
  /**
939
917
  * @remarks
940
- * Specifies whether to enable the idle mode:
918
+ * Specifies whether to enable idle mode. Valid values:
941
919
  *
942
- * - true: Enable
943
- *
944
- * - false: Disable
920
+ * - true: Enabled.
921
+ * - false: Disabled.
945
922
  *
946
923
  * @example
947
924
  * false
@@ -949,16 +926,15 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
949
926
  enableIdle?: boolean;
950
927
  /**
951
928
  * @remarks
952
- * Specifies whether to reuse the agent version configuration of the namespace.
929
+ * Indicates whether the namespace agent version configuration is reused.
953
930
  */
954
931
  enableNamespaceAgentVersion?: boolean;
955
932
  /**
956
933
  * @remarks
957
- * Specifies whether to enable the new ARMS feature:
958
- *
959
- * - true: Enable
934
+ * Specifies whether to enable the new ARMS feature. Valid values:
960
935
  *
961
- * - false: Disable
936
+ * - true: Enabled.
937
+ * - false: Not enabled.
962
938
  *
963
939
  * @example
964
940
  * false
@@ -966,28 +942,20 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
966
942
  enableNewArms?: boolean;
967
943
  /**
968
944
  * @remarks
969
- * Specifies whether to enable custom metric collection for Prometheus.
945
+ * Indicates whether Prometheus custom metric collection is enabled.
970
946
  */
971
947
  enablePrometheus?: boolean;
972
948
  /**
973
949
  * @remarks
974
- * The environment variables for the container. You can customize environment variables or reference a ConfigMap. To reference a ConfigMap, you must first create a ConfigMap. For more information, see [CreateConfigMap](https://help.aliyun.com/document_detail/176914.html). Valid values:
975
- *
950
+ * The container environment variable parameters. Custom values or references to configuration items are supported. To reference a configuration item, create a ConfigMap instance first. For more information, see [CreateConfigMap](https://help.aliyun.com/document_detail/176914.html). Valid values:
976
951
  * - Custom configuration
977
- *
978
- * - **name**: The name of the environment variable.
979
- *
980
- * - **value**: The value of the environment variable.
981
- *
982
- * - Reference a configuration item
983
- *
984
- * - **name**: The name of the environment variable. You can reference a single key or all keys. To reference all keys, enter `sae-sys-configmap-all-<ConfigMap name>`, for example, `sae-sys-configmap-all-test1`.
985
- *
986
- * - **valueFrom**: The reference of the environment variable. Set the value to `configMapRef`.
987
- *
988
- * - **configMapId**: The ID of the ConfigMap.
989
- *
990
- * - **key**: The key. If you want to reference all keys, do not specify this parameter.
952
+ * - **name**: The environment variable name.
953
+ * - **value**: The environment variable value.
954
+ * - Reference to a configuration item
955
+ * - **name**: The environment variable name. You can reference a single key or all keys. To reference all keys, enter `sae-sys-configmap-all-<ConfigMap name>`, such as `sae-sys-configmap-all-test1`.
956
+ * - **valueFrom**: The environment variable reference. Set the value to `configMapRef`.
957
+ * - **configMapId**: The ConfigMap ID.
958
+ * - **key**: The key. If all keys are referenced, do not set this field.
991
959
  *
992
960
  * @example
993
961
  * [{"name":"TEST_ENV_KEY","value":"TEST_ENV_VAR"}]
@@ -1000,7 +968,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1000
968
  gpuCount?: string;
1001
969
  /**
1002
970
  * @remarks
1003
- * The GPU card type.
971
+ * The GPU type.
1004
972
  */
1005
973
  gpuType?: string;
1006
974
  headlessPvtzDiscovery?: string;
@@ -1008,7 +976,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1008
976
  idleHour?: string;
1009
977
  /**
1010
978
  * @remarks
1011
- * The ID of the secret.
979
+ * The corresponding secret ID.
1012
980
  *
1013
981
  * @example
1014
982
  * 10
@@ -1016,7 +984,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1016
984
  imagePullSecrets?: string;
1017
985
  /**
1018
986
  * @remarks
1019
- * The URL of the image. This parameter is required when **Package Type** is set to **Image**.
987
+ * The image URL. This parameter is required when **Package Type** is set to **Image**.
1020
988
  *
1021
989
  * @example
1022
990
  * docker.io/library/nginx:1.14.2
@@ -1024,17 +992,17 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1024
992
  imageUrl?: string;
1025
993
  /**
1026
994
  * @remarks
1027
- * The configurations of the init container.
995
+ * The init container configuration.
1028
996
  */
1029
997
  initContainersConfig?: DescribeApplicationConfigResponseBodyDataInitContainersConfig[];
1030
998
  /**
1031
999
  * @remarks
1032
- * Specifies whether the application is a stateful application.
1000
+ * Indicates whether the application is stateful.
1033
1001
  */
1034
1002
  isStateful?: boolean;
1035
1003
  /**
1036
1004
  * @remarks
1037
- * The arguments for starting the JAR package. The default startup command is: `$JAVA_HOME/bin/java $JarStartOptions -jar $CATALINA_OPTS "$package_path" $JarStartArgs`
1005
+ * The arguments for starting the JAR package application. The default startup command for the application: `$JAVA_HOME/bin/java $JarStartOptions -jar $CATALINA_OPTS "$package_path" $JarStartArgs`
1038
1006
  *
1039
1007
  * @example
1040
1008
  * start
@@ -1042,7 +1010,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1042
1010
  jarStartArgs?: string;
1043
1011
  /**
1044
1012
  * @remarks
1045
- * The options for starting the JAR package. The default startup command is: `$JAVA_HOME/bin/java $JarStartOptions -jar $CATALINA_OPTS "$package_path" $JarStartArgs`
1013
+ * The options for starting the JAR package application. The default startup command for the application: `$JAVA_HOME/bin/java $JarStartOptions -jar $CATALINA_OPTS "$package_path" $JarStartArgs`
1046
1014
  *
1047
1015
  * @example
1048
1016
  * -Dtest=true
@@ -1050,18 +1018,13 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1050
1018
  jarStartOptions?: string;
1051
1019
  /**
1052
1020
  * @remarks
1053
- * The version of the Java Development Kit (JDK) that the deployment package requires. The following versions are supported:
1021
+ * The JDK version on which the deployment package depends. Valid values:
1054
1022
  *
1055
1023
  * - **Open JDK 8**
1056
- *
1057
1024
  * - **Open JDK 7**
1058
- *
1059
1025
  * - **Dragonwell 11**
1060
- *
1061
1026
  * - **Dragonwell 8**
1062
- *
1063
1027
  * - **openjdk-8u191-jdk-alpine3.9**
1064
- *
1065
1028
  * - **openjdk-7u201-jdk-alpine3.9**
1066
1029
  *
1067
1030
  * This parameter is not supported when **Package Type** is set to **Image**.
@@ -1072,13 +1035,11 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1072
1035
  jdk?: string;
1073
1036
  /**
1074
1037
  * @remarks
1075
- * The configurations for collecting logs to Kafka. Valid values:
1038
+ * The summary of log collection configurations for Kafka. Valid values:
1076
1039
  *
1077
1040
  * - **kafkaEndpoint**: The endpoint of the Kafka API.
1078
- *
1079
- * - **kafkaInstanceId**: The ID of the Kafka instance.
1080
- *
1081
- * - **kafkaConfigs**: The configurations of one or more logs. For more information about the example and parameters, see the **kafkaConfigs** request parameter in this topic.
1041
+ * - **kafkaInstanceId**: The Kafka instance ID.
1042
+ * - **kafkaConfigs**: The configuration summary for one or more log entries. For example values and parameter descriptions, see the **kafkaConfigs** request parameter in this topic.
1082
1043
  *
1083
1044
  * @example
1084
1045
  * {"kafkaEndpoint":"10.0.X.XXX:XXXX,10.0.X.XXX:XXXX,10.0.X.XXX:XXXX","kafkaInstanceId":"alikafka_pre-cn-7pp2l8kr****","kafkaConfigs":[{"logType":"file_log","logDir":"/tmp/a.log","kafkaTopic":"test2"},{"logType":"stdout","logDir":"","kafkaTopic":"test"}]}
@@ -1093,35 +1054,25 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1093
1054
  };
1094
1055
  /**
1095
1056
  * @remarks
1096
- * The liveness probe of the container. A container that fails the health check is shut down and restored. The following methods are supported:
1097
- *
1098
- * - **exec**: example: `{"exec":{"command":["sh","-c","cat/home/admin/start.sh"]},"initialDelaySeconds":30,"periodSeconds":30,"timeoutSeconds":2}`
1099
- *
1100
- * - **httpGet**: example:`{"httpGet":{"path":"/","port":18091,"scheme":"HTTP","isContainKeyWord":true,"keyWord":"SAE"},"initialDelaySeconds":11,"periodSeconds":10,"timeoutSeconds":1}`
1101
- *
1102
- * - **tcpSocket**: example:`{"tcpSocket":{"port":18091},"initialDelaySeconds":11,"periodSeconds":10,"timeoutSeconds":1}`
1103
- *
1104
- * > You can use only one method for a health check.
1057
+ * The container health check settings. Containers that fail the health check are shut down and recovered. The following methods are supported:
1105
1058
  *
1106
- * The parameters are described as follows:
1059
+ * - **exec**: For example, `{"exec":{"command":["sh","-c","cat/home/admin/start.sh"]},"initialDelaySeconds":30,"periodSeconds":30,"timeoutSeconds":2}`
1060
+ * - **httpGet**: For example, `{"httpGet":{"path":"/","port":18091,"scheme":"HTTP","isContainKeyWord":true,"keyWord":"SAE"},"initialDelaySeconds":11,"periodSeconds":10,"timeoutSeconds":1}`
1061
+ * - **tcpSocket**: For example, `{"tcpSocket":{"port":18091},"initialDelaySeconds":11,"periodSeconds":10,"timeoutSeconds":1}`
1107
1062
  *
1108
- * - **exec.command**: The command that is used for the health check.
1063
+ * > You can select only one method for health checks.
1109
1064
  *
1110
- * - **httpGet.path**: The request path.
1065
+ * Parameter descriptions:
1111
1066
  *
1067
+ * - **exec.command**: The health check command.
1068
+ * - **httpGet.path**: The access path.
1112
1069
  * - **httpGet.scheme**: **HTTP** or **HTTPS**.
1113
- *
1114
- * - **httpGet.isContainKeyWord**: Specifies whether the response must contain a keyword. A value of **true** indicates that the response must contain the keyword. A value of **false** indicates that the response does not need to contain the keyword. If you do not specify this parameter, this advanced feature is not used.
1115
- *
1116
- * - **httpGet.keyWord**: The custom keyword. This parameter is required if you set the **isContainKeyWord** parameter.
1117
- *
1118
- * - **tcpSocket.port**: The port that is used for the TCP connection check.
1119
- *
1120
- * - **initialDelaySeconds**: The delay for the health check. Default value: 10. Unit: seconds.
1121
- *
1122
- * - **periodSeconds**: The interval for the health check. Default value: 30. Unit: seconds.
1123
- *
1124
- * - **timeoutSeconds**: The timeout period for the health check. Default value: 1. Unit: seconds. If you set this parameter to 0 or do not specify this parameter, the default value is used.
1070
+ * - **httpGet.isContainKeyWord**: **true** indicates that the keyword is included. **false** indicates that the keyword is not included. If this field is missing, the advanced feature is not used.
1071
+ * - **httpGet.keyWord**: The custom keyword. The **isContainKeyWord** field must be present when this parameter is used.
1072
+ * - **tcpSocket.port**: The port for TCP connection detection.
1073
+ * - **initialDelaySeconds**: The initial delay for the health check. Default value: 10. Unit: seconds.
1074
+ * - **periodSeconds**: The health check period. Default value: 30. Unit: seconds.
1075
+ * - **timeoutSeconds**: The health check timeout period. Default value: 1. Unit: seconds. If this parameter is set to 0 or is not set, the default timeout period is 1 second.
1125
1076
  *
1126
1077
  * @example
1127
1078
  * {"exec":{"command":["curl http://localhost:8080"]},"initialDelaySeconds":20,"timeoutSeconds":3}
@@ -1129,42 +1080,32 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1129
1080
  liveness?: string;
1130
1081
  /**
1131
1082
  * @remarks
1132
- * The Loki configurations.
1083
+ * LokiConfigs
1133
1084
  */
1134
1085
  lokiConfigs?: string;
1135
1086
  /**
1136
1087
  * @remarks
1137
- * The maximum surge instance ratio.
1088
+ * The Peak Volume instance ratio.
1138
1089
  */
1139
1090
  maxSurgeInstanceRatio?: number;
1140
1091
  /**
1141
1092
  * @remarks
1142
- * The maximum number of surge instances.
1093
+ * The Peak Volume of instances.
1143
1094
  */
1144
1095
  maxSurgeInstances?: number;
1145
1096
  /**
1146
1097
  * @remarks
1147
- * The memory required by each instance. Unit: MB. The value cannot be 0. This parameter corresponds to the \\`Cpu\\` parameter. The following specifications are supported:
1148
- *
1149
- * - **1024**: corresponds to 500 millicores and 1,000 millicores.
1150
- *
1151
- * - **2048**: corresponds to 500, 1,000, and 2,000 millicores.
1152
- *
1153
- * - **4096**: corresponds to 1,000, 2,000, and 4,000 millicores.
1154
- *
1155
- * - **8192**: corresponds to 2,000, 4,000, and 8,000 millicores.
1156
- *
1157
- * - **12288**: corresponds to 12,000 millicores.
1158
- *
1159
- * - **16384**: corresponds to 4,000, 8,000, and 16,000 millicores.
1160
- *
1161
- * - **24576**: corresponds to 12,000 millicores.
1162
- *
1163
- * - **32768**: corresponds to 16,000 millicores.
1164
- *
1165
- * - **65536**: corresponds to 8,000, 16,000, and 32,000 millicores.
1166
- *
1167
- * - **131072**: corresponds to 32,000 millicores.
1098
+ * The memory size required by each instance, in MB. This value cannot be 0. The memory size has a one-to-one mapping with CPU. Only the following defined specifications are supported:
1099
+ * - **1024**: Corresponds to 500 millicores and 1000 millicores of CPU.
1100
+ * - **2048**: Corresponds to 500, 1000, and 2000 millicores of CPU.
1101
+ * - **4096**: Corresponds to 1000, 2000, and 4000 millicores of CPU.
1102
+ * - **8192**: Corresponds to 2000, 4000, and 8000 millicores of CPU.
1103
+ * - **12288**: Corresponds to 12000 millicores of CPU.
1104
+ * - **16384**: Corresponds to 4000, 8000, and 16000 millicores of CPU.
1105
+ * - **24576**: Corresponds to 12000 millicores of CPU.
1106
+ * - **32768**: Corresponds to 16000 millicores of CPU.
1107
+ * - **65536**: Corresponds to 8000, 16000, and 32000 millicores of CPU.
1108
+ * - **131072**: Corresponds to 32000 millicores of CPU.
1168
1109
  *
1169
1110
  * @example
1170
1111
  * 2048
@@ -1173,12 +1114,9 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1173
1114
  /**
1174
1115
  * @remarks
1175
1116
  * The Nacos registry. Valid values:
1176
- *
1177
1117
  * - **0**: SAE built-in Nacos.
1178
- *
1179
- * - **1**: User-created Nacos.
1180
- *
1181
- * - **2**: MSE Nacos.
1118
+ * - **1**: Self-managed Nacos.
1119
+ * - **2**: MSE commercial edition Nacos.
1182
1120
  *
1183
1121
  * @example
1184
1122
  * "0"
@@ -1186,7 +1124,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1186
1124
  microRegistration?: string;
1187
1125
  /**
1188
1126
  * @remarks
1189
- * The configuration of the registry. This parameter takes effect only when the registry is MSE Nacos Enterprise Edition.
1127
+ * The registry configuration. This parameter takes effect only when the registry type is MSE Nacos Enterprise Edition.
1190
1128
  *
1191
1129
  * @example
1192
1130
  * {\\"instanceId\\":\\"mse-cn-1ls43******\\",\\"namespace\\":\\"62ee12fb-c279-4da4-be96-21**********\\"}
@@ -1194,23 +1132,23 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1194
1132
  microRegistrationConfig?: string;
1195
1133
  /**
1196
1134
  * @remarks
1197
- * The configurations of microservice governance.
1135
+ * The microservice governance configuration.
1198
1136
  *
1199
1137
  * - Specifies whether to enable microservice governance (enable):
1200
1138
  *
1201
- * - true: Enable
1139
+ * - true: enabled
1202
1140
  *
1203
- * - false: Disable
1141
+ * - false: disabled
1204
1142
  *
1205
- * - The configuration of graceful start and shutdown (mseLosslessRule):
1143
+ * - Lossless rolling update configuration (mseLosslessRule):
1206
1144
  *
1207
- * - delayTime: The delay time.
1145
+ * - delayTime: the delay time.
1208
1146
  *
1209
- * - enable: Specifies whether to enable graceful start. true indicates that graceful start is enabled. false indicates that graceful start is not enabled.
1147
+ * - enable: specifies whether to enable the lossless online feature. true indicates enabled. false indicates disabled.
1210
1148
  *
1211
- * - notice: Specifies whether to enable notifications. true indicates that notifications are enabled. false indicates that notifications are not enabled.
1149
+ * - notice: specifies whether to enable the notification feature. true indicates enabled. false indicates disabled.
1212
1150
  *
1213
- * - warmupTime: The warm-up duration for a small amount of traffic. Unit: seconds.
1151
+ * - warmupTime: the warm-up duration for traffic ramping, in seconds.
1214
1152
  *
1215
1153
  * @example
1216
1154
  * {\\"Enable\\":true,\\"MseLosslessRule\\":{\\"enable\\":true,\\"notice\\":true,\\"delayTime\\":10,\\"warmupTime\\":120,\\"funcType\\":2,\\"aligned\\":false,\\"related\\":false,\\"lossLessDetail\\":false}}
@@ -1218,13 +1156,12 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1218
1156
  microserviceEngineConfig?: string;
1219
1157
  /**
1220
1158
  * @remarks
1221
- * The percentage of the minimum number of ready instances. Valid values:
1222
- *
1223
- * - -1: The default value. This value indicates that the percentage is not used. If you do not specify this parameter, the system uses the default value **-1**.
1159
+ * The minimum percentage of available instances. Valid values:
1224
1160
  *
1225
- * - **0 to 100**: The percentage of the minimum number of ready instances. The value is rounded up. For example, if you set this parameter to **50**%, and you have five instances, the minimum number of ready instances is 3.
1161
+ * - **-1**: The default value, which indicates that the percentage is not used. If this parameter is not specified, the system uses **-1** by default.
1162
+ * - **0~100**: The unit is percentage, rounded up. For example, if set to **50**%, and the current number of instances is 5, the minimum number of available instances is 3.
1226
1163
  *
1227
- * > If you specify both \\`MinReadyInstances\\` and **MinReadyInstanceRatio**, and the value of **MinReadyInstanceRatio** is not **-1**, the value of **MinReadyInstanceRatio** takes precedence. For example, if **MinReadyInstances** is set to **5** and **MinReadyInstanceRatio** is set to **50**, the minimum number of ready instances is calculated based on the value of **MinReadyInstanceRatio**.
1164
+ * > When both **MinReadyInstance** and **MinReadyInstanceRatio** are specified and the value of **MinReadyInstanceRatio** is not **-1**, the **MinReadyInstanceRatio** parameter takes precedence. For example, if **MinReadyInstances** is set to **5** and **MinReadyInstanceRatio** is set to **50**, the system uses **MinReadyInstanceRatio** to calculate the minimum number of available instances.
1228
1165
  *
1229
1166
  * @example
1230
1167
  * -1
@@ -1232,13 +1169,12 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1232
1169
  minReadyInstanceRatio?: number;
1233
1170
  /**
1234
1171
  * @remarks
1235
- * The minimum number of ready instances. Valid values:
1236
- *
1237
- * - If you set this parameter to **0**, the application may be interrupted during an upgrade.
1172
+ * The minimum number of available instances. Valid values:
1238
1173
  *
1239
- * - If you set this parameter to -1, the system uses a recommended value, which is 25% of the total number of instances. For example, if you have five instances, the minimum number of ready instances is 2 after the value is rounded up.
1174
+ * - If set to **0**, the application interrupts services during the upgrade process.
1175
+ * - If set to **-1**, the system-recommended value is used, which is 25% of the current number of instances. If the current number of instances is 5, 5 × 25% = 1.25, which is rounded up to 2.
1240
1176
  *
1241
- * > We recommend that you set the minimum number of ready instances to a value of 1 or greater to ensure that the application is not interrupted during a rolling update.
1177
+ * > Set the minimum number of available instances to 1 for each rolling deployment to avoid service interruptions.
1242
1178
  *
1243
1179
  * @example
1244
1180
  * 1
@@ -1246,12 +1182,12 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1246
1182
  minReadyInstances?: number;
1247
1183
  /**
1248
1184
  * @remarks
1249
- * The mount description.
1185
+ * The mount description information.
1250
1186
  */
1251
1187
  mountDesc?: DescribeApplicationConfigResponseBodyDataMountDesc[];
1252
1188
  /**
1253
1189
  * @remarks
1254
- * The mount target of the Apsara File Storage NAS file system in the application VPC. If you do not change the NAS configuration during a deployment, you do not need to specify this parameter. If you want to clear the NAS configuration, set this parameter to an empty string ("").
1190
+ * The mount point of NAS within the application VPC. If the configuration has not changed during deployment, you do not need to set this parameter (that is, the **MountHost** field does not need to be included in the request). To clear the NAS configuration, set the value of this field to an empty string in the request (that is, set the value of the **MountHost** field to "").
1255
1191
  *
1256
1192
  * @example
1257
1193
  * example.com
@@ -1259,7 +1195,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1259
1195
  mountHost?: string;
1260
1196
  /**
1261
1197
  * @remarks
1262
- * The ID of the application in Microservices Engine (MSE).
1198
+ * The application ID on the Microservices Engine (MSE) side.
1263
1199
  *
1264
1200
  * @example
1265
1201
  * xxxxxxx@xxxxx
@@ -1267,7 +1203,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1267
1203
  mseApplicationId?: string;
1268
1204
  /**
1269
1205
  * @remarks
1270
- * The name of the application after the SAE service is registered with MSE.
1206
+ * The application name after the SAE service is registered with MSE.
1271
1207
  *
1272
1208
  * @example
1273
1209
  * cn-shenzhen-alb-demo-5c****
@@ -1283,7 +1219,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1283
1219
  namespaceId?: string;
1284
1220
  /**
1285
1221
  * @remarks
1286
- * The configurations for mounting a NAS file system.
1222
+ * The NAS mount configurations.
1287
1223
  *
1288
1224
  * @example
1289
1225
  * [{"mountPath":"/test1","readOnly":false,"nasId":"nasId1","mountDomain":"nasId1.cn-shenzhen.nas.aliyuncs.com","nasPath":"/test1"},{"nasId":"nasId2","mountDomain":"nasId2.cn-shenzhen.nas.aliyuncs.com","readOnly":false,"nasPath":"/test2","mountPath":"/test2"}]
@@ -1291,7 +1227,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1291
1227
  nasConfigs?: string;
1292
1228
  /**
1293
1229
  * @remarks
1294
- * The ID of the NAS file system.
1230
+ * NAS ID
1295
1231
  *
1296
1232
  * @example
1297
1233
  * AKSN****
@@ -1299,12 +1235,10 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1299
1235
  nasId?: string;
1300
1236
  /**
1301
1237
  * @remarks
1302
- * The application version.
1303
- *
1304
- * - lite: Lightweight Edition
1238
+ * The application version. Valid values:
1305
1239
  *
1240
+ * - lite: Lite Edition
1306
1241
  * - std: Standard Edition
1307
- *
1308
1242
  * - pro: Professional Edition
1309
1243
  *
1310
1244
  * @example
@@ -1314,8 +1248,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1314
1248
  /**
1315
1249
  * @remarks
1316
1250
  * The RAM role for identity authentication.
1317
- *
1318
- * > You must create an OpenID Connect (OIDC) identity provider (IdP) and a RAM role for the IdP in the same region beforehand. For more information, see [Create an OIDC IdP](https://help.aliyun.com/document_detail/2331022.html) and [Create a RAM role for a trusted IdP](https://help.aliyun.com/document_detail/2331016.html).
1251
+ * > Create an OIDC identity provider and an identity provider role in the same region in advance. For more information, see [Create an OIDC identity provider](https://help.aliyun.com/document_detail/2331022.html) and [Create a role for SSO identity provider](https://help.aliyun.com/document_detail/2331016.html).
1319
1252
  *
1320
1253
  * @example
1321
1254
  * sae-test
@@ -1323,7 +1256,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1323
1256
  oidcRoleName?: string;
1324
1257
  /**
1325
1258
  * @remarks
1326
- * The AccessKey ID that is used to read data from and write data to Object Storage Service (OSS).
1259
+ * The AccessKey ID for OSS read/write operations.
1327
1260
  *
1328
1261
  * @example
1329
1262
  * xxxxxx
@@ -1331,7 +1264,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1331
1264
  ossAkId?: string;
1332
1265
  /**
1333
1266
  * @remarks
1334
- * The AccessKey secret that is used to read data from and write data to OSS.
1267
+ * The AccessKey Secret for OSS read/write operations.
1335
1268
  *
1336
1269
  * @example
1337
1270
  * xxxxxx
@@ -1339,46 +1272,30 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1339
1272
  ossAkSecret?: string;
1340
1273
  /**
1341
1274
  * @remarks
1342
- * The description of the OSS mount.
1275
+ * The OSS mount description.
1343
1276
  */
1344
1277
  ossMountDescs?: DescribeApplicationConfigResponseBodyDataOssMountDescs[];
1345
1278
  /**
1346
1279
  * @remarks
1347
- * The type of the application package. Valid values:
1348
- *
1349
- * - If you deploy the application using Java, valid values are **FatJar**, **War**, and **Image**.
1350
- *
1351
- * - If you deploy the application using PHP, the following values are supported:
1352
- *
1353
- * - **PhpZip**
1280
+ * The application package type. Valid values:
1354
1281
  *
1355
- * - **IMAGE_PHP_5_4**
1356
- *
1357
- * - **IMAGE_PHP_5_4_ALPINE**
1358
- *
1359
- * - **IMAGE_PHP_5_5**
1360
- *
1361
- * - **IMAGE_PHP_5_5_ALPINE**
1362
- *
1363
- * - **IMAGE_PHP_5_6**
1364
- *
1365
- * - **IMAGE_PHP_5_6_ALPINE**
1366
- *
1367
- * - **IMAGE_PHP_7_0**
1368
- *
1369
- * - **IMAGE_PHP_7_0_ALPINE**
1370
- *
1371
- * - **IMAGE_PHP_7_1**
1372
- *
1373
- * - **IMAGE_PHP_7_1_ALPINE**
1374
- *
1375
- * - **IMAGE_PHP_7_2**
1376
- *
1377
- * - **IMAGE_PHP_7_2_ALPINE**
1378
- *
1379
- * - **IMAGE_PHP_7_3**
1380
- *
1381
- * - **IMAGE_PHP_7_3_ALPINE**
1282
+ * - When you deploy with Java, **FatJar**, **War**, and **Image** are supported.
1283
+ * - When you deploy with PHP, the following types are supported:
1284
+ * - **PhpZip**
1285
+ * - **IMAGE_PHP_5_4**
1286
+ * - **IMAGE_PHP_5_4_ALPINE**
1287
+ * - **IMAGE_PHP_5_5**
1288
+ * - **IMAGE_PHP_5_5_ALPINE**
1289
+ * - **IMAGE_PHP_5_6**
1290
+ * - **IMAGE_PHP_5_6_ALPINE**
1291
+ * - **IMAGE_PHP_7_0**
1292
+ * - **IMAGE_PHP_7_0_ALPINE**
1293
+ * - **IMAGE_PHP_7_1**
1294
+ * - **IMAGE_PHP_7_1_ALPINE**
1295
+ * - **IMAGE_PHP_7_2**
1296
+ * - **IMAGE_PHP_7_2_ALPINE**
1297
+ * - **IMAGE_PHP_7_3**
1298
+ * - **IMAGE_PHP_7_3_ALPINE**
1382
1299
  *
1383
1300
  * @example
1384
1301
  * War
@@ -1386,11 +1303,10 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1386
1303
  packageType?: string;
1387
1304
  /**
1388
1305
  * @remarks
1389
- * The URL of the deployment package. If you upload the deployment package using SAE, note the following:
1390
- *
1391
- * - You cannot download the package from this URL. Call the \\`GetPackageVersionAccessableUrl\\` operation to obtain a download URL that is valid for 10 minutes.
1306
+ * The deployment package URL. If your deployment package is uploaded through SAE, note the following:
1392
1307
  *
1393
- * - SAE stores the package for a maximum of 90 days. After 90 days, the URL is not returned and you cannot download the package.
1308
+ * - This URL cannot be used for direct download. Use the GetPackageVersionAccessableUrl operation to obtain a downloadable URL (valid for 10 minutes).
1309
+ * - SAE retains the package for a maximum of 90 days. After 90 days, the URL is no longer returned and the package is no longer available for download.
1394
1310
  */
1395
1311
  packageUrl?: string;
1396
1312
  /**
@@ -1403,7 +1319,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1403
1319
  packageVersion?: string;
1404
1320
  /**
1405
1321
  * @remarks
1406
- * The PHP version required for the deployment package. This parameter is not supported for images.
1322
+ * The PHP version on which the PHP deployment package depends. Images are not supported.
1407
1323
  *
1408
1324
  * @example
1409
1325
  * PHP-FPM 7.0
@@ -1411,9 +1327,9 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1411
1327
  php?: string;
1412
1328
  /**
1413
1329
  * @remarks
1414
- * The mount path of the Application Real-Time Monitoring Service (ARMS) configuration file for a PHP application. Make sure that the PHP server loads the configuration file from this path.
1330
+ * The mount path for PHP application monitoring. Make sure that the PHP server loads the configuration file from this path.
1415
1331
  *
1416
- * SAE automatically renders the correct configuration file. You do not need to manage the content of the configuration file.
1332
+ * You do not need to manage the configuration content. SAE automatically renders the correct configuration file.
1417
1333
  *
1418
1334
  * @example
1419
1335
  * /usr/local/etc/php/conf.d/arms.ini
@@ -1429,7 +1345,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1429
1345
  phpConfig?: string;
1430
1346
  /**
1431
1347
  * @remarks
1432
- * The mount path of the PHP application startup configuration file. Make sure that the PHP server uses this configuration file to start.
1348
+ * The mount path of the PHP application startup configuration. Make sure that the PHP server uses this configuration file for startup.
1433
1349
  *
1434
1350
  * @example
1435
1351
  * /usr/local/etc/php/php.ini
@@ -1437,7 +1353,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1437
1353
  phpConfigLocation?: string;
1438
1354
  /**
1439
1355
  * @remarks
1440
- * The script that runs after the container starts. The script runs immediately after the container is created. Example: `{"exec":{"command":["cat","/etc/group"]}}`
1356
+ * The script that is run after the container starts. A script is triggered immediately after the container is created. Format: `{"exec":{"command":["cat","/etc/group"\\]}}`
1441
1357
  *
1442
1358
  * @example
1443
1359
  * {"exec":{"command":["cat","/etc/group"]}}
@@ -1445,7 +1361,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1445
1361
  postStart?: string;
1446
1362
  /**
1447
1363
  * @remarks
1448
- * The script that runs before the container is stopped. The script runs before the container is deleted. Example: `{"exec":{"command":["cat","/etc/group"]}}`
1364
+ * The script that is run before the container stops. A script is triggered before the container is deleted. Format: `{"exec":{"command":["cat","/etc/group"\\]}}`
1449
1365
  *
1450
1366
  * @example
1451
1367
  * {"exec":{"command":["cat","/etc/group"]}}
@@ -1453,13 +1369,11 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1453
1369
  preStop?: string;
1454
1370
  /**
1455
1371
  * @remarks
1456
- * The programming language of the application. Valid values:
1372
+ * The programming language of the technology stack used to create the application. Valid values:
1457
1373
  *
1458
- * - **java**: Java
1459
- *
1460
- * - **php**: PHP
1461
- *
1462
- * - **other**: other languages, such as Python, C++, Go, .NET, and Node.js.
1374
+ * - **java**: Java.
1375
+ * - **php**: PHP.
1376
+ * - **other**: Other languages, such as Python, C++, Go, .NET, and Node.js.
1463
1377
  *
1464
1378
  * @example
1465
1379
  * java
@@ -1467,7 +1381,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1467
1381
  programmingLanguage?: string;
1468
1382
  /**
1469
1383
  * @remarks
1470
- * Enables service registration and discovery for a Kubernetes Service.
1384
+ * Enables K8s Service-based service registration and discovery.
1471
1385
  *
1472
1386
  * @example
1473
1387
  * { "serviceName": "bwm-poc-sc-gateway-cn-beijing-front", "namespaceId": "cn-beijing:front", "portAndProtocol": { "18012": "TCP" }, "portProtocols": [ { "port": "18012", "protocol": "TCP" } ], "enable": true }
@@ -1483,17 +1397,18 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1483
1397
  python?: string;
1484
1398
  /**
1485
1399
  * @remarks
1486
- * The dependencies for custom installation modules. By default, the dependencies that are defined in the requirements.txt file in the root directory are installed. If no software package is configured or a custom software package is used, you can specify the dependencies to be installed.
1400
+ * The custom installation module dependencies. By default, the dependencies defined in the requirements.txt file in the root directory are installed. If no dependencies are configured or custom packages are needed, you can specify the dependencies to install.
1487
1401
  *
1488
1402
  * @example
1489
1403
  * Flask==2.0
1490
1404
  */
1491
1405
  pythonModules?: string;
1406
+ raspConfig?: DescribeApplicationConfigResponseBodyDataRaspConfig[];
1492
1407
  /**
1493
1408
  * @remarks
1494
- * The readiness probe of the application. A container that fails the health check multiple times is shut down and restarted. A container that fails the health check does not receive traffic from a Server Load Balancer (SLB) instance. You can perform the health check using the **exec**, **httpGet**, or **tcpSocket** method. For more information, see the **Liveness** parameter.
1409
+ * The application startup status check. Containers that fail multiple health checks are shut down and restarted. Containers that do not pass the health check do not receive SLB traffic. The **exec**, **httpGet**, and **tcpSocket** methods are supported. For specific examples, see the **Liveness** parameter.
1495
1410
  *
1496
- * > You can use only one method for a health check.
1411
+ * > You can select only one method for health checks.
1497
1412
  *
1498
1413
  * @example
1499
1414
  * {"exec":{"command":["curl http://localhost:8080"]},"initialDelaySeconds":20,"timeoutSeconds":5}
@@ -1525,12 +1440,12 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1525
1440
  resourceType?: string;
1526
1441
  /**
1527
1442
  * @remarks
1528
- * The description of the secret that you want to mount.
1443
+ * The Secret mount description.
1529
1444
  */
1530
1445
  secretMountDesc?: DescribeApplicationConfigResponseBodyDataSecretMountDesc[];
1531
1446
  /**
1532
1447
  * @remarks
1533
- * The ID of the security group.
1448
+ * The security group ID.
1534
1449
  *
1535
1450
  * @example
1536
1451
  * sg-wz969ngg2e49q5i4****
@@ -1538,37 +1453,32 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1538
1453
  securityGroupId?: string;
1539
1454
  /**
1540
1455
  * @remarks
1541
- * The canary release tags of the application configuration.
1456
+ * The canary release tags configured for the application.
1542
1457
  */
1543
1458
  serviceTags?: {
1544
1459
  [key: string]: string;
1545
1460
  };
1546
1461
  /**
1547
1462
  * @remarks
1548
- * The configurations of the sidecar container.
1463
+ * The sidecar container configuration.
1549
1464
  */
1550
1465
  sidecarContainersConfig?: DescribeApplicationConfigResponseBodyDataSidecarContainersConfig[];
1551
1466
  /**
1552
1467
  * @remarks
1553
- * The configurations for collecting logs to Simple Log Service (SLS).
1554
- *
1555
- * - To use an SLS resource that is automatically created by SAE: `[{"logDir":"","logType":"stdout"},{"logDir":"/tmp/a.log"}]`.
1556
- *
1557
- * - To use a custom SLS resource: `[{"projectName":"test-sls","logType":"stdout","logDir":"","logstoreName":"sae","logtailName":""},{"projectName":"test","logDir":"/tmp/a.log","logstoreName":"sae","logtailName":""}]`.
1468
+ * The settings for log collection to Simple Log Service (SLS).
1558
1469
  *
1559
- * The parameters are described as follows:
1470
+ * - To use SLS resources that are automatically created by Serverless App Engine (SAE): `[{"logDir":"","logType":"stdout"},{"logDir":"/tmp/a.log"}]`.
1471
+ * - To use custom SLS resources: `[{"projectName":"test-sls","logType":"stdout","logDir":"","logstoreName":"sae","logtailName":""},{"projectName":"test","logDir":"/tmp/a.log","logstoreName":"sae","logtailName":""}]`.
1560
1472
  *
1561
- * - **projectName**: The name of the SLS project.
1473
+ * Parameter descriptions:
1562
1474
  *
1475
+ * - **projectName**: The name of the project in SLS.
1563
1476
  * - **logDir**: The log path.
1564
- *
1565
- * - **logType**: The log type. **stdout** indicates the standard output log of the container. You can specify only one log of this type. If you do not specify this parameter, file logs are collected.
1566
- *
1477
+ * - **logType**: The log type. **stdout** indicates container standard output logs. You can set only one stdout entry. If this parameter is not set, file logs are collected.
1567
1478
  * - **logstoreName**: The name of the Logstore in SLS.
1479
+ * - **logtailName**: The name of the Logtail in SLS. If this parameter is not specified, a new Logtail is created through automatic creation.
1568
1480
  *
1569
- * - **logtailName**: The name of the Logtail configuration in SLS. If you do not specify this parameter, a new Logtail configuration is created.
1570
- *
1571
- * If you do not change the log collection configuration during a deployment, you do not need to specify this parameter. If you no longer need to use the log collection feature, set this parameter to an empty string ("") in the request.
1481
+ * If the SLS collection configuration has not changed during multiple deployments, you do not need to set this parameter (that is, the **SlsConfigs** field does not need to be included in the request). If you no longer need the SLS collection feature, set the value of this field to an empty string in the request (that is, set the value of the **SlsConfigs** field to "").
1572
1482
  *
1573
1483
  * @example
1574
1484
  * [{"logDir":"","logType":"stdout"},{"logDir":"/tmp/a.log"}]
@@ -1576,7 +1486,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1576
1486
  slsConfigs?: string;
1577
1487
  /**
1578
1488
  * @remarks
1579
- * The environment tags for SLS logs.
1489
+ * sls log env tags
1580
1490
  */
1581
1491
  slsLogEnvTags?: string;
1582
1492
  /**
@@ -1589,7 +1499,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1589
1499
  startupProbe?: string;
1590
1500
  /**
1591
1501
  * @remarks
1592
- * The configuration for service registration and discovery based on a Kubernetes Service and for end-to-end canary release.
1502
+ * Configures K8s Service-based service registration and discovery with end-to-end canary release.
1593
1503
  *
1594
1504
  * @example
1595
1505
  * {\\"enable\\":\\"false\\",\\"namespaceId\\":\\"cn-beijing:test\\",\\"portAndProtocol\\":{\\"2000:TCP\\":\\"18081\\"},\\"portProtocols\\":[{\\"port\\":2000,\\"protocol\\":\\"TCP\\",\\"targetPort\\":18081}],\\"pvtzDiscoveryName\\":\\"cn-beijing-1421801774382676\\",\\"serviceId\\":\\"3513\\",\\"serviceName\\":\\"demo-gray.test\\"}
@@ -1597,12 +1507,12 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1597
1507
  swimlanePvtzDiscovery?: string;
1598
1508
  /**
1599
1509
  * @remarks
1600
- * The tags.
1510
+ * The tag information.
1601
1511
  */
1602
1512
  tags?: DescribeApplicationConfigResponseBodyDataTags[];
1603
1513
  /**
1604
1514
  * @remarks
1605
- * The timeout period for a graceful shutdown. Default value: 30. Unit: seconds. The value can range from 1 to 300.
1515
+ * The graceful shutdown timeout period. Default value: 30. Unit: seconds. Valid values: 1 to 300.
1606
1516
  *
1607
1517
  * @example
1608
1518
  * 10
@@ -1618,16 +1528,12 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1618
1528
  timezone?: string;
1619
1529
  /**
1620
1530
  * @remarks
1621
- * The Tomcat configuration. To delete the configuration, set this parameter to "" or "{}".
1622
- *
1623
- * - **port**: The port number. The port number can range from 1024 to 65535. A port number smaller than 1024 requires the root permission to be operated. Because the container is configured with the administrator permission, specify a port number that is greater than 1024. If you do not configure this parameter, the default port 8080 is used.
1624
- *
1625
- * - **contextPath**: The access path. The default value is the root directory "/".
1531
+ * The Tomcat configuration. Set this parameter to "" or "{}" to delete the configuration:
1626
1532
  *
1533
+ * - **port**: The port number. Valid values: 1024 to 65535. Ports smaller than 1024 require root permissions. Because the container is configured with admin permissions, specify a port greater than 1024. Default value: 8080.
1534
+ * - **contextPath**: The access path. Default value: root directory "/".
1627
1535
  * - **maxThreads**: The maximum number of connections in the connection pool. Default value: 400.
1628
- *
1629
- * - **uriEncoding**: The URI encoding scheme of Tomcat. Valid values: **UTF-8**, **ISO-8859-1**, **GBK**, and **GB2312**. If you do not set this parameter, the default value **ISO-8859-1** is used.
1630
- *
1536
+ * - **uriEncoding**: The encoding format of Tomcat. Valid values: **UTF-8**, **ISO-8859-1**, **GBK**, and **GB2312**. Default value: **ISO-8859-1**.
1631
1537
  * - **useBodyEncoding**: Specifies whether to use **BodyEncoding for URL**. Default value: **true**.
1632
1538
  *
1633
1539
  * @example
@@ -1636,27 +1542,22 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1636
1542
  tomcatConfig?: string;
1637
1543
  /**
1638
1544
  * @remarks
1639
- * The deployment policy. If the minimum number of ready instances is 1, the value of the **UpdateStrategy** parameter is "". If the minimum number of ready instances is greater than 1, see the following examples:
1640
- *
1641
- * - Canary release of one instance, phased release in two batches, automatic batching, and a 1-minute interval between batches: `{"type":"GrayBatchUpdate","batchUpdate":{"batch":2,"releaseType":"auto","batchWaitTime":1},"grayUpdate":{"gray":1}}`
1642
- *
1643
- * - Canary release of one instance and phased release in two batches with manual batching: `{"type":"GrayBatchUpdate","batchUpdate":{"batch":2,"releaseType":"manual"},"grayUpdate":{"gray":1}}`
1545
+ * The deployment policy. When the minimum number of available instances is 1, the value of the **UpdateStrategy** field is "". When the minimum number of available instances is greater than 1, examples are as follows:
1644
1546
  *
1645
- * - Phased release in two batches, automatic batching, and a 0-minute interval between batches: `{"type":"BatchUpdate","batchUpdate":{"batch":2,"releaseType":"auto","batchWaitTime":0}}`
1547
+ * - Canary release of 1 instance + 2 subsequent batches + automatic batching + 1-minute batch interval: `{"type":"GrayBatchUpdate","batchUpdate":{"batch":2,"releaseType":"auto","batchWaitTime":1},"grayUpdate":{"gray":1}}`
1646
1548
  *
1647
- * The parameters are described as follows:
1549
+ * - Canary release of 1 instance + 2 subsequent batches + manual batching: `{"type":"GrayBatchUpdate","batchUpdate":{"batch":2,"releaseType":"manual"},"grayUpdate":{"gray":1}}`
1648
1550
  *
1649
- * - **type**: The type of the release policy. Valid values: **GrayBatchUpdate** (canary release) and **BatchUpdate** (phased release).
1551
+ * - 2 batches + automatic batching + 0-minute batch interval: `{"type":"BatchUpdate","batchUpdate":{"batch":2,"releaseType":"auto","batchWaitTime":0}}`
1650
1552
  *
1651
- * - **batchUpdate**: The phased release policy.
1553
+ * Parameter descriptions:
1652
1554
  *
1653
- * - **batch**: The number of release batches.
1654
- *
1655
- * - **releaseType**: The processing method for batches. Valid values: **auto** and **manual**.
1656
- *
1657
- * - **batchWaitTime**: The interval between batches. Unit: seconds.
1658
- *
1659
- * - **grayUpdate**: The number of batches for the remaining instances after the canary release. This parameter is required when **type** is set to **GrayBatchUpdate**.
1555
+ * - **type**: The release policy type. Valid values: **GrayBatchUpdate** (grayscale batch release) and **BatchUpdate** (batch release).
1556
+ * - **batchUpdate**: The batch release policy.
1557
+ * - **batch**: The number of release batches.
1558
+ * - **releaseType**: The processing method between batches. Valid values: **auto** (automatic) and **manual** (manual).
1559
+ * - **batchWaitTime**: The interval between deployments within a batch, in seconds.
1560
+ * - **grayUpdate**: The remaining batches after grayscale release. This parameter is required when **type** is set to **GrayBatchUpdate**.
1660
1561
  *
1661
1562
  * @example
1662
1563
  * {"type":"GrayBatchUpdate","batchUpdate":{"batch":2,"releaseType":"auto","batchWaitTime":1},"grayUpdate":{"gray":1}}
@@ -1664,7 +1565,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1664
1565
  updateStrategy?: string;
1665
1566
  /**
1666
1567
  * @remarks
1667
- * The vSwitch ID.
1568
+ * vSwitch ID
1668
1569
  *
1669
1570
  * @example
1670
1571
  * vsw-2ze559r1z1bpwqxwp****
@@ -1672,7 +1573,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1672
1573
  vSwitchId?: string;
1673
1574
  /**
1674
1575
  * @remarks
1675
- * The ID of the virtual private cloud (VPC).
1576
+ * VPC ID
1676
1577
  *
1677
1578
  * @example
1678
1579
  * vpc-2ze0i263cnn311nvj****
@@ -1680,7 +1581,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1680
1581
  vpcId?: string;
1681
1582
  /**
1682
1583
  * @remarks
1683
- * The options for starting the WAR package. The default startup command is: `java $JAVA_OPTS $CATALINA_OPTS -Options org.apache.catalina.startup.Bootstrap "$@" start`.
1584
+ * The startup options for the WAR package application. The default startup command for the application: `java $JAVA_OPTS $CATALINA_OPTS -Options org.apache.catalina.startup.Bootstrap "$@" start`.
1684
1585
  *
1685
1586
  * @example
1686
1587
  * custom-option
@@ -1688,10 +1589,9 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1688
1589
  warStartOptions?: string;
1689
1590
  /**
1690
1591
  * @remarks
1691
- * The Tomcat version that the deployment package requires. The following versions are supported:
1592
+ * The Tomcat version on which the deployment package depends. Valid values:
1692
1593
  *
1693
1594
  * - **apache-tomcat-7.0.91**
1694
- *
1695
1595
  * - **apache-tomcat-8.5.42**
1696
1596
  *
1697
1597
  * This parameter is not supported when **Package Type** is set to **Image**.
@@ -1714,15 +1614,12 @@ export declare class DescribeApplicationConfigResponseBodyData extends $dara.Mod
1714
1614
  export declare class DescribeApplicationConfigResponseBody extends $dara.Model {
1715
1615
  /**
1716
1616
  * @remarks
1717
- * The HTTP status code. Valid values:
1718
- *
1719
- * - **2xx**: The request is successful.
1617
+ * The API status or POP error code. Valid values:
1720
1618
  *
1721
- * - **3xx**: The request is redirected.
1722
- *
1723
- * - **4xx**: The request is invalid.
1724
- *
1725
- * - **5xx**: A server error occurs.
1619
+ * - **2xx**: success.
1620
+ * - **3xx**: redirection.
1621
+ * - **4xx**: request error.
1622
+ * - **5xx**: server error.
1726
1623
  *
1727
1624
  * @example
1728
1625
  * 200
@@ -1730,21 +1627,20 @@ export declare class DescribeApplicationConfigResponseBody extends $dara.Model {
1730
1627
  code?: string;
1731
1628
  /**
1732
1629
  * @remarks
1733
- * The information about the application.
1630
+ * The application information.
1734
1631
  */
1735
1632
  data?: DescribeApplicationConfigResponseBodyData;
1736
1633
  /**
1737
1634
  * @remarks
1738
- * The error code.
1635
+ * The error code. Valid values:
1739
1636
  *
1740
- * - This parameter is not returned if the request is successful.
1741
- *
1742
- * - If the request fails, this parameter is returned. For more information, see the "Error codes" section in this topic.
1637
+ * - If the request is successful, the **ErrorCode** field is not returned.
1638
+ * - If the request fails, the **ErrorCode** field is returned. For more information, see the **Error codes** section in this topic.
1743
1639
  */
1744
1640
  errorCode?: string;
1745
1641
  /**
1746
1642
  * @remarks
1747
- * The additional information that is returned.
1643
+ * The additional information about the call result.
1748
1644
  *
1749
1645
  * @example
1750
1646
  * success
@@ -1760,11 +1656,10 @@ export declare class DescribeApplicationConfigResponseBody extends $dara.Model {
1760
1656
  requestId?: string;
1761
1657
  /**
1762
1658
  * @remarks
1763
- * Indicates whether the application configuration was retrieved. Valid values:
1764
- *
1765
- * - **true**: The configuration was retrieved.
1659
+ * Indicates whether the application configuration information is retrieved. Valid values:
1766
1660
  *
1767
- * - **false**: The configuration failed to be retrieved.
1661
+ * - **true**: Retrieved.
1662
+ * - **false**: Failed to retrieve.
1768
1663
  *
1769
1664
  * @example
1770
1665
  * true
@@ -1772,7 +1667,7 @@ export declare class DescribeApplicationConfigResponseBody extends $dara.Model {
1772
1667
  success?: boolean;
1773
1668
  /**
1774
1669
  * @remarks
1775
- * The trace ID that is used to query the details of the request.
1670
+ * The trace ID, which is used to query the details of a call.
1776
1671
  *
1777
1672
  * @example
1778
1673
  * ac1a0b2215622246421415014e****