pulumi-alicloud 3.73.0a1736850863__py3-none-any.whl → 3.74.0a1737090935__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 +59 -0
- pulumi_alicloud/alb/__init__.py +1 -0
- pulumi_alicloud/alb/_inputs.py +6 -6
- pulumi_alicloud/alb/a_script.py +116 -98
- pulumi_alicloud/alb/load_balancer_access_log_config_attachment.py +303 -0
- pulumi_alicloud/alb/outputs.py +4 -4
- pulumi_alicloud/alikafka/instance.py +188 -70
- pulumi_alicloud/amqp/instance.py +77 -28
- pulumi_alicloud/bastionhost/_inputs.py +40 -38
- pulumi_alicloud/bastionhost/get_instances.py +6 -22
- pulumi_alicloud/bastionhost/outputs.py +60 -49
- pulumi_alicloud/cen/instance_grant.py +4 -0
- pulumi_alicloud/cloudcontrol/__init__.py +12 -0
- pulumi_alicloud/cloudcontrol/get_prices.py +199 -0
- pulumi_alicloud/cloudcontrol/get_products.py +187 -0
- pulumi_alicloud/cloudcontrol/get_resource_types.py +178 -0
- pulumi_alicloud/cloudcontrol/outputs.py +688 -0
- pulumi_alicloud/cloudcontrol/resource.py +407 -0
- pulumi_alicloud/cms/_inputs.py +21 -15
- pulumi_alicloud/cms/alarm.py +7 -7
- pulumi_alicloud/cms/outputs.py +14 -10
- pulumi_alicloud/cs/get_edge_kubernetes_clusters.py +4 -2
- pulumi_alicloud/cs/get_managed_kubernetes_clusters.py +2 -0
- pulumi_alicloud/cs/kubernetes.py +14 -14
- pulumi_alicloud/cs/managed_kubernetes.py +137 -47
- pulumi_alicloud/dataworks/__init__.py +4 -0
- pulumi_alicloud/dataworks/_inputs.py +1534 -0
- pulumi_alicloud/dataworks/di_alarm_rule.py +708 -0
- pulumi_alicloud/dataworks/di_job.py +1005 -0
- pulumi_alicloud/dataworks/dw_resource_group.py +703 -0
- pulumi_alicloud/dataworks/network.py +331 -0
- pulumi_alicloud/dataworks/outputs.py +1247 -0
- pulumi_alicloud/dcdn/waf_rule.py +14 -14
- pulumi_alicloud/dns/get_alidns_domains.py +7 -2
- pulumi_alicloud/dns/outputs.py +8 -0
- pulumi_alicloud/ecs/ecs_launch_template.py +122 -0
- pulumi_alicloud/ecs/ecs_network_interface.py +14 -14
- pulumi_alicloud/ecs/ecs_session_manager_status.py +18 -18
- pulumi_alicloud/ecs/instance.py +7 -7
- pulumi_alicloud/ecs/launch_template.py +88 -0
- pulumi_alicloud/fc/custom_domain.py +2 -2
- pulumi_alicloud/fc/function.py +32 -4
- pulumi_alicloud/fc/v2_function.py +20 -0
- pulumi_alicloud/hbr/__init__.py +1 -0
- pulumi_alicloud/hbr/cross_account.py +338 -0
- pulumi_alicloud/ims/oidc_provider.py +28 -0
- pulumi_alicloud/log/resource_record.py +42 -26
- pulumi_alicloud/message/service_queue.py +106 -59
- pulumi_alicloud/message/service_topic.py +182 -37
- pulumi_alicloud/mongodb/account.py +138 -163
- pulumi_alicloud/oos/secret_parameter.py +84 -9
- pulumi_alicloud/oss/bucket.py +1 -1
- pulumi_alicloud/oss/bucket_policy.py +2 -4
- pulumi_alicloud/oss/bucket_referer.py +2 -4
- pulumi_alicloud/oss/get_buckets.py +16 -2
- pulumi_alicloud/oss/outputs.py +18 -17
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/sae/application.py +84 -7
- pulumi_alicloud/sls/collection_policy.py +2 -2
- pulumi_alicloud/vpc/__init__.py +5 -0
- pulumi_alicloud/vpc/get_ipam_ipam_pool_allocations.py +295 -0
- pulumi_alicloud/vpc/get_ipam_ipam_pool_cidrs.py +196 -0
- pulumi_alicloud/vpc/get_ipam_ipam_pools.py +353 -0
- pulumi_alicloud/vpc/get_ipam_ipam_scopes.py +333 -0
- pulumi_alicloud/vpc/get_ipam_ipams.py +291 -0
- pulumi_alicloud/vpc/get_networks.py +3 -0
- pulumi_alicloud/vpc/nat_gateway.py +145 -7
- pulumi_alicloud/vpc/outputs.py +777 -0
- pulumi_alicloud/vpc/snat_entry.py +107 -48
- pulumi_alicloud/vpn/_inputs.py +96 -72
- pulumi_alicloud/vpn/connection.py +24 -28
- pulumi_alicloud/vpn/outputs.py +64 -48
- pulumi_alicloud/yundun/_inputs.py +26 -24
- pulumi_alicloud/yundun/outputs.py +37 -22
- {pulumi_alicloud-3.73.0a1736850863.dist-info → pulumi_alicloud-3.74.0a1737090935.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.73.0a1736850863.dist-info → pulumi_alicloud-3.74.0a1737090935.dist-info}/RECORD +78 -61
- {pulumi_alicloud-3.73.0a1736850863.dist-info → pulumi_alicloud-3.74.0a1737090935.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.73.0a1736850863.dist-info → pulumi_alicloud-3.74.0a1737090935.dist-info}/top_level.txt +0 -0
pulumi_alicloud/vpn/outputs.py
CHANGED
|
@@ -80,11 +80,14 @@ class ConnectionBgpConfig(dict):
|
|
|
80
80
|
status: Optional[str] = None,
|
|
81
81
|
tunnel_cidr: Optional[str] = None):
|
|
82
82
|
"""
|
|
83
|
-
:param bool enable:
|
|
84
|
-
:param str local_asn:
|
|
85
|
-
|
|
83
|
+
:param bool enable: specifies whether to enable BGP. Valid values: true and false (default).
|
|
84
|
+
:param str local_asn: the autonomous system number (ASN) on the Alibaba Cloud side.
|
|
85
|
+
Valid values: 1 to 4294967295. Default value: 45104. You can enter a value in two segments separated by a period (.).
|
|
86
|
+
Each segment is 16 bits in length. Enter the number in each segment in decimal format.
|
|
87
|
+
For example, if you enter 123.456, the ASN is 8061384. The ASN is calculated by using the following formula: 123 × 65536 + 456 = 8061384.
|
|
88
|
+
:param str local_bgp_ip: the BGP address on the Alibaba Cloud side. It must be an IP address that falls within the CIDR block of the IPsec tunnel.
|
|
86
89
|
:param str status: The negotiation status of Tunnel.
|
|
87
|
-
:param str tunnel_cidr:
|
|
90
|
+
:param str tunnel_cidr: The CIDR block of the IPsec tunnel. The CIDR block must belong to 169.254.0.0/16 and the subnet mask is 30 bits in length.
|
|
88
91
|
"""
|
|
89
92
|
if enable is not None:
|
|
90
93
|
pulumi.set(__self__, "enable", enable)
|
|
@@ -101,7 +104,7 @@ class ConnectionBgpConfig(dict):
|
|
|
101
104
|
@pulumi.getter
|
|
102
105
|
def enable(self) -> Optional[bool]:
|
|
103
106
|
"""
|
|
104
|
-
|
|
107
|
+
specifies whether to enable BGP. Valid values: true and false (default).
|
|
105
108
|
"""
|
|
106
109
|
return pulumi.get(self, "enable")
|
|
107
110
|
|
|
@@ -109,7 +112,10 @@ class ConnectionBgpConfig(dict):
|
|
|
109
112
|
@pulumi.getter(name="localAsn")
|
|
110
113
|
def local_asn(self) -> Optional[str]:
|
|
111
114
|
"""
|
|
112
|
-
|
|
115
|
+
the autonomous system number (ASN) on the Alibaba Cloud side.
|
|
116
|
+
Valid values: 1 to 4294967295. Default value: 45104. You can enter a value in two segments separated by a period (.).
|
|
117
|
+
Each segment is 16 bits in length. Enter the number in each segment in decimal format.
|
|
118
|
+
For example, if you enter 123.456, the ASN is 8061384. The ASN is calculated by using the following formula: 123 × 65536 + 456 = 8061384.
|
|
113
119
|
"""
|
|
114
120
|
return pulumi.get(self, "local_asn")
|
|
115
121
|
|
|
@@ -117,7 +123,7 @@ class ConnectionBgpConfig(dict):
|
|
|
117
123
|
@pulumi.getter(name="localBgpIp")
|
|
118
124
|
def local_bgp_ip(self) -> Optional[str]:
|
|
119
125
|
"""
|
|
120
|
-
|
|
126
|
+
the BGP address on the Alibaba Cloud side. It must be an IP address that falls within the CIDR block of the IPsec tunnel.
|
|
121
127
|
"""
|
|
122
128
|
return pulumi.get(self, "local_bgp_ip")
|
|
123
129
|
|
|
@@ -133,7 +139,7 @@ class ConnectionBgpConfig(dict):
|
|
|
133
139
|
@pulumi.getter(name="tunnelCidr")
|
|
134
140
|
def tunnel_cidr(self) -> Optional[str]:
|
|
135
141
|
"""
|
|
136
|
-
|
|
142
|
+
The CIDR block of the IPsec tunnel. The CIDR block must belong to 169.254.0.0/16 and the subnet mask is 30 bits in length.
|
|
137
143
|
"""
|
|
138
144
|
return pulumi.get(self, "tunnel_cidr")
|
|
139
145
|
|
|
@@ -147,11 +153,11 @@ class ConnectionHealthCheckConfig(dict):
|
|
|
147
153
|
retry: Optional[int] = None,
|
|
148
154
|
sip: Optional[str] = None):
|
|
149
155
|
"""
|
|
150
|
-
:param str dip:
|
|
151
|
-
:param bool enable:
|
|
152
|
-
:param int interval:
|
|
153
|
-
:param int retry:
|
|
154
|
-
:param str sip:
|
|
156
|
+
:param str dip: the destination IP address configured for health checks.
|
|
157
|
+
:param bool enable: specifies whether to enable health checks. Valid values: true and false. Default value: false.
|
|
158
|
+
:param int interval: the time interval of health check retries. Unit: seconds. Default value: 3.
|
|
159
|
+
:param int retry: the maximum number of health check retries. Default value: 3.
|
|
160
|
+
:param str sip: the source IP address that is used for health checks.
|
|
155
161
|
"""
|
|
156
162
|
if dip is not None:
|
|
157
163
|
pulumi.set(__self__, "dip", dip)
|
|
@@ -168,7 +174,7 @@ class ConnectionHealthCheckConfig(dict):
|
|
|
168
174
|
@pulumi.getter
|
|
169
175
|
def dip(self) -> Optional[str]:
|
|
170
176
|
"""
|
|
171
|
-
|
|
177
|
+
the destination IP address configured for health checks.
|
|
172
178
|
"""
|
|
173
179
|
return pulumi.get(self, "dip")
|
|
174
180
|
|
|
@@ -176,7 +182,7 @@ class ConnectionHealthCheckConfig(dict):
|
|
|
176
182
|
@pulumi.getter
|
|
177
183
|
def enable(self) -> Optional[bool]:
|
|
178
184
|
"""
|
|
179
|
-
|
|
185
|
+
specifies whether to enable health checks. Valid values: true and false. Default value: false.
|
|
180
186
|
"""
|
|
181
187
|
return pulumi.get(self, "enable")
|
|
182
188
|
|
|
@@ -184,7 +190,7 @@ class ConnectionHealthCheckConfig(dict):
|
|
|
184
190
|
@pulumi.getter
|
|
185
191
|
def interval(self) -> Optional[int]:
|
|
186
192
|
"""
|
|
187
|
-
|
|
193
|
+
the time interval of health check retries. Unit: seconds. Default value: 3.
|
|
188
194
|
"""
|
|
189
195
|
return pulumi.get(self, "interval")
|
|
190
196
|
|
|
@@ -192,7 +198,7 @@ class ConnectionHealthCheckConfig(dict):
|
|
|
192
198
|
@pulumi.getter
|
|
193
199
|
def retry(self) -> Optional[int]:
|
|
194
200
|
"""
|
|
195
|
-
|
|
201
|
+
the maximum number of health check retries. Default value: 3.
|
|
196
202
|
"""
|
|
197
203
|
return pulumi.get(self, "retry")
|
|
198
204
|
|
|
@@ -200,7 +206,7 @@ class ConnectionHealthCheckConfig(dict):
|
|
|
200
206
|
@pulumi.getter
|
|
201
207
|
def sip(self) -> Optional[str]:
|
|
202
208
|
"""
|
|
203
|
-
|
|
209
|
+
the source IP address that is used for health checks.
|
|
204
210
|
"""
|
|
205
211
|
return pulumi.get(self, "sip")
|
|
206
212
|
|
|
@@ -249,15 +255,18 @@ class ConnectionIkeConfig(dict):
|
|
|
249
255
|
ike_version: Optional[str] = None,
|
|
250
256
|
psk: Optional[str] = None):
|
|
251
257
|
"""
|
|
252
|
-
:param str ike_auth_alg:
|
|
253
|
-
:param str ike_enc_alg:
|
|
254
|
-
:param int ike_lifetime:
|
|
255
|
-
:param str ike_local_id:
|
|
256
|
-
:param str ike_mode:
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
:param str
|
|
260
|
-
:param str
|
|
258
|
+
:param str ike_auth_alg: the authentication algorithm that is used in Phase 1 negotiations. Valid values: md5, sha1, sha2
|
|
259
|
+
:param str ike_enc_alg: the encryption algorithm that is used in Phase 1 negotiations. Valid values: aes, aes192, aes256, des, and 3des. Default value: aes.
|
|
260
|
+
:param int ike_lifetime: the SA lifetime as a result of Phase 1 negotiations. Unit: seconds. Valid values: 0 to 86400. Default value: 86400.
|
|
261
|
+
:param str ike_local_id: the identifier of the VPN gateway. It can contain at most 100 characters. The default value is the IP address of the VPN gateway.
|
|
262
|
+
:param str ike_mode: the negotiation mode of IKE. Valid values: main and aggressive. Default value: main.
|
|
263
|
+
- main: This mode offers higher security during negotiations.
|
|
264
|
+
- aggressive: This mode supports faster negotiations and a higher success rate.
|
|
265
|
+
:param str ike_pfs: the Diffie-Hellman key exchange algorithm that is used in Phase 1 negotiations. Valid values: group1, group2, group5, and group14. Default value: group2.
|
|
266
|
+
:param str ike_remote_id: the identifier of the customer gateway. It can contain at most 100 characters. The default value is the IP address of the customer gateway.
|
|
267
|
+
:param str ike_version: the version of the Internet Key Exchange (IKE) protocol. Valid values: ikev1 and ikev2. Default value: ikev1.
|
|
268
|
+
Compared with IKEv1, IKEv2 simplifies the security association (SA) negotiation process and provides better support for scenarios with multiple CIDR blocks.
|
|
269
|
+
:param str psk: the pre-shared key that is used for identity authentication between the VPN gateway and the on-premises data center. The key must be 1 to 100 characters in length and can contain digits, letters, and the following special characters: ~!\\`@#$%^&*()_-+={}[]|;:',.<>/? If you do not specify a pre-shared key, the system randomly generates a 16-bit string as the pre-shared key. You can call the DescribeVpnConnection operation to query the pre-shared key that is automatically generated by the system.
|
|
261
270
|
"""
|
|
262
271
|
if ike_auth_alg is not None:
|
|
263
272
|
pulumi.set(__self__, "ike_auth_alg", ike_auth_alg)
|
|
@@ -282,7 +291,7 @@ class ConnectionIkeConfig(dict):
|
|
|
282
291
|
@pulumi.getter(name="ikeAuthAlg")
|
|
283
292
|
def ike_auth_alg(self) -> Optional[str]:
|
|
284
293
|
"""
|
|
285
|
-
|
|
294
|
+
the authentication algorithm that is used in Phase 1 negotiations. Valid values: md5, sha1, sha2
|
|
286
295
|
"""
|
|
287
296
|
return pulumi.get(self, "ike_auth_alg")
|
|
288
297
|
|
|
@@ -290,7 +299,7 @@ class ConnectionIkeConfig(dict):
|
|
|
290
299
|
@pulumi.getter(name="ikeEncAlg")
|
|
291
300
|
def ike_enc_alg(self) -> Optional[str]:
|
|
292
301
|
"""
|
|
293
|
-
|
|
302
|
+
the encryption algorithm that is used in Phase 1 negotiations. Valid values: aes, aes192, aes256, des, and 3des. Default value: aes.
|
|
294
303
|
"""
|
|
295
304
|
return pulumi.get(self, "ike_enc_alg")
|
|
296
305
|
|
|
@@ -298,7 +307,7 @@ class ConnectionIkeConfig(dict):
|
|
|
298
307
|
@pulumi.getter(name="ikeLifetime")
|
|
299
308
|
def ike_lifetime(self) -> Optional[int]:
|
|
300
309
|
"""
|
|
301
|
-
|
|
310
|
+
the SA lifetime as a result of Phase 1 negotiations. Unit: seconds. Valid values: 0 to 86400. Default value: 86400.
|
|
302
311
|
"""
|
|
303
312
|
return pulumi.get(self, "ike_lifetime")
|
|
304
313
|
|
|
@@ -306,7 +315,7 @@ class ConnectionIkeConfig(dict):
|
|
|
306
315
|
@pulumi.getter(name="ikeLocalId")
|
|
307
316
|
def ike_local_id(self) -> Optional[str]:
|
|
308
317
|
"""
|
|
309
|
-
|
|
318
|
+
the identifier of the VPN gateway. It can contain at most 100 characters. The default value is the IP address of the VPN gateway.
|
|
310
319
|
"""
|
|
311
320
|
return pulumi.get(self, "ike_local_id")
|
|
312
321
|
|
|
@@ -314,7 +323,9 @@ class ConnectionIkeConfig(dict):
|
|
|
314
323
|
@pulumi.getter(name="ikeMode")
|
|
315
324
|
def ike_mode(self) -> Optional[str]:
|
|
316
325
|
"""
|
|
317
|
-
|
|
326
|
+
the negotiation mode of IKE. Valid values: main and aggressive. Default value: main.
|
|
327
|
+
- main: This mode offers higher security during negotiations.
|
|
328
|
+
- aggressive: This mode supports faster negotiations and a higher success rate.
|
|
318
329
|
"""
|
|
319
330
|
return pulumi.get(self, "ike_mode")
|
|
320
331
|
|
|
@@ -322,7 +333,7 @@ class ConnectionIkeConfig(dict):
|
|
|
322
333
|
@pulumi.getter(name="ikePfs")
|
|
323
334
|
def ike_pfs(self) -> Optional[str]:
|
|
324
335
|
"""
|
|
325
|
-
|
|
336
|
+
the Diffie-Hellman key exchange algorithm that is used in Phase 1 negotiations. Valid values: group1, group2, group5, and group14. Default value: group2.
|
|
326
337
|
"""
|
|
327
338
|
return pulumi.get(self, "ike_pfs")
|
|
328
339
|
|
|
@@ -330,7 +341,7 @@ class ConnectionIkeConfig(dict):
|
|
|
330
341
|
@pulumi.getter(name="ikeRemoteId")
|
|
331
342
|
def ike_remote_id(self) -> Optional[str]:
|
|
332
343
|
"""
|
|
333
|
-
|
|
344
|
+
the identifier of the customer gateway. It can contain at most 100 characters. The default value is the IP address of the customer gateway.
|
|
334
345
|
"""
|
|
335
346
|
return pulumi.get(self, "ike_remote_id")
|
|
336
347
|
|
|
@@ -338,7 +349,8 @@ class ConnectionIkeConfig(dict):
|
|
|
338
349
|
@pulumi.getter(name="ikeVersion")
|
|
339
350
|
def ike_version(self) -> Optional[str]:
|
|
340
351
|
"""
|
|
341
|
-
IKE
|
|
352
|
+
the version of the Internet Key Exchange (IKE) protocol. Valid values: ikev1 and ikev2. Default value: ikev1.
|
|
353
|
+
Compared with IKEv1, IKEv2 simplifies the security association (SA) negotiation process and provides better support for scenarios with multiple CIDR blocks.
|
|
342
354
|
"""
|
|
343
355
|
return pulumi.get(self, "ike_version")
|
|
344
356
|
|
|
@@ -346,7 +358,7 @@ class ConnectionIkeConfig(dict):
|
|
|
346
358
|
@pulumi.getter
|
|
347
359
|
def psk(self) -> Optional[str]:
|
|
348
360
|
"""
|
|
349
|
-
|
|
361
|
+
the pre-shared key that is used for identity authentication between the VPN gateway and the on-premises data center. The key must be 1 to 100 characters in length and can contain digits, letters, and the following special characters: ~!\\`@#$%^&*()_-+={}[]|;:',.<>/? If you do not specify a pre-shared key, the system randomly generates a 16-bit string as the pre-shared key. You can call the DescribeVpnConnection operation to query the pre-shared key that is automatically generated by the system.
|
|
350
362
|
"""
|
|
351
363
|
return pulumi.get(self, "psk")
|
|
352
364
|
|
|
@@ -382,10 +394,10 @@ class ConnectionIpsecConfig(dict):
|
|
|
382
394
|
ipsec_lifetime: Optional[int] = None,
|
|
383
395
|
ipsec_pfs: Optional[str] = None):
|
|
384
396
|
"""
|
|
385
|
-
:param str ipsec_auth_alg:
|
|
386
|
-
:param str ipsec_enc_alg:
|
|
387
|
-
:param int ipsec_lifetime:
|
|
388
|
-
:param str ipsec_pfs: DH
|
|
397
|
+
:param str ipsec_auth_alg: the authentication algorithm that is used in Phase 2 negotiations. Valid values: md5, sha1, sha256, sha384, and sha512. Default value: md5.
|
|
398
|
+
:param str ipsec_enc_alg: the encryption algorithm that is used in Phase 2 negotiations. Valid values: aes, aes192, aes256, des, and 3des. Default value: aes.
|
|
399
|
+
:param int ipsec_lifetime: the SA lifetime that is determined by Phase 2 negotiations. Unit: seconds. Valid values: 0 to 86400. Default value: 86400.
|
|
400
|
+
:param str ipsec_pfs: the DH key exchange algorithm that is used in Phase 2 negotiations. Valid values: disabled, group1, group2, group5, and group14. Default value: group2.
|
|
389
401
|
"""
|
|
390
402
|
if ipsec_auth_alg is not None:
|
|
391
403
|
pulumi.set(__self__, "ipsec_auth_alg", ipsec_auth_alg)
|
|
@@ -400,7 +412,7 @@ class ConnectionIpsecConfig(dict):
|
|
|
400
412
|
@pulumi.getter(name="ipsecAuthAlg")
|
|
401
413
|
def ipsec_auth_alg(self) -> Optional[str]:
|
|
402
414
|
"""
|
|
403
|
-
|
|
415
|
+
the authentication algorithm that is used in Phase 2 negotiations. Valid values: md5, sha1, sha256, sha384, and sha512. Default value: md5.
|
|
404
416
|
"""
|
|
405
417
|
return pulumi.get(self, "ipsec_auth_alg")
|
|
406
418
|
|
|
@@ -408,7 +420,7 @@ class ConnectionIpsecConfig(dict):
|
|
|
408
420
|
@pulumi.getter(name="ipsecEncAlg")
|
|
409
421
|
def ipsec_enc_alg(self) -> Optional[str]:
|
|
410
422
|
"""
|
|
411
|
-
|
|
423
|
+
the encryption algorithm that is used in Phase 2 negotiations. Valid values: aes, aes192, aes256, des, and 3des. Default value: aes.
|
|
412
424
|
"""
|
|
413
425
|
return pulumi.get(self, "ipsec_enc_alg")
|
|
414
426
|
|
|
@@ -416,7 +428,7 @@ class ConnectionIpsecConfig(dict):
|
|
|
416
428
|
@pulumi.getter(name="ipsecLifetime")
|
|
417
429
|
def ipsec_lifetime(self) -> Optional[int]:
|
|
418
430
|
"""
|
|
419
|
-
|
|
431
|
+
the SA lifetime that is determined by Phase 2 negotiations. Unit: seconds. Valid values: 0 to 86400. Default value: 86400.
|
|
420
432
|
"""
|
|
421
433
|
return pulumi.get(self, "ipsec_lifetime")
|
|
422
434
|
|
|
@@ -424,7 +436,7 @@ class ConnectionIpsecConfig(dict):
|
|
|
424
436
|
@pulumi.getter(name="ipsecPfs")
|
|
425
437
|
def ipsec_pfs(self) -> Optional[str]:
|
|
426
438
|
"""
|
|
427
|
-
DH
|
|
439
|
+
the DH key exchange algorithm that is used in Phase 2 negotiations. Valid values: disabled, group1, group2, group5, and group14. Default value: group2.
|
|
428
440
|
"""
|
|
429
441
|
return pulumi.get(self, "ipsec_pfs")
|
|
430
442
|
|
|
@@ -751,8 +763,10 @@ class ConnectionTunnelOptionsSpecificationTunnelIkeConfig(dict):
|
|
|
751
763
|
psk: Optional[str] = None,
|
|
752
764
|
remote_id: Optional[str] = None):
|
|
753
765
|
"""
|
|
754
|
-
:param str local_id: The
|
|
755
|
-
|
|
766
|
+
:param str local_id: The identifier of the tunnel on the Alibaba Cloud side, which is used in Phase 1 negotiations. It can contain at most 100 characters. The default value is the IP address of the tunnel.
|
|
767
|
+
LocalId supports fully qualified domain names (FQDNs). If you use an FQDN, we recommend that you set the negotiation mode to aggressive.
|
|
768
|
+
:param str remote_id: The identifier of the tunnel peer, which is used in Phase 1 negotiations. It can contain at most 100 characters. The default value is the IP address of the customer gateway that is associated with the tunnel.
|
|
769
|
+
RemoteId supports FQDNs. If you use an FQDN, we recommend that you set the negotiation mode to aggressive.
|
|
756
770
|
"""
|
|
757
771
|
if ike_auth_alg is not None:
|
|
758
772
|
pulumi.set(__self__, "ike_auth_alg", ike_auth_alg)
|
|
@@ -807,7 +821,8 @@ class ConnectionTunnelOptionsSpecificationTunnelIkeConfig(dict):
|
|
|
807
821
|
@pulumi.getter(name="localId")
|
|
808
822
|
def local_id(self) -> Optional[str]:
|
|
809
823
|
"""
|
|
810
|
-
The
|
|
824
|
+
The identifier of the tunnel on the Alibaba Cloud side, which is used in Phase 1 negotiations. It can contain at most 100 characters. The default value is the IP address of the tunnel.
|
|
825
|
+
LocalId supports fully qualified domain names (FQDNs). If you use an FQDN, we recommend that you set the negotiation mode to aggressive.
|
|
811
826
|
"""
|
|
812
827
|
return pulumi.get(self, "local_id")
|
|
813
828
|
|
|
@@ -820,7 +835,8 @@ class ConnectionTunnelOptionsSpecificationTunnelIkeConfig(dict):
|
|
|
820
835
|
@pulumi.getter(name="remoteId")
|
|
821
836
|
def remote_id(self) -> Optional[str]:
|
|
822
837
|
"""
|
|
823
|
-
|
|
838
|
+
The identifier of the tunnel peer, which is used in Phase 1 negotiations. It can contain at most 100 characters. The default value is the IP address of the customer gateway that is associated with the tunnel.
|
|
839
|
+
RemoteId supports FQDNs. If you use an FQDN, we recommend that you set the negotiation mode to aggressive.
|
|
824
840
|
"""
|
|
825
841
|
return pulumi.get(self, "remote_id")
|
|
826
842
|
|
|
@@ -29,13 +29,13 @@ if not MYPY:
|
|
|
29
29
|
base_dn: pulumi.Input[str]
|
|
30
30
|
domain: pulumi.Input[str]
|
|
31
31
|
is_ssl: pulumi.Input[bool]
|
|
32
|
-
password: pulumi.Input[str]
|
|
33
32
|
port: pulumi.Input[int]
|
|
34
33
|
server: pulumi.Input[str]
|
|
35
34
|
email_mapping: NotRequired[pulumi.Input[str]]
|
|
36
35
|
filter: NotRequired[pulumi.Input[str]]
|
|
37
36
|
mobile_mapping: NotRequired[pulumi.Input[str]]
|
|
38
37
|
name_mapping: NotRequired[pulumi.Input[str]]
|
|
38
|
+
password: NotRequired[pulumi.Input[str]]
|
|
39
39
|
standby_server: NotRequired[pulumi.Input[str]]
|
|
40
40
|
elif False:
|
|
41
41
|
BastionHostInstanceAdAuthServerArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -47,19 +47,18 @@ class BastionHostInstanceAdAuthServerArgs:
|
|
|
47
47
|
base_dn: pulumi.Input[str],
|
|
48
48
|
domain: pulumi.Input[str],
|
|
49
49
|
is_ssl: pulumi.Input[bool],
|
|
50
|
-
password: pulumi.Input[str],
|
|
51
50
|
port: pulumi.Input[int],
|
|
52
51
|
server: pulumi.Input[str],
|
|
53
52
|
email_mapping: Optional[pulumi.Input[str]] = None,
|
|
54
53
|
filter: Optional[pulumi.Input[str]] = None,
|
|
55
54
|
mobile_mapping: Optional[pulumi.Input[str]] = None,
|
|
56
55
|
name_mapping: Optional[pulumi.Input[str]] = None,
|
|
56
|
+
password: Optional[pulumi.Input[str]] = None,
|
|
57
57
|
standby_server: Optional[pulumi.Input[str]] = None):
|
|
58
58
|
pulumi.set(__self__, "account", account)
|
|
59
59
|
pulumi.set(__self__, "base_dn", base_dn)
|
|
60
60
|
pulumi.set(__self__, "domain", domain)
|
|
61
61
|
pulumi.set(__self__, "is_ssl", is_ssl)
|
|
62
|
-
pulumi.set(__self__, "password", password)
|
|
63
62
|
pulumi.set(__self__, "port", port)
|
|
64
63
|
pulumi.set(__self__, "server", server)
|
|
65
64
|
if email_mapping is not None:
|
|
@@ -70,6 +69,8 @@ class BastionHostInstanceAdAuthServerArgs:
|
|
|
70
69
|
pulumi.set(__self__, "mobile_mapping", mobile_mapping)
|
|
71
70
|
if name_mapping is not None:
|
|
72
71
|
pulumi.set(__self__, "name_mapping", name_mapping)
|
|
72
|
+
if password is not None:
|
|
73
|
+
pulumi.set(__self__, "password", password)
|
|
73
74
|
if standby_server is not None:
|
|
74
75
|
pulumi.set(__self__, "standby_server", standby_server)
|
|
75
76
|
|
|
@@ -109,15 +110,6 @@ class BastionHostInstanceAdAuthServerArgs:
|
|
|
109
110
|
def is_ssl(self, value: pulumi.Input[bool]):
|
|
110
111
|
pulumi.set(self, "is_ssl", value)
|
|
111
112
|
|
|
112
|
-
@property
|
|
113
|
-
@pulumi.getter
|
|
114
|
-
def password(self) -> pulumi.Input[str]:
|
|
115
|
-
return pulumi.get(self, "password")
|
|
116
|
-
|
|
117
|
-
@password.setter
|
|
118
|
-
def password(self, value: pulumi.Input[str]):
|
|
119
|
-
pulumi.set(self, "password", value)
|
|
120
|
-
|
|
121
113
|
@property
|
|
122
114
|
@pulumi.getter
|
|
123
115
|
def port(self) -> pulumi.Input[int]:
|
|
@@ -172,6 +164,15 @@ class BastionHostInstanceAdAuthServerArgs:
|
|
|
172
164
|
def name_mapping(self, value: Optional[pulumi.Input[str]]):
|
|
173
165
|
pulumi.set(self, "name_mapping", value)
|
|
174
166
|
|
|
167
|
+
@property
|
|
168
|
+
@pulumi.getter
|
|
169
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
|
170
|
+
return pulumi.get(self, "password")
|
|
171
|
+
|
|
172
|
+
@password.setter
|
|
173
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
|
174
|
+
pulumi.set(self, "password", value)
|
|
175
|
+
|
|
175
176
|
@property
|
|
176
177
|
@pulumi.getter(name="standbyServer")
|
|
177
178
|
def standby_server(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -186,7 +187,6 @@ if not MYPY:
|
|
|
186
187
|
class BastionHostInstanceLdapAuthServerArgsDict(TypedDict):
|
|
187
188
|
account: pulumi.Input[str]
|
|
188
189
|
base_dn: pulumi.Input[str]
|
|
189
|
-
password: pulumi.Input[str]
|
|
190
190
|
port: pulumi.Input[int]
|
|
191
191
|
server: pulumi.Input[str]
|
|
192
192
|
email_mapping: NotRequired[pulumi.Input[str]]
|
|
@@ -195,6 +195,7 @@ if not MYPY:
|
|
|
195
195
|
login_name_mapping: NotRequired[pulumi.Input[str]]
|
|
196
196
|
mobile_mapping: NotRequired[pulumi.Input[str]]
|
|
197
197
|
name_mapping: NotRequired[pulumi.Input[str]]
|
|
198
|
+
password: NotRequired[pulumi.Input[str]]
|
|
198
199
|
standby_server: NotRequired[pulumi.Input[str]]
|
|
199
200
|
elif False:
|
|
200
201
|
BastionHostInstanceLdapAuthServerArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -204,7 +205,6 @@ class BastionHostInstanceLdapAuthServerArgs:
|
|
|
204
205
|
def __init__(__self__, *,
|
|
205
206
|
account: pulumi.Input[str],
|
|
206
207
|
base_dn: pulumi.Input[str],
|
|
207
|
-
password: pulumi.Input[str],
|
|
208
208
|
port: pulumi.Input[int],
|
|
209
209
|
server: pulumi.Input[str],
|
|
210
210
|
email_mapping: Optional[pulumi.Input[str]] = None,
|
|
@@ -213,10 +213,10 @@ class BastionHostInstanceLdapAuthServerArgs:
|
|
|
213
213
|
login_name_mapping: Optional[pulumi.Input[str]] = None,
|
|
214
214
|
mobile_mapping: Optional[pulumi.Input[str]] = None,
|
|
215
215
|
name_mapping: Optional[pulumi.Input[str]] = None,
|
|
216
|
+
password: Optional[pulumi.Input[str]] = None,
|
|
216
217
|
standby_server: Optional[pulumi.Input[str]] = None):
|
|
217
218
|
pulumi.set(__self__, "account", account)
|
|
218
219
|
pulumi.set(__self__, "base_dn", base_dn)
|
|
219
|
-
pulumi.set(__self__, "password", password)
|
|
220
220
|
pulumi.set(__self__, "port", port)
|
|
221
221
|
pulumi.set(__self__, "server", server)
|
|
222
222
|
if email_mapping is not None:
|
|
@@ -231,6 +231,8 @@ class BastionHostInstanceLdapAuthServerArgs:
|
|
|
231
231
|
pulumi.set(__self__, "mobile_mapping", mobile_mapping)
|
|
232
232
|
if name_mapping is not None:
|
|
233
233
|
pulumi.set(__self__, "name_mapping", name_mapping)
|
|
234
|
+
if password is not None:
|
|
235
|
+
pulumi.set(__self__, "password", password)
|
|
234
236
|
if standby_server is not None:
|
|
235
237
|
pulumi.set(__self__, "standby_server", standby_server)
|
|
236
238
|
|
|
@@ -252,15 +254,6 @@ class BastionHostInstanceLdapAuthServerArgs:
|
|
|
252
254
|
def base_dn(self, value: pulumi.Input[str]):
|
|
253
255
|
pulumi.set(self, "base_dn", value)
|
|
254
256
|
|
|
255
|
-
@property
|
|
256
|
-
@pulumi.getter
|
|
257
|
-
def password(self) -> pulumi.Input[str]:
|
|
258
|
-
return pulumi.get(self, "password")
|
|
259
|
-
|
|
260
|
-
@password.setter
|
|
261
|
-
def password(self, value: pulumi.Input[str]):
|
|
262
|
-
pulumi.set(self, "password", value)
|
|
263
|
-
|
|
264
257
|
@property
|
|
265
258
|
@pulumi.getter
|
|
266
259
|
def port(self) -> pulumi.Input[int]:
|
|
@@ -333,6 +326,15 @@ class BastionHostInstanceLdapAuthServerArgs:
|
|
|
333
326
|
def name_mapping(self, value: Optional[pulumi.Input[str]]):
|
|
334
327
|
pulumi.set(self, "name_mapping", value)
|
|
335
328
|
|
|
329
|
+
@property
|
|
330
|
+
@pulumi.getter
|
|
331
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
|
332
|
+
return pulumi.get(self, "password")
|
|
333
|
+
|
|
334
|
+
@password.setter
|
|
335
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
|
336
|
+
pulumi.set(self, "password", value)
|
|
337
|
+
|
|
336
338
|
@property
|
|
337
339
|
@pulumi.getter(name="standbyServer")
|
|
338
340
|
def standby_server(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -55,19 +55,18 @@ class BastionHostInstanceAdAuthServer(dict):
|
|
|
55
55
|
base_dn: str,
|
|
56
56
|
domain: str,
|
|
57
57
|
is_ssl: bool,
|
|
58
|
-
password: str,
|
|
59
58
|
port: int,
|
|
60
59
|
server: str,
|
|
61
60
|
email_mapping: Optional[str] = None,
|
|
62
61
|
filter: Optional[str] = None,
|
|
63
62
|
mobile_mapping: Optional[str] = None,
|
|
64
63
|
name_mapping: Optional[str] = None,
|
|
64
|
+
password: Optional[str] = None,
|
|
65
65
|
standby_server: Optional[str] = None):
|
|
66
66
|
pulumi.set(__self__, "account", account)
|
|
67
67
|
pulumi.set(__self__, "base_dn", base_dn)
|
|
68
68
|
pulumi.set(__self__, "domain", domain)
|
|
69
69
|
pulumi.set(__self__, "is_ssl", is_ssl)
|
|
70
|
-
pulumi.set(__self__, "password", password)
|
|
71
70
|
pulumi.set(__self__, "port", port)
|
|
72
71
|
pulumi.set(__self__, "server", server)
|
|
73
72
|
if email_mapping is not None:
|
|
@@ -78,6 +77,8 @@ class BastionHostInstanceAdAuthServer(dict):
|
|
|
78
77
|
pulumi.set(__self__, "mobile_mapping", mobile_mapping)
|
|
79
78
|
if name_mapping is not None:
|
|
80
79
|
pulumi.set(__self__, "name_mapping", name_mapping)
|
|
80
|
+
if password is not None:
|
|
81
|
+
pulumi.set(__self__, "password", password)
|
|
81
82
|
if standby_server is not None:
|
|
82
83
|
pulumi.set(__self__, "standby_server", standby_server)
|
|
83
84
|
|
|
@@ -101,11 +102,6 @@ class BastionHostInstanceAdAuthServer(dict):
|
|
|
101
102
|
def is_ssl(self) -> bool:
|
|
102
103
|
return pulumi.get(self, "is_ssl")
|
|
103
104
|
|
|
104
|
-
@property
|
|
105
|
-
@pulumi.getter
|
|
106
|
-
def password(self) -> str:
|
|
107
|
-
return pulumi.get(self, "password")
|
|
108
|
-
|
|
109
105
|
@property
|
|
110
106
|
@pulumi.getter
|
|
111
107
|
def port(self) -> int:
|
|
@@ -136,6 +132,11 @@ class BastionHostInstanceAdAuthServer(dict):
|
|
|
136
132
|
def name_mapping(self) -> Optional[str]:
|
|
137
133
|
return pulumi.get(self, "name_mapping")
|
|
138
134
|
|
|
135
|
+
@property
|
|
136
|
+
@pulumi.getter
|
|
137
|
+
def password(self) -> Optional[str]:
|
|
138
|
+
return pulumi.get(self, "password")
|
|
139
|
+
|
|
139
140
|
@property
|
|
140
141
|
@pulumi.getter(name="standbyServer")
|
|
141
142
|
def standby_server(self) -> Optional[str]:
|
|
@@ -176,7 +177,6 @@ class BastionHostInstanceLdapAuthServer(dict):
|
|
|
176
177
|
def __init__(__self__, *,
|
|
177
178
|
account: str,
|
|
178
179
|
base_dn: str,
|
|
179
|
-
password: str,
|
|
180
180
|
port: int,
|
|
181
181
|
server: str,
|
|
182
182
|
email_mapping: Optional[str] = None,
|
|
@@ -185,10 +185,10 @@ class BastionHostInstanceLdapAuthServer(dict):
|
|
|
185
185
|
login_name_mapping: Optional[str] = None,
|
|
186
186
|
mobile_mapping: Optional[str] = None,
|
|
187
187
|
name_mapping: Optional[str] = None,
|
|
188
|
+
password: Optional[str] = None,
|
|
188
189
|
standby_server: Optional[str] = None):
|
|
189
190
|
pulumi.set(__self__, "account", account)
|
|
190
191
|
pulumi.set(__self__, "base_dn", base_dn)
|
|
191
|
-
pulumi.set(__self__, "password", password)
|
|
192
192
|
pulumi.set(__self__, "port", port)
|
|
193
193
|
pulumi.set(__self__, "server", server)
|
|
194
194
|
if email_mapping is not None:
|
|
@@ -203,6 +203,8 @@ class BastionHostInstanceLdapAuthServer(dict):
|
|
|
203
203
|
pulumi.set(__self__, "mobile_mapping", mobile_mapping)
|
|
204
204
|
if name_mapping is not None:
|
|
205
205
|
pulumi.set(__self__, "name_mapping", name_mapping)
|
|
206
|
+
if password is not None:
|
|
207
|
+
pulumi.set(__self__, "password", password)
|
|
206
208
|
if standby_server is not None:
|
|
207
209
|
pulumi.set(__self__, "standby_server", standby_server)
|
|
208
210
|
|
|
@@ -216,11 +218,6 @@ class BastionHostInstanceLdapAuthServer(dict):
|
|
|
216
218
|
def base_dn(self) -> str:
|
|
217
219
|
return pulumi.get(self, "base_dn")
|
|
218
220
|
|
|
219
|
-
@property
|
|
220
|
-
@pulumi.getter
|
|
221
|
-
def password(self) -> str:
|
|
222
|
-
return pulumi.get(self, "password")
|
|
223
|
-
|
|
224
221
|
@property
|
|
225
222
|
@pulumi.getter
|
|
226
223
|
def port(self) -> int:
|
|
@@ -261,6 +258,11 @@ class BastionHostInstanceLdapAuthServer(dict):
|
|
|
261
258
|
def name_mapping(self) -> Optional[str]:
|
|
262
259
|
return pulumi.get(self, "name_mapping")
|
|
263
260
|
|
|
261
|
+
@property
|
|
262
|
+
@pulumi.getter
|
|
263
|
+
def password(self) -> Optional[str]:
|
|
264
|
+
return pulumi.get(self, "password")
|
|
265
|
+
|
|
264
266
|
@property
|
|
265
267
|
@pulumi.getter(name="standbyServer")
|
|
266
268
|
def standby_server(self) -> Optional[str]:
|
|
@@ -270,6 +272,7 @@ class BastionHostInstanceLdapAuthServer(dict):
|
|
|
270
272
|
@pulumi.output_type
|
|
271
273
|
class GetBastionHostInstancesInstanceResult(dict):
|
|
272
274
|
def __init__(__self__, *,
|
|
275
|
+
bandwidth: str,
|
|
273
276
|
description: str,
|
|
274
277
|
id: str,
|
|
275
278
|
instance_status: str,
|
|
@@ -278,8 +281,10 @@ class GetBastionHostInstancesInstanceResult(dict):
|
|
|
278
281
|
public_domain: str,
|
|
279
282
|
public_network_access: bool,
|
|
280
283
|
security_group_ids: Sequence[str],
|
|
281
|
-
|
|
282
|
-
tags:
|
|
284
|
+
storage: str,
|
|
285
|
+
tags: Mapping[str, str],
|
|
286
|
+
user_vswitch_id: str):
|
|
287
|
+
pulumi.set(__self__, "bandwidth", bandwidth)
|
|
283
288
|
pulumi.set(__self__, "description", description)
|
|
284
289
|
pulumi.set(__self__, "id", id)
|
|
285
290
|
pulumi.set(__self__, "instance_status", instance_status)
|
|
@@ -288,9 +293,14 @@ class GetBastionHostInstancesInstanceResult(dict):
|
|
|
288
293
|
pulumi.set(__self__, "public_domain", public_domain)
|
|
289
294
|
pulumi.set(__self__, "public_network_access", public_network_access)
|
|
290
295
|
pulumi.set(__self__, "security_group_ids", security_group_ids)
|
|
296
|
+
pulumi.set(__self__, "storage", storage)
|
|
297
|
+
pulumi.set(__self__, "tags", tags)
|
|
291
298
|
pulumi.set(__self__, "user_vswitch_id", user_vswitch_id)
|
|
292
|
-
|
|
293
|
-
|
|
299
|
+
|
|
300
|
+
@property
|
|
301
|
+
@pulumi.getter
|
|
302
|
+
def bandwidth(self) -> str:
|
|
303
|
+
return pulumi.get(self, "bandwidth")
|
|
294
304
|
|
|
295
305
|
@property
|
|
296
306
|
@pulumi.getter
|
|
@@ -333,15 +343,20 @@ class GetBastionHostInstancesInstanceResult(dict):
|
|
|
333
343
|
return pulumi.get(self, "security_group_ids")
|
|
334
344
|
|
|
335
345
|
@property
|
|
336
|
-
@pulumi.getter
|
|
337
|
-
def
|
|
338
|
-
return pulumi.get(self, "
|
|
346
|
+
@pulumi.getter
|
|
347
|
+
def storage(self) -> str:
|
|
348
|
+
return pulumi.get(self, "storage")
|
|
339
349
|
|
|
340
350
|
@property
|
|
341
351
|
@pulumi.getter
|
|
342
|
-
def tags(self) ->
|
|
352
|
+
def tags(self) -> Mapping[str, str]:
|
|
343
353
|
return pulumi.get(self, "tags")
|
|
344
354
|
|
|
355
|
+
@property
|
|
356
|
+
@pulumi.getter(name="userVswitchId")
|
|
357
|
+
def user_vswitch_id(self) -> str:
|
|
358
|
+
return pulumi.get(self, "user_vswitch_id")
|
|
359
|
+
|
|
345
360
|
|
|
346
361
|
@pulumi.output_type
|
|
347
362
|
class GetDBAuditInstanceInstanceResult(dict):
|