pulumi-alicloud 3.74.0a1737782319__py3-none-any.whl → 3.74.0a1737989015__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 (56) hide show
  1. pulumi_alicloud/__init__.py +80 -0
  2. pulumi_alicloud/alb/__init__.py +1 -0
  3. pulumi_alicloud/alb/_inputs.py +907 -244
  4. pulumi_alicloud/alb/get_server_groups.py +55 -25
  5. pulumi_alicloud/alb/listener.py +269 -174
  6. pulumi_alicloud/alb/load_balancer.py +239 -118
  7. pulumi_alicloud/alb/load_balancer_zone_shifted_attachment.py +303 -0
  8. pulumi_alicloud/alb/outputs.py +716 -218
  9. pulumi_alicloud/alb/server_group.py +532 -122
  10. pulumi_alicloud/cen/_inputs.py +34 -0
  11. pulumi_alicloud/cen/outputs.py +37 -0
  12. pulumi_alicloud/cen/transit_router_multicast_domain.py +123 -36
  13. pulumi_alicloud/cs/_inputs.py +349 -1
  14. pulumi_alicloud/cs/kubernetes.py +15 -15
  15. pulumi_alicloud/cs/node_pool.py +77 -2
  16. pulumi_alicloud/cs/outputs.py +265 -1
  17. pulumi_alicloud/dfs/file_system.py +62 -23
  18. pulumi_alicloud/dfs/mount_point.py +48 -22
  19. pulumi_alicloud/esa/__init__.py +3 -0
  20. pulumi_alicloud/esa/_inputs.py +81 -0
  21. pulumi_alicloud/esa/http_request_header_modification_rule.py +531 -0
  22. pulumi_alicloud/esa/list.py +361 -0
  23. pulumi_alicloud/esa/outputs.py +48 -0
  24. pulumi_alicloud/esa/page.py +376 -0
  25. pulumi_alicloud/esa/rate_plan_instance.py +63 -7
  26. pulumi_alicloud/ess/get_scaling_groups.py +64 -10
  27. pulumi_alicloud/ess/get_scaling_rules.py +74 -10
  28. pulumi_alicloud/ess/outputs.py +357 -17
  29. pulumi_alicloud/eventbridge/get_service.py +2 -6
  30. pulumi_alicloud/fc/_inputs.py +75 -75
  31. pulumi_alicloud/fc/outputs.py +50 -50
  32. pulumi_alicloud/fc/v3_function.py +53 -6
  33. pulumi_alicloud/kms/__init__.py +1 -0
  34. pulumi_alicloud/kms/get_instances.py +160 -0
  35. pulumi_alicloud/kms/instance.py +0 -60
  36. pulumi_alicloud/kms/outputs.py +19 -0
  37. pulumi_alicloud/maxcompute/__init__.py +5 -0
  38. pulumi_alicloud/maxcompute/_inputs.py +615 -42
  39. pulumi_alicloud/maxcompute/outputs.py +486 -28
  40. pulumi_alicloud/maxcompute/project.py +63 -31
  41. pulumi_alicloud/maxcompute/quota_plan.py +412 -0
  42. pulumi_alicloud/maxcompute/quota_schedule.py +260 -0
  43. pulumi_alicloud/maxcompute/role.py +423 -0
  44. pulumi_alicloud/maxcompute/role_user_attachment.py +368 -0
  45. pulumi_alicloud/maxcompute/tunnel_quota_timer.py +287 -0
  46. pulumi_alicloud/pulumi-plugin.json +1 -1
  47. pulumi_alicloud/rds/instance.py +68 -0
  48. pulumi_alicloud/vpc/__init__.py +1 -0
  49. pulumi_alicloud/vpc/ipam_ipam_pool.py +47 -0
  50. pulumi_alicloud/vpc/ipam_ipam_scope.py +47 -0
  51. pulumi_alicloud/vpc/ipam_service.py +144 -0
  52. pulumi_alicloud/vpc/ipv4_cidr_block.py +162 -51
  53. {pulumi_alicloud-3.74.0a1737782319.dist-info → pulumi_alicloud-3.74.0a1737989015.dist-info}/METADATA +1 -1
  54. {pulumi_alicloud-3.74.0a1737782319.dist-info → pulumi_alicloud-3.74.0a1737989015.dist-info}/RECORD +56 -45
  55. {pulumi_alicloud-3.74.0a1737782319.dist-info → pulumi_alicloud-3.74.0a1737989015.dist-info}/WHEEL +0 -0
  56. {pulumi_alicloud-3.74.0a1737782319.dist-info → pulumi_alicloud-3.74.0a1737989015.dist-info}/top_level.txt +0 -0
@@ -1833,9 +1833,9 @@ class V3FunctionCustomContainerConfig(dict):
1833
1833
  port: Optional[int] = None,
1834
1834
  resolved_image_uri: Optional[str] = None):
1835
1835
  """
1836
- :param 'V3FunctionCustomContainerConfigAccelerationInfoArgs' acceleration_info: (Deprecated) Image Acceleration Information (Obsolete).
1837
- :param str acceleration_type: Whether to enable Image acceleration. Default: The Default value, indicating that image acceleration is enabled. None: indicates that image acceleration is disabled. (Obsolete).
1838
- :param str acr_instance_id: ACR Enterprise version Image Repository ID, which must be entered when using ACR Enterprise version image. (Obsolete).
1836
+ :param 'V3FunctionCustomContainerConfigAccelerationInfoArgs' acceleration_info: (Deprecated since v1.242.0) Image Acceleration Information (Obsolete)
1837
+ :param str acceleration_type: Whether to enable Image acceleration. Default: The Default value, indicating that image acceleration is enabled. None: indicates that image acceleration is disabled. (Obsolete)
1838
+ :param str acr_instance_id: ACR Enterprise version Image Repository ID, which must be entered when using ACR Enterprise version image. (Obsolete)
1839
1839
  :param Sequence[str] commands: Container startup parameters.
1840
1840
  :param Sequence[str] entrypoints: Container start command.
1841
1841
  :param 'V3FunctionCustomContainerConfigHealthCheckConfigArgs' health_check_config: Function custom health check configuration See `health_check_config` below.
@@ -1867,7 +1867,7 @@ class V3FunctionCustomContainerConfig(dict):
1867
1867
  @_utilities.deprecated("""Field 'acceleration_info' has been deprecated from provider version 1.228.0. Image Acceleration Information (Obsolete)""")
1868
1868
  def acceleration_info(self) -> Optional['outputs.V3FunctionCustomContainerConfigAccelerationInfo']:
1869
1869
  """
1870
- (Deprecated) Image Acceleration Information (Obsolete).
1870
+ (Deprecated since v1.242.0) Image Acceleration Information (Obsolete)
1871
1871
  """
1872
1872
  return pulumi.get(self, "acceleration_info")
1873
1873
 
@@ -1876,7 +1876,7 @@ class V3FunctionCustomContainerConfig(dict):
1876
1876
  @_utilities.deprecated("""Field 'acceleration_type' has been deprecated from provider version 1.228.0. Whether to enable Image acceleration. Default: The Default value, indicating that image acceleration is enabled. None: indicates that image acceleration is disabled. (Obsolete)""")
1877
1877
  def acceleration_type(self) -> Optional[str]:
1878
1878
  """
1879
- Whether to enable Image acceleration. Default: The Default value, indicating that image acceleration is enabled. None: indicates that image acceleration is disabled. (Obsolete).
1879
+ Whether to enable Image acceleration. Default: The Default value, indicating that image acceleration is enabled. None: indicates that image acceleration is disabled. (Obsolete)
1880
1880
  """
1881
1881
  return pulumi.get(self, "acceleration_type")
1882
1882
 
@@ -1885,7 +1885,7 @@ class V3FunctionCustomContainerConfig(dict):
1885
1885
  @_utilities.deprecated("""Field 'acr_instance_id' has been deprecated from provider version 1.228.0. ACR Enterprise version Image Repository ID, which must be entered when using ACR Enterprise version image. (Obsolete)""")
1886
1886
  def acr_instance_id(self) -> Optional[str]:
1887
1887
  """
1888
- ACR Enterprise version Image Repository ID, which must be entered when using ACR Enterprise version image. (Obsolete).
1888
+ ACR Enterprise version Image Repository ID, which must be entered when using ACR Enterprise version image. (Obsolete)
1889
1889
  """
1890
1890
  return pulumi.get(self, "acr_instance_id")
1891
1891
 
@@ -1943,7 +1943,7 @@ class V3FunctionCustomContainerConfigAccelerationInfo(dict):
1943
1943
  def __init__(__self__, *,
1944
1944
  status: Optional[str] = None):
1945
1945
  """
1946
- :param str status: Image Acceleration Status (Deprecated).
1946
+ :param str status: Image Acceleration Status (Deprecated)
1947
1947
  """
1948
1948
  if status is not None:
1949
1949
  pulumi.set(__self__, "status", status)
@@ -1953,7 +1953,7 @@ class V3FunctionCustomContainerConfigAccelerationInfo(dict):
1953
1953
  @_utilities.deprecated("""Field 'status' has been deprecated from provider version 1.228.0. Image Acceleration Status (Deprecated)""")
1954
1954
  def status(self) -> Optional[str]:
1955
1955
  """
1956
- Image Acceleration Status (Deprecated).
1956
+ Image Acceleration Status (Deprecated)
1957
1957
  """
1958
1958
  return pulumi.get(self, "status")
1959
1959
 
@@ -2065,8 +2065,8 @@ class V3FunctionCustomDns(dict):
2065
2065
  searches: Optional[Sequence[str]] = None):
2066
2066
  """
2067
2067
  :param Sequence['V3FunctionCustomDnsDnsOptionArgs'] dns_options: List of configuration items in the resolv.conf file. Each item corresponds to a key-value pair in the format of key:value, where the key is required. See `dns_options` below.
2068
- :param Sequence[str] name_servers: IP Address List of DNS servers.
2069
- :param Sequence[str] searches: DNS search domain list.
2068
+ :param Sequence[str] name_servers: IP Address List of DNS servers
2069
+ :param Sequence[str] searches: DNS search domain list
2070
2070
  """
2071
2071
  if dns_options is not None:
2072
2072
  pulumi.set(__self__, "dns_options", dns_options)
@@ -2087,7 +2087,7 @@ class V3FunctionCustomDns(dict):
2087
2087
  @pulumi.getter(name="nameServers")
2088
2088
  def name_servers(self) -> Optional[Sequence[str]]:
2089
2089
  """
2090
- IP Address List of DNS servers.
2090
+ IP Address List of DNS servers
2091
2091
  """
2092
2092
  return pulumi.get(self, "name_servers")
2093
2093
 
@@ -2095,7 +2095,7 @@ class V3FunctionCustomDns(dict):
2095
2095
  @pulumi.getter
2096
2096
  def searches(self) -> Optional[Sequence[str]]:
2097
2097
  """
2098
- DNS search domain list.
2098
+ DNS search domain list
2099
2099
  """
2100
2100
  return pulumi.get(self, "searches")
2101
2101
 
@@ -2106,8 +2106,8 @@ class V3FunctionCustomDnsDnsOption(dict):
2106
2106
  name: Optional[str] = None,
2107
2107
  value: Optional[str] = None):
2108
2108
  """
2109
- :param str name: Configuration Item Name.
2110
- :param str value: Configuration Item Value.
2109
+ :param str name: Configuration Item Name
2110
+ :param str value: Configuration Item Value
2111
2111
  """
2112
2112
  if name is not None:
2113
2113
  pulumi.set(__self__, "name", name)
@@ -2118,7 +2118,7 @@ class V3FunctionCustomDnsDnsOption(dict):
2118
2118
  @pulumi.getter
2119
2119
  def name(self) -> Optional[str]:
2120
2120
  """
2121
- Configuration Item Name.
2121
+ Configuration Item Name
2122
2122
  """
2123
2123
  return pulumi.get(self, "name")
2124
2124
 
@@ -2126,7 +2126,7 @@ class V3FunctionCustomDnsDnsOption(dict):
2126
2126
  @pulumi.getter
2127
2127
  def value(self) -> Optional[str]:
2128
2128
  """
2129
- Configuration Item Value.
2129
+ Configuration Item Value
2130
2130
  """
2131
2131
  return pulumi.get(self, "value")
2132
2132
 
@@ -2308,11 +2308,11 @@ class V3FunctionGpuConfig(dict):
2308
2308
  gpu_memory_size: Optional[int] = None,
2309
2309
  gpu_type: Optional[str] = None):
2310
2310
  """
2311
- :param int gpu_memory_size: GPU memory specification, unit: MB, multiple of 1024MB.
2311
+ :param int gpu_memory_size: GPU memory specification, unit: MB, multiple of 1024MB
2312
2312
  :param str gpu_type: GPU card architecture.
2313
- - fc.gpu.tesla indicates the type of the Tesla Architecture Series card of the GPU instance (the same as the NVIDIA T4 card type).
2314
- - fc.gpu.ampere indicates the GPU instance type of Ampere Architecture Series card (same as NVIDIA A10 card type).
2315
- - fc.gpu.ada Indicates the GPU instance Ada Lovelace architecture family card type.
2313
+ - fc.gpu.tesla.1 indicates the type of the Tesla Architecture Series card of the GPU instance (the same as the NVIDIA T4 card type).
2314
+ - fc.gpu.ampere.1 indicates the GPU instance type of Ampere Architecture Series card (same as NVIDIA A10 card type).
2315
+ - fc.gpu.ada.1 Indicates the GPU instance Ada Lovelace architecture family card type.
2316
2316
  """
2317
2317
  if gpu_memory_size is not None:
2318
2318
  pulumi.set(__self__, "gpu_memory_size", gpu_memory_size)
@@ -2323,7 +2323,7 @@ class V3FunctionGpuConfig(dict):
2323
2323
  @pulumi.getter(name="gpuMemorySize")
2324
2324
  def gpu_memory_size(self) -> Optional[int]:
2325
2325
  """
2326
- GPU memory specification, unit: MB, multiple of 1024MB.
2326
+ GPU memory specification, unit: MB, multiple of 1024MB
2327
2327
  """
2328
2328
  return pulumi.get(self, "gpu_memory_size")
2329
2329
 
@@ -2332,9 +2332,9 @@ class V3FunctionGpuConfig(dict):
2332
2332
  def gpu_type(self) -> Optional[str]:
2333
2333
  """
2334
2334
  GPU card architecture.
2335
- - fc.gpu.tesla indicates the type of the Tesla Architecture Series card of the GPU instance (the same as the NVIDIA T4 card type).
2336
- - fc.gpu.ampere indicates the GPU instance type of Ampere Architecture Series card (same as NVIDIA A10 card type).
2337
- - fc.gpu.ada Indicates the GPU instance Ada Lovelace architecture family card type.
2335
+ - fc.gpu.tesla.1 indicates the type of the Tesla Architecture Series card of the GPU instance (the same as the NVIDIA T4 card type).
2336
+ - fc.gpu.ampere.1 indicates the GPU instance type of Ampere Architecture Series card (same as NVIDIA A10 card type).
2337
+ - fc.gpu.ada.1 Indicates the GPU instance Ada Lovelace architecture family card type.
2338
2338
  """
2339
2339
  return pulumi.get(self, "gpu_type")
2340
2340
 
@@ -2481,7 +2481,7 @@ class V3FunctionLogConfig(dict):
2481
2481
  """
2482
2482
  :param bool enable_instance_metrics: After this feature is enabled, you can view core metrics such as instance-level CPU usage, memory usage, instance network status, and the number of requests within an instance. false: The default value, which means that instance-level metrics are turned off. true: indicates that instance-level metrics are enabled.
2483
2483
  :param bool enable_request_metrics: After this function is enabled, you can view the time and memory consumed by a call to all functions under this service. false: indicates that request-level metrics are turned off. true: The default value, indicating that request-level metrics are enabled.
2484
- :param str log_begin_rule: Log Line First Matching Rules.
2484
+ :param str log_begin_rule: Log Line First Matching Rules
2485
2485
  :param str logstore: The Logstore name of log service.
2486
2486
  :param str project: The name of the log service Project.
2487
2487
  """
@@ -2516,7 +2516,7 @@ class V3FunctionLogConfig(dict):
2516
2516
  @pulumi.getter(name="logBeginRule")
2517
2517
  def log_begin_rule(self) -> Optional[str]:
2518
2518
  """
2519
- Log Line First Matching Rules.
2519
+ Log Line First Matching Rules
2520
2520
  """
2521
2521
  return pulumi.get(self, "log_begin_rule")
2522
2522
 
@@ -2565,9 +2565,9 @@ class V3FunctionNasConfig(dict):
2565
2565
  mount_points: Optional[Sequence['outputs.V3FunctionNasConfigMountPoint']] = None,
2566
2566
  user_id: Optional[int] = None):
2567
2567
  """
2568
- :param int group_id: Group ID.
2569
- :param Sequence['V3FunctionNasConfigMountPointArgs'] mount_points: Mount point list. See `mount_points` below.
2570
- :param int user_id: Account ID.
2568
+ :param int group_id: Group ID
2569
+ :param Sequence['V3FunctionNasConfigMountPointArgs'] mount_points: Mount point list See `mount_points` below.
2570
+ :param int user_id: Account ID
2571
2571
  """
2572
2572
  if group_id is not None:
2573
2573
  pulumi.set(__self__, "group_id", group_id)
@@ -2580,7 +2580,7 @@ class V3FunctionNasConfig(dict):
2580
2580
  @pulumi.getter(name="groupId")
2581
2581
  def group_id(self) -> Optional[int]:
2582
2582
  """
2583
- Group ID.
2583
+ Group ID
2584
2584
  """
2585
2585
  return pulumi.get(self, "group_id")
2586
2586
 
@@ -2588,7 +2588,7 @@ class V3FunctionNasConfig(dict):
2588
2588
  @pulumi.getter(name="mountPoints")
2589
2589
  def mount_points(self) -> Optional[Sequence['outputs.V3FunctionNasConfigMountPoint']]:
2590
2590
  """
2591
- Mount point list. See `mount_points` below.
2591
+ Mount point list See `mount_points` below.
2592
2592
  """
2593
2593
  return pulumi.get(self, "mount_points")
2594
2594
 
@@ -2596,7 +2596,7 @@ class V3FunctionNasConfig(dict):
2596
2596
  @pulumi.getter(name="userId")
2597
2597
  def user_id(self) -> Optional[int]:
2598
2598
  """
2599
- Account ID.
2599
+ Account ID
2600
2600
  """
2601
2601
  return pulumi.get(self, "user_id")
2602
2602
 
@@ -2630,7 +2630,7 @@ class V3FunctionNasConfigMountPoint(dict):
2630
2630
  server_addr: Optional[str] = None):
2631
2631
  """
2632
2632
  :param bool enable_tls: Use transport encryption to mount. Note: only general-purpose NAS supports transmission encryption.
2633
- :param str server_addr: NAS server address.
2633
+ :param str server_addr: NAS server address
2634
2634
  """
2635
2635
  if enable_tls is not None:
2636
2636
  pulumi.set(__self__, "enable_tls", enable_tls)
@@ -2656,7 +2656,7 @@ class V3FunctionNasConfigMountPoint(dict):
2656
2656
  @pulumi.getter(name="serverAddr")
2657
2657
  def server_addr(self) -> Optional[str]:
2658
2658
  """
2659
- NAS server address.
2659
+ NAS server address
2660
2660
  """
2661
2661
  return pulumi.get(self, "server_addr")
2662
2662
 
@@ -2683,7 +2683,7 @@ class V3FunctionOssMountConfig(dict):
2683
2683
  def __init__(__self__, *,
2684
2684
  mount_points: Optional[Sequence['outputs.V3FunctionOssMountConfigMountPoint']] = None):
2685
2685
  """
2686
- :param Sequence['V3FunctionOssMountConfigMountPointArgs'] mount_points: OSS mount point list. See `mount_points` below.
2686
+ :param Sequence['V3FunctionOssMountConfigMountPointArgs'] mount_points: OSS mount point list See `mount_points` below.
2687
2687
  """
2688
2688
  if mount_points is not None:
2689
2689
  pulumi.set(__self__, "mount_points", mount_points)
@@ -2692,7 +2692,7 @@ class V3FunctionOssMountConfig(dict):
2692
2692
  @pulumi.getter(name="mountPoints")
2693
2693
  def mount_points(self) -> Optional[Sequence['outputs.V3FunctionOssMountConfigMountPoint']]:
2694
2694
  """
2695
- OSS mount point list. See `mount_points` below.
2695
+ OSS mount point list See `mount_points` below.
2696
2696
  """
2697
2697
  return pulumi.get(self, "mount_points")
2698
2698
 
@@ -2729,10 +2729,10 @@ class V3FunctionOssMountConfigMountPoint(dict):
2729
2729
  mount_dir: Optional[str] = None,
2730
2730
  read_only: Optional[bool] = None):
2731
2731
  """
2732
- :param str bucket_name: OSS Bucket name.
2733
- :param str bucket_path: Path of the mounted OSS Bucket.
2734
- :param str endpoint: OSS access endpoint.
2735
- :param bool read_only: Read-only.
2732
+ :param str bucket_name: OSS Bucket name
2733
+ :param str bucket_path: Path of the mounted OSS Bucket
2734
+ :param str endpoint: OSS access endpoint
2735
+ :param bool read_only: Read-only
2736
2736
  """
2737
2737
  if bucket_name is not None:
2738
2738
  pulumi.set(__self__, "bucket_name", bucket_name)
@@ -2749,7 +2749,7 @@ class V3FunctionOssMountConfigMountPoint(dict):
2749
2749
  @pulumi.getter(name="bucketName")
2750
2750
  def bucket_name(self) -> Optional[str]:
2751
2751
  """
2752
- OSS Bucket name.
2752
+ OSS Bucket name
2753
2753
  """
2754
2754
  return pulumi.get(self, "bucket_name")
2755
2755
 
@@ -2757,7 +2757,7 @@ class V3FunctionOssMountConfigMountPoint(dict):
2757
2757
  @pulumi.getter(name="bucketPath")
2758
2758
  def bucket_path(self) -> Optional[str]:
2759
2759
  """
2760
- Path of the mounted OSS Bucket.
2760
+ Path of the mounted OSS Bucket
2761
2761
  """
2762
2762
  return pulumi.get(self, "bucket_path")
2763
2763
 
@@ -2765,7 +2765,7 @@ class V3FunctionOssMountConfigMountPoint(dict):
2765
2765
  @pulumi.getter
2766
2766
  def endpoint(self) -> Optional[str]:
2767
2767
  """
2768
- OSS access endpoint.
2768
+ OSS access endpoint
2769
2769
  """
2770
2770
  return pulumi.get(self, "endpoint")
2771
2771
 
@@ -2778,7 +2778,7 @@ class V3FunctionOssMountConfigMountPoint(dict):
2778
2778
  @pulumi.getter(name="readOnly")
2779
2779
  def read_only(self) -> Optional[bool]:
2780
2780
  """
2781
- Read-only.
2781
+ Read-only
2782
2782
  """
2783
2783
  return pulumi.get(self, "read_only")
2784
2784
 
@@ -2842,9 +2842,9 @@ class V3FunctionVpcConfig(dict):
2842
2842
  vpc_id: Optional[str] = None,
2843
2843
  vswitch_ids: Optional[Sequence[str]] = None):
2844
2844
  """
2845
- :param str security_group_id: Security group ID.
2846
- :param str vpc_id: VPC network ID.
2847
- :param Sequence[str] vswitch_ids: Switch List.
2845
+ :param str security_group_id: Security group ID
2846
+ :param str vpc_id: VPC network ID
2847
+ :param Sequence[str] vswitch_ids: Switch List
2848
2848
  """
2849
2849
  if security_group_id is not None:
2850
2850
  pulumi.set(__self__, "security_group_id", security_group_id)
@@ -2857,7 +2857,7 @@ class V3FunctionVpcConfig(dict):
2857
2857
  @pulumi.getter(name="securityGroupId")
2858
2858
  def security_group_id(self) -> Optional[str]:
2859
2859
  """
2860
- Security group ID.
2860
+ Security group ID
2861
2861
  """
2862
2862
  return pulumi.get(self, "security_group_id")
2863
2863
 
@@ -2865,7 +2865,7 @@ class V3FunctionVpcConfig(dict):
2865
2865
  @pulumi.getter(name="vpcId")
2866
2866
  def vpc_id(self) -> Optional[str]:
2867
2867
  """
2868
- VPC network ID.
2868
+ VPC network ID
2869
2869
  """
2870
2870
  return pulumi.get(self, "vpc_id")
2871
2871
 
@@ -2873,7 +2873,7 @@ class V3FunctionVpcConfig(dict):
2873
2873
  @pulumi.getter(name="vswitchIds")
2874
2874
  def vswitch_ids(self) -> Optional[Sequence[str]]:
2875
2875
  """
2876
- Switch List.
2876
+ Switch List
2877
2877
  """
2878
2878
  return pulumi.get(self, "vswitch_ids")
2879
2879
 
@@ -42,6 +42,7 @@ class V3FunctionArgs:
42
42
  nas_config: Optional[pulumi.Input['V3FunctionNasConfigArgs']] = None,
43
43
  oss_mount_config: Optional[pulumi.Input['V3FunctionOssMountConfigArgs']] = None,
44
44
  role: Optional[pulumi.Input[str]] = None,
45
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
45
46
  timeout: Optional[pulumi.Input[int]] = None,
46
47
  vpc_config: Optional[pulumi.Input['V3FunctionVpcConfigArgs']] = None):
47
48
  """
@@ -67,6 +68,7 @@ class V3FunctionArgs:
67
68
  :param pulumi.Input['V3FunctionNasConfigArgs'] nas_config: NAS configuration. After this parameter is configured, the function can access the specified NAS resource. See `nas_config` below.
68
69
  :param pulumi.Input['V3FunctionOssMountConfigArgs'] oss_mount_config: OSS mount configuration See `oss_mount_config` below.
69
70
  :param pulumi.Input[str] role: The user is authorized to the RAM role of function compute. After the configuration, function compute will assume this role to generate temporary access credentials. In the function, you can use the temporary access credentials of the role to access the specified Alibaba cloud service, such as OSS and OTS
71
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource
70
72
  :param pulumi.Input[int] timeout: The maximum running time of the function, in seconds.
71
73
  :param pulumi.Input['V3FunctionVpcConfigArgs'] vpc_config: VPC configuration. After this parameter is configured, the function can access the specified VPC resources. See `vpc_config` below.
72
74
  """
@@ -110,6 +112,8 @@ class V3FunctionArgs:
110
112
  pulumi.set(__self__, "oss_mount_config", oss_mount_config)
111
113
  if role is not None:
112
114
  pulumi.set(__self__, "role", role)
115
+ if tags is not None:
116
+ pulumi.set(__self__, "tags", tags)
113
117
  if timeout is not None:
114
118
  pulumi.set(__self__, "timeout", timeout)
115
119
  if vpc_config is not None:
@@ -367,6 +371,18 @@ class V3FunctionArgs:
367
371
  def role(self, value: Optional[pulumi.Input[str]]):
368
372
  pulumi.set(self, "role", value)
369
373
 
374
+ @property
375
+ @pulumi.getter
376
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
377
+ """
378
+ The tag of the resource
379
+ """
380
+ return pulumi.get(self, "tags")
381
+
382
+ @tags.setter
383
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
384
+ pulumi.set(self, "tags", value)
385
+
370
386
  @property
371
387
  @pulumi.getter
372
388
  def timeout(self) -> Optional[pulumi.Input[int]]:
@@ -427,6 +443,7 @@ class _V3FunctionState:
427
443
  state: Optional[pulumi.Input[str]] = None,
428
444
  state_reason: Optional[pulumi.Input[str]] = None,
429
445
  state_reason_code: Optional[pulumi.Input[str]] = None,
446
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
430
447
  timeout: Optional[pulumi.Input[int]] = None,
431
448
  tracing_config: Optional[pulumi.Input['V3FunctionTracingConfigArgs']] = None,
432
449
  vpc_config: Optional[pulumi.Input['V3FunctionVpcConfigArgs']] = None):
@@ -464,6 +481,7 @@ class _V3FunctionState:
464
481
  :param pulumi.Input[str] state: Function Status
465
482
  :param pulumi.Input[str] state_reason: The reason why the function is in the current state
466
483
  :param pulumi.Input[str] state_reason_code: The status code of the reason the function is in the current state.
484
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource
467
485
  :param pulumi.Input[int] timeout: The maximum running time of the function, in seconds.
468
486
  :param pulumi.Input['V3FunctionTracingConfigArgs'] tracing_config: Tracing configuration
469
487
  :param pulumi.Input['V3FunctionVpcConfigArgs'] vpc_config: VPC configuration. After this parameter is configured, the function can access the specified VPC resources. See `vpc_config` below.
@@ -532,6 +550,8 @@ class _V3FunctionState:
532
550
  pulumi.set(__self__, "state_reason", state_reason)
533
551
  if state_reason_code is not None:
534
552
  pulumi.set(__self__, "state_reason_code", state_reason_code)
553
+ if tags is not None:
554
+ pulumi.set(__self__, "tags", tags)
535
555
  if timeout is not None:
536
556
  pulumi.set(__self__, "timeout", timeout)
537
557
  if tracing_config is not None:
@@ -923,6 +943,18 @@ class _V3FunctionState:
923
943
  def state_reason_code(self, value: Optional[pulumi.Input[str]]):
924
944
  pulumi.set(self, "state_reason_code", value)
925
945
 
946
+ @property
947
+ @pulumi.getter
948
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
949
+ """
950
+ The tag of the resource
951
+ """
952
+ return pulumi.get(self, "tags")
953
+
954
+ @tags.setter
955
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
956
+ pulumi.set(self, "tags", value)
957
+
926
958
  @property
927
959
  @pulumi.getter
928
960
  def timeout(self) -> Optional[pulumi.Input[int]]:
@@ -986,15 +1018,16 @@ class V3Function(pulumi.CustomResource):
986
1018
  oss_mount_config: Optional[pulumi.Input[Union['V3FunctionOssMountConfigArgs', 'V3FunctionOssMountConfigArgsDict']]] = None,
987
1019
  role: Optional[pulumi.Input[str]] = None,
988
1020
  runtime: Optional[pulumi.Input[str]] = None,
1021
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
989
1022
  timeout: Optional[pulumi.Input[int]] = None,
990
1023
  vpc_config: Optional[pulumi.Input[Union['V3FunctionVpcConfigArgs', 'V3FunctionVpcConfigArgsDict']]] = None,
991
1024
  __props__=None):
992
1025
  """
993
- Provides a FCV3 Function resource.
1026
+ Provides a Function Compute Service V3 (FCV3) Function resource.
994
1027
 
995
1028
  The resource scheduling and running of Function Compute is based on functions. The FC function consists of function code and function configuration.
996
1029
 
997
- For information about FCV3 Function and how to use it, see [What is Function](https://www.alibabacloud.com/help/en/functioncompute/developer-reference/api-fc-2023-03-30-getfunction).
1030
+ For information about Function Compute Service V3 (FCV3) Function and how to use it, see [What is Function](https://www.alibabacloud.com/help/en/functioncompute/developer-reference/api-fc-2023-03-30-getfunction).
998
1031
 
999
1032
  > **NOTE:** Available since v1.228.0.
1000
1033
 
@@ -1075,7 +1108,7 @@ class V3Function(pulumi.CustomResource):
1075
1108
 
1076
1109
  ## Import
1077
1110
 
1078
- FCV3 Function can be imported using the id, e.g.
1111
+ Function Compute Service V3 (FCV3) Function can be imported using the id, e.g.
1079
1112
 
1080
1113
  ```sh
1081
1114
  $ pulumi import alicloud:fc/v3Function:V3Function example <id>
@@ -1104,6 +1137,7 @@ class V3Function(pulumi.CustomResource):
1104
1137
  :param pulumi.Input[Union['V3FunctionOssMountConfigArgs', 'V3FunctionOssMountConfigArgsDict']] oss_mount_config: OSS mount configuration See `oss_mount_config` below.
1105
1138
  :param pulumi.Input[str] role: The user is authorized to the RAM role of function compute. After the configuration, function compute will assume this role to generate temporary access credentials. In the function, you can use the temporary access credentials of the role to access the specified Alibaba cloud service, such as OSS and OTS
1106
1139
  :param pulumi.Input[str] runtime: Function runtime type
1140
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource
1107
1141
  :param pulumi.Input[int] timeout: The maximum running time of the function, in seconds.
1108
1142
  :param pulumi.Input[Union['V3FunctionVpcConfigArgs', 'V3FunctionVpcConfigArgsDict']] vpc_config: VPC configuration. After this parameter is configured, the function can access the specified VPC resources. See `vpc_config` below.
1109
1143
  """
@@ -1114,11 +1148,11 @@ class V3Function(pulumi.CustomResource):
1114
1148
  args: V3FunctionArgs,
1115
1149
  opts: Optional[pulumi.ResourceOptions] = None):
1116
1150
  """
1117
- Provides a FCV3 Function resource.
1151
+ Provides a Function Compute Service V3 (FCV3) Function resource.
1118
1152
 
1119
1153
  The resource scheduling and running of Function Compute is based on functions. The FC function consists of function code and function configuration.
1120
1154
 
1121
- For information about FCV3 Function and how to use it, see [What is Function](https://www.alibabacloud.com/help/en/functioncompute/developer-reference/api-fc-2023-03-30-getfunction).
1155
+ For information about Function Compute Service V3 (FCV3) Function and how to use it, see [What is Function](https://www.alibabacloud.com/help/en/functioncompute/developer-reference/api-fc-2023-03-30-getfunction).
1122
1156
 
1123
1157
  > **NOTE:** Available since v1.228.0.
1124
1158
 
@@ -1199,7 +1233,7 @@ class V3Function(pulumi.CustomResource):
1199
1233
 
1200
1234
  ## Import
1201
1235
 
1202
- FCV3 Function can be imported using the id, e.g.
1236
+ Function Compute Service V3 (FCV3) Function can be imported using the id, e.g.
1203
1237
 
1204
1238
  ```sh
1205
1239
  $ pulumi import alicloud:fc/v3Function:V3Function example <id>
@@ -1241,6 +1275,7 @@ class V3Function(pulumi.CustomResource):
1241
1275
  oss_mount_config: Optional[pulumi.Input[Union['V3FunctionOssMountConfigArgs', 'V3FunctionOssMountConfigArgsDict']]] = None,
1242
1276
  role: Optional[pulumi.Input[str]] = None,
1243
1277
  runtime: Optional[pulumi.Input[str]] = None,
1278
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1244
1279
  timeout: Optional[pulumi.Input[int]] = None,
1245
1280
  vpc_config: Optional[pulumi.Input[Union['V3FunctionVpcConfigArgs', 'V3FunctionVpcConfigArgsDict']]] = None,
1246
1281
  __props__=None):
@@ -1277,6 +1312,7 @@ class V3Function(pulumi.CustomResource):
1277
1312
  if runtime is None and not opts.urn:
1278
1313
  raise TypeError("Missing required property 'runtime'")
1279
1314
  __props__.__dict__["runtime"] = runtime
1315
+ __props__.__dict__["tags"] = tags
1280
1316
  __props__.__dict__["timeout"] = timeout
1281
1317
  __props__.__dict__["vpc_config"] = vpc_config
1282
1318
  __props__.__dict__["code_size"] = None
@@ -1335,6 +1371,7 @@ class V3Function(pulumi.CustomResource):
1335
1371
  state: Optional[pulumi.Input[str]] = None,
1336
1372
  state_reason: Optional[pulumi.Input[str]] = None,
1337
1373
  state_reason_code: Optional[pulumi.Input[str]] = None,
1374
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1338
1375
  timeout: Optional[pulumi.Input[int]] = None,
1339
1376
  tracing_config: Optional[pulumi.Input[Union['V3FunctionTracingConfigArgs', 'V3FunctionTracingConfigArgsDict']]] = None,
1340
1377
  vpc_config: Optional[pulumi.Input[Union['V3FunctionVpcConfigArgs', 'V3FunctionVpcConfigArgsDict']]] = None) -> 'V3Function':
@@ -1377,6 +1414,7 @@ class V3Function(pulumi.CustomResource):
1377
1414
  :param pulumi.Input[str] state: Function Status
1378
1415
  :param pulumi.Input[str] state_reason: The reason why the function is in the current state
1379
1416
  :param pulumi.Input[str] state_reason_code: The status code of the reason the function is in the current state.
1417
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tag of the resource
1380
1418
  :param pulumi.Input[int] timeout: The maximum running time of the function, in seconds.
1381
1419
  :param pulumi.Input[Union['V3FunctionTracingConfigArgs', 'V3FunctionTracingConfigArgsDict']] tracing_config: Tracing configuration
1382
1420
  :param pulumi.Input[Union['V3FunctionVpcConfigArgs', 'V3FunctionVpcConfigArgsDict']] vpc_config: VPC configuration. After this parameter is configured, the function can access the specified VPC resources. See `vpc_config` below.
@@ -1417,6 +1455,7 @@ class V3Function(pulumi.CustomResource):
1417
1455
  __props__.__dict__["state"] = state
1418
1456
  __props__.__dict__["state_reason"] = state_reason
1419
1457
  __props__.__dict__["state_reason_code"] = state_reason_code
1458
+ __props__.__dict__["tags"] = tags
1420
1459
  __props__.__dict__["timeout"] = timeout
1421
1460
  __props__.__dict__["tracing_config"] = tracing_config
1422
1461
  __props__.__dict__["vpc_config"] = vpc_config
@@ -1678,6 +1717,14 @@ class V3Function(pulumi.CustomResource):
1678
1717
  """
1679
1718
  return pulumi.get(self, "state_reason_code")
1680
1719
 
1720
+ @property
1721
+ @pulumi.getter
1722
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
1723
+ """
1724
+ The tag of the resource
1725
+ """
1726
+ return pulumi.get(self, "tags")
1727
+
1681
1728
  @property
1682
1729
  @pulumi.getter
1683
1730
  def timeout(self) -> pulumi.Output[int]:
@@ -11,6 +11,7 @@ from .ciphertext import *
11
11
  from .client_key import *
12
12
  from .get_aliases import *
13
13
  from .get_ciphertext import *
14
+ from .get_instances import *
14
15
  from .get_key_versions import *
15
16
  from .get_keys import *
16
17
  from .get_plaintext import *