pulumi-alicloud 3.66.0a1731648019__py3-none-any.whl → 3.66.0a1731672315__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 +94 -0
  2. pulumi_alicloud/alikafka/instance.py +112 -0
  3. pulumi_alicloud/cloudsso/_inputs.py +9 -9
  4. pulumi_alicloud/cloudsso/access_configuration.py +100 -34
  5. pulumi_alicloud/cloudsso/outputs.py +6 -6
  6. pulumi_alicloud/esa/__init__.py +9 -0
  7. pulumi_alicloud/esa/rate_plan_instance.py +626 -0
  8. pulumi_alicloud/esa/site.py +533 -0
  9. pulumi_alicloud/fc/_inputs.py +243 -135
  10. pulumi_alicloud/fc/outputs.py +173 -90
  11. pulumi_alicloud/fc/v3_alias.py +28 -0
  12. pulumi_alicloud/fc/v3_async_invoke_config.py +56 -0
  13. pulumi_alicloud/fc/v3_concurrency_config.py +28 -0
  14. pulumi_alicloud/fc/v3_custom_domain.py +118 -6
  15. pulumi_alicloud/fc/v3_function.py +308 -0
  16. pulumi_alicloud/fc/v3_function_version.py +30 -2
  17. pulumi_alicloud/fc/v3_layer_version.py +104 -1
  18. pulumi_alicloud/fc/v3_provision_config.py +86 -2
  19. pulumi_alicloud/fc/v3_trigger.py +114 -0
  20. pulumi_alicloud/gwlb/__init__.py +12 -0
  21. pulumi_alicloud/gwlb/_inputs.py +673 -0
  22. pulumi_alicloud/gwlb/listener.py +434 -0
  23. pulumi_alicloud/gwlb/load_balancer.py +537 -0
  24. pulumi_alicloud/gwlb/outputs.py +533 -0
  25. pulumi_alicloud/gwlb/server_group.py +780 -0
  26. pulumi_alicloud/oss/__init__.py +2 -0
  27. pulumi_alicloud/oss/_inputs.py +194 -0
  28. pulumi_alicloud/oss/bucket_cname.py +509 -0
  29. pulumi_alicloud/oss/bucket_cname_token.py +239 -0
  30. pulumi_alicloud/oss/outputs.py +141 -0
  31. pulumi_alicloud/pulumi-plugin.json +1 -1
  32. pulumi_alicloud/quotas/_inputs.py +6 -6
  33. pulumi_alicloud/quotas/outputs.py +4 -4
  34. pulumi_alicloud/quotas/quota_application.py +21 -28
  35. pulumi_alicloud/redis/tair_instance.py +21 -77
  36. pulumi_alicloud/vpc/__init__.py +4 -0
  37. pulumi_alicloud/vpc/ipam_ipam.py +531 -0
  38. pulumi_alicloud/vpc/ipam_ipam_pool.py +850 -0
  39. pulumi_alicloud/vpc/ipam_ipam_pool_cidr.py +313 -0
  40. pulumi_alicloud/vpc/ipam_ipam_scope.py +537 -0
  41. {pulumi_alicloud-3.66.0a1731648019.dist-info → pulumi_alicloud-3.66.0a1731672315.dist-info}/METADATA +1 -1
  42. {pulumi_alicloud-3.66.0a1731648019.dist-info → pulumi_alicloud-3.66.0a1731672315.dist-info}/RECORD +44 -29
  43. {pulumi_alicloud-3.66.0a1731648019.dist-info → pulumi_alicloud-3.66.0a1731672315.dist-info}/WHEEL +0 -0
  44. {pulumi_alicloud-3.66.0a1731648019.dist-info → pulumi_alicloud-3.66.0a1731672315.dist-info}/top_level.txt +0 -0
@@ -93,17 +93,9 @@ class TairInstanceArgs:
93
93
  :param pulumi.Input[int] intranet_bandwidth: Instance intranet bandwidth
94
94
  :param pulumi.Input[str] modify_mode: The modification method when modifying the IP whitelist. The value includes Cover (default): overwrite the original whitelist; Append: Append the whitelist; Delete: Delete the whitelist.
95
95
  :param pulumi.Input[str] node_type: Node type, value:
96
-
97
- MASTER_SLAVE: high availability (dual copy)
98
-
99
- STAND_ALONE: single copy
100
-
101
- double: double copy
102
-
103
- single: single copy
104
-
105
- Note For Cloud Native instances, select MASTER_SLAVE or STAND_ALONE. For Classic instances, select double or single.
106
- :param pulumi.Input[str] param_no_loose_sentinel_enabled: sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, 取值为. The default value is no.
96
+ - `MASTER_SLAVE`: high availability (dual copy)
97
+ - `STAND_ALONE`: single copy
98
+ :param pulumi.Input[str] param_no_loose_sentinel_enabled: sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes or no. The default value is no.
107
99
  :param pulumi.Input[str] param_repl_mode: The value is semisync or async. The default value is async.
108
100
 
109
101
  The default data synchronization mode is asynchronous replication. To modify the data synchronization mode, refer to https://www.alibabacloud.com/help/en/redis/user-guide/modify-the-synchronization-mode-of-a-persistent-memory-optimized-instance 。
@@ -419,16 +411,8 @@ class TairInstanceArgs:
419
411
  def node_type(self) -> Optional[pulumi.Input[str]]:
420
412
  """
421
413
  Node type, value:
422
-
423
- MASTER_SLAVE: high availability (dual copy)
424
-
425
- STAND_ALONE: single copy
426
-
427
- double: double copy
428
-
429
- single: single copy
430
-
431
- Note For Cloud Native instances, select MASTER_SLAVE or STAND_ALONE. For Classic instances, select double or single.
414
+ - `MASTER_SLAVE`: high availability (dual copy)
415
+ - `STAND_ALONE`: single copy
432
416
  """
433
417
  return pulumi.get(self, "node_type")
434
418
 
@@ -440,7 +424,7 @@ class TairInstanceArgs:
440
424
  @pulumi.getter(name="paramNoLooseSentinelEnabled")
441
425
  def param_no_loose_sentinel_enabled(self) -> Optional[pulumi.Input[str]]:
442
426
  """
443
- sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, 取值为. The default value is no.
427
+ sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes or no. The default value is no.
444
428
  """
445
429
  return pulumi.get(self, "param_no_loose_sentinel_enabled")
446
430
 
@@ -825,17 +809,9 @@ class _TairInstanceState:
825
809
  :param pulumi.Input[str] modify_mode: The modification method when modifying the IP whitelist. The value includes Cover (default): overwrite the original whitelist; Append: Append the whitelist; Delete: Delete the whitelist.
826
810
  :param pulumi.Input[str] network_type: The network type of the instance. CLASSIC(classic network), VPC.
827
811
  :param pulumi.Input[str] node_type: Node type, value:
828
-
829
- MASTER_SLAVE: high availability (dual copy)
830
-
831
- STAND_ALONE: single copy
832
-
833
- double: double copy
834
-
835
- single: single copy
836
-
837
- Note For Cloud Native instances, select MASTER_SLAVE or STAND_ALONE. For Classic instances, select double or single.
838
- :param pulumi.Input[str] param_no_loose_sentinel_enabled: sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, 取值为. The default value is no.
812
+ - `MASTER_SLAVE`: high availability (dual copy)
813
+ - `STAND_ALONE`: single copy
814
+ :param pulumi.Input[str] param_no_loose_sentinel_enabled: sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes or no. The default value is no.
839
815
  :param pulumi.Input[str] param_repl_mode: The value is semisync or async. The default value is async.
840
816
 
841
817
  The default data synchronization mode is asynchronous replication. To modify the data synchronization mode, refer to https://www.alibabacloud.com/help/en/redis/user-guide/modify-the-synchronization-mode-of-a-persistent-memory-optimized-instance 。
@@ -1199,16 +1175,8 @@ class _TairInstanceState:
1199
1175
  def node_type(self) -> Optional[pulumi.Input[str]]:
1200
1176
  """
1201
1177
  Node type, value:
1202
-
1203
- MASTER_SLAVE: high availability (dual copy)
1204
-
1205
- STAND_ALONE: single copy
1206
-
1207
- double: double copy
1208
-
1209
- single: single copy
1210
-
1211
- Note For Cloud Native instances, select MASTER_SLAVE or STAND_ALONE. For Classic instances, select double or single.
1178
+ - `MASTER_SLAVE`: high availability (dual copy)
1179
+ - `STAND_ALONE`: single copy
1212
1180
  """
1213
1181
  return pulumi.get(self, "node_type")
1214
1182
 
@@ -1220,7 +1188,7 @@ class _TairInstanceState:
1220
1188
  @pulumi.getter(name="paramNoLooseSentinelEnabled")
1221
1189
  def param_no_loose_sentinel_enabled(self) -> Optional[pulumi.Input[str]]:
1222
1190
  """
1223
- sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, 取值为. The default value is no.
1191
+ sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes or no. The default value is no.
1224
1192
  """
1225
1193
  return pulumi.get(self, "param_no_loose_sentinel_enabled")
1226
1194
 
@@ -1665,17 +1633,9 @@ class TairInstance(pulumi.CustomResource):
1665
1633
  :param pulumi.Input[int] intranet_bandwidth: Instance intranet bandwidth
1666
1634
  :param pulumi.Input[str] modify_mode: The modification method when modifying the IP whitelist. The value includes Cover (default): overwrite the original whitelist; Append: Append the whitelist; Delete: Delete the whitelist.
1667
1635
  :param pulumi.Input[str] node_type: Node type, value:
1668
-
1669
- MASTER_SLAVE: high availability (dual copy)
1670
-
1671
- STAND_ALONE: single copy
1672
-
1673
- double: double copy
1674
-
1675
- single: single copy
1676
-
1677
- Note For Cloud Native instances, select MASTER_SLAVE or STAND_ALONE. For Classic instances, select double or single.
1678
- :param pulumi.Input[str] param_no_loose_sentinel_enabled: sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, 取值为. The default value is no.
1636
+ - `MASTER_SLAVE`: high availability (dual copy)
1637
+ - `STAND_ALONE`: single copy
1638
+ :param pulumi.Input[str] param_no_loose_sentinel_enabled: sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes or no. The default value is no.
1679
1639
  :param pulumi.Input[str] param_repl_mode: The value is semisync or async. The default value is async.
1680
1640
 
1681
1641
  The default data synchronization mode is asynchronous replication. To modify the data synchronization mode, refer to https://www.alibabacloud.com/help/en/redis/user-guide/modify-the-synchronization-mode-of-a-persistent-memory-optimized-instance 。
@@ -1953,17 +1913,9 @@ class TairInstance(pulumi.CustomResource):
1953
1913
  :param pulumi.Input[str] modify_mode: The modification method when modifying the IP whitelist. The value includes Cover (default): overwrite the original whitelist; Append: Append the whitelist; Delete: Delete the whitelist.
1954
1914
  :param pulumi.Input[str] network_type: The network type of the instance. CLASSIC(classic network), VPC.
1955
1915
  :param pulumi.Input[str] node_type: Node type, value:
1956
-
1957
- MASTER_SLAVE: high availability (dual copy)
1958
-
1959
- STAND_ALONE: single copy
1960
-
1961
- double: double copy
1962
-
1963
- single: single copy
1964
-
1965
- Note For Cloud Native instances, select MASTER_SLAVE or STAND_ALONE. For Classic instances, select double or single.
1966
- :param pulumi.Input[str] param_no_loose_sentinel_enabled: sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, 取值为. The default value is no.
1916
+ - `MASTER_SLAVE`: high availability (dual copy)
1917
+ - `STAND_ALONE`: single copy
1918
+ :param pulumi.Input[str] param_no_loose_sentinel_enabled: sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes or no. The default value is no.
1967
1919
  :param pulumi.Input[str] param_repl_mode: The value is semisync or async. The default value is async.
1968
1920
 
1969
1921
  The default data synchronization mode is asynchronous replication. To modify the data synchronization mode, refer to https://www.alibabacloud.com/help/en/redis/user-guide/modify-the-synchronization-mode-of-a-persistent-memory-optimized-instance 。
@@ -2217,16 +2169,8 @@ class TairInstance(pulumi.CustomResource):
2217
2169
  def node_type(self) -> pulumi.Output[str]:
2218
2170
  """
2219
2171
  Node type, value:
2220
-
2221
- MASTER_SLAVE: high availability (dual copy)
2222
-
2223
- STAND_ALONE: single copy
2224
-
2225
- double: double copy
2226
-
2227
- single: single copy
2228
-
2229
- Note For Cloud Native instances, select MASTER_SLAVE or STAND_ALONE. For Classic instances, select double or single.
2172
+ - `MASTER_SLAVE`: high availability (dual copy)
2173
+ - `STAND_ALONE`: single copy
2230
2174
  """
2231
2175
  return pulumi.get(self, "node_type")
2232
2176
 
@@ -2234,7 +2178,7 @@ class TairInstance(pulumi.CustomResource):
2234
2178
  @pulumi.getter(name="paramNoLooseSentinelEnabled")
2235
2179
  def param_no_loose_sentinel_enabled(self) -> pulumi.Output[str]:
2236
2180
  """
2237
- sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, 取值为. The default value is no.
2181
+ sentinel compatibility mode, applicable to non-cluster instances. For more information about parameters, see yes or no in the https://www.alibabacloud.com/help/en/redis/user-guide/use-the-sentinel-compatible-mode-to-connect-to-an-apsaradb-for-redis-instance, valid values: yes or no. The default value is no.
2238
2182
  """
2239
2183
  return pulumi.get(self, "param_no_loose_sentinel_enabled")
2240
2184
 
@@ -58,6 +58,10 @@ from .get_vpc_flow_logs import *
58
58
  from .ha_vip import *
59
59
  from .ha_vip_attachment import *
60
60
  from .ha_vipv2 import *
61
+ from .ipam_ipam import *
62
+ from .ipam_ipam_pool import *
63
+ from .ipam_ipam_pool_cidr import *
64
+ from .ipam_ipam_scope import *
61
65
  from .ipv4_cidr_block import *
62
66
  from .ipv4_gateway import *
63
67
  from .ipv6_address import *