pulumi-alicloud 3.86.1a1758944763__py3-none-any.whl → 3.87.0__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 +24 -0
- pulumi_alicloud/adb/resource_group.py +463 -3
- pulumi_alicloud/cloudsso/__init__.py +1 -0
- pulumi_alicloud/cloudsso/get_user_provisioning_events.py +226 -0
- pulumi_alicloud/cloudsso/outputs.py +228 -0
- pulumi_alicloud/cs/managed_kubernetes.py +6 -2
- pulumi_alicloud/ddos/domain_resource.py +89 -0
- pulumi_alicloud/dms/get_enterprise_logic_databases.py +8 -0
- pulumi_alicloud/eais/get_instances.py +8 -0
- pulumi_alicloud/ebs/dedicated_block_storage_cluster.py +8 -0
- pulumi_alicloud/ecs/elasticity_assurance.py +279 -20
- pulumi_alicloud/edas/get_deploy_groups.py +4 -0
- pulumi_alicloud/eflo/node.py +153 -15
- pulumi_alicloud/esa/__init__.py +1 -0
- pulumi_alicloud/esa/_inputs.py +2152 -0
- pulumi_alicloud/esa/outputs.py +1599 -0
- pulumi_alicloud/esa/waf_rule.py +510 -0
- pulumi_alicloud/ess/__init__.py +1 -0
- pulumi_alicloud/ess/_inputs.py +256 -0
- pulumi_alicloud/ess/instance_refresh.py +760 -0
- pulumi_alicloud/ess/outputs.py +203 -0
- pulumi_alicloud/expressconnect/get_virtual_physical_connections.py +4 -0
- pulumi_alicloud/expressconnect/traffic_qos.py +137 -31
- pulumi_alicloud/expressconnect/traffic_qos_queue.py +91 -66
- pulumi_alicloud/expressconnect/traffic_qos_rule.py +307 -261
- pulumi_alicloud/expressconnect/vbr_pconn_association.py +105 -59
- pulumi_alicloud/gpdb/get_zones.py +4 -0
- pulumi_alicloud/kvstore/account.py +14 -14
- pulumi_alicloud/log/_inputs.py +29 -9
- pulumi_alicloud/log/etl.py +56 -9
- pulumi_alicloud/log/outputs.py +18 -6
- pulumi_alicloud/polardb/__init__.py +1 -0
- pulumi_alicloud/polardb/zonal_db_cluster.py +1255 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/resourcemanager/_inputs.py +54 -0
- pulumi_alicloud/resourcemanager/get_policies.py +4 -0
- pulumi_alicloud/resourcemanager/outputs.py +51 -0
- pulumi_alicloud/resourcemanager/resource_share.py +341 -11
- pulumi_alicloud/scdn/domain_config.py +8 -0
- pulumi_alicloud/servicemesh/user_permission.py +8 -0
- pulumi_alicloud/simpleapplicationserver/get_images.py +24 -0
- pulumi_alicloud/vpc/bgp_group.py +250 -53
- pulumi_alicloud/vpc/common_bandwith_package_attachment.py +30 -14
- pulumi_alicloud/vpc/get_enhanced_nat_available_zones.py +3 -3
- pulumi_alicloud/vpc/vbr_ha.py +127 -46
- {pulumi_alicloud-3.86.1a1758944763.dist-info → pulumi_alicloud-3.87.0.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.86.1a1758944763.dist-info → pulumi_alicloud-3.87.0.dist-info}/RECORD +49 -45
- {pulumi_alicloud-3.86.1a1758944763.dist-info → pulumi_alicloud-3.87.0.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.86.1a1758944763.dist-info → pulumi_alicloud-3.87.0.dist-info}/top_level.txt +0 -0
|
@@ -31,15 +31,19 @@ class CommonBandwithPackageAttachmentArgs:
|
|
|
31
31
|
|
|
32
32
|
You can specify up to 50 EIP IDs. Separate multiple IDs with commas (,).
|
|
33
33
|
|
|
34
|
-
> **NOTE:**
|
|
34
|
+
> **NOTE:** If both `EipAddress` and `AllocationId` are specified, you can specify up to 50 EIP IDs for `AllocationId`, and specify up to 50 EIPs for `EipAddress`.
|
|
35
35
|
:param pulumi.Input[_builtins.str] bandwidth_package_bandwidth: The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the Internet Shared Bandwidth instance. Unit: Mbit/s.
|
|
36
|
-
|
|
36
|
+
> **NOTE:** From version 1.261.0, If you want to cancel the maximum bandwidth configuration for the EIP, you can set `bandwidth_package_bandwidth` to `Cancelled`.
|
|
37
|
+
:param pulumi.Input[_builtins.bool] cancel_common_bandwidth_package_ip_bandwidth: . Field `cancel_common_bandwidth_package_ip_bandwidth` has been deprecated from provider version 1.261.0. Replace with `bandwidth_package_bandwidth` = `"Cancelled"`.
|
|
37
38
|
:param pulumi.Input[_builtins.str] ip_type: The type of IP address. Set the value to `EIP` to associate EIPs with the Internet Shared Bandwidth instance.
|
|
38
39
|
"""
|
|
39
40
|
pulumi.set(__self__, "bandwidth_package_id", bandwidth_package_id)
|
|
40
41
|
pulumi.set(__self__, "instance_id", instance_id)
|
|
41
42
|
if bandwidth_package_bandwidth is not None:
|
|
42
43
|
pulumi.set(__self__, "bandwidth_package_bandwidth", bandwidth_package_bandwidth)
|
|
44
|
+
if cancel_common_bandwidth_package_ip_bandwidth is not None:
|
|
45
|
+
warnings.warn("""Field `cancel_common_bandwidth_package_ip_bandwidth` has been deprecated from version 1.261.0. Replace with bandwidth_package_bandwidth = \"Cancelled\"""", DeprecationWarning)
|
|
46
|
+
pulumi.log.warn("""cancel_common_bandwidth_package_ip_bandwidth is deprecated: Field `cancel_common_bandwidth_package_ip_bandwidth` has been deprecated from version 1.261.0. Replace with bandwidth_package_bandwidth = \"Cancelled\"""")
|
|
43
47
|
if cancel_common_bandwidth_package_ip_bandwidth is not None:
|
|
44
48
|
pulumi.set(__self__, "cancel_common_bandwidth_package_ip_bandwidth", cancel_common_bandwidth_package_ip_bandwidth)
|
|
45
49
|
if ip_type is not None:
|
|
@@ -65,7 +69,7 @@ class CommonBandwithPackageAttachmentArgs:
|
|
|
65
69
|
|
|
66
70
|
You can specify up to 50 EIP IDs. Separate multiple IDs with commas (,).
|
|
67
71
|
|
|
68
|
-
> **NOTE:**
|
|
72
|
+
> **NOTE:** If both `EipAddress` and `AllocationId` are specified, you can specify up to 50 EIP IDs for `AllocationId`, and specify up to 50 EIPs for `EipAddress`.
|
|
69
73
|
"""
|
|
70
74
|
return pulumi.get(self, "instance_id")
|
|
71
75
|
|
|
@@ -78,6 +82,7 @@ class CommonBandwithPackageAttachmentArgs:
|
|
|
78
82
|
def bandwidth_package_bandwidth(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
79
83
|
"""
|
|
80
84
|
The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the Internet Shared Bandwidth instance. Unit: Mbit/s.
|
|
85
|
+
> **NOTE:** From version 1.261.0, If you want to cancel the maximum bandwidth configuration for the EIP, you can set `bandwidth_package_bandwidth` to `Cancelled`.
|
|
81
86
|
"""
|
|
82
87
|
return pulumi.get(self, "bandwidth_package_bandwidth")
|
|
83
88
|
|
|
@@ -87,9 +92,10 @@ class CommonBandwithPackageAttachmentArgs:
|
|
|
87
92
|
|
|
88
93
|
@_builtins.property
|
|
89
94
|
@pulumi.getter(name="cancelCommonBandwidthPackageIpBandwidth")
|
|
95
|
+
@_utilities.deprecated("""Field `cancel_common_bandwidth_package_ip_bandwidth` has been deprecated from version 1.261.0. Replace with bandwidth_package_bandwidth = \"Cancelled\"""")
|
|
90
96
|
def cancel_common_bandwidth_package_ip_bandwidth(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
91
97
|
"""
|
|
92
|
-
|
|
98
|
+
. Field `cancel_common_bandwidth_package_ip_bandwidth` has been deprecated from provider version 1.261.0. Replace with `bandwidth_package_bandwidth` = `"Cancelled"`.
|
|
93
99
|
"""
|
|
94
100
|
return pulumi.get(self, "cancel_common_bandwidth_package_ip_bandwidth")
|
|
95
101
|
|
|
@@ -122,13 +128,14 @@ class _CommonBandwithPackageAttachmentState:
|
|
|
122
128
|
"""
|
|
123
129
|
Input properties used for looking up and filtering CommonBandwithPackageAttachment resources.
|
|
124
130
|
:param pulumi.Input[_builtins.str] bandwidth_package_bandwidth: The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the Internet Shared Bandwidth instance. Unit: Mbit/s.
|
|
131
|
+
> **NOTE:** From version 1.261.0, If you want to cancel the maximum bandwidth configuration for the EIP, you can set `bandwidth_package_bandwidth` to `Cancelled`.
|
|
125
132
|
:param pulumi.Input[_builtins.str] bandwidth_package_id: The ID of the Internet Shared Bandwidth instance.
|
|
126
|
-
:param pulumi.Input[_builtins.bool] cancel_common_bandwidth_package_ip_bandwidth:
|
|
133
|
+
:param pulumi.Input[_builtins.bool] cancel_common_bandwidth_package_ip_bandwidth: . Field `cancel_common_bandwidth_package_ip_bandwidth` has been deprecated from provider version 1.261.0. Replace with `bandwidth_package_bandwidth` = `"Cancelled"`.
|
|
127
134
|
:param pulumi.Input[_builtins.str] instance_id: The ID of the EIP that you want to query.
|
|
128
135
|
|
|
129
136
|
You can specify up to 50 EIP IDs. Separate multiple IDs with commas (,).
|
|
130
137
|
|
|
131
|
-
> **NOTE:**
|
|
138
|
+
> **NOTE:** If both `EipAddress` and `AllocationId` are specified, you can specify up to 50 EIP IDs for `AllocationId`, and specify up to 50 EIPs for `EipAddress`.
|
|
132
139
|
:param pulumi.Input[_builtins.str] ip_type: The type of IP address. Set the value to `EIP` to associate EIPs with the Internet Shared Bandwidth instance.
|
|
133
140
|
:param pulumi.Input[_builtins.str] status: The status of the Internet Shared Bandwidth instance.
|
|
134
141
|
"""
|
|
@@ -136,6 +143,9 @@ class _CommonBandwithPackageAttachmentState:
|
|
|
136
143
|
pulumi.set(__self__, "bandwidth_package_bandwidth", bandwidth_package_bandwidth)
|
|
137
144
|
if bandwidth_package_id is not None:
|
|
138
145
|
pulumi.set(__self__, "bandwidth_package_id", bandwidth_package_id)
|
|
146
|
+
if cancel_common_bandwidth_package_ip_bandwidth is not None:
|
|
147
|
+
warnings.warn("""Field `cancel_common_bandwidth_package_ip_bandwidth` has been deprecated from version 1.261.0. Replace with bandwidth_package_bandwidth = \"Cancelled\"""", DeprecationWarning)
|
|
148
|
+
pulumi.log.warn("""cancel_common_bandwidth_package_ip_bandwidth is deprecated: Field `cancel_common_bandwidth_package_ip_bandwidth` has been deprecated from version 1.261.0. Replace with bandwidth_package_bandwidth = \"Cancelled\"""")
|
|
139
149
|
if cancel_common_bandwidth_package_ip_bandwidth is not None:
|
|
140
150
|
pulumi.set(__self__, "cancel_common_bandwidth_package_ip_bandwidth", cancel_common_bandwidth_package_ip_bandwidth)
|
|
141
151
|
if instance_id is not None:
|
|
@@ -150,6 +160,7 @@ class _CommonBandwithPackageAttachmentState:
|
|
|
150
160
|
def bandwidth_package_bandwidth(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
151
161
|
"""
|
|
152
162
|
The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the Internet Shared Bandwidth instance. Unit: Mbit/s.
|
|
163
|
+
> **NOTE:** From version 1.261.0, If you want to cancel the maximum bandwidth configuration for the EIP, you can set `bandwidth_package_bandwidth` to `Cancelled`.
|
|
153
164
|
"""
|
|
154
165
|
return pulumi.get(self, "bandwidth_package_bandwidth")
|
|
155
166
|
|
|
@@ -171,9 +182,10 @@ class _CommonBandwithPackageAttachmentState:
|
|
|
171
182
|
|
|
172
183
|
@_builtins.property
|
|
173
184
|
@pulumi.getter(name="cancelCommonBandwidthPackageIpBandwidth")
|
|
185
|
+
@_utilities.deprecated("""Field `cancel_common_bandwidth_package_ip_bandwidth` has been deprecated from version 1.261.0. Replace with bandwidth_package_bandwidth = \"Cancelled\"""")
|
|
174
186
|
def cancel_common_bandwidth_package_ip_bandwidth(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
175
187
|
"""
|
|
176
|
-
|
|
188
|
+
. Field `cancel_common_bandwidth_package_ip_bandwidth` has been deprecated from provider version 1.261.0. Replace with `bandwidth_package_bandwidth` = `"Cancelled"`.
|
|
177
189
|
"""
|
|
178
190
|
return pulumi.get(self, "cancel_common_bandwidth_package_ip_bandwidth")
|
|
179
191
|
|
|
@@ -189,7 +201,7 @@ class _CommonBandwithPackageAttachmentState:
|
|
|
189
201
|
|
|
190
202
|
You can specify up to 50 EIP IDs. Separate multiple IDs with commas (,).
|
|
191
203
|
|
|
192
|
-
> **NOTE:**
|
|
204
|
+
> **NOTE:** If both `EipAddress` and `AllocationId` are specified, you can specify up to 50 EIP IDs for `AllocationId`, and specify up to 50 EIPs for `EipAddress`.
|
|
193
205
|
"""
|
|
194
206
|
return pulumi.get(self, "instance_id")
|
|
195
207
|
|
|
@@ -271,13 +283,14 @@ class CommonBandwithPackageAttachment(pulumi.CustomResource):
|
|
|
271
283
|
:param str resource_name: The name of the resource.
|
|
272
284
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
273
285
|
:param pulumi.Input[_builtins.str] bandwidth_package_bandwidth: The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the Internet Shared Bandwidth instance. Unit: Mbit/s.
|
|
286
|
+
> **NOTE:** From version 1.261.0, If you want to cancel the maximum bandwidth configuration for the EIP, you can set `bandwidth_package_bandwidth` to `Cancelled`.
|
|
274
287
|
:param pulumi.Input[_builtins.str] bandwidth_package_id: The ID of the Internet Shared Bandwidth instance.
|
|
275
|
-
:param pulumi.Input[_builtins.bool] cancel_common_bandwidth_package_ip_bandwidth:
|
|
288
|
+
:param pulumi.Input[_builtins.bool] cancel_common_bandwidth_package_ip_bandwidth: . Field `cancel_common_bandwidth_package_ip_bandwidth` has been deprecated from provider version 1.261.0. Replace with `bandwidth_package_bandwidth` = `"Cancelled"`.
|
|
276
289
|
:param pulumi.Input[_builtins.str] instance_id: The ID of the EIP that you want to query.
|
|
277
290
|
|
|
278
291
|
You can specify up to 50 EIP IDs. Separate multiple IDs with commas (,).
|
|
279
292
|
|
|
280
|
-
> **NOTE:**
|
|
293
|
+
> **NOTE:** If both `EipAddress` and `AllocationId` are specified, you can specify up to 50 EIP IDs for `AllocationId`, and specify up to 50 EIPs for `EipAddress`.
|
|
281
294
|
:param pulumi.Input[_builtins.str] ip_type: The type of IP address. Set the value to `EIP` to associate EIPs with the Internet Shared Bandwidth instance.
|
|
282
295
|
"""
|
|
283
296
|
...
|
|
@@ -383,13 +396,14 @@ class CommonBandwithPackageAttachment(pulumi.CustomResource):
|
|
|
383
396
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
384
397
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
385
398
|
:param pulumi.Input[_builtins.str] bandwidth_package_bandwidth: The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the Internet Shared Bandwidth instance. Unit: Mbit/s.
|
|
399
|
+
> **NOTE:** From version 1.261.0, If you want to cancel the maximum bandwidth configuration for the EIP, you can set `bandwidth_package_bandwidth` to `Cancelled`.
|
|
386
400
|
:param pulumi.Input[_builtins.str] bandwidth_package_id: The ID of the Internet Shared Bandwidth instance.
|
|
387
|
-
:param pulumi.Input[_builtins.bool] cancel_common_bandwidth_package_ip_bandwidth:
|
|
401
|
+
:param pulumi.Input[_builtins.bool] cancel_common_bandwidth_package_ip_bandwidth: . Field `cancel_common_bandwidth_package_ip_bandwidth` has been deprecated from provider version 1.261.0. Replace with `bandwidth_package_bandwidth` = `"Cancelled"`.
|
|
388
402
|
:param pulumi.Input[_builtins.str] instance_id: The ID of the EIP that you want to query.
|
|
389
403
|
|
|
390
404
|
You can specify up to 50 EIP IDs. Separate multiple IDs with commas (,).
|
|
391
405
|
|
|
392
|
-
> **NOTE:**
|
|
406
|
+
> **NOTE:** If both `EipAddress` and `AllocationId` are specified, you can specify up to 50 EIP IDs for `AllocationId`, and specify up to 50 EIPs for `EipAddress`.
|
|
393
407
|
:param pulumi.Input[_builtins.str] ip_type: The type of IP address. Set the value to `EIP` to associate EIPs with the Internet Shared Bandwidth instance.
|
|
394
408
|
:param pulumi.Input[_builtins.str] status: The status of the Internet Shared Bandwidth instance.
|
|
395
409
|
"""
|
|
@@ -410,6 +424,7 @@ class CommonBandwithPackageAttachment(pulumi.CustomResource):
|
|
|
410
424
|
def bandwidth_package_bandwidth(self) -> pulumi.Output[_builtins.str]:
|
|
411
425
|
"""
|
|
412
426
|
The maximum bandwidth for the EIP. This value cannot be larger than the maximum bandwidth of the Internet Shared Bandwidth instance. Unit: Mbit/s.
|
|
427
|
+
> **NOTE:** From version 1.261.0, If you want to cancel the maximum bandwidth configuration for the EIP, you can set `bandwidth_package_bandwidth` to `Cancelled`.
|
|
413
428
|
"""
|
|
414
429
|
return pulumi.get(self, "bandwidth_package_bandwidth")
|
|
415
430
|
|
|
@@ -423,9 +438,10 @@ class CommonBandwithPackageAttachment(pulumi.CustomResource):
|
|
|
423
438
|
|
|
424
439
|
@_builtins.property
|
|
425
440
|
@pulumi.getter(name="cancelCommonBandwidthPackageIpBandwidth")
|
|
441
|
+
@_utilities.deprecated("""Field `cancel_common_bandwidth_package_ip_bandwidth` has been deprecated from version 1.261.0. Replace with bandwidth_package_bandwidth = \"Cancelled\"""")
|
|
426
442
|
def cancel_common_bandwidth_package_ip_bandwidth(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
427
443
|
"""
|
|
428
|
-
|
|
444
|
+
. Field `cancel_common_bandwidth_package_ip_bandwidth` has been deprecated from provider version 1.261.0. Replace with `bandwidth_package_bandwidth` = `"Cancelled"`.
|
|
429
445
|
"""
|
|
430
446
|
return pulumi.get(self, "cancel_common_bandwidth_package_ip_bandwidth")
|
|
431
447
|
|
|
@@ -437,7 +453,7 @@ class CommonBandwithPackageAttachment(pulumi.CustomResource):
|
|
|
437
453
|
|
|
438
454
|
You can specify up to 50 EIP IDs. Separate multiple IDs with commas (,).
|
|
439
455
|
|
|
440
|
-
> **NOTE:**
|
|
456
|
+
> **NOTE:** If both `EipAddress` and `AllocationId` are specified, you can specify up to 50 EIP IDs for `AllocationId`, and specify up to 50 EIPs for `EipAddress`.
|
|
441
457
|
"""
|
|
442
458
|
return pulumi.get(self, "instance_id")
|
|
443
459
|
|
|
@@ -53,7 +53,7 @@ class GetEnhancedNatAvailableZonesResult:
|
|
|
53
53
|
@pulumi.getter
|
|
54
54
|
def ids(self) -> Sequence[_builtins.str]:
|
|
55
55
|
"""
|
|
56
|
-
|
|
56
|
+
A list of available zones IDs by the enhanced NAT gateway.
|
|
57
57
|
"""
|
|
58
58
|
return pulumi.get(self, "ids")
|
|
59
59
|
|
|
@@ -88,7 +88,7 @@ def get_enhanced_nat_available_zones(output_file: Optional[_builtins.str] = None
|
|
|
88
88
|
"""
|
|
89
89
|
This data source provides a list of available zones by the enhanced Nat Gateway.
|
|
90
90
|
|
|
91
|
-
> **NOTE:** Available since
|
|
91
|
+
> **NOTE:** Available since v1.102.0.
|
|
92
92
|
|
|
93
93
|
## Example Usage
|
|
94
94
|
|
|
@@ -118,7 +118,7 @@ def get_enhanced_nat_available_zones_output(output_file: Optional[pulumi.Input[O
|
|
|
118
118
|
"""
|
|
119
119
|
This data source provides a list of available zones by the enhanced Nat Gateway.
|
|
120
120
|
|
|
121
|
-
> **NOTE:** Available since
|
|
121
|
+
> **NOTE:** Available since v1.102.0.
|
|
122
122
|
|
|
123
123
|
## Example Usage
|
|
124
124
|
|
pulumi_alicloud/vpc/vbr_ha.py
CHANGED
|
@@ -26,11 +26,14 @@ class VbrHaArgs:
|
|
|
26
26
|
vbr_ha_name: Optional[pulumi.Input[_builtins.str]] = None):
|
|
27
27
|
"""
|
|
28
28
|
The set of arguments for constructing a VbrHa resource.
|
|
29
|
-
:param pulumi.Input[_builtins.str] peer_vbr_id: The ID of
|
|
30
|
-
:param pulumi.Input[_builtins.str] vbr_id: The
|
|
31
|
-
:param pulumi.Input[_builtins.str] description: The description of the VBR switching group.
|
|
32
|
-
|
|
33
|
-
:param pulumi.Input[_builtins.
|
|
29
|
+
:param pulumi.Input[_builtins.str] peer_vbr_id: The instance ID of another VBR in The VBR switching group.
|
|
30
|
+
:param pulumi.Input[_builtins.str] vbr_id: The VBR instance ID.
|
|
31
|
+
:param pulumi.Input[_builtins.str] description: The description of the VBR switching group.
|
|
32
|
+
It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with 'http:// 'or 'https.
|
|
33
|
+
:param pulumi.Input[_builtins.bool] dry_run: Whether to PreCheck only this request. Value range:
|
|
34
|
+
- *true**: The check request is sent and the instance is not started. Check whether the required parameters, request format, and instance status are filled in. If the check does not pass, the corresponding error is returned. If the check passes, DRYRUN.SUCCESS is returned.
|
|
35
|
+
- *false** (default): Send a normal request and start the instance directly after passing the check.
|
|
36
|
+
:param pulumi.Input[_builtins.str] vbr_ha_name: VBR switch group name.
|
|
34
37
|
"""
|
|
35
38
|
pulumi.set(__self__, "peer_vbr_id", peer_vbr_id)
|
|
36
39
|
pulumi.set(__self__, "vbr_id", vbr_id)
|
|
@@ -45,7 +48,7 @@ class VbrHaArgs:
|
|
|
45
48
|
@pulumi.getter(name="peerVbrId")
|
|
46
49
|
def peer_vbr_id(self) -> pulumi.Input[_builtins.str]:
|
|
47
50
|
"""
|
|
48
|
-
The ID of
|
|
51
|
+
The instance ID of another VBR in The VBR switching group.
|
|
49
52
|
"""
|
|
50
53
|
return pulumi.get(self, "peer_vbr_id")
|
|
51
54
|
|
|
@@ -57,7 +60,7 @@ class VbrHaArgs:
|
|
|
57
60
|
@pulumi.getter(name="vbrId")
|
|
58
61
|
def vbr_id(self) -> pulumi.Input[_builtins.str]:
|
|
59
62
|
"""
|
|
60
|
-
The
|
|
63
|
+
The VBR instance ID.
|
|
61
64
|
"""
|
|
62
65
|
return pulumi.get(self, "vbr_id")
|
|
63
66
|
|
|
@@ -69,7 +72,8 @@ class VbrHaArgs:
|
|
|
69
72
|
@pulumi.getter
|
|
70
73
|
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
71
74
|
"""
|
|
72
|
-
The description of the VBR switching group.
|
|
75
|
+
The description of the VBR switching group.
|
|
76
|
+
It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with 'http:// 'or 'https.
|
|
73
77
|
"""
|
|
74
78
|
return pulumi.get(self, "description")
|
|
75
79
|
|
|
@@ -81,7 +85,9 @@ class VbrHaArgs:
|
|
|
81
85
|
@pulumi.getter(name="dryRun")
|
|
82
86
|
def dry_run(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
83
87
|
"""
|
|
84
|
-
|
|
88
|
+
Whether to PreCheck only this request. Value range:
|
|
89
|
+
- *true**: The check request is sent and the instance is not started. Check whether the required parameters, request format, and instance status are filled in. If the check does not pass, the corresponding error is returned. If the check passes, DRYRUN.SUCCESS is returned.
|
|
90
|
+
- *false** (default): Send a normal request and start the instance directly after passing the check.
|
|
85
91
|
"""
|
|
86
92
|
return pulumi.get(self, "dry_run")
|
|
87
93
|
|
|
@@ -93,7 +99,7 @@ class VbrHaArgs:
|
|
|
93
99
|
@pulumi.getter(name="vbrHaName")
|
|
94
100
|
def vbr_ha_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
95
101
|
"""
|
|
96
|
-
|
|
102
|
+
VBR switch group name.
|
|
97
103
|
"""
|
|
98
104
|
return pulumi.get(self, "vbr_ha_name")
|
|
99
105
|
|
|
@@ -105,27 +111,38 @@ class VbrHaArgs:
|
|
|
105
111
|
@pulumi.input_type
|
|
106
112
|
class _VbrHaState:
|
|
107
113
|
def __init__(__self__, *,
|
|
114
|
+
create_time: Optional[pulumi.Input[_builtins.str]] = None,
|
|
108
115
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
|
109
116
|
dry_run: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
110
117
|
peer_vbr_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
118
|
+
region_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
111
119
|
status: Optional[pulumi.Input[_builtins.str]] = None,
|
|
112
120
|
vbr_ha_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
113
121
|
vbr_id: Optional[pulumi.Input[_builtins.str]] = None):
|
|
114
122
|
"""
|
|
115
123
|
Input properties used for looking up and filtering VbrHa resources.
|
|
116
|
-
:param pulumi.Input[_builtins.str]
|
|
117
|
-
:param pulumi.Input[_builtins.
|
|
118
|
-
|
|
119
|
-
:param pulumi.Input[_builtins.
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
124
|
+
:param pulumi.Input[_builtins.str] create_time: The creation time of the VBR.
|
|
125
|
+
:param pulumi.Input[_builtins.str] description: The description of the VBR switching group.
|
|
126
|
+
It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with 'http:// 'or 'https.
|
|
127
|
+
:param pulumi.Input[_builtins.bool] dry_run: Whether to PreCheck only this request. Value range:
|
|
128
|
+
- *true**: The check request is sent and the instance is not started. Check whether the required parameters, request format, and instance status are filled in. If the check does not pass, the corresponding error is returned. If the check passes, DRYRUN.SUCCESS is returned.
|
|
129
|
+
- *false** (default): Send a normal request and start the instance directly after passing the check.
|
|
130
|
+
:param pulumi.Input[_builtins.str] peer_vbr_id: The instance ID of another VBR in The VBR switching group.
|
|
131
|
+
:param pulumi.Input[_builtins.str] region_id: The ID of the region to which the VBR belongs.
|
|
132
|
+
:param pulumi.Input[_builtins.str] status: Status of VBR switching Group
|
|
133
|
+
:param pulumi.Input[_builtins.str] vbr_ha_name: VBR switch group name.
|
|
134
|
+
:param pulumi.Input[_builtins.str] vbr_id: The VBR instance ID.
|
|
135
|
+
"""
|
|
136
|
+
if create_time is not None:
|
|
137
|
+
pulumi.set(__self__, "create_time", create_time)
|
|
123
138
|
if description is not None:
|
|
124
139
|
pulumi.set(__self__, "description", description)
|
|
125
140
|
if dry_run is not None:
|
|
126
141
|
pulumi.set(__self__, "dry_run", dry_run)
|
|
127
142
|
if peer_vbr_id is not None:
|
|
128
143
|
pulumi.set(__self__, "peer_vbr_id", peer_vbr_id)
|
|
144
|
+
if region_id is not None:
|
|
145
|
+
pulumi.set(__self__, "region_id", region_id)
|
|
129
146
|
if status is not None:
|
|
130
147
|
pulumi.set(__self__, "status", status)
|
|
131
148
|
if vbr_ha_name is not None:
|
|
@@ -133,11 +150,24 @@ class _VbrHaState:
|
|
|
133
150
|
if vbr_id is not None:
|
|
134
151
|
pulumi.set(__self__, "vbr_id", vbr_id)
|
|
135
152
|
|
|
153
|
+
@_builtins.property
|
|
154
|
+
@pulumi.getter(name="createTime")
|
|
155
|
+
def create_time(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
156
|
+
"""
|
|
157
|
+
The creation time of the VBR.
|
|
158
|
+
"""
|
|
159
|
+
return pulumi.get(self, "create_time")
|
|
160
|
+
|
|
161
|
+
@create_time.setter
|
|
162
|
+
def create_time(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
163
|
+
pulumi.set(self, "create_time", value)
|
|
164
|
+
|
|
136
165
|
@_builtins.property
|
|
137
166
|
@pulumi.getter
|
|
138
167
|
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
139
168
|
"""
|
|
140
|
-
The description of the VBR switching group.
|
|
169
|
+
The description of the VBR switching group.
|
|
170
|
+
It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with 'http:// 'or 'https.
|
|
141
171
|
"""
|
|
142
172
|
return pulumi.get(self, "description")
|
|
143
173
|
|
|
@@ -149,7 +179,9 @@ class _VbrHaState:
|
|
|
149
179
|
@pulumi.getter(name="dryRun")
|
|
150
180
|
def dry_run(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
151
181
|
"""
|
|
152
|
-
|
|
182
|
+
Whether to PreCheck only this request. Value range:
|
|
183
|
+
- *true**: The check request is sent and the instance is not started. Check whether the required parameters, request format, and instance status are filled in. If the check does not pass, the corresponding error is returned. If the check passes, DRYRUN.SUCCESS is returned.
|
|
184
|
+
- *false** (default): Send a normal request and start the instance directly after passing the check.
|
|
153
185
|
"""
|
|
154
186
|
return pulumi.get(self, "dry_run")
|
|
155
187
|
|
|
@@ -161,7 +193,7 @@ class _VbrHaState:
|
|
|
161
193
|
@pulumi.getter(name="peerVbrId")
|
|
162
194
|
def peer_vbr_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
163
195
|
"""
|
|
164
|
-
The ID of
|
|
196
|
+
The instance ID of another VBR in The VBR switching group.
|
|
165
197
|
"""
|
|
166
198
|
return pulumi.get(self, "peer_vbr_id")
|
|
167
199
|
|
|
@@ -169,11 +201,23 @@ class _VbrHaState:
|
|
|
169
201
|
def peer_vbr_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
170
202
|
pulumi.set(self, "peer_vbr_id", value)
|
|
171
203
|
|
|
204
|
+
@_builtins.property
|
|
205
|
+
@pulumi.getter(name="regionId")
|
|
206
|
+
def region_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
207
|
+
"""
|
|
208
|
+
The ID of the region to which the VBR belongs.
|
|
209
|
+
"""
|
|
210
|
+
return pulumi.get(self, "region_id")
|
|
211
|
+
|
|
212
|
+
@region_id.setter
|
|
213
|
+
def region_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
214
|
+
pulumi.set(self, "region_id", value)
|
|
215
|
+
|
|
172
216
|
@_builtins.property
|
|
173
217
|
@pulumi.getter
|
|
174
218
|
def status(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
175
219
|
"""
|
|
176
|
-
|
|
220
|
+
Status of VBR switching Group
|
|
177
221
|
"""
|
|
178
222
|
return pulumi.get(self, "status")
|
|
179
223
|
|
|
@@ -185,7 +229,7 @@ class _VbrHaState:
|
|
|
185
229
|
@pulumi.getter(name="vbrHaName")
|
|
186
230
|
def vbr_ha_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
187
231
|
"""
|
|
188
|
-
|
|
232
|
+
VBR switch group name.
|
|
189
233
|
"""
|
|
190
234
|
return pulumi.get(self, "vbr_ha_name")
|
|
191
235
|
|
|
@@ -197,7 +241,7 @@ class _VbrHaState:
|
|
|
197
241
|
@pulumi.getter(name="vbrId")
|
|
198
242
|
def vbr_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
199
243
|
"""
|
|
200
|
-
The
|
|
244
|
+
The VBR instance ID.
|
|
201
245
|
"""
|
|
202
246
|
return pulumi.get(self, "vbr_id")
|
|
203
247
|
|
|
@@ -219,9 +263,11 @@ class VbrHa(pulumi.CustomResource):
|
|
|
219
263
|
vbr_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
220
264
|
__props__=None):
|
|
221
265
|
"""
|
|
222
|
-
Provides a
|
|
266
|
+
Provides a Express Connect Vbr Ha resource.
|
|
223
267
|
|
|
224
|
-
|
|
268
|
+
VBR switching Group.
|
|
269
|
+
|
|
270
|
+
For information about Express Connect Vbr Ha and how to use it, see [What is Vbr Ha](https://www.alibabacloud.com/help/doc-detail/212629.html).
|
|
225
271
|
|
|
226
272
|
> **NOTE:** Available since v1.151.0.
|
|
227
273
|
|
|
@@ -277,7 +323,7 @@ class VbrHa(pulumi.CustomResource):
|
|
|
277
323
|
|
|
278
324
|
## Import
|
|
279
325
|
|
|
280
|
-
|
|
326
|
+
Express Connect Vbr Ha can be imported using the id, e.g.
|
|
281
327
|
|
|
282
328
|
```sh
|
|
283
329
|
$ pulumi import alicloud:vpc/vbrHa:VbrHa example <id>
|
|
@@ -285,11 +331,14 @@ class VbrHa(pulumi.CustomResource):
|
|
|
285
331
|
|
|
286
332
|
:param str resource_name: The name of the resource.
|
|
287
333
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
288
|
-
:param pulumi.Input[_builtins.str] description: The description of the VBR switching group.
|
|
289
|
-
|
|
290
|
-
:param pulumi.Input[_builtins.
|
|
291
|
-
|
|
292
|
-
|
|
334
|
+
:param pulumi.Input[_builtins.str] description: The description of the VBR switching group.
|
|
335
|
+
It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with 'http:// 'or 'https.
|
|
336
|
+
:param pulumi.Input[_builtins.bool] dry_run: Whether to PreCheck only this request. Value range:
|
|
337
|
+
- *true**: The check request is sent and the instance is not started. Check whether the required parameters, request format, and instance status are filled in. If the check does not pass, the corresponding error is returned. If the check passes, DRYRUN.SUCCESS is returned.
|
|
338
|
+
- *false** (default): Send a normal request and start the instance directly after passing the check.
|
|
339
|
+
:param pulumi.Input[_builtins.str] peer_vbr_id: The instance ID of another VBR in The VBR switching group.
|
|
340
|
+
:param pulumi.Input[_builtins.str] vbr_ha_name: VBR switch group name.
|
|
341
|
+
:param pulumi.Input[_builtins.str] vbr_id: The VBR instance ID.
|
|
293
342
|
"""
|
|
294
343
|
...
|
|
295
344
|
@overload
|
|
@@ -298,9 +347,11 @@ class VbrHa(pulumi.CustomResource):
|
|
|
298
347
|
args: VbrHaArgs,
|
|
299
348
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
300
349
|
"""
|
|
301
|
-
Provides a
|
|
350
|
+
Provides a Express Connect Vbr Ha resource.
|
|
351
|
+
|
|
352
|
+
VBR switching Group.
|
|
302
353
|
|
|
303
|
-
For information about
|
|
354
|
+
For information about Express Connect Vbr Ha and how to use it, see [What is Vbr Ha](https://www.alibabacloud.com/help/doc-detail/212629.html).
|
|
304
355
|
|
|
305
356
|
> **NOTE:** Available since v1.151.0.
|
|
306
357
|
|
|
@@ -356,7 +407,7 @@ class VbrHa(pulumi.CustomResource):
|
|
|
356
407
|
|
|
357
408
|
## Import
|
|
358
409
|
|
|
359
|
-
|
|
410
|
+
Express Connect Vbr Ha can be imported using the id, e.g.
|
|
360
411
|
|
|
361
412
|
```sh
|
|
362
413
|
$ pulumi import alicloud:vpc/vbrHa:VbrHa example <id>
|
|
@@ -400,6 +451,8 @@ class VbrHa(pulumi.CustomResource):
|
|
|
400
451
|
if vbr_id is None and not opts.urn:
|
|
401
452
|
raise TypeError("Missing required property 'vbr_id'")
|
|
402
453
|
__props__.__dict__["vbr_id"] = vbr_id
|
|
454
|
+
__props__.__dict__["create_time"] = None
|
|
455
|
+
__props__.__dict__["region_id"] = None
|
|
403
456
|
__props__.__dict__["status"] = None
|
|
404
457
|
super(VbrHa, __self__).__init__(
|
|
405
458
|
'alicloud:vpc/vbrHa:VbrHa',
|
|
@@ -411,9 +464,11 @@ class VbrHa(pulumi.CustomResource):
|
|
|
411
464
|
def get(resource_name: str,
|
|
412
465
|
id: pulumi.Input[str],
|
|
413
466
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
467
|
+
create_time: Optional[pulumi.Input[_builtins.str]] = None,
|
|
414
468
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
|
415
469
|
dry_run: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
416
470
|
peer_vbr_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
471
|
+
region_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
417
472
|
status: Optional[pulumi.Input[_builtins.str]] = None,
|
|
418
473
|
vbr_ha_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
419
474
|
vbr_id: Optional[pulumi.Input[_builtins.str]] = None) -> 'VbrHa':
|
|
@@ -424,30 +479,46 @@ class VbrHa(pulumi.CustomResource):
|
|
|
424
479
|
:param str resource_name: The unique name of the resulting resource.
|
|
425
480
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
426
481
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
427
|
-
:param pulumi.Input[_builtins.str]
|
|
428
|
-
:param pulumi.Input[_builtins.
|
|
429
|
-
|
|
430
|
-
:param pulumi.Input[_builtins.
|
|
431
|
-
|
|
432
|
-
|
|
482
|
+
:param pulumi.Input[_builtins.str] create_time: The creation time of the VBR.
|
|
483
|
+
:param pulumi.Input[_builtins.str] description: The description of the VBR switching group.
|
|
484
|
+
It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with 'http:// 'or 'https.
|
|
485
|
+
:param pulumi.Input[_builtins.bool] dry_run: Whether to PreCheck only this request. Value range:
|
|
486
|
+
- *true**: The check request is sent and the instance is not started. Check whether the required parameters, request format, and instance status are filled in. If the check does not pass, the corresponding error is returned. If the check passes, DRYRUN.SUCCESS is returned.
|
|
487
|
+
- *false** (default): Send a normal request and start the instance directly after passing the check.
|
|
488
|
+
:param pulumi.Input[_builtins.str] peer_vbr_id: The instance ID of another VBR in The VBR switching group.
|
|
489
|
+
:param pulumi.Input[_builtins.str] region_id: The ID of the region to which the VBR belongs.
|
|
490
|
+
:param pulumi.Input[_builtins.str] status: Status of VBR switching Group
|
|
491
|
+
:param pulumi.Input[_builtins.str] vbr_ha_name: VBR switch group name.
|
|
492
|
+
:param pulumi.Input[_builtins.str] vbr_id: The VBR instance ID.
|
|
433
493
|
"""
|
|
434
494
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
435
495
|
|
|
436
496
|
__props__ = _VbrHaState.__new__(_VbrHaState)
|
|
437
497
|
|
|
498
|
+
__props__.__dict__["create_time"] = create_time
|
|
438
499
|
__props__.__dict__["description"] = description
|
|
439
500
|
__props__.__dict__["dry_run"] = dry_run
|
|
440
501
|
__props__.__dict__["peer_vbr_id"] = peer_vbr_id
|
|
502
|
+
__props__.__dict__["region_id"] = region_id
|
|
441
503
|
__props__.__dict__["status"] = status
|
|
442
504
|
__props__.__dict__["vbr_ha_name"] = vbr_ha_name
|
|
443
505
|
__props__.__dict__["vbr_id"] = vbr_id
|
|
444
506
|
return VbrHa(resource_name, opts=opts, __props__=__props__)
|
|
445
507
|
|
|
508
|
+
@_builtins.property
|
|
509
|
+
@pulumi.getter(name="createTime")
|
|
510
|
+
def create_time(self) -> pulumi.Output[_builtins.str]:
|
|
511
|
+
"""
|
|
512
|
+
The creation time of the VBR.
|
|
513
|
+
"""
|
|
514
|
+
return pulumi.get(self, "create_time")
|
|
515
|
+
|
|
446
516
|
@_builtins.property
|
|
447
517
|
@pulumi.getter
|
|
448
518
|
def description(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
449
519
|
"""
|
|
450
|
-
The description of the VBR switching group.
|
|
520
|
+
The description of the VBR switching group.
|
|
521
|
+
It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with 'http:// 'or 'https.
|
|
451
522
|
"""
|
|
452
523
|
return pulumi.get(self, "description")
|
|
453
524
|
|
|
@@ -455,7 +526,9 @@ class VbrHa(pulumi.CustomResource):
|
|
|
455
526
|
@pulumi.getter(name="dryRun")
|
|
456
527
|
def dry_run(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
457
528
|
"""
|
|
458
|
-
|
|
529
|
+
Whether to PreCheck only this request. Value range:
|
|
530
|
+
- *true**: The check request is sent and the instance is not started. Check whether the required parameters, request format, and instance status are filled in. If the check does not pass, the corresponding error is returned. If the check passes, DRYRUN.SUCCESS is returned.
|
|
531
|
+
- *false** (default): Send a normal request and start the instance directly after passing the check.
|
|
459
532
|
"""
|
|
460
533
|
return pulumi.get(self, "dry_run")
|
|
461
534
|
|
|
@@ -463,15 +536,23 @@ class VbrHa(pulumi.CustomResource):
|
|
|
463
536
|
@pulumi.getter(name="peerVbrId")
|
|
464
537
|
def peer_vbr_id(self) -> pulumi.Output[_builtins.str]:
|
|
465
538
|
"""
|
|
466
|
-
The ID of
|
|
539
|
+
The instance ID of another VBR in The VBR switching group.
|
|
467
540
|
"""
|
|
468
541
|
return pulumi.get(self, "peer_vbr_id")
|
|
469
542
|
|
|
543
|
+
@_builtins.property
|
|
544
|
+
@pulumi.getter(name="regionId")
|
|
545
|
+
def region_id(self) -> pulumi.Output[_builtins.str]:
|
|
546
|
+
"""
|
|
547
|
+
The ID of the region to which the VBR belongs.
|
|
548
|
+
"""
|
|
549
|
+
return pulumi.get(self, "region_id")
|
|
550
|
+
|
|
470
551
|
@_builtins.property
|
|
471
552
|
@pulumi.getter
|
|
472
553
|
def status(self) -> pulumi.Output[_builtins.str]:
|
|
473
554
|
"""
|
|
474
|
-
|
|
555
|
+
Status of VBR switching Group
|
|
475
556
|
"""
|
|
476
557
|
return pulumi.get(self, "status")
|
|
477
558
|
|
|
@@ -479,7 +560,7 @@ class VbrHa(pulumi.CustomResource):
|
|
|
479
560
|
@pulumi.getter(name="vbrHaName")
|
|
480
561
|
def vbr_ha_name(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
481
562
|
"""
|
|
482
|
-
|
|
563
|
+
VBR switch group name.
|
|
483
564
|
"""
|
|
484
565
|
return pulumi.get(self, "vbr_ha_name")
|
|
485
566
|
|
|
@@ -487,7 +568,7 @@ class VbrHa(pulumi.CustomResource):
|
|
|
487
568
|
@pulumi.getter(name="vbrId")
|
|
488
569
|
def vbr_id(self) -> pulumi.Output[_builtins.str]:
|
|
489
570
|
"""
|
|
490
|
-
The
|
|
571
|
+
The VBR instance ID.
|
|
491
572
|
"""
|
|
492
573
|
return pulumi.get(self, "vbr_id")
|
|
493
574
|
|