@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
@@ -1,10 +1,25 @@
1
1
  import * as $dara from '@darabonba/typescript';
2
2
  import { InitContainerConfig } from "./InitContainerConfig";
3
3
  import { SidecarContainerConfig } from "./SidecarContainerConfig";
4
+ export declare class CreateApplicationRequestRaspConfig extends $dara.Model {
5
+ enableRasp?: boolean;
6
+ raspAppKey?: string;
7
+ raspAppName?: string;
8
+ static names(): {
9
+ [key: string]: string;
10
+ };
11
+ static types(): {
12
+ [key: string]: any;
13
+ };
14
+ validate(): void;
15
+ constructor(map?: {
16
+ [key: string]: any;
17
+ });
18
+ }
4
19
  export declare class CreateApplicationRequest extends $dara.Model {
5
20
  /**
6
21
  * @remarks
7
- * The ARN of the RAM role required to pull images across Alibaba Cloud accounts. For more information, see [Authorize cross-account access using a RAM role](https://help.aliyun.com/document_detail/223585.html).
22
+ * The ARN of the RAM role required for cross-account image pulling. For more information, see [Grant permissions across Alibaba Cloud accounts by using a RAM role](https://help.aliyun.com/document_detail/223585.html).
8
23
  *
9
24
  * @example
10
25
  * acs:ram::123456789012****:role/adminrole
@@ -12,7 +27,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
12
27
  acrAssumeRoleArn?: string;
13
28
  /**
14
29
  * @remarks
15
- * The Container Registry Enterprise Edition (ACR Enterprise Edition) instance ID. This parameter is required when **ImageUrl** is a Container Registry Enterprise Edition image.
30
+ * The instance ID of the Container Registry Enterprise instance. This parameter is required when **ImageUrl** is set to a Container Registry Enterprise Edition image.
16
31
  *
17
32
  * @example
18
33
  * cri-xxxxxx
@@ -28,7 +43,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
28
43
  agentVersion?: string;
29
44
  /**
30
45
  * @remarks
31
- * The application description. It cannot exceed 1024 characters.
46
+ * The application description. The description can be up to 1024 characters in length.
32
47
  *
33
48
  * @example
34
49
  * This is a test description.
@@ -36,7 +51,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
36
51
  appDescription?: string;
37
52
  /**
38
53
  * @remarks
39
- * The application name. It can contain digits, letters, and hyphens (-). It must start with a letter and cannot end with a hyphen (-). The name cannot exceed 36 characters.
54
+ * The application name. The name can contain digits, letters, and hyphens (-). The name must start with a letter and cannot end with a hyphen (-). The name can be up to 36 characters in length.
40
55
  *
41
56
  * This parameter is required.
42
57
  *
@@ -46,7 +61,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
46
61
  appName?: string;
47
62
  /**
48
63
  * @remarks
49
- * Select micro_service for a microservice application.
64
+ * Set this parameter to micro_service to create a microservice application.
50
65
  *
51
66
  * @example
52
67
  * micro_service
@@ -54,11 +69,10 @@ export declare class CreateApplicationRequest extends $dara.Model {
54
69
  appSource?: string;
55
70
  /**
56
71
  * @remarks
57
- * Whether to bind an Elastic IP address (EIP). Valid values:
72
+ * Specifies whether to associate an EIP. Valid values:
58
73
  *
59
- * - **true**: Bind.
60
- *
61
- * - **false**: Do not bind.
74
+ * - **true**: associate an EIP.
75
+ * - **false**: do not associate an EIP.
62
76
  *
63
77
  * @example
64
78
  * true
@@ -66,13 +80,12 @@ export declare class CreateApplicationRequest extends $dara.Model {
66
80
  associateEip?: boolean;
67
81
  /**
68
82
  * @remarks
69
- * Whether to automatically configure the network environment. Valid values:
70
- *
71
- * - **true**: SAE automatically configures the network environment when creating an application. The values of **NamespaceId**, **VpcId**, **vSwitchId**, and **SecurityGroupId** are ignored.
83
+ * Specifies whether to automatically configure the network environment. Valid values:
72
84
  *
73
- * - **false**: SAE manually configures the network environment when creating an application.
85
+ * - **true**: SAE automatically configures the network environment when the application is created. The values of **NamespaceId**, **VpcId**, **vSwitchId**, and **SecurityGroupId** are ignored.
86
+ * - **false**: SAE manually configures the network environment when the application is created.
74
87
  *
75
- * > If you select **true**, other **NamespaceId** values passed are ignored.
88
+ * > If this parameter is set to **true**, any other **NamespaceId** value that is passed is ignored.
76
89
  *
77
90
  * @example
78
91
  * true
@@ -88,7 +101,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
88
101
  baseAppId?: string;
89
102
  /**
90
103
  * @remarks
91
- * The image start command. This command must be an executable object that exists in the container. Example:
104
+ * The command that is used to start the image. The command must be an executable object in the container. Example:
92
105
  *
93
106
  * ```
94
107
  * command:
@@ -97,12 +110,10 @@ export declare class CreateApplicationRequest extends $dara.Model {
97
110
  * - >
98
111
  * - file0
99
112
  * ```
113
+ * In the preceding example, `Command="echo", CommandArgs=["abc", ">", "file0"]`.
100
114
  *
101
- * Based on the example, Command="echo" and `CommandArgs=["abc", ">", "file0"]`.
102
115
  *
103
- * >Notice:
104
- *
105
- * This option is required when PackageType is DotnetZip.
116
+ * >Notice: This parameter is required when PackageType is set to DotnetZip.
106
117
  *
107
118
  * @example
108
119
  * echo
@@ -110,12 +121,12 @@ export declare class CreateApplicationRequest extends $dara.Model {
110
121
  command?: string;
111
122
  /**
112
123
  * @remarks
113
- * The image start command parameters. These are the parameters required by the **Command** parameter. Format:
124
+ * The arguments of the image startup command. These are the arguments required by the startup command specified in **Command**. Format:
114
125
  *
115
126
  * `["a","b"]`
116
127
  *
117
- * In the example, `CommandArgs=["abc", ">", "file0"]`. Convert `["abc", ">", "file0"]` to a string type, with the format as a JSON array. If this parameter is not needed, do not specify it.
118
- * >Notice: This option is required when PackageType is DotnetZip.
128
+ * In the preceding example, `CommandArgs=["abc", ">", "file0"]`, where `["abc", ">", "file0"]` must be converted to the String type. The internal format is a JSON array. If this parameter is not required, leave it empty.
129
+ * >Notice: This parameter is required when PackageType is set to DotnetZip.
119
130
  *
120
131
  * @example
121
132
  * ["a","b"]
@@ -123,15 +134,14 @@ export declare class CreateApplicationRequest extends $dara.Model {
123
134
  commandArgs?: string;
124
135
  /**
125
136
  * @remarks
126
- * The **ConfigMap** mount description. Use configuration items created on the namespace configuration item page to inject configuration information into the container. Parameter description:
127
- *
128
- * - **configMapId**: The ConfigMap instance ID. Obtain it by calling the [ListNamespacedConfigMaps](https://help.aliyun.com/document_detail/176917.html) API operation.
137
+ * The **ConfigMap** mount description. Use a ConfigMap created on the namespace configuration items page to inject configuration information into the container. Parameter description:
129
138
  *
130
- * - **key**: The key value.
139
+ * - **configMapId**: the ConfigMap instance ID. You can obtain the ID by invoking the [ListNamespacedConfigMaps](https://help.aliyun.com/document_detail/176917.html) operation.
140
+ * - **key**: the key.
131
141
  *
132
142
  * > You can mount all keys by passing the `sae-sys-configmap-all` parameter.
133
143
  *
134
- * - **mountPath**: The mount path.
144
+ * - **mountPath**: the mount path.
135
145
  *
136
146
  * @example
137
147
  * [{"configMapId":16,"key":"test","mountPath":"/tmp"}]
@@ -139,20 +149,14 @@ export declare class CreateApplicationRequest extends $dara.Model {
139
149
  configMapMountDesc?: string;
140
150
  /**
141
151
  * @remarks
142
- * The CPU required for each instance, in millicores. It cannot be 0. Currently, only the following defined specifications are supported:
152
+ * The CPU specifications required for each instance, in millicores. This parameter cannot be set to 0. Only the following defined specifications are supported:
143
153
  *
144
154
  * - **500**
145
- *
146
155
  * - **1000**
147
- *
148
156
  * - **2000**
149
- *
150
157
  * - **4000**
151
- *
152
158
  * - **8000**
153
- *
154
159
  * - **16000**
155
- *
156
160
  * - **32000**
157
161
  *
158
162
  * @example
@@ -161,11 +165,10 @@ export declare class CreateApplicationRequest extends $dara.Model {
161
165
  cpu?: number;
162
166
  /**
163
167
  * @remarks
164
- * Custom Host mapping within the container. Valid values:
168
+ * The custom host mapping in the container. Valid values:
165
169
  *
166
- * - **hostName**: The domain name or hostname.
167
- *
168
- * - **ip**: The IP address.
170
+ * - **hostName**: the domain name or hostname.
171
+ * - **ip**: the IP address.
169
172
  *
170
173
  * @example
171
174
  * [{"hostName":"samplehost","ip":"127.0.0.1"}]
@@ -173,11 +176,10 @@ export declare class CreateApplicationRequest extends $dara.Model {
173
176
  customHostAlias?: string;
174
177
  /**
175
178
  * @remarks
176
- * The custom image type. If it is not a custom image, set it to an empty string:
177
- *
178
- * - internet: Public network image.
179
+ * The custom image type. Set this parameter to an empty string if the image is not a custom image:
179
180
  *
180
- * - intranet: Private network image.
181
+ * - internet: public image
182
+ * - intranet: private image
181
183
  *
182
184
  * @example
183
185
  * internet
@@ -185,11 +187,10 @@ export declare class CreateApplicationRequest extends $dara.Model {
185
187
  customImageNetworkType?: string;
186
188
  /**
187
189
  * @remarks
188
- * Whether to deploy immediately. Valid values:
190
+ * Specifies whether to immediately deploy the application. Valid values:
189
191
  *
190
- * - **true**: Default value. Deploy immediately.
191
- *
192
- * - **false**: Deploy later.
192
+ * - **true**: default value. The application is deployed immediately.
193
+ * - **false**: the application is deployed later.
193
194
  *
194
195
  * @example
195
196
  * true
@@ -205,16 +206,12 @@ export declare class CreateApplicationRequest extends $dara.Model {
205
206
  diskSize?: number;
206
207
  /**
207
208
  * @remarks
208
- * The version number of the .NET framework:
209
+ * The version of the .NET framework:
209
210
  *
210
211
  * - .NET 3.1
211
- *
212
212
  * - .NET 5.0
213
- *
214
213
  * - .NET 6.0
215
- *
216
214
  * - .NET 7.0
217
- *
218
215
  * - .NET 8.0
219
216
  *
220
217
  * @example
@@ -223,7 +220,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
223
220
  dotnet?: string;
224
221
  /**
225
222
  * @remarks
226
- * The application runtime environment version in the HSF framework, such as the Ali-Tomcat container.
223
+ * The version of the application runtime environment in the HSF framework, such as the Ali-Tomcat container.
227
224
  *
228
225
  * @example
229
226
  * 3.5.3
@@ -231,7 +228,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
231
228
  edasContainerVersion?: string;
232
229
  /**
233
230
  * @remarks
234
- * Shared temporary storage configuration.
231
+ * The shared ephemeral storage configuration.
235
232
  *
236
233
  * @example
237
234
  * [{\\"name\\":\\"workdir\\",\\"mountPath\\":\\"/usr/local/tomcat/webapps\\"}]
@@ -239,11 +236,10 @@ export declare class CreateApplicationRequest extends $dara.Model {
239
236
  emptyDirDesc?: string;
240
237
  /**
241
238
  * @remarks
242
- * Whether to enable the CPU Burst feature:
243
- *
244
- * - true: Enable.
239
+ * Specifies whether to enable the CPU Burst feature:
245
240
  *
246
- * - false: Do not enable.
241
+ * - true: Enabled.
242
+ * - false: Disabled.
247
243
  *
248
244
  * @example
249
245
  * true
@@ -251,11 +247,9 @@ export declare class CreateApplicationRequest extends $dara.Model {
251
247
  enableCpuBurst?: boolean;
252
248
  /**
253
249
  * @remarks
254
- * Enable application monitoring for non-Java applications based on eBPF technology. Valid values:
255
- *
256
- * - **true**: Enable.
257
- *
258
- * - **false**: Disable. Default value.
250
+ * Specifies whether to enable application monitoring for non-Java applications based on eBPF technology. Valid values:
251
+ * - **true**: enabled.
252
+ * - **false**: disabled. This is the default value.
259
253
  *
260
254
  * @example
261
255
  * false
@@ -263,7 +257,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
263
257
  enableEbpf?: string;
264
258
  /**
265
259
  * @remarks
266
- * Whether to reuse the namespace Agent version configuration.
260
+ * Specifies whether to reuse the namespace agent version configuration.
267
261
  *
268
262
  * @example
269
263
  * true
@@ -271,7 +265,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
271
265
  enableNamespaceAgentVersion?: boolean;
272
266
  /**
273
267
  * @remarks
274
- * Whether to reuse the namespace SLS log configuration.
268
+ * Specifies whether to reuse the namespace SLS log configuration.
275
269
  *
276
270
  * @example
277
271
  * true
@@ -279,11 +273,10 @@ export declare class CreateApplicationRequest extends $dara.Model {
279
273
  enableNamespaceSlsConfig?: boolean;
280
274
  /**
281
275
  * @remarks
282
- * Whether to enable new ARMS features:
276
+ * Specifies whether to enable the new ARMS feature:
283
277
  *
284
- * - true: Enable.
285
- *
286
- * - false: Do not enable.
278
+ * - true: Enabled.
279
+ * - false: Disabled.
287
280
  *
288
281
  * @example
289
282
  * false
@@ -291,7 +284,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
291
284
  enableNewArms?: boolean;
292
285
  /**
293
286
  * @remarks
294
- * Whether to enable Prometheus custom metric collection.
287
+ * Specifies whether to enable Prometheus custom metric collection.
295
288
  *
296
289
  * @example
297
290
  * false
@@ -299,11 +292,10 @@ export declare class CreateApplicationRequest extends $dara.Model {
299
292
  enablePrometheus?: boolean;
300
293
  /**
301
294
  * @remarks
302
- * Whether to enable Sidecar resource isolation:
303
- *
304
- * - true: Enable isolation.
295
+ * Specifies whether to enable sidecar resource isolation:
305
296
  *
306
- * - false: Do not enable isolation.
297
+ * - true: Isolated.
298
+ * - false: Not isolated.
307
299
  *
308
300
  * @example
309
301
  * true
@@ -311,23 +303,15 @@ export declare class CreateApplicationRequest extends $dara.Model {
311
303
  enableSidecarResourceIsolated?: boolean;
312
304
  /**
313
305
  * @remarks
314
- * Container environment variable parameters. Support custom configurations or referencing configuration items. 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:
315
- *
306
+ * The container environment variable parameters. You can customize environment variables or reference a ConfigMap. To reference a ConfigMap, create a ConfigMap instance first. For more information, see [CreateConfigMap](https://help.aliyun.com/document_detail/176914.html). Valid values:
316
307
  * - Custom configuration
317
- *
318
- * - **name**: The environment variable name.
319
- *
320
- * - **value**: The environment variable value. This has a higher priority than valueFrom.
321
- *
322
- * - Reference configuration item (valueFrom)
323
- *
324
- * - **name**: The environment variable name. You can reference a single key or all keys. To reference all keys, enter `sae-sys-configmap-all-<configuration item name>`, for example, `sae-sys-configmap-all-test1`.
325
- *
326
- * - **valueFrom**: The environment variable reference. Set this to `configMapRef`.
327
- *
328
- * - **configMapId**: The configuration item ID.
329
- *
330
- * - **key**: The key. If you reference all key-values, do not set this field.
308
+ * - **name**: the name of the environment variable.
309
+ * - **value**: the value of the environment variable. This takes priority over valueFrom.
310
+ * - Reference a ConfigMap (valueFrom)
311
+ * - **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`.
312
+ * - **valueFrom**: the environment variable reference. Set the value to `configMapRef`.
313
+ * - **configMapId**: the ConfigMap ID.
314
+ * - **key**: the key. If you reference all keys, do not set this field.
331
315
  *
332
316
  * @example
333
317
  * [
@@ -359,11 +343,9 @@ export declare class CreateApplicationRequest extends $dara.Model {
359
343
  gpuConfig?: string;
360
344
  /**
361
345
  * @remarks
362
- * K8s Headless Service service discovery.
363
- *
364
- * - serviceName: The service name.
365
- *
366
- * - namespaceId: The namespace ID.
346
+ * The K8s Headless Service-based service registration and discovery.
347
+ * - serviceName: the service name.
348
+ * - namespaceId: the namespace ID.
367
349
  *
368
350
  * @example
369
351
  * {\\"serviceName\\":\\"leaf-test-headless\\",\\"namespaceId\\":\\"cn-zhangjiakou:prod\\"}
@@ -372,15 +354,10 @@ export declare class CreateApplicationRequest extends $dara.Model {
372
354
  /**
373
355
  * @remarks
374
356
  * The Nginx version.
375
- *
376
357
  * - nginx 1.20
377
- *
378
358
  * - nginx 1.22
379
- *
380
359
  * - nginx 1.24
381
- *
382
360
  * - nginx 1.26
383
- *
384
361
  * - nginx 1.28
385
362
  *
386
363
  * @example
@@ -389,7 +366,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
389
366
  html?: string;
390
367
  /**
391
368
  * @remarks
392
- * The ID of the corresponding secret.
369
+ * The corresponding secret ID.
393
370
  *
394
371
  * @example
395
372
  * 10
@@ -397,7 +374,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
397
374
  imagePullSecrets?: string;
398
375
  /**
399
376
  * @remarks
400
- * The image address. This parameter is required when **Package Type** is **Image**.
377
+ * The image address. This parameter is required when **Package Type** is set to **Image**.
401
378
  *
402
379
  * @example
403
380
  * registry.cn-hangzhou.aliyuncs.com/sae_test/ali_sae_test:0.0.1
@@ -405,17 +382,17 @@ export declare class CreateApplicationRequest extends $dara.Model {
405
382
  imageUrl?: string;
406
383
  /**
407
384
  * @remarks
408
- * Initialization container configuration.
385
+ * The init container configuration.
409
386
  */
410
387
  initContainersConfig?: InitContainerConfig[];
411
388
  /**
412
389
  * @remarks
413
- * Whether it is a stateful application.
390
+ * Specifies whether the application is stateful.
414
391
  */
415
392
  isStateful?: boolean;
416
393
  /**
417
394
  * @remarks
418
- * JAR package startup parameters for the application. The application\\"s default start command is: `$JAVA_HOME/bin/java $JarStartOptions -jar $CATALINA_OPTS "$package_path" $JarStartArgs`
395
+ * 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`
419
396
  *
420
397
  * @example
421
398
  * custom-args
@@ -423,7 +400,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
423
400
  jarStartArgs?: string;
424
401
  /**
425
402
  * @remarks
426
- * JAR package startup options for the application. The application\\"s default start command is: `$JAVA_HOME/bin/java $JarStartOptions -jar $CATALINA_OPTS "$package_path" $JarStartArgs`
403
+ * 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`
427
404
  *
428
405
  * @example
429
406
  * -Xms4G -Xmx4G
@@ -431,21 +408,16 @@ export declare class CreateApplicationRequest extends $dara.Model {
431
408
  jarStartOptions?: string;
432
409
  /**
433
410
  * @remarks
434
- * The JDK version that the deployment package depends on. Supported versions:
411
+ * The JDK version on which the deployment package depends. Valid values:
435
412
  *
436
413
  * - **Open JDK 8**
437
- *
438
414
  * - **Open JDK 7**
439
- *
440
415
  * - **Dragonwell 11**
441
- *
442
416
  * - **Dragonwell 8**
443
- *
444
417
  * - **openjdk-8u191-jdk-alpine3.9**
445
- *
446
418
  * - **openjdk-7u201-jdk-alpine3.9**
447
419
  *
448
- * This parameter is not supported when **Package Type** is **Image**.
420
+ * This parameter is not supported when **Package Type** is set to **Image**.
449
421
  *
450
422
  * @example
451
423
  * Open JDK 8
@@ -453,13 +425,11 @@ export declare class CreateApplicationRequest extends $dara.Model {
453
425
  jdk?: string;
454
426
  /**
455
427
  * @remarks
456
- * The summary configuration for collecting logs to Kafka. Valid values:
457
- *
458
- * - **kafkaEndpoint**: The service registration address for the Kafka API.
428
+ * The summary of configurations for log collection to Kafka. Valid values:
459
429
  *
460
- * - **kafkaInstanceId**: The Kafka instance ID.
461
- *
462
- * - **kafkaConfigs**: The summary configuration for single or multiple logs. For valid values, see the **kafkaConfigs** request parameter in this topic.
430
+ * - **kafkaEndpoint**: the service registration address of the Kafka API.
431
+ * - **kafkaInstanceId**: the Kafka instance ID.
432
+ * - **kafkaConfigs**: the summary of configurations for one or more log entries. For more information about the valid values, see the **kafkaConfigs** request parameter in this topic.
463
433
  *
464
434
  * @example
465
435
  * {"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"}]}
@@ -470,35 +440,25 @@ export declare class CreateApplicationRequest extends $dara.Model {
470
440
  };
471
441
  /**
472
442
  * @remarks
473
- * Container health check. Containers that fail the health check are shut down and recovered. Supported methods:
474
- *
475
- * - **exec**: For example, `{"exec":{"command":["sh","-c","cat/home/admin/start.sh"]},"initialDelaySeconds":30,"periodSeconds":30,"timeoutSeconds":2}`
443
+ * The container health check. Containers that fail the health check are shutdown and recovered. The following methods are supported:
476
444
  *
477
- * - **httpGet**: For example, `{"httpGet":{"path":"/","port":18091,"scheme":"HTTP","isContainKeyWord":true,"keyWord":"SAE"},"initialDelaySeconds":11,"periodSeconds":10,"timeoutSeconds":1}`
445
+ * - **exec**: for example, `{"exec":{"command":["sh","-c","cat/home/admin/start.sh"]},"initialDelaySeconds":30,"periodSeconds":30,"timeoutSeconds":2}`
446
+ * - **httpGet**: for example, `{"httpGet":{"path":"/","port":18091,"scheme":"HTTP","isContainKeyWord":true,"keyWord":"SAE"},"initialDelaySeconds":11,"periodSeconds":10,"timeoutSeconds":1}`
447
+ * - **tcpSocket**: for example, `{"tcpSocket":{"port":18091},"initialDelaySeconds":11,"periodSeconds":10,"timeoutSeconds":1}`
478
448
  *
479
- * - **tcpSocket**: For example, `{"tcpSocket":{"port":18091},"initialDelaySeconds":11,"periodSeconds":10,"timeoutSeconds":1}`
480
- *
481
- * > Select only one method for the health check.
449
+ * > You can use only one method for health checks.
482
450
  *
483
451
  * Parameter description:
484
452
  *
485
- * - **exec.command**: Set the health check command.
486
- *
487
- * - **httpGet.path**: The access path.
488
- *
453
+ * - **exec.command**: the health check command.
454
+ * - **httpGet.path**: the access path.
489
455
  * - **httpGet.scheme**: **HTTP** or **HTTPS**.
490
- *
491
- * - **httpGet.isContainKeyWord**: **true** means the keyword is included, **false** means the keyword is not included. If this field is missing, advanced features are not used.
492
- *
493
- * - **httpGet.keyWord**: The custom keyword. Do not omit the **isContainKeyWord** field when using it.
494
- *
495
- * - **tcpSocket.port**: The port for TCP connection detection.
496
- *
497
- * - **initialDelaySeconds**: Set the health check delay detection time. Default is 10 seconds.
498
- *
499
- * - **periodSeconds**: Set the health check period. Default is 30 seconds.
500
- *
501
- * - **timeoutSeconds**: Set the health check timeout duration. Default is 1 second. If you set it to 0 or do not set it, the default timeout is 1 second.
456
+ * - **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.
457
+ * - **httpGet.keyWord**: the custom keyword. The **isContainKeyWord** field must be present when this field is used.
458
+ * - **tcpSocket.port**: the port for TCP connection detection.
459
+ * - **initialDelaySeconds**: the health check delay detection time. Default value: 10. Unit: seconds.
460
+ * - **periodSeconds**: the health check period. Default value: 30. Unit: seconds.
461
+ * - **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.
502
462
  *
503
463
  * @example
504
464
  * {"exec":{"command":["sh","-c","cat /home/admin/start.sh"]},"initialDelaySeconds":30,"periodSeconds":30,"timeoutSeconds":2}
@@ -507,27 +467,17 @@ export declare class CreateApplicationRequest extends $dara.Model {
507
467
  lokiConfigs?: string;
508
468
  /**
509
469
  * @remarks
510
- * The memory required for each instance, in MB. It cannot be 0. It has a one-to-one correspondence with CPU. Currently, only the following defined specifications are supported:
511
- *
512
- * - **1024**: Corresponds to 500 millicores and 1000 millicores CPU.
513
- *
514
- * - **2048**: Corresponds to 500, 1000 millicores, and 2000 millicores CPU.
515
- *
516
- * - **4096**: Corresponds to 1000, 2000 millicores, and 4000 millicores CPU.
517
- *
518
- * - **8192**: Corresponds to 2000, 4000 millicores, and 8000 millicores CPU.
519
- *
520
- * - **12288**: Corresponds to 12000 millicores CPU.
521
- *
522
- * - **16384**: Corresponds to 4000, 8000 millicores, and 16000 millicores CPU.
523
- *
524
- * - **24576**: Corresponds to 12000 millicores CPU.
525
- *
526
- * - **32768**: Corresponds to 16000 millicores CPU.
527
- *
528
- * - **65536**: Corresponds to 8000, 16000, and 32000 millicores CPU.
529
- *
530
- * - **131072**: Corresponds to 32000 millicores CPU.
470
+ * The memory required for each instance, in MB. This parameter cannot be set to 0. The memory has a one-to-one mapping with CPU. Only the following defined specifications are supported:
471
+ * - **1024**: corresponds to 500 and 1000 millicores of CPU.
472
+ * - **2048**: corresponds to 500, 1000, and 2000 millicores of CPU.
473
+ * - **4096**: corresponds to 1000, 2000, and 4000 millicores of CPU.
474
+ * - **8192**: corresponds to 2000, 4000, and 8000 millicores of CPU.
475
+ * - **12288**: corresponds to 12000 millicores of CPU.
476
+ * - **16384**: corresponds to 4000, 8000, and 16000 millicores of CPU.
477
+ * - **24576**: corresponds to 12000 millicores of CPU.
478
+ * - **32768**: corresponds to 16000 millicores of CPU.
479
+ * - **65536**: corresponds to 8000, 16000, and 32000 millicores of CPU.
480
+ * - **131072**: corresponds to 32000 millicores of CPU.
531
481
  *
532
482
  * @example
533
483
  * 1024
@@ -535,13 +485,10 @@ export declare class CreateApplicationRequest extends $dara.Model {
535
485
  memory?: number;
536
486
  /**
537
487
  * @remarks
538
- * Select the Nacos registry. Valid values:
539
- *
488
+ * Specifies the Nacos registry. Valid values:
540
489
  * - **0**: SAE built-in Nacos.
541
- *
542
- * - **1**: User-managed Nacos.
543
- *
544
- * - **2**: MSE Professional Edition Nacos.
490
+ * - **1**: self-managed Nacos.
491
+ * - **2**: MSE commercial edition Nacos.
545
492
  *
546
493
  * @example
547
494
  * "0"
@@ -549,7 +496,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
549
496
  microRegistration?: string;
550
497
  /**
551
498
  * @remarks
552
- * The registry configuration information.
499
+ * The registry configuration.
553
500
  *
554
501
  * @example
555
502
  * {\\"instanceId\\":\\"mse-cn-zvp2bh6h70r\\",\\"namespace\\":\\"4c0aa74f-57cb-423c-b6af-5d9f2d0e3dbd\\"}
@@ -557,23 +504,23 @@ export declare class CreateApplicationRequest extends $dara.Model {
557
504
  microRegistrationConfig?: string;
558
505
  /**
559
506
  * @remarks
560
- * Configure microservice administration features.
507
+ * Configures the microservice governance feature.
561
508
  *
562
- * - Whether to enable microservice administration (enable):
509
+ * - Specifies whether to enable microservice governance (enable):
563
510
  *
564
- * - true: Enable.
511
+ * - true: Enabled.
565
512
  *
566
- * - false: Do not enable.
513
+ * - false: Disabled.
567
514
  *
568
- * - Configure graceful start and graceful shutdown (mseLosslessRule):
515
+ * - Configures lossless online/offline (mseLosslessRule):
569
516
  *
570
- * - delayTime: The delay time.
517
+ * - delayTime: the delay time.
571
518
  *
572
- * - enable: Whether to enable the graceful start feature. true means enabled, false means not enabled.
519
+ * - enable: specifies whether to enable the lossless online feature. true indicates enabled. false indicates disabled.
573
520
  *
574
- * - notice: Whether to enable the notification feature. true means enabled, false means enabled.
521
+ * - notice: specifies whether to enable the notification feature. true indicates enabled. false indicates disabled.
575
522
  *
576
- * - warmupTime: The duration of traffic prefetch, in seconds.
523
+ * - warmupTime: the warm-up duration for traffic ramping, in seconds.
577
524
  *
578
525
  * @example
579
526
  * {"enable": true,"mseLosslessRule": {"delayTime": 0,"enable": false,"notice": false,"warmupTime": 120}}
@@ -581,7 +528,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
581
528
  microserviceEngineConfig?: string;
582
529
  /**
583
530
  * @remarks
584
- * Do not configure this field; configure **NasConfigs** instead. The NAS mount description. If the configuration has not changed during deployment, you do not need to set this parameter (that is, the request does not need to include the **MountDesc** field). To clear the NAS configuration, set the value of this field to an empty string in the request (that is, the value of the **MountDesc** field in the request is "").
531
+ * We recommend that you do not set this parameter. Set **NasConfigs** instead. The NAS mount description. If the configuration does not change during deployment, you do not need to set this parameter (that is, the **MountDesc** 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 (that is, set the value of the **MountDesc** field to "" in the request).
585
532
  *
586
533
  * @example
587
534
  * [{mountPath: "/tmp", nasPath: "/"}]
@@ -589,7 +536,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
589
536
  mountDesc?: string;
590
537
  /**
591
538
  * @remarks
592
- * Do not configure this field; configure **NasConfigs** instead. The NAS mount target within the application VPC. If the configuration has not changed during deployment, you do not need to set this parameter (that is, the request does not need to include the **MountHost** field). To clear the NAS configuration, set the value of this field to an empty string in the request (that is, the value of the **MountHost** field in the request is "").
539
+ * We recommend that you do not set this parameter. Set **NasConfigs** instead. The mount target of the NAS file system in the VPC of the application. If the configuration does not change 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 (that is, set the value of the **MountHost** field to "" in the request).
593
540
  *
594
541
  * @example
595
542
  * example.com
@@ -597,7 +544,8 @@ export declare class CreateApplicationRequest extends $dara.Model {
597
544
  mountHost?: string;
598
545
  /**
599
546
  * @remarks
600
- * The SAE namespace ID. Only namespaces with names consisting of lowercase letters and hyphens (-) are supported. The name must start with a letter. Obtain the namespace by calling the [DescribeNamespaceList](https://help.aliyun.com/document_detail/126547.html) API operation.
547
+ * The SAE namespace ID. Only namespaces whose names contain lowercase letters and hyphens (-) are supported. The name must start with a letter.
548
+ * You can obtain namespaces by calling the [DescribeNamespaceList](https://help.aliyun.com/document_detail/126547.html) operation.
601
549
  *
602
550
  * @example
603
551
  * cn-beijing:test
@@ -605,17 +553,13 @@ export declare class CreateApplicationRequest extends $dara.Model {
605
553
  namespaceId?: string;
606
554
  /**
607
555
  * @remarks
608
- * The configuration for mounting NAS. Valid values:
609
- *
610
- * - **mountPath**: The container mount path.
556
+ * The NAS mount configuration. Valid values:
611
557
  *
612
- * - **readOnly**: If the value is **false**, it indicates read and write permission.
613
- *
614
- * - **nasId**: The NAS ID.
615
- *
616
- * - **mountDomain**: The container mount target address. For more information, see [DescribeMountTargets](https://help.aliyun.com/document_detail/62626.html).
617
- *
618
- * - **nasPath**: The relative file directory of NAS.
558
+ * - **mountPath**: the container mount path.
559
+ * - **readOnly**: set to **false** to grant read and write permission.
560
+ * - **nasId**: the NAS ID.
561
+ * - **mountDomain**: the container mount target address. For more information, see [DescribeMountTargets](https://help.aliyun.com/document_detail/62626.html).
562
+ * - **nasPath**: the NAS relative file directory.
619
563
  *
620
564
  * @example
621
565
  * [{"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"}]
@@ -623,9 +567,9 @@ export declare class CreateApplicationRequest extends $dara.Model {
623
567
  nasConfigs?: string;
624
568
  /**
625
569
  * @remarks
626
- * Do not configure this field; configure **NasConfigs** instead. The ID of the mounted NAS. It must be in the same region as the cluster. It must have available mount target creation quotas, or its mount target must already be on a vSwitch within the VPC. If you do not specify this parameter and the **mountDescs** field exists, the system automatically purchases a NAS and mounts it to a vSwitch within the VPC by default.
570
+ * We recommend that you do not set this parameter. Set **NasConfigs** instead. The ID of the mounted NAS file system. The NAS file system must be in the same region as the cluster. The NAS file system must have available mount target creation quota, or its mount target must already be on a vSwitch in the VPC. If this parameter is left empty and the **mountDescs** field exists, a NAS file system is automatically purchased and mounted to a vSwitch in the VPC.
627
571
  *
628
- * If the configuration has not changed during deployment, you do not need to set this parameter (that is, the request does not need to include the **NASId** field). To clear the NAS configuration, set the value of this field to an empty string in the request (that is, the value of the **NASId** field in the request is "").
572
+ * If the configuration does not change during deployment, you do not need to set this parameter (that is, the **NASId** 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 (that is, set the value of the **NASId** field to "" in the request).
629
573
  *
630
574
  * @example
631
575
  * KSAK****
@@ -635,10 +579,8 @@ export declare class CreateApplicationRequest extends $dara.Model {
635
579
  * @remarks
636
580
  * The application version:
637
581
  *
638
- * - lite: Lightweight Edition
639
- *
582
+ * - lite: Lite Edition
640
583
  * - std: Standard Edition
641
- *
642
584
  * - pro: Professional Edition
643
585
  *
644
586
  * @example
@@ -647,9 +589,8 @@ export declare class CreateApplicationRequest extends $dara.Model {
647
589
  newSaeVersion?: string;
648
590
  /**
649
591
  * @remarks
650
- * Set the identity authentication service RAM role.
651
- *
652
- * > Create an OpenID Connect (OIDC) identity provider and an identity provider role in the same region beforehand. For more information, see<props="china">[Create an OIDC identity provider](https://help.aliyun.com/zh/ram/developer-reference/api-ims-2019-08-15-createoidcprovider?spm=a2c4g.11186623.help-menu-28625.d_4_1_0_3_2_7.7f0443efmdpxa3) and[Create a role SSO identity provider](https://help.aliyun.com/zh/ram/developer-reference/api-ims-2019-08-15-createsamlprovider?spm=a2c4g.11186623.help-menu-28625.d_4_1_0_3_2_2.632244b1s8QbQt)<props="intl">[Create an OIDC identity provider](https://www.alibabacloud.com/help/zh/ram/developer-reference/api-ims-2019-08-15-createoidcprovider) and[Create a role SSO identity provider](https://www.alibabacloud.com/help/zh/ram/developer-reference/api-ims-2019-08-15-createsamlprovider).
592
+ * Specifies the RAM role for identity authentication.
593
+ * > Create an OIDC identity provider and an identity provider role in the same region in advance. For more information, see <props="china">[CreateOIDCProvider](https://www.alibabacloud.com/help/en/ram/developer-reference/api-ims-2019-08-15-createoidcprovider) and [CreateSAMLProvider](https://www.alibabacloud.com/help/en/ram/developer-reference/api-ims-2019-08-15-createsamlprovider)<props="intl">[CreateOIDCProvider](https://www.alibabacloud.com/help/zh/ram/developer-reference/api-ims-2019-08-15-createoidcprovider) and [CreateSAMLProvider](https://www.alibabacloud.com/help/zh/ram/developer-reference/api-ims-2019-08-15-createsamlprovider).
653
594
  *
654
595
  * @example
655
596
  * sae-test
@@ -673,19 +614,14 @@ export declare class CreateApplicationRequest extends $dara.Model {
673
614
  ossAkSecret?: string;
674
615
  /**
675
616
  * @remarks
676
- * OSS mount description. Parameter description:
677
- *
678
- * - **bucketName**: The Bucket name.
679
- *
680
- * - **bucketPath**: The directory or OSS object you created in OSS. If the OSS mount directory does not exist, an exception is triggered.
617
+ * The OSS mount description. Parameter description:
681
618
  *
682
- * - **mountPath**: The container path in SAE. If the path exists, it is overwritten. If the path does not exist, it is created.
683
- *
684
- * - **readOnly**: Whether the container path has read permission for the mounted directory resource. Valid values:
685
- *
686
- * - **true**: Read-only permission.
687
- *
688
- * - **false**: Read and write permission.
619
+ * - **bucketName**: the bucket name.
620
+ * - **bucketPath**: the folder or object that you created in OSS. If the OSS mount folder does not exist, an exception is triggered.
621
+ * - **mountPath**: the container path in SAE. If the path already exists, it is an overwrite relationship. If the path does not exist, it is created.
622
+ * - **readOnly**: specifies whether the container path has read-only permission on the mounted folder resources. Valid values:
623
+ * - **true**: read-only permission.
624
+ * - **false**: read and write permission.
689
625
  *
690
626
  * @example
691
627
  * [{"bucketName": "oss-bucket", "bucketPath": "data/user.data", "mountPath": "/usr/data/user.data", "readOnly": true}]
@@ -693,47 +629,30 @@ export declare class CreateApplicationRequest extends $dara.Model {
693
629
  ossMountDescs?: string;
694
630
  /**
695
631
  * @remarks
696
- * The application package type. Valid values:
697
- *
698
- * - If you deploy with Java, supported types are **FatJar**, **War**, and **Image**.
699
- *
700
- * - If you deploy with PHP, supported types are:
701
- *
702
- * - **PhpZip**
703
- *
704
- * - **IMAGE_PHP_5_4**
705
- *
706
- * - **IMAGE_PHP_5_4_ALPINE**
707
- *
708
- * - **IMAGE_PHP_5_5**
709
- *
710
- * - **IMAGE_PHP_5_5_ALPINE**
711
- *
712
- * - **IMAGE_PHP_5_6**
713
- *
714
- * - **IMAGE_PHP_5_6_ALPINE**
715
- *
716
- * - **IMAGE_PHP_7_0**
717
- *
718
- * - **IMAGE_PHP_7_0_ALPINE**
719
- *
720
- * - **IMAGE_PHP_7_1**
721
- *
722
- * - **IMAGE_PHP_7_1_ALPINE**
723
- *
724
- * - **IMAGE_PHP_7_2**
725
- *
726
- * - **IMAGE_PHP_7_2_ALPINE**
727
- *
728
- * - **IMAGE_PHP_7_3**
729
- *
730
- * - **IMAGE_PHP_7_3_ALPINE**
731
- *
732
- * - If you deploy with Python, supported types are **PythonZip** and **Image**.
733
- *
734
- * - If you deploy with .NET Core, supported types are **DotnetZip** and **Image**.
735
- *
736
- * > When you select DotnetZip, Dotnet is the version number of the .NET Core environment. Supported versions are .NET 3.1, .NET 5.0, .NET 6.0, .NET 7.0, and .NET 8.0. The Dotnet, Command, and CommandArgs options are required.
632
+ * The type of the application deployment package. Valid values:
633
+ *
634
+ * - If you use Java for deployment, **FatJar**, **War**, and **Image** are supported.
635
+ * - If you use PHP for deployment, the following types are supported:
636
+ * - **PhpZip**
637
+ * - **IMAGE_PHP_5_4**
638
+ * - **IMAGE_PHP_5_4_ALPINE**
639
+ * - **IMAGE_PHP_5_5**
640
+ * - **IMAGE_PHP_5_5_ALPINE**
641
+ * - **IMAGE_PHP_5_6**
642
+ * - **IMAGE_PHP_5_6_ALPINE**
643
+ * - **IMAGE_PHP_7_0**
644
+ * - **IMAGE_PHP_7_0_ALPINE**
645
+ * - **IMAGE_PHP_7_1**
646
+ * - **IMAGE_PHP_7_1_ALPINE**
647
+ * - **IMAGE_PHP_7_2**
648
+ * - **IMAGE_PHP_7_2_ALPINE**
649
+ * - **IMAGE_PHP_7_3**
650
+ * - **IMAGE_PHP_7_3_ALPINE**
651
+ * - If you use Python for deployment, **PythonZip** and **Image** are supported.
652
+ *
653
+ * - If you use .NET Core for deployment, **DotnetZip** and **Image** are supported.
654
+ * >
655
+ * > When DotnetZip is selected, Dotnet specifies the version of the .NET Core runtime. .NET 3.1, .NET 5.0, .NET 6.0, .NET 7.0, and .NET 8.0 are supported. The Dotnet, Command, and CommandArgs parameters are required.
737
656
  *
738
657
  * This parameter is required.
739
658
  *
@@ -743,7 +662,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
743
662
  packageType?: string;
744
663
  /**
745
664
  * @remarks
746
- * The URL of the deployment package. This parameter is required when **Package Type** is **FatJar**, **War**, or **PythonZip**.
665
+ * The address of the deployment package. This parameter is required when **Package Type** is set to **FatJar**, **War**, or **PythonZip**.
747
666
  *
748
667
  * @example
749
668
  * http://myoss.oss-cn-****.aliyuncs.com/my-buc/2019-06-30/****.jar
@@ -751,7 +670,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
751
670
  packageUrl?: string;
752
671
  /**
753
672
  * @remarks
754
- * The version number of the deployment package. This parameter is required when **Package Type** is **FatJar**, **War**, or **PythonZip**.
673
+ * The version of the deployment package. This parameter is required when **Package Type** is set to **FatJar**, **War**, or **PythonZip**.
755
674
  *
756
675
  * @example
757
676
  * 1.0.0
@@ -759,7 +678,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
759
678
  packageVersion?: string;
760
679
  /**
761
680
  * @remarks
762
- * The PHP version that the PHP deployment package depends on. Images do not support this.
681
+ * The PHP version on which the deployment package depends. Not supported for images.
763
682
  *
764
683
  * @example
765
684
  * PHP-FPM 7.0
@@ -767,7 +686,8 @@ export declare class CreateApplicationRequest extends $dara.Model {
767
686
  php?: string;
768
687
  /**
769
688
  * @remarks
770
- * The mount path for PHP application monitoring. Ensure that the PHP server loads the configuration file from this path. You do not need to focus on the configuration content; SAE automatically renders the correct configuration file.
689
+ * The mount path for PHP application monitoring. Make sure that the PHP server loads the configuration file from this path.
690
+ * You do not need to manage the configuration content. SAE automatically renders the correct configuration file.
771
691
  *
772
692
  * @example
773
693
  * /usr/local/etc/php/conf.d/arms.ini
@@ -783,7 +703,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
783
703
  phpConfig?: string;
784
704
  /**
785
705
  * @remarks
786
- * The mount path for PHP application startup configuration. Ensure that the PHP server uses this configuration file to start.
706
+ * The mount path for the PHP application startup configuration. Make sure that the PHP server uses this configuration file to start.
787
707
  *
788
708
  * @example
789
709
  * /usr/local/etc/php/php.ini
@@ -791,7 +711,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
791
711
  phpConfigLocation?: string;
792
712
  /**
793
713
  * @remarks
794
- * The script to execute after the container starts. A script is triggered immediately after the container is created. Format: `{"exec":{"command":["cat","/etc/group"]}}`
714
+ * The script that is run after the container is started. A script is triggered and run immediately after the container is created. Format: `{"exec":{"command":["cat","/etc/group"]}}`
795
715
  *
796
716
  * @example
797
717
  * {"exec":{"command":["cat","/etc/group"]}}
@@ -799,7 +719,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
799
719
  postStart?: string;
800
720
  /**
801
721
  * @remarks
802
- * The script to execute before the container stops. A script is triggered before the container is deleted. Format: `{"exec":{"command":["cat","/etc/group"]}}`
722
+ * The script that is run before the container is stopped. A script is triggered and run before the container is deleted. Format: `{"exec":{"command":["cat","/etc/group"]}}`
803
723
  *
804
724
  * @example
805
725
  * {"exec":{"command":["cat","/etc/group"]}}
@@ -807,17 +727,13 @@ export declare class CreateApplicationRequest extends $dara.Model {
807
727
  preStop?: string;
808
728
  /**
809
729
  * @remarks
810
- * The technology stack language for creating the application. Valid values:
811
- *
812
- * - **java**: Java language.
813
- *
814
- * - **php**: PHP language.
730
+ * The programming language of the technology stack used to create the application. Valid values:
815
731
  *
816
- * - **python**: Python language.
817
- *
818
- * - **dotnet**: .NET Core language.
819
- *
820
- * - **other**: Multi-language, such as C++, Go, and Node.js.
732
+ * - **java**: Java.
733
+ * - **php**: PHP.
734
+ * - **python**: Python.
735
+ * - **dotnet**: .NET Core.
736
+ * - **other**: multiple languages, such as C++, Go, and Node.js.
821
737
  *
822
738
  * @example
823
739
  * java
@@ -825,17 +741,13 @@ export declare class CreateApplicationRequest extends $dara.Model {
825
741
  programmingLanguage?: string;
826
742
  /**
827
743
  * @remarks
828
- * Enable K8s Service service discovery. Valid values:
829
- *
830
- * - **serviceName**: The service name. Format: `custom-namespace ID`. The suffix `-namespace ID` cannot be customized; specify it based on the application\\"s namespace. For example, if you select the default namespace in the China (Beijing) region, it is `-cn-beijing-default`.
831
- *
832
- * - **namespaceId**: The namespace ID.
744
+ * Enables K8s Service-based service registration and discovery. Valid values:
833
745
  *
834
- * - **portProtocols**: The port and protocol. The port range is [1, 65535]. Supported protocols are **TCP** and **UDP**.
835
- *
836
- * - portAndProtocol: The port and protocol. The port range is [1, 65535]. Supported protocols are TCP and **UDP**. **portProtocols** is recommended. If **portProtocols** is set, only **portProtocols** takes effect.
837
- *
838
- * - **enable**: Enable K8s Service service discovery.
746
+ * - **serviceName**: the service name. Format: `custom name-namespace ID`. The suffix `-namespace ID` cannot be customized and must be set based on the namespace of the application. For example, if you select the default namespace in the China (Beijing) region, the suffix is `-cn-beijing-default`.
747
+ * - **namespaceId**: the namespace ID.
748
+ * - **portProtocols**: the port and protocol. Valid port values: [1,65535]. Valid protocol values: **TCP** and **UDP**.
749
+ * - **portAndProtocol**: the port and protocol. Valid port values: [1,65535]. Valid protocol values: **TCP** and **UDP**. **portProtocols is recommended. If portProtocols is set, only portProtocols takes effect**.
750
+ * - **enable**: enables K8s Service-based service registration and discovery.
839
751
  *
840
752
  * @example
841
753
  * {"serviceName":"bwm-poc-sc-gateway-cn-beijing-front","namespaceId":"cn-beijing:front","portAndProtocol":{"18012":"TCP"},"enable":true,"portProtocols":[{"port":18012,"protocol":"TCP"}]}
@@ -843,7 +755,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
843
755
  pvtzDiscoverySvc?: string;
844
756
  /**
845
757
  * @remarks
846
- * The Python environment. Supports **PYTHON 3.9.15**.
758
+ * The Python environment. **PYTHON 3.9.15** is supported.
847
759
  *
848
760
  * @example
849
761
  * PYTHON 3.9.15
@@ -851,17 +763,18 @@ export declare class CreateApplicationRequest extends $dara.Model {
851
763
  python?: string;
852
764
  /**
853
765
  * @remarks
854
- * Custom installation of module dependencies. By default, the system installs dependencies defined in requirements.txt in the root directory. If you do not configure or customize packages, you can specify the dependencies to install.
766
+ * The custom installation module dependencies. By default, the dependencies defined in the requirements.txt file in the root folder are installed. If the file is not configured or you need custom packages, specify the dependencies to install.
855
767
  *
856
768
  * @example
857
769
  * Flask==2.0
858
770
  */
859
771
  pythonModules?: string;
772
+ raspConfig?: CreateApplicationRequestRaspConfig;
860
773
  /**
861
774
  * @remarks
862
- * Application startup status check. Containers that fail multiple health checks are shut down and restarted. Containers that do not pass the health check will not receive SLB traffic. Supported methods are **exec**, **httpGet**, and **tcpSocket**. For examples, see the **Liveness** parameter.
775
+ * 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.
863
776
  *
864
- * > Select only one method for the health check.
777
+ * > You can use only one method for health checks.
865
778
  *
866
779
  * @example
867
780
  * {"exec":{"command":["sh","-c","cat /home/admin/start.sh"]},"initialDelaySeconds":30,"periodSeconds":30,"timeoutSeconds":2}
@@ -879,7 +792,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
879
792
  replicas?: number;
880
793
  /**
881
794
  * @remarks
882
- * The resource type. Supports NULL (default), default, and haiguang (Haiguang server) types.
795
+ * The resource type. Valid values: NULL (default), default, and haiguang (Hygon server).
883
796
  *
884
797
  * @example
885
798
  * NULL
@@ -887,10 +800,9 @@ export declare class CreateApplicationRequest extends $dara.Model {
887
800
  resourceType?: string;
888
801
  /**
889
802
  * @remarks
890
- * The SAE version. Supported versions:
803
+ * The SAE version. Valid values:
891
804
  *
892
805
  * - **v1**
893
- *
894
806
  * - **v2**
895
807
  *
896
808
  * @example
@@ -899,15 +811,14 @@ export declare class CreateApplicationRequest extends $dara.Model {
899
811
  saeVersion?: string;
900
812
  /**
901
813
  * @remarks
902
- * The **Secret** mount description. Use secrets created on the namespace secret page to inject secret information into the container. Parameter description:
903
- *
904
- * - **secretId**: The secret instance ID. Obtain it by calling the ListSecrets API operation.
814
+ * The **Secret** mount description. Use a secret created on the namespace secrets page to inject sensitive information into the container. Parameter description:
905
815
  *
906
- * - **key**: The key value.
816
+ * - **secretId**: the secret instance ID. You can obtain the ID by calling the ListSecrets operation.
817
+ * - **key**: the key.
907
818
  *
908
819
  * > You can mount all keys by passing the `sae-sys-secret-all` parameter.
909
820
  *
910
- * - **mountPath**: The mount path.
821
+ * - **mountPath**: the mount path.
911
822
  *
912
823
  * @example
913
824
  * [{“secretId":10,”key":"test","mountPath":"/tmp"}]
@@ -923,7 +834,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
923
834
  securityGroupId?: string;
924
835
  /**
925
836
  * @remarks
926
- * The grayscale tags for application configuration.
837
+ * The canary release tags configured for the application.
927
838
  *
928
839
  * @example
929
840
  * {\\"alicloud.service.tag\\":\\"g1\\"}
@@ -931,32 +842,27 @@ export declare class CreateApplicationRequest extends $dara.Model {
931
842
  serviceTags?: string;
932
843
  /**
933
844
  * @remarks
934
- * Container configuration information.
845
+ * The sidecar container configuration.
935
846
  */
936
847
  sidecarContainersConfig?: SidecarContainerConfig[];
937
848
  /**
938
849
  * @remarks
939
- * The configuration for collecting logs to Simple Log Service (SLS).
940
- *
941
- * - Use SLS resources automatically created by SAE: `[{"logDir":"","logType":"stdout"},{"logDir":"/tmp/a.log"}]`.
850
+ * The configurations for log collection to Simple Log Service.
942
851
  *
852
+ * - Use SLS resources that are automatically created by SAE: `[{"logDir":"","logType":"stdout"},{"logDir":"/tmp/a.log"}]`.
943
853
  * - Use custom SLS resources: `[{"projectName":"test-sls","logType":"stdout","logDir":"","logstoreName":"sae","logtailName":""},{"projectName":"test","logDir":"/tmp/a.log","logstoreName":"sae","logtailName":""}]`.
944
854
  *
945
855
  * Parameter description:
946
856
  *
947
- * - **projectName**: The name of the Project on SLS.
948
- *
949
- * - **logDir**: The log path.
950
- *
951
- * - **logType**: The log type. **stdout** indicates container standard output logs; you can set only one such entry. If you do not set this, the system collects file logs.
952
- *
953
- * - **logstoreName**: The name of the Logstore on SLS.
857
+ * - **projectName**: the Project name in Simple Log Service.
858
+ * - **logDir**: the log path.
859
+ * - **logType**: the log type. **stdout** indicates container standard output logs. You can configure only one entry for this type. If this parameter is not set, file logs are collected.
860
+ * - **logstoreName**: the Logstore name in Simple Log Service.
861
+ * - **logtailName**: the Logtail name in Simple Log Service. If this parameter is not specified, a new Logtail is created.
954
862
  *
955
- * - **logtailName**: The name of the Logtail on SLS. If you do not specify this, the system creates a new Logtail.
863
+ * If the SLS collection configuration does not change 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 (that is, set the value of the **SlsConfigs** field to "" in the request).
956
864
  *
957
- * If the SLS collection configuration has not changed during multiple deployments, you do not need to set this parameter (that is, the request does not need to include the **SlsConfigs** field). If you no longer need the SLS collection feature, set the value of this field to an empty string in the request (that is, the value of the **SlsConfigs** field in the request is "").
958
- *
959
- * > Projects automatically created with an application are deleted when the application is deleted. Therefore, when selecting an existing Project, do not select a Project automatically created by SAE.
865
+ * > Projects that are automatically created with the application are deleted when the application is deleted. Therefore, do not select a project that is automatically created by SAE when you select an existing project.
960
866
  *
961
867
  * @example
962
868
  * [{"logDir":"","logType":"stdout"},{"logDir":"/tmp/a.log"}]
@@ -964,20 +870,18 @@ export declare class CreateApplicationRequest extends $dara.Model {
964
870
  slsConfigs?: string;
965
871
  /**
966
872
  * @remarks
967
- * SLS log tags.
873
+ * sls log tags
968
874
  */
969
875
  slsLogEnvTags?: string;
970
876
  /**
971
877
  * @remarks
972
- * Enable application startup probes.
973
- *
974
- * - Successful check: Indicates that the application started successfully. If you configured Liveness and Readiness checks, the system performs Liveness and Readiness checks after the application starts successfully.
878
+ * Enables the application startup probe.
975
879
  *
976
- * - Failed check: Indicates that the application failed to start. The system reports an exception and automatically restarts the application.
977
- *
978
- * > * Supported methods are exec, httpGet, and tcpSocket. For examples, see the Liveness parameter.
880
+ * - Check succeeded: indicates that the application started successfully. If you configured Liveness and Readiness checks, they are performed after the application starts successfully.
881
+ * - Check failed: indicates that the application failed to start. An exception is reported and the application is automatically restarted.
979
882
  * >
980
- * > * Select only one method for the health check.
883
+ * > - The exec, httpGet, and tcpSocket methods are supported. For specific examples, see the Liveness parameter.
884
+ * > - You can use only one method for health checks.
981
885
  *
982
886
  * @example
983
887
  * {"exec":{"command":["sh","-c","cat /home/admin/start.sh"]},"initialDelaySeconds":30,"periodSeconds":30,"timeoutSeconds":2}
@@ -985,7 +889,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
985
889
  startupProbe?: string;
986
890
  /**
987
891
  * @remarks
988
- * The graceful shutdown timeout duration. Default is 30 seconds. Valid values are 1 to 300.
892
+ * The timeout period for graceful shutdown. Default value: 30. Unit: seconds. Valid values: 1 to 300.
989
893
  *
990
894
  * @example
991
895
  * 30
@@ -993,7 +897,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
993
897
  terminationGracePeriodSeconds?: number;
994
898
  /**
995
899
  * @remarks
996
- * The time zone. Default is **Asia/Shanghai**.
900
+ * The time zone. Default value: **Asia/Shanghai**.
997
901
  *
998
902
  * @example
999
903
  * Asia/Shanghai
@@ -1001,17 +905,13 @@ export declare class CreateApplicationRequest extends $dara.Model {
1001
905
  timezone?: string;
1002
906
  /**
1003
907
  * @remarks
1004
- * Tomcat file configuration. Set to "" or "{}" to delete the configuration:
1005
- *
1006
- * - **port**: The port range is 1024 to 65535. Ports less than 1024 require root permissions to operate. Because the container is configured with Admin permissions, specify a port greater than 1024. If you do not configure this, the default is 8080.
908
+ * The Tomcat configuration. Set this parameter to "" or "{}" to delete the configuration:
1007
909
  *
1008
- * - **contextPath**: The access path. Default is the root directory "/".
1009
- *
1010
- * - **maxThreads**: Configure the connection pool size. Default is 400.
1011
- *
1012
- * - uriEncoding: The encoding format for Tomcat, including **UTF-8**, **ISO-8859-1**, **GBK**, and **GB2312**. If you do not set this, the default is **ISO-8859-1**.
1013
- *
1014
- * - **useBodyEncodingForUri**: Whether to use **BodyEncoding for URL**. Default is **true**.
910
+ * - **port**: the port number. Valid values: 1024 to 65535. Ports less than 1024 require root permissions. Because the container is configured with admin permissions, specify a port greater than 1024. Default value: 8080.
911
+ * - **contextPath**: the access path. Default value: root directory "/".
912
+ * - **maxThreads**: the maximum number of connections in the connection pool. Default value: 400.
913
+ * - **uriEncoding**: the encoding format of Tomcat. Valid values: **UTF-8**, **ISO-8859-1**, **GBK**, and **GB2312**. Default value: **ISO-8859-1**.
914
+ * - **useBodyEncodingForUri**: specifies whether to use **BodyEncoding for URL**. Default value: **true**.
1015
915
  *
1016
916
  * @example
1017
917
  * {"port":8080,"contextPath":"/","maxThreads":400,"uriEncoding":"ISO-8859-1","useBodyEncodingForUri":true}
@@ -1019,7 +919,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
1019
919
  tomcatConfig?: string;
1020
920
  /**
1021
921
  * @remarks
1022
- * The virtual switch (vSwitch) where the application instance\\"s Elastic Network Interface (ENI) is located. This vSwitch must be within the specified VPC. This vSwitch also has a binding relationship with the SAE namespace. If you do not specify this parameter, the system uses the vSwitch ID bound to the namespace by default.
922
+ * The vSwitch where the elastic network interface controller (NIC) of the application instance resides. The vSwitch must be in the specified VPC. The vSwitch also has a binding relationship with the SAE namespace. If you leave this parameter empty, the vSwitch attached to the namespace is used by default.
1023
923
  *
1024
924
  * @example
1025
925
  * vsw-bp12mw1f8k3jgygk9****
@@ -1027,7 +927,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
1027
927
  vSwitchId?: string;
1028
928
  /**
1029
929
  * @remarks
1030
- * The VPC corresponding to the SAE namespace. In SAE, a namespace can only correspond to one VPC, and you cannot change it. The first time you create an SAE application in a namespace, a binding relationship forms. Multiple namespaces can correspond to one VPC. If you do not specify this parameter, the system uses the VPC ID bound to the namespace by default.
930
+ * The VPC that corresponds to the SAE namespace. In SAE, a namespace can correspond to only one VPC, and the mapping cannot be modified. The binding relationship is established when the first SAE application is created in the namespace. Multiple namespaces can correspond to the same VPC. If you leave this parameter empty, the VPC bound to the namespace is used by default.
1031
931
  *
1032
932
  * @example
1033
933
  * vpc-bp1aevy8sofi8mh1q****
@@ -1035,7 +935,7 @@ export declare class CreateApplicationRequest extends $dara.Model {
1035
935
  vpcId?: string;
1036
936
  /**
1037
937
  * @remarks
1038
- * Set the startup command for WAR package deployed applications. The procedure is the same as configuring the startup command for image deployments. For more information, see [Set the startup command](https://help.aliyun.com/document_detail/96677.html).
938
+ * The startup command for deploying a WAR package application. The configuration procedure is the same as that for the startup command of an image deployment. For more information, see [Configure a startup command](https://help.aliyun.com/document_detail/96677.html).
1039
939
  *
1040
940
  * @example
1041
941
  * CATALINA_OPTS=\\"$CATALINA_OPTS $Options\\" catalina.sh run
@@ -1043,13 +943,12 @@ export declare class CreateApplicationRequest extends $dara.Model {
1043
943
  warStartOptions?: string;
1044
944
  /**
1045
945
  * @remarks
1046
- * The Tomcat version that the WebContainer deployment package depends on. Supported versions:
946
+ * The version of Tomcat on which the WebContainer deployment package depends. Valid values:
1047
947
  *
1048
948
  * - **apache-tomcat-7.0.91**
1049
- *
1050
949
  * - **apache-tomcat-8.5.42**
1051
950
  *
1052
- * This parameter is not supported when **Package Type** is **Image**.
951
+ * This parameter is not supported when **Package Type** is set to **Image**.
1053
952
  *
1054
953
  * @example
1055
954
  * apache-tomcat-7.0.91