pulumi-alicloud 3.63.0a1726291447__py3-none-any.whl → 3.63.0a1726828180__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/amqp/binding.py +30 -36
- pulumi_alicloud/cen/_inputs.py +180 -14
- pulumi_alicloud/cen/outputs.py +173 -12
- pulumi_alicloud/cen/traffic_marking_policy.py +116 -53
- pulumi_alicloud/cen/transit_router_vpc_attachment.py +338 -119
- pulumi_alicloud/cr/chart_namespace.py +14 -6
- pulumi_alicloud/cr/endpoint_acl_policy.py +10 -2
- pulumi_alicloud/cr/namespace.py +10 -2
- pulumi_alicloud/cs/registry_enterprise_sync_rule.py +10 -10
- pulumi_alicloud/ddos/bgp_ip.py +1 -1
- pulumi_alicloud/ecs/_inputs.py +28 -0
- pulumi_alicloud/ecs/outputs.py +20 -0
- pulumi_alicloud/emrv2/_inputs.py +12 -12
- pulumi_alicloud/emrv2/outputs.py +12 -12
- pulumi_alicloud/ens/_inputs.py +50 -2
- pulumi_alicloud/ens/instance.py +428 -184
- pulumi_alicloud/ens/outputs.py +57 -2
- pulumi_alicloud/expressconnect/physical_connection.py +321 -185
- pulumi_alicloud/fc/trigger.py +22 -24
- pulumi_alicloud/ga/endpoint_group.py +68 -14
- pulumi_alicloud/mongodb/instance.py +94 -0
- pulumi_alicloud/nlb/_inputs.py +120 -64
- pulumi_alicloud/nlb/get_listeners.py +32 -2
- pulumi_alicloud/nlb/get_server_group_server_attachments.py +8 -2
- pulumi_alicloud/nlb/listener.py +315 -245
- pulumi_alicloud/nlb/listener_additional_certificate_attachment.py +25 -25
- pulumi_alicloud/nlb/load_balancer.py +181 -212
- pulumi_alicloud/nlb/load_balancer_security_group_attachment.py +29 -39
- pulumi_alicloud/nlb/loadbalancer_common_bandwidth_package_attachment.py +22 -18
- pulumi_alicloud/nlb/outputs.py +122 -66
- pulumi_alicloud/nlb/security_policy.py +53 -25
- pulumi_alicloud/nlb/server_group.py +196 -133
- pulumi_alicloud/ocean/base_instance.py +498 -163
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/servicemesh/extension_provider.py +2 -2
- pulumi_alicloud/vpc/common_bandwith_package_attachment.py +2 -2
- {pulumi_alicloud-3.63.0a1726291447.dist-info → pulumi_alicloud-3.63.0a1726828180.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.63.0a1726291447.dist-info → pulumi_alicloud-3.63.0a1726828180.dist-info}/RECORD +40 -40
- {pulumi_alicloud-3.63.0a1726291447.dist-info → pulumi_alicloud-3.63.0a1726828180.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.63.0a1726291447.dist-info → pulumi_alicloud-3.63.0a1726828180.dist-info}/top_level.txt +0 -0
|
@@ -19,9 +19,9 @@ class ListenerAdditionalCertificateAttachmentArgs:
|
|
|
19
19
|
dry_run: Optional[pulumi.Input[bool]] = None):
|
|
20
20
|
"""
|
|
21
21
|
The set of arguments for constructing a ListenerAdditionalCertificateAttachment resource.
|
|
22
|
-
:param pulumi.Input[str] certificate_id:
|
|
23
|
-
:param pulumi.Input[str] listener_id: The ID
|
|
24
|
-
:param pulumi.Input[bool] dry_run:
|
|
22
|
+
:param pulumi.Input[str] certificate_id: The ID of additional certificates.
|
|
23
|
+
:param pulumi.Input[str] listener_id: The listener ID. You must specify the ID of a listener that uses SSL over TCP.
|
|
24
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
25
25
|
"""
|
|
26
26
|
pulumi.set(__self__, "certificate_id", certificate_id)
|
|
27
27
|
pulumi.set(__self__, "listener_id", listener_id)
|
|
@@ -32,7 +32,7 @@ class ListenerAdditionalCertificateAttachmentArgs:
|
|
|
32
32
|
@pulumi.getter(name="certificateId")
|
|
33
33
|
def certificate_id(self) -> pulumi.Input[str]:
|
|
34
34
|
"""
|
|
35
|
-
|
|
35
|
+
The ID of additional certificates.
|
|
36
36
|
"""
|
|
37
37
|
return pulumi.get(self, "certificate_id")
|
|
38
38
|
|
|
@@ -44,7 +44,7 @@ class ListenerAdditionalCertificateAttachmentArgs:
|
|
|
44
44
|
@pulumi.getter(name="listenerId")
|
|
45
45
|
def listener_id(self) -> pulumi.Input[str]:
|
|
46
46
|
"""
|
|
47
|
-
The ID
|
|
47
|
+
The listener ID. You must specify the ID of a listener that uses SSL over TCP.
|
|
48
48
|
"""
|
|
49
49
|
return pulumi.get(self, "listener_id")
|
|
50
50
|
|
|
@@ -56,7 +56,7 @@ class ListenerAdditionalCertificateAttachmentArgs:
|
|
|
56
56
|
@pulumi.getter(name="dryRun")
|
|
57
57
|
def dry_run(self) -> Optional[pulumi.Input[bool]]:
|
|
58
58
|
"""
|
|
59
|
-
|
|
59
|
+
Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
60
60
|
"""
|
|
61
61
|
return pulumi.get(self, "dry_run")
|
|
62
62
|
|
|
@@ -74,10 +74,10 @@ class _ListenerAdditionalCertificateAttachmentState:
|
|
|
74
74
|
status: Optional[pulumi.Input[str]] = None):
|
|
75
75
|
"""
|
|
76
76
|
Input properties used for looking up and filtering ListenerAdditionalCertificateAttachment resources.
|
|
77
|
-
:param pulumi.Input[str] certificate_id:
|
|
78
|
-
:param pulumi.Input[bool] dry_run:
|
|
79
|
-
:param pulumi.Input[str] listener_id: The ID
|
|
80
|
-
:param pulumi.Input[str] status: The status of the resource
|
|
77
|
+
:param pulumi.Input[str] certificate_id: The ID of additional certificates.
|
|
78
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
79
|
+
:param pulumi.Input[str] listener_id: The listener ID. You must specify the ID of a listener that uses SSL over TCP.
|
|
80
|
+
:param pulumi.Input[str] status: The status of the resource
|
|
81
81
|
"""
|
|
82
82
|
if certificate_id is not None:
|
|
83
83
|
pulumi.set(__self__, "certificate_id", certificate_id)
|
|
@@ -92,7 +92,7 @@ class _ListenerAdditionalCertificateAttachmentState:
|
|
|
92
92
|
@pulumi.getter(name="certificateId")
|
|
93
93
|
def certificate_id(self) -> Optional[pulumi.Input[str]]:
|
|
94
94
|
"""
|
|
95
|
-
|
|
95
|
+
The ID of additional certificates.
|
|
96
96
|
"""
|
|
97
97
|
return pulumi.get(self, "certificate_id")
|
|
98
98
|
|
|
@@ -104,7 +104,7 @@ class _ListenerAdditionalCertificateAttachmentState:
|
|
|
104
104
|
@pulumi.getter(name="dryRun")
|
|
105
105
|
def dry_run(self) -> Optional[pulumi.Input[bool]]:
|
|
106
106
|
"""
|
|
107
|
-
|
|
107
|
+
Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
108
108
|
"""
|
|
109
109
|
return pulumi.get(self, "dry_run")
|
|
110
110
|
|
|
@@ -116,7 +116,7 @@ class _ListenerAdditionalCertificateAttachmentState:
|
|
|
116
116
|
@pulumi.getter(name="listenerId")
|
|
117
117
|
def listener_id(self) -> Optional[pulumi.Input[str]]:
|
|
118
118
|
"""
|
|
119
|
-
The ID
|
|
119
|
+
The listener ID. You must specify the ID of a listener that uses SSL over TCP.
|
|
120
120
|
"""
|
|
121
121
|
return pulumi.get(self, "listener_id")
|
|
122
122
|
|
|
@@ -128,7 +128,7 @@ class _ListenerAdditionalCertificateAttachmentState:
|
|
|
128
128
|
@pulumi.getter
|
|
129
129
|
def status(self) -> Optional[pulumi.Input[str]]:
|
|
130
130
|
"""
|
|
131
|
-
The status of the resource
|
|
131
|
+
The status of the resource
|
|
132
132
|
"""
|
|
133
133
|
return pulumi.get(self, "status")
|
|
134
134
|
|
|
@@ -163,9 +163,9 @@ class ListenerAdditionalCertificateAttachment(pulumi.CustomResource):
|
|
|
163
163
|
|
|
164
164
|
:param str resource_name: The name of the resource.
|
|
165
165
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
166
|
-
:param pulumi.Input[str] certificate_id:
|
|
167
|
-
:param pulumi.Input[bool] dry_run:
|
|
168
|
-
:param pulumi.Input[str] listener_id: The ID
|
|
166
|
+
:param pulumi.Input[str] certificate_id: The ID of additional certificates.
|
|
167
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
168
|
+
:param pulumi.Input[str] listener_id: The listener ID. You must specify the ID of a listener that uses SSL over TCP.
|
|
169
169
|
"""
|
|
170
170
|
...
|
|
171
171
|
@overload
|
|
@@ -244,10 +244,10 @@ class ListenerAdditionalCertificateAttachment(pulumi.CustomResource):
|
|
|
244
244
|
:param str resource_name: The unique name of the resulting resource.
|
|
245
245
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
246
246
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
247
|
-
:param pulumi.Input[str] certificate_id:
|
|
248
|
-
:param pulumi.Input[bool] dry_run:
|
|
249
|
-
:param pulumi.Input[str] listener_id: The ID
|
|
250
|
-
:param pulumi.Input[str] status: The status of the resource
|
|
247
|
+
:param pulumi.Input[str] certificate_id: The ID of additional certificates.
|
|
248
|
+
:param pulumi.Input[bool] dry_run: Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
249
|
+
:param pulumi.Input[str] listener_id: The listener ID. You must specify the ID of a listener that uses SSL over TCP.
|
|
250
|
+
:param pulumi.Input[str] status: The status of the resource
|
|
251
251
|
"""
|
|
252
252
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
253
253
|
|
|
@@ -263,7 +263,7 @@ class ListenerAdditionalCertificateAttachment(pulumi.CustomResource):
|
|
|
263
263
|
@pulumi.getter(name="certificateId")
|
|
264
264
|
def certificate_id(self) -> pulumi.Output[str]:
|
|
265
265
|
"""
|
|
266
|
-
|
|
266
|
+
The ID of additional certificates.
|
|
267
267
|
"""
|
|
268
268
|
return pulumi.get(self, "certificate_id")
|
|
269
269
|
|
|
@@ -271,7 +271,7 @@ class ListenerAdditionalCertificateAttachment(pulumi.CustomResource):
|
|
|
271
271
|
@pulumi.getter(name="dryRun")
|
|
272
272
|
def dry_run(self) -> pulumi.Output[Optional[bool]]:
|
|
273
273
|
"""
|
|
274
|
-
|
|
274
|
+
Specifies whether to perform a dry run, without performing the actual request. Valid values:
|
|
275
275
|
"""
|
|
276
276
|
return pulumi.get(self, "dry_run")
|
|
277
277
|
|
|
@@ -279,7 +279,7 @@ class ListenerAdditionalCertificateAttachment(pulumi.CustomResource):
|
|
|
279
279
|
@pulumi.getter(name="listenerId")
|
|
280
280
|
def listener_id(self) -> pulumi.Output[str]:
|
|
281
281
|
"""
|
|
282
|
-
The ID
|
|
282
|
+
The listener ID. You must specify the ID of a listener that uses SSL over TCP.
|
|
283
283
|
"""
|
|
284
284
|
return pulumi.get(self, "listener_id")
|
|
285
285
|
|
|
@@ -287,7 +287,7 @@ class ListenerAdditionalCertificateAttachment(pulumi.CustomResource):
|
|
|
287
287
|
@pulumi.getter
|
|
288
288
|
def status(self) -> pulumi.Output[str]:
|
|
289
289
|
"""
|
|
290
|
-
The status of the resource
|
|
290
|
+
The status of the resource
|
|
291
291
|
"""
|
|
292
292
|
return pulumi.get(self, "status")
|
|
293
293
|
|