pulumi-alicloud 3.88.0a1761582647__py3-none-any.whl → 3.88.0a1761969289__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 (66) hide show
  1. pulumi_alicloud/__init__.py +59 -0
  2. pulumi_alicloud/cfg/_inputs.py +27 -24
  3. pulumi_alicloud/cfg/aggregator.py +142 -53
  4. pulumi_alicloud/cfg/outputs.py +18 -15
  5. pulumi_alicloud/cloudfirewall/__init__.py +1 -0
  6. pulumi_alicloud/cloudfirewall/get_tls_inspect_ca_certificates.py +214 -0
  7. pulumi_alicloud/cloudfirewall/outputs.py +30 -0
  8. pulumi_alicloud/cms/_inputs.py +870 -10
  9. pulumi_alicloud/cms/get_site_monitors.py +2 -2
  10. pulumi_alicloud/cms/outputs.py +606 -6
  11. pulumi_alicloud/cms/site_monitor.py +360 -89
  12. pulumi_alicloud/cr/registry_enterprise_instance.py +63 -0
  13. pulumi_alicloud/dts/instance.py +14 -14
  14. pulumi_alicloud/eci/container_group.py +47 -0
  15. pulumi_alicloud/ecs/security_group_rule.py +7 -7
  16. pulumi_alicloud/ens/load_balancer.py +8 -4
  17. pulumi_alicloud/esa/__init__.py +1 -0
  18. pulumi_alicloud/esa/_inputs.py +611 -0
  19. pulumi_alicloud/esa/cache_rule.py +47 -0
  20. pulumi_alicloud/esa/certificate.py +21 -54
  21. pulumi_alicloud/esa/compression_rule.py +47 -0
  22. pulumi_alicloud/esa/load_balancer.py +999 -0
  23. pulumi_alicloud/esa/outputs.py +469 -0
  24. pulumi_alicloud/eventbridge/event_source.py +57 -57
  25. pulumi_alicloud/ga/_inputs.py +56 -16
  26. pulumi_alicloud/ga/outputs.py +39 -11
  27. pulumi_alicloud/lindorm/instance_v2.py +358 -70
  28. pulumi_alicloud/oss/_inputs.py +53 -0
  29. pulumi_alicloud/oss/bucket_logging.py +80 -29
  30. pulumi_alicloud/oss/bucket_replication.py +55 -8
  31. pulumi_alicloud/oss/outputs.py +31 -0
  32. pulumi_alicloud/polardb/__init__.py +2 -0
  33. pulumi_alicloud/polardb/cluster.py +14 -14
  34. pulumi_alicloud/polardb/zonal_account.py +449 -0
  35. pulumi_alicloud/polardb/zonal_db_cluster.py +2 -2
  36. pulumi_alicloud/polardb/zonal_endpoint.py +865 -0
  37. pulumi_alicloud/pulumi-plugin.json +1 -1
  38. pulumi_alicloud/ram/policy.py +2 -2
  39. pulumi_alicloud/resourcemanager/__init__.py +2 -0
  40. pulumi_alicloud/resourcemanager/_inputs.py +745 -0
  41. pulumi_alicloud/resourcemanager/delivery_channel.py +449 -0
  42. pulumi_alicloud/resourcemanager/multi_account_delivery_channel.py +470 -0
  43. pulumi_alicloud/resourcemanager/outputs.py +643 -0
  44. pulumi_alicloud/sae/_inputs.py +60 -0
  45. pulumi_alicloud/sae/application.py +1 -1
  46. pulumi_alicloud/sae/outputs.py +42 -0
  47. pulumi_alicloud/sls/__init__.py +1 -0
  48. pulumi_alicloud/sls/get_indexs.py +304 -0
  49. pulumi_alicloud/sls/outputs.py +148 -0
  50. pulumi_alicloud/star_rocks_instance.py +8 -2
  51. pulumi_alicloud/starrocks/__init__.py +12 -0
  52. pulumi_alicloud/starrocks/_inputs.py +656 -0
  53. pulumi_alicloud/starrocks/instance.py +1427 -0
  54. pulumi_alicloud/starrocks/node_group.py +1298 -0
  55. pulumi_alicloud/starrocks/outputs.py +508 -0
  56. pulumi_alicloud/vpc/_inputs.py +84 -0
  57. pulumi_alicloud/vpc/gateway_endpoint.py +8 -8
  58. pulumi_alicloud/vpc/network_acl_entries.py +16 -20
  59. pulumi_alicloud/vpc/outputs.py +48 -0
  60. pulumi_alicloud/wafv3/_inputs.py +396 -0
  61. pulumi_alicloud/wafv3/defense_rule.py +40 -110
  62. pulumi_alicloud/wafv3/outputs.py +303 -0
  63. {pulumi_alicloud-3.88.0a1761582647.dist-info → pulumi_alicloud-3.88.0a1761969289.dist-info}/METADATA +1 -1
  64. {pulumi_alicloud-3.88.0a1761582647.dist-info → pulumi_alicloud-3.88.0a1761969289.dist-info}/RECORD +66 -54
  65. {pulumi_alicloud-3.88.0a1761582647.dist-info → pulumi_alicloud-3.88.0a1761969289.dist-info}/WHEEL +0 -0
  66. {pulumi_alicloud-3.88.0a1761582647.dist-info → pulumi_alicloud-3.88.0a1761969289.dist-info}/top_level.txt +0 -0
@@ -27,10 +27,10 @@ class EventSourceArgs:
27
27
  linked_external_source: Optional[pulumi.Input[_builtins.bool]] = None):
28
28
  """
29
29
  The set of arguments for constructing a EventSource resource.
30
- :param pulumi.Input[_builtins.str] event_bus_name: The name of event bus.
31
- :param pulumi.Input[_builtins.str] event_source_name: The code name of event source.
32
- :param pulumi.Input[_builtins.str] description: The detail describe of event source.
33
- :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] external_source_config: The config of external source.
30
+ :param pulumi.Input[_builtins.str] event_bus_name: The name of the event bus to which the event source is attached.
31
+ :param pulumi.Input[_builtins.str] event_source_name: The name of the event source.
32
+ :param pulumi.Input[_builtins.str] description: The description of the event source.
33
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] external_source_config: The configuration of the external data source.
34
34
  When `external_source_type` is `RabbitMQ`, The following attributes are supported:
35
35
  `RegionId` - The region ID of RabbitMQ.
36
36
  `InstanceId` - The instance ID of RabbitMQ.
@@ -44,8 +44,8 @@ class EventSourceArgs:
44
44
  `GroupID` - The group ID of consumer.
45
45
  When `external_source_type` is `MNS`, The following attributes are supported:
46
46
  `QueueName` - The queue name of MNS.
47
- :param pulumi.Input[_builtins.str] external_source_type: The type of external data source. Valid value : `RabbitMQ`, `RocketMQ` and `MNS`. **NOTE:** Only When `linked_external_source` is `true`, This field is valid.
48
- :param pulumi.Input[_builtins.bool] linked_external_source: Whether to connect to an external data source. Default value: `false`
47
+ :param pulumi.Input[_builtins.str] external_source_type: The type of the external data source. Valid values: `RabbitMQ`, `RocketMQ` and `MNS`.
48
+ :param pulumi.Input[_builtins.bool] linked_external_source: Specifies whether to connect to an external data source. Default value: `false`.
49
49
  """
50
50
  pulumi.set(__self__, "event_bus_name", event_bus_name)
51
51
  pulumi.set(__self__, "event_source_name", event_source_name)
@@ -62,7 +62,7 @@ class EventSourceArgs:
62
62
  @pulumi.getter(name="eventBusName")
63
63
  def event_bus_name(self) -> pulumi.Input[_builtins.str]:
64
64
  """
65
- The name of event bus.
65
+ The name of the event bus to which the event source is attached.
66
66
  """
67
67
  return pulumi.get(self, "event_bus_name")
68
68
 
@@ -74,7 +74,7 @@ class EventSourceArgs:
74
74
  @pulumi.getter(name="eventSourceName")
75
75
  def event_source_name(self) -> pulumi.Input[_builtins.str]:
76
76
  """
77
- The code name of event source.
77
+ The name of the event source.
78
78
  """
79
79
  return pulumi.get(self, "event_source_name")
80
80
 
@@ -86,7 +86,7 @@ class EventSourceArgs:
86
86
  @pulumi.getter
87
87
  def description(self) -> Optional[pulumi.Input[_builtins.str]]:
88
88
  """
89
- The detail describe of event source.
89
+ The description of the event source.
90
90
  """
91
91
  return pulumi.get(self, "description")
92
92
 
@@ -98,7 +98,7 @@ class EventSourceArgs:
98
98
  @pulumi.getter(name="externalSourceConfig")
99
99
  def external_source_config(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
100
100
  """
101
- The config of external source.
101
+ The configuration of the external data source.
102
102
  When `external_source_type` is `RabbitMQ`, The following attributes are supported:
103
103
  `RegionId` - The region ID of RabbitMQ.
104
104
  `InstanceId` - The instance ID of RabbitMQ.
@@ -123,7 +123,7 @@ class EventSourceArgs:
123
123
  @pulumi.getter(name="externalSourceType")
124
124
  def external_source_type(self) -> Optional[pulumi.Input[_builtins.str]]:
125
125
  """
126
- The type of external data source. Valid value : `RabbitMQ`, `RocketMQ` and `MNS`. **NOTE:** Only When `linked_external_source` is `true`, This field is valid.
126
+ The type of the external data source. Valid values: `RabbitMQ`, `RocketMQ` and `MNS`.
127
127
  """
128
128
  return pulumi.get(self, "external_source_type")
129
129
 
@@ -135,7 +135,7 @@ class EventSourceArgs:
135
135
  @pulumi.getter(name="linkedExternalSource")
136
136
  def linked_external_source(self) -> Optional[pulumi.Input[_builtins.bool]]:
137
137
  """
138
- Whether to connect to an external data source. Default value: `false`
138
+ Specifies whether to connect to an external data source. Default value: `false`.
139
139
  """
140
140
  return pulumi.get(self, "linked_external_source")
141
141
 
@@ -155,10 +155,10 @@ class _EventSourceState:
155
155
  linked_external_source: Optional[pulumi.Input[_builtins.bool]] = None):
156
156
  """
157
157
  Input properties used for looking up and filtering EventSource resources.
158
- :param pulumi.Input[_builtins.str] description: The detail describe of event source.
159
- :param pulumi.Input[_builtins.str] event_bus_name: The name of event bus.
160
- :param pulumi.Input[_builtins.str] event_source_name: The code name of event source.
161
- :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] external_source_config: The config of external source.
158
+ :param pulumi.Input[_builtins.str] description: The description of the event source.
159
+ :param pulumi.Input[_builtins.str] event_bus_name: The name of the event bus to which the event source is attached.
160
+ :param pulumi.Input[_builtins.str] event_source_name: The name of the event source.
161
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] external_source_config: The configuration of the external data source.
162
162
  When `external_source_type` is `RabbitMQ`, The following attributes are supported:
163
163
  `RegionId` - The region ID of RabbitMQ.
164
164
  `InstanceId` - The instance ID of RabbitMQ.
@@ -172,8 +172,8 @@ class _EventSourceState:
172
172
  `GroupID` - The group ID of consumer.
173
173
  When `external_source_type` is `MNS`, The following attributes are supported:
174
174
  `QueueName` - The queue name of MNS.
175
- :param pulumi.Input[_builtins.str] external_source_type: The type of external data source. Valid value : `RabbitMQ`, `RocketMQ` and `MNS`. **NOTE:** Only When `linked_external_source` is `true`, This field is valid.
176
- :param pulumi.Input[_builtins.bool] linked_external_source: Whether to connect to an external data source. Default value: `false`
175
+ :param pulumi.Input[_builtins.str] external_source_type: The type of the external data source. Valid values: `RabbitMQ`, `RocketMQ` and `MNS`.
176
+ :param pulumi.Input[_builtins.bool] linked_external_source: Specifies whether to connect to an external data source. Default value: `false`.
177
177
  """
178
178
  if description is not None:
179
179
  pulumi.set(__self__, "description", description)
@@ -192,7 +192,7 @@ class _EventSourceState:
192
192
  @pulumi.getter
193
193
  def description(self) -> Optional[pulumi.Input[_builtins.str]]:
194
194
  """
195
- The detail describe of event source.
195
+ The description of the event source.
196
196
  """
197
197
  return pulumi.get(self, "description")
198
198
 
@@ -204,7 +204,7 @@ class _EventSourceState:
204
204
  @pulumi.getter(name="eventBusName")
205
205
  def event_bus_name(self) -> Optional[pulumi.Input[_builtins.str]]:
206
206
  """
207
- The name of event bus.
207
+ The name of the event bus to which the event source is attached.
208
208
  """
209
209
  return pulumi.get(self, "event_bus_name")
210
210
 
@@ -216,7 +216,7 @@ class _EventSourceState:
216
216
  @pulumi.getter(name="eventSourceName")
217
217
  def event_source_name(self) -> Optional[pulumi.Input[_builtins.str]]:
218
218
  """
219
- The code name of event source.
219
+ The name of the event source.
220
220
  """
221
221
  return pulumi.get(self, "event_source_name")
222
222
 
@@ -228,7 +228,7 @@ class _EventSourceState:
228
228
  @pulumi.getter(name="externalSourceConfig")
229
229
  def external_source_config(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
230
230
  """
231
- The config of external source.
231
+ The configuration of the external data source.
232
232
  When `external_source_type` is `RabbitMQ`, The following attributes are supported:
233
233
  `RegionId` - The region ID of RabbitMQ.
234
234
  `InstanceId` - The instance ID of RabbitMQ.
@@ -253,7 +253,7 @@ class _EventSourceState:
253
253
  @pulumi.getter(name="externalSourceType")
254
254
  def external_source_type(self) -> Optional[pulumi.Input[_builtins.str]]:
255
255
  """
256
- The type of external data source. Valid value : `RabbitMQ`, `RocketMQ` and `MNS`. **NOTE:** Only When `linked_external_source` is `true`, This field is valid.
256
+ The type of the external data source. Valid values: `RabbitMQ`, `RocketMQ` and `MNS`.
257
257
  """
258
258
  return pulumi.get(self, "external_source_type")
259
259
 
@@ -265,7 +265,7 @@ class _EventSourceState:
265
265
  @pulumi.getter(name="linkedExternalSource")
266
266
  def linked_external_source(self) -> Optional[pulumi.Input[_builtins.bool]]:
267
267
  """
268
- Whether to connect to an external data source. Default value: `false`
268
+ Specifies whether to connect to an external data source. Default value: `false`.
269
269
  """
270
270
  return pulumi.get(self, "linked_external_source")
271
271
 
@@ -306,20 +306,20 @@ class EventSource(pulumi.CustomResource):
306
306
  config = pulumi.Config()
307
307
  name = config.get("name")
308
308
  if name is None:
309
- name = "tf-example"
309
+ name = "terraform-example"
310
310
  default = random.index.Integer("default",
311
311
  min=10000,
312
312
  max=99999)
313
- example = alicloud.eventbridge.EventBus("example", event_bus_name=name)
314
- example_queue = alicloud.mns.Queue("example", name=f"{name}-{default['result']}")
315
- example_event_source = alicloud.eventbridge.EventSource("example",
316
- event_bus_name=example.event_bus_name,
317
- event_source_name=name,
313
+ default_queue = alicloud.mns.Queue("default", name=f"{name}-{default['result']}")
314
+ default_event_bus = alicloud.eventbridge.EventBus("default", event_bus_name=f"{name}-{default['result']}")
315
+ default_event_source = alicloud.eventbridge.EventSource("default",
316
+ event_bus_name=default_event_bus.event_bus_name,
317
+ event_source_name=f"{name}-{default['result']}",
318
318
  description=name,
319
319
  linked_external_source=True,
320
320
  external_source_type="MNS",
321
321
  external_source_config={
322
- "QueueName": example_queue.name,
322
+ "QueueName": default_queue.name,
323
323
  })
324
324
  ```
325
325
 
@@ -333,10 +333,10 @@ class EventSource(pulumi.CustomResource):
333
333
 
334
334
  :param str resource_name: The name of the resource.
335
335
  :param pulumi.ResourceOptions opts: Options for the resource.
336
- :param pulumi.Input[_builtins.str] description: The detail describe of event source.
337
- :param pulumi.Input[_builtins.str] event_bus_name: The name of event bus.
338
- :param pulumi.Input[_builtins.str] event_source_name: The code name of event source.
339
- :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] external_source_config: The config of external source.
336
+ :param pulumi.Input[_builtins.str] description: The description of the event source.
337
+ :param pulumi.Input[_builtins.str] event_bus_name: The name of the event bus to which the event source is attached.
338
+ :param pulumi.Input[_builtins.str] event_source_name: The name of the event source.
339
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] external_source_config: The configuration of the external data source.
340
340
  When `external_source_type` is `RabbitMQ`, The following attributes are supported:
341
341
  `RegionId` - The region ID of RabbitMQ.
342
342
  `InstanceId` - The instance ID of RabbitMQ.
@@ -350,8 +350,8 @@ class EventSource(pulumi.CustomResource):
350
350
  `GroupID` - The group ID of consumer.
351
351
  When `external_source_type` is `MNS`, The following attributes are supported:
352
352
  `QueueName` - The queue name of MNS.
353
- :param pulumi.Input[_builtins.str] external_source_type: The type of external data source. Valid value : `RabbitMQ`, `RocketMQ` and `MNS`. **NOTE:** Only When `linked_external_source` is `true`, This field is valid.
354
- :param pulumi.Input[_builtins.bool] linked_external_source: Whether to connect to an external data source. Default value: `false`
353
+ :param pulumi.Input[_builtins.str] external_source_type: The type of the external data source. Valid values: `RabbitMQ`, `RocketMQ` and `MNS`.
354
+ :param pulumi.Input[_builtins.bool] linked_external_source: Specifies whether to connect to an external data source. Default value: `false`.
355
355
  """
356
356
  ...
357
357
  @overload
@@ -378,20 +378,20 @@ class EventSource(pulumi.CustomResource):
378
378
  config = pulumi.Config()
379
379
  name = config.get("name")
380
380
  if name is None:
381
- name = "tf-example"
381
+ name = "terraform-example"
382
382
  default = random.index.Integer("default",
383
383
  min=10000,
384
384
  max=99999)
385
- example = alicloud.eventbridge.EventBus("example", event_bus_name=name)
386
- example_queue = alicloud.mns.Queue("example", name=f"{name}-{default['result']}")
387
- example_event_source = alicloud.eventbridge.EventSource("example",
388
- event_bus_name=example.event_bus_name,
389
- event_source_name=name,
385
+ default_queue = alicloud.mns.Queue("default", name=f"{name}-{default['result']}")
386
+ default_event_bus = alicloud.eventbridge.EventBus("default", event_bus_name=f"{name}-{default['result']}")
387
+ default_event_source = alicloud.eventbridge.EventSource("default",
388
+ event_bus_name=default_event_bus.event_bus_name,
389
+ event_source_name=f"{name}-{default['result']}",
390
390
  description=name,
391
391
  linked_external_source=True,
392
392
  external_source_type="MNS",
393
393
  external_source_config={
394
- "QueueName": example_queue.name,
394
+ "QueueName": default_queue.name,
395
395
  })
396
396
  ```
397
397
 
@@ -466,10 +466,10 @@ class EventSource(pulumi.CustomResource):
466
466
  :param str resource_name: The unique name of the resulting resource.
467
467
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
468
468
  :param pulumi.ResourceOptions opts: Options for the resource.
469
- :param pulumi.Input[_builtins.str] description: The detail describe of event source.
470
- :param pulumi.Input[_builtins.str] event_bus_name: The name of event bus.
471
- :param pulumi.Input[_builtins.str] event_source_name: The code name of event source.
472
- :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] external_source_config: The config of external source.
469
+ :param pulumi.Input[_builtins.str] description: The description of the event source.
470
+ :param pulumi.Input[_builtins.str] event_bus_name: The name of the event bus to which the event source is attached.
471
+ :param pulumi.Input[_builtins.str] event_source_name: The name of the event source.
472
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] external_source_config: The configuration of the external data source.
473
473
  When `external_source_type` is `RabbitMQ`, The following attributes are supported:
474
474
  `RegionId` - The region ID of RabbitMQ.
475
475
  `InstanceId` - The instance ID of RabbitMQ.
@@ -483,8 +483,8 @@ class EventSource(pulumi.CustomResource):
483
483
  `GroupID` - The group ID of consumer.
484
484
  When `external_source_type` is `MNS`, The following attributes are supported:
485
485
  `QueueName` - The queue name of MNS.
486
- :param pulumi.Input[_builtins.str] external_source_type: The type of external data source. Valid value : `RabbitMQ`, `RocketMQ` and `MNS`. **NOTE:** Only When `linked_external_source` is `true`, This field is valid.
487
- :param pulumi.Input[_builtins.bool] linked_external_source: Whether to connect to an external data source. Default value: `false`
486
+ :param pulumi.Input[_builtins.str] external_source_type: The type of the external data source. Valid values: `RabbitMQ`, `RocketMQ` and `MNS`.
487
+ :param pulumi.Input[_builtins.bool] linked_external_source: Specifies whether to connect to an external data source. Default value: `false`.
488
488
  """
489
489
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
490
490
 
@@ -502,7 +502,7 @@ class EventSource(pulumi.CustomResource):
502
502
  @pulumi.getter
503
503
  def description(self) -> pulumi.Output[Optional[_builtins.str]]:
504
504
  """
505
- The detail describe of event source.
505
+ The description of the event source.
506
506
  """
507
507
  return pulumi.get(self, "description")
508
508
 
@@ -510,7 +510,7 @@ class EventSource(pulumi.CustomResource):
510
510
  @pulumi.getter(name="eventBusName")
511
511
  def event_bus_name(self) -> pulumi.Output[_builtins.str]:
512
512
  """
513
- The name of event bus.
513
+ The name of the event bus to which the event source is attached.
514
514
  """
515
515
  return pulumi.get(self, "event_bus_name")
516
516
 
@@ -518,7 +518,7 @@ class EventSource(pulumi.CustomResource):
518
518
  @pulumi.getter(name="eventSourceName")
519
519
  def event_source_name(self) -> pulumi.Output[_builtins.str]:
520
520
  """
521
- The code name of event source.
521
+ The name of the event source.
522
522
  """
523
523
  return pulumi.get(self, "event_source_name")
524
524
 
@@ -526,7 +526,7 @@ class EventSource(pulumi.CustomResource):
526
526
  @pulumi.getter(name="externalSourceConfig")
527
527
  def external_source_config(self) -> pulumi.Output[Optional[Mapping[str, _builtins.str]]]:
528
528
  """
529
- The config of external source.
529
+ The configuration of the external data source.
530
530
  When `external_source_type` is `RabbitMQ`, The following attributes are supported:
531
531
  `RegionId` - The region ID of RabbitMQ.
532
532
  `InstanceId` - The instance ID of RabbitMQ.
@@ -547,15 +547,15 @@ class EventSource(pulumi.CustomResource):
547
547
  @pulumi.getter(name="externalSourceType")
548
548
  def external_source_type(self) -> pulumi.Output[Optional[_builtins.str]]:
549
549
  """
550
- The type of external data source. Valid value : `RabbitMQ`, `RocketMQ` and `MNS`. **NOTE:** Only When `linked_external_source` is `true`, This field is valid.
550
+ The type of the external data source. Valid values: `RabbitMQ`, `RocketMQ` and `MNS`.
551
551
  """
552
552
  return pulumi.get(self, "external_source_type")
553
553
 
554
554
  @_builtins.property
555
555
  @pulumi.getter(name="linkedExternalSource")
556
- def linked_external_source(self) -> pulumi.Output[_builtins.bool]:
556
+ def linked_external_source(self) -> pulumi.Output[Optional[_builtins.bool]]:
557
557
  """
558
- Whether to connect to an external data source. Default value: `false`
558
+ Specifies whether to connect to an external data source. Default value: `false`.
559
559
  """
560
560
  return pulumi.get(self, "linked_external_source")
561
561
 
@@ -160,14 +160,14 @@ if not MYPY:
160
160
  The type of Endpoint N in the endpoint group. Valid values:
161
161
  - `Domain`: A custom domain name.
162
162
  - `Ip`: A custom IP address.
163
+ - `IpTarget`: (Available since v1.262.0) An Alibaba Cloud public IP address.
163
164
  - `PublicIp`: An Alibaba Cloud public IP address.
164
165
  - `ECS`: An Elastic Compute Service (ECS) instance.
165
166
  - `SLB`: A Classic Load Balancer (CLB) instance.
166
- - `ALB`: An Application Load Balancer (ALB) instance.
167
- - `NLB`: A Network Load Balancer (NLB) instance.
168
- - `ENI`: An Elastic Network Interface (ENI).
169
- - `OSS`: An Object Storage Service (OSS) bucket.
170
- > **NOTE:** From version 1.232.0, `type` can be set to `ALB`, `NLB`, `ENI`, `OSS`.
167
+ - `ALB`: (Available since v1.232.0) An Application Load Balancer (ALB) instance.
168
+ - `NLB`: (Available since v1.232.0) A Network Load Balancer (NLB) instance.
169
+ - `ENI`: (Available since v1.232.0) An Elastic Network Interface (ENI).
170
+ - `OSS`: (Available since v1.232.0) An Object Storage Service (OSS) bucket.
171
171
  """
172
172
  weight: pulumi.Input[_builtins.int]
173
173
  """
@@ -187,6 +187,14 @@ if not MYPY:
187
187
  The private IP address of the ENI.
188
188
  > **NOTE:** `sub_address` is valid only when `type` is set to `ENI`.
189
189
  """
190
+ vpc_id: NotRequired[pulumi.Input[_builtins.str]]
191
+ """
192
+ The ID of the VPC.
193
+ """
194
+ vswitch_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
195
+ """
196
+ The IDs of vSwitches that are deployed in the VPC.
197
+ """
190
198
  elif False:
191
199
  EndpointGroupEndpointConfigurationArgsDict: TypeAlias = Mapping[str, Any]
192
200
 
@@ -198,26 +206,30 @@ class EndpointGroupEndpointConfigurationArgs:
198
206
  weight: pulumi.Input[_builtins.int],
199
207
  enable_clientip_preservation: Optional[pulumi.Input[_builtins.bool]] = None,
200
208
  enable_proxy_protocol: Optional[pulumi.Input[_builtins.bool]] = None,
201
- sub_address: Optional[pulumi.Input[_builtins.str]] = None):
209
+ sub_address: Optional[pulumi.Input[_builtins.str]] = None,
210
+ vpc_id: Optional[pulumi.Input[_builtins.str]] = None,
211
+ vswitch_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
202
212
  """
203
213
  :param pulumi.Input[_builtins.str] endpoint: The IP address or domain name of Endpoint N in the endpoint group.
204
214
  :param pulumi.Input[_builtins.str] type: The type of Endpoint N in the endpoint group. Valid values:
205
215
  - `Domain`: A custom domain name.
206
216
  - `Ip`: A custom IP address.
217
+ - `IpTarget`: (Available since v1.262.0) An Alibaba Cloud public IP address.
207
218
  - `PublicIp`: An Alibaba Cloud public IP address.
208
219
  - `ECS`: An Elastic Compute Service (ECS) instance.
209
220
  - `SLB`: A Classic Load Balancer (CLB) instance.
210
- - `ALB`: An Application Load Balancer (ALB) instance.
211
- - `NLB`: A Network Load Balancer (NLB) instance.
212
- - `ENI`: An Elastic Network Interface (ENI).
213
- - `OSS`: An Object Storage Service (OSS) bucket.
214
- > **NOTE:** From version 1.232.0, `type` can be set to `ALB`, `NLB`, `ENI`, `OSS`.
221
+ - `ALB`: (Available since v1.232.0) An Application Load Balancer (ALB) instance.
222
+ - `NLB`: (Available since v1.232.0) A Network Load Balancer (NLB) instance.
223
+ - `ENI`: (Available since v1.232.0) An Elastic Network Interface (ENI).
224
+ - `OSS`: (Available since v1.232.0) An Object Storage Service (OSS) bucket.
215
225
  :param pulumi.Input[_builtins.int] weight: The weight of Endpoint N in the endpoint group. Valid values: `0` to `255`.
216
226
  > **NOTE:** If the weight of a terminal node is set to `0`, global acceleration will terminate the distribution of traffic to the terminal node. Please be careful.
217
227
  :param pulumi.Input[_builtins.bool] enable_clientip_preservation: Indicates whether client IP addresses are reserved. Default Value: `false`. Valid values:
218
228
  :param pulumi.Input[_builtins.bool] enable_proxy_protocol: Specifies whether to preserve client IP addresses by using the ProxyProtocol module. Default Value: `false`. Valid values:
219
229
  :param pulumi.Input[_builtins.str] sub_address: The private IP address of the ENI.
220
230
  > **NOTE:** `sub_address` is valid only when `type` is set to `ENI`.
231
+ :param pulumi.Input[_builtins.str] vpc_id: The ID of the VPC.
232
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] vswitch_ids: The IDs of vSwitches that are deployed in the VPC.
221
233
  """
222
234
  pulumi.set(__self__, "endpoint", endpoint)
223
235
  pulumi.set(__self__, "type", type)
@@ -228,6 +240,10 @@ class EndpointGroupEndpointConfigurationArgs:
228
240
  pulumi.set(__self__, "enable_proxy_protocol", enable_proxy_protocol)
229
241
  if sub_address is not None:
230
242
  pulumi.set(__self__, "sub_address", sub_address)
243
+ if vpc_id is not None:
244
+ pulumi.set(__self__, "vpc_id", vpc_id)
245
+ if vswitch_ids is not None:
246
+ pulumi.set(__self__, "vswitch_ids", vswitch_ids)
231
247
 
232
248
  @_builtins.property
233
249
  @pulumi.getter
@@ -248,14 +264,14 @@ class EndpointGroupEndpointConfigurationArgs:
248
264
  The type of Endpoint N in the endpoint group. Valid values:
249
265
  - `Domain`: A custom domain name.
250
266
  - `Ip`: A custom IP address.
267
+ - `IpTarget`: (Available since v1.262.0) An Alibaba Cloud public IP address.
251
268
  - `PublicIp`: An Alibaba Cloud public IP address.
252
269
  - `ECS`: An Elastic Compute Service (ECS) instance.
253
270
  - `SLB`: A Classic Load Balancer (CLB) instance.
254
- - `ALB`: An Application Load Balancer (ALB) instance.
255
- - `NLB`: A Network Load Balancer (NLB) instance.
256
- - `ENI`: An Elastic Network Interface (ENI).
257
- - `OSS`: An Object Storage Service (OSS) bucket.
258
- > **NOTE:** From version 1.232.0, `type` can be set to `ALB`, `NLB`, `ENI`, `OSS`.
271
+ - `ALB`: (Available since v1.232.0) An Application Load Balancer (ALB) instance.
272
+ - `NLB`: (Available since v1.232.0) A Network Load Balancer (NLB) instance.
273
+ - `ENI`: (Available since v1.232.0) An Elastic Network Interface (ENI).
274
+ - `OSS`: (Available since v1.232.0) An Object Storage Service (OSS) bucket.
259
275
  """
260
276
  return pulumi.get(self, "type")
261
277
 
@@ -313,6 +329,30 @@ class EndpointGroupEndpointConfigurationArgs:
313
329
  def sub_address(self, value: Optional[pulumi.Input[_builtins.str]]):
314
330
  pulumi.set(self, "sub_address", value)
315
331
 
332
+ @_builtins.property
333
+ @pulumi.getter(name="vpcId")
334
+ def vpc_id(self) -> Optional[pulumi.Input[_builtins.str]]:
335
+ """
336
+ The ID of the VPC.
337
+ """
338
+ return pulumi.get(self, "vpc_id")
339
+
340
+ @vpc_id.setter
341
+ def vpc_id(self, value: Optional[pulumi.Input[_builtins.str]]):
342
+ pulumi.set(self, "vpc_id", value)
343
+
344
+ @_builtins.property
345
+ @pulumi.getter(name="vswitchIds")
346
+ def vswitch_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
347
+ """
348
+ The IDs of vSwitches that are deployed in the VPC.
349
+ """
350
+ return pulumi.get(self, "vswitch_ids")
351
+
352
+ @vswitch_ids.setter
353
+ def vswitch_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
354
+ pulumi.set(self, "vswitch_ids", value)
355
+
316
356
 
317
357
  if not MYPY:
318
358
  class EndpointGroupPortOverridesArgsDict(TypedDict):
@@ -177,6 +177,10 @@ class EndpointGroupEndpointConfiguration(dict):
177
177
  suggest = "enable_proxy_protocol"
178
178
  elif key == "subAddress":
179
179
  suggest = "sub_address"
180
+ elif key == "vpcId":
181
+ suggest = "vpc_id"
182
+ elif key == "vswitchIds":
183
+ suggest = "vswitch_ids"
180
184
 
181
185
  if suggest:
182
186
  pulumi.log.warn(f"Key '{key}' not found in EndpointGroupEndpointConfiguration. Access the value via the '{suggest}' property getter instead.")
@@ -195,26 +199,30 @@ class EndpointGroupEndpointConfiguration(dict):
195
199
  weight: _builtins.int,
196
200
  enable_clientip_preservation: Optional[_builtins.bool] = None,
197
201
  enable_proxy_protocol: Optional[_builtins.bool] = None,
198
- sub_address: Optional[_builtins.str] = None):
202
+ sub_address: Optional[_builtins.str] = None,
203
+ vpc_id: Optional[_builtins.str] = None,
204
+ vswitch_ids: Optional[Sequence[_builtins.str]] = None):
199
205
  """
200
206
  :param _builtins.str endpoint: The IP address or domain name of Endpoint N in the endpoint group.
201
207
  :param _builtins.str type: The type of Endpoint N in the endpoint group. Valid values:
202
208
  - `Domain`: A custom domain name.
203
209
  - `Ip`: A custom IP address.
210
+ - `IpTarget`: (Available since v1.262.0) An Alibaba Cloud public IP address.
204
211
  - `PublicIp`: An Alibaba Cloud public IP address.
205
212
  - `ECS`: An Elastic Compute Service (ECS) instance.
206
213
  - `SLB`: A Classic Load Balancer (CLB) instance.
207
- - `ALB`: An Application Load Balancer (ALB) instance.
208
- - `NLB`: A Network Load Balancer (NLB) instance.
209
- - `ENI`: An Elastic Network Interface (ENI).
210
- - `OSS`: An Object Storage Service (OSS) bucket.
211
- > **NOTE:** From version 1.232.0, `type` can be set to `ALB`, `NLB`, `ENI`, `OSS`.
214
+ - `ALB`: (Available since v1.232.0) An Application Load Balancer (ALB) instance.
215
+ - `NLB`: (Available since v1.232.0) A Network Load Balancer (NLB) instance.
216
+ - `ENI`: (Available since v1.232.0) An Elastic Network Interface (ENI).
217
+ - `OSS`: (Available since v1.232.0) An Object Storage Service (OSS) bucket.
212
218
  :param _builtins.int weight: The weight of Endpoint N in the endpoint group. Valid values: `0` to `255`.
213
219
  > **NOTE:** If the weight of a terminal node is set to `0`, global acceleration will terminate the distribution of traffic to the terminal node. Please be careful.
214
220
  :param _builtins.bool enable_clientip_preservation: Indicates whether client IP addresses are reserved. Default Value: `false`. Valid values:
215
221
  :param _builtins.bool enable_proxy_protocol: Specifies whether to preserve client IP addresses by using the ProxyProtocol module. Default Value: `false`. Valid values:
216
222
  :param _builtins.str sub_address: The private IP address of the ENI.
217
223
  > **NOTE:** `sub_address` is valid only when `type` is set to `ENI`.
224
+ :param _builtins.str vpc_id: The ID of the VPC.
225
+ :param Sequence[_builtins.str] vswitch_ids: The IDs of vSwitches that are deployed in the VPC.
218
226
  """
219
227
  pulumi.set(__self__, "endpoint", endpoint)
220
228
  pulumi.set(__self__, "type", type)
@@ -225,6 +233,10 @@ class EndpointGroupEndpointConfiguration(dict):
225
233
  pulumi.set(__self__, "enable_proxy_protocol", enable_proxy_protocol)
226
234
  if sub_address is not None:
227
235
  pulumi.set(__self__, "sub_address", sub_address)
236
+ if vpc_id is not None:
237
+ pulumi.set(__self__, "vpc_id", vpc_id)
238
+ if vswitch_ids is not None:
239
+ pulumi.set(__self__, "vswitch_ids", vswitch_ids)
228
240
 
229
241
  @_builtins.property
230
242
  @pulumi.getter
@@ -241,14 +253,14 @@ class EndpointGroupEndpointConfiguration(dict):
241
253
  The type of Endpoint N in the endpoint group. Valid values:
242
254
  - `Domain`: A custom domain name.
243
255
  - `Ip`: A custom IP address.
256
+ - `IpTarget`: (Available since v1.262.0) An Alibaba Cloud public IP address.
244
257
  - `PublicIp`: An Alibaba Cloud public IP address.
245
258
  - `ECS`: An Elastic Compute Service (ECS) instance.
246
259
  - `SLB`: A Classic Load Balancer (CLB) instance.
247
- - `ALB`: An Application Load Balancer (ALB) instance.
248
- - `NLB`: A Network Load Balancer (NLB) instance.
249
- - `ENI`: An Elastic Network Interface (ENI).
250
- - `OSS`: An Object Storage Service (OSS) bucket.
251
- > **NOTE:** From version 1.232.0, `type` can be set to `ALB`, `NLB`, `ENI`, `OSS`.
260
+ - `ALB`: (Available since v1.232.0) An Application Load Balancer (ALB) instance.
261
+ - `NLB`: (Available since v1.232.0) A Network Load Balancer (NLB) instance.
262
+ - `ENI`: (Available since v1.232.0) An Elastic Network Interface (ENI).
263
+ - `OSS`: (Available since v1.232.0) An Object Storage Service (OSS) bucket.
252
264
  """
253
265
  return pulumi.get(self, "type")
254
266
 
@@ -286,6 +298,22 @@ class EndpointGroupEndpointConfiguration(dict):
286
298
  """
287
299
  return pulumi.get(self, "sub_address")
288
300
 
301
+ @_builtins.property
302
+ @pulumi.getter(name="vpcId")
303
+ def vpc_id(self) -> Optional[_builtins.str]:
304
+ """
305
+ The ID of the VPC.
306
+ """
307
+ return pulumi.get(self, "vpc_id")
308
+
309
+ @_builtins.property
310
+ @pulumi.getter(name="vswitchIds")
311
+ def vswitch_ids(self) -> Optional[Sequence[_builtins.str]]:
312
+ """
313
+ The IDs of vSwitches that are deployed in the VPC.
314
+ """
315
+ return pulumi.get(self, "vswitch_ids")
316
+
289
317
 
290
318
  @pulumi.output_type
291
319
  class EndpointGroupPortOverrides(dict):