pulumi-alicloud 3.63.0a1727371922__py3-none-any.whl → 3.63.0a1727705137__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/alb/acl.py +18 -19
- pulumi_alicloud/alb/health_check_template.py +96 -88
- pulumi_alicloud/cms/_inputs.py +6 -6
- pulumi_alicloud/cms/outputs.py +6 -6
- pulumi_alicloud/ddos/_inputs.py +8 -9
- pulumi_alicloud/ddos/domain_resource.py +446 -90
- pulumi_alicloud/ddos/outputs.py +7 -8
- pulumi_alicloud/eci/container_group.py +47 -0
- pulumi_alicloud/ecs/ecs_snapshot.py +199 -77
- pulumi_alicloud/ecs/snapshot.py +26 -8
- pulumi_alicloud/ess/__init__.py +1 -0
- pulumi_alicloud/ess/alarm.py +47 -0
- pulumi_alicloud/ess/server_group_attachment.py +552 -0
- pulumi_alicloud/ga/_inputs.py +23 -5
- pulumi_alicloud/ga/outputs.py +21 -5
- pulumi_alicloud/governance/account.py +61 -0
- pulumi_alicloud/gpdb/__init__.py +4 -0
- pulumi_alicloud/gpdb/_inputs.py +361 -3
- pulumi_alicloud/gpdb/db_instance_ip_array.py +533 -0
- pulumi_alicloud/gpdb/get_data_backups.py +288 -0
- pulumi_alicloud/gpdb/get_log_backups.py +225 -0
- pulumi_alicloud/gpdb/instance.py +47 -0
- pulumi_alicloud/gpdb/outputs.py +597 -4
- pulumi_alicloud/gpdb/streaming_job.py +1568 -0
- pulumi_alicloud/nlb/load_balancer.py +116 -0
- pulumi_alicloud/oos/get_secret_parameters.py +111 -9
- pulumi_alicloud/oos/outputs.py +22 -11
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/ram/get_account_alias.py +35 -2
- pulumi_alicloud/rds/instance.py +21 -21
- pulumi_alicloud/rocketmq/_inputs.py +79 -22
- pulumi_alicloud/rocketmq/outputs.py +85 -21
- pulumi_alicloud/rocketmq/rocket_mq_instance.py +307 -113
- pulumi_alicloud/vpc/peer_connection.py +127 -59
- pulumi_alicloud/vpc/peer_connection_accepter.py +263 -42
- pulumi_alicloud/vpc/route_entry.py +232 -210
- {pulumi_alicloud-3.63.0a1727371922.dist-info → pulumi_alicloud-3.63.0a1727705137.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.63.0a1727371922.dist-info → pulumi_alicloud-3.63.0a1727705137.dist-info}/RECORD +41 -36
- {pulumi_alicloud-3.63.0a1727371922.dist-info → pulumi_alicloud-3.63.0a1727705137.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.63.0a1727371922.dist-info → pulumi_alicloud-3.63.0a1727705137.dist-info}/top_level.txt +0 -0
pulumi_alicloud/cms/outputs.py
CHANGED
|
@@ -284,7 +284,7 @@ class AlarmEscalationsCritical(dict):
|
|
|
284
284
|
threshold: Optional[str] = None,
|
|
285
285
|
times: Optional[int] = None):
|
|
286
286
|
"""
|
|
287
|
-
:param str comparison_operator: Critical level alarm comparison operator. Default value: `>`. Valid values: `>`, `>=`, `<`, `<=`, `!=`, `GreaterThanYesterday`, `LessThanYesterday`, `GreaterThanLastWeek`, `LessThanLastWeek`, `GreaterThanLastPeriod`, `LessThanLastPeriod`. **NOTE:** From version 1.
|
|
287
|
+
:param str comparison_operator: Critical level alarm comparison operator. Default value: `>`. Valid values: `>`, `>=`, `<`, `<=`, `!=`, `==`, `GreaterThanYesterday`, `LessThanYesterday`, `GreaterThanLastWeek`, `LessThanLastWeek`, `GreaterThanLastPeriod`, `LessThanLastPeriod`. **NOTE:** From version 1.231.0, `comparison_operator` can be set to `==`.
|
|
288
288
|
:param str statistics: Critical level alarm statistics method. It must be consistent with that defined for metrics. For more information, see [How to use it](https://cms.console.aliyun.com/metric-meta/acs_ecs_dashboard/ecs).
|
|
289
289
|
:param str threshold: Critical level alarm threshold value, which must be a numeric value currently.
|
|
290
290
|
:param int times: Critical level alarm retry times. Default value: `3`.
|
|
@@ -302,7 +302,7 @@ class AlarmEscalationsCritical(dict):
|
|
|
302
302
|
@pulumi.getter(name="comparisonOperator")
|
|
303
303
|
def comparison_operator(self) -> Optional[str]:
|
|
304
304
|
"""
|
|
305
|
-
Critical level alarm comparison operator. Default value: `>`. Valid values: `>`, `>=`, `<`, `<=`, `!=`, `GreaterThanYesterday`, `LessThanYesterday`, `GreaterThanLastWeek`, `LessThanLastWeek`, `GreaterThanLastPeriod`, `LessThanLastPeriod`. **NOTE:** From version 1.
|
|
305
|
+
Critical level alarm comparison operator. Default value: `>`. Valid values: `>`, `>=`, `<`, `<=`, `!=`, `==`, `GreaterThanYesterday`, `LessThanYesterday`, `GreaterThanLastWeek`, `LessThanLastWeek`, `GreaterThanLastPeriod`, `LessThanLastPeriod`. **NOTE:** From version 1.231.0, `comparison_operator` can be set to `==`.
|
|
306
306
|
"""
|
|
307
307
|
return pulumi.get(self, "comparison_operator")
|
|
308
308
|
|
|
@@ -356,7 +356,7 @@ class AlarmEscalationsInfo(dict):
|
|
|
356
356
|
threshold: Optional[str] = None,
|
|
357
357
|
times: Optional[int] = None):
|
|
358
358
|
"""
|
|
359
|
-
:param str comparison_operator: Info level alarm comparison operator. Default value: `>`. Valid values: `>`, `>=`, `<`, `<=`, `!=`, `GreaterThanYesterday`, `LessThanYesterday`, `GreaterThanLastWeek`, `LessThanLastWeek`, `GreaterThanLastPeriod`, `LessThanLastPeriod`. **NOTE:** From version 1.
|
|
359
|
+
:param str comparison_operator: Info level alarm comparison operator. Default value: `>`. Valid values: `>`, `>=`, `<`, `<=`, `!=`, `==`, `GreaterThanYesterday`, `LessThanYesterday`, `GreaterThanLastWeek`, `LessThanLastWeek`, `GreaterThanLastPeriod`, `LessThanLastPeriod`. **NOTE:** From version 1.231.0, `comparison_operator` can be set to `==`.
|
|
360
360
|
:param str statistics: Info level alarm statistics method. It must be consistent with that defined for metrics. For more information, see [How to use it](https://cms.console.aliyun.com/metric-meta/acs_ecs_dashboard/ecs).
|
|
361
361
|
:param str threshold: Info level alarm threshold value, which must be a numeric value currently.
|
|
362
362
|
:param int times: Info level alarm retry times. Default value: `3`.
|
|
@@ -374,7 +374,7 @@ class AlarmEscalationsInfo(dict):
|
|
|
374
374
|
@pulumi.getter(name="comparisonOperator")
|
|
375
375
|
def comparison_operator(self) -> Optional[str]:
|
|
376
376
|
"""
|
|
377
|
-
Info level alarm comparison operator. Default value: `>`. Valid values: `>`, `>=`, `<`, `<=`, `!=`, `GreaterThanYesterday`, `LessThanYesterday`, `GreaterThanLastWeek`, `LessThanLastWeek`, `GreaterThanLastPeriod`, `LessThanLastPeriod`. **NOTE:** From version 1.
|
|
377
|
+
Info level alarm comparison operator. Default value: `>`. Valid values: `>`, `>=`, `<`, `<=`, `!=`, `==`, `GreaterThanYesterday`, `LessThanYesterday`, `GreaterThanLastWeek`, `LessThanLastWeek`, `GreaterThanLastPeriod`, `LessThanLastPeriod`. **NOTE:** From version 1.231.0, `comparison_operator` can be set to `==`.
|
|
378
378
|
"""
|
|
379
379
|
return pulumi.get(self, "comparison_operator")
|
|
380
380
|
|
|
@@ -428,7 +428,7 @@ class AlarmEscalationsWarn(dict):
|
|
|
428
428
|
threshold: Optional[str] = None,
|
|
429
429
|
times: Optional[int] = None):
|
|
430
430
|
"""
|
|
431
|
-
:param str comparison_operator: Warn level alarm comparison operator. Default value: `>`. Valid values: `>`, `>=`, `<`, `<=`, `!=`, `GreaterThanYesterday`, `LessThanYesterday`, `GreaterThanLastWeek`, `LessThanLastWeek`, `GreaterThanLastPeriod`, `LessThanLastPeriod`. **NOTE:** From version 1.
|
|
431
|
+
:param str comparison_operator: Warn level alarm comparison operator. Default value: `>`. Valid values: `>`, `>=`, `<`, `<=`, `!=`, `==`, `GreaterThanYesterday`, `LessThanYesterday`, `GreaterThanLastWeek`, `LessThanLastWeek`, `GreaterThanLastPeriod`, `LessThanLastPeriod`. **NOTE:** From version 1.231.0, `comparison_operator` can be set to `==`.
|
|
432
432
|
:param str statistics: Warn level alarm statistics method. It must be consistent with that defined for metrics. For more information, see [How to use it](https://cms.console.aliyun.com/metric-meta/acs_ecs_dashboard/ecs).
|
|
433
433
|
:param str threshold: Warn level alarm threshold value, which must be a numeric value currently.
|
|
434
434
|
:param int times: Warn level alarm retry times. Default value: `3`.
|
|
@@ -446,7 +446,7 @@ class AlarmEscalationsWarn(dict):
|
|
|
446
446
|
@pulumi.getter(name="comparisonOperator")
|
|
447
447
|
def comparison_operator(self) -> Optional[str]:
|
|
448
448
|
"""
|
|
449
|
-
Warn level alarm comparison operator. Default value: `>`. Valid values: `>`, `>=`, `<`, `<=`, `!=`, `GreaterThanYesterday`, `LessThanYesterday`, `GreaterThanLastWeek`, `LessThanLastWeek`, `GreaterThanLastPeriod`, `LessThanLastPeriod`. **NOTE:** From version 1.
|
|
449
|
+
Warn level alarm comparison operator. Default value: `>`. Valid values: `>`, `>=`, `<`, `<=`, `!=`, `==`, `GreaterThanYesterday`, `LessThanYesterday`, `GreaterThanLastWeek`, `LessThanLastWeek`, `GreaterThanLastPeriod`, `LessThanLastPeriod`. **NOTE:** From version 1.231.0, `comparison_operator` can be set to `==`.
|
|
450
450
|
"""
|
|
451
451
|
return pulumi.get(self, "comparison_operator")
|
|
452
452
|
|
pulumi_alicloud/ddos/_inputs.py
CHANGED
|
@@ -892,34 +892,33 @@ class BgpPolicyContentSourceLimitArgs:
|
|
|
892
892
|
@pulumi.input_type
|
|
893
893
|
class DomainResourceProxyTypeArgs:
|
|
894
894
|
def __init__(__self__, *,
|
|
895
|
-
proxy_ports:
|
|
895
|
+
proxy_ports: pulumi.Input[Sequence[pulumi.Input[int]]],
|
|
896
896
|
proxy_type: Optional[pulumi.Input[str]] = None):
|
|
897
897
|
"""
|
|
898
|
-
:param pulumi.Input[Sequence[pulumi.Input[int]]] proxy_ports:
|
|
899
|
-
:param pulumi.Input[str] proxy_type:
|
|
898
|
+
:param pulumi.Input[Sequence[pulumi.Input[int]]] proxy_ports: The port numbers.
|
|
899
|
+
:param pulumi.Input[str] proxy_type: The type of the protocol. Valid values:
|
|
900
900
|
"""
|
|
901
|
-
|
|
902
|
-
pulumi.set(__self__, "proxy_ports", proxy_ports)
|
|
901
|
+
pulumi.set(__self__, "proxy_ports", proxy_ports)
|
|
903
902
|
if proxy_type is not None:
|
|
904
903
|
pulumi.set(__self__, "proxy_type", proxy_type)
|
|
905
904
|
|
|
906
905
|
@property
|
|
907
906
|
@pulumi.getter(name="proxyPorts")
|
|
908
|
-
def proxy_ports(self) ->
|
|
907
|
+
def proxy_ports(self) -> pulumi.Input[Sequence[pulumi.Input[int]]]:
|
|
909
908
|
"""
|
|
910
|
-
|
|
909
|
+
The port numbers.
|
|
911
910
|
"""
|
|
912
911
|
return pulumi.get(self, "proxy_ports")
|
|
913
912
|
|
|
914
913
|
@proxy_ports.setter
|
|
915
|
-
def proxy_ports(self, value:
|
|
914
|
+
def proxy_ports(self, value: pulumi.Input[Sequence[pulumi.Input[int]]]):
|
|
916
915
|
pulumi.set(self, "proxy_ports", value)
|
|
917
916
|
|
|
918
917
|
@property
|
|
919
918
|
@pulumi.getter(name="proxyType")
|
|
920
919
|
def proxy_type(self) -> Optional[pulumi.Input[str]]:
|
|
921
920
|
"""
|
|
922
|
-
|
|
921
|
+
The type of the protocol. Valid values:
|
|
923
922
|
"""
|
|
924
923
|
return pulumi.get(self, "proxy_type")
|
|
925
924
|
|