pulumi-alicloud 3.75.0a1741324537__py3-none-any.whl → 3.76.0a1741410947__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.0a1741324537.dist-info → pulumi_alicloud-3.76.0a1741410947.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.75.0a1741324537.dist-info → pulumi_alicloud-3.76.0a1741410947.dist-info}/RECORD +164 -127
- {pulumi_alicloud-3.75.0a1741324537.dist-info → pulumi_alicloud-3.76.0a1741410947.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.75.0a1741324537.dist-info → pulumi_alicloud-3.76.0a1741410947.dist-info}/top_level.txt +0 -0
pulumi_alicloud/__init__.py
CHANGED
|
@@ -77,6 +77,10 @@ if typing.TYPE_CHECKING:
|
|
|
77
77
|
cloudfirewall = __cloudfirewall
|
|
78
78
|
import pulumi_alicloud.cloudmonitor as __cloudmonitor
|
|
79
79
|
cloudmonitor = __cloudmonitor
|
|
80
|
+
import pulumi_alicloud.cloudphone as __cloudphone
|
|
81
|
+
cloudphone = __cloudphone
|
|
82
|
+
import pulumi_alicloud.cloudphoneinstance as __cloudphoneinstance
|
|
83
|
+
cloudphoneinstance = __cloudphoneinstance
|
|
80
84
|
import pulumi_alicloud.cloudsso as __cloudsso
|
|
81
85
|
cloudsso = __cloudsso
|
|
82
86
|
import pulumi_alicloud.cloudstoragegateway as __cloudstoragegateway
|
|
@@ -325,6 +329,8 @@ else:
|
|
|
325
329
|
cloudcontrol = _utilities.lazy_import('pulumi_alicloud.cloudcontrol')
|
|
326
330
|
cloudfirewall = _utilities.lazy_import('pulumi_alicloud.cloudfirewall')
|
|
327
331
|
cloudmonitor = _utilities.lazy_import('pulumi_alicloud.cloudmonitor')
|
|
332
|
+
cloudphone = _utilities.lazy_import('pulumi_alicloud.cloudphone')
|
|
333
|
+
cloudphoneinstance = _utilities.lazy_import('pulumi_alicloud.cloudphoneinstance')
|
|
328
334
|
cloudsso = _utilities.lazy_import('pulumi_alicloud.cloudsso')
|
|
329
335
|
cloudstoragegateway = _utilities.lazy_import('pulumi_alicloud.cloudstoragegateway')
|
|
330
336
|
cms = _utilities.lazy_import('pulumi_alicloud.cms')
|
|
@@ -447,6 +453,14 @@ _utilities.register(
|
|
|
447
453
|
"alicloud:ackone/cluster:Cluster": "Cluster"
|
|
448
454
|
}
|
|
449
455
|
},
|
|
456
|
+
{
|
|
457
|
+
"pkg": "alicloud",
|
|
458
|
+
"mod": "ackone/membershipAttachment",
|
|
459
|
+
"fqn": "pulumi_alicloud.ackone",
|
|
460
|
+
"classes": {
|
|
461
|
+
"alicloud:ackone/membershipAttachment:MembershipAttachment": "MembershipAttachment"
|
|
462
|
+
}
|
|
463
|
+
},
|
|
450
464
|
{
|
|
451
465
|
"pkg": "alicloud",
|
|
452
466
|
"mod": "actiontrail/globalEventsStorageRegion",
|
|
@@ -1895,6 +1909,46 @@ _utilities.register(
|
|
|
1895
1909
|
"alicloud:cloudmonitor/serviceMonitoringAgentProcess:ServiceMonitoringAgentProcess": "ServiceMonitoringAgentProcess"
|
|
1896
1910
|
}
|
|
1897
1911
|
},
|
|
1912
|
+
{
|
|
1913
|
+
"pkg": "alicloud",
|
|
1914
|
+
"mod": "cloudphone/image",
|
|
1915
|
+
"fqn": "pulumi_alicloud.cloudphone",
|
|
1916
|
+
"classes": {
|
|
1917
|
+
"alicloud:cloudphone/image:Image": "Image"
|
|
1918
|
+
}
|
|
1919
|
+
},
|
|
1920
|
+
{
|
|
1921
|
+
"pkg": "alicloud",
|
|
1922
|
+
"mod": "cloudphone/keyPair",
|
|
1923
|
+
"fqn": "pulumi_alicloud.cloudphone",
|
|
1924
|
+
"classes": {
|
|
1925
|
+
"alicloud:cloudphone/keyPair:KeyPair": "KeyPair"
|
|
1926
|
+
}
|
|
1927
|
+
},
|
|
1928
|
+
{
|
|
1929
|
+
"pkg": "alicloud",
|
|
1930
|
+
"mod": "cloudphone/policy",
|
|
1931
|
+
"fqn": "pulumi_alicloud.cloudphone",
|
|
1932
|
+
"classes": {
|
|
1933
|
+
"alicloud:cloudphone/policy:Policy": "Policy"
|
|
1934
|
+
}
|
|
1935
|
+
},
|
|
1936
|
+
{
|
|
1937
|
+
"pkg": "alicloud",
|
|
1938
|
+
"mod": "cloudphoneinstance/cloudPhoneInstance",
|
|
1939
|
+
"fqn": "pulumi_alicloud.cloudphoneinstance",
|
|
1940
|
+
"classes": {
|
|
1941
|
+
"alicloud:cloudphoneinstance/cloudPhoneInstance:CloudPhoneInstance": "CloudPhoneInstance"
|
|
1942
|
+
}
|
|
1943
|
+
},
|
|
1944
|
+
{
|
|
1945
|
+
"pkg": "alicloud",
|
|
1946
|
+
"mod": "cloudphoneinstance/group",
|
|
1947
|
+
"fqn": "pulumi_alicloud.cloudphoneinstance",
|
|
1948
|
+
"classes": {
|
|
1949
|
+
"alicloud:cloudphoneinstance/group:Group": "Group"
|
|
1950
|
+
}
|
|
1951
|
+
},
|
|
1898
1952
|
{
|
|
1899
1953
|
"pkg": "alicloud",
|
|
1900
1954
|
"mod": "cloudsso/accessConfiguration",
|
|
@@ -3903,6 +3957,46 @@ _utilities.register(
|
|
|
3903
3957
|
"alicloud:ens/vswitch:Vswitch": "Vswitch"
|
|
3904
3958
|
}
|
|
3905
3959
|
},
|
|
3960
|
+
{
|
|
3961
|
+
"pkg": "alicloud",
|
|
3962
|
+
"mod": "esa/cacheRule",
|
|
3963
|
+
"fqn": "pulumi_alicloud.esa",
|
|
3964
|
+
"classes": {
|
|
3965
|
+
"alicloud:esa/cacheRule:CacheRule": "CacheRule"
|
|
3966
|
+
}
|
|
3967
|
+
},
|
|
3968
|
+
{
|
|
3969
|
+
"pkg": "alicloud",
|
|
3970
|
+
"mod": "esa/certificate",
|
|
3971
|
+
"fqn": "pulumi_alicloud.esa",
|
|
3972
|
+
"classes": {
|
|
3973
|
+
"alicloud:esa/certificate:Certificate": "Certificate"
|
|
3974
|
+
}
|
|
3975
|
+
},
|
|
3976
|
+
{
|
|
3977
|
+
"pkg": "alicloud",
|
|
3978
|
+
"mod": "esa/clientCaCertificate",
|
|
3979
|
+
"fqn": "pulumi_alicloud.esa",
|
|
3980
|
+
"classes": {
|
|
3981
|
+
"alicloud:esa/clientCaCertificate:ClientCaCertificate": "ClientCaCertificate"
|
|
3982
|
+
}
|
|
3983
|
+
},
|
|
3984
|
+
{
|
|
3985
|
+
"pkg": "alicloud",
|
|
3986
|
+
"mod": "esa/clientCertificate",
|
|
3987
|
+
"fqn": "pulumi_alicloud.esa",
|
|
3988
|
+
"classes": {
|
|
3989
|
+
"alicloud:esa/clientCertificate:ClientCertificate": "ClientCertificate"
|
|
3990
|
+
}
|
|
3991
|
+
},
|
|
3992
|
+
{
|
|
3993
|
+
"pkg": "alicloud",
|
|
3994
|
+
"mod": "esa/compressionRule",
|
|
3995
|
+
"fqn": "pulumi_alicloud.esa",
|
|
3996
|
+
"classes": {
|
|
3997
|
+
"alicloud:esa/compressionRule:CompressionRule": "CompressionRule"
|
|
3998
|
+
}
|
|
3999
|
+
},
|
|
3906
4000
|
{
|
|
3907
4001
|
"pkg": "alicloud",
|
|
3908
4002
|
"mod": "esa/httpRequestHeaderModificationRule",
|
|
@@ -3911,6 +4005,46 @@ _utilities.register(
|
|
|
3911
4005
|
"alicloud:esa/httpRequestHeaderModificationRule:HttpRequestHeaderModificationRule": "HttpRequestHeaderModificationRule"
|
|
3912
4006
|
}
|
|
3913
4007
|
},
|
|
4008
|
+
{
|
|
4009
|
+
"pkg": "alicloud",
|
|
4010
|
+
"mod": "esa/httpResponseHeaderModificationRule",
|
|
4011
|
+
"fqn": "pulumi_alicloud.esa",
|
|
4012
|
+
"classes": {
|
|
4013
|
+
"alicloud:esa/httpResponseHeaderModificationRule:HttpResponseHeaderModificationRule": "HttpResponseHeaderModificationRule"
|
|
4014
|
+
}
|
|
4015
|
+
},
|
|
4016
|
+
{
|
|
4017
|
+
"pkg": "alicloud",
|
|
4018
|
+
"mod": "esa/httpsApplicationConfiguration",
|
|
4019
|
+
"fqn": "pulumi_alicloud.esa",
|
|
4020
|
+
"classes": {
|
|
4021
|
+
"alicloud:esa/httpsApplicationConfiguration:HttpsApplicationConfiguration": "HttpsApplicationConfiguration"
|
|
4022
|
+
}
|
|
4023
|
+
},
|
|
4024
|
+
{
|
|
4025
|
+
"pkg": "alicloud",
|
|
4026
|
+
"mod": "esa/httpsBasicConfiguration",
|
|
4027
|
+
"fqn": "pulumi_alicloud.esa",
|
|
4028
|
+
"classes": {
|
|
4029
|
+
"alicloud:esa/httpsBasicConfiguration:HttpsBasicConfiguration": "HttpsBasicConfiguration"
|
|
4030
|
+
}
|
|
4031
|
+
},
|
|
4032
|
+
{
|
|
4033
|
+
"pkg": "alicloud",
|
|
4034
|
+
"mod": "esa/imageTransform",
|
|
4035
|
+
"fqn": "pulumi_alicloud.esa",
|
|
4036
|
+
"classes": {
|
|
4037
|
+
"alicloud:esa/imageTransform:ImageTransform": "ImageTransform"
|
|
4038
|
+
}
|
|
4039
|
+
},
|
|
4040
|
+
{
|
|
4041
|
+
"pkg": "alicloud",
|
|
4042
|
+
"mod": "esa/kvNamespace",
|
|
4043
|
+
"fqn": "pulumi_alicloud.esa",
|
|
4044
|
+
"classes": {
|
|
4045
|
+
"alicloud:esa/kvNamespace:KvNamespace": "KvNamespace"
|
|
4046
|
+
}
|
|
4047
|
+
},
|
|
3914
4048
|
{
|
|
3915
4049
|
"pkg": "alicloud",
|
|
3916
4050
|
"mod": "esa/list",
|
|
@@ -3919,6 +4053,30 @@ _utilities.register(
|
|
|
3919
4053
|
"alicloud:esa/list:List": "List"
|
|
3920
4054
|
}
|
|
3921
4055
|
},
|
|
4056
|
+
{
|
|
4057
|
+
"pkg": "alicloud",
|
|
4058
|
+
"mod": "esa/networkOptimization",
|
|
4059
|
+
"fqn": "pulumi_alicloud.esa",
|
|
4060
|
+
"classes": {
|
|
4061
|
+
"alicloud:esa/networkOptimization:NetworkOptimization": "NetworkOptimization"
|
|
4062
|
+
}
|
|
4063
|
+
},
|
|
4064
|
+
{
|
|
4065
|
+
"pkg": "alicloud",
|
|
4066
|
+
"mod": "esa/originPool",
|
|
4067
|
+
"fqn": "pulumi_alicloud.esa",
|
|
4068
|
+
"classes": {
|
|
4069
|
+
"alicloud:esa/originPool:OriginPool": "OriginPool"
|
|
4070
|
+
}
|
|
4071
|
+
},
|
|
4072
|
+
{
|
|
4073
|
+
"pkg": "alicloud",
|
|
4074
|
+
"mod": "esa/originRule",
|
|
4075
|
+
"fqn": "pulumi_alicloud.esa",
|
|
4076
|
+
"classes": {
|
|
4077
|
+
"alicloud:esa/originRule:OriginRule": "OriginRule"
|
|
4078
|
+
}
|
|
4079
|
+
},
|
|
3922
4080
|
{
|
|
3923
4081
|
"pkg": "alicloud",
|
|
3924
4082
|
"mod": "esa/page",
|
|
@@ -3943,6 +4101,22 @@ _utilities.register(
|
|
|
3943
4101
|
"alicloud:esa/record:Record": "Record"
|
|
3944
4102
|
}
|
|
3945
4103
|
},
|
|
4104
|
+
{
|
|
4105
|
+
"pkg": "alicloud",
|
|
4106
|
+
"mod": "esa/redirectRule",
|
|
4107
|
+
"fqn": "pulumi_alicloud.esa",
|
|
4108
|
+
"classes": {
|
|
4109
|
+
"alicloud:esa/redirectRule:RedirectRule": "RedirectRule"
|
|
4110
|
+
}
|
|
4111
|
+
},
|
|
4112
|
+
{
|
|
4113
|
+
"pkg": "alicloud",
|
|
4114
|
+
"mod": "esa/rewriteUrlRule",
|
|
4115
|
+
"fqn": "pulumi_alicloud.esa",
|
|
4116
|
+
"classes": {
|
|
4117
|
+
"alicloud:esa/rewriteUrlRule:RewriteUrlRule": "RewriteUrlRule"
|
|
4118
|
+
}
|
|
4119
|
+
},
|
|
3946
4120
|
{
|
|
3947
4121
|
"pkg": "alicloud",
|
|
3948
4122
|
"mod": "esa/site",
|
|
@@ -3951,6 +4125,30 @@ _utilities.register(
|
|
|
3951
4125
|
"alicloud:esa/site:Site": "Site"
|
|
3952
4126
|
}
|
|
3953
4127
|
},
|
|
4128
|
+
{
|
|
4129
|
+
"pkg": "alicloud",
|
|
4130
|
+
"mod": "esa/waitingRoom",
|
|
4131
|
+
"fqn": "pulumi_alicloud.esa",
|
|
4132
|
+
"classes": {
|
|
4133
|
+
"alicloud:esa/waitingRoom:WaitingRoom": "WaitingRoom"
|
|
4134
|
+
}
|
|
4135
|
+
},
|
|
4136
|
+
{
|
|
4137
|
+
"pkg": "alicloud",
|
|
4138
|
+
"mod": "esa/waitingRoomEvent",
|
|
4139
|
+
"fqn": "pulumi_alicloud.esa",
|
|
4140
|
+
"classes": {
|
|
4141
|
+
"alicloud:esa/waitingRoomEvent:WaitingRoomEvent": "WaitingRoomEvent"
|
|
4142
|
+
}
|
|
4143
|
+
},
|
|
4144
|
+
{
|
|
4145
|
+
"pkg": "alicloud",
|
|
4146
|
+
"mod": "esa/waitingRoomRule",
|
|
4147
|
+
"fqn": "pulumi_alicloud.esa",
|
|
4148
|
+
"classes": {
|
|
4149
|
+
"alicloud:esa/waitingRoomRule:WaitingRoomRule": "WaitingRoomRule"
|
|
4150
|
+
}
|
|
4151
|
+
},
|
|
3954
4152
|
{
|
|
3955
4153
|
"pkg": "alicloud",
|
|
3956
4154
|
"mod": "ess/alarm",
|
|
@@ -5295,6 +5493,22 @@ _utilities.register(
|
|
|
5295
5493
|
"alicloud:maxcompute/tunnelQuotaTimer:TunnelQuotaTimer": "TunnelQuotaTimer"
|
|
5296
5494
|
}
|
|
5297
5495
|
},
|
|
5496
|
+
{
|
|
5497
|
+
"pkg": "alicloud",
|
|
5498
|
+
"mod": "message/serviceEndpoint",
|
|
5499
|
+
"fqn": "pulumi_alicloud.message",
|
|
5500
|
+
"classes": {
|
|
5501
|
+
"alicloud:message/serviceEndpoint:ServiceEndpoint": "ServiceEndpoint"
|
|
5502
|
+
}
|
|
5503
|
+
},
|
|
5504
|
+
{
|
|
5505
|
+
"pkg": "alicloud",
|
|
5506
|
+
"mod": "message/serviceEndpointAcl",
|
|
5507
|
+
"fqn": "pulumi_alicloud.message",
|
|
5508
|
+
"classes": {
|
|
5509
|
+
"alicloud:message/serviceEndpointAcl:ServiceEndpointAcl": "ServiceEndpointAcl"
|
|
5510
|
+
}
|
|
5511
|
+
},
|
|
5298
5512
|
{
|
|
5299
5513
|
"pkg": "alicloud",
|
|
5300
5514
|
"mod": "message/serviceQueue",
|
|
@@ -7327,6 +7541,14 @@ _utilities.register(
|
|
|
7327
7541
|
"alicloud:sms/shortUrl:ShortUrl": "ShortUrl"
|
|
7328
7542
|
}
|
|
7329
7543
|
},
|
|
7544
|
+
{
|
|
7545
|
+
"pkg": "alicloud",
|
|
7546
|
+
"mod": "tag/associatedRule",
|
|
7547
|
+
"fqn": "pulumi_alicloud.tag",
|
|
7548
|
+
"classes": {
|
|
7549
|
+
"alicloud:tag/associatedRule:AssociatedRule": "AssociatedRule"
|
|
7550
|
+
}
|
|
7551
|
+
},
|
|
7330
7552
|
{
|
|
7331
7553
|
"pkg": "alicloud",
|
|
7332
7554
|
"mod": "tag/metaTag",
|
|
@@ -7671,6 +7893,14 @@ _utilities.register(
|
|
|
7671
7893
|
"alicloud:vpc/ipamIpamPoolCidr:IpamIpamPoolCidr": "IpamIpamPoolCidr"
|
|
7672
7894
|
}
|
|
7673
7895
|
},
|
|
7896
|
+
{
|
|
7897
|
+
"pkg": "alicloud",
|
|
7898
|
+
"mod": "vpc/ipamIpamResourceDiscovery",
|
|
7899
|
+
"fqn": "pulumi_alicloud.vpc",
|
|
7900
|
+
"classes": {
|
|
7901
|
+
"alicloud:vpc/ipamIpamResourceDiscovery:IpamIpamResourceDiscovery": "IpamIpamResourceDiscovery"
|
|
7902
|
+
}
|
|
7903
|
+
},
|
|
7674
7904
|
{
|
|
7675
7905
|
"pkg": "alicloud",
|
|
7676
7906
|
"mod": "vpc/ipamIpamScope",
|
pulumi_alicloud/_inputs.py
CHANGED
|
@@ -306,6 +306,7 @@ if not MYPY:
|
|
|
306
306
|
"""
|
|
307
307
|
Use this to override the default endpoint URL constructed from the `region`. It's typically used to connect to custom ddosbasic endpoints.
|
|
308
308
|
"""
|
|
309
|
+
apig: NotRequired[pulumi.Input[str]]
|
|
309
310
|
apigateway: NotRequired[pulumi.Input[str]]
|
|
310
311
|
"""
|
|
311
312
|
Use this to override the default endpoint URL constructed from the `region`. It's typically used to connect to custom Api Gateway endpoints.
|
|
@@ -370,6 +371,10 @@ if not MYPY:
|
|
|
370
371
|
"""
|
|
371
372
|
Use this to override the default endpoint URL constructed from the `region`. It's typically used to connect to custom clickhouse endpoints.
|
|
372
373
|
"""
|
|
374
|
+
cloudapi: NotRequired[pulumi.Input[str]]
|
|
375
|
+
"""
|
|
376
|
+
Use this to override the default endpoint URL constructed from the `region`. It's typically used to connect to custom Api Gateway endpoints.
|
|
377
|
+
"""
|
|
373
378
|
cloudauth: NotRequired[pulumi.Input[str]]
|
|
374
379
|
"""
|
|
375
380
|
Use this to override the default endpoint URL constructed from the `region`. It's typically used to connect to custom cloudauth endpoints.
|
|
@@ -885,6 +890,7 @@ class ProviderEndpointArgs:
|
|
|
885
890
|
alikafka: Optional[pulumi.Input[str]] = None,
|
|
886
891
|
amqp: Optional[pulumi.Input[str]] = None,
|
|
887
892
|
antiddos_public: Optional[pulumi.Input[str]] = None,
|
|
893
|
+
apig: Optional[pulumi.Input[str]] = None,
|
|
888
894
|
apigateway: Optional[pulumi.Input[str]] = None,
|
|
889
895
|
arms: Optional[pulumi.Input[str]] = None,
|
|
890
896
|
bastionhost: Optional[pulumi.Input[str]] = None,
|
|
@@ -901,6 +907,7 @@ class ProviderEndpointArgs:
|
|
|
901
907
|
cds: Optional[pulumi.Input[str]] = None,
|
|
902
908
|
chatbot: Optional[pulumi.Input[str]] = None,
|
|
903
909
|
clickhouse: Optional[pulumi.Input[str]] = None,
|
|
910
|
+
cloudapi: Optional[pulumi.Input[str]] = None,
|
|
904
911
|
cloudauth: Optional[pulumi.Input[str]] = None,
|
|
905
912
|
cloudfirewall: Optional[pulumi.Input[str]] = None,
|
|
906
913
|
cloudfw: Optional[pulumi.Input[str]] = None,
|
|
@@ -1057,6 +1064,7 @@ class ProviderEndpointArgs:
|
|
|
1057
1064
|
:param pulumi.Input[str] cds: Use this to override the default endpoint URL constructed from the `region`. It's typically used to connect to custom cds endpoints.
|
|
1058
1065
|
:param pulumi.Input[str] chatbot: Use this to override the default endpoint URL constructed from the `region`. It's typically used to connect to custom beebot endpoints.
|
|
1059
1066
|
:param pulumi.Input[str] clickhouse: Use this to override the default endpoint URL constructed from the `region`. It's typically used to connect to custom clickhouse endpoints.
|
|
1067
|
+
:param pulumi.Input[str] cloudapi: Use this to override the default endpoint URL constructed from the `region`. It's typically used to connect to custom Api Gateway endpoints.
|
|
1060
1068
|
:param pulumi.Input[str] cloudauth: Use this to override the default endpoint URL constructed from the `region`. It's typically used to connect to custom cloudauth endpoints.
|
|
1061
1069
|
:param pulumi.Input[str] cloudfirewall: Use this to override the default endpoint URL constructed from the `region`. It's typically used to connect to custom cloudfirewall endpoints.
|
|
1062
1070
|
:param pulumi.Input[str] cloudfw: Use this to override the default endpoint URL constructed from the `region`. It's typically used to connect to custom cloudfw endpoints.
|
|
@@ -1201,6 +1209,8 @@ class ProviderEndpointArgs:
|
|
|
1201
1209
|
pulumi.set(__self__, "amqp", amqp)
|
|
1202
1210
|
if antiddos_public is not None:
|
|
1203
1211
|
pulumi.set(__self__, "antiddos_public", antiddos_public)
|
|
1212
|
+
if apig is not None:
|
|
1213
|
+
pulumi.set(__self__, "apig", apig)
|
|
1204
1214
|
if apigateway is not None:
|
|
1205
1215
|
pulumi.set(__self__, "apigateway", apigateway)
|
|
1206
1216
|
if arms is not None:
|
|
@@ -1233,6 +1243,8 @@ class ProviderEndpointArgs:
|
|
|
1233
1243
|
pulumi.set(__self__, "chatbot", chatbot)
|
|
1234
1244
|
if clickhouse is not None:
|
|
1235
1245
|
pulumi.set(__self__, "clickhouse", clickhouse)
|
|
1246
|
+
if cloudapi is not None:
|
|
1247
|
+
pulumi.set(__self__, "cloudapi", cloudapi)
|
|
1236
1248
|
if cloudauth is not None:
|
|
1237
1249
|
pulumi.set(__self__, "cloudauth", cloudauth)
|
|
1238
1250
|
if cloudfirewall is not None:
|
|
@@ -1611,6 +1623,15 @@ class ProviderEndpointArgs:
|
|
|
1611
1623
|
def antiddos_public(self, value: Optional[pulumi.Input[str]]):
|
|
1612
1624
|
pulumi.set(self, "antiddos_public", value)
|
|
1613
1625
|
|
|
1626
|
+
@property
|
|
1627
|
+
@pulumi.getter
|
|
1628
|
+
def apig(self) -> Optional[pulumi.Input[str]]:
|
|
1629
|
+
return pulumi.get(self, "apig")
|
|
1630
|
+
|
|
1631
|
+
@apig.setter
|
|
1632
|
+
def apig(self, value: Optional[pulumi.Input[str]]):
|
|
1633
|
+
pulumi.set(self, "apig", value)
|
|
1634
|
+
|
|
1614
1635
|
@property
|
|
1615
1636
|
@pulumi.getter
|
|
1616
1637
|
def apigateway(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -1803,6 +1824,18 @@ class ProviderEndpointArgs:
|
|
|
1803
1824
|
def clickhouse(self, value: Optional[pulumi.Input[str]]):
|
|
1804
1825
|
pulumi.set(self, "clickhouse", value)
|
|
1805
1826
|
|
|
1827
|
+
@property
|
|
1828
|
+
@pulumi.getter
|
|
1829
|
+
def cloudapi(self) -> Optional[pulumi.Input[str]]:
|
|
1830
|
+
"""
|
|
1831
|
+
Use this to override the default endpoint URL constructed from the `region`. It's typically used to connect to custom Api Gateway endpoints.
|
|
1832
|
+
"""
|
|
1833
|
+
return pulumi.get(self, "cloudapi")
|
|
1834
|
+
|
|
1835
|
+
@cloudapi.setter
|
|
1836
|
+
def cloudapi(self, value: Optional[pulumi.Input[str]]):
|
|
1837
|
+
pulumi.set(self, "cloudapi", value)
|
|
1838
|
+
|
|
1806
1839
|
@property
|
|
1807
1840
|
@pulumi.getter
|
|
1808
1841
|
def cloudauth(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -22,15 +22,21 @@ __all__ = ['ClusterArgs', 'Cluster']
|
|
|
22
22
|
class ClusterArgs:
|
|
23
23
|
def __init__(__self__, *,
|
|
24
24
|
network: pulumi.Input['ClusterNetworkArgs'],
|
|
25
|
+
argocd_enabled: Optional[pulumi.Input[bool]] = None,
|
|
25
26
|
cluster_name: Optional[pulumi.Input[str]] = None,
|
|
26
27
|
profile: Optional[pulumi.Input[str]] = None):
|
|
27
28
|
"""
|
|
28
29
|
The set of arguments for constructing a Cluster resource.
|
|
29
30
|
:param pulumi.Input['ClusterNetworkArgs'] network: Cluster network information. See `network` below.
|
|
31
|
+
:param pulumi.Input[bool] argocd_enabled: (Available since v1.243.0) Whether to enable ArgoCD. Default to true. Only valid when `profile` is 'Default'. It has to be false when cluster is deleted.
|
|
30
32
|
:param pulumi.Input[str] cluster_name: Cluster name.
|
|
31
33
|
:param pulumi.Input[str] profile: Cluster attributes. Valid values: 'Default', 'XFlow'.
|
|
34
|
+
|
|
35
|
+
**Note**: When profile is Default, vswitches might not be deleted when cluster is deleted because there are some remaining resources in the vswitches. We are still fixing this problem.
|
|
32
36
|
"""
|
|
33
37
|
pulumi.set(__self__, "network", network)
|
|
38
|
+
if argocd_enabled is not None:
|
|
39
|
+
pulumi.set(__self__, "argocd_enabled", argocd_enabled)
|
|
34
40
|
if cluster_name is not None:
|
|
35
41
|
pulumi.set(__self__, "cluster_name", cluster_name)
|
|
36
42
|
if profile is not None:
|
|
@@ -48,6 +54,18 @@ class ClusterArgs:
|
|
|
48
54
|
def network(self, value: pulumi.Input['ClusterNetworkArgs']):
|
|
49
55
|
pulumi.set(self, "network", value)
|
|
50
56
|
|
|
57
|
+
@property
|
|
58
|
+
@pulumi.getter(name="argocdEnabled")
|
|
59
|
+
def argocd_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
60
|
+
"""
|
|
61
|
+
(Available since v1.243.0) Whether to enable ArgoCD. Default to true. Only valid when `profile` is 'Default'. It has to be false when cluster is deleted.
|
|
62
|
+
"""
|
|
63
|
+
return pulumi.get(self, "argocd_enabled")
|
|
64
|
+
|
|
65
|
+
@argocd_enabled.setter
|
|
66
|
+
def argocd_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
67
|
+
pulumi.set(self, "argocd_enabled", value)
|
|
68
|
+
|
|
51
69
|
@property
|
|
52
70
|
@pulumi.getter(name="clusterName")
|
|
53
71
|
def cluster_name(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -65,6 +83,8 @@ class ClusterArgs:
|
|
|
65
83
|
def profile(self) -> Optional[pulumi.Input[str]]:
|
|
66
84
|
"""
|
|
67
85
|
Cluster attributes. Valid values: 'Default', 'XFlow'.
|
|
86
|
+
|
|
87
|
+
**Note**: When profile is Default, vswitches might not be deleted when cluster is deleted because there are some remaining resources in the vswitches. We are still fixing this problem.
|
|
68
88
|
"""
|
|
69
89
|
return pulumi.get(self, "profile")
|
|
70
90
|
|
|
@@ -76,6 +96,7 @@ class ClusterArgs:
|
|
|
76
96
|
@pulumi.input_type
|
|
77
97
|
class _ClusterState:
|
|
78
98
|
def __init__(__self__, *,
|
|
99
|
+
argocd_enabled: Optional[pulumi.Input[bool]] = None,
|
|
79
100
|
cluster_name: Optional[pulumi.Input[str]] = None,
|
|
80
101
|
create_time: Optional[pulumi.Input[str]] = None,
|
|
81
102
|
network: Optional[pulumi.Input['ClusterNetworkArgs']] = None,
|
|
@@ -83,12 +104,17 @@ class _ClusterState:
|
|
|
83
104
|
status: Optional[pulumi.Input[str]] = None):
|
|
84
105
|
"""
|
|
85
106
|
Input properties used for looking up and filtering Cluster resources.
|
|
107
|
+
:param pulumi.Input[bool] argocd_enabled: (Available since v1.243.0) Whether to enable ArgoCD. Default to true. Only valid when `profile` is 'Default'. It has to be false when cluster is deleted.
|
|
86
108
|
:param pulumi.Input[str] cluster_name: Cluster name.
|
|
87
109
|
:param pulumi.Input[str] create_time: Cluster creation time.
|
|
88
110
|
:param pulumi.Input['ClusterNetworkArgs'] network: Cluster network information. See `network` below.
|
|
89
111
|
:param pulumi.Input[str] profile: Cluster attributes. Valid values: 'Default', 'XFlow'.
|
|
112
|
+
|
|
113
|
+
**Note**: When profile is Default, vswitches might not be deleted when cluster is deleted because there are some remaining resources in the vswitches. We are still fixing this problem.
|
|
90
114
|
:param pulumi.Input[str] status: The status of the resource.
|
|
91
115
|
"""
|
|
116
|
+
if argocd_enabled is not None:
|
|
117
|
+
pulumi.set(__self__, "argocd_enabled", argocd_enabled)
|
|
92
118
|
if cluster_name is not None:
|
|
93
119
|
pulumi.set(__self__, "cluster_name", cluster_name)
|
|
94
120
|
if create_time is not None:
|
|
@@ -100,6 +126,18 @@ class _ClusterState:
|
|
|
100
126
|
if status is not None:
|
|
101
127
|
pulumi.set(__self__, "status", status)
|
|
102
128
|
|
|
129
|
+
@property
|
|
130
|
+
@pulumi.getter(name="argocdEnabled")
|
|
131
|
+
def argocd_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
132
|
+
"""
|
|
133
|
+
(Available since v1.243.0) Whether to enable ArgoCD. Default to true. Only valid when `profile` is 'Default'. It has to be false when cluster is deleted.
|
|
134
|
+
"""
|
|
135
|
+
return pulumi.get(self, "argocd_enabled")
|
|
136
|
+
|
|
137
|
+
@argocd_enabled.setter
|
|
138
|
+
def argocd_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
139
|
+
pulumi.set(self, "argocd_enabled", value)
|
|
140
|
+
|
|
103
141
|
@property
|
|
104
142
|
@pulumi.getter(name="clusterName")
|
|
105
143
|
def cluster_name(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -141,6 +179,8 @@ class _ClusterState:
|
|
|
141
179
|
def profile(self) -> Optional[pulumi.Input[str]]:
|
|
142
180
|
"""
|
|
143
181
|
Cluster attributes. Valid values: 'Default', 'XFlow'.
|
|
182
|
+
|
|
183
|
+
**Note**: When profile is Default, vswitches might not be deleted when cluster is deleted because there are some remaining resources in the vswitches. We are still fixing this problem.
|
|
144
184
|
"""
|
|
145
185
|
return pulumi.get(self, "profile")
|
|
146
186
|
|
|
@@ -166,6 +206,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
166
206
|
def __init__(__self__,
|
|
167
207
|
resource_name: str,
|
|
168
208
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
209
|
+
argocd_enabled: Optional[pulumi.Input[bool]] = None,
|
|
169
210
|
cluster_name: Optional[pulumi.Input[str]] = None,
|
|
170
211
|
network: Optional[pulumi.Input[Union['ClusterNetworkArgs', 'ClusterNetworkArgsDict']]] = None,
|
|
171
212
|
profile: Optional[pulumi.Input[str]] = None,
|
|
@@ -198,10 +239,12 @@ class Cluster(pulumi.CustomResource):
|
|
|
198
239
|
cidr_block="172.16.2.0/24",
|
|
199
240
|
zone_id=default.zones[0].id,
|
|
200
241
|
vswitch_name=name)
|
|
201
|
-
default_cluster = alicloud.ackone.Cluster("default",
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
242
|
+
default_cluster = alicloud.ackone.Cluster("default",
|
|
243
|
+
network={
|
|
244
|
+
"vpc_id": default_vpc.id,
|
|
245
|
+
"vswitches": [defaulty_v_switch.id],
|
|
246
|
+
},
|
|
247
|
+
profile="XFlow")
|
|
205
248
|
```
|
|
206
249
|
|
|
207
250
|
## Import
|
|
@@ -214,9 +257,12 @@ class Cluster(pulumi.CustomResource):
|
|
|
214
257
|
|
|
215
258
|
:param str resource_name: The name of the resource.
|
|
216
259
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
260
|
+
:param pulumi.Input[bool] argocd_enabled: (Available since v1.243.0) Whether to enable ArgoCD. Default to true. Only valid when `profile` is 'Default'. It has to be false when cluster is deleted.
|
|
217
261
|
:param pulumi.Input[str] cluster_name: Cluster name.
|
|
218
262
|
:param pulumi.Input[Union['ClusterNetworkArgs', 'ClusterNetworkArgsDict']] network: Cluster network information. See `network` below.
|
|
219
263
|
:param pulumi.Input[str] profile: Cluster attributes. Valid values: 'Default', 'XFlow'.
|
|
264
|
+
|
|
265
|
+
**Note**: When profile is Default, vswitches might not be deleted when cluster is deleted because there are some remaining resources in the vswitches. We are still fixing this problem.
|
|
220
266
|
"""
|
|
221
267
|
...
|
|
222
268
|
@overload
|
|
@@ -252,10 +298,12 @@ class Cluster(pulumi.CustomResource):
|
|
|
252
298
|
cidr_block="172.16.2.0/24",
|
|
253
299
|
zone_id=default.zones[0].id,
|
|
254
300
|
vswitch_name=name)
|
|
255
|
-
default_cluster = alicloud.ackone.Cluster("default",
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
301
|
+
default_cluster = alicloud.ackone.Cluster("default",
|
|
302
|
+
network={
|
|
303
|
+
"vpc_id": default_vpc.id,
|
|
304
|
+
"vswitches": [defaulty_v_switch.id],
|
|
305
|
+
},
|
|
306
|
+
profile="XFlow")
|
|
259
307
|
```
|
|
260
308
|
|
|
261
309
|
## Import
|
|
@@ -281,6 +329,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
281
329
|
def _internal_init(__self__,
|
|
282
330
|
resource_name: str,
|
|
283
331
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
332
|
+
argocd_enabled: Optional[pulumi.Input[bool]] = None,
|
|
284
333
|
cluster_name: Optional[pulumi.Input[str]] = None,
|
|
285
334
|
network: Optional[pulumi.Input[Union['ClusterNetworkArgs', 'ClusterNetworkArgsDict']]] = None,
|
|
286
335
|
profile: Optional[pulumi.Input[str]] = None,
|
|
@@ -293,6 +342,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
293
342
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
294
343
|
__props__ = ClusterArgs.__new__(ClusterArgs)
|
|
295
344
|
|
|
345
|
+
__props__.__dict__["argocd_enabled"] = argocd_enabled
|
|
296
346
|
__props__.__dict__["cluster_name"] = cluster_name
|
|
297
347
|
if network is None and not opts.urn:
|
|
298
348
|
raise TypeError("Missing required property 'network'")
|
|
@@ -310,6 +360,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
310
360
|
def get(resource_name: str,
|
|
311
361
|
id: pulumi.Input[str],
|
|
312
362
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
363
|
+
argocd_enabled: Optional[pulumi.Input[bool]] = None,
|
|
313
364
|
cluster_name: Optional[pulumi.Input[str]] = None,
|
|
314
365
|
create_time: Optional[pulumi.Input[str]] = None,
|
|
315
366
|
network: Optional[pulumi.Input[Union['ClusterNetworkArgs', 'ClusterNetworkArgsDict']]] = None,
|
|
@@ -322,16 +373,20 @@ class Cluster(pulumi.CustomResource):
|
|
|
322
373
|
:param str resource_name: The unique name of the resulting resource.
|
|
323
374
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
324
375
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
376
|
+
:param pulumi.Input[bool] argocd_enabled: (Available since v1.243.0) Whether to enable ArgoCD. Default to true. Only valid when `profile` is 'Default'. It has to be false when cluster is deleted.
|
|
325
377
|
:param pulumi.Input[str] cluster_name: Cluster name.
|
|
326
378
|
:param pulumi.Input[str] create_time: Cluster creation time.
|
|
327
379
|
:param pulumi.Input[Union['ClusterNetworkArgs', 'ClusterNetworkArgsDict']] network: Cluster network information. See `network` below.
|
|
328
380
|
:param pulumi.Input[str] profile: Cluster attributes. Valid values: 'Default', 'XFlow'.
|
|
381
|
+
|
|
382
|
+
**Note**: When profile is Default, vswitches might not be deleted when cluster is deleted because there are some remaining resources in the vswitches. We are still fixing this problem.
|
|
329
383
|
:param pulumi.Input[str] status: The status of the resource.
|
|
330
384
|
"""
|
|
331
385
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
332
386
|
|
|
333
387
|
__props__ = _ClusterState.__new__(_ClusterState)
|
|
334
388
|
|
|
389
|
+
__props__.__dict__["argocd_enabled"] = argocd_enabled
|
|
335
390
|
__props__.__dict__["cluster_name"] = cluster_name
|
|
336
391
|
__props__.__dict__["create_time"] = create_time
|
|
337
392
|
__props__.__dict__["network"] = network
|
|
@@ -339,6 +394,14 @@ class Cluster(pulumi.CustomResource):
|
|
|
339
394
|
__props__.__dict__["status"] = status
|
|
340
395
|
return Cluster(resource_name, opts=opts, __props__=__props__)
|
|
341
396
|
|
|
397
|
+
@property
|
|
398
|
+
@pulumi.getter(name="argocdEnabled")
|
|
399
|
+
def argocd_enabled(self) -> pulumi.Output[bool]:
|
|
400
|
+
"""
|
|
401
|
+
(Available since v1.243.0) Whether to enable ArgoCD. Default to true. Only valid when `profile` is 'Default'. It has to be false when cluster is deleted.
|
|
402
|
+
"""
|
|
403
|
+
return pulumi.get(self, "argocd_enabled")
|
|
404
|
+
|
|
342
405
|
@property
|
|
343
406
|
@pulumi.getter(name="clusterName")
|
|
344
407
|
def cluster_name(self) -> pulumi.Output[str]:
|
|
@@ -368,6 +431,8 @@ class Cluster(pulumi.CustomResource):
|
|
|
368
431
|
def profile(self) -> pulumi.Output[str]:
|
|
369
432
|
"""
|
|
370
433
|
Cluster attributes. Valid values: 'Default', 'XFlow'.
|
|
434
|
+
|
|
435
|
+
**Note**: When profile is Default, vswitches might not be deleted when cluster is deleted because there are some remaining resources in the vswitches. We are still fixing this problem.
|
|
371
436
|
"""
|
|
372
437
|
return pulumi.get(self, "profile")
|
|
373
438
|
|