pulumi-alicloud 3.74.0a1737989015__py3-none-any.whl → 3.75.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-alicloud might be problematic. Click here for more details.
- pulumi_alicloud/__init__.py +230 -0
- pulumi_alicloud/_inputs.py +33 -0
- pulumi_alicloud/_utilities.py +8 -4
- 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.74.0a1737989015.dist-info → pulumi_alicloud-3.75.0.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.74.0a1737989015.dist-info → pulumi_alicloud-3.75.0.dist-info}/RECORD +165 -128
- {pulumi_alicloud-3.74.0a1737989015.dist-info → pulumi_alicloud-3.75.0.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.74.0a1737989015.dist-info → pulumi_alicloud-3.75.0.dist-info}/top_level.txt +0 -0
|
@@ -33,6 +33,10 @@ __all__ = [
|
|
|
33
33
|
'GetControlPoliciesPolicyResult',
|
|
34
34
|
'GetInstanceMembersMemberResult',
|
|
35
35
|
'GetInstancesInstanceResult',
|
|
36
|
+
'GetNatFirewallsFirewallResult',
|
|
37
|
+
'GetNatFirewallsFirewallNatRouteEntryListResult',
|
|
38
|
+
'GetVpcCenTrFirewallsFirewallResult',
|
|
39
|
+
'GetVpcCenTrFirewallsFirewallIpsConfigResult',
|
|
36
40
|
'GetVpcFirewallCensCenResult',
|
|
37
41
|
'GetVpcFirewallCensCenLocalVpcResult',
|
|
38
42
|
'GetVpcFirewallCensCenLocalVpcEniListResult',
|
|
@@ -1605,6 +1609,364 @@ class GetInstancesInstanceResult(dict):
|
|
|
1605
1609
|
return pulumi.get(self, "status")
|
|
1606
1610
|
|
|
1607
1611
|
|
|
1612
|
+
@pulumi.output_type
|
|
1613
|
+
class GetNatFirewallsFirewallResult(dict):
|
|
1614
|
+
def __init__(__self__, *,
|
|
1615
|
+
ali_uid: int,
|
|
1616
|
+
id: str,
|
|
1617
|
+
member_uid: int,
|
|
1618
|
+
nat_gateway_id: str,
|
|
1619
|
+
nat_gateway_name: str,
|
|
1620
|
+
nat_route_entry_lists: Sequence['outputs.GetNatFirewallsFirewallNatRouteEntryListResult'],
|
|
1621
|
+
proxy_id: str,
|
|
1622
|
+
proxy_name: str,
|
|
1623
|
+
strict_mode: int,
|
|
1624
|
+
vpc_id: str):
|
|
1625
|
+
"""
|
|
1626
|
+
:param int ali_uid: Alibaba Cloud account ID
|
|
1627
|
+
:param str id: The ID of the resource supplied above.
|
|
1628
|
+
:param int member_uid: Member Account ID
|
|
1629
|
+
:param str nat_gateway_id: NAT gateway ID
|
|
1630
|
+
:param str nat_gateway_name: NAT Gateway name
|
|
1631
|
+
:param Sequence['GetNatFirewallsFirewallNatRouteEntryListArgs'] nat_route_entry_lists: The list of routes to be switched by the NAT gateway.
|
|
1632
|
+
:param str proxy_id: NAT firewall ID
|
|
1633
|
+
:param str proxy_name: NAT firewall name
|
|
1634
|
+
:param int strict_mode: Whether strict mode is enabled1-Enable strict mode0-Disable strict mode
|
|
1635
|
+
:param str vpc_id: The ID of the VPC instance.
|
|
1636
|
+
"""
|
|
1637
|
+
pulumi.set(__self__, "ali_uid", ali_uid)
|
|
1638
|
+
pulumi.set(__self__, "id", id)
|
|
1639
|
+
pulumi.set(__self__, "member_uid", member_uid)
|
|
1640
|
+
pulumi.set(__self__, "nat_gateway_id", nat_gateway_id)
|
|
1641
|
+
pulumi.set(__self__, "nat_gateway_name", nat_gateway_name)
|
|
1642
|
+
pulumi.set(__self__, "nat_route_entry_lists", nat_route_entry_lists)
|
|
1643
|
+
pulumi.set(__self__, "proxy_id", proxy_id)
|
|
1644
|
+
pulumi.set(__self__, "proxy_name", proxy_name)
|
|
1645
|
+
pulumi.set(__self__, "strict_mode", strict_mode)
|
|
1646
|
+
pulumi.set(__self__, "vpc_id", vpc_id)
|
|
1647
|
+
|
|
1648
|
+
@property
|
|
1649
|
+
@pulumi.getter(name="aliUid")
|
|
1650
|
+
def ali_uid(self) -> int:
|
|
1651
|
+
"""
|
|
1652
|
+
Alibaba Cloud account ID
|
|
1653
|
+
"""
|
|
1654
|
+
return pulumi.get(self, "ali_uid")
|
|
1655
|
+
|
|
1656
|
+
@property
|
|
1657
|
+
@pulumi.getter
|
|
1658
|
+
def id(self) -> str:
|
|
1659
|
+
"""
|
|
1660
|
+
The ID of the resource supplied above.
|
|
1661
|
+
"""
|
|
1662
|
+
return pulumi.get(self, "id")
|
|
1663
|
+
|
|
1664
|
+
@property
|
|
1665
|
+
@pulumi.getter(name="memberUid")
|
|
1666
|
+
def member_uid(self) -> int:
|
|
1667
|
+
"""
|
|
1668
|
+
Member Account ID
|
|
1669
|
+
"""
|
|
1670
|
+
return pulumi.get(self, "member_uid")
|
|
1671
|
+
|
|
1672
|
+
@property
|
|
1673
|
+
@pulumi.getter(name="natGatewayId")
|
|
1674
|
+
def nat_gateway_id(self) -> str:
|
|
1675
|
+
"""
|
|
1676
|
+
NAT gateway ID
|
|
1677
|
+
"""
|
|
1678
|
+
return pulumi.get(self, "nat_gateway_id")
|
|
1679
|
+
|
|
1680
|
+
@property
|
|
1681
|
+
@pulumi.getter(name="natGatewayName")
|
|
1682
|
+
def nat_gateway_name(self) -> str:
|
|
1683
|
+
"""
|
|
1684
|
+
NAT Gateway name
|
|
1685
|
+
"""
|
|
1686
|
+
return pulumi.get(self, "nat_gateway_name")
|
|
1687
|
+
|
|
1688
|
+
@property
|
|
1689
|
+
@pulumi.getter(name="natRouteEntryLists")
|
|
1690
|
+
def nat_route_entry_lists(self) -> Sequence['outputs.GetNatFirewallsFirewallNatRouteEntryListResult']:
|
|
1691
|
+
"""
|
|
1692
|
+
The list of routes to be switched by the NAT gateway.
|
|
1693
|
+
"""
|
|
1694
|
+
return pulumi.get(self, "nat_route_entry_lists")
|
|
1695
|
+
|
|
1696
|
+
@property
|
|
1697
|
+
@pulumi.getter(name="proxyId")
|
|
1698
|
+
def proxy_id(self) -> str:
|
|
1699
|
+
"""
|
|
1700
|
+
NAT firewall ID
|
|
1701
|
+
"""
|
|
1702
|
+
return pulumi.get(self, "proxy_id")
|
|
1703
|
+
|
|
1704
|
+
@property
|
|
1705
|
+
@pulumi.getter(name="proxyName")
|
|
1706
|
+
def proxy_name(self) -> str:
|
|
1707
|
+
"""
|
|
1708
|
+
NAT firewall name
|
|
1709
|
+
"""
|
|
1710
|
+
return pulumi.get(self, "proxy_name")
|
|
1711
|
+
|
|
1712
|
+
@property
|
|
1713
|
+
@pulumi.getter(name="strictMode")
|
|
1714
|
+
def strict_mode(self) -> int:
|
|
1715
|
+
"""
|
|
1716
|
+
Whether strict mode is enabled1-Enable strict mode0-Disable strict mode
|
|
1717
|
+
"""
|
|
1718
|
+
return pulumi.get(self, "strict_mode")
|
|
1719
|
+
|
|
1720
|
+
@property
|
|
1721
|
+
@pulumi.getter(name="vpcId")
|
|
1722
|
+
def vpc_id(self) -> str:
|
|
1723
|
+
"""
|
|
1724
|
+
The ID of the VPC instance.
|
|
1725
|
+
"""
|
|
1726
|
+
return pulumi.get(self, "vpc_id")
|
|
1727
|
+
|
|
1728
|
+
|
|
1729
|
+
@pulumi.output_type
|
|
1730
|
+
class GetNatFirewallsFirewallNatRouteEntryListResult(dict):
|
|
1731
|
+
def __init__(__self__, *,
|
|
1732
|
+
destination_cidr: str,
|
|
1733
|
+
nexthop_id: str,
|
|
1734
|
+
nexthop_type: str,
|
|
1735
|
+
route_table_id: str):
|
|
1736
|
+
"""
|
|
1737
|
+
:param str destination_cidr: The destination network segment of the default route.
|
|
1738
|
+
:param str nexthop_id: The next hop address of the original NAT gateway.
|
|
1739
|
+
:param str nexthop_type: The network type of the next hop. Value: NatGateway : NAT Gateway.
|
|
1740
|
+
:param str route_table_id: The route table where the default route of the NAT gateway is located.
|
|
1741
|
+
"""
|
|
1742
|
+
pulumi.set(__self__, "destination_cidr", destination_cidr)
|
|
1743
|
+
pulumi.set(__self__, "nexthop_id", nexthop_id)
|
|
1744
|
+
pulumi.set(__self__, "nexthop_type", nexthop_type)
|
|
1745
|
+
pulumi.set(__self__, "route_table_id", route_table_id)
|
|
1746
|
+
|
|
1747
|
+
@property
|
|
1748
|
+
@pulumi.getter(name="destinationCidr")
|
|
1749
|
+
def destination_cidr(self) -> str:
|
|
1750
|
+
"""
|
|
1751
|
+
The destination network segment of the default route.
|
|
1752
|
+
"""
|
|
1753
|
+
return pulumi.get(self, "destination_cidr")
|
|
1754
|
+
|
|
1755
|
+
@property
|
|
1756
|
+
@pulumi.getter(name="nexthopId")
|
|
1757
|
+
def nexthop_id(self) -> str:
|
|
1758
|
+
"""
|
|
1759
|
+
The next hop address of the original NAT gateway.
|
|
1760
|
+
"""
|
|
1761
|
+
return pulumi.get(self, "nexthop_id")
|
|
1762
|
+
|
|
1763
|
+
@property
|
|
1764
|
+
@pulumi.getter(name="nexthopType")
|
|
1765
|
+
def nexthop_type(self) -> str:
|
|
1766
|
+
"""
|
|
1767
|
+
The network type of the next hop. Value: NatGateway : NAT Gateway.
|
|
1768
|
+
"""
|
|
1769
|
+
return pulumi.get(self, "nexthop_type")
|
|
1770
|
+
|
|
1771
|
+
@property
|
|
1772
|
+
@pulumi.getter(name="routeTableId")
|
|
1773
|
+
def route_table_id(self) -> str:
|
|
1774
|
+
"""
|
|
1775
|
+
The route table where the default route of the NAT gateway is located.
|
|
1776
|
+
"""
|
|
1777
|
+
return pulumi.get(self, "route_table_id")
|
|
1778
|
+
|
|
1779
|
+
|
|
1780
|
+
@pulumi.output_type
|
|
1781
|
+
class GetVpcCenTrFirewallsFirewallResult(dict):
|
|
1782
|
+
def __init__(__self__, *,
|
|
1783
|
+
cen_id: str,
|
|
1784
|
+
cen_name: str,
|
|
1785
|
+
firewall_id: str,
|
|
1786
|
+
firewall_name: str,
|
|
1787
|
+
firewall_switch_status: str,
|
|
1788
|
+
id: str,
|
|
1789
|
+
ips_config: 'outputs.GetVpcCenTrFirewallsFirewallIpsConfigResult',
|
|
1790
|
+
precheck_status: str,
|
|
1791
|
+
region_no: str,
|
|
1792
|
+
region_status: str,
|
|
1793
|
+
result_code: str,
|
|
1794
|
+
route_mode: str,
|
|
1795
|
+
transit_router_id: str):
|
|
1796
|
+
"""
|
|
1797
|
+
:param str cen_id: The ID of the CEN instance.
|
|
1798
|
+
:param str cen_name: The name of the CEN instance.
|
|
1799
|
+
:param str firewall_id: Firewall ID
|
|
1800
|
+
:param str firewall_name: The name of Cloud Firewall.
|
|
1801
|
+
:param str firewall_switch_status: The status of the VPC boundary firewall. Value:-**opened**: opened-**closed**: closed-**notconfigured**: indicates that the VPC boundary firewall has not been configured yet.-**configured**: indicates that the VPC boundary firewall has been configured.-**creating**: indicates that a VPC boundary firewall is being created.-**opening**: indicates that the VPC border firewall is being enabled.-**deleting**: indicates that the VPC boundary firewall is being deleted.> If this parameter is not set, the VPC boundary firewall in all states is queried.
|
|
1802
|
+
:param str id: The ID of the resource supplied above.
|
|
1803
|
+
:param 'GetVpcCenTrFirewallsFirewallIpsConfigArgs' ips_config: IPS configuration information.
|
|
1804
|
+
:param str precheck_status: Whether the wall can be opened automatically. Value:-**passed**: can automatically open the wall-**failed**: The wall cannot be opened automatically-**unknown**: unknown status
|
|
1805
|
+
:param str region_no: The region ID of the transit router instance.
|
|
1806
|
+
:param str region_status: Geographically open. Value:-**enable**: enabled, indicating that the VPC border firewall can be configured for the region.-**disable**: Not enabled, indicating that the VPC boundary firewall is not allowed for the region.
|
|
1807
|
+
:param str result_code: The operation result code of creating the VPC boundary firewall. Value:-**RegionDisable**: indicates that the region where the network instance is located is not supported by the VPC border firewall. You cannot create a VPC border firewall.-**Empty string**, indicating that the network instance can create a VPC firewall.
|
|
1808
|
+
:param str route_mode: The routing pattern. Value: managed: indicates automatic mode
|
|
1809
|
+
:param str transit_router_id: The ID of the transit router instance.
|
|
1810
|
+
"""
|
|
1811
|
+
pulumi.set(__self__, "cen_id", cen_id)
|
|
1812
|
+
pulumi.set(__self__, "cen_name", cen_name)
|
|
1813
|
+
pulumi.set(__self__, "firewall_id", firewall_id)
|
|
1814
|
+
pulumi.set(__self__, "firewall_name", firewall_name)
|
|
1815
|
+
pulumi.set(__self__, "firewall_switch_status", firewall_switch_status)
|
|
1816
|
+
pulumi.set(__self__, "id", id)
|
|
1817
|
+
pulumi.set(__self__, "ips_config", ips_config)
|
|
1818
|
+
pulumi.set(__self__, "precheck_status", precheck_status)
|
|
1819
|
+
pulumi.set(__self__, "region_no", region_no)
|
|
1820
|
+
pulumi.set(__self__, "region_status", region_status)
|
|
1821
|
+
pulumi.set(__self__, "result_code", result_code)
|
|
1822
|
+
pulumi.set(__self__, "route_mode", route_mode)
|
|
1823
|
+
pulumi.set(__self__, "transit_router_id", transit_router_id)
|
|
1824
|
+
|
|
1825
|
+
@property
|
|
1826
|
+
@pulumi.getter(name="cenId")
|
|
1827
|
+
def cen_id(self) -> str:
|
|
1828
|
+
"""
|
|
1829
|
+
The ID of the CEN instance.
|
|
1830
|
+
"""
|
|
1831
|
+
return pulumi.get(self, "cen_id")
|
|
1832
|
+
|
|
1833
|
+
@property
|
|
1834
|
+
@pulumi.getter(name="cenName")
|
|
1835
|
+
def cen_name(self) -> str:
|
|
1836
|
+
"""
|
|
1837
|
+
The name of the CEN instance.
|
|
1838
|
+
"""
|
|
1839
|
+
return pulumi.get(self, "cen_name")
|
|
1840
|
+
|
|
1841
|
+
@property
|
|
1842
|
+
@pulumi.getter(name="firewallId")
|
|
1843
|
+
def firewall_id(self) -> str:
|
|
1844
|
+
"""
|
|
1845
|
+
Firewall ID
|
|
1846
|
+
"""
|
|
1847
|
+
return pulumi.get(self, "firewall_id")
|
|
1848
|
+
|
|
1849
|
+
@property
|
|
1850
|
+
@pulumi.getter(name="firewallName")
|
|
1851
|
+
def firewall_name(self) -> str:
|
|
1852
|
+
"""
|
|
1853
|
+
The name of Cloud Firewall.
|
|
1854
|
+
"""
|
|
1855
|
+
return pulumi.get(self, "firewall_name")
|
|
1856
|
+
|
|
1857
|
+
@property
|
|
1858
|
+
@pulumi.getter(name="firewallSwitchStatus")
|
|
1859
|
+
def firewall_switch_status(self) -> str:
|
|
1860
|
+
"""
|
|
1861
|
+
The status of the VPC boundary firewall. Value:-**opened**: opened-**closed**: closed-**notconfigured**: indicates that the VPC boundary firewall has not been configured yet.-**configured**: indicates that the VPC boundary firewall has been configured.-**creating**: indicates that a VPC boundary firewall is being created.-**opening**: indicates that the VPC border firewall is being enabled.-**deleting**: indicates that the VPC boundary firewall is being deleted.> If this parameter is not set, the VPC boundary firewall in all states is queried.
|
|
1862
|
+
"""
|
|
1863
|
+
return pulumi.get(self, "firewall_switch_status")
|
|
1864
|
+
|
|
1865
|
+
@property
|
|
1866
|
+
@pulumi.getter
|
|
1867
|
+
def id(self) -> str:
|
|
1868
|
+
"""
|
|
1869
|
+
The ID of the resource supplied above.
|
|
1870
|
+
"""
|
|
1871
|
+
return pulumi.get(self, "id")
|
|
1872
|
+
|
|
1873
|
+
@property
|
|
1874
|
+
@pulumi.getter(name="ipsConfig")
|
|
1875
|
+
def ips_config(self) -> 'outputs.GetVpcCenTrFirewallsFirewallIpsConfigResult':
|
|
1876
|
+
"""
|
|
1877
|
+
IPS configuration information.
|
|
1878
|
+
"""
|
|
1879
|
+
return pulumi.get(self, "ips_config")
|
|
1880
|
+
|
|
1881
|
+
@property
|
|
1882
|
+
@pulumi.getter(name="precheckStatus")
|
|
1883
|
+
def precheck_status(self) -> str:
|
|
1884
|
+
"""
|
|
1885
|
+
Whether the wall can be opened automatically. Value:-**passed**: can automatically open the wall-**failed**: The wall cannot be opened automatically-**unknown**: unknown status
|
|
1886
|
+
"""
|
|
1887
|
+
return pulumi.get(self, "precheck_status")
|
|
1888
|
+
|
|
1889
|
+
@property
|
|
1890
|
+
@pulumi.getter(name="regionNo")
|
|
1891
|
+
def region_no(self) -> str:
|
|
1892
|
+
"""
|
|
1893
|
+
The region ID of the transit router instance.
|
|
1894
|
+
"""
|
|
1895
|
+
return pulumi.get(self, "region_no")
|
|
1896
|
+
|
|
1897
|
+
@property
|
|
1898
|
+
@pulumi.getter(name="regionStatus")
|
|
1899
|
+
def region_status(self) -> str:
|
|
1900
|
+
"""
|
|
1901
|
+
Geographically open. Value:-**enable**: enabled, indicating that the VPC border firewall can be configured for the region.-**disable**: Not enabled, indicating that the VPC boundary firewall is not allowed for the region.
|
|
1902
|
+
"""
|
|
1903
|
+
return pulumi.get(self, "region_status")
|
|
1904
|
+
|
|
1905
|
+
@property
|
|
1906
|
+
@pulumi.getter(name="resultCode")
|
|
1907
|
+
def result_code(self) -> str:
|
|
1908
|
+
"""
|
|
1909
|
+
The operation result code of creating the VPC boundary firewall. Value:-**RegionDisable**: indicates that the region where the network instance is located is not supported by the VPC border firewall. You cannot create a VPC border firewall.-**Empty string**, indicating that the network instance can create a VPC firewall.
|
|
1910
|
+
"""
|
|
1911
|
+
return pulumi.get(self, "result_code")
|
|
1912
|
+
|
|
1913
|
+
@property
|
|
1914
|
+
@pulumi.getter(name="routeMode")
|
|
1915
|
+
def route_mode(self) -> str:
|
|
1916
|
+
"""
|
|
1917
|
+
The routing pattern. Value: managed: indicates automatic mode
|
|
1918
|
+
"""
|
|
1919
|
+
return pulumi.get(self, "route_mode")
|
|
1920
|
+
|
|
1921
|
+
@property
|
|
1922
|
+
@pulumi.getter(name="transitRouterId")
|
|
1923
|
+
def transit_router_id(self) -> str:
|
|
1924
|
+
"""
|
|
1925
|
+
The ID of the transit router instance.
|
|
1926
|
+
"""
|
|
1927
|
+
return pulumi.get(self, "transit_router_id")
|
|
1928
|
+
|
|
1929
|
+
|
|
1930
|
+
@pulumi.output_type
|
|
1931
|
+
class GetVpcCenTrFirewallsFirewallIpsConfigResult(dict):
|
|
1932
|
+
def __init__(__self__, *,
|
|
1933
|
+
basic_rules: int,
|
|
1934
|
+
enable_all_patch: int,
|
|
1935
|
+
run_mode: int):
|
|
1936
|
+
"""
|
|
1937
|
+
:param int basic_rules: Basic rule switch. Value:-**1**: On-**0**: Closed state.
|
|
1938
|
+
:param int enable_all_patch: Virtual patch switch. Value:-**1**: On-**0**: Closed state.
|
|
1939
|
+
:param int run_mode: IPS defense mode. Value:-**1**: Intercept mode-**0**: Observation mode.
|
|
1940
|
+
"""
|
|
1941
|
+
pulumi.set(__self__, "basic_rules", basic_rules)
|
|
1942
|
+
pulumi.set(__self__, "enable_all_patch", enable_all_patch)
|
|
1943
|
+
pulumi.set(__self__, "run_mode", run_mode)
|
|
1944
|
+
|
|
1945
|
+
@property
|
|
1946
|
+
@pulumi.getter(name="basicRules")
|
|
1947
|
+
def basic_rules(self) -> int:
|
|
1948
|
+
"""
|
|
1949
|
+
Basic rule switch. Value:-**1**: On-**0**: Closed state.
|
|
1950
|
+
"""
|
|
1951
|
+
return pulumi.get(self, "basic_rules")
|
|
1952
|
+
|
|
1953
|
+
@property
|
|
1954
|
+
@pulumi.getter(name="enableAllPatch")
|
|
1955
|
+
def enable_all_patch(self) -> int:
|
|
1956
|
+
"""
|
|
1957
|
+
Virtual patch switch. Value:-**1**: On-**0**: Closed state.
|
|
1958
|
+
"""
|
|
1959
|
+
return pulumi.get(self, "enable_all_patch")
|
|
1960
|
+
|
|
1961
|
+
@property
|
|
1962
|
+
@pulumi.getter(name="runMode")
|
|
1963
|
+
def run_mode(self) -> int:
|
|
1964
|
+
"""
|
|
1965
|
+
IPS defense mode. Value:-**1**: Intercept mode-**0**: Observation mode.
|
|
1966
|
+
"""
|
|
1967
|
+
return pulumi.get(self, "run_mode")
|
|
1968
|
+
|
|
1969
|
+
|
|
1608
1970
|
@pulumi.output_type
|
|
1609
1971
|
class GetVpcFirewallCensCenResult(dict):
|
|
1610
1972
|
def __init__(__self__, *,
|
|
@@ -0,0 +1,12 @@
|
|
|
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
|
+
from .. import _utilities
|
|
6
|
+
import typing
|
|
7
|
+
# Export this package's modules as members:
|
|
8
|
+
from .image import *
|
|
9
|
+
from .key_pair import *
|
|
10
|
+
from .policy import *
|
|
11
|
+
from ._inputs import *
|
|
12
|
+
from . import outputs
|
|
@@ -0,0 +1,175 @@
|
|
|
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__ = [
|
|
18
|
+
'PolicyNetRedirectPolicyArgs',
|
|
19
|
+
'PolicyNetRedirectPolicyArgsDict',
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
MYPY = False
|
|
23
|
+
|
|
24
|
+
if not MYPY:
|
|
25
|
+
class PolicyNetRedirectPolicyArgsDict(TypedDict):
|
|
26
|
+
custom_proxy: NotRequired[pulumi.Input[str]]
|
|
27
|
+
"""
|
|
28
|
+
Whether to manually configure the transparent proxy.
|
|
29
|
+
"""
|
|
30
|
+
host_addr: NotRequired[pulumi.Input[str]]
|
|
31
|
+
"""
|
|
32
|
+
The transparent proxy IP address. The format is IPv4 address.
|
|
33
|
+
"""
|
|
34
|
+
net_redirect: NotRequired[pulumi.Input[str]]
|
|
35
|
+
"""
|
|
36
|
+
Whether to enable network redirection.
|
|
37
|
+
"""
|
|
38
|
+
port: NotRequired[pulumi.Input[str]]
|
|
39
|
+
"""
|
|
40
|
+
Transparent proxy port. The Port value range is 1\\~ 65535.
|
|
41
|
+
"""
|
|
42
|
+
proxy_password: NotRequired[pulumi.Input[str]]
|
|
43
|
+
"""
|
|
44
|
+
The proxy password. The length range is 1\\~ 256. Chinese characters and white space characters are not allowed.
|
|
45
|
+
"""
|
|
46
|
+
proxy_type: NotRequired[pulumi.Input[str]]
|
|
47
|
+
"""
|
|
48
|
+
Agent protocol type.
|
|
49
|
+
"""
|
|
50
|
+
proxy_user_name: NotRequired[pulumi.Input[str]]
|
|
51
|
+
"""
|
|
52
|
+
The proxy user name. The length range is 1\\~ 256. Chinese characters and white space characters are not allowed.
|
|
53
|
+
"""
|
|
54
|
+
elif False:
|
|
55
|
+
PolicyNetRedirectPolicyArgsDict: TypeAlias = Mapping[str, Any]
|
|
56
|
+
|
|
57
|
+
@pulumi.input_type
|
|
58
|
+
class PolicyNetRedirectPolicyArgs:
|
|
59
|
+
def __init__(__self__, *,
|
|
60
|
+
custom_proxy: Optional[pulumi.Input[str]] = None,
|
|
61
|
+
host_addr: Optional[pulumi.Input[str]] = None,
|
|
62
|
+
net_redirect: Optional[pulumi.Input[str]] = None,
|
|
63
|
+
port: Optional[pulumi.Input[str]] = None,
|
|
64
|
+
proxy_password: Optional[pulumi.Input[str]] = None,
|
|
65
|
+
proxy_type: Optional[pulumi.Input[str]] = None,
|
|
66
|
+
proxy_user_name: Optional[pulumi.Input[str]] = None):
|
|
67
|
+
"""
|
|
68
|
+
:param pulumi.Input[str] custom_proxy: Whether to manually configure the transparent proxy.
|
|
69
|
+
:param pulumi.Input[str] host_addr: The transparent proxy IP address. The format is IPv4 address.
|
|
70
|
+
:param pulumi.Input[str] net_redirect: Whether to enable network redirection.
|
|
71
|
+
:param pulumi.Input[str] port: Transparent proxy port. The Port value range is 1\\~ 65535.
|
|
72
|
+
:param pulumi.Input[str] proxy_password: The proxy password. The length range is 1\\~ 256. Chinese characters and white space characters are not allowed.
|
|
73
|
+
:param pulumi.Input[str] proxy_type: Agent protocol type.
|
|
74
|
+
:param pulumi.Input[str] proxy_user_name: The proxy user name. The length range is 1\\~ 256. Chinese characters and white space characters are not allowed.
|
|
75
|
+
"""
|
|
76
|
+
if custom_proxy is not None:
|
|
77
|
+
pulumi.set(__self__, "custom_proxy", custom_proxy)
|
|
78
|
+
if host_addr is not None:
|
|
79
|
+
pulumi.set(__self__, "host_addr", host_addr)
|
|
80
|
+
if net_redirect is not None:
|
|
81
|
+
pulumi.set(__self__, "net_redirect", net_redirect)
|
|
82
|
+
if port is not None:
|
|
83
|
+
pulumi.set(__self__, "port", port)
|
|
84
|
+
if proxy_password is not None:
|
|
85
|
+
pulumi.set(__self__, "proxy_password", proxy_password)
|
|
86
|
+
if proxy_type is not None:
|
|
87
|
+
pulumi.set(__self__, "proxy_type", proxy_type)
|
|
88
|
+
if proxy_user_name is not None:
|
|
89
|
+
pulumi.set(__self__, "proxy_user_name", proxy_user_name)
|
|
90
|
+
|
|
91
|
+
@property
|
|
92
|
+
@pulumi.getter(name="customProxy")
|
|
93
|
+
def custom_proxy(self) -> Optional[pulumi.Input[str]]:
|
|
94
|
+
"""
|
|
95
|
+
Whether to manually configure the transparent proxy.
|
|
96
|
+
"""
|
|
97
|
+
return pulumi.get(self, "custom_proxy")
|
|
98
|
+
|
|
99
|
+
@custom_proxy.setter
|
|
100
|
+
def custom_proxy(self, value: Optional[pulumi.Input[str]]):
|
|
101
|
+
pulumi.set(self, "custom_proxy", value)
|
|
102
|
+
|
|
103
|
+
@property
|
|
104
|
+
@pulumi.getter(name="hostAddr")
|
|
105
|
+
def host_addr(self) -> Optional[pulumi.Input[str]]:
|
|
106
|
+
"""
|
|
107
|
+
The transparent proxy IP address. The format is IPv4 address.
|
|
108
|
+
"""
|
|
109
|
+
return pulumi.get(self, "host_addr")
|
|
110
|
+
|
|
111
|
+
@host_addr.setter
|
|
112
|
+
def host_addr(self, value: Optional[pulumi.Input[str]]):
|
|
113
|
+
pulumi.set(self, "host_addr", value)
|
|
114
|
+
|
|
115
|
+
@property
|
|
116
|
+
@pulumi.getter(name="netRedirect")
|
|
117
|
+
def net_redirect(self) -> Optional[pulumi.Input[str]]:
|
|
118
|
+
"""
|
|
119
|
+
Whether to enable network redirection.
|
|
120
|
+
"""
|
|
121
|
+
return pulumi.get(self, "net_redirect")
|
|
122
|
+
|
|
123
|
+
@net_redirect.setter
|
|
124
|
+
def net_redirect(self, value: Optional[pulumi.Input[str]]):
|
|
125
|
+
pulumi.set(self, "net_redirect", value)
|
|
126
|
+
|
|
127
|
+
@property
|
|
128
|
+
@pulumi.getter
|
|
129
|
+
def port(self) -> Optional[pulumi.Input[str]]:
|
|
130
|
+
"""
|
|
131
|
+
Transparent proxy port. The Port value range is 1\\~ 65535.
|
|
132
|
+
"""
|
|
133
|
+
return pulumi.get(self, "port")
|
|
134
|
+
|
|
135
|
+
@port.setter
|
|
136
|
+
def port(self, value: Optional[pulumi.Input[str]]):
|
|
137
|
+
pulumi.set(self, "port", value)
|
|
138
|
+
|
|
139
|
+
@property
|
|
140
|
+
@pulumi.getter(name="proxyPassword")
|
|
141
|
+
def proxy_password(self) -> Optional[pulumi.Input[str]]:
|
|
142
|
+
"""
|
|
143
|
+
The proxy password. The length range is 1\\~ 256. Chinese characters and white space characters are not allowed.
|
|
144
|
+
"""
|
|
145
|
+
return pulumi.get(self, "proxy_password")
|
|
146
|
+
|
|
147
|
+
@proxy_password.setter
|
|
148
|
+
def proxy_password(self, value: Optional[pulumi.Input[str]]):
|
|
149
|
+
pulumi.set(self, "proxy_password", value)
|
|
150
|
+
|
|
151
|
+
@property
|
|
152
|
+
@pulumi.getter(name="proxyType")
|
|
153
|
+
def proxy_type(self) -> Optional[pulumi.Input[str]]:
|
|
154
|
+
"""
|
|
155
|
+
Agent protocol type.
|
|
156
|
+
"""
|
|
157
|
+
return pulumi.get(self, "proxy_type")
|
|
158
|
+
|
|
159
|
+
@proxy_type.setter
|
|
160
|
+
def proxy_type(self, value: Optional[pulumi.Input[str]]):
|
|
161
|
+
pulumi.set(self, "proxy_type", value)
|
|
162
|
+
|
|
163
|
+
@property
|
|
164
|
+
@pulumi.getter(name="proxyUserName")
|
|
165
|
+
def proxy_user_name(self) -> Optional[pulumi.Input[str]]:
|
|
166
|
+
"""
|
|
167
|
+
The proxy user name. The length range is 1\\~ 256. Chinese characters and white space characters are not allowed.
|
|
168
|
+
"""
|
|
169
|
+
return pulumi.get(self, "proxy_user_name")
|
|
170
|
+
|
|
171
|
+
@proxy_user_name.setter
|
|
172
|
+
def proxy_user_name(self, value: Optional[pulumi.Input[str]]):
|
|
173
|
+
pulumi.set(self, "proxy_user_name", value)
|
|
174
|
+
|
|
175
|
+
|