pulumi-alicloud 3.68.0a1732771126__py3-none-any.whl → 3.68.0a1733143327__py3-none-any.whl
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.
Potentially problematic release.
This version of pulumi-alicloud might be problematic. Click here for more details.
- pulumi_alicloud/__init__.py +40 -0
- pulumi_alicloud/cdn/_inputs.py +3 -23
- pulumi_alicloud/cdn/domain_new.py +93 -51
- pulumi_alicloud/cdn/outputs.py +2 -16
- pulumi_alicloud/cdn/real_time_log_delivery.py +97 -46
- pulumi_alicloud/cen/get_flowlogs.py +250 -35
- pulumi_alicloud/cen/outputs.py +116 -17
- pulumi_alicloud/cs/node_pool.py +7 -0
- pulumi_alicloud/ecs/_inputs.py +92 -0
- pulumi_alicloud/ecs/auto_snapshot_policy.py +323 -129
- pulumi_alicloud/ecs/outputs.py +88 -0
- pulumi_alicloud/ecs/snapshot_policy.py +154 -1
- pulumi_alicloud/emrv2/_inputs.py +875 -21
- pulumi_alicloud/emrv2/cluster.py +47 -0
- pulumi_alicloud/emrv2/outputs.py +580 -14
- pulumi_alicloud/gwlb/__init__.py +1 -0
- pulumi_alicloud/gwlb/_inputs.py +147 -126
- pulumi_alicloud/gwlb/get_zones.py +173 -0
- pulumi_alicloud/gwlb/listener.py +50 -50
- pulumi_alicloud/gwlb/load_balancer.py +78 -71
- pulumi_alicloud/gwlb/outputs.py +139 -84
- pulumi_alicloud/gwlb/server_group.py +162 -113
- pulumi_alicloud/kvstore/audit_log_config.py +7 -7
- pulumi_alicloud/kvstore/backup_policy.py +9 -9
- pulumi_alicloud/kvstore/get_instance_classes.py +8 -8
- pulumi_alicloud/kvstore/get_instances.py +9 -7
- pulumi_alicloud/kvstore/instance.py +21 -21
- pulumi_alicloud/kvstore/outputs.py +6 -6
- pulumi_alicloud/nas/_inputs.py +148 -0
- pulumi_alicloud/nas/file_system.py +482 -222
- pulumi_alicloud/nas/outputs.py +109 -0
- pulumi_alicloud/pai/__init__.py +7 -0
- pulumi_alicloud/pai/_inputs.py +129 -0
- pulumi_alicloud/pai/outputs.py +83 -0
- pulumi_alicloud/pai/workspace_code_source.py +702 -0
- pulumi_alicloud/pai/workspace_dataset.py +1081 -0
- pulumi_alicloud/pai/workspace_datasetversion.py +818 -0
- pulumi_alicloud/pai/workspace_experiment.py +394 -0
- pulumi_alicloud/pai/workspace_run.py +344 -0
- pulumi_alicloud/pai/workspace_workspace.py +6 -6
- pulumi_alicloud/pulumi-plugin.json +1 -1
- {pulumi_alicloud-3.68.0a1732771126.dist-info → pulumi_alicloud-3.68.0a1733143327.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.68.0a1732771126.dist-info → pulumi_alicloud-3.68.0a1733143327.dist-info}/RECORD +45 -37
- {pulumi_alicloud-3.68.0a1732771126.dist-info → pulumi_alicloud-3.68.0a1733143327.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.68.0a1732771126.dist-info → pulumi_alicloud-3.68.0a1733143327.dist-info}/top_level.txt +0 -0
|
@@ -34,28 +34,35 @@ class ServerGroupArgs:
|
|
|
34
34
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
35
35
|
"""
|
|
36
36
|
The set of arguments for constructing a ServerGroup resource.
|
|
37
|
-
:param pulumi.Input[str] vpc_id: The VPC
|
|
37
|
+
:param pulumi.Input[str] vpc_id: The VPC ID.
|
|
38
38
|
|
|
39
|
-
> **NOTE:** If
|
|
39
|
+
> **NOTE:** If `ServerGroupType` is set to `Instance`, only servers in the specified VPC can be added to the server group.
|
|
40
40
|
:param pulumi.Input['ServerGroupConnectionDrainConfigArgs'] connection_drain_config: Connected graceful interrupt configuration. See `connection_drain_config` below.
|
|
41
|
-
:param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request.
|
|
41
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request. Valid values:
|
|
42
42
|
:param pulumi.Input['ServerGroupHealthCheckConfigArgs'] health_check_config: Health check configurations. See `health_check_config` below.
|
|
43
|
-
:param pulumi.Input[str] protocol:
|
|
43
|
+
:param pulumi.Input[str] protocol: The backend protocol. Valid values:
|
|
44
44
|
|
|
45
|
-
-
|
|
45
|
+
- `GENEVE`(default)
|
|
46
46
|
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
47
|
-
:param pulumi.Input[str] scheduler:
|
|
48
|
-
|
|
49
|
-
- `
|
|
50
|
-
- `
|
|
47
|
+
:param pulumi.Input[str] scheduler: The scheduling algorithm. Valid values:
|
|
48
|
+
|
|
49
|
+
- `5TCH` (default): specifies consistent hashing that is based on the following factors: source IP address, destination IP address, source port, protocol, and destination port. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
50
|
+
- `3TCH`: specifies consistent hashing that is based on the following factors: source IP address, destination IP address, and protocol. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
51
|
+
- `2TCH`: specifies consistent hashing that is based on the following factors: source IP address and destination IP address. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
51
52
|
:param pulumi.Input[str] server_group_name: The server group name.
|
|
52
53
|
|
|
53
|
-
|
|
54
|
-
:param pulumi.Input[str] server_group_type: The server group
|
|
55
|
-
|
|
56
|
-
- `
|
|
57
|
-
|
|
58
|
-
:param pulumi.Input[
|
|
54
|
+
The name must be 2 to 128 characters in length, and can contain digits, periods (.), underscores (\\_), and hyphens (-). It must start with a letter.
|
|
55
|
+
:param pulumi.Input[str] server_group_type: The type of server group. Valid values:
|
|
56
|
+
|
|
57
|
+
- `Instance` (default): allows you to specify servers of the `Ecs`, `Eni`, or `Eci` type.
|
|
58
|
+
- `Ip`: allows you to add servers of by specifying IP addresses.
|
|
59
|
+
:param pulumi.Input[Sequence[pulumi.Input['ServerGroupServerArgs']]] servers: The backend servers that you want to remove.
|
|
60
|
+
|
|
61
|
+
> **NOTE:** You can remove at most 200 backend servers in each call.
|
|
62
|
+
See `servers` below.
|
|
63
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag keys.
|
|
64
|
+
|
|
65
|
+
You can specify at most 20 tags in each call.
|
|
59
66
|
"""
|
|
60
67
|
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
61
68
|
if connection_drain_config is not None:
|
|
@@ -83,9 +90,9 @@ class ServerGroupArgs:
|
|
|
83
90
|
@pulumi.getter(name="vpcId")
|
|
84
91
|
def vpc_id(self) -> pulumi.Input[str]:
|
|
85
92
|
"""
|
|
86
|
-
The VPC
|
|
93
|
+
The VPC ID.
|
|
87
94
|
|
|
88
|
-
> **NOTE:** If
|
|
95
|
+
> **NOTE:** If `ServerGroupType` is set to `Instance`, only servers in the specified VPC can be added to the server group.
|
|
89
96
|
"""
|
|
90
97
|
return pulumi.get(self, "vpc_id")
|
|
91
98
|
|
|
@@ -109,7 +116,7 @@ class ServerGroupArgs:
|
|
|
109
116
|
@pulumi.getter(name="dryRun")
|
|
110
117
|
def dry_run(self) -> Optional[pulumi.Input[bool]]:
|
|
111
118
|
"""
|
|
112
|
-
Specifies whether to perform only a dry run, without performing the actual request.
|
|
119
|
+
Specifies whether to perform only a dry run, without performing the actual request. Valid values:
|
|
113
120
|
"""
|
|
114
121
|
return pulumi.get(self, "dry_run")
|
|
115
122
|
|
|
@@ -133,9 +140,9 @@ class ServerGroupArgs:
|
|
|
133
140
|
@pulumi.getter
|
|
134
141
|
def protocol(self) -> Optional[pulumi.Input[str]]:
|
|
135
142
|
"""
|
|
136
|
-
|
|
143
|
+
The backend protocol. Valid values:
|
|
137
144
|
|
|
138
|
-
-
|
|
145
|
+
- `GENEVE`(default)
|
|
139
146
|
"""
|
|
140
147
|
return pulumi.get(self, "protocol")
|
|
141
148
|
|
|
@@ -159,10 +166,11 @@ class ServerGroupArgs:
|
|
|
159
166
|
@pulumi.getter
|
|
160
167
|
def scheduler(self) -> Optional[pulumi.Input[str]]:
|
|
161
168
|
"""
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
- `
|
|
165
|
-
- `
|
|
169
|
+
The scheduling algorithm. Valid values:
|
|
170
|
+
|
|
171
|
+
- `5TCH` (default): specifies consistent hashing that is based on the following factors: source IP address, destination IP address, source port, protocol, and destination port. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
172
|
+
- `3TCH`: specifies consistent hashing that is based on the following factors: source IP address, destination IP address, and protocol. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
173
|
+
- `2TCH`: specifies consistent hashing that is based on the following factors: source IP address and destination IP address. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
166
174
|
"""
|
|
167
175
|
return pulumi.get(self, "scheduler")
|
|
168
176
|
|
|
@@ -176,7 +184,7 @@ class ServerGroupArgs:
|
|
|
176
184
|
"""
|
|
177
185
|
The server group name.
|
|
178
186
|
|
|
179
|
-
|
|
187
|
+
The name must be 2 to 128 characters in length, and can contain digits, periods (.), underscores (\\_), and hyphens (-). It must start with a letter.
|
|
180
188
|
"""
|
|
181
189
|
return pulumi.get(self, "server_group_name")
|
|
182
190
|
|
|
@@ -188,9 +196,10 @@ class ServerGroupArgs:
|
|
|
188
196
|
@pulumi.getter(name="serverGroupType")
|
|
189
197
|
def server_group_type(self) -> Optional[pulumi.Input[str]]:
|
|
190
198
|
"""
|
|
191
|
-
The server group
|
|
192
|
-
|
|
193
|
-
- `
|
|
199
|
+
The type of server group. Valid values:
|
|
200
|
+
|
|
201
|
+
- `Instance` (default): allows you to specify servers of the `Ecs`, `Eni`, or `Eci` type.
|
|
202
|
+
- `Ip`: allows you to add servers of by specifying IP addresses.
|
|
194
203
|
"""
|
|
195
204
|
return pulumi.get(self, "server_group_type")
|
|
196
205
|
|
|
@@ -202,7 +211,10 @@ class ServerGroupArgs:
|
|
|
202
211
|
@pulumi.getter
|
|
203
212
|
def servers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ServerGroupServerArgs']]]]:
|
|
204
213
|
"""
|
|
205
|
-
|
|
214
|
+
The backend servers that you want to remove.
|
|
215
|
+
|
|
216
|
+
> **NOTE:** You can remove at most 200 backend servers in each call.
|
|
217
|
+
See `servers` below.
|
|
206
218
|
"""
|
|
207
219
|
return pulumi.get(self, "servers")
|
|
208
220
|
|
|
@@ -214,7 +226,9 @@ class ServerGroupArgs:
|
|
|
214
226
|
@pulumi.getter
|
|
215
227
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
216
228
|
"""
|
|
217
|
-
|
|
229
|
+
The tag keys.
|
|
230
|
+
|
|
231
|
+
You can specify at most 20 tags in each call.
|
|
218
232
|
"""
|
|
219
233
|
return pulumi.get(self, "tags")
|
|
220
234
|
|
|
@@ -242,29 +256,36 @@ class _ServerGroupState:
|
|
|
242
256
|
"""
|
|
243
257
|
Input properties used for looking up and filtering ServerGroup resources.
|
|
244
258
|
:param pulumi.Input['ServerGroupConnectionDrainConfigArgs'] connection_drain_config: Connected graceful interrupt configuration. See `connection_drain_config` below.
|
|
245
|
-
:param pulumi.Input[str] create_time: The
|
|
246
|
-
:param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request.
|
|
259
|
+
:param pulumi.Input[str] create_time: The time when the resource was created. The time follows the ISO 8601 standard in the **yyyy-MM-ddTHH:mm:ssZ** format. The time is displayed in UTC.
|
|
260
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request. Valid values:
|
|
247
261
|
:param pulumi.Input['ServerGroupHealthCheckConfigArgs'] health_check_config: Health check configurations. See `health_check_config` below.
|
|
248
|
-
:param pulumi.Input[str] protocol:
|
|
262
|
+
:param pulumi.Input[str] protocol: The backend protocol. Valid values:
|
|
249
263
|
|
|
250
|
-
-
|
|
264
|
+
- `GENEVE`(default)
|
|
251
265
|
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
252
|
-
:param pulumi.Input[str] scheduler:
|
|
253
|
-
|
|
254
|
-
- `
|
|
255
|
-
- `
|
|
266
|
+
:param pulumi.Input[str] scheduler: The scheduling algorithm. Valid values:
|
|
267
|
+
|
|
268
|
+
- `5TCH` (default): specifies consistent hashing that is based on the following factors: source IP address, destination IP address, source port, protocol, and destination port. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
269
|
+
- `3TCH`: specifies consistent hashing that is based on the following factors: source IP address, destination IP address, and protocol. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
270
|
+
- `2TCH`: specifies consistent hashing that is based on the following factors: source IP address and destination IP address. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
256
271
|
:param pulumi.Input[str] server_group_name: The server group name.
|
|
257
272
|
|
|
258
|
-
|
|
259
|
-
:param pulumi.Input[str] server_group_type: The server group
|
|
260
|
-
|
|
261
|
-
- `
|
|
262
|
-
|
|
263
|
-
:param pulumi.Input[
|
|
264
|
-
|
|
265
|
-
|
|
273
|
+
The name must be 2 to 128 characters in length, and can contain digits, periods (.), underscores (\\_), and hyphens (-). It must start with a letter.
|
|
274
|
+
:param pulumi.Input[str] server_group_type: The type of server group. Valid values:
|
|
275
|
+
|
|
276
|
+
- `Instance` (default): allows you to specify servers of the `Ecs`, `Eni`, or `Eci` type.
|
|
277
|
+
- `Ip`: allows you to add servers of by specifying IP addresses.
|
|
278
|
+
:param pulumi.Input[Sequence[pulumi.Input['ServerGroupServerArgs']]] servers: The backend servers that you want to remove.
|
|
279
|
+
|
|
280
|
+
> **NOTE:** You can remove at most 200 backend servers in each call.
|
|
281
|
+
See `servers` below.
|
|
282
|
+
:param pulumi.Input[str] status: Indicates the status of the backend server.
|
|
283
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag keys.
|
|
266
284
|
|
|
267
|
-
|
|
285
|
+
You can specify at most 20 tags in each call.
|
|
286
|
+
:param pulumi.Input[str] vpc_id: The VPC ID.
|
|
287
|
+
|
|
288
|
+
> **NOTE:** If `ServerGroupType` is set to `Instance`, only servers in the specified VPC can be added to the server group.
|
|
268
289
|
"""
|
|
269
290
|
if connection_drain_config is not None:
|
|
270
291
|
pulumi.set(__self__, "connection_drain_config", connection_drain_config)
|
|
@@ -309,7 +330,7 @@ class _ServerGroupState:
|
|
|
309
330
|
@pulumi.getter(name="createTime")
|
|
310
331
|
def create_time(self) -> Optional[pulumi.Input[str]]:
|
|
311
332
|
"""
|
|
312
|
-
The
|
|
333
|
+
The time when the resource was created. The time follows the ISO 8601 standard in the **yyyy-MM-ddTHH:mm:ssZ** format. The time is displayed in UTC.
|
|
313
334
|
"""
|
|
314
335
|
return pulumi.get(self, "create_time")
|
|
315
336
|
|
|
@@ -321,7 +342,7 @@ class _ServerGroupState:
|
|
|
321
342
|
@pulumi.getter(name="dryRun")
|
|
322
343
|
def dry_run(self) -> Optional[pulumi.Input[bool]]:
|
|
323
344
|
"""
|
|
324
|
-
Specifies whether to perform only a dry run, without performing the actual request.
|
|
345
|
+
Specifies whether to perform only a dry run, without performing the actual request. Valid values:
|
|
325
346
|
"""
|
|
326
347
|
return pulumi.get(self, "dry_run")
|
|
327
348
|
|
|
@@ -345,9 +366,9 @@ class _ServerGroupState:
|
|
|
345
366
|
@pulumi.getter
|
|
346
367
|
def protocol(self) -> Optional[pulumi.Input[str]]:
|
|
347
368
|
"""
|
|
348
|
-
|
|
369
|
+
The backend protocol. Valid values:
|
|
349
370
|
|
|
350
|
-
-
|
|
371
|
+
- `GENEVE`(default)
|
|
351
372
|
"""
|
|
352
373
|
return pulumi.get(self, "protocol")
|
|
353
374
|
|
|
@@ -371,10 +392,11 @@ class _ServerGroupState:
|
|
|
371
392
|
@pulumi.getter
|
|
372
393
|
def scheduler(self) -> Optional[pulumi.Input[str]]:
|
|
373
394
|
"""
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
- `
|
|
377
|
-
- `
|
|
395
|
+
The scheduling algorithm. Valid values:
|
|
396
|
+
|
|
397
|
+
- `5TCH` (default): specifies consistent hashing that is based on the following factors: source IP address, destination IP address, source port, protocol, and destination port. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
398
|
+
- `3TCH`: specifies consistent hashing that is based on the following factors: source IP address, destination IP address, and protocol. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
399
|
+
- `2TCH`: specifies consistent hashing that is based on the following factors: source IP address and destination IP address. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
378
400
|
"""
|
|
379
401
|
return pulumi.get(self, "scheduler")
|
|
380
402
|
|
|
@@ -388,7 +410,7 @@ class _ServerGroupState:
|
|
|
388
410
|
"""
|
|
389
411
|
The server group name.
|
|
390
412
|
|
|
391
|
-
|
|
413
|
+
The name must be 2 to 128 characters in length, and can contain digits, periods (.), underscores (\\_), and hyphens (-). It must start with a letter.
|
|
392
414
|
"""
|
|
393
415
|
return pulumi.get(self, "server_group_name")
|
|
394
416
|
|
|
@@ -400,9 +422,10 @@ class _ServerGroupState:
|
|
|
400
422
|
@pulumi.getter(name="serverGroupType")
|
|
401
423
|
def server_group_type(self) -> Optional[pulumi.Input[str]]:
|
|
402
424
|
"""
|
|
403
|
-
The server group
|
|
404
|
-
|
|
405
|
-
- `
|
|
425
|
+
The type of server group. Valid values:
|
|
426
|
+
|
|
427
|
+
- `Instance` (default): allows you to specify servers of the `Ecs`, `Eni`, or `Eci` type.
|
|
428
|
+
- `Ip`: allows you to add servers of by specifying IP addresses.
|
|
406
429
|
"""
|
|
407
430
|
return pulumi.get(self, "server_group_type")
|
|
408
431
|
|
|
@@ -414,7 +437,10 @@ class _ServerGroupState:
|
|
|
414
437
|
@pulumi.getter
|
|
415
438
|
def servers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ServerGroupServerArgs']]]]:
|
|
416
439
|
"""
|
|
417
|
-
|
|
440
|
+
The backend servers that you want to remove.
|
|
441
|
+
|
|
442
|
+
> **NOTE:** You can remove at most 200 backend servers in each call.
|
|
443
|
+
See `servers` below.
|
|
418
444
|
"""
|
|
419
445
|
return pulumi.get(self, "servers")
|
|
420
446
|
|
|
@@ -426,7 +452,7 @@ class _ServerGroupState:
|
|
|
426
452
|
@pulumi.getter
|
|
427
453
|
def status(self) -> Optional[pulumi.Input[str]]:
|
|
428
454
|
"""
|
|
429
|
-
|
|
455
|
+
Indicates the status of the backend server.
|
|
430
456
|
"""
|
|
431
457
|
return pulumi.get(self, "status")
|
|
432
458
|
|
|
@@ -438,7 +464,9 @@ class _ServerGroupState:
|
|
|
438
464
|
@pulumi.getter
|
|
439
465
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
440
466
|
"""
|
|
441
|
-
|
|
467
|
+
The tag keys.
|
|
468
|
+
|
|
469
|
+
You can specify at most 20 tags in each call.
|
|
442
470
|
"""
|
|
443
471
|
return pulumi.get(self, "tags")
|
|
444
472
|
|
|
@@ -450,9 +478,9 @@ class _ServerGroupState:
|
|
|
450
478
|
@pulumi.getter(name="vpcId")
|
|
451
479
|
def vpc_id(self) -> Optional[pulumi.Input[str]]:
|
|
452
480
|
"""
|
|
453
|
-
The VPC
|
|
481
|
+
The VPC ID.
|
|
454
482
|
|
|
455
|
-
> **NOTE:** If
|
|
483
|
+
> **NOTE:** If `ServerGroupType` is set to `Instance`, only servers in the specified VPC can be added to the server group.
|
|
456
484
|
"""
|
|
457
485
|
return pulumi.get(self, "vpc_id")
|
|
458
486
|
|
|
@@ -496,27 +524,34 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
496
524
|
:param str resource_name: The name of the resource.
|
|
497
525
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
498
526
|
:param pulumi.Input[Union['ServerGroupConnectionDrainConfigArgs', 'ServerGroupConnectionDrainConfigArgsDict']] connection_drain_config: Connected graceful interrupt configuration. See `connection_drain_config` below.
|
|
499
|
-
:param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request.
|
|
527
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request. Valid values:
|
|
500
528
|
:param pulumi.Input[Union['ServerGroupHealthCheckConfigArgs', 'ServerGroupHealthCheckConfigArgsDict']] health_check_config: Health check configurations. See `health_check_config` below.
|
|
501
|
-
:param pulumi.Input[str] protocol:
|
|
529
|
+
:param pulumi.Input[str] protocol: The backend protocol. Valid values:
|
|
502
530
|
|
|
503
|
-
-
|
|
531
|
+
- `GENEVE`(default)
|
|
504
532
|
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
505
|
-
:param pulumi.Input[str] scheduler:
|
|
506
|
-
|
|
507
|
-
- `
|
|
508
|
-
- `
|
|
533
|
+
:param pulumi.Input[str] scheduler: The scheduling algorithm. Valid values:
|
|
534
|
+
|
|
535
|
+
- `5TCH` (default): specifies consistent hashing that is based on the following factors: source IP address, destination IP address, source port, protocol, and destination port. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
536
|
+
- `3TCH`: specifies consistent hashing that is based on the following factors: source IP address, destination IP address, and protocol. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
537
|
+
- `2TCH`: specifies consistent hashing that is based on the following factors: source IP address and destination IP address. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
509
538
|
:param pulumi.Input[str] server_group_name: The server group name.
|
|
510
539
|
|
|
511
|
-
|
|
512
|
-
:param pulumi.Input[str] server_group_type: The server group
|
|
513
|
-
|
|
514
|
-
- `
|
|
515
|
-
|
|
516
|
-
:param pulumi.Input[
|
|
517
|
-
:param pulumi.Input[str] vpc_id: The VPC instance ID.
|
|
540
|
+
The name must be 2 to 128 characters in length, and can contain digits, periods (.), underscores (\\_), and hyphens (-). It must start with a letter.
|
|
541
|
+
:param pulumi.Input[str] server_group_type: The type of server group. Valid values:
|
|
542
|
+
|
|
543
|
+
- `Instance` (default): allows you to specify servers of the `Ecs`, `Eni`, or `Eci` type.
|
|
544
|
+
- `Ip`: allows you to add servers of by specifying IP addresses.
|
|
545
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ServerGroupServerArgs', 'ServerGroupServerArgsDict']]]] servers: The backend servers that you want to remove.
|
|
518
546
|
|
|
519
|
-
> **NOTE:**
|
|
547
|
+
> **NOTE:** You can remove at most 200 backend servers in each call.
|
|
548
|
+
See `servers` below.
|
|
549
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag keys.
|
|
550
|
+
|
|
551
|
+
You can specify at most 20 tags in each call.
|
|
552
|
+
:param pulumi.Input[str] vpc_id: The VPC ID.
|
|
553
|
+
|
|
554
|
+
> **NOTE:** If `ServerGroupType` is set to `Instance`, only servers in the specified VPC can be added to the server group.
|
|
520
555
|
"""
|
|
521
556
|
...
|
|
522
557
|
@overload
|
|
@@ -620,29 +655,36 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
620
655
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
621
656
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
622
657
|
:param pulumi.Input[Union['ServerGroupConnectionDrainConfigArgs', 'ServerGroupConnectionDrainConfigArgsDict']] connection_drain_config: Connected graceful interrupt configuration. See `connection_drain_config` below.
|
|
623
|
-
:param pulumi.Input[str] create_time: The
|
|
624
|
-
:param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request.
|
|
658
|
+
:param pulumi.Input[str] create_time: The time when the resource was created. The time follows the ISO 8601 standard in the **yyyy-MM-ddTHH:mm:ssZ** format. The time is displayed in UTC.
|
|
659
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request. Valid values:
|
|
625
660
|
:param pulumi.Input[Union['ServerGroupHealthCheckConfigArgs', 'ServerGroupHealthCheckConfigArgsDict']] health_check_config: Health check configurations. See `health_check_config` below.
|
|
626
|
-
:param pulumi.Input[str] protocol:
|
|
661
|
+
:param pulumi.Input[str] protocol: The backend protocol. Valid values:
|
|
627
662
|
|
|
628
|
-
-
|
|
663
|
+
- `GENEVE`(default)
|
|
629
664
|
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
630
|
-
:param pulumi.Input[str] scheduler:
|
|
631
|
-
|
|
632
|
-
- `
|
|
633
|
-
- `
|
|
665
|
+
:param pulumi.Input[str] scheduler: The scheduling algorithm. Valid values:
|
|
666
|
+
|
|
667
|
+
- `5TCH` (default): specifies consistent hashing that is based on the following factors: source IP address, destination IP address, source port, protocol, and destination port. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
668
|
+
- `3TCH`: specifies consistent hashing that is based on the following factors: source IP address, destination IP address, and protocol. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
669
|
+
- `2TCH`: specifies consistent hashing that is based on the following factors: source IP address and destination IP address. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
634
670
|
:param pulumi.Input[str] server_group_name: The server group name.
|
|
635
671
|
|
|
636
|
-
|
|
637
|
-
:param pulumi.Input[str] server_group_type: The server group
|
|
638
|
-
- **Instance (default)**: The instance type. You can add Ecs, Eni, and Eci instances to the server group.
|
|
639
|
-
- `Ip`: The Ip address type. You can directly add backend servers of the Ip address type to the server group.
|
|
640
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['ServerGroupServerArgs', 'ServerGroupServerArgsDict']]]] servers: List of servers. See `servers` below.
|
|
641
|
-
:param pulumi.Input[str] status: Server group status. Value:
|
|
642
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: List of resource tags.
|
|
643
|
-
:param pulumi.Input[str] vpc_id: The VPC instance ID.
|
|
672
|
+
The name must be 2 to 128 characters in length, and can contain digits, periods (.), underscores (\\_), and hyphens (-). It must start with a letter.
|
|
673
|
+
:param pulumi.Input[str] server_group_type: The type of server group. Valid values:
|
|
644
674
|
|
|
645
|
-
|
|
675
|
+
- `Instance` (default): allows you to specify servers of the `Ecs`, `Eni`, or `Eci` type.
|
|
676
|
+
- `Ip`: allows you to add servers of by specifying IP addresses.
|
|
677
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ServerGroupServerArgs', 'ServerGroupServerArgsDict']]]] servers: The backend servers that you want to remove.
|
|
678
|
+
|
|
679
|
+
> **NOTE:** You can remove at most 200 backend servers in each call.
|
|
680
|
+
See `servers` below.
|
|
681
|
+
:param pulumi.Input[str] status: Indicates the status of the backend server.
|
|
682
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag keys.
|
|
683
|
+
|
|
684
|
+
You can specify at most 20 tags in each call.
|
|
685
|
+
:param pulumi.Input[str] vpc_id: The VPC ID.
|
|
686
|
+
|
|
687
|
+
> **NOTE:** If `ServerGroupType` is set to `Instance`, only servers in the specified VPC can be added to the server group.
|
|
646
688
|
"""
|
|
647
689
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
648
690
|
|
|
@@ -675,7 +717,7 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
675
717
|
@pulumi.getter(name="createTime")
|
|
676
718
|
def create_time(self) -> pulumi.Output[str]:
|
|
677
719
|
"""
|
|
678
|
-
The
|
|
720
|
+
The time when the resource was created. The time follows the ISO 8601 standard in the **yyyy-MM-ddTHH:mm:ssZ** format. The time is displayed in UTC.
|
|
679
721
|
"""
|
|
680
722
|
return pulumi.get(self, "create_time")
|
|
681
723
|
|
|
@@ -683,7 +725,7 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
683
725
|
@pulumi.getter(name="dryRun")
|
|
684
726
|
def dry_run(self) -> pulumi.Output[Optional[bool]]:
|
|
685
727
|
"""
|
|
686
|
-
Specifies whether to perform only a dry run, without performing the actual request.
|
|
728
|
+
Specifies whether to perform only a dry run, without performing the actual request. Valid values:
|
|
687
729
|
"""
|
|
688
730
|
return pulumi.get(self, "dry_run")
|
|
689
731
|
|
|
@@ -699,9 +741,9 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
699
741
|
@pulumi.getter
|
|
700
742
|
def protocol(self) -> pulumi.Output[str]:
|
|
701
743
|
"""
|
|
702
|
-
|
|
744
|
+
The backend protocol. Valid values:
|
|
703
745
|
|
|
704
|
-
-
|
|
746
|
+
- `GENEVE`(default)
|
|
705
747
|
"""
|
|
706
748
|
return pulumi.get(self, "protocol")
|
|
707
749
|
|
|
@@ -717,10 +759,11 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
717
759
|
@pulumi.getter
|
|
718
760
|
def scheduler(self) -> pulumi.Output[str]:
|
|
719
761
|
"""
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
- `
|
|
723
|
-
- `
|
|
762
|
+
The scheduling algorithm. Valid values:
|
|
763
|
+
|
|
764
|
+
- `5TCH` (default): specifies consistent hashing that is based on the following factors: source IP address, destination IP address, source port, protocol, and destination port. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
765
|
+
- `3TCH`: specifies consistent hashing that is based on the following factors: source IP address, destination IP address, and protocol. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
766
|
+
- `2TCH`: specifies consistent hashing that is based on the following factors: source IP address and destination IP address. Requests that contain the same information based on the preceding factors are forwarded to the same backend server.
|
|
724
767
|
"""
|
|
725
768
|
return pulumi.get(self, "scheduler")
|
|
726
769
|
|
|
@@ -730,7 +773,7 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
730
773
|
"""
|
|
731
774
|
The server group name.
|
|
732
775
|
|
|
733
|
-
|
|
776
|
+
The name must be 2 to 128 characters in length, and can contain digits, periods (.), underscores (\\_), and hyphens (-). It must start with a letter.
|
|
734
777
|
"""
|
|
735
778
|
return pulumi.get(self, "server_group_name")
|
|
736
779
|
|
|
@@ -738,9 +781,10 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
738
781
|
@pulumi.getter(name="serverGroupType")
|
|
739
782
|
def server_group_type(self) -> pulumi.Output[str]:
|
|
740
783
|
"""
|
|
741
|
-
The server group
|
|
742
|
-
|
|
743
|
-
- `
|
|
784
|
+
The type of server group. Valid values:
|
|
785
|
+
|
|
786
|
+
- `Instance` (default): allows you to specify servers of the `Ecs`, `Eni`, or `Eci` type.
|
|
787
|
+
- `Ip`: allows you to add servers of by specifying IP addresses.
|
|
744
788
|
"""
|
|
745
789
|
return pulumi.get(self, "server_group_type")
|
|
746
790
|
|
|
@@ -748,7 +792,10 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
748
792
|
@pulumi.getter
|
|
749
793
|
def servers(self) -> pulumi.Output[Optional[Sequence['outputs.ServerGroupServer']]]:
|
|
750
794
|
"""
|
|
751
|
-
|
|
795
|
+
The backend servers that you want to remove.
|
|
796
|
+
|
|
797
|
+
> **NOTE:** You can remove at most 200 backend servers in each call.
|
|
798
|
+
See `servers` below.
|
|
752
799
|
"""
|
|
753
800
|
return pulumi.get(self, "servers")
|
|
754
801
|
|
|
@@ -756,7 +803,7 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
756
803
|
@pulumi.getter
|
|
757
804
|
def status(self) -> pulumi.Output[str]:
|
|
758
805
|
"""
|
|
759
|
-
|
|
806
|
+
Indicates the status of the backend server.
|
|
760
807
|
"""
|
|
761
808
|
return pulumi.get(self, "status")
|
|
762
809
|
|
|
@@ -764,7 +811,9 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
764
811
|
@pulumi.getter
|
|
765
812
|
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
766
813
|
"""
|
|
767
|
-
|
|
814
|
+
The tag keys.
|
|
815
|
+
|
|
816
|
+
You can specify at most 20 tags in each call.
|
|
768
817
|
"""
|
|
769
818
|
return pulumi.get(self, "tags")
|
|
770
819
|
|
|
@@ -772,9 +821,9 @@ class ServerGroup(pulumi.CustomResource):
|
|
|
772
821
|
@pulumi.getter(name="vpcId")
|
|
773
822
|
def vpc_id(self) -> pulumi.Output[str]:
|
|
774
823
|
"""
|
|
775
|
-
The VPC
|
|
824
|
+
The VPC ID.
|
|
776
825
|
|
|
777
|
-
> **NOTE:** If
|
|
826
|
+
> **NOTE:** If `ServerGroupType` is set to `Instance`, only servers in the specified VPC can be added to the server group.
|
|
778
827
|
"""
|
|
779
828
|
return pulumi.get(self, "vpc_id")
|
|
780
829
|
|
|
@@ -32,7 +32,7 @@ class AuditLogConfigArgs:
|
|
|
32
32
|
Note: When the Instance for the Cluster Architecture Or Read/Write Split Architecture, at the Same Time to Open Or Close the Data Node and the Proxy Node of the Audit Log Doesn't Support Separate Open.
|
|
33
33
|
:param pulumi.Input[int] retention: Audit Log Retention Period Value: 1~365.
|
|
34
34
|
|
|
35
|
-
> **NOTE
|
|
35
|
+
> **NOTE:** When the Instance dbaudit Value Is Set to True, This Parameter Entry into Force. The Parameter Setting of the Current Region of All a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance for a Data Entry into Force.
|
|
36
36
|
"""
|
|
37
37
|
pulumi.set(__self__, "instance_id", instance_id)
|
|
38
38
|
if db_audit is not None:
|
|
@@ -74,7 +74,7 @@ class AuditLogConfigArgs:
|
|
|
74
74
|
"""
|
|
75
75
|
Audit Log Retention Period Value: 1~365.
|
|
76
76
|
|
|
77
|
-
> **NOTE
|
|
77
|
+
> **NOTE:** When the Instance dbaudit Value Is Set to True, This Parameter Entry into Force. The Parameter Setting of the Current Region of All a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance for a Data Entry into Force.
|
|
78
78
|
"""
|
|
79
79
|
return pulumi.get(self, "retention")
|
|
80
80
|
|
|
@@ -102,7 +102,7 @@ class _AuditLogConfigState:
|
|
|
102
102
|
:param pulumi.Input[str] instance_id: Instance ID, Call the Describeinstances Get.
|
|
103
103
|
:param pulumi.Input[int] retention: Audit Log Retention Period Value: 1~365.
|
|
104
104
|
|
|
105
|
-
> **NOTE
|
|
105
|
+
> **NOTE:** When the Instance dbaudit Value Is Set to True, This Parameter Entry into Force. The Parameter Setting of the Current Region of All a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance for a Data Entry into Force.
|
|
106
106
|
:param pulumi.Input[str] status: The status of the resource.
|
|
107
107
|
"""
|
|
108
108
|
if create_time is not None:
|
|
@@ -162,7 +162,7 @@ class _AuditLogConfigState:
|
|
|
162
162
|
"""
|
|
163
163
|
Audit Log Retention Period Value: 1~365.
|
|
164
164
|
|
|
165
|
-
> **NOTE
|
|
165
|
+
> **NOTE:** When the Instance dbaudit Value Is Set to True, This Parameter Entry into Force. The Parameter Setting of the Current Region of All a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance for a Data Entry into Force.
|
|
166
166
|
"""
|
|
167
167
|
return pulumi.get(self, "retention")
|
|
168
168
|
|
|
@@ -260,7 +260,7 @@ class AuditLogConfig(pulumi.CustomResource):
|
|
|
260
260
|
:param pulumi.Input[str] instance_id: Instance ID, Call the Describeinstances Get.
|
|
261
261
|
:param pulumi.Input[int] retention: Audit Log Retention Period Value: 1~365.
|
|
262
262
|
|
|
263
|
-
> **NOTE
|
|
263
|
+
> **NOTE:** When the Instance dbaudit Value Is Set to True, This Parameter Entry into Force. The Parameter Setting of the Current Region of All a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance for a Data Entry into Force.
|
|
264
264
|
"""
|
|
265
265
|
...
|
|
266
266
|
@overload
|
|
@@ -391,7 +391,7 @@ class AuditLogConfig(pulumi.CustomResource):
|
|
|
391
391
|
:param pulumi.Input[str] instance_id: Instance ID, Call the Describeinstances Get.
|
|
392
392
|
:param pulumi.Input[int] retention: Audit Log Retention Period Value: 1~365.
|
|
393
393
|
|
|
394
|
-
> **NOTE
|
|
394
|
+
> **NOTE:** When the Instance dbaudit Value Is Set to True, This Parameter Entry into Force. The Parameter Setting of the Current Region of All a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance for a Data Entry into Force.
|
|
395
395
|
:param pulumi.Input[str] status: The status of the resource.
|
|
396
396
|
"""
|
|
397
397
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -439,7 +439,7 @@ class AuditLogConfig(pulumi.CustomResource):
|
|
|
439
439
|
"""
|
|
440
440
|
Audit Log Retention Period Value: 1~365.
|
|
441
441
|
|
|
442
|
-
> **NOTE
|
|
442
|
+
> **NOTE:** When the Instance dbaudit Value Is Set to True, This Parameter Entry into Force. The Parameter Setting of the Current Region of All a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance for a Data Entry into Force.
|
|
443
443
|
"""
|
|
444
444
|
return pulumi.get(self, "retention")
|
|
445
445
|
|