pulumi-alicloud 3.68.0__py3-none-any.whl → 3.68.0a1732598392__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.0a1732598392.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.68.0.dist-info → pulumi_alicloud-3.68.0a1732598392.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.0a1732598392.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.68.0.dist-info → pulumi_alicloud-3.68.0a1732598392.dist-info}/top_level.txt +0 -0
pulumi_alicloud/gwlb/listener.py
CHANGED
|
@@ -26,13 +26,13 @@ class ListenerArgs:
|
|
|
26
26
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
27
27
|
"""
|
|
28
28
|
The set of arguments for constructing a Listener resource.
|
|
29
|
-
:param pulumi.Input[str] load_balancer_id: The
|
|
30
|
-
:param pulumi.Input[str] server_group_id: The server group
|
|
31
|
-
:param pulumi.Input[bool] dry_run: Specifies whether to perform a dry run, without performing the actual request.
|
|
32
|
-
:param pulumi.Input[str] listener_description: The
|
|
29
|
+
:param pulumi.Input[str] load_balancer_id: The ID of the gateway load balancer instance.
|
|
30
|
+
:param pulumi.Input[str] server_group_id: The ID of the server group.
|
|
31
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request.
|
|
32
|
+
:param pulumi.Input[str] listener_description: The custom listener description.
|
|
33
33
|
|
|
34
|
-
The
|
|
35
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The
|
|
34
|
+
The length is limited to 2 to 256 characters. It supports Chinese and English letters and can contain numbers, half-width commas (,), half-width periods (.), half-width semicolons (;), forward slashes (/), at(@), underscores (_), and dashes (-).
|
|
35
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The list of tags.
|
|
36
36
|
"""
|
|
37
37
|
pulumi.set(__self__, "load_balancer_id", load_balancer_id)
|
|
38
38
|
pulumi.set(__self__, "server_group_id", server_group_id)
|
|
@@ -47,7 +47,7 @@ class ListenerArgs:
|
|
|
47
47
|
@pulumi.getter(name="loadBalancerId")
|
|
48
48
|
def load_balancer_id(self) -> pulumi.Input[str]:
|
|
49
49
|
"""
|
|
50
|
-
The
|
|
50
|
+
The ID of the gateway load balancer instance.
|
|
51
51
|
"""
|
|
52
52
|
return pulumi.get(self, "load_balancer_id")
|
|
53
53
|
|
|
@@ -59,7 +59,7 @@ class ListenerArgs:
|
|
|
59
59
|
@pulumi.getter(name="serverGroupId")
|
|
60
60
|
def server_group_id(self) -> pulumi.Input[str]:
|
|
61
61
|
"""
|
|
62
|
-
The server group
|
|
62
|
+
The ID of the server group.
|
|
63
63
|
"""
|
|
64
64
|
return pulumi.get(self, "server_group_id")
|
|
65
65
|
|
|
@@ -71,7 +71,7 @@ class ListenerArgs:
|
|
|
71
71
|
@pulumi.getter(name="dryRun")
|
|
72
72
|
def dry_run(self) -> Optional[pulumi.Input[bool]]:
|
|
73
73
|
"""
|
|
74
|
-
Specifies whether to perform a dry run, without performing the actual request.
|
|
74
|
+
Specifies whether to perform only a dry run, without performing the actual request.
|
|
75
75
|
"""
|
|
76
76
|
return pulumi.get(self, "dry_run")
|
|
77
77
|
|
|
@@ -83,9 +83,9 @@ class ListenerArgs:
|
|
|
83
83
|
@pulumi.getter(name="listenerDescription")
|
|
84
84
|
def listener_description(self) -> Optional[pulumi.Input[str]]:
|
|
85
85
|
"""
|
|
86
|
-
The
|
|
86
|
+
The custom listener description.
|
|
87
87
|
|
|
88
|
-
The
|
|
88
|
+
The length is limited to 2 to 256 characters. It supports Chinese and English letters and can contain numbers, half-width commas (,), half-width periods (.), half-width semicolons (;), forward slashes (/), at(@), underscores (_), and dashes (-).
|
|
89
89
|
"""
|
|
90
90
|
return pulumi.get(self, "listener_description")
|
|
91
91
|
|
|
@@ -97,7 +97,7 @@ class ListenerArgs:
|
|
|
97
97
|
@pulumi.getter
|
|
98
98
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
99
99
|
"""
|
|
100
|
-
The
|
|
100
|
+
The list of tags.
|
|
101
101
|
"""
|
|
102
102
|
return pulumi.get(self, "tags")
|
|
103
103
|
|
|
@@ -118,15 +118,15 @@ class _ListenerState:
|
|
|
118
118
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
119
119
|
"""
|
|
120
120
|
Input properties used for looking up and filtering Listener resources.
|
|
121
|
-
:param pulumi.Input[bool] dry_run: Specifies whether to perform a dry run, without performing the actual request.
|
|
122
|
-
:param pulumi.Input[str] listener_description: The
|
|
121
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request.
|
|
122
|
+
:param pulumi.Input[str] listener_description: The custom listener description.
|
|
123
123
|
|
|
124
|
-
The
|
|
125
|
-
:param pulumi.Input[str] load_balancer_id: The
|
|
126
|
-
:param pulumi.Input[str] region_id: The region
|
|
127
|
-
:param pulumi.Input[str] server_group_id: The server group
|
|
128
|
-
:param pulumi.Input[str] status: The status of the listener.
|
|
129
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The
|
|
124
|
+
The length is limited to 2 to 256 characters. It supports Chinese and English letters and can contain numbers, half-width commas (,), half-width periods (.), half-width semicolons (;), forward slashes (/), at(@), underscores (_), and dashes (-).
|
|
125
|
+
:param pulumi.Input[str] load_balancer_id: The ID of the gateway load balancer instance.
|
|
126
|
+
:param pulumi.Input[str] region_id: The ID of the region.
|
|
127
|
+
:param pulumi.Input[str] server_group_id: The ID of the server group.
|
|
128
|
+
:param pulumi.Input[str] status: The current status of the listener. Value:
|
|
129
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The list of tags.
|
|
130
130
|
"""
|
|
131
131
|
if dry_run is not None:
|
|
132
132
|
pulumi.set(__self__, "dry_run", dry_run)
|
|
@@ -147,7 +147,7 @@ class _ListenerState:
|
|
|
147
147
|
@pulumi.getter(name="dryRun")
|
|
148
148
|
def dry_run(self) -> Optional[pulumi.Input[bool]]:
|
|
149
149
|
"""
|
|
150
|
-
Specifies whether to perform a dry run, without performing the actual request.
|
|
150
|
+
Specifies whether to perform only a dry run, without performing the actual request.
|
|
151
151
|
"""
|
|
152
152
|
return pulumi.get(self, "dry_run")
|
|
153
153
|
|
|
@@ -159,9 +159,9 @@ class _ListenerState:
|
|
|
159
159
|
@pulumi.getter(name="listenerDescription")
|
|
160
160
|
def listener_description(self) -> Optional[pulumi.Input[str]]:
|
|
161
161
|
"""
|
|
162
|
-
The
|
|
162
|
+
The custom listener description.
|
|
163
163
|
|
|
164
|
-
The
|
|
164
|
+
The length is limited to 2 to 256 characters. It supports Chinese and English letters and can contain numbers, half-width commas (,), half-width periods (.), half-width semicolons (;), forward slashes (/), at(@), underscores (_), and dashes (-).
|
|
165
165
|
"""
|
|
166
166
|
return pulumi.get(self, "listener_description")
|
|
167
167
|
|
|
@@ -173,7 +173,7 @@ class _ListenerState:
|
|
|
173
173
|
@pulumi.getter(name="loadBalancerId")
|
|
174
174
|
def load_balancer_id(self) -> Optional[pulumi.Input[str]]:
|
|
175
175
|
"""
|
|
176
|
-
The
|
|
176
|
+
The ID of the gateway load balancer instance.
|
|
177
177
|
"""
|
|
178
178
|
return pulumi.get(self, "load_balancer_id")
|
|
179
179
|
|
|
@@ -185,7 +185,7 @@ class _ListenerState:
|
|
|
185
185
|
@pulumi.getter(name="regionId")
|
|
186
186
|
def region_id(self) -> Optional[pulumi.Input[str]]:
|
|
187
187
|
"""
|
|
188
|
-
The region
|
|
188
|
+
The ID of the region.
|
|
189
189
|
"""
|
|
190
190
|
return pulumi.get(self, "region_id")
|
|
191
191
|
|
|
@@ -197,7 +197,7 @@ class _ListenerState:
|
|
|
197
197
|
@pulumi.getter(name="serverGroupId")
|
|
198
198
|
def server_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
199
199
|
"""
|
|
200
|
-
The server group
|
|
200
|
+
The ID of the server group.
|
|
201
201
|
"""
|
|
202
202
|
return pulumi.get(self, "server_group_id")
|
|
203
203
|
|
|
@@ -209,7 +209,7 @@ class _ListenerState:
|
|
|
209
209
|
@pulumi.getter
|
|
210
210
|
def status(self) -> Optional[pulumi.Input[str]]:
|
|
211
211
|
"""
|
|
212
|
-
The status of the listener.
|
|
212
|
+
The current status of the listener. Value:
|
|
213
213
|
"""
|
|
214
214
|
return pulumi.get(self, "status")
|
|
215
215
|
|
|
@@ -221,7 +221,7 @@ class _ListenerState:
|
|
|
221
221
|
@pulumi.getter
|
|
222
222
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
223
223
|
"""
|
|
224
|
-
The
|
|
224
|
+
The list of tags.
|
|
225
225
|
"""
|
|
226
226
|
return pulumi.get(self, "tags")
|
|
227
227
|
|
|
@@ -258,13 +258,13 @@ class Listener(pulumi.CustomResource):
|
|
|
258
258
|
|
|
259
259
|
:param str resource_name: The name of the resource.
|
|
260
260
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
261
|
-
:param pulumi.Input[bool] dry_run: Specifies whether to perform a dry run, without performing the actual request.
|
|
262
|
-
:param pulumi.Input[str] listener_description: The
|
|
261
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request.
|
|
262
|
+
:param pulumi.Input[str] listener_description: The custom listener description.
|
|
263
263
|
|
|
264
|
-
The
|
|
265
|
-
:param pulumi.Input[str] load_balancer_id: The
|
|
266
|
-
:param pulumi.Input[str] server_group_id: The server group
|
|
267
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The
|
|
264
|
+
The length is limited to 2 to 256 characters. It supports Chinese and English letters and can contain numbers, half-width commas (,), half-width periods (.), half-width semicolons (;), forward slashes (/), at(@), underscores (_), and dashes (-).
|
|
265
|
+
:param pulumi.Input[str] load_balancer_id: The ID of the gateway load balancer instance.
|
|
266
|
+
:param pulumi.Input[str] server_group_id: The ID of the server group.
|
|
267
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The list of tags.
|
|
268
268
|
"""
|
|
269
269
|
...
|
|
270
270
|
@overload
|
|
@@ -351,15 +351,15 @@ class Listener(pulumi.CustomResource):
|
|
|
351
351
|
:param str resource_name: The unique name of the resulting resource.
|
|
352
352
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
353
353
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
354
|
-
:param pulumi.Input[bool] dry_run: Specifies whether to perform a dry run, without performing the actual request.
|
|
355
|
-
:param pulumi.Input[str] listener_description: The
|
|
354
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request.
|
|
355
|
+
:param pulumi.Input[str] listener_description: The custom listener description.
|
|
356
356
|
|
|
357
|
-
The
|
|
358
|
-
:param pulumi.Input[str] load_balancer_id: The
|
|
359
|
-
:param pulumi.Input[str] region_id: The region
|
|
360
|
-
:param pulumi.Input[str] server_group_id: The server group
|
|
361
|
-
:param pulumi.Input[str] status: The status of the listener.
|
|
362
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The
|
|
357
|
+
The length is limited to 2 to 256 characters. It supports Chinese and English letters and can contain numbers, half-width commas (,), half-width periods (.), half-width semicolons (;), forward slashes (/), at(@), underscores (_), and dashes (-).
|
|
358
|
+
:param pulumi.Input[str] load_balancer_id: The ID of the gateway load balancer instance.
|
|
359
|
+
:param pulumi.Input[str] region_id: The ID of the region.
|
|
360
|
+
:param pulumi.Input[str] server_group_id: The ID of the server group.
|
|
361
|
+
:param pulumi.Input[str] status: The current status of the listener. Value:
|
|
362
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The list of tags.
|
|
363
363
|
"""
|
|
364
364
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
365
365
|
|
|
@@ -378,7 +378,7 @@ class Listener(pulumi.CustomResource):
|
|
|
378
378
|
@pulumi.getter(name="dryRun")
|
|
379
379
|
def dry_run(self) -> pulumi.Output[Optional[bool]]:
|
|
380
380
|
"""
|
|
381
|
-
Specifies whether to perform a dry run, without performing the actual request.
|
|
381
|
+
Specifies whether to perform only a dry run, without performing the actual request.
|
|
382
382
|
"""
|
|
383
383
|
return pulumi.get(self, "dry_run")
|
|
384
384
|
|
|
@@ -386,9 +386,9 @@ class Listener(pulumi.CustomResource):
|
|
|
386
386
|
@pulumi.getter(name="listenerDescription")
|
|
387
387
|
def listener_description(self) -> pulumi.Output[Optional[str]]:
|
|
388
388
|
"""
|
|
389
|
-
The
|
|
389
|
+
The custom listener description.
|
|
390
390
|
|
|
391
|
-
The
|
|
391
|
+
The length is limited to 2 to 256 characters. It supports Chinese and English letters and can contain numbers, half-width commas (,), half-width periods (.), half-width semicolons (;), forward slashes (/), at(@), underscores (_), and dashes (-).
|
|
392
392
|
"""
|
|
393
393
|
return pulumi.get(self, "listener_description")
|
|
394
394
|
|
|
@@ -396,7 +396,7 @@ class Listener(pulumi.CustomResource):
|
|
|
396
396
|
@pulumi.getter(name="loadBalancerId")
|
|
397
397
|
def load_balancer_id(self) -> pulumi.Output[str]:
|
|
398
398
|
"""
|
|
399
|
-
The
|
|
399
|
+
The ID of the gateway load balancer instance.
|
|
400
400
|
"""
|
|
401
401
|
return pulumi.get(self, "load_balancer_id")
|
|
402
402
|
|
|
@@ -404,7 +404,7 @@ class Listener(pulumi.CustomResource):
|
|
|
404
404
|
@pulumi.getter(name="regionId")
|
|
405
405
|
def region_id(self) -> pulumi.Output[str]:
|
|
406
406
|
"""
|
|
407
|
-
The region
|
|
407
|
+
The ID of the region.
|
|
408
408
|
"""
|
|
409
409
|
return pulumi.get(self, "region_id")
|
|
410
410
|
|
|
@@ -412,7 +412,7 @@ class Listener(pulumi.CustomResource):
|
|
|
412
412
|
@pulumi.getter(name="serverGroupId")
|
|
413
413
|
def server_group_id(self) -> pulumi.Output[str]:
|
|
414
414
|
"""
|
|
415
|
-
The server group
|
|
415
|
+
The ID of the server group.
|
|
416
416
|
"""
|
|
417
417
|
return pulumi.get(self, "server_group_id")
|
|
418
418
|
|
|
@@ -420,7 +420,7 @@ class Listener(pulumi.CustomResource):
|
|
|
420
420
|
@pulumi.getter
|
|
421
421
|
def status(self) -> pulumi.Output[str]:
|
|
422
422
|
"""
|
|
423
|
-
The status of the listener.
|
|
423
|
+
The current status of the listener. Value:
|
|
424
424
|
"""
|
|
425
425
|
return pulumi.get(self, "status")
|
|
426
426
|
|
|
@@ -428,7 +428,7 @@ class Listener(pulumi.CustomResource):
|
|
|
428
428
|
@pulumi.getter
|
|
429
429
|
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
430
430
|
"""
|
|
431
|
-
The
|
|
431
|
+
The list of tags.
|
|
432
432
|
"""
|
|
433
433
|
return pulumi.get(self, "tags")
|
|
434
434
|
|
|
@@ -30,17 +30,16 @@ class LoadBalancerArgs:
|
|
|
30
30
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
31
31
|
"""
|
|
32
32
|
The set of arguments for constructing a LoadBalancer resource.
|
|
33
|
-
:param pulumi.Input[str] vpc_id: The
|
|
34
|
-
:param pulumi.Input[Sequence[pulumi.Input['LoadBalancerZoneMappingArgs']]] zone_mappings: The
|
|
35
|
-
:param pulumi.Input[str] address_ip_version: The
|
|
33
|
+
:param pulumi.Input[str] vpc_id: The ID of the VPC which the Gateway Load Balancer instance belongs.
|
|
34
|
+
:param pulumi.Input[Sequence[pulumi.Input['LoadBalancerZoneMappingArgs']]] zone_mappings: The List of zones and vSwitches mapped. You must add at least one zone and a maximum of 20 zones. If the current region supports two or more zones, we recommend that you add two or more zones. See `zone_mappings` below.
|
|
35
|
+
:param pulumi.Input[str] address_ip_version: The protocol version. Value:
|
|
36
|
+
- Ipv4: Ipv4 type
|
|
37
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request.
|
|
38
|
+
:param pulumi.Input[str] load_balancer_name: The name of the Gateway Load Balancer instance.
|
|
36
39
|
|
|
37
|
-
-
|
|
38
|
-
:param pulumi.Input[
|
|
39
|
-
:param pulumi.Input[str]
|
|
40
|
-
|
|
41
|
-
The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (\\_), and hyphens (-). The name must start with a letter.
|
|
42
|
-
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
43
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag keys. You can specify at most 20 tags in each call.
|
|
40
|
+
It must be 2 to 128 English or Chinese characters in length. It must start with a letter or a Chinese character and can contain digits, half-width periods (.), underscores (_), and dashes (-).
|
|
41
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group
|
|
42
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The list of tags.
|
|
44
43
|
"""
|
|
45
44
|
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
46
45
|
pulumi.set(__self__, "zone_mappings", zone_mappings)
|
|
@@ -59,7 +58,7 @@ class LoadBalancerArgs:
|
|
|
59
58
|
@pulumi.getter(name="vpcId")
|
|
60
59
|
def vpc_id(self) -> pulumi.Input[str]:
|
|
61
60
|
"""
|
|
62
|
-
The
|
|
61
|
+
The ID of the VPC which the Gateway Load Balancer instance belongs.
|
|
63
62
|
"""
|
|
64
63
|
return pulumi.get(self, "vpc_id")
|
|
65
64
|
|
|
@@ -71,7 +70,7 @@ class LoadBalancerArgs:
|
|
|
71
70
|
@pulumi.getter(name="zoneMappings")
|
|
72
71
|
def zone_mappings(self) -> pulumi.Input[Sequence[pulumi.Input['LoadBalancerZoneMappingArgs']]]:
|
|
73
72
|
"""
|
|
74
|
-
The
|
|
73
|
+
The List of zones and vSwitches mapped. You must add at least one zone and a maximum of 20 zones. If the current region supports two or more zones, we recommend that you add two or more zones. See `zone_mappings` below.
|
|
75
74
|
"""
|
|
76
75
|
return pulumi.get(self, "zone_mappings")
|
|
77
76
|
|
|
@@ -83,9 +82,8 @@ class LoadBalancerArgs:
|
|
|
83
82
|
@pulumi.getter(name="addressIpVersion")
|
|
84
83
|
def address_ip_version(self) -> Optional[pulumi.Input[str]]:
|
|
85
84
|
"""
|
|
86
|
-
The
|
|
87
|
-
|
|
88
|
-
- `Ipv4`: IPv4 (default)
|
|
85
|
+
The protocol version. Value:
|
|
86
|
+
- Ipv4: Ipv4 type
|
|
89
87
|
"""
|
|
90
88
|
return pulumi.get(self, "address_ip_version")
|
|
91
89
|
|
|
@@ -97,7 +95,7 @@ class LoadBalancerArgs:
|
|
|
97
95
|
@pulumi.getter(name="dryRun")
|
|
98
96
|
def dry_run(self) -> Optional[pulumi.Input[bool]]:
|
|
99
97
|
"""
|
|
100
|
-
Specifies whether to perform a dry run, without performing the actual request.
|
|
98
|
+
Specifies whether to perform only a dry run, without performing the actual request.
|
|
101
99
|
"""
|
|
102
100
|
return pulumi.get(self, "dry_run")
|
|
103
101
|
|
|
@@ -109,9 +107,9 @@ class LoadBalancerArgs:
|
|
|
109
107
|
@pulumi.getter(name="loadBalancerName")
|
|
110
108
|
def load_balancer_name(self) -> Optional[pulumi.Input[str]]:
|
|
111
109
|
"""
|
|
112
|
-
The
|
|
110
|
+
The name of the Gateway Load Balancer instance.
|
|
113
111
|
|
|
114
|
-
|
|
112
|
+
It must be 2 to 128 English or Chinese characters in length. It must start with a letter or a Chinese character and can contain digits, half-width periods (.), underscores (_), and dashes (-).
|
|
115
113
|
"""
|
|
116
114
|
return pulumi.get(self, "load_balancer_name")
|
|
117
115
|
|
|
@@ -123,7 +121,7 @@ class LoadBalancerArgs:
|
|
|
123
121
|
@pulumi.getter(name="resourceGroupId")
|
|
124
122
|
def resource_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
125
123
|
"""
|
|
126
|
-
The ID of the resource group
|
|
124
|
+
The ID of the resource group
|
|
127
125
|
"""
|
|
128
126
|
return pulumi.get(self, "resource_group_id")
|
|
129
127
|
|
|
@@ -135,7 +133,7 @@ class LoadBalancerArgs:
|
|
|
135
133
|
@pulumi.getter
|
|
136
134
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
137
135
|
"""
|
|
138
|
-
The
|
|
136
|
+
The list of tags.
|
|
139
137
|
"""
|
|
140
138
|
return pulumi.get(self, "tags")
|
|
141
139
|
|
|
@@ -158,19 +156,18 @@ class _LoadBalancerState:
|
|
|
158
156
|
zone_mappings: Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerZoneMappingArgs']]]] = None):
|
|
159
157
|
"""
|
|
160
158
|
Input properties used for looking up and filtering LoadBalancer resources.
|
|
161
|
-
:param pulumi.Input[str] address_ip_version: The
|
|
159
|
+
:param pulumi.Input[str] address_ip_version: The protocol version. Value:
|
|
160
|
+
- Ipv4: Ipv4 type
|
|
161
|
+
:param pulumi.Input[str] create_time: The resource creation time, in Greenwich Mean Time, in the format of **yyyy-MM-ddTHH:mm:ssZ**.
|
|
162
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request.
|
|
163
|
+
:param pulumi.Input[str] load_balancer_name: The name of the Gateway Load Balancer instance.
|
|
162
164
|
|
|
163
|
-
-
|
|
164
|
-
:param pulumi.Input[str]
|
|
165
|
-
:param pulumi.Input[
|
|
166
|
-
:param pulumi.Input[str]
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
170
|
-
:param pulumi.Input[str] status: The GWLB instance status.
|
|
171
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag keys. You can specify at most 20 tags in each call.
|
|
172
|
-
:param pulumi.Input[str] vpc_id: The virtual private cloud (VPC) ID.
|
|
173
|
-
:param pulumi.Input[Sequence[pulumi.Input['LoadBalancerZoneMappingArgs']]] zone_mappings: The mappings between zones and vSwitches. You must specify at least one zone. You can specify at most 20 zones. If the region supports two or more zones, we recommend that you select two or more zones. See `zone_mappings` below.
|
|
165
|
+
It must be 2 to 128 English or Chinese characters in length. It must start with a letter or a Chinese character and can contain digits, half-width periods (.), underscores (_), and dashes (-).
|
|
166
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group
|
|
167
|
+
:param pulumi.Input[str] status: The status of the Gateway load Balancer instance. Value:, indicating that the instance listener will no longer forward traffic.
|
|
168
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The list of tags.
|
|
169
|
+
:param pulumi.Input[str] vpc_id: The ID of the VPC which the Gateway Load Balancer instance belongs.
|
|
170
|
+
:param pulumi.Input[Sequence[pulumi.Input['LoadBalancerZoneMappingArgs']]] zone_mappings: The List of zones and vSwitches mapped. You must add at least one zone and a maximum of 20 zones. If the current region supports two or more zones, we recommend that you add two or more zones. See `zone_mappings` below.
|
|
174
171
|
"""
|
|
175
172
|
if address_ip_version is not None:
|
|
176
173
|
pulumi.set(__self__, "address_ip_version", address_ip_version)
|
|
@@ -195,9 +192,8 @@ class _LoadBalancerState:
|
|
|
195
192
|
@pulumi.getter(name="addressIpVersion")
|
|
196
193
|
def address_ip_version(self) -> Optional[pulumi.Input[str]]:
|
|
197
194
|
"""
|
|
198
|
-
The
|
|
199
|
-
|
|
200
|
-
- `Ipv4`: IPv4 (default)
|
|
195
|
+
The protocol version. Value:
|
|
196
|
+
- Ipv4: Ipv4 type
|
|
201
197
|
"""
|
|
202
198
|
return pulumi.get(self, "address_ip_version")
|
|
203
199
|
|
|
@@ -209,7 +205,7 @@ class _LoadBalancerState:
|
|
|
209
205
|
@pulumi.getter(name="createTime")
|
|
210
206
|
def create_time(self) -> Optional[pulumi.Input[str]]:
|
|
211
207
|
"""
|
|
212
|
-
The
|
|
208
|
+
The resource creation time, in Greenwich Mean Time, in the format of **yyyy-MM-ddTHH:mm:ssZ**.
|
|
213
209
|
"""
|
|
214
210
|
return pulumi.get(self, "create_time")
|
|
215
211
|
|
|
@@ -221,7 +217,7 @@ class _LoadBalancerState:
|
|
|
221
217
|
@pulumi.getter(name="dryRun")
|
|
222
218
|
def dry_run(self) -> Optional[pulumi.Input[bool]]:
|
|
223
219
|
"""
|
|
224
|
-
Specifies whether to perform a dry run, without performing the actual request.
|
|
220
|
+
Specifies whether to perform only a dry run, without performing the actual request.
|
|
225
221
|
"""
|
|
226
222
|
return pulumi.get(self, "dry_run")
|
|
227
223
|
|
|
@@ -233,9 +229,9 @@ class _LoadBalancerState:
|
|
|
233
229
|
@pulumi.getter(name="loadBalancerName")
|
|
234
230
|
def load_balancer_name(self) -> Optional[pulumi.Input[str]]:
|
|
235
231
|
"""
|
|
236
|
-
The
|
|
232
|
+
The name of the Gateway Load Balancer instance.
|
|
237
233
|
|
|
238
|
-
|
|
234
|
+
It must be 2 to 128 English or Chinese characters in length. It must start with a letter or a Chinese character and can contain digits, half-width periods (.), underscores (_), and dashes (-).
|
|
239
235
|
"""
|
|
240
236
|
return pulumi.get(self, "load_balancer_name")
|
|
241
237
|
|
|
@@ -247,7 +243,7 @@ class _LoadBalancerState:
|
|
|
247
243
|
@pulumi.getter(name="resourceGroupId")
|
|
248
244
|
def resource_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
249
245
|
"""
|
|
250
|
-
The ID of the resource group
|
|
246
|
+
The ID of the resource group
|
|
251
247
|
"""
|
|
252
248
|
return pulumi.get(self, "resource_group_id")
|
|
253
249
|
|
|
@@ -259,7 +255,7 @@ class _LoadBalancerState:
|
|
|
259
255
|
@pulumi.getter
|
|
260
256
|
def status(self) -> Optional[pulumi.Input[str]]:
|
|
261
257
|
"""
|
|
262
|
-
The
|
|
258
|
+
The status of the Gateway load Balancer instance. Value:, indicating that the instance listener will no longer forward traffic.
|
|
263
259
|
"""
|
|
264
260
|
return pulumi.get(self, "status")
|
|
265
261
|
|
|
@@ -271,7 +267,7 @@ class _LoadBalancerState:
|
|
|
271
267
|
@pulumi.getter
|
|
272
268
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
273
269
|
"""
|
|
274
|
-
The
|
|
270
|
+
The list of tags.
|
|
275
271
|
"""
|
|
276
272
|
return pulumi.get(self, "tags")
|
|
277
273
|
|
|
@@ -283,7 +279,7 @@ class _LoadBalancerState:
|
|
|
283
279
|
@pulumi.getter(name="vpcId")
|
|
284
280
|
def vpc_id(self) -> Optional[pulumi.Input[str]]:
|
|
285
281
|
"""
|
|
286
|
-
The
|
|
282
|
+
The ID of the VPC which the Gateway Load Balancer instance belongs.
|
|
287
283
|
"""
|
|
288
284
|
return pulumi.get(self, "vpc_id")
|
|
289
285
|
|
|
@@ -295,7 +291,7 @@ class _LoadBalancerState:
|
|
|
295
291
|
@pulumi.getter(name="zoneMappings")
|
|
296
292
|
def zone_mappings(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerZoneMappingArgs']]]]:
|
|
297
293
|
"""
|
|
298
|
-
The
|
|
294
|
+
The List of zones and vSwitches mapped. You must add at least one zone and a maximum of 20 zones. If the current region supports two or more zones, we recommend that you add two or more zones. See `zone_mappings` below.
|
|
299
295
|
"""
|
|
300
296
|
return pulumi.get(self, "zone_mappings")
|
|
301
297
|
|
|
@@ -334,17 +330,16 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
334
330
|
|
|
335
331
|
:param str resource_name: The name of the resource.
|
|
336
332
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
337
|
-
:param pulumi.Input[str] address_ip_version: The
|
|
333
|
+
:param pulumi.Input[str] address_ip_version: The protocol version. Value:
|
|
334
|
+
- Ipv4: Ipv4 type
|
|
335
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request.
|
|
336
|
+
:param pulumi.Input[str] load_balancer_name: The name of the Gateway Load Balancer instance.
|
|
338
337
|
|
|
339
|
-
-
|
|
340
|
-
:param pulumi.Input[
|
|
341
|
-
:param pulumi.Input[str]
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
345
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag keys. You can specify at most 20 tags in each call.
|
|
346
|
-
:param pulumi.Input[str] vpc_id: The virtual private cloud (VPC) ID.
|
|
347
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerZoneMappingArgs', 'LoadBalancerZoneMappingArgsDict']]]] zone_mappings: The mappings between zones and vSwitches. You must specify at least one zone. You can specify at most 20 zones. If the region supports two or more zones, we recommend that you select two or more zones. See `zone_mappings` below.
|
|
338
|
+
It must be 2 to 128 English or Chinese characters in length. It must start with a letter or a Chinese character and can contain digits, half-width periods (.), underscores (_), and dashes (-).
|
|
339
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group
|
|
340
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The list of tags.
|
|
341
|
+
:param pulumi.Input[str] vpc_id: The ID of the VPC which the Gateway Load Balancer instance belongs.
|
|
342
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerZoneMappingArgs', 'LoadBalancerZoneMappingArgsDict']]]] zone_mappings: The List of zones and vSwitches mapped. You must add at least one zone and a maximum of 20 zones. If the current region supports two or more zones, we recommend that you add two or more zones. See `zone_mappings` below.
|
|
348
343
|
"""
|
|
349
344
|
...
|
|
350
345
|
@overload
|
|
@@ -437,19 +432,18 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
437
432
|
:param str resource_name: The unique name of the resulting resource.
|
|
438
433
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
439
434
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
440
|
-
:param pulumi.Input[str] address_ip_version: The
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
:param pulumi.Input[
|
|
444
|
-
:param pulumi.Input[
|
|
445
|
-
:param pulumi.Input[str] load_balancer_name: The GWLB instance name.
|
|
435
|
+
:param pulumi.Input[str] address_ip_version: The protocol version. Value:
|
|
436
|
+
- Ipv4: Ipv4 type
|
|
437
|
+
:param pulumi.Input[str] create_time: The resource creation time, in Greenwich Mean Time, in the format of **yyyy-MM-ddTHH:mm:ssZ**.
|
|
438
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request.
|
|
439
|
+
:param pulumi.Input[str] load_balancer_name: The name of the Gateway Load Balancer instance.
|
|
446
440
|
|
|
447
|
-
|
|
448
|
-
:param pulumi.Input[str] resource_group_id: The ID of the resource group
|
|
449
|
-
:param pulumi.Input[str] status: The
|
|
450
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The
|
|
451
|
-
:param pulumi.Input[str] vpc_id: The
|
|
452
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerZoneMappingArgs', 'LoadBalancerZoneMappingArgsDict']]]] zone_mappings: The
|
|
441
|
+
It must be 2 to 128 English or Chinese characters in length. It must start with a letter or a Chinese character and can contain digits, half-width periods (.), underscores (_), and dashes (-).
|
|
442
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group
|
|
443
|
+
:param pulumi.Input[str] status: The status of the Gateway load Balancer instance. Value:, indicating that the instance listener will no longer forward traffic.
|
|
444
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The list of tags.
|
|
445
|
+
:param pulumi.Input[str] vpc_id: The ID of the VPC which the Gateway Load Balancer instance belongs.
|
|
446
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerZoneMappingArgs', 'LoadBalancerZoneMappingArgsDict']]]] zone_mappings: The List of zones and vSwitches mapped. You must add at least one zone and a maximum of 20 zones. If the current region supports two or more zones, we recommend that you add two or more zones. See `zone_mappings` below.
|
|
453
447
|
"""
|
|
454
448
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
455
449
|
|
|
@@ -470,9 +464,8 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
470
464
|
@pulumi.getter(name="addressIpVersion")
|
|
471
465
|
def address_ip_version(self) -> pulumi.Output[str]:
|
|
472
466
|
"""
|
|
473
|
-
The
|
|
474
|
-
|
|
475
|
-
- `Ipv4`: IPv4 (default)
|
|
467
|
+
The protocol version. Value:
|
|
468
|
+
- Ipv4: Ipv4 type
|
|
476
469
|
"""
|
|
477
470
|
return pulumi.get(self, "address_ip_version")
|
|
478
471
|
|
|
@@ -480,7 +473,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
480
473
|
@pulumi.getter(name="createTime")
|
|
481
474
|
def create_time(self) -> pulumi.Output[str]:
|
|
482
475
|
"""
|
|
483
|
-
The
|
|
476
|
+
The resource creation time, in Greenwich Mean Time, in the format of **yyyy-MM-ddTHH:mm:ssZ**.
|
|
484
477
|
"""
|
|
485
478
|
return pulumi.get(self, "create_time")
|
|
486
479
|
|
|
@@ -488,7 +481,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
488
481
|
@pulumi.getter(name="dryRun")
|
|
489
482
|
def dry_run(self) -> pulumi.Output[Optional[bool]]:
|
|
490
483
|
"""
|
|
491
|
-
Specifies whether to perform a dry run, without performing the actual request.
|
|
484
|
+
Specifies whether to perform only a dry run, without performing the actual request.
|
|
492
485
|
"""
|
|
493
486
|
return pulumi.get(self, "dry_run")
|
|
494
487
|
|
|
@@ -496,9 +489,9 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
496
489
|
@pulumi.getter(name="loadBalancerName")
|
|
497
490
|
def load_balancer_name(self) -> pulumi.Output[Optional[str]]:
|
|
498
491
|
"""
|
|
499
|
-
The
|
|
492
|
+
The name of the Gateway Load Balancer instance.
|
|
500
493
|
|
|
501
|
-
|
|
494
|
+
It must be 2 to 128 English or Chinese characters in length. It must start with a letter or a Chinese character and can contain digits, half-width periods (.), underscores (_), and dashes (-).
|
|
502
495
|
"""
|
|
503
496
|
return pulumi.get(self, "load_balancer_name")
|
|
504
497
|
|
|
@@ -506,7 +499,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
506
499
|
@pulumi.getter(name="resourceGroupId")
|
|
507
500
|
def resource_group_id(self) -> pulumi.Output[str]:
|
|
508
501
|
"""
|
|
509
|
-
The ID of the resource group
|
|
502
|
+
The ID of the resource group
|
|
510
503
|
"""
|
|
511
504
|
return pulumi.get(self, "resource_group_id")
|
|
512
505
|
|
|
@@ -514,7 +507,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
514
507
|
@pulumi.getter
|
|
515
508
|
def status(self) -> pulumi.Output[str]:
|
|
516
509
|
"""
|
|
517
|
-
The
|
|
510
|
+
The status of the Gateway load Balancer instance. Value:, indicating that the instance listener will no longer forward traffic.
|
|
518
511
|
"""
|
|
519
512
|
return pulumi.get(self, "status")
|
|
520
513
|
|
|
@@ -522,7 +515,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
522
515
|
@pulumi.getter
|
|
523
516
|
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
524
517
|
"""
|
|
525
|
-
The
|
|
518
|
+
The list of tags.
|
|
526
519
|
"""
|
|
527
520
|
return pulumi.get(self, "tags")
|
|
528
521
|
|
|
@@ -530,7 +523,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
530
523
|
@pulumi.getter(name="vpcId")
|
|
531
524
|
def vpc_id(self) -> pulumi.Output[str]:
|
|
532
525
|
"""
|
|
533
|
-
The
|
|
526
|
+
The ID of the VPC which the Gateway Load Balancer instance belongs.
|
|
534
527
|
"""
|
|
535
528
|
return pulumi.get(self, "vpc_id")
|
|
536
529
|
|
|
@@ -538,7 +531,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
538
531
|
@pulumi.getter(name="zoneMappings")
|
|
539
532
|
def zone_mappings(self) -> pulumi.Output[Sequence['outputs.LoadBalancerZoneMapping']]:
|
|
540
533
|
"""
|
|
541
|
-
The
|
|
534
|
+
The List of zones and vSwitches mapped. You must add at least one zone and a maximum of 20 zones. If the current region supports two or more zones, we recommend that you add two or more zones. See `zone_mappings` below.
|
|
542
535
|
"""
|
|
543
536
|
return pulumi.get(self, "zone_mappings")
|
|
544
537
|
|