pulumi-alicloud 3.75.0a1741238153__py3-none-any.whl → 3.75.0a1741376340__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 +230 -0
- pulumi_alicloud/_inputs.py +33 -0
- pulumi_alicloud/ackone/__init__.py +1 -0
- pulumi_alicloud/ackone/cluster.py +73 -8
- pulumi_alicloud/ackone/membership_attachment.py +223 -0
- pulumi_alicloud/alb/_inputs.py +217 -17
- pulumi_alicloud/alb/load_balancer.py +7 -35
- pulumi_alicloud/alb/load_balancer_security_group_attachment.py +69 -22
- pulumi_alicloud/alb/outputs.py +150 -12
- pulumi_alicloud/alb/server_group.py +197 -42
- pulumi_alicloud/aligreen/audit_callback.py +2 -2
- pulumi_alicloud/aligreen/biz_type.py +2 -2
- pulumi_alicloud/aligreen/callback.py +2 -2
- pulumi_alicloud/aligreen/image_lib.py +2 -2
- pulumi_alicloud/aligreen/keyword_lib.py +2 -2
- pulumi_alicloud/aligreen/oss_stock_task.py +77 -14
- pulumi_alicloud/apigateway/instance.py +51 -4
- pulumi_alicloud/cfg/aggregate_compliance_pack.py +6 -4
- pulumi_alicloud/cfg/aggregate_config_rule.py +6 -4
- pulumi_alicloud/cfg/aggregator.py +6 -4
- pulumi_alicloud/cloudcontrol/get_prices.py +2 -2
- pulumi_alicloud/cloudcontrol/get_products.py +2 -2
- pulumi_alicloud/cloudcontrol/get_resource_types.py +2 -2
- pulumi_alicloud/cloudcontrol/resource.py +2 -2
- pulumi_alicloud/cloudfirewall/__init__.py +2 -0
- pulumi_alicloud/cloudfirewall/get_nat_firewalls.py +315 -0
- pulumi_alicloud/cloudfirewall/get_vpc_cen_tr_firewalls.py +569 -0
- pulumi_alicloud/cloudfirewall/outputs.py +362 -0
- pulumi_alicloud/cloudphone/__init__.py +12 -0
- pulumi_alicloud/cloudphone/_inputs.py +175 -0
- pulumi_alicloud/cloudphone/image.py +323 -0
- pulumi_alicloud/cloudphone/key_pair.py +294 -0
- pulumi_alicloud/cloudphone/outputs.py +138 -0
- pulumi_alicloud/cloudphone/policy.py +522 -0
- pulumi_alicloud/cloudphoneinstance/__init__.py +9 -0
- pulumi_alicloud/cloudphoneinstance/cloud_phone_instance.py +209 -0
- pulumi_alicloud/cloudphoneinstance/group.py +961 -0
- pulumi_alicloud/cms/get_site_monitors.py +2 -2
- pulumi_alicloud/config/outputs.py +20 -0
- pulumi_alicloud/cs/_inputs.py +9 -9
- pulumi_alicloud/cs/get_kubernetes_clusters.py +5 -4
- pulumi_alicloud/cs/get_managed_kubernetes_clusters.py +5 -4
- pulumi_alicloud/cs/get_serverless_kubernetes_clusters.py +5 -4
- pulumi_alicloud/cs/managed_kubernetes.py +47 -35
- pulumi_alicloud/cs/node_pool.py +49 -21
- pulumi_alicloud/cs/outputs.py +6 -6
- pulumi_alicloud/ddos/ddos_bgp_instance.py +0 -4
- pulumi_alicloud/dfs/vsc_mount_point.py +28 -28
- pulumi_alicloud/dns/ddos_bgp_instance.py +0 -4
- pulumi_alicloud/ebs/replica_group_drill.py +2 -2
- pulumi_alicloud/ebs/replica_pair_drill.py +2 -2
- pulumi_alicloud/ecs/ecs_deployment_set.py +89 -67
- pulumi_alicloud/ecs/eip.py +1 -1
- pulumi_alicloud/ecs/eip_address.py +1 -1
- pulumi_alicloud/ecs/instance.py +43 -30
- pulumi_alicloud/eds/command.py +10 -2
- pulumi_alicloud/emrv2/__init__.py +1 -0
- pulumi_alicloud/emrv2/_inputs.py +47 -7
- pulumi_alicloud/emrv2/get_cluster_instances.py +537 -0
- pulumi_alicloud/emrv2/outputs.py +195 -5
- pulumi_alicloud/ens/instance_security_group_attachment.py +8 -4
- pulumi_alicloud/ens/nat_gateway.py +6 -6
- pulumi_alicloud/ens/vswitch.py +36 -36
- pulumi_alicloud/esa/__init__.py +19 -0
- pulumi_alicloud/esa/_inputs.py +431 -0
- pulumi_alicloud/esa/cache_rule.py +1405 -0
- pulumi_alicloud/esa/certificate.py +724 -0
- pulumi_alicloud/esa/client_ca_certificate.py +388 -0
- pulumi_alicloud/esa/client_certificate.py +452 -0
- pulumi_alicloud/esa/compression_rule.py +582 -0
- pulumi_alicloud/esa/get_sites.py +421 -0
- pulumi_alicloud/esa/http_request_header_modification_rule.py +2 -2
- pulumi_alicloud/esa/http_response_header_modification_rule.py +560 -0
- pulumi_alicloud/esa/https_application_configuration.py +925 -0
- pulumi_alicloud/esa/https_basic_configuration.py +1027 -0
- pulumi_alicloud/esa/image_transform.py +484 -0
- pulumi_alicloud/esa/kv_namespace.py +276 -0
- pulumi_alicloud/esa/list.py +2 -2
- pulumi_alicloud/esa/network_optimization.py +750 -0
- pulumi_alicloud/esa/origin_pool.py +485 -0
- pulumi_alicloud/esa/origin_rule.py +768 -0
- pulumi_alicloud/esa/outputs.py +425 -0
- pulumi_alicloud/esa/page.py +2 -2
- pulumi_alicloud/esa/rate_plan_instance.py +2 -2
- pulumi_alicloud/esa/record.py +2 -2
- pulumi_alicloud/esa/redirect_rule.py +734 -0
- pulumi_alicloud/esa/rewrite_url_rule.py +702 -0
- pulumi_alicloud/esa/site.py +307 -2
- pulumi_alicloud/esa/waiting_room.py +1257 -0
- pulumi_alicloud/esa/waiting_room_event.py +1392 -0
- pulumi_alicloud/esa/waiting_room_rule.py +504 -0
- pulumi_alicloud/ess/scaling_configuration.py +7 -7
- pulumi_alicloud/expressconnect/ec_failover_test_job.py +0 -2
- pulumi_alicloud/expressconnect/vbr_pconn_association.py +2 -2
- pulumi_alicloud/ga/get_basic_accelerators.py +31 -9
- pulumi_alicloud/ga/outputs.py +10 -4
- pulumi_alicloud/gpdb/db_resource_group.py +6 -6
- pulumi_alicloud/gpdb/external_data_service.py +6 -6
- pulumi_alicloud/gpdb/streaming_data_service.py +2 -2
- pulumi_alicloud/hbr/policy.py +67 -6
- pulumi_alicloud/hbr/vault.py +210 -9
- pulumi_alicloud/kms/get_keys.py +10 -0
- pulumi_alicloud/message/__init__.py +3 -0
- pulumi_alicloud/message/_inputs.py +149 -0
- pulumi_alicloud/message/outputs.py +112 -0
- pulumi_alicloud/message/service_endpoint.py +218 -0
- pulumi_alicloud/message/service_endpoint_acl.py +306 -0
- pulumi_alicloud/message/service_queue.py +49 -0
- pulumi_alicloud/message/service_subscription.py +91 -14
- pulumi_alicloud/mse/nacos_config.py +4 -0
- pulumi_alicloud/nlb/_inputs.py +114 -24
- pulumi_alicloud/nlb/listener.py +87 -20
- pulumi_alicloud/nlb/outputs.py +93 -16
- pulumi_alicloud/nlb/server_group.py +55 -20
- pulumi_alicloud/ots/_inputs.py +3 -3
- pulumi_alicloud/ots/outputs.py +2 -2
- pulumi_alicloud/pai/workspace_code_source.py +2 -2
- pulumi_alicloud/pai/workspace_dataset.py +2 -2
- pulumi_alicloud/pai/workspace_datasetversion.py +2 -4
- pulumi_alicloud/pai/workspace_experiment.py +2 -2
- pulumi_alicloud/pai/workspace_run.py +2 -2
- pulumi_alicloud/pai/workspace_workspace.py +2 -2
- pulumi_alicloud/privatelink/get_vpc_endpoints.py +21 -1
- pulumi_alicloud/privatelink/outputs.py +11 -0
- pulumi_alicloud/privatelink/vpc_endpoint.py +1 -1
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/ram/access_key.py +20 -4
- pulumi_alicloud/ram/user.py +10 -2
- pulumi_alicloud/rds/instance.py +7 -0
- pulumi_alicloud/simpleapplicationserver/get_server_plans.py +7 -7
- pulumi_alicloud/simpleapplicationserver/outputs.py +3 -3
- pulumi_alicloud/tag/__init__.py +1 -0
- pulumi_alicloud/tag/associated_rule.py +306 -0
- pulumi_alicloud/tag/policy.py +27 -36
- pulumi_alicloud/vpc/__init__.py +1 -0
- pulumi_alicloud/vpc/common_bandwith_package.py +107 -44
- pulumi_alicloud/vpc/common_bandwith_package_attachment.py +2 -2
- pulumi_alicloud/vpc/flow_log.py +184 -49
- pulumi_alicloud/vpc/forward_entry.py +8 -4
- pulumi_alicloud/vpc/get_enhanced_nat_available_zones.py +38 -2
- pulumi_alicloud/vpc/get_forward_entries.py +2 -2
- pulumi_alicloud/vpc/get_ipsec_servers.py +14 -2
- pulumi_alicloud/vpc/get_nat_gateways.py +48 -2
- pulumi_alicloud/vpc/get_prefix_lists.py +11 -2
- pulumi_alicloud/vpc/get_snat_entries.py +5 -2
- pulumi_alicloud/vpc/get_traffic_mirror_filters.py +14 -2
- pulumi_alicloud/vpc/ipam_ipam.py +2 -9
- pulumi_alicloud/vpc/ipam_ipam_pool.py +2 -30
- pulumi_alicloud/vpc/ipam_ipam_pool_allocation.py +6 -16
- pulumi_alicloud/vpc/ipam_ipam_pool_cidr.py +2 -2
- pulumi_alicloud/vpc/ipam_ipam_resource_discovery.py +489 -0
- pulumi_alicloud/vpc/ipam_ipam_scope.py +2 -9
- pulumi_alicloud/vpc/nat_gateway.py +8 -0
- pulumi_alicloud/vpc/outputs.py +12 -2
- pulumi_alicloud/vpc/router_interface_connection.py +4 -4
- pulumi_alicloud/vpc/traffic_mirror_filter.py +2 -2
- pulumi_alicloud/vpn/get_gateway_vco_routes.py +11 -2
- pulumi_alicloud/vpn/get_gateway_vpn_attachments.py +11 -2
- pulumi_alicloud/vpn/get_gateways.py +21 -1
- pulumi_alicloud/vpn/outputs.py +23 -12
- {pulumi_alicloud-3.75.0a1741238153.dist-info → pulumi_alicloud-3.75.0a1741376340.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.75.0a1741238153.dist-info → pulumi_alicloud-3.75.0a1741376340.dist-info}/RECORD +164 -127
- {pulumi_alicloud-3.75.0a1741238153.dist-info → pulumi_alicloud-3.75.0a1741376340.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.75.0a1741238153.dist-info → pulumi_alicloud-3.75.0a1741376340.dist-info}/top_level.txt +0 -0
|
@@ -15,11 +15,123 @@ else:
|
|
|
15
15
|
from .. import _utilities
|
|
16
16
|
|
|
17
17
|
__all__ = [
|
|
18
|
+
'ServiceQueueDlqPolicy',
|
|
19
|
+
'ServiceSubscriptionDlqPolicy',
|
|
18
20
|
'GetServiceQueuesQueueResult',
|
|
19
21
|
'GetServiceSubscriptionsSubscriptionResult',
|
|
20
22
|
'GetServiceTopicsTopicResult',
|
|
21
23
|
]
|
|
22
24
|
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class ServiceQueueDlqPolicy(dict):
|
|
27
|
+
@staticmethod
|
|
28
|
+
def __key_warning(key: str):
|
|
29
|
+
suggest = None
|
|
30
|
+
if key == "deadLetterTargetQueue":
|
|
31
|
+
suggest = "dead_letter_target_queue"
|
|
32
|
+
elif key == "maxReceiveCount":
|
|
33
|
+
suggest = "max_receive_count"
|
|
34
|
+
|
|
35
|
+
if suggest:
|
|
36
|
+
pulumi.log.warn(f"Key '{key}' not found in ServiceQueueDlqPolicy. Access the value via the '{suggest}' property getter instead.")
|
|
37
|
+
|
|
38
|
+
def __getitem__(self, key: str) -> Any:
|
|
39
|
+
ServiceQueueDlqPolicy.__key_warning(key)
|
|
40
|
+
return super().__getitem__(key)
|
|
41
|
+
|
|
42
|
+
def get(self, key: str, default = None) -> Any:
|
|
43
|
+
ServiceQueueDlqPolicy.__key_warning(key)
|
|
44
|
+
return super().get(key, default)
|
|
45
|
+
|
|
46
|
+
def __init__(__self__, *,
|
|
47
|
+
dead_letter_target_queue: Optional[str] = None,
|
|
48
|
+
enabled: Optional[bool] = None,
|
|
49
|
+
max_receive_count: Optional[int] = None):
|
|
50
|
+
"""
|
|
51
|
+
:param str dead_letter_target_queue: The queue to which dead-letter messages are delivered.
|
|
52
|
+
:param bool enabled: Specifies whether to enable the dead-letter message delivery. Valid values: `true`, `false`.
|
|
53
|
+
:param int max_receive_count: The maximum number of retries.
|
|
54
|
+
"""
|
|
55
|
+
if dead_letter_target_queue is not None:
|
|
56
|
+
pulumi.set(__self__, "dead_letter_target_queue", dead_letter_target_queue)
|
|
57
|
+
if enabled is not None:
|
|
58
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
59
|
+
if max_receive_count is not None:
|
|
60
|
+
pulumi.set(__self__, "max_receive_count", max_receive_count)
|
|
61
|
+
|
|
62
|
+
@property
|
|
63
|
+
@pulumi.getter(name="deadLetterTargetQueue")
|
|
64
|
+
def dead_letter_target_queue(self) -> Optional[str]:
|
|
65
|
+
"""
|
|
66
|
+
The queue to which dead-letter messages are delivered.
|
|
67
|
+
"""
|
|
68
|
+
return pulumi.get(self, "dead_letter_target_queue")
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
@pulumi.getter
|
|
72
|
+
def enabled(self) -> Optional[bool]:
|
|
73
|
+
"""
|
|
74
|
+
Specifies whether to enable the dead-letter message delivery. Valid values: `true`, `false`.
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "enabled")
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
@pulumi.getter(name="maxReceiveCount")
|
|
80
|
+
def max_receive_count(self) -> Optional[int]:
|
|
81
|
+
"""
|
|
82
|
+
The maximum number of retries.
|
|
83
|
+
"""
|
|
84
|
+
return pulumi.get(self, "max_receive_count")
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
@pulumi.output_type
|
|
88
|
+
class ServiceSubscriptionDlqPolicy(dict):
|
|
89
|
+
@staticmethod
|
|
90
|
+
def __key_warning(key: str):
|
|
91
|
+
suggest = None
|
|
92
|
+
if key == "deadLetterTargetQueue":
|
|
93
|
+
suggest = "dead_letter_target_queue"
|
|
94
|
+
|
|
95
|
+
if suggest:
|
|
96
|
+
pulumi.log.warn(f"Key '{key}' not found in ServiceSubscriptionDlqPolicy. Access the value via the '{suggest}' property getter instead.")
|
|
97
|
+
|
|
98
|
+
def __getitem__(self, key: str) -> Any:
|
|
99
|
+
ServiceSubscriptionDlqPolicy.__key_warning(key)
|
|
100
|
+
return super().__getitem__(key)
|
|
101
|
+
|
|
102
|
+
def get(self, key: str, default = None) -> Any:
|
|
103
|
+
ServiceSubscriptionDlqPolicy.__key_warning(key)
|
|
104
|
+
return super().get(key, default)
|
|
105
|
+
|
|
106
|
+
def __init__(__self__, *,
|
|
107
|
+
dead_letter_target_queue: Optional[str] = None,
|
|
108
|
+
enabled: Optional[bool] = None):
|
|
109
|
+
"""
|
|
110
|
+
:param str dead_letter_target_queue: The queue to which dead-letter messages are delivered.
|
|
111
|
+
:param bool enabled: Specifies whether to enable the dead-letter message delivery. Valid values: `true`, `false`.
|
|
112
|
+
"""
|
|
113
|
+
if dead_letter_target_queue is not None:
|
|
114
|
+
pulumi.set(__self__, "dead_letter_target_queue", dead_letter_target_queue)
|
|
115
|
+
if enabled is not None:
|
|
116
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
117
|
+
|
|
118
|
+
@property
|
|
119
|
+
@pulumi.getter(name="deadLetterTargetQueue")
|
|
120
|
+
def dead_letter_target_queue(self) -> Optional[str]:
|
|
121
|
+
"""
|
|
122
|
+
The queue to which dead-letter messages are delivered.
|
|
123
|
+
"""
|
|
124
|
+
return pulumi.get(self, "dead_letter_target_queue")
|
|
125
|
+
|
|
126
|
+
@property
|
|
127
|
+
@pulumi.getter
|
|
128
|
+
def enabled(self) -> Optional[bool]:
|
|
129
|
+
"""
|
|
130
|
+
Specifies whether to enable the dead-letter message delivery. Valid values: `true`, `false`.
|
|
131
|
+
"""
|
|
132
|
+
return pulumi.get(self, "enabled")
|
|
133
|
+
|
|
134
|
+
|
|
23
135
|
@pulumi.output_type
|
|
24
136
|
class GetServiceQueuesQueueResult(dict):
|
|
25
137
|
def __init__(__self__, *,
|
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from .. import _utilities
|
|
16
|
+
|
|
17
|
+
__all__ = ['ServiceEndpointArgs', 'ServiceEndpoint']
|
|
18
|
+
|
|
19
|
+
@pulumi.input_type
|
|
20
|
+
class ServiceEndpointArgs:
|
|
21
|
+
def __init__(__self__, *,
|
|
22
|
+
endpoint_enabled: pulumi.Input[bool],
|
|
23
|
+
endpoint_type: pulumi.Input[str]):
|
|
24
|
+
"""
|
|
25
|
+
The set of arguments for constructing a ServiceEndpoint resource.
|
|
26
|
+
:param pulumi.Input[bool] endpoint_enabled: Specifies whether the endpoint is enabled. Valid values:
|
|
27
|
+
:param pulumi.Input[str] endpoint_type: Access point type. Value:
|
|
28
|
+
- public: indicates a public access point. (Currently only public is supported)
|
|
29
|
+
"""
|
|
30
|
+
pulumi.set(__self__, "endpoint_enabled", endpoint_enabled)
|
|
31
|
+
pulumi.set(__self__, "endpoint_type", endpoint_type)
|
|
32
|
+
|
|
33
|
+
@property
|
|
34
|
+
@pulumi.getter(name="endpointEnabled")
|
|
35
|
+
def endpoint_enabled(self) -> pulumi.Input[bool]:
|
|
36
|
+
"""
|
|
37
|
+
Specifies whether the endpoint is enabled. Valid values:
|
|
38
|
+
"""
|
|
39
|
+
return pulumi.get(self, "endpoint_enabled")
|
|
40
|
+
|
|
41
|
+
@endpoint_enabled.setter
|
|
42
|
+
def endpoint_enabled(self, value: pulumi.Input[bool]):
|
|
43
|
+
pulumi.set(self, "endpoint_enabled", value)
|
|
44
|
+
|
|
45
|
+
@property
|
|
46
|
+
@pulumi.getter(name="endpointType")
|
|
47
|
+
def endpoint_type(self) -> pulumi.Input[str]:
|
|
48
|
+
"""
|
|
49
|
+
Access point type. Value:
|
|
50
|
+
- public: indicates a public access point. (Currently only public is supported)
|
|
51
|
+
"""
|
|
52
|
+
return pulumi.get(self, "endpoint_type")
|
|
53
|
+
|
|
54
|
+
@endpoint_type.setter
|
|
55
|
+
def endpoint_type(self, value: pulumi.Input[str]):
|
|
56
|
+
pulumi.set(self, "endpoint_type", value)
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
@pulumi.input_type
|
|
60
|
+
class _ServiceEndpointState:
|
|
61
|
+
def __init__(__self__, *,
|
|
62
|
+
endpoint_enabled: Optional[pulumi.Input[bool]] = None,
|
|
63
|
+
endpoint_type: Optional[pulumi.Input[str]] = None):
|
|
64
|
+
"""
|
|
65
|
+
Input properties used for looking up and filtering ServiceEndpoint resources.
|
|
66
|
+
:param pulumi.Input[bool] endpoint_enabled: Specifies whether the endpoint is enabled. Valid values:
|
|
67
|
+
:param pulumi.Input[str] endpoint_type: Access point type. Value:
|
|
68
|
+
- public: indicates a public access point. (Currently only public is supported)
|
|
69
|
+
"""
|
|
70
|
+
if endpoint_enabled is not None:
|
|
71
|
+
pulumi.set(__self__, "endpoint_enabled", endpoint_enabled)
|
|
72
|
+
if endpoint_type is not None:
|
|
73
|
+
pulumi.set(__self__, "endpoint_type", endpoint_type)
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
@pulumi.getter(name="endpointEnabled")
|
|
77
|
+
def endpoint_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
78
|
+
"""
|
|
79
|
+
Specifies whether the endpoint is enabled. Valid values:
|
|
80
|
+
"""
|
|
81
|
+
return pulumi.get(self, "endpoint_enabled")
|
|
82
|
+
|
|
83
|
+
@endpoint_enabled.setter
|
|
84
|
+
def endpoint_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
85
|
+
pulumi.set(self, "endpoint_enabled", value)
|
|
86
|
+
|
|
87
|
+
@property
|
|
88
|
+
@pulumi.getter(name="endpointType")
|
|
89
|
+
def endpoint_type(self) -> Optional[pulumi.Input[str]]:
|
|
90
|
+
"""
|
|
91
|
+
Access point type. Value:
|
|
92
|
+
- public: indicates a public access point. (Currently only public is supported)
|
|
93
|
+
"""
|
|
94
|
+
return pulumi.get(self, "endpoint_type")
|
|
95
|
+
|
|
96
|
+
@endpoint_type.setter
|
|
97
|
+
def endpoint_type(self, value: Optional[pulumi.Input[str]]):
|
|
98
|
+
pulumi.set(self, "endpoint_type", value)
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
class ServiceEndpoint(pulumi.CustomResource):
|
|
102
|
+
@overload
|
|
103
|
+
def __init__(__self__,
|
|
104
|
+
resource_name: str,
|
|
105
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
106
|
+
endpoint_enabled: Optional[pulumi.Input[bool]] = None,
|
|
107
|
+
endpoint_type: Optional[pulumi.Input[str]] = None,
|
|
108
|
+
__props__=None):
|
|
109
|
+
"""
|
|
110
|
+
## Import
|
|
111
|
+
|
|
112
|
+
Message Service Endpoint can be imported using the id, e.g.
|
|
113
|
+
|
|
114
|
+
```sh
|
|
115
|
+
$ pulumi import alicloud:message/serviceEndpoint:ServiceEndpoint example <id>
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
:param str resource_name: The name of the resource.
|
|
119
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
120
|
+
:param pulumi.Input[bool] endpoint_enabled: Specifies whether the endpoint is enabled. Valid values:
|
|
121
|
+
:param pulumi.Input[str] endpoint_type: Access point type. Value:
|
|
122
|
+
- public: indicates a public access point. (Currently only public is supported)
|
|
123
|
+
"""
|
|
124
|
+
...
|
|
125
|
+
@overload
|
|
126
|
+
def __init__(__self__,
|
|
127
|
+
resource_name: str,
|
|
128
|
+
args: ServiceEndpointArgs,
|
|
129
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
130
|
+
"""
|
|
131
|
+
## Import
|
|
132
|
+
|
|
133
|
+
Message Service Endpoint can be imported using the id, e.g.
|
|
134
|
+
|
|
135
|
+
```sh
|
|
136
|
+
$ pulumi import alicloud:message/serviceEndpoint:ServiceEndpoint example <id>
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
:param str resource_name: The name of the resource.
|
|
140
|
+
:param ServiceEndpointArgs args: The arguments to use to populate this resource's properties.
|
|
141
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
142
|
+
"""
|
|
143
|
+
...
|
|
144
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
145
|
+
resource_args, opts = _utilities.get_resource_args_opts(ServiceEndpointArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
146
|
+
if resource_args is not None:
|
|
147
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
148
|
+
else:
|
|
149
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
150
|
+
|
|
151
|
+
def _internal_init(__self__,
|
|
152
|
+
resource_name: str,
|
|
153
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
154
|
+
endpoint_enabled: Optional[pulumi.Input[bool]] = None,
|
|
155
|
+
endpoint_type: Optional[pulumi.Input[str]] = None,
|
|
156
|
+
__props__=None):
|
|
157
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
158
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
159
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
160
|
+
if opts.id is None:
|
|
161
|
+
if __props__ is not None:
|
|
162
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
163
|
+
__props__ = ServiceEndpointArgs.__new__(ServiceEndpointArgs)
|
|
164
|
+
|
|
165
|
+
if endpoint_enabled is None and not opts.urn:
|
|
166
|
+
raise TypeError("Missing required property 'endpoint_enabled'")
|
|
167
|
+
__props__.__dict__["endpoint_enabled"] = endpoint_enabled
|
|
168
|
+
if endpoint_type is None and not opts.urn:
|
|
169
|
+
raise TypeError("Missing required property 'endpoint_type'")
|
|
170
|
+
__props__.__dict__["endpoint_type"] = endpoint_type
|
|
171
|
+
super(ServiceEndpoint, __self__).__init__(
|
|
172
|
+
'alicloud:message/serviceEndpoint:ServiceEndpoint',
|
|
173
|
+
resource_name,
|
|
174
|
+
__props__,
|
|
175
|
+
opts)
|
|
176
|
+
|
|
177
|
+
@staticmethod
|
|
178
|
+
def get(resource_name: str,
|
|
179
|
+
id: pulumi.Input[str],
|
|
180
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
181
|
+
endpoint_enabled: Optional[pulumi.Input[bool]] = None,
|
|
182
|
+
endpoint_type: Optional[pulumi.Input[str]] = None) -> 'ServiceEndpoint':
|
|
183
|
+
"""
|
|
184
|
+
Get an existing ServiceEndpoint resource's state with the given name, id, and optional extra
|
|
185
|
+
properties used to qualify the lookup.
|
|
186
|
+
|
|
187
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
188
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
189
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
190
|
+
:param pulumi.Input[bool] endpoint_enabled: Specifies whether the endpoint is enabled. Valid values:
|
|
191
|
+
:param pulumi.Input[str] endpoint_type: Access point type. Value:
|
|
192
|
+
- public: indicates a public access point. (Currently only public is supported)
|
|
193
|
+
"""
|
|
194
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
195
|
+
|
|
196
|
+
__props__ = _ServiceEndpointState.__new__(_ServiceEndpointState)
|
|
197
|
+
|
|
198
|
+
__props__.__dict__["endpoint_enabled"] = endpoint_enabled
|
|
199
|
+
__props__.__dict__["endpoint_type"] = endpoint_type
|
|
200
|
+
return ServiceEndpoint(resource_name, opts=opts, __props__=__props__)
|
|
201
|
+
|
|
202
|
+
@property
|
|
203
|
+
@pulumi.getter(name="endpointEnabled")
|
|
204
|
+
def endpoint_enabled(self) -> pulumi.Output[bool]:
|
|
205
|
+
"""
|
|
206
|
+
Specifies whether the endpoint is enabled. Valid values:
|
|
207
|
+
"""
|
|
208
|
+
return pulumi.get(self, "endpoint_enabled")
|
|
209
|
+
|
|
210
|
+
@property
|
|
211
|
+
@pulumi.getter(name="endpointType")
|
|
212
|
+
def endpoint_type(self) -> pulumi.Output[str]:
|
|
213
|
+
"""
|
|
214
|
+
Access point type. Value:
|
|
215
|
+
- public: indicates a public access point. (Currently only public is supported)
|
|
216
|
+
"""
|
|
217
|
+
return pulumi.get(self, "endpoint_type")
|
|
218
|
+
|
|
@@ -0,0 +1,306 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from .. import _utilities
|
|
16
|
+
|
|
17
|
+
__all__ = ['ServiceEndpointAclArgs', 'ServiceEndpointAcl']
|
|
18
|
+
|
|
19
|
+
@pulumi.input_type
|
|
20
|
+
class ServiceEndpointAclArgs:
|
|
21
|
+
def __init__(__self__, *,
|
|
22
|
+
acl_strategy: pulumi.Input[str],
|
|
23
|
+
cidr: pulumi.Input[str],
|
|
24
|
+
endpoint_type: pulumi.Input[str]):
|
|
25
|
+
"""
|
|
26
|
+
The set of arguments for constructing a ServiceEndpointAcl resource.
|
|
27
|
+
:param pulumi.Input[str] acl_strategy: The ACL policy. Valid value:
|
|
28
|
+
- allow: indicates that the current endpoint allows access from the corresponding CIDR block. (Only allow is supported)
|
|
29
|
+
:param pulumi.Input[str] endpoint_type: Access point type. Value:
|
|
30
|
+
- public: indicates a public access point. (Currently only public is supported)
|
|
31
|
+
"""
|
|
32
|
+
pulumi.set(__self__, "acl_strategy", acl_strategy)
|
|
33
|
+
pulumi.set(__self__, "cidr", cidr)
|
|
34
|
+
pulumi.set(__self__, "endpoint_type", endpoint_type)
|
|
35
|
+
|
|
36
|
+
@property
|
|
37
|
+
@pulumi.getter(name="aclStrategy")
|
|
38
|
+
def acl_strategy(self) -> pulumi.Input[str]:
|
|
39
|
+
"""
|
|
40
|
+
The ACL policy. Valid value:
|
|
41
|
+
- allow: indicates that the current endpoint allows access from the corresponding CIDR block. (Only allow is supported)
|
|
42
|
+
"""
|
|
43
|
+
return pulumi.get(self, "acl_strategy")
|
|
44
|
+
|
|
45
|
+
@acl_strategy.setter
|
|
46
|
+
def acl_strategy(self, value: pulumi.Input[str]):
|
|
47
|
+
pulumi.set(self, "acl_strategy", value)
|
|
48
|
+
|
|
49
|
+
@property
|
|
50
|
+
@pulumi.getter
|
|
51
|
+
def cidr(self) -> pulumi.Input[str]:
|
|
52
|
+
return pulumi.get(self, "cidr")
|
|
53
|
+
|
|
54
|
+
@cidr.setter
|
|
55
|
+
def cidr(self, value: pulumi.Input[str]):
|
|
56
|
+
pulumi.set(self, "cidr", value)
|
|
57
|
+
|
|
58
|
+
@property
|
|
59
|
+
@pulumi.getter(name="endpointType")
|
|
60
|
+
def endpoint_type(self) -> pulumi.Input[str]:
|
|
61
|
+
"""
|
|
62
|
+
Access point type. Value:
|
|
63
|
+
- public: indicates a public access point. (Currently only public is supported)
|
|
64
|
+
"""
|
|
65
|
+
return pulumi.get(self, "endpoint_type")
|
|
66
|
+
|
|
67
|
+
@endpoint_type.setter
|
|
68
|
+
def endpoint_type(self, value: pulumi.Input[str]):
|
|
69
|
+
pulumi.set(self, "endpoint_type", value)
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
@pulumi.input_type
|
|
73
|
+
class _ServiceEndpointAclState:
|
|
74
|
+
def __init__(__self__, *,
|
|
75
|
+
acl_strategy: Optional[pulumi.Input[str]] = None,
|
|
76
|
+
cidr: Optional[pulumi.Input[str]] = None,
|
|
77
|
+
endpoint_type: Optional[pulumi.Input[str]] = None):
|
|
78
|
+
"""
|
|
79
|
+
Input properties used for looking up and filtering ServiceEndpointAcl resources.
|
|
80
|
+
:param pulumi.Input[str] acl_strategy: The ACL policy. Valid value:
|
|
81
|
+
- allow: indicates that the current endpoint allows access from the corresponding CIDR block. (Only allow is supported)
|
|
82
|
+
:param pulumi.Input[str] endpoint_type: Access point type. Value:
|
|
83
|
+
- public: indicates a public access point. (Currently only public is supported)
|
|
84
|
+
"""
|
|
85
|
+
if acl_strategy is not None:
|
|
86
|
+
pulumi.set(__self__, "acl_strategy", acl_strategy)
|
|
87
|
+
if cidr is not None:
|
|
88
|
+
pulumi.set(__self__, "cidr", cidr)
|
|
89
|
+
if endpoint_type is not None:
|
|
90
|
+
pulumi.set(__self__, "endpoint_type", endpoint_type)
|
|
91
|
+
|
|
92
|
+
@property
|
|
93
|
+
@pulumi.getter(name="aclStrategy")
|
|
94
|
+
def acl_strategy(self) -> Optional[pulumi.Input[str]]:
|
|
95
|
+
"""
|
|
96
|
+
The ACL policy. Valid value:
|
|
97
|
+
- allow: indicates that the current endpoint allows access from the corresponding CIDR block. (Only allow is supported)
|
|
98
|
+
"""
|
|
99
|
+
return pulumi.get(self, "acl_strategy")
|
|
100
|
+
|
|
101
|
+
@acl_strategy.setter
|
|
102
|
+
def acl_strategy(self, value: Optional[pulumi.Input[str]]):
|
|
103
|
+
pulumi.set(self, "acl_strategy", value)
|
|
104
|
+
|
|
105
|
+
@property
|
|
106
|
+
@pulumi.getter
|
|
107
|
+
def cidr(self) -> Optional[pulumi.Input[str]]:
|
|
108
|
+
return pulumi.get(self, "cidr")
|
|
109
|
+
|
|
110
|
+
@cidr.setter
|
|
111
|
+
def cidr(self, value: Optional[pulumi.Input[str]]):
|
|
112
|
+
pulumi.set(self, "cidr", value)
|
|
113
|
+
|
|
114
|
+
@property
|
|
115
|
+
@pulumi.getter(name="endpointType")
|
|
116
|
+
def endpoint_type(self) -> Optional[pulumi.Input[str]]:
|
|
117
|
+
"""
|
|
118
|
+
Access point type. Value:
|
|
119
|
+
- public: indicates a public access point. (Currently only public is supported)
|
|
120
|
+
"""
|
|
121
|
+
return pulumi.get(self, "endpoint_type")
|
|
122
|
+
|
|
123
|
+
@endpoint_type.setter
|
|
124
|
+
def endpoint_type(self, value: Optional[pulumi.Input[str]]):
|
|
125
|
+
pulumi.set(self, "endpoint_type", value)
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
class ServiceEndpointAcl(pulumi.CustomResource):
|
|
129
|
+
@overload
|
|
130
|
+
def __init__(__self__,
|
|
131
|
+
resource_name: str,
|
|
132
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
133
|
+
acl_strategy: Optional[pulumi.Input[str]] = None,
|
|
134
|
+
cidr: Optional[pulumi.Input[str]] = None,
|
|
135
|
+
endpoint_type: Optional[pulumi.Input[str]] = None,
|
|
136
|
+
__props__=None):
|
|
137
|
+
"""
|
|
138
|
+
Provides a Message Service Endpoint Acl resource.
|
|
139
|
+
|
|
140
|
+
For information about Message Service Endpoint Acl and how to use it, see [What is Endpoint Acl](https://www.alibabacloud.com/help/en/mns/developer-reference/api-mns-open-2022-01-19-authorizeendpointacl).
|
|
141
|
+
|
|
142
|
+
> **NOTE:** Available since v1.243.0.
|
|
143
|
+
|
|
144
|
+
## Example Usage
|
|
145
|
+
|
|
146
|
+
Basic Usage
|
|
147
|
+
|
|
148
|
+
```python
|
|
149
|
+
import pulumi
|
|
150
|
+
import pulumi_alicloud as alicloud
|
|
151
|
+
|
|
152
|
+
default = alicloud.message.ServiceEndpoint("default",
|
|
153
|
+
endpoint_enabled=True,
|
|
154
|
+
endpoint_type="public")
|
|
155
|
+
default_service_endpoint_acl = alicloud.message.ServiceEndpointAcl("default",
|
|
156
|
+
cidr="192.168.1.1/23",
|
|
157
|
+
endpoint_type=default.id,
|
|
158
|
+
acl_strategy="allow")
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
## Import
|
|
162
|
+
|
|
163
|
+
Message Service Endpoint Acl can be imported using the id, e.g.
|
|
164
|
+
|
|
165
|
+
```sh
|
|
166
|
+
$ pulumi import alicloud:message/serviceEndpointAcl:ServiceEndpointAcl example <endpoint_type>:<acl_strategy>:<cidr>
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
:param str resource_name: The name of the resource.
|
|
170
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
171
|
+
:param pulumi.Input[str] acl_strategy: The ACL policy. Valid value:
|
|
172
|
+
- allow: indicates that the current endpoint allows access from the corresponding CIDR block. (Only allow is supported)
|
|
173
|
+
:param pulumi.Input[str] endpoint_type: Access point type. Value:
|
|
174
|
+
- public: indicates a public access point. (Currently only public is supported)
|
|
175
|
+
"""
|
|
176
|
+
...
|
|
177
|
+
@overload
|
|
178
|
+
def __init__(__self__,
|
|
179
|
+
resource_name: str,
|
|
180
|
+
args: ServiceEndpointAclArgs,
|
|
181
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
182
|
+
"""
|
|
183
|
+
Provides a Message Service Endpoint Acl resource.
|
|
184
|
+
|
|
185
|
+
For information about Message Service Endpoint Acl and how to use it, see [What is Endpoint Acl](https://www.alibabacloud.com/help/en/mns/developer-reference/api-mns-open-2022-01-19-authorizeendpointacl).
|
|
186
|
+
|
|
187
|
+
> **NOTE:** Available since v1.243.0.
|
|
188
|
+
|
|
189
|
+
## Example Usage
|
|
190
|
+
|
|
191
|
+
Basic Usage
|
|
192
|
+
|
|
193
|
+
```python
|
|
194
|
+
import pulumi
|
|
195
|
+
import pulumi_alicloud as alicloud
|
|
196
|
+
|
|
197
|
+
default = alicloud.message.ServiceEndpoint("default",
|
|
198
|
+
endpoint_enabled=True,
|
|
199
|
+
endpoint_type="public")
|
|
200
|
+
default_service_endpoint_acl = alicloud.message.ServiceEndpointAcl("default",
|
|
201
|
+
cidr="192.168.1.1/23",
|
|
202
|
+
endpoint_type=default.id,
|
|
203
|
+
acl_strategy="allow")
|
|
204
|
+
```
|
|
205
|
+
|
|
206
|
+
## Import
|
|
207
|
+
|
|
208
|
+
Message Service Endpoint Acl can be imported using the id, e.g.
|
|
209
|
+
|
|
210
|
+
```sh
|
|
211
|
+
$ pulumi import alicloud:message/serviceEndpointAcl:ServiceEndpointAcl example <endpoint_type>:<acl_strategy>:<cidr>
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
:param str resource_name: The name of the resource.
|
|
215
|
+
:param ServiceEndpointAclArgs args: The arguments to use to populate this resource's properties.
|
|
216
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
217
|
+
"""
|
|
218
|
+
...
|
|
219
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
220
|
+
resource_args, opts = _utilities.get_resource_args_opts(ServiceEndpointAclArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
221
|
+
if resource_args is not None:
|
|
222
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
223
|
+
else:
|
|
224
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
225
|
+
|
|
226
|
+
def _internal_init(__self__,
|
|
227
|
+
resource_name: str,
|
|
228
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
229
|
+
acl_strategy: Optional[pulumi.Input[str]] = None,
|
|
230
|
+
cidr: Optional[pulumi.Input[str]] = None,
|
|
231
|
+
endpoint_type: Optional[pulumi.Input[str]] = None,
|
|
232
|
+
__props__=None):
|
|
233
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
234
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
235
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
236
|
+
if opts.id is None:
|
|
237
|
+
if __props__ is not None:
|
|
238
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
239
|
+
__props__ = ServiceEndpointAclArgs.__new__(ServiceEndpointAclArgs)
|
|
240
|
+
|
|
241
|
+
if acl_strategy is None and not opts.urn:
|
|
242
|
+
raise TypeError("Missing required property 'acl_strategy'")
|
|
243
|
+
__props__.__dict__["acl_strategy"] = acl_strategy
|
|
244
|
+
if cidr is None and not opts.urn:
|
|
245
|
+
raise TypeError("Missing required property 'cidr'")
|
|
246
|
+
__props__.__dict__["cidr"] = cidr
|
|
247
|
+
if endpoint_type is None and not opts.urn:
|
|
248
|
+
raise TypeError("Missing required property 'endpoint_type'")
|
|
249
|
+
__props__.__dict__["endpoint_type"] = endpoint_type
|
|
250
|
+
super(ServiceEndpointAcl, __self__).__init__(
|
|
251
|
+
'alicloud:message/serviceEndpointAcl:ServiceEndpointAcl',
|
|
252
|
+
resource_name,
|
|
253
|
+
__props__,
|
|
254
|
+
opts)
|
|
255
|
+
|
|
256
|
+
@staticmethod
|
|
257
|
+
def get(resource_name: str,
|
|
258
|
+
id: pulumi.Input[str],
|
|
259
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
260
|
+
acl_strategy: Optional[pulumi.Input[str]] = None,
|
|
261
|
+
cidr: Optional[pulumi.Input[str]] = None,
|
|
262
|
+
endpoint_type: Optional[pulumi.Input[str]] = None) -> 'ServiceEndpointAcl':
|
|
263
|
+
"""
|
|
264
|
+
Get an existing ServiceEndpointAcl resource's state with the given name, id, and optional extra
|
|
265
|
+
properties used to qualify the lookup.
|
|
266
|
+
|
|
267
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
268
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
269
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
270
|
+
:param pulumi.Input[str] acl_strategy: The ACL policy. Valid value:
|
|
271
|
+
- allow: indicates that the current endpoint allows access from the corresponding CIDR block. (Only allow is supported)
|
|
272
|
+
:param pulumi.Input[str] endpoint_type: Access point type. Value:
|
|
273
|
+
- public: indicates a public access point. (Currently only public is supported)
|
|
274
|
+
"""
|
|
275
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
276
|
+
|
|
277
|
+
__props__ = _ServiceEndpointAclState.__new__(_ServiceEndpointAclState)
|
|
278
|
+
|
|
279
|
+
__props__.__dict__["acl_strategy"] = acl_strategy
|
|
280
|
+
__props__.__dict__["cidr"] = cidr
|
|
281
|
+
__props__.__dict__["endpoint_type"] = endpoint_type
|
|
282
|
+
return ServiceEndpointAcl(resource_name, opts=opts, __props__=__props__)
|
|
283
|
+
|
|
284
|
+
@property
|
|
285
|
+
@pulumi.getter(name="aclStrategy")
|
|
286
|
+
def acl_strategy(self) -> pulumi.Output[str]:
|
|
287
|
+
"""
|
|
288
|
+
The ACL policy. Valid value:
|
|
289
|
+
- allow: indicates that the current endpoint allows access from the corresponding CIDR block. (Only allow is supported)
|
|
290
|
+
"""
|
|
291
|
+
return pulumi.get(self, "acl_strategy")
|
|
292
|
+
|
|
293
|
+
@property
|
|
294
|
+
@pulumi.getter
|
|
295
|
+
def cidr(self) -> pulumi.Output[str]:
|
|
296
|
+
return pulumi.get(self, "cidr")
|
|
297
|
+
|
|
298
|
+
@property
|
|
299
|
+
@pulumi.getter(name="endpointType")
|
|
300
|
+
def endpoint_type(self) -> pulumi.Output[str]:
|
|
301
|
+
"""
|
|
302
|
+
Access point type. Value:
|
|
303
|
+
- public: indicates a public access point. (Currently only public is supported)
|
|
304
|
+
"""
|
|
305
|
+
return pulumi.get(self, "endpoint_type")
|
|
306
|
+
|