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
|
@@ -30,16 +30,17 @@ 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
|
|
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.
|
|
33
|
+
:param pulumi.Input[str] vpc_id: The virtual private cloud (VPC) ID.
|
|
34
|
+
: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.
|
|
35
|
+
:param pulumi.Input[str] address_ip_version: The IP version. Valid values:
|
|
39
36
|
|
|
40
|
-
|
|
41
|
-
:param pulumi.Input[
|
|
42
|
-
:param pulumi.Input[
|
|
37
|
+
- `Ipv4`: IPv4 (default)
|
|
38
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
39
|
+
:param pulumi.Input[str] load_balancer_name: The GWLB instance name.
|
|
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.
|
|
43
44
|
"""
|
|
44
45
|
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
45
46
|
pulumi.set(__self__, "zone_mappings", zone_mappings)
|
|
@@ -58,7 +59,7 @@ class LoadBalancerArgs:
|
|
|
58
59
|
@pulumi.getter(name="vpcId")
|
|
59
60
|
def vpc_id(self) -> pulumi.Input[str]:
|
|
60
61
|
"""
|
|
61
|
-
The
|
|
62
|
+
The virtual private cloud (VPC) ID.
|
|
62
63
|
"""
|
|
63
64
|
return pulumi.get(self, "vpc_id")
|
|
64
65
|
|
|
@@ -70,7 +71,7 @@ class LoadBalancerArgs:
|
|
|
70
71
|
@pulumi.getter(name="zoneMappings")
|
|
71
72
|
def zone_mappings(self) -> pulumi.Input[Sequence[pulumi.Input['LoadBalancerZoneMappingArgs']]]:
|
|
72
73
|
"""
|
|
73
|
-
The
|
|
74
|
+
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.
|
|
74
75
|
"""
|
|
75
76
|
return pulumi.get(self, "zone_mappings")
|
|
76
77
|
|
|
@@ -82,8 +83,9 @@ class LoadBalancerArgs:
|
|
|
82
83
|
@pulumi.getter(name="addressIpVersion")
|
|
83
84
|
def address_ip_version(self) -> Optional[pulumi.Input[str]]:
|
|
84
85
|
"""
|
|
85
|
-
The
|
|
86
|
-
|
|
86
|
+
The IP version. Valid values:
|
|
87
|
+
|
|
88
|
+
- `Ipv4`: IPv4 (default)
|
|
87
89
|
"""
|
|
88
90
|
return pulumi.get(self, "address_ip_version")
|
|
89
91
|
|
|
@@ -95,7 +97,7 @@ class LoadBalancerArgs:
|
|
|
95
97
|
@pulumi.getter(name="dryRun")
|
|
96
98
|
def dry_run(self) -> Optional[pulumi.Input[bool]]:
|
|
97
99
|
"""
|
|
98
|
-
Specifies whether to perform
|
|
100
|
+
Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
99
101
|
"""
|
|
100
102
|
return pulumi.get(self, "dry_run")
|
|
101
103
|
|
|
@@ -107,9 +109,9 @@ class LoadBalancerArgs:
|
|
|
107
109
|
@pulumi.getter(name="loadBalancerName")
|
|
108
110
|
def load_balancer_name(self) -> Optional[pulumi.Input[str]]:
|
|
109
111
|
"""
|
|
110
|
-
The
|
|
112
|
+
The GWLB instance name.
|
|
111
113
|
|
|
112
|
-
|
|
114
|
+
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.
|
|
113
115
|
"""
|
|
114
116
|
return pulumi.get(self, "load_balancer_name")
|
|
115
117
|
|
|
@@ -121,7 +123,7 @@ class LoadBalancerArgs:
|
|
|
121
123
|
@pulumi.getter(name="resourceGroupId")
|
|
122
124
|
def resource_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
123
125
|
"""
|
|
124
|
-
The ID of the resource group
|
|
126
|
+
The ID of the resource group.
|
|
125
127
|
"""
|
|
126
128
|
return pulumi.get(self, "resource_group_id")
|
|
127
129
|
|
|
@@ -133,7 +135,7 @@ class LoadBalancerArgs:
|
|
|
133
135
|
@pulumi.getter
|
|
134
136
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
135
137
|
"""
|
|
136
|
-
The
|
|
138
|
+
The tag keys. You can specify at most 20 tags in each call.
|
|
137
139
|
"""
|
|
138
140
|
return pulumi.get(self, "tags")
|
|
139
141
|
|
|
@@ -156,18 +158,19 @@ class _LoadBalancerState:
|
|
|
156
158
|
zone_mappings: Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerZoneMappingArgs']]]] = None):
|
|
157
159
|
"""
|
|
158
160
|
Input properties used for looking up and filtering LoadBalancer resources.
|
|
159
|
-
:param pulumi.Input[str] address_ip_version: The
|
|
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.
|
|
161
|
+
:param pulumi.Input[str] address_ip_version: The IP version. Valid values:
|
|
164
162
|
|
|
165
|
-
|
|
166
|
-
:param pulumi.Input[str]
|
|
167
|
-
:param pulumi.Input[
|
|
168
|
-
:param pulumi.Input[
|
|
169
|
-
|
|
170
|
-
|
|
163
|
+
- `Ipv4`: IPv4 (default)
|
|
164
|
+
: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.
|
|
165
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
166
|
+
:param pulumi.Input[str] load_balancer_name: The GWLB instance name.
|
|
167
|
+
|
|
168
|
+
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.
|
|
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.
|
|
171
174
|
"""
|
|
172
175
|
if address_ip_version is not None:
|
|
173
176
|
pulumi.set(__self__, "address_ip_version", address_ip_version)
|
|
@@ -192,8 +195,9 @@ class _LoadBalancerState:
|
|
|
192
195
|
@pulumi.getter(name="addressIpVersion")
|
|
193
196
|
def address_ip_version(self) -> Optional[pulumi.Input[str]]:
|
|
194
197
|
"""
|
|
195
|
-
The
|
|
196
|
-
|
|
198
|
+
The IP version. Valid values:
|
|
199
|
+
|
|
200
|
+
- `Ipv4`: IPv4 (default)
|
|
197
201
|
"""
|
|
198
202
|
return pulumi.get(self, "address_ip_version")
|
|
199
203
|
|
|
@@ -205,7 +209,7 @@ class _LoadBalancerState:
|
|
|
205
209
|
@pulumi.getter(name="createTime")
|
|
206
210
|
def create_time(self) -> Optional[pulumi.Input[str]]:
|
|
207
211
|
"""
|
|
208
|
-
The resource
|
|
212
|
+
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.
|
|
209
213
|
"""
|
|
210
214
|
return pulumi.get(self, "create_time")
|
|
211
215
|
|
|
@@ -217,7 +221,7 @@ class _LoadBalancerState:
|
|
|
217
221
|
@pulumi.getter(name="dryRun")
|
|
218
222
|
def dry_run(self) -> Optional[pulumi.Input[bool]]:
|
|
219
223
|
"""
|
|
220
|
-
Specifies whether to perform
|
|
224
|
+
Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
221
225
|
"""
|
|
222
226
|
return pulumi.get(self, "dry_run")
|
|
223
227
|
|
|
@@ -229,9 +233,9 @@ class _LoadBalancerState:
|
|
|
229
233
|
@pulumi.getter(name="loadBalancerName")
|
|
230
234
|
def load_balancer_name(self) -> Optional[pulumi.Input[str]]:
|
|
231
235
|
"""
|
|
232
|
-
The
|
|
236
|
+
The GWLB instance name.
|
|
233
237
|
|
|
234
|
-
|
|
238
|
+
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.
|
|
235
239
|
"""
|
|
236
240
|
return pulumi.get(self, "load_balancer_name")
|
|
237
241
|
|
|
@@ -243,7 +247,7 @@ class _LoadBalancerState:
|
|
|
243
247
|
@pulumi.getter(name="resourceGroupId")
|
|
244
248
|
def resource_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
245
249
|
"""
|
|
246
|
-
The ID of the resource group
|
|
250
|
+
The ID of the resource group.
|
|
247
251
|
"""
|
|
248
252
|
return pulumi.get(self, "resource_group_id")
|
|
249
253
|
|
|
@@ -255,7 +259,7 @@ class _LoadBalancerState:
|
|
|
255
259
|
@pulumi.getter
|
|
256
260
|
def status(self) -> Optional[pulumi.Input[str]]:
|
|
257
261
|
"""
|
|
258
|
-
The
|
|
262
|
+
The GWLB instance status.
|
|
259
263
|
"""
|
|
260
264
|
return pulumi.get(self, "status")
|
|
261
265
|
|
|
@@ -267,7 +271,7 @@ class _LoadBalancerState:
|
|
|
267
271
|
@pulumi.getter
|
|
268
272
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
269
273
|
"""
|
|
270
|
-
The
|
|
274
|
+
The tag keys. You can specify at most 20 tags in each call.
|
|
271
275
|
"""
|
|
272
276
|
return pulumi.get(self, "tags")
|
|
273
277
|
|
|
@@ -279,7 +283,7 @@ class _LoadBalancerState:
|
|
|
279
283
|
@pulumi.getter(name="vpcId")
|
|
280
284
|
def vpc_id(self) -> Optional[pulumi.Input[str]]:
|
|
281
285
|
"""
|
|
282
|
-
The
|
|
286
|
+
The virtual private cloud (VPC) ID.
|
|
283
287
|
"""
|
|
284
288
|
return pulumi.get(self, "vpc_id")
|
|
285
289
|
|
|
@@ -291,7 +295,7 @@ class _LoadBalancerState:
|
|
|
291
295
|
@pulumi.getter(name="zoneMappings")
|
|
292
296
|
def zone_mappings(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerZoneMappingArgs']]]]:
|
|
293
297
|
"""
|
|
294
|
-
The
|
|
298
|
+
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.
|
|
295
299
|
"""
|
|
296
300
|
return pulumi.get(self, "zone_mappings")
|
|
297
301
|
|
|
@@ -330,16 +334,17 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
330
334
|
|
|
331
335
|
:param str resource_name: The name of the resource.
|
|
332
336
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
333
|
-
:param pulumi.Input[str] address_ip_version: The
|
|
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.
|
|
337
|
+
:param pulumi.Input[str] address_ip_version: The IP version. Valid values:
|
|
337
338
|
|
|
338
|
-
|
|
339
|
-
:param pulumi.Input[
|
|
340
|
-
:param pulumi.Input[
|
|
341
|
-
|
|
342
|
-
|
|
339
|
+
- `Ipv4`: IPv4 (default)
|
|
340
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
341
|
+
:param pulumi.Input[str] load_balancer_name: The GWLB instance name.
|
|
342
|
+
|
|
343
|
+
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.
|
|
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.
|
|
343
348
|
"""
|
|
344
349
|
...
|
|
345
350
|
@overload
|
|
@@ -432,18 +437,19 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
432
437
|
:param str resource_name: The unique name of the resulting resource.
|
|
433
438
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
434
439
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
435
|
-
:param pulumi.Input[str] address_ip_version: The
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
:param pulumi.Input[
|
|
439
|
-
:param pulumi.Input[
|
|
440
|
+
:param pulumi.Input[str] address_ip_version: The IP version. Valid values:
|
|
441
|
+
|
|
442
|
+
- `Ipv4`: IPv4 (default)
|
|
443
|
+
: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.
|
|
444
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
445
|
+
:param pulumi.Input[str] load_balancer_name: The GWLB instance name.
|
|
440
446
|
|
|
441
|
-
|
|
442
|
-
:param pulumi.Input[str] resource_group_id: The ID of the resource group
|
|
443
|
-
:param pulumi.Input[str] status: The
|
|
444
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The
|
|
445
|
-
:param pulumi.Input[str] vpc_id: The
|
|
446
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerZoneMappingArgs', 'LoadBalancerZoneMappingArgsDict']]]] zone_mappings: The
|
|
447
|
+
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.
|
|
448
|
+
:param pulumi.Input[str] resource_group_id: The ID of the resource group.
|
|
449
|
+
:param pulumi.Input[str] status: The GWLB instance status.
|
|
450
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag keys. You can specify at most 20 tags in each call.
|
|
451
|
+
:param pulumi.Input[str] vpc_id: The virtual private cloud (VPC) ID.
|
|
452
|
+
: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.
|
|
447
453
|
"""
|
|
448
454
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
449
455
|
|
|
@@ -464,8 +470,9 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
464
470
|
@pulumi.getter(name="addressIpVersion")
|
|
465
471
|
def address_ip_version(self) -> pulumi.Output[str]:
|
|
466
472
|
"""
|
|
467
|
-
The
|
|
468
|
-
|
|
473
|
+
The IP version. Valid values:
|
|
474
|
+
|
|
475
|
+
- `Ipv4`: IPv4 (default)
|
|
469
476
|
"""
|
|
470
477
|
return pulumi.get(self, "address_ip_version")
|
|
471
478
|
|
|
@@ -473,7 +480,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
473
480
|
@pulumi.getter(name="createTime")
|
|
474
481
|
def create_time(self) -> pulumi.Output[str]:
|
|
475
482
|
"""
|
|
476
|
-
The resource
|
|
483
|
+
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.
|
|
477
484
|
"""
|
|
478
485
|
return pulumi.get(self, "create_time")
|
|
479
486
|
|
|
@@ -481,7 +488,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
481
488
|
@pulumi.getter(name="dryRun")
|
|
482
489
|
def dry_run(self) -> pulumi.Output[Optional[bool]]:
|
|
483
490
|
"""
|
|
484
|
-
Specifies whether to perform
|
|
491
|
+
Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
485
492
|
"""
|
|
486
493
|
return pulumi.get(self, "dry_run")
|
|
487
494
|
|
|
@@ -489,9 +496,9 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
489
496
|
@pulumi.getter(name="loadBalancerName")
|
|
490
497
|
def load_balancer_name(self) -> pulumi.Output[Optional[str]]:
|
|
491
498
|
"""
|
|
492
|
-
The
|
|
499
|
+
The GWLB instance name.
|
|
493
500
|
|
|
494
|
-
|
|
501
|
+
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.
|
|
495
502
|
"""
|
|
496
503
|
return pulumi.get(self, "load_balancer_name")
|
|
497
504
|
|
|
@@ -499,7 +506,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
499
506
|
@pulumi.getter(name="resourceGroupId")
|
|
500
507
|
def resource_group_id(self) -> pulumi.Output[str]:
|
|
501
508
|
"""
|
|
502
|
-
The ID of the resource group
|
|
509
|
+
The ID of the resource group.
|
|
503
510
|
"""
|
|
504
511
|
return pulumi.get(self, "resource_group_id")
|
|
505
512
|
|
|
@@ -507,7 +514,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
507
514
|
@pulumi.getter
|
|
508
515
|
def status(self) -> pulumi.Output[str]:
|
|
509
516
|
"""
|
|
510
|
-
The
|
|
517
|
+
The GWLB instance status.
|
|
511
518
|
"""
|
|
512
519
|
return pulumi.get(self, "status")
|
|
513
520
|
|
|
@@ -515,7 +522,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
515
522
|
@pulumi.getter
|
|
516
523
|
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
517
524
|
"""
|
|
518
|
-
The
|
|
525
|
+
The tag keys. You can specify at most 20 tags in each call.
|
|
519
526
|
"""
|
|
520
527
|
return pulumi.get(self, "tags")
|
|
521
528
|
|
|
@@ -523,7 +530,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
523
530
|
@pulumi.getter(name="vpcId")
|
|
524
531
|
def vpc_id(self) -> pulumi.Output[str]:
|
|
525
532
|
"""
|
|
526
|
-
The
|
|
533
|
+
The virtual private cloud (VPC) ID.
|
|
527
534
|
"""
|
|
528
535
|
return pulumi.get(self, "vpc_id")
|
|
529
536
|
|
|
@@ -531,7 +538,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
531
538
|
@pulumi.getter(name="zoneMappings")
|
|
532
539
|
def zone_mappings(self) -> pulumi.Output[Sequence['outputs.LoadBalancerZoneMapping']]:
|
|
533
540
|
"""
|
|
534
|
-
The
|
|
541
|
+
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.
|
|
535
542
|
"""
|
|
536
543
|
return pulumi.get(self, "zone_mappings")
|
|
537
544
|
|