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