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
@@ -23,14 +23,18 @@ class RouterVbrChildInstanceArgs:
23
23
  child_instance_region_id: pulumi.Input[str],
24
24
  child_instance_type: pulumi.Input[str],
25
25
  ecr_id: pulumi.Input[str],
26
- child_instance_owner_id: Optional[pulumi.Input[str]] = None):
26
+ child_instance_owner_id: Optional[pulumi.Input[str]] = None,
27
+ description: Optional[pulumi.Input[str]] = None):
27
28
  """
28
29
  The set of arguments for constructing a RouterVbrChildInstance resource.
29
30
  :param pulumi.Input[str] child_instance_id: The ID of the leased line gateway subinstance.
30
- :param pulumi.Input[str] child_instance_region_id: Region of the leased line gateway sub-instance.
31
- :param pulumi.Input[str] child_instance_type: The type of leased line gateway sub-instance, Valid values: `VBR`.
31
+ :param pulumi.Input[str] child_instance_region_id: Region of the leased line gateway sub-instance
32
+ :param pulumi.Input[str] child_instance_type: The type of the network instance. Value: `VBR`: VBR instance.
32
33
  :param pulumi.Input[str] ecr_id: ID of the representative leased line gateway instance.
33
- :param pulumi.Input[str] child_instance_owner_id: The ID of the subinstance of the leased line gateway.
34
+ :param pulumi.Input[str] child_instance_owner_id: The ID of the Alibaba Cloud account (primary account) to which the VBR instance belongs.
35
+
36
+ > **NOTE:** This parameter is required if you want to load a cross-account network instance.
37
+ :param pulumi.Input[str] description: Resource attribute fields that represent descriptive information
34
38
  """
35
39
  pulumi.set(__self__, "child_instance_id", child_instance_id)
36
40
  pulumi.set(__self__, "child_instance_region_id", child_instance_region_id)
@@ -38,6 +42,8 @@ class RouterVbrChildInstanceArgs:
38
42
  pulumi.set(__self__, "ecr_id", ecr_id)
39
43
  if child_instance_owner_id is not None:
40
44
  pulumi.set(__self__, "child_instance_owner_id", child_instance_owner_id)
45
+ if description is not None:
46
+ pulumi.set(__self__, "description", description)
41
47
 
42
48
  @property
43
49
  @pulumi.getter(name="childInstanceId")
@@ -55,7 +61,7 @@ class RouterVbrChildInstanceArgs:
55
61
  @pulumi.getter(name="childInstanceRegionId")
56
62
  def child_instance_region_id(self) -> pulumi.Input[str]:
57
63
  """
58
- Region of the leased line gateway sub-instance.
64
+ Region of the leased line gateway sub-instance
59
65
  """
60
66
  return pulumi.get(self, "child_instance_region_id")
61
67
 
@@ -67,7 +73,7 @@ class RouterVbrChildInstanceArgs:
67
73
  @pulumi.getter(name="childInstanceType")
68
74
  def child_instance_type(self) -> pulumi.Input[str]:
69
75
  """
70
- The type of leased line gateway sub-instance, Valid values: `VBR`.
76
+ The type of the network instance. Value: `VBR`: VBR instance.
71
77
  """
72
78
  return pulumi.get(self, "child_instance_type")
73
79
 
@@ -91,7 +97,9 @@ class RouterVbrChildInstanceArgs:
91
97
  @pulumi.getter(name="childInstanceOwnerId")
92
98
  def child_instance_owner_id(self) -> Optional[pulumi.Input[str]]:
93
99
  """
94
- The ID of the subinstance of the leased line gateway.
100
+ The ID of the Alibaba Cloud account (primary account) to which the VBR instance belongs.
101
+
102
+ > **NOTE:** This parameter is required if you want to load a cross-account network instance.
95
103
  """
96
104
  return pulumi.get(self, "child_instance_owner_id")
97
105
 
@@ -99,6 +107,18 @@ class RouterVbrChildInstanceArgs:
99
107
  def child_instance_owner_id(self, value: Optional[pulumi.Input[str]]):
100
108
  pulumi.set(self, "child_instance_owner_id", value)
101
109
 
110
+ @property
111
+ @pulumi.getter
112
+ def description(self) -> Optional[pulumi.Input[str]]:
113
+ """
114
+ Resource attribute fields that represent descriptive information
115
+ """
116
+ return pulumi.get(self, "description")
117
+
118
+ @description.setter
119
+ def description(self, value: Optional[pulumi.Input[str]]):
120
+ pulumi.set(self, "description", value)
121
+
102
122
 
103
123
  @pulumi.input_type
104
124
  class _RouterVbrChildInstanceState:
@@ -108,15 +128,19 @@ class _RouterVbrChildInstanceState:
108
128
  child_instance_region_id: Optional[pulumi.Input[str]] = None,
109
129
  child_instance_type: Optional[pulumi.Input[str]] = None,
110
130
  create_time: Optional[pulumi.Input[str]] = None,
131
+ description: Optional[pulumi.Input[str]] = None,
111
132
  ecr_id: Optional[pulumi.Input[str]] = None,
112
133
  status: Optional[pulumi.Input[str]] = None):
113
134
  """
114
135
  Input properties used for looking up and filtering RouterVbrChildInstance resources.
115
136
  :param pulumi.Input[str] child_instance_id: The ID of the leased line gateway subinstance.
116
- :param pulumi.Input[str] child_instance_owner_id: The ID of the subinstance of the leased line gateway.
117
- :param pulumi.Input[str] child_instance_region_id: Region of the leased line gateway sub-instance.
118
- :param pulumi.Input[str] child_instance_type: The type of leased line gateway sub-instance, Valid values: `VBR`.
137
+ :param pulumi.Input[str] child_instance_owner_id: The ID of the Alibaba Cloud account (primary account) to which the VBR instance belongs.
138
+
139
+ > **NOTE:** This parameter is required if you want to load a cross-account network instance.
140
+ :param pulumi.Input[str] child_instance_region_id: Region of the leased line gateway sub-instance
141
+ :param pulumi.Input[str] child_instance_type: The type of the network instance. Value: `VBR`: VBR instance.
119
142
  :param pulumi.Input[str] create_time: The creation time of the resource.
143
+ :param pulumi.Input[str] description: Resource attribute fields that represent descriptive information
120
144
  :param pulumi.Input[str] ecr_id: ID of the representative leased line gateway instance.
121
145
  :param pulumi.Input[str] status: Binding relationship status of leased line gateway subinstances.
122
146
  """
@@ -130,6 +154,8 @@ class _RouterVbrChildInstanceState:
130
154
  pulumi.set(__self__, "child_instance_type", child_instance_type)
131
155
  if create_time is not None:
132
156
  pulumi.set(__self__, "create_time", create_time)
157
+ if description is not None:
158
+ pulumi.set(__self__, "description", description)
133
159
  if ecr_id is not None:
134
160
  pulumi.set(__self__, "ecr_id", ecr_id)
135
161
  if status is not None:
@@ -151,7 +177,9 @@ class _RouterVbrChildInstanceState:
151
177
  @pulumi.getter(name="childInstanceOwnerId")
152
178
  def child_instance_owner_id(self) -> Optional[pulumi.Input[str]]:
153
179
  """
154
- The ID of the subinstance of the leased line gateway.
180
+ The ID of the Alibaba Cloud account (primary account) to which the VBR instance belongs.
181
+
182
+ > **NOTE:** This parameter is required if you want to load a cross-account network instance.
155
183
  """
156
184
  return pulumi.get(self, "child_instance_owner_id")
157
185
 
@@ -163,7 +191,7 @@ class _RouterVbrChildInstanceState:
163
191
  @pulumi.getter(name="childInstanceRegionId")
164
192
  def child_instance_region_id(self) -> Optional[pulumi.Input[str]]:
165
193
  """
166
- Region of the leased line gateway sub-instance.
194
+ Region of the leased line gateway sub-instance
167
195
  """
168
196
  return pulumi.get(self, "child_instance_region_id")
169
197
 
@@ -175,7 +203,7 @@ class _RouterVbrChildInstanceState:
175
203
  @pulumi.getter(name="childInstanceType")
176
204
  def child_instance_type(self) -> Optional[pulumi.Input[str]]:
177
205
  """
178
- The type of leased line gateway sub-instance, Valid values: `VBR`.
206
+ The type of the network instance. Value: `VBR`: VBR instance.
179
207
  """
180
208
  return pulumi.get(self, "child_instance_type")
181
209
 
@@ -195,6 +223,18 @@ class _RouterVbrChildInstanceState:
195
223
  def create_time(self, value: Optional[pulumi.Input[str]]):
196
224
  pulumi.set(self, "create_time", value)
197
225
 
226
+ @property
227
+ @pulumi.getter
228
+ def description(self) -> Optional[pulumi.Input[str]]:
229
+ """
230
+ Resource attribute fields that represent descriptive information
231
+ """
232
+ return pulumi.get(self, "description")
233
+
234
+ @description.setter
235
+ def description(self, value: Optional[pulumi.Input[str]]):
236
+ pulumi.set(self, "description", value)
237
+
198
238
  @property
199
239
  @pulumi.getter(name="ecrId")
200
240
  def ecr_id(self) -> Optional[pulumi.Input[str]]:
@@ -229,10 +269,11 @@ class RouterVbrChildInstance(pulumi.CustomResource):
229
269
  child_instance_owner_id: Optional[pulumi.Input[str]] = None,
230
270
  child_instance_region_id: Optional[pulumi.Input[str]] = None,
231
271
  child_instance_type: Optional[pulumi.Input[str]] = None,
272
+ description: Optional[pulumi.Input[str]] = None,
232
273
  ecr_id: Optional[pulumi.Input[str]] = None,
233
274
  __props__=None):
234
275
  """
235
- Provides a Express Connect Router Express Connect Router Vbr Child Instance resource. Leased Line Gateway VBR sub-instance.
276
+ Provides a Express Connect Router Express Connect Router Vbr Child Instance resource.
236
277
 
237
278
  For information about Express Connect Router Express Connect Router Vbr Child Instance and how to use it, see [What is Express Connect Router Vbr Child Instance](https://next.api.alibabacloud.com/api/ExpressConnectRouter/2023-09-01/AttachExpressConnectRouterChildInstance).
238
279
 
@@ -278,9 +319,12 @@ class RouterVbrChildInstance(pulumi.CustomResource):
278
319
  :param str resource_name: The name of the resource.
279
320
  :param pulumi.ResourceOptions opts: Options for the resource.
280
321
  :param pulumi.Input[str] child_instance_id: The ID of the leased line gateway subinstance.
281
- :param pulumi.Input[str] child_instance_owner_id: The ID of the subinstance of the leased line gateway.
282
- :param pulumi.Input[str] child_instance_region_id: Region of the leased line gateway sub-instance.
283
- :param pulumi.Input[str] child_instance_type: The type of leased line gateway sub-instance, Valid values: `VBR`.
322
+ :param pulumi.Input[str] child_instance_owner_id: The ID of the Alibaba Cloud account (primary account) to which the VBR instance belongs.
323
+
324
+ > **NOTE:** This parameter is required if you want to load a cross-account network instance.
325
+ :param pulumi.Input[str] child_instance_region_id: Region of the leased line gateway sub-instance
326
+ :param pulumi.Input[str] child_instance_type: The type of the network instance. Value: `VBR`: VBR instance.
327
+ :param pulumi.Input[str] description: Resource attribute fields that represent descriptive information
284
328
  :param pulumi.Input[str] ecr_id: ID of the representative leased line gateway instance.
285
329
  """
286
330
  ...
@@ -290,7 +334,7 @@ class RouterVbrChildInstance(pulumi.CustomResource):
290
334
  args: RouterVbrChildInstanceArgs,
291
335
  opts: Optional[pulumi.ResourceOptions] = None):
292
336
  """
293
- Provides a Express Connect Router Express Connect Router Vbr Child Instance resource. Leased Line Gateway VBR sub-instance.
337
+ Provides a Express Connect Router Express Connect Router Vbr Child Instance resource.
294
338
 
295
339
  For information about Express Connect Router Express Connect Router Vbr Child Instance and how to use it, see [What is Express Connect Router Vbr Child Instance](https://next.api.alibabacloud.com/api/ExpressConnectRouter/2023-09-01/AttachExpressConnectRouterChildInstance).
296
340
 
@@ -352,6 +396,7 @@ class RouterVbrChildInstance(pulumi.CustomResource):
352
396
  child_instance_owner_id: Optional[pulumi.Input[str]] = None,
353
397
  child_instance_region_id: Optional[pulumi.Input[str]] = None,
354
398
  child_instance_type: Optional[pulumi.Input[str]] = None,
399
+ description: Optional[pulumi.Input[str]] = None,
355
400
  ecr_id: Optional[pulumi.Input[str]] = None,
356
401
  __props__=None):
357
402
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -372,6 +417,7 @@ class RouterVbrChildInstance(pulumi.CustomResource):
372
417
  if child_instance_type is None and not opts.urn:
373
418
  raise TypeError("Missing required property 'child_instance_type'")
374
419
  __props__.__dict__["child_instance_type"] = child_instance_type
420
+ __props__.__dict__["description"] = description
375
421
  if ecr_id is None and not opts.urn:
376
422
  raise TypeError("Missing required property 'ecr_id'")
377
423
  __props__.__dict__["ecr_id"] = ecr_id
@@ -392,6 +438,7 @@ class RouterVbrChildInstance(pulumi.CustomResource):
392
438
  child_instance_region_id: Optional[pulumi.Input[str]] = None,
393
439
  child_instance_type: Optional[pulumi.Input[str]] = None,
394
440
  create_time: Optional[pulumi.Input[str]] = None,
441
+ description: Optional[pulumi.Input[str]] = None,
395
442
  ecr_id: Optional[pulumi.Input[str]] = None,
396
443
  status: Optional[pulumi.Input[str]] = None) -> 'RouterVbrChildInstance':
397
444
  """
@@ -402,10 +449,13 @@ class RouterVbrChildInstance(pulumi.CustomResource):
402
449
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
403
450
  :param pulumi.ResourceOptions opts: Options for the resource.
404
451
  :param pulumi.Input[str] child_instance_id: The ID of the leased line gateway subinstance.
405
- :param pulumi.Input[str] child_instance_owner_id: The ID of the subinstance of the leased line gateway.
406
- :param pulumi.Input[str] child_instance_region_id: Region of the leased line gateway sub-instance.
407
- :param pulumi.Input[str] child_instance_type: The type of leased line gateway sub-instance, Valid values: `VBR`.
452
+ :param pulumi.Input[str] child_instance_owner_id: The ID of the Alibaba Cloud account (primary account) to which the VBR instance belongs.
453
+
454
+ > **NOTE:** This parameter is required if you want to load a cross-account network instance.
455
+ :param pulumi.Input[str] child_instance_region_id: Region of the leased line gateway sub-instance
456
+ :param pulumi.Input[str] child_instance_type: The type of the network instance. Value: `VBR`: VBR instance.
408
457
  :param pulumi.Input[str] create_time: The creation time of the resource.
458
+ :param pulumi.Input[str] description: Resource attribute fields that represent descriptive information
409
459
  :param pulumi.Input[str] ecr_id: ID of the representative leased line gateway instance.
410
460
  :param pulumi.Input[str] status: Binding relationship status of leased line gateway subinstances.
411
461
  """
@@ -418,6 +468,7 @@ class RouterVbrChildInstance(pulumi.CustomResource):
418
468
  __props__.__dict__["child_instance_region_id"] = child_instance_region_id
419
469
  __props__.__dict__["child_instance_type"] = child_instance_type
420
470
  __props__.__dict__["create_time"] = create_time
471
+ __props__.__dict__["description"] = description
421
472
  __props__.__dict__["ecr_id"] = ecr_id
422
473
  __props__.__dict__["status"] = status
423
474
  return RouterVbrChildInstance(resource_name, opts=opts, __props__=__props__)
@@ -432,9 +483,11 @@ class RouterVbrChildInstance(pulumi.CustomResource):
432
483
 
433
484
  @property
434
485
  @pulumi.getter(name="childInstanceOwnerId")
435
- def child_instance_owner_id(self) -> pulumi.Output[Optional[str]]:
486
+ def child_instance_owner_id(self) -> pulumi.Output[str]:
436
487
  """
437
- The ID of the subinstance of the leased line gateway.
488
+ The ID of the Alibaba Cloud account (primary account) to which the VBR instance belongs.
489
+
490
+ > **NOTE:** This parameter is required if you want to load a cross-account network instance.
438
491
  """
439
492
  return pulumi.get(self, "child_instance_owner_id")
440
493
 
@@ -442,7 +495,7 @@ class RouterVbrChildInstance(pulumi.CustomResource):
442
495
  @pulumi.getter(name="childInstanceRegionId")
443
496
  def child_instance_region_id(self) -> pulumi.Output[str]:
444
497
  """
445
- Region of the leased line gateway sub-instance.
498
+ Region of the leased line gateway sub-instance
446
499
  """
447
500
  return pulumi.get(self, "child_instance_region_id")
448
501
 
@@ -450,7 +503,7 @@ class RouterVbrChildInstance(pulumi.CustomResource):
450
503
  @pulumi.getter(name="childInstanceType")
451
504
  def child_instance_type(self) -> pulumi.Output[str]:
452
505
  """
453
- The type of leased line gateway sub-instance, Valid values: `VBR`.
506
+ The type of the network instance. Value: `VBR`: VBR instance.
454
507
  """
455
508
  return pulumi.get(self, "child_instance_type")
456
509
 
@@ -462,6 +515,14 @@ class RouterVbrChildInstance(pulumi.CustomResource):
462
515
  """
463
516
  return pulumi.get(self, "create_time")
464
517
 
518
+ @property
519
+ @pulumi.getter
520
+ def description(self) -> pulumi.Output[Optional[str]]:
521
+ """
522
+ Resource attribute fields that represent descriptive information
523
+ """
524
+ return pulumi.get(self, "description")
525
+
465
526
  @property
466
527
  @pulumi.getter(name="ecrId")
467
528
  def ecr_id(self) -> pulumi.Output[str]: