pulumi-alicloud 3.67.0__py3-none-any.whl → 3.67.0a1731734345__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.

Files changed (44) hide show
  1. pulumi_alicloud/__init__.py +0 -16
  2. pulumi_alicloud/cen/flow_log.py +58 -373
  3. pulumi_alicloud/cen/transit_router_ecr_attachment.py +4 -4
  4. pulumi_alicloud/cr/registry_enterprise_instance.py +90 -474
  5. pulumi_alicloud/ecs/ecs_image_component.py +48 -221
  6. pulumi_alicloud/ess/_inputs.py +0 -94
  7. pulumi_alicloud/ess/eci_scaling_configuration.py +14 -42
  8. pulumi_alicloud/ess/outputs.py +0 -79
  9. pulumi_alicloud/ess/scaling_configuration.py +0 -47
  10. pulumi_alicloud/expressconnect/router_vbr_child_instance.py +25 -86
  11. pulumi_alicloud/kms/key.py +1 -1
  12. pulumi_alicloud/kvstore/account.py +24 -24
  13. pulumi_alicloud/kvstore/audit_log_config.py +4 -4
  14. pulumi_alicloud/kvstore/backup_policy.py +2 -2
  15. pulumi_alicloud/kvstore/connection.py +8 -8
  16. pulumi_alicloud/kvstore/get_accounts.py +4 -4
  17. pulumi_alicloud/kvstore/get_connections.py +5 -5
  18. pulumi_alicloud/kvstore/get_instance_classes.py +12 -12
  19. pulumi_alicloud/kvstore/get_instance_engines.py +7 -7
  20. pulumi_alicloud/kvstore/get_permission.py +10 -10
  21. pulumi_alicloud/kvstore/get_zones.py +4 -4
  22. pulumi_alicloud/kvstore/outputs.py +2 -2
  23. pulumi_alicloud/mongodb/instance.py +0 -47
  24. pulumi_alicloud/mongodb/sharding_instance.py +0 -47
  25. pulumi_alicloud/polardb/cluster.py +7 -7
  26. pulumi_alicloud/privatelink/vpc_endpoint_service.py +91 -42
  27. pulumi_alicloud/privatelink/vpc_endpoint_service_connection.py +23 -27
  28. pulumi_alicloud/privatelink/vpc_endpoint_service_resource.py +37 -34
  29. pulumi_alicloud/privatelink/vpc_endpoint_zone.py +0 -28
  30. pulumi_alicloud/pulumi-plugin.json +1 -1
  31. pulumi_alicloud/rds/__init__.py +0 -2
  32. pulumi_alicloud/rds/_inputs.py +0 -146
  33. pulumi_alicloud/rds/outputs.py +0 -105
  34. pulumi_alicloud/redis/tair_instance.py +1 -76
  35. pulumi_alicloud/vpc/_inputs.py +0 -54
  36. pulumi_alicloud/vpc/nat_gateway.py +14 -175
  37. pulumi_alicloud/vpc/outputs.py +0 -51
  38. pulumi_alicloud/vpn/gateway_vco_route.py +21 -68
  39. {pulumi_alicloud-3.67.0.dist-info → pulumi_alicloud-3.67.0a1731734345.dist-info}/METADATA +5 -5
  40. {pulumi_alicloud-3.67.0.dist-info → pulumi_alicloud-3.67.0a1731734345.dist-info}/RECORD +42 -44
  41. {pulumi_alicloud-3.67.0.dist-info → pulumi_alicloud-3.67.0a1731734345.dist-info}/WHEEL +1 -1
  42. pulumi_alicloud/rds/custom.py +0 -1630
  43. pulumi_alicloud/rds/custom_deployment_set.py +0 -525
  44. {pulumi_alicloud-3.67.0.dist-info → pulumi_alicloud-3.67.0a1731734345.dist-info}/top_level.txt +0 -0
@@ -72,12 +72,8 @@ class EciScalingConfigurationArgs:
72
72
  :param pulumi.Input[int] active_deadline_seconds: The duration in seconds relative to the startTime that the job may be active before the system tries to terminate it.
73
73
  :param pulumi.Input[bool] auto_create_eip: Whether create eip automatically.
74
74
  :param pulumi.Input[bool] auto_match_image_cache: Whether to automatically match the image cache.
75
- :param pulumi.Input[str] container_group_name: The name series of the elastic container instances created from the scaling configuration. If you want to use an ordered instance name, specify the value for this parameter in the following format: name_prefix(AUTO_INCREMENT)[begin_number,bits]name_suffix.
76
- name_prefix: the prefix of the hostname.
77
- (AUTO_INCREMENT): the sort method. This is a static field.
78
- begin_number: the start value of the sequential values. Valid values: 0 to 999999.
79
- bits: the number of digits in sequential values. Valid values: 1 to 6. If the number of digits in the specified begin_number value is greater than the value of the bits field, the bits field is automatically set to 6.
80
- name_suffix: the suffix of the hostname. This field is optional.
75
+ :param pulumi.Input[str] container_group_name: The name of the container group. which must contain 2-128 characters (
76
+ English), starting with numbers, English lowercase letters , and can contain number, and hypens `-`.
81
77
  :param pulumi.Input[Sequence[pulumi.Input['EciScalingConfigurationContainerArgs']]] containers: The list of containers. See `containers` below for details.
82
78
  :param pulumi.Input[bool] cost_optimization: Indicates whether the Cost Optimization feature is enabled. Valid values: true,false.
83
79
  :param pulumi.Input[float] cpu: The amount of CPU resources allocated to the container group.
@@ -289,12 +285,8 @@ class EciScalingConfigurationArgs:
289
285
  @pulumi.getter(name="containerGroupName")
290
286
  def container_group_name(self) -> Optional[pulumi.Input[str]]:
291
287
  """
292
- The name series of the elastic container instances created from the scaling configuration. If you want to use an ordered instance name, specify the value for this parameter in the following format: name_prefix(AUTO_INCREMENT)[begin_number,bits]name_suffix.
293
- name_prefix: the prefix of the hostname.
294
- (AUTO_INCREMENT): the sort method. This is a static field.
295
- begin_number: the start value of the sequential values. Valid values: 0 to 999999.
296
- bits: the number of digits in sequential values. Valid values: 1 to 6. If the number of digits in the specified begin_number value is greater than the value of the bits field, the bits field is automatically set to 6.
297
- name_suffix: the suffix of the hostname. This field is optional.
288
+ The name of the container group. which must contain 2-128 characters (
289
+ English), starting with numbers, English lowercase letters , and can contain number, and hypens `-`.
298
290
  """
299
291
  return pulumi.get(self, "container_group_name")
300
292
 
@@ -790,12 +782,8 @@ class _EciScalingConfigurationState:
790
782
  :param pulumi.Input[int] active_deadline_seconds: The duration in seconds relative to the startTime that the job may be active before the system tries to terminate it.
791
783
  :param pulumi.Input[bool] auto_create_eip: Whether create eip automatically.
792
784
  :param pulumi.Input[bool] auto_match_image_cache: Whether to automatically match the image cache.
793
- :param pulumi.Input[str] container_group_name: The name series of the elastic container instances created from the scaling configuration. If you want to use an ordered instance name, specify the value for this parameter in the following format: name_prefix(AUTO_INCREMENT)[begin_number,bits]name_suffix.
794
- name_prefix: the prefix of the hostname.
795
- (AUTO_INCREMENT): the sort method. This is a static field.
796
- begin_number: the start value of the sequential values. Valid values: 0 to 999999.
797
- bits: the number of digits in sequential values. Valid values: 1 to 6. If the number of digits in the specified begin_number value is greater than the value of the bits field, the bits field is automatically set to 6.
798
- name_suffix: the suffix of the hostname. This field is optional.
785
+ :param pulumi.Input[str] container_group_name: The name of the container group. which must contain 2-128 characters (
786
+ English), starting with numbers, English lowercase letters , and can contain number, and hypens `-`.
799
787
  :param pulumi.Input[Sequence[pulumi.Input['EciScalingConfigurationContainerArgs']]] containers: The list of containers. See `containers` below for details.
800
788
  :param pulumi.Input[bool] cost_optimization: Indicates whether the Cost Optimization feature is enabled. Valid values: true,false.
801
789
  :param pulumi.Input[float] cpu: The amount of CPU resources allocated to the container group.
@@ -997,12 +985,8 @@ class _EciScalingConfigurationState:
997
985
  @pulumi.getter(name="containerGroupName")
998
986
  def container_group_name(self) -> Optional[pulumi.Input[str]]:
999
987
  """
1000
- The name series of the elastic container instances created from the scaling configuration. If you want to use an ordered instance name, specify the value for this parameter in the following format: name_prefix(AUTO_INCREMENT)[begin_number,bits]name_suffix.
1001
- name_prefix: the prefix of the hostname.
1002
- (AUTO_INCREMENT): the sort method. This is a static field.
1003
- begin_number: the start value of the sequential values. Valid values: 0 to 999999.
1004
- bits: the number of digits in sequential values. Valid values: 1 to 6. If the number of digits in the specified begin_number value is greater than the value of the bits field, the bits field is automatically set to 6.
1005
- name_suffix: the suffix of the hostname. This field is optional.
988
+ The name of the container group. which must contain 2-128 characters (
989
+ English), starting with numbers, English lowercase letters , and can contain number, and hypens `-`.
1006
990
  """
1007
991
  return pulumi.get(self, "container_group_name")
1008
992
 
@@ -1582,12 +1566,8 @@ class EciScalingConfiguration(pulumi.CustomResource):
1582
1566
  :param pulumi.Input[int] active_deadline_seconds: The duration in seconds relative to the startTime that the job may be active before the system tries to terminate it.
1583
1567
  :param pulumi.Input[bool] auto_create_eip: Whether create eip automatically.
1584
1568
  :param pulumi.Input[bool] auto_match_image_cache: Whether to automatically match the image cache.
1585
- :param pulumi.Input[str] container_group_name: The name series of the elastic container instances created from the scaling configuration. If you want to use an ordered instance name, specify the value for this parameter in the following format: name_prefix(AUTO_INCREMENT)[begin_number,bits]name_suffix.
1586
- name_prefix: the prefix of the hostname.
1587
- (AUTO_INCREMENT): the sort method. This is a static field.
1588
- begin_number: the start value of the sequential values. Valid values: 0 to 999999.
1589
- bits: the number of digits in sequential values. Valid values: 1 to 6. If the number of digits in the specified begin_number value is greater than the value of the bits field, the bits field is automatically set to 6.
1590
- name_suffix: the suffix of the hostname. This field is optional.
1569
+ :param pulumi.Input[str] container_group_name: The name of the container group. which must contain 2-128 characters (
1570
+ English), starting with numbers, English lowercase letters , and can contain number, and hypens `-`.
1591
1571
  :param pulumi.Input[Sequence[pulumi.Input[Union['EciScalingConfigurationContainerArgs', 'EciScalingConfigurationContainerArgsDict']]]] containers: The list of containers. See `containers` below for details.
1592
1572
  :param pulumi.Input[bool] cost_optimization: Indicates whether the Cost Optimization feature is enabled. Valid values: true,false.
1593
1573
  :param pulumi.Input[float] cpu: The amount of CPU resources allocated to the container group.
@@ -1889,12 +1869,8 @@ class EciScalingConfiguration(pulumi.CustomResource):
1889
1869
  :param pulumi.Input[int] active_deadline_seconds: The duration in seconds relative to the startTime that the job may be active before the system tries to terminate it.
1890
1870
  :param pulumi.Input[bool] auto_create_eip: Whether create eip automatically.
1891
1871
  :param pulumi.Input[bool] auto_match_image_cache: Whether to automatically match the image cache.
1892
- :param pulumi.Input[str] container_group_name: The name series of the elastic container instances created from the scaling configuration. If you want to use an ordered instance name, specify the value for this parameter in the following format: name_prefix(AUTO_INCREMENT)[begin_number,bits]name_suffix.
1893
- name_prefix: the prefix of the hostname.
1894
- (AUTO_INCREMENT): the sort method. This is a static field.
1895
- begin_number: the start value of the sequential values. Valid values: 0 to 999999.
1896
- bits: the number of digits in sequential values. Valid values: 1 to 6. If the number of digits in the specified begin_number value is greater than the value of the bits field, the bits field is automatically set to 6.
1897
- name_suffix: the suffix of the hostname. This field is optional.
1872
+ :param pulumi.Input[str] container_group_name: The name of the container group. which must contain 2-128 characters (
1873
+ English), starting with numbers, English lowercase letters , and can contain number, and hypens `-`.
1898
1874
  :param pulumi.Input[Sequence[pulumi.Input[Union['EciScalingConfigurationContainerArgs', 'EciScalingConfigurationContainerArgsDict']]]] containers: The list of containers. See `containers` below for details.
1899
1875
  :param pulumi.Input[bool] cost_optimization: Indicates whether the Cost Optimization feature is enabled. Valid values: true,false.
1900
1876
  :param pulumi.Input[float] cpu: The amount of CPU resources allocated to the container group.
@@ -2039,12 +2015,8 @@ class EciScalingConfiguration(pulumi.CustomResource):
2039
2015
  @pulumi.getter(name="containerGroupName")
2040
2016
  def container_group_name(self) -> pulumi.Output[Optional[str]]:
2041
2017
  """
2042
- The name series of the elastic container instances created from the scaling configuration. If you want to use an ordered instance name, specify the value for this parameter in the following format: name_prefix(AUTO_INCREMENT)[begin_number,bits]name_suffix.
2043
- name_prefix: the prefix of the hostname.
2044
- (AUTO_INCREMENT): the sort method. This is a static field.
2045
- begin_number: the start value of the sequential values. Valid values: 0 to 999999.
2046
- bits: the number of digits in sequential values. Valid values: 1 to 6. If the number of digits in the specified begin_number value is greater than the value of the bits field, the bits field is automatically set to 6.
2047
- name_suffix: the suffix of the hostname. This field is optional.
2018
+ The name of the container group. which must contain 2-128 characters (
2019
+ English), starting with numbers, English lowercase letters , and can contain number, and hypens `-`.
2048
2020
  """
2049
2021
  return pulumi.get(self, "container_group_name")
2050
2022
 
@@ -35,7 +35,6 @@ __all__ = [
35
35
  'ScalingConfigurationDataDisk',
36
36
  'ScalingConfigurationInstancePatternInfo',
37
37
  'ScalingConfigurationInstanceTypeOverride',
38
- 'ScalingConfigurationNetworkInterface',
39
38
  'ScalingConfigurationSpotPriceLimit',
40
39
  'ScalingGroupAlbServerGroup',
41
40
  'ScalingGroupLaunchTemplateOverride',
@@ -2052,84 +2051,6 @@ class ScalingConfigurationInstanceTypeOverride(dict):
2052
2051
  return pulumi.get(self, "weighted_capacity")
2053
2052
 
2054
2053
 
2055
- @pulumi.output_type
2056
- class ScalingConfigurationNetworkInterface(dict):
2057
- @staticmethod
2058
- def __key_warning(key: str):
2059
- suggest = None
2060
- if key == "instanceType":
2061
- suggest = "instance_type"
2062
- elif key == "ipv6AddressCount":
2063
- suggest = "ipv6_address_count"
2064
- elif key == "networkInterfaceTrafficMode":
2065
- suggest = "network_interface_traffic_mode"
2066
- elif key == "securityGroupIds":
2067
- suggest = "security_group_ids"
2068
-
2069
- if suggest:
2070
- pulumi.log.warn(f"Key '{key}' not found in ScalingConfigurationNetworkInterface. Access the value via the '{suggest}' property getter instead.")
2071
-
2072
- def __getitem__(self, key: str) -> Any:
2073
- ScalingConfigurationNetworkInterface.__key_warning(key)
2074
- return super().__getitem__(key)
2075
-
2076
- def get(self, key: str, default = None) -> Any:
2077
- ScalingConfigurationNetworkInterface.__key_warning(key)
2078
- return super().get(key, default)
2079
-
2080
- def __init__(__self__, *,
2081
- instance_type: Optional[str] = None,
2082
- ipv6_address_count: Optional[int] = None,
2083
- network_interface_traffic_mode: Optional[str] = None,
2084
- security_group_ids: Optional[Sequence[str]] = None):
2085
- """
2086
- :param str instance_type: The ENI type. If you specify NetworkInterfaces.N, specify at least one primary ENI. You cannot specify SecurityGroupId or SecurityGroupIds.N. Valid values: Primary, Secondary.
2087
- :param int ipv6_address_count: The number of randomly generated IPv6 addresses that you want to assign to primary ENI N.
2088
- :param str network_interface_traffic_mode: The communication mode of the ENI. Valid values: Standard, HighPerformance.
2089
- :param Sequence[str] security_group_ids: The ID of security group N to which ENI N belongs.
2090
- """
2091
- if instance_type is not None:
2092
- pulumi.set(__self__, "instance_type", instance_type)
2093
- if ipv6_address_count is not None:
2094
- pulumi.set(__self__, "ipv6_address_count", ipv6_address_count)
2095
- if network_interface_traffic_mode is not None:
2096
- pulumi.set(__self__, "network_interface_traffic_mode", network_interface_traffic_mode)
2097
- if security_group_ids is not None:
2098
- pulumi.set(__self__, "security_group_ids", security_group_ids)
2099
-
2100
- @property
2101
- @pulumi.getter(name="instanceType")
2102
- def instance_type(self) -> Optional[str]:
2103
- """
2104
- The ENI type. If you specify NetworkInterfaces.N, specify at least one primary ENI. You cannot specify SecurityGroupId or SecurityGroupIds.N. Valid values: Primary, Secondary.
2105
- """
2106
- return pulumi.get(self, "instance_type")
2107
-
2108
- @property
2109
- @pulumi.getter(name="ipv6AddressCount")
2110
- def ipv6_address_count(self) -> Optional[int]:
2111
- """
2112
- The number of randomly generated IPv6 addresses that you want to assign to primary ENI N.
2113
- """
2114
- return pulumi.get(self, "ipv6_address_count")
2115
-
2116
- @property
2117
- @pulumi.getter(name="networkInterfaceTrafficMode")
2118
- def network_interface_traffic_mode(self) -> Optional[str]:
2119
- """
2120
- The communication mode of the ENI. Valid values: Standard, HighPerformance.
2121
- """
2122
- return pulumi.get(self, "network_interface_traffic_mode")
2123
-
2124
- @property
2125
- @pulumi.getter(name="securityGroupIds")
2126
- def security_group_ids(self) -> Optional[Sequence[str]]:
2127
- """
2128
- The ID of security group N to which ENI N belongs.
2129
- """
2130
- return pulumi.get(self, "security_group_ids")
2131
-
2132
-
2133
2054
  @pulumi.output_type
2134
2055
  class ScalingConfigurationSpotPriceLimit(dict):
2135
2056
  @staticmethod
@@ -47,7 +47,6 @@ class ScalingConfigurationArgs:
47
47
  key_name: Optional[pulumi.Input[str]] = None,
48
48
  kms_encrypted_password: Optional[pulumi.Input[str]] = None,
49
49
  kms_encryption_context: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
50
- network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input['ScalingConfigurationNetworkInterfaceArgs']]]] = None,
51
50
  override: Optional[pulumi.Input[bool]] = None,
52
51
  password: Optional[pulumi.Input[str]] = None,
53
52
  password_inherit: Optional[pulumi.Input[bool]] = None,
@@ -101,7 +100,6 @@ class ScalingConfigurationArgs:
101
100
  :param pulumi.Input[str] key_name: The name of key pair that can login ECS instance successfully without password. If it is specified, the password would be invalid.
102
101
  :param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a db account. If the `password` is filled in, this field will be ignored.
103
102
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a db account with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
104
- :param pulumi.Input[Sequence[pulumi.Input['ScalingConfigurationNetworkInterfaceArgs']]] network_interfaces: Specify NetworkInterfaces.N to configure primary and secondary ENIs. In this case, specify at least one primary ENI. If you set NetworkInterfaces.N.InstanceType to Primary, a primary ENI is configured. If you set NetworkInterfaces.N.InstanceType to Secondary or leave the parameter empty, a secondary ENI is configured. See `network_interfaces` below for details.
105
103
  :param pulumi.Input[bool] override: Indicates whether to overwrite the existing data. Default to false.
106
104
  :param pulumi.Input[str] password: The password of the ECS instance. The password must be 8 to 30 characters in length. It must contains at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include `() ~!@#$%^&*-_+=\\|{}[]:;'<>,.?/`, The password of Windows-based instances cannot start with a forward slash (/).
107
105
  :param pulumi.Input[bool] password_inherit: Specifies whether to use the password that is predefined in the image. If the PasswordInherit parameter is set to true, the `password` and `kms_encrypted_password` will be ignored. You must ensure that the selected image has a password configured.
@@ -201,8 +199,6 @@ class ScalingConfigurationArgs:
201
199
  pulumi.set(__self__, "kms_encrypted_password", kms_encrypted_password)
202
200
  if kms_encryption_context is not None:
203
201
  pulumi.set(__self__, "kms_encryption_context", kms_encryption_context)
204
- if network_interfaces is not None:
205
- pulumi.set(__self__, "network_interfaces", network_interfaces)
206
202
  if override is not None:
207
203
  pulumi.set(__self__, "override", override)
208
204
  if password is not None:
@@ -568,18 +564,6 @@ class ScalingConfigurationArgs:
568
564
  def kms_encryption_context(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
569
565
  pulumi.set(self, "kms_encryption_context", value)
570
566
 
571
- @property
572
- @pulumi.getter(name="networkInterfaces")
573
- def network_interfaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ScalingConfigurationNetworkInterfaceArgs']]]]:
574
- """
575
- Specify NetworkInterfaces.N to configure primary and secondary ENIs. In this case, specify at least one primary ENI. If you set NetworkInterfaces.N.InstanceType to Primary, a primary ENI is configured. If you set NetworkInterfaces.N.InstanceType to Secondary or leave the parameter empty, a secondary ENI is configured. See `network_interfaces` below for details.
576
- """
577
- return pulumi.get(self, "network_interfaces")
578
-
579
- @network_interfaces.setter
580
- def network_interfaces(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ScalingConfigurationNetworkInterfaceArgs']]]]):
581
- pulumi.set(self, "network_interfaces", value)
582
-
583
567
  @property
584
568
  @pulumi.getter
585
569
  def override(self) -> Optional[pulumi.Input[bool]]:
@@ -925,7 +909,6 @@ class _ScalingConfigurationState:
925
909
  key_name: Optional[pulumi.Input[str]] = None,
926
910
  kms_encrypted_password: Optional[pulumi.Input[str]] = None,
927
911
  kms_encryption_context: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
928
- network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input['ScalingConfigurationNetworkInterfaceArgs']]]] = None,
929
912
  override: Optional[pulumi.Input[bool]] = None,
930
913
  password: Optional[pulumi.Input[str]] = None,
931
914
  password_inherit: Optional[pulumi.Input[bool]] = None,
@@ -979,7 +962,6 @@ class _ScalingConfigurationState:
979
962
  :param pulumi.Input[str] key_name: The name of key pair that can login ECS instance successfully without password. If it is specified, the password would be invalid.
980
963
  :param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a db account. If the `password` is filled in, this field will be ignored.
981
964
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a db account with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
982
- :param pulumi.Input[Sequence[pulumi.Input['ScalingConfigurationNetworkInterfaceArgs']]] network_interfaces: Specify NetworkInterfaces.N to configure primary and secondary ENIs. In this case, specify at least one primary ENI. If you set NetworkInterfaces.N.InstanceType to Primary, a primary ENI is configured. If you set NetworkInterfaces.N.InstanceType to Secondary or leave the parameter empty, a secondary ENI is configured. See `network_interfaces` below for details.
983
965
  :param pulumi.Input[bool] override: Indicates whether to overwrite the existing data. Default to false.
984
966
  :param pulumi.Input[str] password: The password of the ECS instance. The password must be 8 to 30 characters in length. It must contains at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include `() ~!@#$%^&*-_+=\\|{}[]:;'<>,.?/`, The password of Windows-based instances cannot start with a forward slash (/).
985
967
  :param pulumi.Input[bool] password_inherit: Specifies whether to use the password that is predefined in the image. If the PasswordInherit parameter is set to true, the `password` and `kms_encrypted_password` will be ignored. You must ensure that the selected image has a password configured.
@@ -1079,8 +1061,6 @@ class _ScalingConfigurationState:
1079
1061
  pulumi.set(__self__, "kms_encrypted_password", kms_encrypted_password)
1080
1062
  if kms_encryption_context is not None:
1081
1063
  pulumi.set(__self__, "kms_encryption_context", kms_encryption_context)
1082
- if network_interfaces is not None:
1083
- pulumi.set(__self__, "network_interfaces", network_interfaces)
1084
1064
  if override is not None:
1085
1065
  pulumi.set(__self__, "override", override)
1086
1066
  if password is not None:
@@ -1436,18 +1416,6 @@ class _ScalingConfigurationState:
1436
1416
  def kms_encryption_context(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
1437
1417
  pulumi.set(self, "kms_encryption_context", value)
1438
1418
 
1439
- @property
1440
- @pulumi.getter(name="networkInterfaces")
1441
- def network_interfaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ScalingConfigurationNetworkInterfaceArgs']]]]:
1442
- """
1443
- Specify NetworkInterfaces.N to configure primary and secondary ENIs. In this case, specify at least one primary ENI. If you set NetworkInterfaces.N.InstanceType to Primary, a primary ENI is configured. If you set NetworkInterfaces.N.InstanceType to Secondary or leave the parameter empty, a secondary ENI is configured. See `network_interfaces` below for details.
1444
- """
1445
- return pulumi.get(self, "network_interfaces")
1446
-
1447
- @network_interfaces.setter
1448
- def network_interfaces(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ScalingConfigurationNetworkInterfaceArgs']]]]):
1449
- pulumi.set(self, "network_interfaces", value)
1450
-
1451
1419
  @property
1452
1420
  @pulumi.getter
1453
1421
  def override(self) -> Optional[pulumi.Input[bool]]:
@@ -1807,7 +1775,6 @@ class ScalingConfiguration(pulumi.CustomResource):
1807
1775
  key_name: Optional[pulumi.Input[str]] = None,
1808
1776
  kms_encrypted_password: Optional[pulumi.Input[str]] = None,
1809
1777
  kms_encryption_context: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1810
- network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ScalingConfigurationNetworkInterfaceArgs', 'ScalingConfigurationNetworkInterfaceArgsDict']]]]] = None,
1811
1778
  override: Optional[pulumi.Input[bool]] = None,
1812
1779
  password: Optional[pulumi.Input[str]] = None,
1813
1780
  password_inherit: Optional[pulumi.Input[bool]] = None,
@@ -1943,7 +1910,6 @@ class ScalingConfiguration(pulumi.CustomResource):
1943
1910
  :param pulumi.Input[str] key_name: The name of key pair that can login ECS instance successfully without password. If it is specified, the password would be invalid.
1944
1911
  :param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a db account. If the `password` is filled in, this field will be ignored.
1945
1912
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a db account with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
1946
- :param pulumi.Input[Sequence[pulumi.Input[Union['ScalingConfigurationNetworkInterfaceArgs', 'ScalingConfigurationNetworkInterfaceArgsDict']]]] network_interfaces: Specify NetworkInterfaces.N to configure primary and secondary ENIs. In this case, specify at least one primary ENI. If you set NetworkInterfaces.N.InstanceType to Primary, a primary ENI is configured. If you set NetworkInterfaces.N.InstanceType to Secondary or leave the parameter empty, a secondary ENI is configured. See `network_interfaces` below for details.
1947
1913
  :param pulumi.Input[bool] override: Indicates whether to overwrite the existing data. Default to false.
1948
1914
  :param pulumi.Input[str] password: The password of the ECS instance. The password must be 8 to 30 characters in length. It must contains at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include `() ~!@#$%^&*-_+=\\|{}[]:;'<>,.?/`, The password of Windows-based instances cannot start with a forward slash (/).
1949
1915
  :param pulumi.Input[bool] password_inherit: Specifies whether to use the password that is predefined in the image. If the PasswordInherit parameter is set to true, the `password` and `kms_encrypted_password` will be ignored. You must ensure that the selected image has a password configured.
@@ -2114,7 +2080,6 @@ class ScalingConfiguration(pulumi.CustomResource):
2114
2080
  key_name: Optional[pulumi.Input[str]] = None,
2115
2081
  kms_encrypted_password: Optional[pulumi.Input[str]] = None,
2116
2082
  kms_encryption_context: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2117
- network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ScalingConfigurationNetworkInterfaceArgs', 'ScalingConfigurationNetworkInterfaceArgsDict']]]]] = None,
2118
2083
  override: Optional[pulumi.Input[bool]] = None,
2119
2084
  password: Optional[pulumi.Input[str]] = None,
2120
2085
  password_inherit: Optional[pulumi.Input[bool]] = None,
@@ -2175,7 +2140,6 @@ class ScalingConfiguration(pulumi.CustomResource):
2175
2140
  __props__.__dict__["key_name"] = key_name
2176
2141
  __props__.__dict__["kms_encrypted_password"] = kms_encrypted_password
2177
2142
  __props__.__dict__["kms_encryption_context"] = kms_encryption_context
2178
- __props__.__dict__["network_interfaces"] = network_interfaces
2179
2143
  __props__.__dict__["override"] = override
2180
2144
  __props__.__dict__["password"] = password
2181
2145
  __props__.__dict__["password_inherit"] = password_inherit
@@ -2239,7 +2203,6 @@ class ScalingConfiguration(pulumi.CustomResource):
2239
2203
  key_name: Optional[pulumi.Input[str]] = None,
2240
2204
  kms_encrypted_password: Optional[pulumi.Input[str]] = None,
2241
2205
  kms_encryption_context: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
2242
- network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ScalingConfigurationNetworkInterfaceArgs', 'ScalingConfigurationNetworkInterfaceArgsDict']]]]] = None,
2243
2206
  override: Optional[pulumi.Input[bool]] = None,
2244
2207
  password: Optional[pulumi.Input[str]] = None,
2245
2208
  password_inherit: Optional[pulumi.Input[bool]] = None,
@@ -2298,7 +2261,6 @@ class ScalingConfiguration(pulumi.CustomResource):
2298
2261
  :param pulumi.Input[str] key_name: The name of key pair that can login ECS instance successfully without password. If it is specified, the password would be invalid.
2299
2262
  :param pulumi.Input[str] kms_encrypted_password: An KMS encrypts password used to a db account. If the `password` is filled in, this field will be ignored.
2300
2263
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] kms_encryption_context: An KMS encryption context used to decrypt `kms_encrypted_password` before creating or updating a db account with `kms_encrypted_password`. See [Encryption Context](https://www.alibabacloud.com/help/doc-detail/42975.htm). It is valid when `kms_encrypted_password` is set.
2301
- :param pulumi.Input[Sequence[pulumi.Input[Union['ScalingConfigurationNetworkInterfaceArgs', 'ScalingConfigurationNetworkInterfaceArgsDict']]]] network_interfaces: Specify NetworkInterfaces.N to configure primary and secondary ENIs. In this case, specify at least one primary ENI. If you set NetworkInterfaces.N.InstanceType to Primary, a primary ENI is configured. If you set NetworkInterfaces.N.InstanceType to Secondary or leave the parameter empty, a secondary ENI is configured. See `network_interfaces` below for details.
2302
2264
  :param pulumi.Input[bool] override: Indicates whether to overwrite the existing data. Default to false.
2303
2265
  :param pulumi.Input[str] password: The password of the ECS instance. The password must be 8 to 30 characters in length. It must contains at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Special characters include `() ~!@#$%^&*-_+=\\|{}[]:;'<>,.?/`, The password of Windows-based instances cannot start with a forward slash (/).
2304
2266
  :param pulumi.Input[bool] password_inherit: Specifies whether to use the password that is predefined in the image. If the PasswordInherit parameter is set to true, the `password` and `kms_encrypted_password` will be ignored. You must ensure that the selected image has a password configured.
@@ -2371,7 +2333,6 @@ class ScalingConfiguration(pulumi.CustomResource):
2371
2333
  __props__.__dict__["key_name"] = key_name
2372
2334
  __props__.__dict__["kms_encrypted_password"] = kms_encrypted_password
2373
2335
  __props__.__dict__["kms_encryption_context"] = kms_encryption_context
2374
- __props__.__dict__["network_interfaces"] = network_interfaces
2375
2336
  __props__.__dict__["override"] = override
2376
2337
  __props__.__dict__["password"] = password
2377
2338
  __props__.__dict__["password_inherit"] = password_inherit
@@ -2602,14 +2563,6 @@ class ScalingConfiguration(pulumi.CustomResource):
2602
2563
  """
2603
2564
  return pulumi.get(self, "kms_encryption_context")
2604
2565
 
2605
- @property
2606
- @pulumi.getter(name="networkInterfaces")
2607
- def network_interfaces(self) -> pulumi.Output[Optional[Sequence['outputs.ScalingConfigurationNetworkInterface']]]:
2608
- """
2609
- Specify NetworkInterfaces.N to configure primary and secondary ENIs. In this case, specify at least one primary ENI. If you set NetworkInterfaces.N.InstanceType to Primary, a primary ENI is configured. If you set NetworkInterfaces.N.InstanceType to Secondary or leave the parameter empty, a secondary ENI is configured. See `network_interfaces` below for details.
2610
- """
2611
- return pulumi.get(self, "network_interfaces")
2612
-
2613
2566
  @property
2614
2567
  @pulumi.getter
2615
2568
  def override(self) -> pulumi.Output[Optional[bool]]: