pulumi-alicloud 3.63.0__py3-none-any.whl → 3.63.0a1726032285__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.
- pulumi_alicloud/__init__.py +0 -24
- pulumi_alicloud/alb/acl.py +19 -18
- pulumi_alicloud/alb/health_check_template.py +88 -96
- pulumi_alicloud/amqp/binding.py +36 -30
- pulumi_alicloud/cen/_inputs.py +14 -180
- pulumi_alicloud/cen/outputs.py +12 -173
- pulumi_alicloud/cen/traffic_marking_policy.py +53 -116
- pulumi_alicloud/cen/transit_router_vpc_attachment.py +119 -338
- pulumi_alicloud/cms/_inputs.py +6 -6
- pulumi_alicloud/cms/outputs.py +6 -6
- pulumi_alicloud/cr/chart_namespace.py +6 -14
- pulumi_alicloud/cr/endpoint_acl_policy.py +2 -10
- pulumi_alicloud/cr/namespace.py +2 -10
- pulumi_alicloud/cs/registry_enterprise_sync_rule.py +10 -10
- pulumi_alicloud/ddos/_inputs.py +9 -8
- pulumi_alicloud/ddos/bgp_ip.py +1 -1
- pulumi_alicloud/ddos/domain_resource.py +90 -446
- pulumi_alicloud/ddos/outputs.py +8 -7
- pulumi_alicloud/eci/container_group.py +0 -47
- pulumi_alicloud/ecs/_inputs.py +0 -28
- pulumi_alicloud/ecs/ecs_snapshot.py +77 -199
- pulumi_alicloud/ecs/outputs.py +0 -20
- pulumi_alicloud/ecs/snapshot.py +8 -26
- pulumi_alicloud/emrv2/_inputs.py +12 -12
- pulumi_alicloud/emrv2/outputs.py +12 -12
- pulumi_alicloud/ens/_inputs.py +2 -50
- pulumi_alicloud/ens/instance.py +184 -428
- pulumi_alicloud/ens/outputs.py +2 -57
- pulumi_alicloud/ess/__init__.py +0 -1
- pulumi_alicloud/ess/alarm.py +0 -47
- pulumi_alicloud/expressconnect/physical_connection.py +185 -321
- pulumi_alicloud/fc/trigger.py +24 -22
- pulumi_alicloud/ga/_inputs.py +5 -23
- pulumi_alicloud/ga/endpoint_group.py +14 -68
- pulumi_alicloud/ga/outputs.py +5 -21
- pulumi_alicloud/governance/account.py +0 -61
- pulumi_alicloud/gpdb/__init__.py +0 -4
- pulumi_alicloud/gpdb/_inputs.py +3 -361
- pulumi_alicloud/gpdb/instance.py +0 -47
- pulumi_alicloud/gpdb/outputs.py +4 -597
- pulumi_alicloud/mongodb/instance.py +0 -94
- pulumi_alicloud/nlb/_inputs.py +64 -120
- pulumi_alicloud/nlb/get_listeners.py +2 -32
- pulumi_alicloud/nlb/get_server_group_server_attachments.py +2 -8
- pulumi_alicloud/nlb/listener.py +245 -315
- pulumi_alicloud/nlb/listener_additional_certificate_attachment.py +25 -25
- pulumi_alicloud/nlb/load_balancer.py +212 -297
- pulumi_alicloud/nlb/load_balancer_security_group_attachment.py +39 -29
- pulumi_alicloud/nlb/loadbalancer_common_bandwidth_package_attachment.py +18 -22
- pulumi_alicloud/nlb/outputs.py +66 -122
- pulumi_alicloud/nlb/security_policy.py +25 -53
- pulumi_alicloud/nlb/server_group.py +133 -196
- pulumi_alicloud/ocean/base_instance.py +163 -498
- pulumi_alicloud/oos/get_secret_parameters.py +9 -111
- pulumi_alicloud/oos/outputs.py +11 -22
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/ram/get_account_alias.py +2 -35
- pulumi_alicloud/rds/instance.py +21 -21
- pulumi_alicloud/rocketmq/_inputs.py +22 -79
- pulumi_alicloud/rocketmq/outputs.py +21 -85
- pulumi_alicloud/rocketmq/rocket_mq_instance.py +113 -307
- pulumi_alicloud/servicemesh/extension_provider.py +2 -2
- pulumi_alicloud/vpc/common_bandwith_package_attachment.py +2 -2
- pulumi_alicloud/vpc/peer_connection.py +59 -127
- pulumi_alicloud/vpc/peer_connection_accepter.py +42 -263
- pulumi_alicloud/vpc/route_entry.py +210 -232
- {pulumi_alicloud-3.63.0.dist-info → pulumi_alicloud-3.63.0a1726032285.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.63.0.dist-info → pulumi_alicloud-3.63.0a1726032285.dist-info}/RECORD +70 -75
- {pulumi_alicloud-3.63.0.dist-info → pulumi_alicloud-3.63.0a1726032285.dist-info}/WHEEL +1 -1
- pulumi_alicloud/ess/server_group_attachment.py +0 -552
- pulumi_alicloud/gpdb/db_instance_ip_array.py +0 -533
- pulumi_alicloud/gpdb/get_data_backups.py +0 -288
- pulumi_alicloud/gpdb/get_log_backups.py +0 -225
- pulumi_alicloud/gpdb/streaming_job.py +0 -1568
- {pulumi_alicloud-3.63.0.dist-info → pulumi_alicloud-3.63.0a1726032285.dist-info}/top_level.txt +0 -0
pulumi_alicloud/fc/trigger.py
CHANGED
|
@@ -399,10 +399,10 @@ class Trigger(pulumi.CustomResource):
|
|
|
399
399
|
min=10000)
|
|
400
400
|
default_project = alicloud.log.Project("default", project_name=f"example-value-{default_integer['result']}")
|
|
401
401
|
default_store = alicloud.log.Store("default",
|
|
402
|
-
project_name=default_project.
|
|
402
|
+
project_name=default_project.name,
|
|
403
403
|
logstore_name="example-value")
|
|
404
404
|
source_store = alicloud.log.Store("source_store",
|
|
405
|
-
project_name=default_project.
|
|
405
|
+
project_name=default_project.name,
|
|
406
406
|
logstore_name="example-source-store")
|
|
407
407
|
default_role = alicloud.ram.Role("default",
|
|
408
408
|
name=f"fcservicerole-{default_integer['result']}",
|
|
@@ -432,8 +432,8 @@ class Trigger(pulumi.CustomResource):
|
|
|
432
432
|
description="example-value",
|
|
433
433
|
role=default_role.arn,
|
|
434
434
|
log_config={
|
|
435
|
-
"project": default_project.
|
|
436
|
-
"logstore": default_store.
|
|
435
|
+
"project": default_project.name,
|
|
436
|
+
"logstore": default_store.name,
|
|
437
437
|
"enable_instance_metrics": True,
|
|
438
438
|
"enable_request_metrics": True,
|
|
439
439
|
})
|
|
@@ -461,15 +461,15 @@ class Trigger(pulumi.CustomResource):
|
|
|
461
461
|
function=default_function.name,
|
|
462
462
|
name="terraform-example",
|
|
463
463
|
role=default_role.arn,
|
|
464
|
-
source_arn=default_project.
|
|
464
|
+
source_arn=default_project.name.apply(lambda name: f"acs:log:{default_get_regions.regions[0].id}:{default.id}:project/{name}"),
|
|
465
465
|
type="log",
|
|
466
466
|
config=pulumi.Output.all(
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
467
|
+
sourceStoreName=source_store.name,
|
|
468
|
+
defaultProjectName=default_project.name,
|
|
469
|
+
defaultStoreName=default_store.name
|
|
470
470
|
).apply(lambda resolved_outputs: f\"\"\" {{
|
|
471
471
|
"sourceConfig": {{
|
|
472
|
-
"logstore": "{resolved_outputs['
|
|
472
|
+
"logstore": "{resolved_outputs['sourceStoreName']}",
|
|
473
473
|
"startTime": null
|
|
474
474
|
}},
|
|
475
475
|
"jobConfig": {{
|
|
@@ -481,9 +481,10 @@ class Trigger(pulumi.CustomResource):
|
|
|
481
481
|
"c": "d"
|
|
482
482
|
}},
|
|
483
483
|
"logConfig": {{
|
|
484
|
-
"project": "{resolved_outputs['
|
|
485
|
-
"logstore": "{resolved_outputs['
|
|
484
|
+
"project": "{resolved_outputs['defaultProjectName']}",
|
|
485
|
+
"logstore": "{resolved_outputs['defaultStoreName']}"
|
|
486
486
|
}},
|
|
487
|
+
"targetConfig": null,
|
|
487
488
|
"enable": true
|
|
488
489
|
}}
|
|
489
490
|
|
|
@@ -898,10 +899,10 @@ class Trigger(pulumi.CustomResource):
|
|
|
898
899
|
min=10000)
|
|
899
900
|
default_project = alicloud.log.Project("default", project_name=f"example-value-{default_integer['result']}")
|
|
900
901
|
default_store = alicloud.log.Store("default",
|
|
901
|
-
project_name=default_project.
|
|
902
|
+
project_name=default_project.name,
|
|
902
903
|
logstore_name="example-value")
|
|
903
904
|
source_store = alicloud.log.Store("source_store",
|
|
904
|
-
project_name=default_project.
|
|
905
|
+
project_name=default_project.name,
|
|
905
906
|
logstore_name="example-source-store")
|
|
906
907
|
default_role = alicloud.ram.Role("default",
|
|
907
908
|
name=f"fcservicerole-{default_integer['result']}",
|
|
@@ -931,8 +932,8 @@ class Trigger(pulumi.CustomResource):
|
|
|
931
932
|
description="example-value",
|
|
932
933
|
role=default_role.arn,
|
|
933
934
|
log_config={
|
|
934
|
-
"project": default_project.
|
|
935
|
-
"logstore": default_store.
|
|
935
|
+
"project": default_project.name,
|
|
936
|
+
"logstore": default_store.name,
|
|
936
937
|
"enable_instance_metrics": True,
|
|
937
938
|
"enable_request_metrics": True,
|
|
938
939
|
})
|
|
@@ -960,15 +961,15 @@ class Trigger(pulumi.CustomResource):
|
|
|
960
961
|
function=default_function.name,
|
|
961
962
|
name="terraform-example",
|
|
962
963
|
role=default_role.arn,
|
|
963
|
-
source_arn=default_project.
|
|
964
|
+
source_arn=default_project.name.apply(lambda name: f"acs:log:{default_get_regions.regions[0].id}:{default.id}:project/{name}"),
|
|
964
965
|
type="log",
|
|
965
966
|
config=pulumi.Output.all(
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
967
|
+
sourceStoreName=source_store.name,
|
|
968
|
+
defaultProjectName=default_project.name,
|
|
969
|
+
defaultStoreName=default_store.name
|
|
969
970
|
).apply(lambda resolved_outputs: f\"\"\" {{
|
|
970
971
|
"sourceConfig": {{
|
|
971
|
-
"logstore": "{resolved_outputs['
|
|
972
|
+
"logstore": "{resolved_outputs['sourceStoreName']}",
|
|
972
973
|
"startTime": null
|
|
973
974
|
}},
|
|
974
975
|
"jobConfig": {{
|
|
@@ -980,9 +981,10 @@ class Trigger(pulumi.CustomResource):
|
|
|
980
981
|
"c": "d"
|
|
981
982
|
}},
|
|
982
983
|
"logConfig": {{
|
|
983
|
-
"project": "{resolved_outputs['
|
|
984
|
-
"logstore": "{resolved_outputs['
|
|
984
|
+
"project": "{resolved_outputs['defaultProjectName']}",
|
|
985
|
+
"logstore": "{resolved_outputs['defaultStoreName']}"
|
|
985
986
|
}},
|
|
987
|
+
"targetConfig": null,
|
|
986
988
|
"enable": true
|
|
987
989
|
}}
|
|
988
990
|
|
pulumi_alicloud/ga/_inputs.py
CHANGED
|
@@ -249,7 +249,7 @@ class ForwardingRuleRuleActionArgs:
|
|
|
249
249
|
rule_action_value: Optional[pulumi.Input[str]] = None):
|
|
250
250
|
"""
|
|
251
251
|
:param pulumi.Input[int] order: Forwarding priority.
|
|
252
|
-
:param pulumi.Input[str] rule_action_type:
|
|
252
|
+
:param pulumi.Input[str] rule_action_type: Forward action type.
|
|
253
253
|
:param pulumi.Input['ForwardingRuleRuleActionForwardGroupConfigArgs'] forward_group_config: Forwarding configuration. See `forward_group_config` below.
|
|
254
254
|
> **NOTE:** From version 1.207.0, We recommend that you do not use `forward_group_config`, and we recommend that you use the `rule_action_type` and `rule_action_value` to configure forwarding actions.
|
|
255
255
|
:param pulumi.Input[str] rule_action_value: The value of the forwarding action type. For more information, see [How to use it](https://www.alibabacloud.com/help/en/global-accelerator/latest/api-ga-2019-11-20-createforwardingrules).
|
|
@@ -277,7 +277,7 @@ class ForwardingRuleRuleActionArgs:
|
|
|
277
277
|
@pulumi.getter(name="ruleActionType")
|
|
278
278
|
def rule_action_type(self) -> pulumi.Input[str]:
|
|
279
279
|
"""
|
|
280
|
-
|
|
280
|
+
Forward action type.
|
|
281
281
|
"""
|
|
282
282
|
return pulumi.get(self, "rule_action_type")
|
|
283
283
|
|
|
@@ -360,28 +360,23 @@ class ForwardingRuleRuleConditionArgs:
|
|
|
360
360
|
def __init__(__self__, *,
|
|
361
361
|
rule_condition_type: pulumi.Input[str],
|
|
362
362
|
host_configs: Optional[pulumi.Input[Sequence[pulumi.Input['ForwardingRuleRuleConditionHostConfigArgs']]]] = None,
|
|
363
|
-
path_config: Optional[pulumi.Input['ForwardingRuleRuleConditionPathConfigArgs']] = None
|
|
364
|
-
rule_condition_value: Optional[pulumi.Input[str]] = None):
|
|
363
|
+
path_config: Optional[pulumi.Input['ForwardingRuleRuleConditionPathConfigArgs']] = None):
|
|
365
364
|
"""
|
|
366
|
-
:param pulumi.Input[str] rule_condition_type: The type of the forwarding conditions. Valid values: `Host`, `Path
|
|
365
|
+
:param pulumi.Input[str] rule_condition_type: The type of the forwarding conditions. Valid values: `Host`, `Path`.
|
|
367
366
|
:param pulumi.Input[Sequence[pulumi.Input['ForwardingRuleRuleConditionHostConfigArgs']]] host_configs: The configuration of the domain name. See `host_config` below.
|
|
368
|
-
> **NOTE:** From version 1.231.0, We recommend that you do not use `path_config` or `host_config`, and we recommend that you use the `rule_condition_type` and `rule_condition_value` to configure forwarding conditions.
|
|
369
367
|
:param pulumi.Input['ForwardingRuleRuleConditionPathConfigArgs'] path_config: The configuration of the path. See `path_config` below.
|
|
370
|
-
:param pulumi.Input[str] rule_condition_value: The value of the forwarding condition type. For more information, see [How to use it](https://www.alibabacloud.com/help/en/global-accelerator/latest/api-ga-2019-11-20-createforwardingrules).
|
|
371
368
|
"""
|
|
372
369
|
pulumi.set(__self__, "rule_condition_type", rule_condition_type)
|
|
373
370
|
if host_configs is not None:
|
|
374
371
|
pulumi.set(__self__, "host_configs", host_configs)
|
|
375
372
|
if path_config is not None:
|
|
376
373
|
pulumi.set(__self__, "path_config", path_config)
|
|
377
|
-
if rule_condition_value is not None:
|
|
378
|
-
pulumi.set(__self__, "rule_condition_value", rule_condition_value)
|
|
379
374
|
|
|
380
375
|
@property
|
|
381
376
|
@pulumi.getter(name="ruleConditionType")
|
|
382
377
|
def rule_condition_type(self) -> pulumi.Input[str]:
|
|
383
378
|
"""
|
|
384
|
-
The type of the forwarding conditions. Valid values: `Host`, `Path
|
|
379
|
+
The type of the forwarding conditions. Valid values: `Host`, `Path`.
|
|
385
380
|
"""
|
|
386
381
|
return pulumi.get(self, "rule_condition_type")
|
|
387
382
|
|
|
@@ -394,7 +389,6 @@ class ForwardingRuleRuleConditionArgs:
|
|
|
394
389
|
def host_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ForwardingRuleRuleConditionHostConfigArgs']]]]:
|
|
395
390
|
"""
|
|
396
391
|
The configuration of the domain name. See `host_config` below.
|
|
397
|
-
> **NOTE:** From version 1.231.0, We recommend that you do not use `path_config` or `host_config`, and we recommend that you use the `rule_condition_type` and `rule_condition_value` to configure forwarding conditions.
|
|
398
392
|
"""
|
|
399
393
|
return pulumi.get(self, "host_configs")
|
|
400
394
|
|
|
@@ -414,18 +408,6 @@ class ForwardingRuleRuleConditionArgs:
|
|
|
414
408
|
def path_config(self, value: Optional[pulumi.Input['ForwardingRuleRuleConditionPathConfigArgs']]):
|
|
415
409
|
pulumi.set(self, "path_config", value)
|
|
416
410
|
|
|
417
|
-
@property
|
|
418
|
-
@pulumi.getter(name="ruleConditionValue")
|
|
419
|
-
def rule_condition_value(self) -> Optional[pulumi.Input[str]]:
|
|
420
|
-
"""
|
|
421
|
-
The value of the forwarding condition type. For more information, see [How to use it](https://www.alibabacloud.com/help/en/global-accelerator/latest/api-ga-2019-11-20-createforwardingrules).
|
|
422
|
-
"""
|
|
423
|
-
return pulumi.get(self, "rule_condition_value")
|
|
424
|
-
|
|
425
|
-
@rule_condition_value.setter
|
|
426
|
-
def rule_condition_value(self, value: Optional[pulumi.Input[str]]):
|
|
427
|
-
pulumi.set(self, "rule_condition_value", value)
|
|
428
|
-
|
|
429
411
|
|
|
430
412
|
@pulumi.input_type
|
|
431
413
|
class ForwardingRuleRuleConditionHostConfigArgs:
|
|
@@ -22,7 +22,6 @@ class EndpointGroupArgs:
|
|
|
22
22
|
listener_id: pulumi.Input[str],
|
|
23
23
|
description: Optional[pulumi.Input[str]] = None,
|
|
24
24
|
endpoint_group_type: Optional[pulumi.Input[str]] = None,
|
|
25
|
-
endpoint_protocol_version: Optional[pulumi.Input[str]] = None,
|
|
26
25
|
endpoint_request_protocol: Optional[pulumi.Input[str]] = None,
|
|
27
26
|
health_check_enabled: Optional[pulumi.Input[bool]] = None,
|
|
28
27
|
health_check_interval_seconds: Optional[pulumi.Input[int]] = None,
|
|
@@ -43,10 +42,8 @@ class EndpointGroupArgs:
|
|
|
43
42
|
:param pulumi.Input[str] description: The description of the endpoint group.
|
|
44
43
|
:param pulumi.Input[str] endpoint_group_type: The endpoint group type. Default value: `default`. Valid values: `default`, `virtual`.
|
|
45
44
|
> **NOTE:** Currently, only `HTTP` or `HTTPS` protocol listener can directly create a `virtual` Endpoint Group. If it is `TCP` protocol listener, and you want to create a `virtual` Endpoint Group, please ensure that the `default` Endpoint Group has been created.
|
|
46
|
-
:param pulumi.Input[str]
|
|
47
|
-
> **NOTE:**
|
|
48
|
-
:param pulumi.Input[str] endpoint_request_protocol: The protocol that is used by the backend server. Valid values: `HTTP`, `HTTPS`.
|
|
49
|
-
> **NOTE:** `endpoint_request_protocol` can be specified only if the listener that is associated with the endpoint group uses `HTTP` or `HTTPS`. For the listener of `HTTP` protocol, `endpoint_request_protocol` can only be set to `HTTP`.
|
|
45
|
+
:param pulumi.Input[str] endpoint_request_protocol: The endpoint request protocol. Valid values: `HTTP`, `HTTPS`.
|
|
46
|
+
> **NOTE:** This item is only supported when creating terminal node group for listening instance of HTTP or HTTPS protocol. For the listening instance of HTTP protocol, the back-end service protocol supports and only supports HTTP.
|
|
50
47
|
:param pulumi.Input[bool] health_check_enabled: Specifies whether to enable the health check feature. Valid values:
|
|
51
48
|
:param pulumi.Input[int] health_check_interval_seconds: The interval between two consecutive health checks. Unit: seconds.
|
|
52
49
|
:param pulumi.Input[str] health_check_path: The path specified as the destination of the targets for health checks.
|
|
@@ -71,8 +68,6 @@ class EndpointGroupArgs:
|
|
|
71
68
|
pulumi.set(__self__, "description", description)
|
|
72
69
|
if endpoint_group_type is not None:
|
|
73
70
|
pulumi.set(__self__, "endpoint_group_type", endpoint_group_type)
|
|
74
|
-
if endpoint_protocol_version is not None:
|
|
75
|
-
pulumi.set(__self__, "endpoint_protocol_version", endpoint_protocol_version)
|
|
76
71
|
if endpoint_request_protocol is not None:
|
|
77
72
|
pulumi.set(__self__, "endpoint_request_protocol", endpoint_request_protocol)
|
|
78
73
|
if health_check_enabled is not None:
|
|
@@ -169,25 +164,12 @@ class EndpointGroupArgs:
|
|
|
169
164
|
def endpoint_group_type(self, value: Optional[pulumi.Input[str]]):
|
|
170
165
|
pulumi.set(self, "endpoint_group_type", value)
|
|
171
166
|
|
|
172
|
-
@property
|
|
173
|
-
@pulumi.getter(name="endpointProtocolVersion")
|
|
174
|
-
def endpoint_protocol_version(self) -> Optional[pulumi.Input[str]]:
|
|
175
|
-
"""
|
|
176
|
-
The backend service protocol of the endpoint that is associated with the intelligent routing listener. Valid values: `HTTP1.1`, `HTTP2`.
|
|
177
|
-
> **NOTE:** `endpoint_protocol_version` is valid only when `endpoint_request_protocol` is set to `HTTPS`.
|
|
178
|
-
"""
|
|
179
|
-
return pulumi.get(self, "endpoint_protocol_version")
|
|
180
|
-
|
|
181
|
-
@endpoint_protocol_version.setter
|
|
182
|
-
def endpoint_protocol_version(self, value: Optional[pulumi.Input[str]]):
|
|
183
|
-
pulumi.set(self, "endpoint_protocol_version", value)
|
|
184
|
-
|
|
185
167
|
@property
|
|
186
168
|
@pulumi.getter(name="endpointRequestProtocol")
|
|
187
169
|
def endpoint_request_protocol(self) -> Optional[pulumi.Input[str]]:
|
|
188
170
|
"""
|
|
189
|
-
The
|
|
190
|
-
> **NOTE:**
|
|
171
|
+
The endpoint request protocol. Valid values: `HTTP`, `HTTPS`.
|
|
172
|
+
> **NOTE:** This item is only supported when creating terminal node group for listening instance of HTTP or HTTPS protocol. For the listening instance of HTTP protocol, the back-end service protocol supports and only supports HTTP.
|
|
191
173
|
"""
|
|
192
174
|
return pulumi.get(self, "endpoint_request_protocol")
|
|
193
175
|
|
|
@@ -330,7 +312,6 @@ class _EndpointGroupState:
|
|
|
330
312
|
endpoint_group_ip_lists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
331
313
|
endpoint_group_region: Optional[pulumi.Input[str]] = None,
|
|
332
314
|
endpoint_group_type: Optional[pulumi.Input[str]] = None,
|
|
333
|
-
endpoint_protocol_version: Optional[pulumi.Input[str]] = None,
|
|
334
315
|
endpoint_request_protocol: Optional[pulumi.Input[str]] = None,
|
|
335
316
|
health_check_enabled: Optional[pulumi.Input[bool]] = None,
|
|
336
317
|
health_check_interval_seconds: Optional[pulumi.Input[int]] = None,
|
|
@@ -353,10 +334,8 @@ class _EndpointGroupState:
|
|
|
353
334
|
:param pulumi.Input[str] endpoint_group_region: The ID of the region where the endpoint group is deployed.
|
|
354
335
|
:param pulumi.Input[str] endpoint_group_type: The endpoint group type. Default value: `default`. Valid values: `default`, `virtual`.
|
|
355
336
|
> **NOTE:** Currently, only `HTTP` or `HTTPS` protocol listener can directly create a `virtual` Endpoint Group. If it is `TCP` protocol listener, and you want to create a `virtual` Endpoint Group, please ensure that the `default` Endpoint Group has been created.
|
|
356
|
-
:param pulumi.Input[str]
|
|
357
|
-
> **NOTE:**
|
|
358
|
-
:param pulumi.Input[str] endpoint_request_protocol: The protocol that is used by the backend server. Valid values: `HTTP`, `HTTPS`.
|
|
359
|
-
> **NOTE:** `endpoint_request_protocol` can be specified only if the listener that is associated with the endpoint group uses `HTTP` or `HTTPS`. For the listener of `HTTP` protocol, `endpoint_request_protocol` can only be set to `HTTP`.
|
|
337
|
+
:param pulumi.Input[str] endpoint_request_protocol: The endpoint request protocol. Valid values: `HTTP`, `HTTPS`.
|
|
338
|
+
> **NOTE:** This item is only supported when creating terminal node group for listening instance of HTTP or HTTPS protocol. For the listening instance of HTTP protocol, the back-end service protocol supports and only supports HTTP.
|
|
360
339
|
:param pulumi.Input[bool] health_check_enabled: Specifies whether to enable the health check feature. Valid values:
|
|
361
340
|
:param pulumi.Input[int] health_check_interval_seconds: The interval between two consecutive health checks. Unit: seconds.
|
|
362
341
|
:param pulumi.Input[str] health_check_path: The path specified as the destination of the targets for health checks.
|
|
@@ -387,8 +366,6 @@ class _EndpointGroupState:
|
|
|
387
366
|
pulumi.set(__self__, "endpoint_group_region", endpoint_group_region)
|
|
388
367
|
if endpoint_group_type is not None:
|
|
389
368
|
pulumi.set(__self__, "endpoint_group_type", endpoint_group_type)
|
|
390
|
-
if endpoint_protocol_version is not None:
|
|
391
|
-
pulumi.set(__self__, "endpoint_protocol_version", endpoint_protocol_version)
|
|
392
369
|
if endpoint_request_protocol is not None:
|
|
393
370
|
pulumi.set(__self__, "endpoint_request_protocol", endpoint_request_protocol)
|
|
394
371
|
if health_check_enabled is not None:
|
|
@@ -489,25 +466,12 @@ class _EndpointGroupState:
|
|
|
489
466
|
def endpoint_group_type(self, value: Optional[pulumi.Input[str]]):
|
|
490
467
|
pulumi.set(self, "endpoint_group_type", value)
|
|
491
468
|
|
|
492
|
-
@property
|
|
493
|
-
@pulumi.getter(name="endpointProtocolVersion")
|
|
494
|
-
def endpoint_protocol_version(self) -> Optional[pulumi.Input[str]]:
|
|
495
|
-
"""
|
|
496
|
-
The backend service protocol of the endpoint that is associated with the intelligent routing listener. Valid values: `HTTP1.1`, `HTTP2`.
|
|
497
|
-
> **NOTE:** `endpoint_protocol_version` is valid only when `endpoint_request_protocol` is set to `HTTPS`.
|
|
498
|
-
"""
|
|
499
|
-
return pulumi.get(self, "endpoint_protocol_version")
|
|
500
|
-
|
|
501
|
-
@endpoint_protocol_version.setter
|
|
502
|
-
def endpoint_protocol_version(self, value: Optional[pulumi.Input[str]]):
|
|
503
|
-
pulumi.set(self, "endpoint_protocol_version", value)
|
|
504
|
-
|
|
505
469
|
@property
|
|
506
470
|
@pulumi.getter(name="endpointRequestProtocol")
|
|
507
471
|
def endpoint_request_protocol(self) -> Optional[pulumi.Input[str]]:
|
|
508
472
|
"""
|
|
509
|
-
The
|
|
510
|
-
> **NOTE:**
|
|
473
|
+
The endpoint request protocol. Valid values: `HTTP`, `HTTPS`.
|
|
474
|
+
> **NOTE:** This item is only supported when creating terminal node group for listening instance of HTTP or HTTPS protocol. For the listening instance of HTTP protocol, the back-end service protocol supports and only supports HTTP.
|
|
511
475
|
"""
|
|
512
476
|
return pulumi.get(self, "endpoint_request_protocol")
|
|
513
477
|
|
|
@@ -675,7 +639,6 @@ class EndpointGroup(pulumi.CustomResource):
|
|
|
675
639
|
endpoint_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['EndpointGroupEndpointConfigurationArgs', 'EndpointGroupEndpointConfigurationArgsDict']]]]] = None,
|
|
676
640
|
endpoint_group_region: Optional[pulumi.Input[str]] = None,
|
|
677
641
|
endpoint_group_type: Optional[pulumi.Input[str]] = None,
|
|
678
|
-
endpoint_protocol_version: Optional[pulumi.Input[str]] = None,
|
|
679
642
|
endpoint_request_protocol: Optional[pulumi.Input[str]] = None,
|
|
680
643
|
health_check_enabled: Optional[pulumi.Input[bool]] = None,
|
|
681
644
|
health_check_interval_seconds: Optional[pulumi.Input[int]] = None,
|
|
@@ -765,10 +728,8 @@ class EndpointGroup(pulumi.CustomResource):
|
|
|
765
728
|
:param pulumi.Input[str] endpoint_group_region: The ID of the region where the endpoint group is deployed.
|
|
766
729
|
:param pulumi.Input[str] endpoint_group_type: The endpoint group type. Default value: `default`. Valid values: `default`, `virtual`.
|
|
767
730
|
> **NOTE:** Currently, only `HTTP` or `HTTPS` protocol listener can directly create a `virtual` Endpoint Group. If it is `TCP` protocol listener, and you want to create a `virtual` Endpoint Group, please ensure that the `default` Endpoint Group has been created.
|
|
768
|
-
:param pulumi.Input[str]
|
|
769
|
-
> **NOTE:**
|
|
770
|
-
:param pulumi.Input[str] endpoint_request_protocol: The protocol that is used by the backend server. Valid values: `HTTP`, `HTTPS`.
|
|
771
|
-
> **NOTE:** `endpoint_request_protocol` can be specified only if the listener that is associated with the endpoint group uses `HTTP` or `HTTPS`. For the listener of `HTTP` protocol, `endpoint_request_protocol` can only be set to `HTTP`.
|
|
731
|
+
:param pulumi.Input[str] endpoint_request_protocol: The endpoint request protocol. Valid values: `HTTP`, `HTTPS`.
|
|
732
|
+
> **NOTE:** This item is only supported when creating terminal node group for listening instance of HTTP or HTTPS protocol. For the listening instance of HTTP protocol, the back-end service protocol supports and only supports HTTP.
|
|
772
733
|
:param pulumi.Input[bool] health_check_enabled: Specifies whether to enable the health check feature. Valid values:
|
|
773
734
|
:param pulumi.Input[int] health_check_interval_seconds: The interval between two consecutive health checks. Unit: seconds.
|
|
774
735
|
:param pulumi.Input[str] health_check_path: The path specified as the destination of the targets for health checks.
|
|
@@ -880,7 +841,6 @@ class EndpointGroup(pulumi.CustomResource):
|
|
|
880
841
|
endpoint_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['EndpointGroupEndpointConfigurationArgs', 'EndpointGroupEndpointConfigurationArgsDict']]]]] = None,
|
|
881
842
|
endpoint_group_region: Optional[pulumi.Input[str]] = None,
|
|
882
843
|
endpoint_group_type: Optional[pulumi.Input[str]] = None,
|
|
883
|
-
endpoint_protocol_version: Optional[pulumi.Input[str]] = None,
|
|
884
844
|
endpoint_request_protocol: Optional[pulumi.Input[str]] = None,
|
|
885
845
|
health_check_enabled: Optional[pulumi.Input[bool]] = None,
|
|
886
846
|
health_check_interval_seconds: Optional[pulumi.Input[int]] = None,
|
|
@@ -913,7 +873,6 @@ class EndpointGroup(pulumi.CustomResource):
|
|
|
913
873
|
raise TypeError("Missing required property 'endpoint_group_region'")
|
|
914
874
|
__props__.__dict__["endpoint_group_region"] = endpoint_group_region
|
|
915
875
|
__props__.__dict__["endpoint_group_type"] = endpoint_group_type
|
|
916
|
-
__props__.__dict__["endpoint_protocol_version"] = endpoint_protocol_version
|
|
917
876
|
__props__.__dict__["endpoint_request_protocol"] = endpoint_request_protocol
|
|
918
877
|
__props__.__dict__["health_check_enabled"] = health_check_enabled
|
|
919
878
|
__props__.__dict__["health_check_interval_seconds"] = health_check_interval_seconds
|
|
@@ -946,7 +905,6 @@ class EndpointGroup(pulumi.CustomResource):
|
|
|
946
905
|
endpoint_group_ip_lists: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
947
906
|
endpoint_group_region: Optional[pulumi.Input[str]] = None,
|
|
948
907
|
endpoint_group_type: Optional[pulumi.Input[str]] = None,
|
|
949
|
-
endpoint_protocol_version: Optional[pulumi.Input[str]] = None,
|
|
950
908
|
endpoint_request_protocol: Optional[pulumi.Input[str]] = None,
|
|
951
909
|
health_check_enabled: Optional[pulumi.Input[bool]] = None,
|
|
952
910
|
health_check_interval_seconds: Optional[pulumi.Input[int]] = None,
|
|
@@ -974,10 +932,8 @@ class EndpointGroup(pulumi.CustomResource):
|
|
|
974
932
|
:param pulumi.Input[str] endpoint_group_region: The ID of the region where the endpoint group is deployed.
|
|
975
933
|
:param pulumi.Input[str] endpoint_group_type: The endpoint group type. Default value: `default`. Valid values: `default`, `virtual`.
|
|
976
934
|
> **NOTE:** Currently, only `HTTP` or `HTTPS` protocol listener can directly create a `virtual` Endpoint Group. If it is `TCP` protocol listener, and you want to create a `virtual` Endpoint Group, please ensure that the `default` Endpoint Group has been created.
|
|
977
|
-
:param pulumi.Input[str]
|
|
978
|
-
> **NOTE:**
|
|
979
|
-
:param pulumi.Input[str] endpoint_request_protocol: The protocol that is used by the backend server. Valid values: `HTTP`, `HTTPS`.
|
|
980
|
-
> **NOTE:** `endpoint_request_protocol` can be specified only if the listener that is associated with the endpoint group uses `HTTP` or `HTTPS`. For the listener of `HTTP` protocol, `endpoint_request_protocol` can only be set to `HTTP`.
|
|
935
|
+
:param pulumi.Input[str] endpoint_request_protocol: The endpoint request protocol. Valid values: `HTTP`, `HTTPS`.
|
|
936
|
+
> **NOTE:** This item is only supported when creating terminal node group for listening instance of HTTP or HTTPS protocol. For the listening instance of HTTP protocol, the back-end service protocol supports and only supports HTTP.
|
|
981
937
|
:param pulumi.Input[bool] health_check_enabled: Specifies whether to enable the health check feature. Valid values:
|
|
982
938
|
:param pulumi.Input[int] health_check_interval_seconds: The interval between two consecutive health checks. Unit: seconds.
|
|
983
939
|
:param pulumi.Input[str] health_check_path: The path specified as the destination of the targets for health checks.
|
|
@@ -1006,7 +962,6 @@ class EndpointGroup(pulumi.CustomResource):
|
|
|
1006
962
|
__props__.__dict__["endpoint_group_ip_lists"] = endpoint_group_ip_lists
|
|
1007
963
|
__props__.__dict__["endpoint_group_region"] = endpoint_group_region
|
|
1008
964
|
__props__.__dict__["endpoint_group_type"] = endpoint_group_type
|
|
1009
|
-
__props__.__dict__["endpoint_protocol_version"] = endpoint_protocol_version
|
|
1010
965
|
__props__.__dict__["endpoint_request_protocol"] = endpoint_request_protocol
|
|
1011
966
|
__props__.__dict__["health_check_enabled"] = health_check_enabled
|
|
1012
967
|
__props__.__dict__["health_check_interval_seconds"] = health_check_interval_seconds
|
|
@@ -1071,21 +1026,12 @@ class EndpointGroup(pulumi.CustomResource):
|
|
|
1071
1026
|
"""
|
|
1072
1027
|
return pulumi.get(self, "endpoint_group_type")
|
|
1073
1028
|
|
|
1074
|
-
@property
|
|
1075
|
-
@pulumi.getter(name="endpointProtocolVersion")
|
|
1076
|
-
def endpoint_protocol_version(self) -> pulumi.Output[str]:
|
|
1077
|
-
"""
|
|
1078
|
-
The backend service protocol of the endpoint that is associated with the intelligent routing listener. Valid values: `HTTP1.1`, `HTTP2`.
|
|
1079
|
-
> **NOTE:** `endpoint_protocol_version` is valid only when `endpoint_request_protocol` is set to `HTTPS`.
|
|
1080
|
-
"""
|
|
1081
|
-
return pulumi.get(self, "endpoint_protocol_version")
|
|
1082
|
-
|
|
1083
1029
|
@property
|
|
1084
1030
|
@pulumi.getter(name="endpointRequestProtocol")
|
|
1085
1031
|
def endpoint_request_protocol(self) -> pulumi.Output[str]:
|
|
1086
1032
|
"""
|
|
1087
|
-
The
|
|
1088
|
-
> **NOTE:**
|
|
1033
|
+
The endpoint request protocol. Valid values: `HTTP`, `HTTPS`.
|
|
1034
|
+
> **NOTE:** This item is only supported when creating terminal node group for listening instance of HTTP or HTTPS protocol. For the listening instance of HTTP protocol, the back-end service protocol supports and only supports HTTP.
|
|
1089
1035
|
"""
|
|
1090
1036
|
return pulumi.get(self, "endpoint_request_protocol")
|
|
1091
1037
|
|
pulumi_alicloud/ga/outputs.py
CHANGED
|
@@ -338,7 +338,7 @@ class ForwardingRuleRuleAction(dict):
|
|
|
338
338
|
rule_action_value: Optional[str] = None):
|
|
339
339
|
"""
|
|
340
340
|
:param int order: Forwarding priority.
|
|
341
|
-
:param str rule_action_type:
|
|
341
|
+
:param str rule_action_type: Forward action type.
|
|
342
342
|
:param 'ForwardingRuleRuleActionForwardGroupConfigArgs' forward_group_config: Forwarding configuration. See `forward_group_config` below.
|
|
343
343
|
> **NOTE:** From version 1.207.0, We recommend that you do not use `forward_group_config`, and we recommend that you use the `rule_action_type` and `rule_action_value` to configure forwarding actions.
|
|
344
344
|
:param str rule_action_value: The value of the forwarding action type. For more information, see [How to use it](https://www.alibabacloud.com/help/en/global-accelerator/latest/api-ga-2019-11-20-createforwardingrules).
|
|
@@ -362,7 +362,7 @@ class ForwardingRuleRuleAction(dict):
|
|
|
362
362
|
@pulumi.getter(name="ruleActionType")
|
|
363
363
|
def rule_action_type(self) -> str:
|
|
364
364
|
"""
|
|
365
|
-
|
|
365
|
+
Forward action type.
|
|
366
366
|
"""
|
|
367
367
|
return pulumi.get(self, "rule_action_type")
|
|
368
368
|
|
|
@@ -465,8 +465,6 @@ class ForwardingRuleRuleCondition(dict):
|
|
|
465
465
|
suggest = "host_configs"
|
|
466
466
|
elif key == "pathConfig":
|
|
467
467
|
suggest = "path_config"
|
|
468
|
-
elif key == "ruleConditionValue":
|
|
469
|
-
suggest = "rule_condition_value"
|
|
470
468
|
|
|
471
469
|
if suggest:
|
|
472
470
|
pulumi.log.warn(f"Key '{key}' not found in ForwardingRuleRuleCondition. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -482,28 +480,23 @@ class ForwardingRuleRuleCondition(dict):
|
|
|
482
480
|
def __init__(__self__, *,
|
|
483
481
|
rule_condition_type: str,
|
|
484
482
|
host_configs: Optional[Sequence['outputs.ForwardingRuleRuleConditionHostConfig']] = None,
|
|
485
|
-
path_config: Optional['outputs.ForwardingRuleRuleConditionPathConfig'] = None
|
|
486
|
-
rule_condition_value: Optional[str] = None):
|
|
483
|
+
path_config: Optional['outputs.ForwardingRuleRuleConditionPathConfig'] = None):
|
|
487
484
|
"""
|
|
488
|
-
:param str rule_condition_type: The type of the forwarding conditions. Valid values: `Host`, `Path
|
|
485
|
+
:param str rule_condition_type: The type of the forwarding conditions. Valid values: `Host`, `Path`.
|
|
489
486
|
:param Sequence['ForwardingRuleRuleConditionHostConfigArgs'] host_configs: The configuration of the domain name. See `host_config` below.
|
|
490
|
-
> **NOTE:** From version 1.231.0, We recommend that you do not use `path_config` or `host_config`, and we recommend that you use the `rule_condition_type` and `rule_condition_value` to configure forwarding conditions.
|
|
491
487
|
:param 'ForwardingRuleRuleConditionPathConfigArgs' path_config: The configuration of the path. See `path_config` below.
|
|
492
|
-
:param str rule_condition_value: The value of the forwarding condition type. For more information, see [How to use it](https://www.alibabacloud.com/help/en/global-accelerator/latest/api-ga-2019-11-20-createforwardingrules).
|
|
493
488
|
"""
|
|
494
489
|
pulumi.set(__self__, "rule_condition_type", rule_condition_type)
|
|
495
490
|
if host_configs is not None:
|
|
496
491
|
pulumi.set(__self__, "host_configs", host_configs)
|
|
497
492
|
if path_config is not None:
|
|
498
493
|
pulumi.set(__self__, "path_config", path_config)
|
|
499
|
-
if rule_condition_value is not None:
|
|
500
|
-
pulumi.set(__self__, "rule_condition_value", rule_condition_value)
|
|
501
494
|
|
|
502
495
|
@property
|
|
503
496
|
@pulumi.getter(name="ruleConditionType")
|
|
504
497
|
def rule_condition_type(self) -> str:
|
|
505
498
|
"""
|
|
506
|
-
The type of the forwarding conditions. Valid values: `Host`, `Path
|
|
499
|
+
The type of the forwarding conditions. Valid values: `Host`, `Path`.
|
|
507
500
|
"""
|
|
508
501
|
return pulumi.get(self, "rule_condition_type")
|
|
509
502
|
|
|
@@ -512,7 +505,6 @@ class ForwardingRuleRuleCondition(dict):
|
|
|
512
505
|
def host_configs(self) -> Optional[Sequence['outputs.ForwardingRuleRuleConditionHostConfig']]:
|
|
513
506
|
"""
|
|
514
507
|
The configuration of the domain name. See `host_config` below.
|
|
515
|
-
> **NOTE:** From version 1.231.0, We recommend that you do not use `path_config` or `host_config`, and we recommend that you use the `rule_condition_type` and `rule_condition_value` to configure forwarding conditions.
|
|
516
508
|
"""
|
|
517
509
|
return pulumi.get(self, "host_configs")
|
|
518
510
|
|
|
@@ -524,14 +516,6 @@ class ForwardingRuleRuleCondition(dict):
|
|
|
524
516
|
"""
|
|
525
517
|
return pulumi.get(self, "path_config")
|
|
526
518
|
|
|
527
|
-
@property
|
|
528
|
-
@pulumi.getter(name="ruleConditionValue")
|
|
529
|
-
def rule_condition_value(self) -> Optional[str]:
|
|
530
|
-
"""
|
|
531
|
-
The value of the forwarding condition type. For more information, see [How to use it](https://www.alibabacloud.com/help/en/global-accelerator/latest/api-ga-2019-11-20-createforwardingrules).
|
|
532
|
-
"""
|
|
533
|
-
return pulumi.get(self, "rule_condition_value")
|
|
534
|
-
|
|
535
519
|
|
|
536
520
|
@pulumi.output_type
|
|
537
521
|
class ForwardingRuleRuleConditionHostConfig(dict):
|