pulumi-alicloud 3.66.0a1731648019__py3-none-any.whl → 3.67.0__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 (81) hide show
  1. pulumi_alicloud/__init__.py +110 -0
  2. pulumi_alicloud/alikafka/instance.py +112 -0
  3. pulumi_alicloud/cen/flow_log.py +373 -58
  4. pulumi_alicloud/cen/transit_router_ecr_attachment.py +4 -4
  5. pulumi_alicloud/cloudsso/_inputs.py +9 -9
  6. pulumi_alicloud/cloudsso/access_configuration.py +100 -34
  7. pulumi_alicloud/cloudsso/outputs.py +6 -6
  8. pulumi_alicloud/cr/registry_enterprise_instance.py +474 -90
  9. pulumi_alicloud/ecs/ecs_image_component.py +221 -48
  10. pulumi_alicloud/esa/__init__.py +9 -0
  11. pulumi_alicloud/esa/rate_plan_instance.py +626 -0
  12. pulumi_alicloud/esa/site.py +533 -0
  13. pulumi_alicloud/ess/_inputs.py +94 -0
  14. pulumi_alicloud/ess/eci_scaling_configuration.py +42 -14
  15. pulumi_alicloud/ess/outputs.py +79 -0
  16. pulumi_alicloud/ess/scaling_configuration.py +47 -0
  17. pulumi_alicloud/expressconnect/router_vbr_child_instance.py +86 -25
  18. pulumi_alicloud/fc/_inputs.py +243 -135
  19. pulumi_alicloud/fc/outputs.py +173 -90
  20. pulumi_alicloud/fc/v3_alias.py +28 -0
  21. pulumi_alicloud/fc/v3_async_invoke_config.py +56 -0
  22. pulumi_alicloud/fc/v3_concurrency_config.py +28 -0
  23. pulumi_alicloud/fc/v3_custom_domain.py +118 -6
  24. pulumi_alicloud/fc/v3_function.py +308 -0
  25. pulumi_alicloud/fc/v3_function_version.py +30 -2
  26. pulumi_alicloud/fc/v3_layer_version.py +104 -1
  27. pulumi_alicloud/fc/v3_provision_config.py +86 -2
  28. pulumi_alicloud/fc/v3_trigger.py +114 -0
  29. pulumi_alicloud/gwlb/__init__.py +12 -0
  30. pulumi_alicloud/gwlb/_inputs.py +673 -0
  31. pulumi_alicloud/gwlb/listener.py +434 -0
  32. pulumi_alicloud/gwlb/load_balancer.py +537 -0
  33. pulumi_alicloud/gwlb/outputs.py +533 -0
  34. pulumi_alicloud/gwlb/server_group.py +780 -0
  35. pulumi_alicloud/kms/key.py +1 -1
  36. pulumi_alicloud/kvstore/account.py +24 -24
  37. pulumi_alicloud/kvstore/audit_log_config.py +4 -4
  38. pulumi_alicloud/kvstore/backup_policy.py +2 -2
  39. pulumi_alicloud/kvstore/connection.py +8 -8
  40. pulumi_alicloud/kvstore/get_accounts.py +4 -4
  41. pulumi_alicloud/kvstore/get_connections.py +5 -5
  42. pulumi_alicloud/kvstore/get_instance_classes.py +12 -12
  43. pulumi_alicloud/kvstore/get_instance_engines.py +7 -7
  44. pulumi_alicloud/kvstore/get_permission.py +10 -10
  45. pulumi_alicloud/kvstore/get_zones.py +4 -4
  46. pulumi_alicloud/kvstore/outputs.py +2 -2
  47. pulumi_alicloud/mongodb/instance.py +47 -0
  48. pulumi_alicloud/mongodb/sharding_instance.py +47 -0
  49. pulumi_alicloud/oss/__init__.py +2 -0
  50. pulumi_alicloud/oss/_inputs.py +194 -0
  51. pulumi_alicloud/oss/bucket_cname.py +509 -0
  52. pulumi_alicloud/oss/bucket_cname_token.py +239 -0
  53. pulumi_alicloud/oss/outputs.py +141 -0
  54. pulumi_alicloud/polardb/cluster.py +7 -7
  55. pulumi_alicloud/privatelink/vpc_endpoint_service.py +42 -91
  56. pulumi_alicloud/privatelink/vpc_endpoint_service_connection.py +27 -23
  57. pulumi_alicloud/privatelink/vpc_endpoint_service_resource.py +34 -37
  58. pulumi_alicloud/privatelink/vpc_endpoint_zone.py +28 -0
  59. pulumi_alicloud/pulumi-plugin.json +1 -1
  60. pulumi_alicloud/quotas/_inputs.py +6 -6
  61. pulumi_alicloud/quotas/outputs.py +4 -4
  62. pulumi_alicloud/quotas/quota_application.py +21 -28
  63. pulumi_alicloud/rds/__init__.py +2 -0
  64. pulumi_alicloud/rds/_inputs.py +146 -0
  65. pulumi_alicloud/rds/custom.py +1630 -0
  66. pulumi_alicloud/rds/custom_deployment_set.py +525 -0
  67. pulumi_alicloud/rds/outputs.py +105 -0
  68. pulumi_alicloud/redis/tair_instance.py +97 -78
  69. pulumi_alicloud/vpc/__init__.py +4 -0
  70. pulumi_alicloud/vpc/_inputs.py +54 -0
  71. pulumi_alicloud/vpc/ipam_ipam.py +531 -0
  72. pulumi_alicloud/vpc/ipam_ipam_pool.py +850 -0
  73. pulumi_alicloud/vpc/ipam_ipam_pool_cidr.py +313 -0
  74. pulumi_alicloud/vpc/ipam_ipam_scope.py +537 -0
  75. pulumi_alicloud/vpc/nat_gateway.py +175 -14
  76. pulumi_alicloud/vpc/outputs.py +51 -0
  77. pulumi_alicloud/vpn/gateway_vco_route.py +68 -21
  78. {pulumi_alicloud-3.66.0a1731648019.dist-info → pulumi_alicloud-3.67.0.dist-info}/METADATA +5 -5
  79. {pulumi_alicloud-3.66.0a1731648019.dist-info → pulumi_alicloud-3.67.0.dist-info}/RECORD +81 -64
  80. {pulumi_alicloud-3.66.0a1731648019.dist-info → pulumi_alicloud-3.67.0.dist-info}/WHEEL +1 -1
  81. {pulumi_alicloud-3.66.0a1731648019.dist-info → pulumi_alicloud-3.67.0.dist-info}/top_level.txt +0 -0
@@ -28,13 +28,8 @@ class VpcEndpointServiceResourceArgs:
28
28
  The set of arguments for constructing a VpcEndpointServiceResource resource.
29
29
  :param pulumi.Input[str] resource_id: The service resource ID.
30
30
  :param pulumi.Input[str] resource_type: Service resource type, value:
31
- - **slb**: indicates that the service resource type is Classic Load Balancer (CLB).
32
- - **alb**: indicates that the service resource type is Application Load Balancer (ALB).
33
- - **nlb**: indicates that the service resource type is Network Load Balancer (NLB).
34
31
  :param pulumi.Input[str] service_id: The endpoint service ID.
35
32
  :param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request. Valid values:
36
- - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error code is returned. If the request passes the dry run, the DryRunOperation error code is returned.
37
- - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
38
33
  :param pulumi.Input[str] zone_id: The ID of the zone to which the service resource belongs. (valid when the resource type is nlb/alb).
39
34
  """
40
35
  pulumi.set(__self__, "resource_id", resource_id)
@@ -62,9 +57,6 @@ class VpcEndpointServiceResourceArgs:
62
57
  def resource_type(self) -> pulumi.Input[str]:
63
58
  """
64
59
  Service resource type, value:
65
- - **slb**: indicates that the service resource type is Classic Load Balancer (CLB).
66
- - **alb**: indicates that the service resource type is Application Load Balancer (ALB).
67
- - **nlb**: indicates that the service resource type is Network Load Balancer (NLB).
68
60
  """
69
61
  return pulumi.get(self, "resource_type")
70
62
 
@@ -89,8 +81,6 @@ class VpcEndpointServiceResourceArgs:
89
81
  def dry_run(self) -> Optional[pulumi.Input[bool]]:
90
82
  """
91
83
  Specifies whether to perform only a dry run, without performing the actual request. Valid values:
92
- - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error code is returned. If the request passes the dry run, the DryRunOperation error code is returned.
93
- - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
94
84
  """
95
85
  return pulumi.get(self, "dry_run")
96
86
 
@@ -115,6 +105,7 @@ class VpcEndpointServiceResourceArgs:
115
105
  class _VpcEndpointServiceResourceState:
116
106
  def __init__(__self__, *,
117
107
  dry_run: Optional[pulumi.Input[bool]] = None,
108
+ region_id: Optional[pulumi.Input[str]] = None,
118
109
  resource_id: Optional[pulumi.Input[str]] = None,
119
110
  resource_type: Optional[pulumi.Input[str]] = None,
120
111
  service_id: Optional[pulumi.Input[str]] = None,
@@ -122,18 +113,16 @@ class _VpcEndpointServiceResourceState:
122
113
  """
123
114
  Input properties used for looking up and filtering VpcEndpointServiceResource resources.
124
115
  :param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request. Valid values:
125
- - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error code is returned. If the request passes the dry run, the DryRunOperation error code is returned.
126
- - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
116
+ :param pulumi.Input[str] region_id: (Available since v1.235.0) The ID of the region where the service resource is deployed.
127
117
  :param pulumi.Input[str] resource_id: The service resource ID.
128
118
  :param pulumi.Input[str] resource_type: Service resource type, value:
129
- - **slb**: indicates that the service resource type is Classic Load Balancer (CLB).
130
- - **alb**: indicates that the service resource type is Application Load Balancer (ALB).
131
- - **nlb**: indicates that the service resource type is Network Load Balancer (NLB).
132
119
  :param pulumi.Input[str] service_id: The endpoint service ID.
133
120
  :param pulumi.Input[str] zone_id: The ID of the zone to which the service resource belongs. (valid when the resource type is nlb/alb).
134
121
  """
135
122
  if dry_run is not None:
136
123
  pulumi.set(__self__, "dry_run", dry_run)
124
+ if region_id is not None:
125
+ pulumi.set(__self__, "region_id", region_id)
137
126
  if resource_id is not None:
138
127
  pulumi.set(__self__, "resource_id", resource_id)
139
128
  if resource_type is not None:
@@ -148,8 +137,6 @@ class _VpcEndpointServiceResourceState:
148
137
  def dry_run(self) -> Optional[pulumi.Input[bool]]:
149
138
  """
150
139
  Specifies whether to perform only a dry run, without performing the actual request. Valid values:
151
- - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error code is returned. If the request passes the dry run, the DryRunOperation error code is returned.
152
- - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
153
140
  """
154
141
  return pulumi.get(self, "dry_run")
155
142
 
@@ -157,6 +144,18 @@ class _VpcEndpointServiceResourceState:
157
144
  def dry_run(self, value: Optional[pulumi.Input[bool]]):
158
145
  pulumi.set(self, "dry_run", value)
159
146
 
147
+ @property
148
+ @pulumi.getter(name="regionId")
149
+ def region_id(self) -> Optional[pulumi.Input[str]]:
150
+ """
151
+ (Available since v1.235.0) The ID of the region where the service resource is deployed.
152
+ """
153
+ return pulumi.get(self, "region_id")
154
+
155
+ @region_id.setter
156
+ def region_id(self, value: Optional[pulumi.Input[str]]):
157
+ pulumi.set(self, "region_id", value)
158
+
160
159
  @property
161
160
  @pulumi.getter(name="resourceId")
162
161
  def resource_id(self) -> Optional[pulumi.Input[str]]:
@@ -174,9 +173,6 @@ class _VpcEndpointServiceResourceState:
174
173
  def resource_type(self) -> Optional[pulumi.Input[str]]:
175
174
  """
176
175
  Service resource type, value:
177
- - **slb**: indicates that the service resource type is Classic Load Balancer (CLB).
178
- - **alb**: indicates that the service resource type is Application Load Balancer (ALB).
179
- - **nlb**: indicates that the service resource type is Network Load Balancer (NLB).
180
176
  """
181
177
  return pulumi.get(self, "resource_type")
182
178
 
@@ -221,7 +217,9 @@ class VpcEndpointServiceResource(pulumi.CustomResource):
221
217
  zone_id: Optional[pulumi.Input[str]] = None,
222
218
  __props__=None):
223
219
  """
224
- Provides a Private Link Vpc Endpoint Service Resource resource. Endpoint service resource.
220
+ Provides a Private Link Vpc Endpoint Service Resource resource.
221
+
222
+ Endpoint service resource.
225
223
 
226
224
  For information about Private Link Vpc Endpoint Service Resource and how to use it, see [What is Vpc Endpoint Service Resource](https://www.alibabacloud.com/help/en/privatelink/latest/api-privatelink-2020-04-15-attachresourcetovpcendpointservice).
227
225
 
@@ -282,13 +280,8 @@ class VpcEndpointServiceResource(pulumi.CustomResource):
282
280
  :param str resource_name: The name of the resource.
283
281
  :param pulumi.ResourceOptions opts: Options for the resource.
284
282
  :param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request. Valid values:
285
- - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error code is returned. If the request passes the dry run, the DryRunOperation error code is returned.
286
- - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
287
283
  :param pulumi.Input[str] resource_id: The service resource ID.
288
284
  :param pulumi.Input[str] resource_type: Service resource type, value:
289
- - **slb**: indicates that the service resource type is Classic Load Balancer (CLB).
290
- - **alb**: indicates that the service resource type is Application Load Balancer (ALB).
291
- - **nlb**: indicates that the service resource type is Network Load Balancer (NLB).
292
285
  :param pulumi.Input[str] service_id: The endpoint service ID.
293
286
  :param pulumi.Input[str] zone_id: The ID of the zone to which the service resource belongs. (valid when the resource type is nlb/alb).
294
287
  """
@@ -299,7 +292,9 @@ class VpcEndpointServiceResource(pulumi.CustomResource):
299
292
  args: VpcEndpointServiceResourceArgs,
300
293
  opts: Optional[pulumi.ResourceOptions] = None):
301
294
  """
302
- Provides a Private Link Vpc Endpoint Service Resource resource. Endpoint service resource.
295
+ Provides a Private Link Vpc Endpoint Service Resource resource.
296
+
297
+ Endpoint service resource.
303
298
 
304
299
  For information about Private Link Vpc Endpoint Service Resource and how to use it, see [What is Vpc Endpoint Service Resource](https://www.alibabacloud.com/help/en/privatelink/latest/api-privatelink-2020-04-15-attachresourcetovpcendpointservice).
305
300
 
@@ -397,6 +392,7 @@ class VpcEndpointServiceResource(pulumi.CustomResource):
397
392
  raise TypeError("Missing required property 'service_id'")
398
393
  __props__.__dict__["service_id"] = service_id
399
394
  __props__.__dict__["zone_id"] = zone_id
395
+ __props__.__dict__["region_id"] = None
400
396
  super(VpcEndpointServiceResource, __self__).__init__(
401
397
  'alicloud:privatelink/vpcEndpointServiceResource:VpcEndpointServiceResource',
402
398
  resource_name,
@@ -408,6 +404,7 @@ class VpcEndpointServiceResource(pulumi.CustomResource):
408
404
  id: pulumi.Input[str],
409
405
  opts: Optional[pulumi.ResourceOptions] = None,
410
406
  dry_run: Optional[pulumi.Input[bool]] = None,
407
+ region_id: Optional[pulumi.Input[str]] = None,
411
408
  resource_id: Optional[pulumi.Input[str]] = None,
412
409
  resource_type: Optional[pulumi.Input[str]] = None,
413
410
  service_id: Optional[pulumi.Input[str]] = None,
@@ -420,13 +417,9 @@ class VpcEndpointServiceResource(pulumi.CustomResource):
420
417
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
421
418
  :param pulumi.ResourceOptions opts: Options for the resource.
422
419
  :param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request. Valid values:
423
- - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error code is returned. If the request passes the dry run, the DryRunOperation error code is returned.
424
- - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
420
+ :param pulumi.Input[str] region_id: (Available since v1.235.0) The ID of the region where the service resource is deployed.
425
421
  :param pulumi.Input[str] resource_id: The service resource ID.
426
422
  :param pulumi.Input[str] resource_type: Service resource type, value:
427
- - **slb**: indicates that the service resource type is Classic Load Balancer (CLB).
428
- - **alb**: indicates that the service resource type is Application Load Balancer (ALB).
429
- - **nlb**: indicates that the service resource type is Network Load Balancer (NLB).
430
423
  :param pulumi.Input[str] service_id: The endpoint service ID.
431
424
  :param pulumi.Input[str] zone_id: The ID of the zone to which the service resource belongs. (valid when the resource type is nlb/alb).
432
425
  """
@@ -435,6 +428,7 @@ class VpcEndpointServiceResource(pulumi.CustomResource):
435
428
  __props__ = _VpcEndpointServiceResourceState.__new__(_VpcEndpointServiceResourceState)
436
429
 
437
430
  __props__.__dict__["dry_run"] = dry_run
431
+ __props__.__dict__["region_id"] = region_id
438
432
  __props__.__dict__["resource_id"] = resource_id
439
433
  __props__.__dict__["resource_type"] = resource_type
440
434
  __props__.__dict__["service_id"] = service_id
@@ -446,11 +440,17 @@ class VpcEndpointServiceResource(pulumi.CustomResource):
446
440
  def dry_run(self) -> pulumi.Output[Optional[bool]]:
447
441
  """
448
442
  Specifies whether to perform only a dry run, without performing the actual request. Valid values:
449
- - **true**: performs only a dry run. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error code is returned. If the request passes the dry run, the DryRunOperation error code is returned.
450
- - **false (default)**: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
451
443
  """
452
444
  return pulumi.get(self, "dry_run")
453
445
 
446
+ @property
447
+ @pulumi.getter(name="regionId")
448
+ def region_id(self) -> pulumi.Output[str]:
449
+ """
450
+ (Available since v1.235.0) The ID of the region where the service resource is deployed.
451
+ """
452
+ return pulumi.get(self, "region_id")
453
+
454
454
  @property
455
455
  @pulumi.getter(name="resourceId")
456
456
  def resource_id(self) -> pulumi.Output[str]:
@@ -464,9 +464,6 @@ class VpcEndpointServiceResource(pulumi.CustomResource):
464
464
  def resource_type(self) -> pulumi.Output[str]:
465
465
  """
466
466
  Service resource type, value:
467
- - **slb**: indicates that the service resource type is Classic Load Balancer (CLB).
468
- - **alb**: indicates that the service resource type is Application Load Balancer (ALB).
469
- - **nlb**: indicates that the service resource type is Network Load Balancer (NLB).
470
467
  """
471
468
  return pulumi.get(self, "resource_type")
472
469
 
@@ -108,6 +108,7 @@ class _VpcEndpointZoneState:
108
108
  dry_run: Optional[pulumi.Input[bool]] = None,
109
109
  endpoint_id: Optional[pulumi.Input[str]] = None,
110
110
  eni_ip: Optional[pulumi.Input[str]] = None,
111
+ region_id: Optional[pulumi.Input[str]] = None,
111
112
  status: Optional[pulumi.Input[str]] = None,
112
113
  vswitch_id: Optional[pulumi.Input[str]] = None,
113
114
  zone_id: Optional[pulumi.Input[str]] = None):
@@ -116,6 +117,7 @@ class _VpcEndpointZoneState:
116
117
  :param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request. Valid values:
117
118
  :param pulumi.Input[str] endpoint_id: The endpoint ID.
118
119
  :param pulumi.Input[str] eni_ip: The IP address of the endpoint ENI.
120
+ :param pulumi.Input[str] region_id: (Available since v1.235.0) The ID of the region to which the endpoint service belongs.
119
121
  :param pulumi.Input[str] status: The state of the zone.
120
122
  :param pulumi.Input[str] vswitch_id: The ID of the vSwitch in the zone.
121
123
  :param pulumi.Input[str] zone_id: The zone ID.
@@ -126,6 +128,8 @@ class _VpcEndpointZoneState:
126
128
  pulumi.set(__self__, "endpoint_id", endpoint_id)
127
129
  if eni_ip is not None:
128
130
  pulumi.set(__self__, "eni_ip", eni_ip)
131
+ if region_id is not None:
132
+ pulumi.set(__self__, "region_id", region_id)
129
133
  if status is not None:
130
134
  pulumi.set(__self__, "status", status)
131
135
  if vswitch_id is not None:
@@ -169,6 +173,18 @@ class _VpcEndpointZoneState:
169
173
  def eni_ip(self, value: Optional[pulumi.Input[str]]):
170
174
  pulumi.set(self, "eni_ip", value)
171
175
 
176
+ @property
177
+ @pulumi.getter(name="regionId")
178
+ def region_id(self) -> Optional[pulumi.Input[str]]:
179
+ """
180
+ (Available since v1.235.0) The ID of the region to which the endpoint service belongs.
181
+ """
182
+ return pulumi.get(self, "region_id")
183
+
184
+ @region_id.setter
185
+ def region_id(self, value: Optional[pulumi.Input[str]]):
186
+ pulumi.set(self, "region_id", value)
187
+
172
188
  @property
173
189
  @pulumi.getter
174
190
  def status(self) -> Optional[pulumi.Input[str]]:
@@ -395,6 +411,7 @@ class VpcEndpointZone(pulumi.CustomResource):
395
411
  raise TypeError("Missing required property 'vswitch_id'")
396
412
  __props__.__dict__["vswitch_id"] = vswitch_id
397
413
  __props__.__dict__["zone_id"] = zone_id
414
+ __props__.__dict__["region_id"] = None
398
415
  __props__.__dict__["status"] = None
399
416
  super(VpcEndpointZone, __self__).__init__(
400
417
  'alicloud:privatelink/vpcEndpointZone:VpcEndpointZone',
@@ -409,6 +426,7 @@ class VpcEndpointZone(pulumi.CustomResource):
409
426
  dry_run: Optional[pulumi.Input[bool]] = None,
410
427
  endpoint_id: Optional[pulumi.Input[str]] = None,
411
428
  eni_ip: Optional[pulumi.Input[str]] = None,
429
+ region_id: Optional[pulumi.Input[str]] = None,
412
430
  status: Optional[pulumi.Input[str]] = None,
413
431
  vswitch_id: Optional[pulumi.Input[str]] = None,
414
432
  zone_id: Optional[pulumi.Input[str]] = None) -> 'VpcEndpointZone':
@@ -422,6 +440,7 @@ class VpcEndpointZone(pulumi.CustomResource):
422
440
  :param pulumi.Input[bool] dry_run: Specifies whether to perform only a dry run, without performing the actual request. Valid values:
423
441
  :param pulumi.Input[str] endpoint_id: The endpoint ID.
424
442
  :param pulumi.Input[str] eni_ip: The IP address of the endpoint ENI.
443
+ :param pulumi.Input[str] region_id: (Available since v1.235.0) The ID of the region to which the endpoint service belongs.
425
444
  :param pulumi.Input[str] status: The state of the zone.
426
445
  :param pulumi.Input[str] vswitch_id: The ID of the vSwitch in the zone.
427
446
  :param pulumi.Input[str] zone_id: The zone ID.
@@ -433,6 +452,7 @@ class VpcEndpointZone(pulumi.CustomResource):
433
452
  __props__.__dict__["dry_run"] = dry_run
434
453
  __props__.__dict__["endpoint_id"] = endpoint_id
435
454
  __props__.__dict__["eni_ip"] = eni_ip
455
+ __props__.__dict__["region_id"] = region_id
436
456
  __props__.__dict__["status"] = status
437
457
  __props__.__dict__["vswitch_id"] = vswitch_id
438
458
  __props__.__dict__["zone_id"] = zone_id
@@ -462,6 +482,14 @@ class VpcEndpointZone(pulumi.CustomResource):
462
482
  """
463
483
  return pulumi.get(self, "eni_ip")
464
484
 
485
+ @property
486
+ @pulumi.getter(name="regionId")
487
+ def region_id(self) -> pulumi.Output[str]:
488
+ """
489
+ (Available since v1.235.0) The ID of the region to which the endpoint service belongs.
490
+ """
491
+ return pulumi.get(self, "region_id")
492
+
465
493
  @property
466
494
  @pulumi.getter
467
495
  def status(self) -> pulumi.Output[str]:
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "alicloud",
4
- "version": "3.66.0-alpha.1731648019"
4
+ "version": "3.67.0"
5
5
  }
@@ -133,11 +133,11 @@ if not MYPY:
133
133
  class QuotaApplicationDimensionArgsDict(TypedDict):
134
134
  key: NotRequired[pulumi.Input[str]]
135
135
  """
136
- Key.
136
+ The key of the dimension. You must configure `dimensions.N.key` and `dimensions.N.value` at the same time. The value range of N varies based on the number of dimensions that are supported by the related Alibaba Cloud service. You can call the [ListProductQuotaDimensions](https://next.api.aliyun.com/document/quotas/2020-05-10/ListProductQuotaDimensions) operation to query the dimensions that are supported by an Alibaba Cloud service. The number of elements in the returned array is N.
137
137
  """
138
138
  value: NotRequired[pulumi.Input[str]]
139
139
  """
140
- Value.
140
+ The value of the dimension. You must configure `dimensions.N.key` and `dimensions.N.value` at the same time. The value range of N varies based on the number of dimensions that are supported by the related Alibaba Cloud service. You can call the [ListProductQuotaDimensions](https://next.api.aliyun.com/document/quotas/2020-05-10/ListProductQuotaDimensions) operation to query the dimensions that are supported by an Alibaba Cloud service. The number of elements in the returned array is N.
141
141
  """
142
142
  elif False:
143
143
  QuotaApplicationDimensionArgsDict: TypeAlias = Mapping[str, Any]
@@ -148,8 +148,8 @@ class QuotaApplicationDimensionArgs:
148
148
  key: Optional[pulumi.Input[str]] = None,
149
149
  value: Optional[pulumi.Input[str]] = None):
150
150
  """
151
- :param pulumi.Input[str] key: Key.
152
- :param pulumi.Input[str] value: Value.
151
+ :param pulumi.Input[str] key: The key of the dimension. You must configure `dimensions.N.key` and `dimensions.N.value` at the same time. The value range of N varies based on the number of dimensions that are supported by the related Alibaba Cloud service. You can call the [ListProductQuotaDimensions](https://next.api.aliyun.com/document/quotas/2020-05-10/ListProductQuotaDimensions) operation to query the dimensions that are supported by an Alibaba Cloud service. The number of elements in the returned array is N.
152
+ :param pulumi.Input[str] value: The value of the dimension. You must configure `dimensions.N.key` and `dimensions.N.value` at the same time. The value range of N varies based on the number of dimensions that are supported by the related Alibaba Cloud service. You can call the [ListProductQuotaDimensions](https://next.api.aliyun.com/document/quotas/2020-05-10/ListProductQuotaDimensions) operation to query the dimensions that are supported by an Alibaba Cloud service. The number of elements in the returned array is N.
153
153
  """
154
154
  if key is not None:
155
155
  pulumi.set(__self__, "key", key)
@@ -160,7 +160,7 @@ class QuotaApplicationDimensionArgs:
160
160
  @pulumi.getter
161
161
  def key(self) -> Optional[pulumi.Input[str]]:
162
162
  """
163
- Key.
163
+ The key of the dimension. You must configure `dimensions.N.key` and `dimensions.N.value` at the same time. The value range of N varies based on the number of dimensions that are supported by the related Alibaba Cloud service. You can call the [ListProductQuotaDimensions](https://next.api.aliyun.com/document/quotas/2020-05-10/ListProductQuotaDimensions) operation to query the dimensions that are supported by an Alibaba Cloud service. The number of elements in the returned array is N.
164
164
  """
165
165
  return pulumi.get(self, "key")
166
166
 
@@ -172,7 +172,7 @@ class QuotaApplicationDimensionArgs:
172
172
  @pulumi.getter
173
173
  def value(self) -> Optional[pulumi.Input[str]]:
174
174
  """
175
- Value.
175
+ The value of the dimension. You must configure `dimensions.N.key` and `dimensions.N.value` at the same time. The value range of N varies based on the number of dimensions that are supported by the related Alibaba Cloud service. You can call the [ListProductQuotaDimensions](https://next.api.aliyun.com/document/quotas/2020-05-10/ListProductQuotaDimensions) operation to query the dimensions that are supported by an Alibaba Cloud service. The number of elements in the returned array is N.
176
176
  """
177
177
  return pulumi.get(self, "value")
178
178
 
@@ -97,8 +97,8 @@ class QuotaApplicationDimension(dict):
97
97
  key: Optional[str] = None,
98
98
  value: Optional[str] = None):
99
99
  """
100
- :param str key: Key.
101
- :param str value: Value.
100
+ :param str key: The key of the dimension. You must configure `dimensions.N.key` and `dimensions.N.value` at the same time. The value range of N varies based on the number of dimensions that are supported by the related Alibaba Cloud service. You can call the [ListProductQuotaDimensions](https://next.api.aliyun.com/document/quotas/2020-05-10/ListProductQuotaDimensions) operation to query the dimensions that are supported by an Alibaba Cloud service. The number of elements in the returned array is N.
101
+ :param str value: The value of the dimension. You must configure `dimensions.N.key` and `dimensions.N.value` at the same time. The value range of N varies based on the number of dimensions that are supported by the related Alibaba Cloud service. You can call the [ListProductQuotaDimensions](https://next.api.aliyun.com/document/quotas/2020-05-10/ListProductQuotaDimensions) operation to query the dimensions that are supported by an Alibaba Cloud service. The number of elements in the returned array is N.
102
102
  """
103
103
  if key is not None:
104
104
  pulumi.set(__self__, "key", key)
@@ -109,7 +109,7 @@ class QuotaApplicationDimension(dict):
109
109
  @pulumi.getter
110
110
  def key(self) -> Optional[str]:
111
111
  """
112
- Key.
112
+ The key of the dimension. You must configure `dimensions.N.key` and `dimensions.N.value` at the same time. The value range of N varies based on the number of dimensions that are supported by the related Alibaba Cloud service. You can call the [ListProductQuotaDimensions](https://next.api.aliyun.com/document/quotas/2020-05-10/ListProductQuotaDimensions) operation to query the dimensions that are supported by an Alibaba Cloud service. The number of elements in the returned array is N.
113
113
  """
114
114
  return pulumi.get(self, "key")
115
115
 
@@ -117,7 +117,7 @@ class QuotaApplicationDimension(dict):
117
117
  @pulumi.getter
118
118
  def value(self) -> Optional[str]:
119
119
  """
120
- Value.
120
+ The value of the dimension. You must configure `dimensions.N.key` and `dimensions.N.value` at the same time. The value range of N varies based on the number of dimensions that are supported by the related Alibaba Cloud service. You can call the [ListProductQuotaDimensions](https://next.api.aliyun.com/document/quotas/2020-05-10/ListProductQuotaDimensions) operation to query the dimensions that are supported by an Alibaba Cloud service. The number of elements in the returned array is N.
121
121
  """
122
122
  return pulumi.get(self, "value")
123
123
 
@@ -38,10 +38,9 @@ class QuotaApplicationArgs:
38
38
  :param pulumi.Input[str] product_code: The product code.
39
39
  :param pulumi.Input[str] quota_action_code: The ID of quota action.
40
40
  :param pulumi.Input[str] reason: The reason of the quota application.
41
- :param pulumi.Input[str] audit_mode: Quota audit mode. Value:
42
- - Sync: Synchronize auditing. The quota center automatically approves, and the approval result is returned immediately, but the probability of application passing is lower than that of asynchronous approval, and the validity period of the increase quota is 1 hour.
43
- - Async: Asynchronous auditing. Manual review, the probability of application passing is relatively high, and the validity period of the increase quota is 1 month.
44
- > **NOTE:** This parameter takes effect only for the ECS specification quota of the cloud server.
41
+ :param pulumi.Input[str] audit_mode: This parameter is discontinued and is not recommended. The mode in which you want the application to be reviewed. Valid values:
42
+ - Sync: The application is reviewed in a synchronous manner. Quota Center automatically reviews the application. The result is returned immediately after you submit the application. However, the chance of an approval for an application that is reviewed in Sync mode is lower than the chance of an approval for an application that is reviewed in Async mode. The validity period of the new quota value is 1 hour.
43
+ - Async: The application is reviewed in an asynchronous manner. An Alibaba Cloud support engineer reviews the application. The chance of an approval for an application that is reviewed in Async mode is higher than the chance of an approval for an application that is reviewed in Sync mode. The validity period of the new quota value is one month.
45
44
  :param pulumi.Input[Sequence[pulumi.Input['QuotaApplicationDimensionArgs']]] dimensions: QuotaDimensions. See `dimensions` below.
46
45
  :param pulumi.Input[str] effective_time: The effective time of the quota application.
47
46
  :param pulumi.Input[str] env_language: The language of the quota alert notification. Value:
@@ -125,10 +124,9 @@ class QuotaApplicationArgs:
125
124
  @pulumi.getter(name="auditMode")
126
125
  def audit_mode(self) -> Optional[pulumi.Input[str]]:
127
126
  """
128
- Quota audit mode. Value:
129
- - Sync: Synchronize auditing. The quota center automatically approves, and the approval result is returned immediately, but the probability of application passing is lower than that of asynchronous approval, and the validity period of the increase quota is 1 hour.
130
- - Async: Asynchronous auditing. Manual review, the probability of application passing is relatively high, and the validity period of the increase quota is 1 month.
131
- > **NOTE:** This parameter takes effect only for the ECS specification quota of the cloud server.
127
+ This parameter is discontinued and is not recommended. The mode in which you want the application to be reviewed. Valid values:
128
+ - Sync: The application is reviewed in a synchronous manner. Quota Center automatically reviews the application. The result is returned immediately after you submit the application. However, the chance of an approval for an application that is reviewed in Sync mode is lower than the chance of an approval for an application that is reviewed in Async mode. The validity period of the new quota value is 1 hour.
129
+ - Async: The application is reviewed in an asynchronous manner. An Alibaba Cloud support engineer reviews the application. The chance of an approval for an application that is reviewed in Async mode is higher than the chance of an approval for an application that is reviewed in Sync mode. The validity period of the new quota value is one month.
132
130
  """
133
131
  return pulumi.get(self, "audit_mode")
134
132
 
@@ -238,10 +236,9 @@ class _QuotaApplicationState:
238
236
  """
239
237
  Input properties used for looking up and filtering QuotaApplication resources.
240
238
  :param pulumi.Input[str] approve_value: The approve value of the quota application.
241
- :param pulumi.Input[str] audit_mode: Quota audit mode. Value:
242
- - Sync: Synchronize auditing. The quota center automatically approves, and the approval result is returned immediately, but the probability of application passing is lower than that of asynchronous approval, and the validity period of the increase quota is 1 hour.
243
- - Async: Asynchronous auditing. Manual review, the probability of application passing is relatively high, and the validity period of the increase quota is 1 month.
244
- > **NOTE:** This parameter takes effect only for the ECS specification quota of the cloud server.
239
+ :param pulumi.Input[str] audit_mode: This parameter is discontinued and is not recommended. The mode in which you want the application to be reviewed. Valid values:
240
+ - Sync: The application is reviewed in a synchronous manner. Quota Center automatically reviews the application. The result is returned immediately after you submit the application. However, the chance of an approval for an application that is reviewed in Sync mode is lower than the chance of an approval for an application that is reviewed in Async mode. The validity period of the new quota value is 1 hour.
241
+ - Async: The application is reviewed in an asynchronous manner. An Alibaba Cloud support engineer reviews the application. The chance of an approval for an application that is reviewed in Async mode is higher than the chance of an approval for an application that is reviewed in Sync mode. The validity period of the new quota value is one month.
245
242
  :param pulumi.Input[str] audit_reason: The audit reason.
246
243
  :param pulumi.Input[str] create_time: Resource attribute field representing creation time.
247
244
  :param pulumi.Input[float] desire_value: The desire value of the quota application.
@@ -321,10 +318,9 @@ class _QuotaApplicationState:
321
318
  @pulumi.getter(name="auditMode")
322
319
  def audit_mode(self) -> Optional[pulumi.Input[str]]:
323
320
  """
324
- Quota audit mode. Value:
325
- - Sync: Synchronize auditing. The quota center automatically approves, and the approval result is returned immediately, but the probability of application passing is lower than that of asynchronous approval, and the validity period of the increase quota is 1 hour.
326
- - Async: Asynchronous auditing. Manual review, the probability of application passing is relatively high, and the validity period of the increase quota is 1 month.
327
- > **NOTE:** This parameter takes effect only for the ECS specification quota of the cloud server.
321
+ This parameter is discontinued and is not recommended. The mode in which you want the application to be reviewed. Valid values:
322
+ - Sync: The application is reviewed in a synchronous manner. Quota Center automatically reviews the application. The result is returned immediately after you submit the application. However, the chance of an approval for an application that is reviewed in Sync mode is lower than the chance of an approval for an application that is reviewed in Async mode. The validity period of the new quota value is 1 hour.
323
+ - Async: The application is reviewed in an asynchronous manner. An Alibaba Cloud support engineer reviews the application. The chance of an approval for an application that is reviewed in Async mode is higher than the chance of an approval for an application that is reviewed in Sync mode. The validity period of the new quota value is one month.
328
324
  """
329
325
  return pulumi.get(self, "audit_mode")
330
326
 
@@ -562,10 +558,9 @@ class QuotaApplication(pulumi.CustomResource):
562
558
 
563
559
  :param str resource_name: The name of the resource.
564
560
  :param pulumi.ResourceOptions opts: Options for the resource.
565
- :param pulumi.Input[str] audit_mode: Quota audit mode. Value:
566
- - Sync: Synchronize auditing. The quota center automatically approves, and the approval result is returned immediately, but the probability of application passing is lower than that of asynchronous approval, and the validity period of the increase quota is 1 hour.
567
- - Async: Asynchronous auditing. Manual review, the probability of application passing is relatively high, and the validity period of the increase quota is 1 month.
568
- > **NOTE:** This parameter takes effect only for the ECS specification quota of the cloud server.
561
+ :param pulumi.Input[str] audit_mode: This parameter is discontinued and is not recommended. The mode in which you want the application to be reviewed. Valid values:
562
+ - Sync: The application is reviewed in a synchronous manner. Quota Center automatically reviews the application. The result is returned immediately after you submit the application. However, the chance of an approval for an application that is reviewed in Sync mode is lower than the chance of an approval for an application that is reviewed in Async mode. The validity period of the new quota value is 1 hour.
563
+ - Async: The application is reviewed in an asynchronous manner. An Alibaba Cloud support engineer reviews the application. The chance of an approval for an application that is reviewed in Async mode is higher than the chance of an approval for an application that is reviewed in Sync mode. The validity period of the new quota value is one month.
569
564
  :param pulumi.Input[float] desire_value: The desire value of the quota application.
570
565
  :param pulumi.Input[Sequence[pulumi.Input[Union['QuotaApplicationDimensionArgs', 'QuotaApplicationDimensionArgsDict']]]] dimensions: QuotaDimensions. See `dimensions` below.
571
566
  :param pulumi.Input[str] effective_time: The effective time of the quota application.
@@ -694,10 +689,9 @@ class QuotaApplication(pulumi.CustomResource):
694
689
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
695
690
  :param pulumi.ResourceOptions opts: Options for the resource.
696
691
  :param pulumi.Input[str] approve_value: The approve value of the quota application.
697
- :param pulumi.Input[str] audit_mode: Quota audit mode. Value:
698
- - Sync: Synchronize auditing. The quota center automatically approves, and the approval result is returned immediately, but the probability of application passing is lower than that of asynchronous approval, and the validity period of the increase quota is 1 hour.
699
- - Async: Asynchronous auditing. Manual review, the probability of application passing is relatively high, and the validity period of the increase quota is 1 month.
700
- > **NOTE:** This parameter takes effect only for the ECS specification quota of the cloud server.
692
+ :param pulumi.Input[str] audit_mode: This parameter is discontinued and is not recommended. The mode in which you want the application to be reviewed. Valid values:
693
+ - Sync: The application is reviewed in a synchronous manner. Quota Center automatically reviews the application. The result is returned immediately after you submit the application. However, the chance of an approval for an application that is reviewed in Sync mode is lower than the chance of an approval for an application that is reviewed in Async mode. The validity period of the new quota value is 1 hour.
694
+ - Async: The application is reviewed in an asynchronous manner. An Alibaba Cloud support engineer reviews the application. The chance of an approval for an application that is reviewed in Async mode is higher than the chance of an approval for an application that is reviewed in Sync mode. The validity period of the new quota value is one month.
701
695
  :param pulumi.Input[str] audit_reason: The audit reason.
702
696
  :param pulumi.Input[str] create_time: Resource attribute field representing creation time.
703
697
  :param pulumi.Input[float] desire_value: The desire value of the quota application.
@@ -760,10 +754,9 @@ class QuotaApplication(pulumi.CustomResource):
760
754
  @pulumi.getter(name="auditMode")
761
755
  def audit_mode(self) -> pulumi.Output[str]:
762
756
  """
763
- Quota audit mode. Value:
764
- - Sync: Synchronize auditing. The quota center automatically approves, and the approval result is returned immediately, but the probability of application passing is lower than that of asynchronous approval, and the validity period of the increase quota is 1 hour.
765
- - Async: Asynchronous auditing. Manual review, the probability of application passing is relatively high, and the validity period of the increase quota is 1 month.
766
- > **NOTE:** This parameter takes effect only for the ECS specification quota of the cloud server.
757
+ This parameter is discontinued and is not recommended. The mode in which you want the application to be reviewed. Valid values:
758
+ - Sync: The application is reviewed in a synchronous manner. Quota Center automatically reviews the application. The result is returned immediately after you submit the application. However, the chance of an approval for an application that is reviewed in Sync mode is lower than the chance of an approval for an application that is reviewed in Async mode. The validity period of the new quota value is 1 hour.
759
+ - Async: The application is reviewed in an asynchronous manner. An Alibaba Cloud support engineer reviews the application. The chance of an approval for an application that is reviewed in Async mode is higher than the chance of an approval for an application that is reviewed in Sync mode. The validity period of the new quota value is one month.
767
760
  """
768
761
  return pulumi.get(self, "audit_mode")
769
762
 
@@ -9,6 +9,8 @@ from .account import *
9
9
  from .account_privilege import *
10
10
  from .backup_policy import *
11
11
  from .connection import *
12
+ from .custom import *
13
+ from .custom_deployment_set import *
12
14
  from .database import *
13
15
  from .db_instance_endpoint import *
14
16
  from .db_instance_endpoint_address import *