@pulumi/alicloud 3.62.0 → 3.62.1

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 (68) hide show
  1. package/amqp/binding.d.ts +12 -13
  2. package/amqp/binding.js +12 -13
  3. package/amqp/binding.js.map +1 -1
  4. package/cen/trafficMarkingPolicy.d.ts +43 -23
  5. package/cen/trafficMarkingPolicy.js +3 -1
  6. package/cen/trafficMarkingPolicy.js.map +1 -1
  7. package/cen/transitRouterVpcAttachment.d.ts +120 -46
  8. package/cen/transitRouterVpcAttachment.js +10 -5
  9. package/cen/transitRouterVpcAttachment.js.map +1 -1
  10. package/cr/chartNamespace.d.ts +8 -3
  11. package/cr/chartNamespace.js +8 -3
  12. package/cr/chartNamespace.js.map +1 -1
  13. package/cr/endpointAclPolicy.d.ts +6 -1
  14. package/cr/endpointAclPolicy.js +6 -1
  15. package/cr/endpointAclPolicy.js.map +1 -1
  16. package/cr/namespace.d.ts +6 -1
  17. package/cr/namespace.js +6 -1
  18. package/cr/namespace.js.map +1 -1
  19. package/cs/registryEnterpriseSyncRule.d.ts +5 -5
  20. package/cs/registryEnterpriseSyncRule.js +5 -5
  21. package/ddos/bgpIp.d.ts +1 -1
  22. package/ens/instance.d.ts +157 -79
  23. package/ens/instance.js +9 -1
  24. package/ens/instance.js.map +1 -1
  25. package/expressconnect/physicalConnection.d.ts +118 -80
  26. package/expressconnect/physicalConnection.js +7 -1
  27. package/expressconnect/physicalConnection.js.map +1 -1
  28. package/fc/trigger.d.ts +8 -9
  29. package/fc/trigger.js +8 -9
  30. package/fc/trigger.js.map +1 -1
  31. package/ga/endpointGroup.d.ts +21 -6
  32. package/ga/endpointGroup.js +2 -0
  33. package/ga/endpointGroup.js.map +1 -1
  34. package/mongodb/instance.d.ts +24 -0
  35. package/mongodb/instance.js +4 -0
  36. package/mongodb/instance.js.map +1 -1
  37. package/nlb/getListeners.d.ts +36 -2
  38. package/nlb/getListeners.js +30 -2
  39. package/nlb/getListeners.js.map +1 -1
  40. package/nlb/getServerGroupServerAttachments.d.ts +8 -2
  41. package/nlb/getServerGroupServerAttachments.js +2 -2
  42. package/nlb/getServerGroupServerAttachments.js.map +1 -1
  43. package/nlb/listener.d.ts +135 -105
  44. package/nlb/listener.js.map +1 -1
  45. package/nlb/listenerAdditionalCertificateAttachment.d.ts +11 -11
  46. package/nlb/loadBalancer.d.ts +78 -105
  47. package/nlb/loadBalancer.js +1 -1
  48. package/nlb/loadBalancer.js.map +1 -1
  49. package/nlb/loadBalancerSecurityGroupAttachment.d.ts +13 -17
  50. package/nlb/loadBalancerSecurityGroupAttachment.js +4 -2
  51. package/nlb/loadBalancerSecurityGroupAttachment.js.map +1 -1
  52. package/nlb/loadbalancerCommonBandwidthPackageAttachment.d.ts +10 -8
  53. package/nlb/loadbalancerCommonBandwidthPackageAttachment.js +4 -2
  54. package/nlb/loadbalancerCommonBandwidthPackageAttachment.js.map +1 -1
  55. package/nlb/securityPolicy.d.ts +23 -11
  56. package/nlb/securityPolicy.js.map +1 -1
  57. package/nlb/serverGroup.d.ts +84 -57
  58. package/nlb/serverGroup.js.map +1 -1
  59. package/ocean/baseInstance.d.ts +181 -70
  60. package/ocean/baseInstance.js +8 -0
  61. package/ocean/baseInstance.js.map +1 -1
  62. package/package.json +2 -2
  63. package/servicemesh/extensionProvider.d.ts +1 -1
  64. package/servicemesh/extensionProvider.js +1 -1
  65. package/types/input.d.ts +134 -43
  66. package/types/output.d.ts +135 -44
  67. package/vpc/commonBandwithPackageAttachment.d.ts +1 -1
  68. package/vpc/commonBandwithPackageAttachment.js +1 -1
package/nlb/listener.d.ts CHANGED
@@ -128,83 +128,91 @@ export declare class Listener extends pulumi.CustomResource {
128
128
  */
129
129
  static isInstance(obj: any): obj is Listener;
130
130
  /**
131
- * Whether ALPN is turned on. Value:
132
- * - **true**: on.
133
- * - **false**: closed.
131
+ * Specifies whether to enable Application-Layer Protocol Negotiation (ALPN). Valid values:
134
132
  */
135
133
  readonly alpnEnabled: pulumi.Output<boolean>;
136
134
  /**
137
- * ALPN policy. Value:
138
- * - **HTTP1Only**
139
- * - **HTTP2Only**
140
- * - **HTTP2Preferred**
141
- * - **HTTP2Optional**.
135
+ * The ALPN policy. Valid values:
136
+ * - `HTTP1Only`: uses only HTTP 1.x. The priority of HTTP 1.1 is higher than the priority of HTTP 1.0.
137
+ * - `HTTP2Only`: uses only HTTP 2.0.
138
+ * - `HTTP2Optional`: preferentially uses HTTP 1.x over HTTP 2.0. The priority of HTTP 1.1 is higher than the priority of HTTP 1.0, and the priority of HTTP 1.0 is higher than the priority of HTTP 2.0.
139
+ * - `HTTP2Preferred`: preferentially uses HTTP 2.0 over HTTP 1.x. The priority of HTTP 2.0 is higher than the priority of HTTP 1.1, and the priority of HTTP 1.1 is higher than the priority of HTTP 1.0.
140
+ *
141
+ * > **NOTE:** This parameter is required if AlpnEnabled is set to true.
142
+ *
143
+ * > **NOTE:** Effective only for TCPSSL listener.
142
144
  */
143
145
  readonly alpnPolicy: pulumi.Output<string | undefined>;
144
146
  /**
145
- * CA certificate list information. Currently, only one CA certificate can be added.
146
- * > **NOTE:** This parameter only takes effect for TCPSSL listeners.
147
+ * The list of certificate authority (CA) certificates. This parameter takes effect only for listeners that use SSL over TCP.
148
+ *
149
+ * > **NOTE:** Only one CA certificate is supported.
147
150
  */
148
151
  readonly caCertificateIds: pulumi.Output<string[] | undefined>;
149
152
  /**
150
- * Whether to start two-way authentication. Value:
151
- * - **true**: start.
152
- * - **false**: closed.
153
+ * Specifies whether to enable mutual authentication. Valid values:
153
154
  */
154
155
  readonly caEnabled: pulumi.Output<boolean>;
155
156
  /**
156
- * Server certificate list information. Currently, only one server certificate can be added.
157
- * > **NOTE:** This parameter only takes effect for TCPSSL listeners.
157
+ * The list of server certificates. This parameter takes effect only for listeners that use SSL over TCP.
158
+ *
159
+ * > **NOTE:** This parameter takes effect only for TCPSSL listeners.
158
160
  */
159
161
  readonly certificateIds: pulumi.Output<string[] | undefined>;
160
162
  /**
161
- * The new connection speed limit for a network-based load balancing instance per second. Valid values: **0** ~ **1000000**. **0** indicates unlimited speed.
163
+ * The maximum number of connections that can be created per second on the NLB instance. Valid values: `0` to `1000000`. `0` specifies that the number of connections is unlimited.
162
164
  */
163
165
  readonly cps: pulumi.Output<number | undefined>;
164
166
  /**
165
- * Full port listening end port. Valid values: **0** ~ **65535 * *. The value of the end port is less than the start port.
167
+ * The last port in the listener port range. Valid values: `0` to `65535`. The number of the last port must be greater than the number of the first port.
168
+ *
169
+ * > **NOTE:** This parameter is required when `ListenerPort` is set to `0`.
166
170
  */
167
171
  readonly endPort: pulumi.Output<number | undefined>;
168
172
  /**
169
- * Connection idle timeout time. Unit: seconds. Valid values: **1** ~ **900**.
173
+ * The timeout period of idle connections. Unit: seconds. Valid values: `1` to `900`. Default value: `900`.
170
174
  */
171
175
  readonly idleTimeout: pulumi.Output<number>;
172
176
  /**
173
- * Custom listener name.The length is limited to 2 to 256 characters, supports Chinese and English letters, and can include numbers, commas (,), half-width periods (.), half-width semicolons (;), forward slashes (/), at(@), underscores (_), and dashes (-).
177
+ * Enter a name for the listener.
178
+ *
179
+ * The description must be 2 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (\_), and hyphens (-).
174
180
  */
175
181
  readonly listenerDescription: pulumi.Output<string | undefined>;
176
182
  /**
177
- * Listening port. Valid values: **0** ~ **65535 * *. **0**: indicates that full port listening is used. When set to **0**, you must configure **StartPort** and **EndPort**.
183
+ * The listener port. Valid values: `0` to `65535`.
184
+ *
185
+ * If you set the value to `0`, the listener listens by port range. If you set the value to `0`, you must specify `StartPort` and `EndPort`.
178
186
  */
179
187
  readonly listenerPort: pulumi.Output<number>;
180
188
  /**
181
- * The listening protocol. Valid values: **TCP**, **UDP**, or **TCPSSL**.
189
+ * The listening protocol. Valid values: `TCP`, `UDP`, and `TCPSSL`.
182
190
  */
183
191
  readonly listenerProtocol: pulumi.Output<string>;
184
192
  /**
185
- * The ID of the network-based server load balancer instance.
193
+ * The ID of the Network Load Balancer (NLB) instance.
186
194
  */
187
195
  readonly loadBalancerId: pulumi.Output<string>;
188
196
  /**
189
- * The maximum segment size of the TCP message. Unit: Bytes. Valid values: **0** ~ **1500**. **0** indicates that the MSS value of the TCP message is not modified.
190
- * > **NOTE:** only TCP and TCPSSL listeners support this field value.
197
+ * The maximum size of a TCP segment. Unit: bytes. Valid values: `0` to `1500`. `0` specifies that the maximum segment size remains unchanged.
198
+ *
199
+ * > **NOTE:** This parameter is supported only by TCP listeners and listeners that use SSL over TCP.
191
200
  */
192
201
  readonly mss: pulumi.Output<number | undefined>;
193
202
  /**
194
- * Whether to enable the Proxy Protocol to carry the source address of the client to the backend server. Value:
195
- * - **true**: on.
196
- * - **false**: closed.
203
+ * Specifies whether to use the Proxy protocol to pass client IP addresses to backend servers. Valid values:
197
204
  */
198
205
  readonly proxyProtocolEnabled: pulumi.Output<boolean>;
199
206
  /**
200
- * Whether to turn on the second-level monitoring function. Value:
201
- * - **true**: on.
202
- * - **false**: closed.
207
+ * Specifies whether to enable fine-grained monitoring. Valid values:
203
208
  */
204
209
  readonly secSensorEnabled: pulumi.Output<boolean>;
205
210
  /**
206
- * Security policy ID. Support system security policies and custom security policies. Valid values: **tls_cipher_policy_1_0**, **tls_cipher_policy_1_1**, **tls_cipher_policy_1_2**, **tls_cipher_policy_1_2_strict**, or **tls_cipher_policy_1_2_strict_with_1_3**.
207
- * > **NOTE:** This parameter only takes effect for TCPSSL listeners.
211
+ * The security policy ID. System security policies and custom security policies are supported.
212
+ *
213
+ * Valid values: `tls_cipher_policy\_1\_0` (default), `tls_cipher_policy\_1\_1`, `tls_cipher_policy\_1\_2`, `tls_cipher_policy\_1\_2\_strict`, and `tls_cipher_policy\_1\_2\_strict_with\_1\_3`.
214
+ *
215
+ * > **NOTE:** This parameter takes effect only for listeners that use SSL over TCP.
208
216
  */
209
217
  readonly securityPolicyId: pulumi.Output<string>;
210
218
  /**
@@ -212,15 +220,17 @@ export declare class Listener extends pulumi.CustomResource {
212
220
  */
213
221
  readonly serverGroupId: pulumi.Output<string>;
214
222
  /**
215
- * Full Port listens to the starting port. Valid values: **0** ~ **65535**.
223
+ * The first port in the listener port range. Valid values: `0` to `65535`.
224
+ *
225
+ * > **NOTE:** This parameter is required when `ListenerPort` is set to `0`.
216
226
  */
217
227
  readonly startPort: pulumi.Output<number | undefined>;
218
228
  /**
219
- * The status of the resource.
229
+ * The status of the resource. Valid values: `Running`, `Stopped`. When you want to enable this instance, you can set the property value to `Running`;
220
230
  */
221
231
  readonly status: pulumi.Output<string>;
222
232
  /**
223
- * The tag of the resource.
233
+ * The tag of the resource
224
234
  */
225
235
  readonly tags: pulumi.Output<{
226
236
  [key: string]: string;
@@ -239,83 +249,91 @@ export declare class Listener extends pulumi.CustomResource {
239
249
  */
240
250
  export interface ListenerState {
241
251
  /**
242
- * Whether ALPN is turned on. Value:
243
- * - **true**: on.
244
- * - **false**: closed.
252
+ * Specifies whether to enable Application-Layer Protocol Negotiation (ALPN). Valid values:
245
253
  */
246
254
  alpnEnabled?: pulumi.Input<boolean>;
247
255
  /**
248
- * ALPN policy. Value:
249
- * - **HTTP1Only**
250
- * - **HTTP2Only**
251
- * - **HTTP2Preferred**
252
- * - **HTTP2Optional**.
256
+ * The ALPN policy. Valid values:
257
+ * - `HTTP1Only`: uses only HTTP 1.x. The priority of HTTP 1.1 is higher than the priority of HTTP 1.0.
258
+ * - `HTTP2Only`: uses only HTTP 2.0.
259
+ * - `HTTP2Optional`: preferentially uses HTTP 1.x over HTTP 2.0. The priority of HTTP 1.1 is higher than the priority of HTTP 1.0, and the priority of HTTP 1.0 is higher than the priority of HTTP 2.0.
260
+ * - `HTTP2Preferred`: preferentially uses HTTP 2.0 over HTTP 1.x. The priority of HTTP 2.0 is higher than the priority of HTTP 1.1, and the priority of HTTP 1.1 is higher than the priority of HTTP 1.0.
261
+ *
262
+ * > **NOTE:** This parameter is required if AlpnEnabled is set to true.
263
+ *
264
+ * > **NOTE:** Effective only for TCPSSL listener.
253
265
  */
254
266
  alpnPolicy?: pulumi.Input<string>;
255
267
  /**
256
- * CA certificate list information. Currently, only one CA certificate can be added.
257
- * > **NOTE:** This parameter only takes effect for TCPSSL listeners.
268
+ * The list of certificate authority (CA) certificates. This parameter takes effect only for listeners that use SSL over TCP.
269
+ *
270
+ * > **NOTE:** Only one CA certificate is supported.
258
271
  */
259
272
  caCertificateIds?: pulumi.Input<pulumi.Input<string>[]>;
260
273
  /**
261
- * Whether to start two-way authentication. Value:
262
- * - **true**: start.
263
- * - **false**: closed.
274
+ * Specifies whether to enable mutual authentication. Valid values:
264
275
  */
265
276
  caEnabled?: pulumi.Input<boolean>;
266
277
  /**
267
- * Server certificate list information. Currently, only one server certificate can be added.
268
- * > **NOTE:** This parameter only takes effect for TCPSSL listeners.
278
+ * The list of server certificates. This parameter takes effect only for listeners that use SSL over TCP.
279
+ *
280
+ * > **NOTE:** This parameter takes effect only for TCPSSL listeners.
269
281
  */
270
282
  certificateIds?: pulumi.Input<pulumi.Input<string>[]>;
271
283
  /**
272
- * The new connection speed limit for a network-based load balancing instance per second. Valid values: **0** ~ **1000000**. **0** indicates unlimited speed.
284
+ * The maximum number of connections that can be created per second on the NLB instance. Valid values: `0` to `1000000`. `0` specifies that the number of connections is unlimited.
273
285
  */
274
286
  cps?: pulumi.Input<number>;
275
287
  /**
276
- * Full port listening end port. Valid values: **0** ~ **65535 * *. The value of the end port is less than the start port.
288
+ * The last port in the listener port range. Valid values: `0` to `65535`. The number of the last port must be greater than the number of the first port.
289
+ *
290
+ * > **NOTE:** This parameter is required when `ListenerPort` is set to `0`.
277
291
  */
278
292
  endPort?: pulumi.Input<number>;
279
293
  /**
280
- * Connection idle timeout time. Unit: seconds. Valid values: **1** ~ **900**.
294
+ * The timeout period of idle connections. Unit: seconds. Valid values: `1` to `900`. Default value: `900`.
281
295
  */
282
296
  idleTimeout?: pulumi.Input<number>;
283
297
  /**
284
- * Custom listener name.The length is limited to 2 to 256 characters, supports Chinese and English letters, and can include numbers, commas (,), half-width periods (.), half-width semicolons (;), forward slashes (/), at(@), underscores (_), and dashes (-).
298
+ * Enter a name for the listener.
299
+ *
300
+ * The description must be 2 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (\_), and hyphens (-).
285
301
  */
286
302
  listenerDescription?: pulumi.Input<string>;
287
303
  /**
288
- * Listening port. Valid values: **0** ~ **65535 * *. **0**: indicates that full port listening is used. When set to **0**, you must configure **StartPort** and **EndPort**.
304
+ * The listener port. Valid values: `0` to `65535`.
305
+ *
306
+ * If you set the value to `0`, the listener listens by port range. If you set the value to `0`, you must specify `StartPort` and `EndPort`.
289
307
  */
290
308
  listenerPort?: pulumi.Input<number>;
291
309
  /**
292
- * The listening protocol. Valid values: **TCP**, **UDP**, or **TCPSSL**.
310
+ * The listening protocol. Valid values: `TCP`, `UDP`, and `TCPSSL`.
293
311
  */
294
312
  listenerProtocol?: pulumi.Input<string>;
295
313
  /**
296
- * The ID of the network-based server load balancer instance.
314
+ * The ID of the Network Load Balancer (NLB) instance.
297
315
  */
298
316
  loadBalancerId?: pulumi.Input<string>;
299
317
  /**
300
- * The maximum segment size of the TCP message. Unit: Bytes. Valid values: **0** ~ **1500**. **0** indicates that the MSS value of the TCP message is not modified.
301
- * > **NOTE:** only TCP and TCPSSL listeners support this field value.
318
+ * The maximum size of a TCP segment. Unit: bytes. Valid values: `0` to `1500`. `0` specifies that the maximum segment size remains unchanged.
319
+ *
320
+ * > **NOTE:** This parameter is supported only by TCP listeners and listeners that use SSL over TCP.
302
321
  */
303
322
  mss?: pulumi.Input<number>;
304
323
  /**
305
- * Whether to enable the Proxy Protocol to carry the source address of the client to the backend server. Value:
306
- * - **true**: on.
307
- * - **false**: closed.
324
+ * Specifies whether to use the Proxy protocol to pass client IP addresses to backend servers. Valid values:
308
325
  */
309
326
  proxyProtocolEnabled?: pulumi.Input<boolean>;
310
327
  /**
311
- * Whether to turn on the second-level monitoring function. Value:
312
- * - **true**: on.
313
- * - **false**: closed.
328
+ * Specifies whether to enable fine-grained monitoring. Valid values:
314
329
  */
315
330
  secSensorEnabled?: pulumi.Input<boolean>;
316
331
  /**
317
- * Security policy ID. Support system security policies and custom security policies. Valid values: **tls_cipher_policy_1_0**, **tls_cipher_policy_1_1**, **tls_cipher_policy_1_2**, **tls_cipher_policy_1_2_strict**, or **tls_cipher_policy_1_2_strict_with_1_3**.
318
- * > **NOTE:** This parameter only takes effect for TCPSSL listeners.
332
+ * The security policy ID. System security policies and custom security policies are supported.
333
+ *
334
+ * Valid values: `tls_cipher_policy\_1\_0` (default), `tls_cipher_policy\_1\_1`, `tls_cipher_policy\_1\_2`, `tls_cipher_policy\_1\_2\_strict`, and `tls_cipher_policy\_1\_2\_strict_with\_1\_3`.
335
+ *
336
+ * > **NOTE:** This parameter takes effect only for listeners that use SSL over TCP.
319
337
  */
320
338
  securityPolicyId?: pulumi.Input<string>;
321
339
  /**
@@ -323,15 +341,17 @@ export interface ListenerState {
323
341
  */
324
342
  serverGroupId?: pulumi.Input<string>;
325
343
  /**
326
- * Full Port listens to the starting port. Valid values: **0** ~ **65535**.
344
+ * The first port in the listener port range. Valid values: `0` to `65535`.
345
+ *
346
+ * > **NOTE:** This parameter is required when `ListenerPort` is set to `0`.
327
347
  */
328
348
  startPort?: pulumi.Input<number>;
329
349
  /**
330
- * The status of the resource.
350
+ * The status of the resource. Valid values: `Running`, `Stopped`. When you want to enable this instance, you can set the property value to `Running`;
331
351
  */
332
352
  status?: pulumi.Input<string>;
333
353
  /**
334
- * The tag of the resource.
354
+ * The tag of the resource
335
355
  */
336
356
  tags?: pulumi.Input<{
337
357
  [key: string]: pulumi.Input<string>;
@@ -342,83 +362,91 @@ export interface ListenerState {
342
362
  */
343
363
  export interface ListenerArgs {
344
364
  /**
345
- * Whether ALPN is turned on. Value:
346
- * - **true**: on.
347
- * - **false**: closed.
365
+ * Specifies whether to enable Application-Layer Protocol Negotiation (ALPN). Valid values:
348
366
  */
349
367
  alpnEnabled?: pulumi.Input<boolean>;
350
368
  /**
351
- * ALPN policy. Value:
352
- * - **HTTP1Only**
353
- * - **HTTP2Only**
354
- * - **HTTP2Preferred**
355
- * - **HTTP2Optional**.
369
+ * The ALPN policy. Valid values:
370
+ * - `HTTP1Only`: uses only HTTP 1.x. The priority of HTTP 1.1 is higher than the priority of HTTP 1.0.
371
+ * - `HTTP2Only`: uses only HTTP 2.0.
372
+ * - `HTTP2Optional`: preferentially uses HTTP 1.x over HTTP 2.0. The priority of HTTP 1.1 is higher than the priority of HTTP 1.0, and the priority of HTTP 1.0 is higher than the priority of HTTP 2.0.
373
+ * - `HTTP2Preferred`: preferentially uses HTTP 2.0 over HTTP 1.x. The priority of HTTP 2.0 is higher than the priority of HTTP 1.1, and the priority of HTTP 1.1 is higher than the priority of HTTP 1.0.
374
+ *
375
+ * > **NOTE:** This parameter is required if AlpnEnabled is set to true.
376
+ *
377
+ * > **NOTE:** Effective only for TCPSSL listener.
356
378
  */
357
379
  alpnPolicy?: pulumi.Input<string>;
358
380
  /**
359
- * CA certificate list information. Currently, only one CA certificate can be added.
360
- * > **NOTE:** This parameter only takes effect for TCPSSL listeners.
381
+ * The list of certificate authority (CA) certificates. This parameter takes effect only for listeners that use SSL over TCP.
382
+ *
383
+ * > **NOTE:** Only one CA certificate is supported.
361
384
  */
362
385
  caCertificateIds?: pulumi.Input<pulumi.Input<string>[]>;
363
386
  /**
364
- * Whether to start two-way authentication. Value:
365
- * - **true**: start.
366
- * - **false**: closed.
387
+ * Specifies whether to enable mutual authentication. Valid values:
367
388
  */
368
389
  caEnabled?: pulumi.Input<boolean>;
369
390
  /**
370
- * Server certificate list information. Currently, only one server certificate can be added.
371
- * > **NOTE:** This parameter only takes effect for TCPSSL listeners.
391
+ * The list of server certificates. This parameter takes effect only for listeners that use SSL over TCP.
392
+ *
393
+ * > **NOTE:** This parameter takes effect only for TCPSSL listeners.
372
394
  */
373
395
  certificateIds?: pulumi.Input<pulumi.Input<string>[]>;
374
396
  /**
375
- * The new connection speed limit for a network-based load balancing instance per second. Valid values: **0** ~ **1000000**. **0** indicates unlimited speed.
397
+ * The maximum number of connections that can be created per second on the NLB instance. Valid values: `0` to `1000000`. `0` specifies that the number of connections is unlimited.
376
398
  */
377
399
  cps?: pulumi.Input<number>;
378
400
  /**
379
- * Full port listening end port. Valid values: **0** ~ **65535 * *. The value of the end port is less than the start port.
401
+ * The last port in the listener port range. Valid values: `0` to `65535`. The number of the last port must be greater than the number of the first port.
402
+ *
403
+ * > **NOTE:** This parameter is required when `ListenerPort` is set to `0`.
380
404
  */
381
405
  endPort?: pulumi.Input<number>;
382
406
  /**
383
- * Connection idle timeout time. Unit: seconds. Valid values: **1** ~ **900**.
407
+ * The timeout period of idle connections. Unit: seconds. Valid values: `1` to `900`. Default value: `900`.
384
408
  */
385
409
  idleTimeout?: pulumi.Input<number>;
386
410
  /**
387
- * Custom listener name.The length is limited to 2 to 256 characters, supports Chinese and English letters, and can include numbers, commas (,), half-width periods (.), half-width semicolons (;), forward slashes (/), at(@), underscores (_), and dashes (-).
411
+ * Enter a name for the listener.
412
+ *
413
+ * The description must be 2 to 256 characters in length, and can contain letters, digits, commas (,), periods (.), semicolons (;), forward slashes (/), at signs (@), underscores (\_), and hyphens (-).
388
414
  */
389
415
  listenerDescription?: pulumi.Input<string>;
390
416
  /**
391
- * Listening port. Valid values: **0** ~ **65535 * *. **0**: indicates that full port listening is used. When set to **0**, you must configure **StartPort** and **EndPort**.
417
+ * The listener port. Valid values: `0` to `65535`.
418
+ *
419
+ * If you set the value to `0`, the listener listens by port range. If you set the value to `0`, you must specify `StartPort` and `EndPort`.
392
420
  */
393
421
  listenerPort: pulumi.Input<number>;
394
422
  /**
395
- * The listening protocol. Valid values: **TCP**, **UDP**, or **TCPSSL**.
423
+ * The listening protocol. Valid values: `TCP`, `UDP`, and `TCPSSL`.
396
424
  */
397
425
  listenerProtocol: pulumi.Input<string>;
398
426
  /**
399
- * The ID of the network-based server load balancer instance.
427
+ * The ID of the Network Load Balancer (NLB) instance.
400
428
  */
401
429
  loadBalancerId: pulumi.Input<string>;
402
430
  /**
403
- * The maximum segment size of the TCP message. Unit: Bytes. Valid values: **0** ~ **1500**. **0** indicates that the MSS value of the TCP message is not modified.
404
- * > **NOTE:** only TCP and TCPSSL listeners support this field value.
431
+ * The maximum size of a TCP segment. Unit: bytes. Valid values: `0` to `1500`. `0` specifies that the maximum segment size remains unchanged.
432
+ *
433
+ * > **NOTE:** This parameter is supported only by TCP listeners and listeners that use SSL over TCP.
405
434
  */
406
435
  mss?: pulumi.Input<number>;
407
436
  /**
408
- * Whether to enable the Proxy Protocol to carry the source address of the client to the backend server. Value:
409
- * - **true**: on.
410
- * - **false**: closed.
437
+ * Specifies whether to use the Proxy protocol to pass client IP addresses to backend servers. Valid values:
411
438
  */
412
439
  proxyProtocolEnabled?: pulumi.Input<boolean>;
413
440
  /**
414
- * Whether to turn on the second-level monitoring function. Value:
415
- * - **true**: on.
416
- * - **false**: closed.
441
+ * Specifies whether to enable fine-grained monitoring. Valid values:
417
442
  */
418
443
  secSensorEnabled?: pulumi.Input<boolean>;
419
444
  /**
420
- * Security policy ID. Support system security policies and custom security policies. Valid values: **tls_cipher_policy_1_0**, **tls_cipher_policy_1_1**, **tls_cipher_policy_1_2**, **tls_cipher_policy_1_2_strict**, or **tls_cipher_policy_1_2_strict_with_1_3**.
421
- * > **NOTE:** This parameter only takes effect for TCPSSL listeners.
445
+ * The security policy ID. System security policies and custom security policies are supported.
446
+ *
447
+ * Valid values: `tls_cipher_policy\_1\_0` (default), `tls_cipher_policy\_1\_1`, `tls_cipher_policy\_1\_2`, `tls_cipher_policy\_1\_2\_strict`, and `tls_cipher_policy\_1\_2\_strict_with\_1\_3`.
448
+ *
449
+ * > **NOTE:** This parameter takes effect only for listeners that use SSL over TCP.
422
450
  */
423
451
  securityPolicyId?: pulumi.Input<string>;
424
452
  /**
@@ -426,15 +454,17 @@ export interface ListenerArgs {
426
454
  */
427
455
  serverGroupId: pulumi.Input<string>;
428
456
  /**
429
- * Full Port listens to the starting port. Valid values: **0** ~ **65535**.
457
+ * The first port in the listener port range. Valid values: `0` to `65535`.
458
+ *
459
+ * > **NOTE:** This parameter is required when `ListenerPort` is set to `0`.
430
460
  */
431
461
  startPort?: pulumi.Input<number>;
432
462
  /**
433
- * The status of the resource.
463
+ * The status of the resource. Valid values: `Running`, `Stopped`. When you want to enable this instance, you can set the property value to `Running`;
434
464
  */
435
465
  status?: pulumi.Input<string>;
436
466
  /**
437
- * The tag of the resource.
467
+ * The tag of the resource
438
468
  */
439
469
  tags?: pulumi.Input<{
440
470
  [key: string]: pulumi.Input<string>;
@@ -1 +1 @@
1
- {"version":3,"file":"listener.js","sourceRoot":"","sources":["../../nlb/listener.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"listener.js","sourceRoot":"","sources":["../../nlb/listener.ts"],"names":[],"mappings":"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"}
@@ -31,19 +31,19 @@ export declare class ListenerAdditionalCertificateAttachment extends pulumi.Cust
31
31
  */
32
32
  static isInstance(obj: any): obj is ListenerAdditionalCertificateAttachment;
33
33
  /**
34
- * Certificate ID. Currently, only server certificates are supported.
34
+ * The ID of additional certificates.
35
35
  */
36
36
  readonly certificateId: pulumi.Output<string>;
37
37
  /**
38
- * Whether to PreCheck only this request, value: - **true**: sends a check request and does not create a resource. Check items include whether required parameters, request format, and business restrictions have been filled in. If the check fails, the corresponding error is returned. If the check passes, the error code 'DryRunOperation' is returned '. - **false** (default): Sends a normal request, returns the HTTP 2xx status code after the check, and directly performs the operation.
38
+ * Specifies whether to perform a dry run, without performing the actual request. Valid values:
39
39
  */
40
40
  readonly dryRun: pulumi.Output<boolean | undefined>;
41
41
  /**
42
- * The ID of the tcpssl listener.
42
+ * The listener ID. You must specify the ID of a listener that uses SSL over TCP.
43
43
  */
44
44
  readonly listenerId: pulumi.Output<string>;
45
45
  /**
46
- * The status of the resource.
46
+ * The status of the resource
47
47
  */
48
48
  readonly status: pulumi.Output<string>;
49
49
  /**
@@ -60,19 +60,19 @@ export declare class ListenerAdditionalCertificateAttachment extends pulumi.Cust
60
60
  */
61
61
  export interface ListenerAdditionalCertificateAttachmentState {
62
62
  /**
63
- * Certificate ID. Currently, only server certificates are supported.
63
+ * The ID of additional certificates.
64
64
  */
65
65
  certificateId?: pulumi.Input<string>;
66
66
  /**
67
- * Whether to PreCheck only this request, value: - **true**: sends a check request and does not create a resource. Check items include whether required parameters, request format, and business restrictions have been filled in. If the check fails, the corresponding error is returned. If the check passes, the error code 'DryRunOperation' is returned '. - **false** (default): Sends a normal request, returns the HTTP 2xx status code after the check, and directly performs the operation.
67
+ * Specifies whether to perform a dry run, without performing the actual request. Valid values:
68
68
  */
69
69
  dryRun?: pulumi.Input<boolean>;
70
70
  /**
71
- * The ID of the tcpssl listener.
71
+ * The listener ID. You must specify the ID of a listener that uses SSL over TCP.
72
72
  */
73
73
  listenerId?: pulumi.Input<string>;
74
74
  /**
75
- * The status of the resource.
75
+ * The status of the resource
76
76
  */
77
77
  status?: pulumi.Input<string>;
78
78
  }
@@ -81,15 +81,15 @@ export interface ListenerAdditionalCertificateAttachmentState {
81
81
  */
82
82
  export interface ListenerAdditionalCertificateAttachmentArgs {
83
83
  /**
84
- * Certificate ID. Currently, only server certificates are supported.
84
+ * The ID of additional certificates.
85
85
  */
86
86
  certificateId: pulumi.Input<string>;
87
87
  /**
88
- * Whether to PreCheck only this request, value: - **true**: sends a check request and does not create a resource. Check items include whether required parameters, request format, and business restrictions have been filled in. If the check fails, the corresponding error is returned. If the check passes, the error code 'DryRunOperation' is returned '. - **false** (default): Sends a normal request, returns the HTTP 2xx status code after the check, and directly performs the operation.
88
+ * Specifies whether to perform a dry run, without performing the actual request. Valid values:
89
89
  */
90
90
  dryRun?: pulumi.Input<boolean>;
91
91
  /**
92
- * The ID of the tcpssl listener.
92
+ * The listener ID. You must specify the ID of a listener that uses SSL over TCP.
93
93
  */
94
94
  listenerId: pulumi.Input<string>;
95
95
  }