pulumi-alicloud 3.75.0a1741324537__py3-none-any.whl → 3.76.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 +501 -4
- pulumi_alicloud/_inputs.py +53 -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/actiontrail/global_events_storage_region.py +2 -2
- pulumi_alicloud/adb/db_cluster_lake_version.py +458 -49
- pulumi_alicloud/alb/_inputs.py +217 -17
- pulumi_alicloud/alb/load_balancer.py +7 -35
- pulumi_alicloud/alb/load_balancer_access_log_config_attachment.py +2 -2
- pulumi_alicloud/alb/load_balancer_security_group_attachment.py +69 -22
- pulumi_alicloud/alb/outputs.py +150 -12
- pulumi_alicloud/alb/server_group.py +199 -44
- 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/alikafka/sasl_acl.py +7 -7
- pulumi_alicloud/apigateway/_inputs.py +134 -0
- pulumi_alicloud/apigateway/group.py +117 -5
- pulumi_alicloud/apigateway/instance.py +199 -11
- pulumi_alicloud/apigateway/outputs.py +107 -0
- pulumi_alicloud/arms/alert_contact.py +2 -2
- pulumi_alicloud/arms/alert_contact_group.py +2 -2
- pulumi_alicloud/arms/get_prometheus.py +2 -6
- pulumi_alicloud/arms/grafana_workspace.py +511 -69
- pulumi_alicloud/arms/outputs.py +18 -18
- pulumi_alicloud/arms/prometheus_alert_rule.py +2 -2
- pulumi_alicloud/arms/prometheus_monitoring.py +2 -2
- pulumi_alicloud/cdn/domain_new.py +2 -2
- pulumi_alicloud/cen/_inputs.py +6 -3
- pulumi_alicloud/cen/get_transit_router_vpn_attachments.py +131 -19
- pulumi_alicloud/cen/instance.py +101 -59
- pulumi_alicloud/cen/inter_region_traffic_qos_policy.py +126 -81
- pulumi_alicloud/cen/inter_region_traffic_qos_queue.py +93 -47
- pulumi_alicloud/cen/outputs.py +69 -26
- pulumi_alicloud/cen/transit_route_table_aggregation.py +171 -55
- pulumi_alicloud/cen/transit_router.py +127 -53
- pulumi_alicloud/cen/transit_router_cidr.py +53 -35
- pulumi_alicloud/cen/transit_router_ecr_attachment.py +2 -2
- pulumi_alicloud/cen/transit_router_peer_attachment.py +360 -143
- pulumi_alicloud/cen/transit_router_route_table_association.py +33 -43
- pulumi_alicloud/cen/transit_router_vpn_attachment.py +438 -109
- 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/clickhouse/db_cluster.py +179 -6
- pulumi_alicloud/clickhouseenterprisedbcluster/__init__.py +14 -0
- pulumi_alicloud/clickhouseenterprisedbcluster/_inputs.py +167 -0
- pulumi_alicloud/clickhouseenterprisedbcluster/account.py +554 -0
- pulumi_alicloud/clickhouseenterprisedbcluster/backup_policy.py +407 -0
- pulumi_alicloud/clickhouseenterprisedbcluster/click_house_enterprise_db_cluster.py +641 -0
- pulumi_alicloud/clickhouseenterprisedbcluster/outputs.py +147 -0
- pulumi_alicloud/clickhouseenterprisedbcluster/public_endpoint.py +364 -0
- pulumi_alicloud/clickhouseenterprisedbcluster/security_ip.py +357 -0
- 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/cloudsso/scim_server_credential.py +178 -11
- pulumi_alicloud/cms/get_site_monitors.py +2 -2
- pulumi_alicloud/config/outputs.py +32 -0
- pulumi_alicloud/cs/__init__.py +1 -0
- pulumi_alicloud/cs/_inputs.py +9 -9
- pulumi_alicloud/cs/get_kubernetes_clusters.py +5 -4
- pulumi_alicloud/cs/get_kubernetes_node_pools.py +147 -0
- 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 +174 -59
- pulumi_alicloud/cs/node_pool.py +91 -63
- pulumi_alicloud/cs/outputs.py +1991 -213
- pulumi_alicloud/databasefilesystem/service_linked_role.py +2 -2
- pulumi_alicloud/dataworks/data_source.py +2 -2
- pulumi_alicloud/dataworks/data_source_shared_rule.py +2 -2
- pulumi_alicloud/dataworks/di_alarm_rule.py +2 -2
- pulumi_alicloud/dataworks/di_job.py +2 -2
- pulumi_alicloud/dataworks/dw_resource_group.py +2 -2
- pulumi_alicloud/dataworks/network.py +2 -2
- pulumi_alicloud/dataworks/project.py +2 -2
- pulumi_alicloud/dataworks/project_member.py +2 -2
- pulumi_alicloud/dbs/backup_plan.py +2 -2
- pulumi_alicloud/ddos/bgp_policy.py +2 -2
- 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/eais/__init__.py +2 -0
- pulumi_alicloud/eais/_inputs.py +75 -0
- pulumi_alicloud/eais/client_instance_attachment.py +408 -0
- pulumi_alicloud/eais/instance.py +365 -118
- pulumi_alicloud/eais/outputs.py +32 -0
- pulumi_alicloud/ebs/disk_replica_group.py +512 -30
- pulumi_alicloud/ebs/disk_replica_pair.py +443 -113
- pulumi_alicloud/ebs/enterprise_snapshot_policy.py +2 -2
- pulumi_alicloud/ebs/enterprise_snapshot_policy_attachment.py +2 -2
- pulumi_alicloud/ebs/replica_group_drill.py +2 -2
- pulumi_alicloud/ebs/replica_pair_drill.py +2 -2
- pulumi_alicloud/ecp/instance.py +2 -2
- pulumi_alicloud/ecp/key_pair.py +4 -4
- pulumi_alicloud/ecs/_inputs.py +33 -0
- pulumi_alicloud/ecs/disk.py +1 -1
- pulumi_alicloud/ecs/ecs_deployment_set.py +89 -67
- pulumi_alicloud/ecs/ecs_disk.py +1 -1
- pulumi_alicloud/ecs/ecs_launch_template.py +23 -23
- pulumi_alicloud/ecs/eip.py +1 -1
- pulumi_alicloud/ecs/eip_address.py +1 -1
- pulumi_alicloud/ecs/instance.py +44 -31
- pulumi_alicloud/ecs/outputs.py +26 -2
- pulumi_alicloud/eds/command.py +10 -2
- pulumi_alicloud/eflo/__init__.py +5 -0
- pulumi_alicloud/eflo/_inputs.py +1717 -0
- pulumi_alicloud/eflo/cluster.py +935 -0
- pulumi_alicloud/eflo/invocation.py +1114 -0
- pulumi_alicloud/eflo/node.py +1013 -0
- pulumi_alicloud/eflo/node_group.py +1101 -0
- pulumi_alicloud/eflo/outputs.py +1366 -0
- 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/eip_instance_attachment.py +2 -2
- pulumi_alicloud/ens/image.py +81 -34
- 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 +23 -0
- pulumi_alicloud/esa/_inputs.py +1068 -15
- pulumi_alicloud/esa/cache_reserve_instance.py +522 -0
- pulumi_alicloud/esa/cache_rule.py +1419 -0
- pulumi_alicloud/esa/certificate.py +731 -0
- pulumi_alicloud/esa/client_ca_certificate.py +388 -0
- pulumi_alicloud/esa/client_certificate.py +452 -0
- pulumi_alicloud/esa/compression_rule.py +596 -0
- pulumi_alicloud/esa/edge_container_app.py +972 -0
- pulumi_alicloud/esa/edge_container_app_record.py +376 -0
- pulumi_alicloud/esa/get_sites.py +421 -0
- pulumi_alicloud/esa/http_request_header_modification_rule.py +58 -44
- pulumi_alicloud/esa/http_response_header_modification_rule.py +539 -0
- pulumi_alicloud/esa/https_application_configuration.py +939 -0
- pulumi_alicloud/esa/https_basic_configuration.py +1041 -0
- pulumi_alicloud/esa/image_transform.py +498 -0
- pulumi_alicloud/esa/kv_namespace.py +276 -0
- pulumi_alicloud/esa/list.py +30 -30
- pulumi_alicloud/esa/network_optimization.py +680 -0
- pulumi_alicloud/esa/origin_pool.py +485 -0
- pulumi_alicloud/esa/origin_rule.py +796 -0
- pulumi_alicloud/esa/outputs.py +959 -10
- pulumi_alicloud/esa/page.py +30 -51
- pulumi_alicloud/esa/rate_plan_instance.py +88 -161
- pulumi_alicloud/esa/record.py +2 -2
- pulumi_alicloud/esa/redirect_rule.py +748 -0
- pulumi_alicloud/esa/rewrite_url_rule.py +688 -0
- pulumi_alicloud/esa/site.py +276 -27
- pulumi_alicloud/esa/site_delivery_task.py +841 -0
- pulumi_alicloud/esa/waiting_room.py +1207 -0
- pulumi_alicloud/esa/waiting_room_event.py +1378 -0
- pulumi_alicloud/esa/waiting_room_rule.py +497 -0
- pulumi_alicloud/ess/_inputs.py +155 -0
- pulumi_alicloud/ess/outputs.py +128 -0
- pulumi_alicloud/ess/scaling_configuration.py +7 -7
- pulumi_alicloud/ess/scaling_group.py +237 -2
- pulumi_alicloud/ess/scaling_rule.py +143 -2
- pulumi_alicloud/expressconnect/ec_failover_test_job.py +0 -2
- pulumi_alicloud/expressconnect/router_grant_association.py +2 -2
- pulumi_alicloud/expressconnect/vbr_pconn_association.py +2 -2
- pulumi_alicloud/expressconnect/virtual_border_router.py +4 -4
- 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/hadoop_data_source.py +2 -2
- pulumi_alicloud/gpdb/jdbc_data_source.py +2 -2
- pulumi_alicloud/gpdb/remote_adb_data_source.py +6 -6
- pulumi_alicloud/gpdb/streaming_data_service.py +2 -2
- pulumi_alicloud/gpdb/streaming_data_source.py +2 -2
- pulumi_alicloud/gpdb/streaming_job.py +2 -2
- pulumi_alicloud/hbr/policy.py +67 -6
- pulumi_alicloud/hbr/vault.py +210 -9
- pulumi_alicloud/ims/oidc_provider.py +24 -13
- pulumi_alicloud/kms/get_keys.py +10 -0
- pulumi_alicloud/kvstore/account.py +9 -9
- pulumi_alicloud/kvstore/connection.py +2 -2
- pulumi_alicloud/kvstore/get_instance_classes.py +2 -2
- pulumi_alicloud/kvstore/get_instance_engines.py +2 -2
- pulumi_alicloud/kvstore/instance.py +7 -7
- pulumi_alicloud/kvstore/outputs.py +2 -2
- pulumi_alicloud/live/caster.py +2 -2
- pulumi_alicloud/maxcompute/__init__.py +1 -0
- pulumi_alicloud/maxcompute/_inputs.py +232 -3
- pulumi_alicloud/maxcompute/outputs.py +183 -2
- pulumi_alicloud/maxcompute/project.py +2 -2
- pulumi_alicloud/maxcompute/quota.py +438 -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/nas/mount_target.py +149 -54
- pulumi_alicloud/nlb/__init__.py +1 -0
- pulumi_alicloud/nlb/_inputs.py +157 -30
- pulumi_alicloud/nlb/listener.py +87 -20
- pulumi_alicloud/nlb/load_balancer.py +212 -24
- pulumi_alicloud/nlb/load_balancer_zone_shifted_attachment.py +397 -0
- pulumi_alicloud/nlb/outputs.py +123 -20
- pulumi_alicloud/nlb/server_group.py +55 -20
- pulumi_alicloud/nlb/server_group_server_attachment.py +118 -65
- pulumi_alicloud/oss/__init__.py +1 -0
- pulumi_alicloud/oss/_inputs.py +20 -0
- pulumi_alicloud/oss/access_point.py +2 -2
- pulumi_alicloud/oss/bucket_cname.py +2 -2
- pulumi_alicloud/oss/bucket_cors.py +2 -2
- pulumi_alicloud/oss/bucket_style.py +402 -0
- pulumi_alicloud/oss/bucket_website.py +2 -2
- pulumi_alicloud/oss/outputs.py +14 -0
- pulumi_alicloud/ots/_inputs.py +3 -3
- pulumi_alicloud/ots/outputs.py +2 -2
- pulumi_alicloud/pai/service.py +59 -67
- 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/polardb/cluster.py +75 -28
- 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/privatelink/vpc_endpoint_zone.py +1 -1
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/ram/__init__.py +3 -0
- pulumi_alicloud/ram/_inputs.py +9 -9
- pulumi_alicloud/ram/access_key.py +97 -35
- pulumi_alicloud/ram/account_alias.py +18 -45
- pulumi_alicloud/ram/get_system_policys.py +189 -0
- pulumi_alicloud/ram/group.py +156 -35
- pulumi_alicloud/ram/group_policy_attachment.py +51 -29
- pulumi_alicloud/ram/login_profile.py +92 -38
- pulumi_alicloud/ram/outputs.py +91 -6
- pulumi_alicloud/ram/password_policy.py +779 -0
- pulumi_alicloud/ram/policy.py +199 -88
- pulumi_alicloud/ram/role_policy_attachment.py +51 -29
- pulumi_alicloud/ram/saml_provider.py +44 -37
- pulumi_alicloud/ram/user.py +10 -2
- pulumi_alicloud/ram/user_group_attachment.py +273 -0
- pulumi_alicloud/ram/user_policy_attachment.py +49 -27
- pulumi_alicloud/rds/__init__.py +1 -0
- pulumi_alicloud/rds/custom_disk.py +1053 -0
- pulumi_alicloud/rds/instance.py +117 -14
- pulumi_alicloud/redis/tair_instance.py +14 -14
- pulumi_alicloud/resourcemanager/__init__.py +1 -0
- pulumi_alicloud/resourcemanager/_inputs.py +53 -0
- pulumi_alicloud/resourcemanager/auto_grouping_rule.py +796 -0
- pulumi_alicloud/resourcemanager/outputs.py +50 -0
- pulumi_alicloud/resourcemanager/shared_resource.py +7 -0
- pulumi_alicloud/rocketmq/__init__.py +1 -1
- pulumi_alicloud/rocketmq/_inputs.py +146 -4
- pulumi_alicloud/rocketmq/account.py +452 -0
- pulumi_alicloud/rocketmq/acl.py +473 -47
- pulumi_alicloud/rocketmq/client_user.py +8 -2
- pulumi_alicloud/rocketmq/consumer_group.py +121 -24
- pulumi_alicloud/rocketmq/dnat_entry.py +8 -2
- pulumi_alicloud/rocketmq/outputs.py +113 -4
- pulumi_alicloud/rocketmq/qos.py +8 -2
- pulumi_alicloud/rocketmq/qos_car.py +10 -4
- pulumi_alicloud/rocketmq/qos_policy.py +6 -0
- pulumi_alicloud/rocketmq/rocket_mq_instance.py +136 -7
- pulumi_alicloud/rocketmq/rocket_mq_topic.py +121 -24
- pulumi_alicloud/rocketmq/snat_entry.py +8 -2
- pulumi_alicloud/sag/__init__.py +8 -0
- pulumi_alicloud/sag/acl.py +200 -0
- pulumi_alicloud/{rocketmq → sag}/acl_rule.py +7 -7
- pulumi_alicloud/sag/client_user.py +560 -0
- pulumi_alicloud/sag/dnat_entry.py +512 -0
- pulumi_alicloud/sag/get_acls.py +2 -2
- pulumi_alicloud/sag/qos.py +202 -0
- pulumi_alicloud/sag/qos_car.py +654 -0
- pulumi_alicloud/sag/qos_policy.py +659 -0
- pulumi_alicloud/sag/snat_entry.py +313 -0
- pulumi_alicloud/securitycenter/group.py +2 -2
- pulumi_alicloud/selectdb/db_instance.py +60 -11
- pulumi_alicloud/simpleapplicationserver/get_server_plans.py +7 -7
- pulumi_alicloud/simpleapplicationserver/outputs.py +3 -3
- pulumi_alicloud/slb/server_group_server_attachment.py +101 -111
- pulumi_alicloud/sls/oss_export_sink.py +2 -2
- pulumi_alicloud/tag/__init__.py +1 -0
- pulumi_alicloud/tag/associated_rule.py +306 -0
- pulumi_alicloud/tag/policy.py +27 -36
- pulumi_alicloud/threatdetection/__init__.py +3 -0
- pulumi_alicloud/threatdetection/anti_brute_force_rule.py +41 -65
- pulumi_alicloud/threatdetection/asset_bind.py +209 -0
- pulumi_alicloud/threatdetection/asset_selection_config.py +258 -0
- pulumi_alicloud/threatdetection/instance.py +271 -54
- pulumi_alicloud/threatdetection/log_meta.py +351 -0
- pulumi_alicloud/vpc/__init__.py +2 -0
- pulumi_alicloud/vpc/_inputs.py +281 -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/gateway_endpoint.py +85 -27
- pulumi_alicloud/vpc/get_enhanced_nat_available_zones.py +38 -2
- pulumi_alicloud/vpc/get_forward_entries.py +2 -2
- pulumi_alicloud/vpc/get_ipam_ipam_pool_allocations.py +2 -2
- pulumi_alicloud/vpc/get_ipam_ipam_pool_cidrs.py +2 -2
- pulumi_alicloud/vpc/get_ipam_ipam_pools.py +2 -2
- pulumi_alicloud/vpc/get_ipam_ipam_scopes.py +2 -2
- pulumi_alicloud/vpc/get_ipam_ipams.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/ipv6_address.py +85 -5
- pulumi_alicloud/vpc/nat_gateway.py +8 -0
- pulumi_alicloud/vpc/outputs.py +244 -2
- pulumi_alicloud/vpc/peer_connection.py +84 -42
- pulumi_alicloud/vpc/peer_connection_accepter.py +7 -21
- pulumi_alicloud/vpc/route_table.py +100 -45
- pulumi_alicloud/vpc/router_interface_connection.py +4 -4
- pulumi_alicloud/vpc/traffic_mirror_filter.py +2 -2
- pulumi_alicloud/vpc/vpc_route_entry.py +724 -0
- pulumi_alicloud/vpn/_inputs.py +716 -71
- pulumi_alicloud/vpn/gateway_vpn_attachment.py +622 -128
- pulumi_alicloud/vpn/get_gateway_vco_routes.py +11 -2
- pulumi_alicloud/vpn/get_gateway_vpn_attachments.py +26 -60
- pulumi_alicloud/vpn/get_gateways.py +21 -1
- pulumi_alicloud/vpn/ipsec_server.py +2 -2
- pulumi_alicloud/vpn/outputs.py +1982 -1006
- {pulumi_alicloud-3.75.0a1741324537.dist-info → pulumi_alicloud-3.76.0.dist-info}/METADATA +2 -2
- {pulumi_alicloud-3.75.0a1741324537.dist-info → pulumi_alicloud-3.76.0.dist-info}/RECORD +355 -278
- {pulumi_alicloud-3.75.0a1741324537.dist-info → pulumi_alicloud-3.76.0.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.75.0a1741324537.dist-info → pulumi_alicloud-3.76.0.dist-info}/top_level.txt +0 -0
|
@@ -205,7 +205,7 @@ class BizType(pulumi.CustomResource):
|
|
|
205
205
|
"""
|
|
206
206
|
Provides a Aligreen Biz Type resource.
|
|
207
207
|
|
|
208
|
-
For information about Aligreen Biz Type and how to use it, see [What is Biz Type](https://
|
|
208
|
+
For information about Aligreen Biz Type and how to use it, see [What is Biz Type](https://next.api.alibabacloud.com/document/Green/2017-08-23/CreateBizType).
|
|
209
209
|
|
|
210
210
|
> **NOTE:** Available since v1.228.0.
|
|
211
211
|
|
|
@@ -254,7 +254,7 @@ class BizType(pulumi.CustomResource):
|
|
|
254
254
|
"""
|
|
255
255
|
Provides a Aligreen Biz Type resource.
|
|
256
256
|
|
|
257
|
-
For information about Aligreen Biz Type and how to use it, see [What is Biz Type](https://
|
|
257
|
+
For information about Aligreen Biz Type and how to use it, see [What is Biz Type](https://next.api.alibabacloud.com/document/Green/2017-08-23/CreateBizType).
|
|
258
258
|
|
|
259
259
|
> **NOTE:** Available since v1.228.0.
|
|
260
260
|
|
|
@@ -220,7 +220,7 @@ class Callback(pulumi.CustomResource):
|
|
|
220
220
|
|
|
221
221
|
Detection Result Callback.
|
|
222
222
|
|
|
223
|
-
For information about Aligreen Callback and how to use it, see [What is Callback](https://
|
|
223
|
+
For information about Aligreen Callback and how to use it, see [What is Callback](https://next.api.alibabacloud.com/document/Green/2017-08-23/CreateCallback).
|
|
224
224
|
|
|
225
225
|
> **NOTE:** Available since v1.228.0.
|
|
226
226
|
|
|
@@ -279,7 +279,7 @@ class Callback(pulumi.CustomResource):
|
|
|
279
279
|
|
|
280
280
|
Detection Result Callback.
|
|
281
281
|
|
|
282
|
-
For information about Aligreen Callback and how to use it, see [What is Callback](https://
|
|
282
|
+
For information about Aligreen Callback and how to use it, see [What is Callback](https://next.api.alibabacloud.com/document/Green/2017-08-23/CreateCallback).
|
|
283
283
|
|
|
284
284
|
> **NOTE:** Available since v1.228.0.
|
|
285
285
|
|
|
@@ -205,7 +205,7 @@ class ImageLib(pulumi.CustomResource):
|
|
|
205
205
|
|
|
206
206
|
Image library for image detection.
|
|
207
207
|
|
|
208
|
-
For information about Aligreen Image Lib and how to use it, see [What is Image Lib](https://
|
|
208
|
+
For information about Aligreen Image Lib and how to use it, see [What is Image Lib](https://next.api.alibabacloud.com/document/Green/2017-08-23/CreateImageLib).
|
|
209
209
|
|
|
210
210
|
> **NOTE:** Available since v1.228.0.
|
|
211
211
|
|
|
@@ -257,7 +257,7 @@ class ImageLib(pulumi.CustomResource):
|
|
|
257
257
|
|
|
258
258
|
Image library for image detection.
|
|
259
259
|
|
|
260
|
-
For information about Aligreen Image Lib and how to use it, see [What is Image Lib](https://
|
|
260
|
+
For information about Aligreen Image Lib and how to use it, see [What is Image Lib](https://next.api.alibabacloud.com/document/Green/2017-08-23/CreateImageLib).
|
|
261
261
|
|
|
262
262
|
> **NOTE:** Available since v1.228.0.
|
|
263
263
|
|
|
@@ -338,7 +338,7 @@ class KeywordLib(pulumi.CustomResource):
|
|
|
338
338
|
|
|
339
339
|
Keyword library for text detection.
|
|
340
340
|
|
|
341
|
-
For information about Aligreen Keyword Lib and how to use it, see [What is Keyword Lib](https://
|
|
341
|
+
For information about Aligreen Keyword Lib and how to use it, see [What is Keyword Lib](https://next.api.alibabacloud.com/document/Green/2017-08-23/CreateKeywordLib).
|
|
342
342
|
|
|
343
343
|
> **NOTE:** Available since v1.228.0.
|
|
344
344
|
|
|
@@ -405,7 +405,7 @@ class KeywordLib(pulumi.CustomResource):
|
|
|
405
405
|
|
|
406
406
|
Keyword library for text detection.
|
|
407
407
|
|
|
408
|
-
For information about Aligreen Keyword Lib and how to use it, see [What is Keyword Lib](https://
|
|
408
|
+
For information about Aligreen Keyword Lib and how to use it, see [What is Keyword Lib](https://next.api.alibabacloud.com/document/Green/2017-08-23/CreateKeywordLib).
|
|
409
409
|
|
|
410
410
|
> **NOTE:** Available since v1.228.0.
|
|
411
411
|
|
|
@@ -71,7 +71,11 @@ class OssStockTaskArgs:
|
|
|
71
71
|
:param pulumi.Input[bool] image_opened: oss stock scan task detect images. true: scan images, false: do not scan images
|
|
72
72
|
:param pulumi.Input[str] image_porn_freeze_config: Picture automatic freezing porn scene configuration. Example: {"type": "suggestion", "value": "block,review"}. The result will be frozen according to the suggestion in the picture detection result.
|
|
73
73
|
:param pulumi.Input[int] image_scan_limit: The upper limit for scanning images in the oss stock scan task. The default value is 10000 images per Bucket.
|
|
74
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] image_scenes: The image moderation scenario included in the oss stock scan task.Valid values:
|
|
74
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] image_scenes: The image moderation scenario included in the oss stock scan task.Valid values:
|
|
75
|
+
porn: pornography detection
|
|
76
|
+
terrorism: terrorist content detection
|
|
77
|
+
ad: ad violation detection
|
|
78
|
+
live: undesirable scene detection
|
|
75
79
|
:param pulumi.Input[str] image_terrorism_freeze_config: The picture automatically freezes the configuration of terrorism scenes. Example: {"type": "suggestion", "value": "block,review"}. The result will be frozen according to the suggestion in the picture detection result.
|
|
76
80
|
:param pulumi.Input[bool] scan_image_no_file_type: Whether the oss stock scan task detects images with file names without suffixes. true: Detect pictures with file names without suffixes, false: Do not detect pictures with file names without suffixes
|
|
77
81
|
:param pulumi.Input[str] start_date: The start time of the file upload time range represents the files uploaded after scanning this time point.
|
|
@@ -84,7 +88,12 @@ class OssStockTaskArgs:
|
|
|
84
88
|
:param pulumi.Input[bool] video_opened: oss stock scan task detect video. true: scan video, false: do not scan video
|
|
85
89
|
:param pulumi.Input[str] video_porn_freeze_config: Video automatic freezing porn scene configuration. Example: {"type": "suggestion", "value": "block,review"}. The result will be frozen according to the suggestion in the video detection result.
|
|
86
90
|
:param pulumi.Input[int] video_scan_limit: The upper limit of video scanning in the oss stock scan task. The default value is 1000/Bucket.
|
|
87
|
-
:param pulumi.Input[str] video_scenes: The video detection scenarios included in the oss stock scan task.
|
|
91
|
+
:param pulumi.Input[str] video_scenes: The video detection scenarios included in the oss stock scan task.
|
|
92
|
+
porn: pornography detection
|
|
93
|
+
terrorism: terrorist content detection
|
|
94
|
+
ad: ad violation detection
|
|
95
|
+
live: undesirable scene detection
|
|
96
|
+
antispam: Video voice antispam
|
|
88
97
|
:param pulumi.Input[str] video_terrorism_freeze_config: The video automatically freezes the configuration of terrorism scenes. Example:{"type":"suggestion","value":"block,review"}. The results will be frozen according to the suggestion in the video detection results.
|
|
89
98
|
:param pulumi.Input[str] video_voice_antispam_freeze_config: Voice auto freeze configuration in video. Example:{"type":"suggestion","value":"block,review"}. The results will be frozen according to the suggestion in the video detection results.
|
|
90
99
|
"""
|
|
@@ -363,7 +372,11 @@ class OssStockTaskArgs:
|
|
|
363
372
|
@pulumi.getter(name="imageScenes")
|
|
364
373
|
def image_scenes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
365
374
|
"""
|
|
366
|
-
The image moderation scenario included in the oss stock scan task.Valid values:
|
|
375
|
+
The image moderation scenario included in the oss stock scan task.Valid values:
|
|
376
|
+
porn: pornography detection
|
|
377
|
+
terrorism: terrorist content detection
|
|
378
|
+
ad: ad violation detection
|
|
379
|
+
live: undesirable scene detection
|
|
367
380
|
"""
|
|
368
381
|
return pulumi.get(self, "image_scenes")
|
|
369
382
|
|
|
@@ -519,7 +532,12 @@ class OssStockTaskArgs:
|
|
|
519
532
|
@pulumi.getter(name="videoScenes")
|
|
520
533
|
def video_scenes(self) -> Optional[pulumi.Input[str]]:
|
|
521
534
|
"""
|
|
522
|
-
The video detection scenarios included in the oss stock scan task.
|
|
535
|
+
The video detection scenarios included in the oss stock scan task.
|
|
536
|
+
porn: pornography detection
|
|
537
|
+
terrorism: terrorist content detection
|
|
538
|
+
ad: ad violation detection
|
|
539
|
+
live: undesirable scene detection
|
|
540
|
+
antispam: Video voice antispam
|
|
523
541
|
"""
|
|
524
542
|
return pulumi.get(self, "video_scenes")
|
|
525
543
|
|
|
@@ -607,7 +625,11 @@ class _OssStockTaskState:
|
|
|
607
625
|
:param pulumi.Input[bool] image_opened: oss stock scan task detect images. true: scan images, false: do not scan images
|
|
608
626
|
:param pulumi.Input[str] image_porn_freeze_config: Picture automatic freezing porn scene configuration. Example: {"type": "suggestion", "value": "block,review"}. The result will be frozen according to the suggestion in the picture detection result.
|
|
609
627
|
:param pulumi.Input[int] image_scan_limit: The upper limit for scanning images in the oss stock scan task. The default value is 10000 images per Bucket.
|
|
610
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] image_scenes: The image moderation scenario included in the oss stock scan task.Valid values:
|
|
628
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] image_scenes: The image moderation scenario included in the oss stock scan task.Valid values:
|
|
629
|
+
porn: pornography detection
|
|
630
|
+
terrorism: terrorist content detection
|
|
631
|
+
ad: ad violation detection
|
|
632
|
+
live: undesirable scene detection
|
|
611
633
|
:param pulumi.Input[str] image_terrorism_freeze_config: The picture automatically freezes the configuration of terrorism scenes. Example: {"type": "suggestion", "value": "block,review"}. The result will be frozen according to the suggestion in the picture detection result.
|
|
612
634
|
:param pulumi.Input[bool] scan_image_no_file_type: Whether the oss stock scan task detects images with file names without suffixes. true: Detect pictures with file names without suffixes, false: Do not detect pictures with file names without suffixes
|
|
613
635
|
:param pulumi.Input[str] start_date: The start time of the file upload time range represents the files uploaded after scanning this time point.
|
|
@@ -620,7 +642,12 @@ class _OssStockTaskState:
|
|
|
620
642
|
:param pulumi.Input[bool] video_opened: oss stock scan task detect video. true: scan video, false: do not scan video
|
|
621
643
|
:param pulumi.Input[str] video_porn_freeze_config: Video automatic freezing porn scene configuration. Example: {"type": "suggestion", "value": "block,review"}. The result will be frozen according to the suggestion in the video detection result.
|
|
622
644
|
:param pulumi.Input[int] video_scan_limit: The upper limit of video scanning in the oss stock scan task. The default value is 1000/Bucket.
|
|
623
|
-
:param pulumi.Input[str] video_scenes: The video detection scenarios included in the oss stock scan task.
|
|
645
|
+
:param pulumi.Input[str] video_scenes: The video detection scenarios included in the oss stock scan task.
|
|
646
|
+
porn: pornography detection
|
|
647
|
+
terrorism: terrorist content detection
|
|
648
|
+
ad: ad violation detection
|
|
649
|
+
live: undesirable scene detection
|
|
650
|
+
antispam: Video voice antispam
|
|
624
651
|
:param pulumi.Input[str] video_terrorism_freeze_config: The video automatically freezes the configuration of terrorism scenes. Example:{"type":"suggestion","value":"block,review"}. The results will be frozen according to the suggestion in the video detection results.
|
|
625
652
|
:param pulumi.Input[str] video_voice_antispam_freeze_config: Voice auto freeze configuration in video. Example:{"type":"suggestion","value":"block,review"}. The results will be frozen according to the suggestion in the video detection results.
|
|
626
653
|
"""
|
|
@@ -899,7 +926,11 @@ class _OssStockTaskState:
|
|
|
899
926
|
@pulumi.getter(name="imageScenes")
|
|
900
927
|
def image_scenes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
901
928
|
"""
|
|
902
|
-
The image moderation scenario included in the oss stock scan task.Valid values:
|
|
929
|
+
The image moderation scenario included in the oss stock scan task.Valid values:
|
|
930
|
+
porn: pornography detection
|
|
931
|
+
terrorism: terrorist content detection
|
|
932
|
+
ad: ad violation detection
|
|
933
|
+
live: undesirable scene detection
|
|
903
934
|
"""
|
|
904
935
|
return pulumi.get(self, "image_scenes")
|
|
905
936
|
|
|
@@ -1055,7 +1086,12 @@ class _OssStockTaskState:
|
|
|
1055
1086
|
@pulumi.getter(name="videoScenes")
|
|
1056
1087
|
def video_scenes(self) -> Optional[pulumi.Input[str]]:
|
|
1057
1088
|
"""
|
|
1058
|
-
The video detection scenarios included in the oss stock scan task.
|
|
1089
|
+
The video detection scenarios included in the oss stock scan task.
|
|
1090
|
+
porn: pornography detection
|
|
1091
|
+
terrorism: terrorist content detection
|
|
1092
|
+
ad: ad violation detection
|
|
1093
|
+
live: undesirable scene detection
|
|
1094
|
+
antispam: Video voice antispam
|
|
1059
1095
|
"""
|
|
1060
1096
|
return pulumi.get(self, "video_scenes")
|
|
1061
1097
|
|
|
@@ -1155,7 +1191,11 @@ class OssStockTask(pulumi.CustomResource):
|
|
|
1155
1191
|
:param pulumi.Input[bool] image_opened: oss stock scan task detect images. true: scan images, false: do not scan images
|
|
1156
1192
|
:param pulumi.Input[str] image_porn_freeze_config: Picture automatic freezing porn scene configuration. Example: {"type": "suggestion", "value": "block,review"}. The result will be frozen according to the suggestion in the picture detection result.
|
|
1157
1193
|
:param pulumi.Input[int] image_scan_limit: The upper limit for scanning images in the oss stock scan task. The default value is 10000 images per Bucket.
|
|
1158
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] image_scenes: The image moderation scenario included in the oss stock scan task.Valid values:
|
|
1194
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] image_scenes: The image moderation scenario included in the oss stock scan task.Valid values:
|
|
1195
|
+
porn: pornography detection
|
|
1196
|
+
terrorism: terrorist content detection
|
|
1197
|
+
ad: ad violation detection
|
|
1198
|
+
live: undesirable scene detection
|
|
1159
1199
|
:param pulumi.Input[str] image_terrorism_freeze_config: The picture automatically freezes the configuration of terrorism scenes. Example: {"type": "suggestion", "value": "block,review"}. The result will be frozen according to the suggestion in the picture detection result.
|
|
1160
1200
|
:param pulumi.Input[bool] scan_image_no_file_type: Whether the oss stock scan task detects images with file names without suffixes. true: Detect pictures with file names without suffixes, false: Do not detect pictures with file names without suffixes
|
|
1161
1201
|
:param pulumi.Input[str] start_date: The start time of the file upload time range represents the files uploaded after scanning this time point.
|
|
@@ -1168,7 +1208,12 @@ class OssStockTask(pulumi.CustomResource):
|
|
|
1168
1208
|
:param pulumi.Input[bool] video_opened: oss stock scan task detect video. true: scan video, false: do not scan video
|
|
1169
1209
|
:param pulumi.Input[str] video_porn_freeze_config: Video automatic freezing porn scene configuration. Example: {"type": "suggestion", "value": "block,review"}. The result will be frozen according to the suggestion in the video detection result.
|
|
1170
1210
|
:param pulumi.Input[int] video_scan_limit: The upper limit of video scanning in the oss stock scan task. The default value is 1000/Bucket.
|
|
1171
|
-
:param pulumi.Input[str] video_scenes: The video detection scenarios included in the oss stock scan task.
|
|
1211
|
+
:param pulumi.Input[str] video_scenes: The video detection scenarios included in the oss stock scan task.
|
|
1212
|
+
porn: pornography detection
|
|
1213
|
+
terrorism: terrorist content detection
|
|
1214
|
+
ad: ad violation detection
|
|
1215
|
+
live: undesirable scene detection
|
|
1216
|
+
antispam: Video voice antispam
|
|
1172
1217
|
:param pulumi.Input[str] video_terrorism_freeze_config: The video automatically freezes the configuration of terrorism scenes. Example:{"type":"suggestion","value":"block,review"}. The results will be frozen according to the suggestion in the video detection results.
|
|
1173
1218
|
:param pulumi.Input[str] video_voice_antispam_freeze_config: Voice auto freeze configuration in video. Example:{"type":"suggestion","value":"block,review"}. The results will be frozen according to the suggestion in the video detection results.
|
|
1174
1219
|
"""
|
|
@@ -1344,7 +1389,11 @@ class OssStockTask(pulumi.CustomResource):
|
|
|
1344
1389
|
:param pulumi.Input[bool] image_opened: oss stock scan task detect images. true: scan images, false: do not scan images
|
|
1345
1390
|
:param pulumi.Input[str] image_porn_freeze_config: Picture automatic freezing porn scene configuration. Example: {"type": "suggestion", "value": "block,review"}. The result will be frozen according to the suggestion in the picture detection result.
|
|
1346
1391
|
:param pulumi.Input[int] image_scan_limit: The upper limit for scanning images in the oss stock scan task. The default value is 10000 images per Bucket.
|
|
1347
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] image_scenes: The image moderation scenario included in the oss stock scan task.Valid values:
|
|
1392
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] image_scenes: The image moderation scenario included in the oss stock scan task.Valid values:
|
|
1393
|
+
porn: pornography detection
|
|
1394
|
+
terrorism: terrorist content detection
|
|
1395
|
+
ad: ad violation detection
|
|
1396
|
+
live: undesirable scene detection
|
|
1348
1397
|
:param pulumi.Input[str] image_terrorism_freeze_config: The picture automatically freezes the configuration of terrorism scenes. Example: {"type": "suggestion", "value": "block,review"}. The result will be frozen according to the suggestion in the picture detection result.
|
|
1349
1398
|
:param pulumi.Input[bool] scan_image_no_file_type: Whether the oss stock scan task detects images with file names without suffixes. true: Detect pictures with file names without suffixes, false: Do not detect pictures with file names without suffixes
|
|
1350
1399
|
:param pulumi.Input[str] start_date: The start time of the file upload time range represents the files uploaded after scanning this time point.
|
|
@@ -1357,7 +1406,12 @@ class OssStockTask(pulumi.CustomResource):
|
|
|
1357
1406
|
:param pulumi.Input[bool] video_opened: oss stock scan task detect video. true: scan video, false: do not scan video
|
|
1358
1407
|
:param pulumi.Input[str] video_porn_freeze_config: Video automatic freezing porn scene configuration. Example: {"type": "suggestion", "value": "block,review"}. The result will be frozen according to the suggestion in the video detection result.
|
|
1359
1408
|
:param pulumi.Input[int] video_scan_limit: The upper limit of video scanning in the oss stock scan task. The default value is 1000/Bucket.
|
|
1360
|
-
:param pulumi.Input[str] video_scenes: The video detection scenarios included in the oss stock scan task.
|
|
1409
|
+
:param pulumi.Input[str] video_scenes: The video detection scenarios included in the oss stock scan task.
|
|
1410
|
+
porn: pornography detection
|
|
1411
|
+
terrorism: terrorist content detection
|
|
1412
|
+
ad: ad violation detection
|
|
1413
|
+
live: undesirable scene detection
|
|
1414
|
+
antispam: Video voice antispam
|
|
1361
1415
|
:param pulumi.Input[str] video_terrorism_freeze_config: The video automatically freezes the configuration of terrorism scenes. Example:{"type":"suggestion","value":"block,review"}. The results will be frozen according to the suggestion in the video detection results.
|
|
1362
1416
|
:param pulumi.Input[str] video_voice_antispam_freeze_config: Voice auto freeze configuration in video. Example:{"type":"suggestion","value":"block,review"}. The results will be frozen according to the suggestion in the video detection results.
|
|
1363
1417
|
"""
|
|
@@ -1540,7 +1594,11 @@ class OssStockTask(pulumi.CustomResource):
|
|
|
1540
1594
|
@pulumi.getter(name="imageScenes")
|
|
1541
1595
|
def image_scenes(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
1542
1596
|
"""
|
|
1543
|
-
The image moderation scenario included in the oss stock scan task.Valid values:
|
|
1597
|
+
The image moderation scenario included in the oss stock scan task.Valid values:
|
|
1598
|
+
porn: pornography detection
|
|
1599
|
+
terrorism: terrorist content detection
|
|
1600
|
+
ad: ad violation detection
|
|
1601
|
+
live: undesirable scene detection
|
|
1544
1602
|
"""
|
|
1545
1603
|
return pulumi.get(self, "image_scenes")
|
|
1546
1604
|
|
|
@@ -1644,7 +1702,12 @@ class OssStockTask(pulumi.CustomResource):
|
|
|
1644
1702
|
@pulumi.getter(name="videoScenes")
|
|
1645
1703
|
def video_scenes(self) -> pulumi.Output[Optional[str]]:
|
|
1646
1704
|
"""
|
|
1647
|
-
The video detection scenarios included in the oss stock scan task.
|
|
1705
|
+
The video detection scenarios included in the oss stock scan task.
|
|
1706
|
+
porn: pornography detection
|
|
1707
|
+
terrorism: terrorist content detection
|
|
1708
|
+
ad: ad violation detection
|
|
1709
|
+
live: undesirable scene detection
|
|
1710
|
+
antispam: Video voice antispam
|
|
1648
1711
|
"""
|
|
1649
1712
|
return pulumi.get(self, "video_scenes")
|
|
1650
1713
|
|
|
@@ -30,7 +30,7 @@ class SaslAclArgs:
|
|
|
30
30
|
:param pulumi.Input[str] acl_operation_type: Operation type for this acl. The operation type can only be "Write" and "Read".
|
|
31
31
|
:param pulumi.Input[str] acl_resource_name: Resource name for this acl. The resource name should be a topic or consumer group name.
|
|
32
32
|
:param pulumi.Input[str] acl_resource_pattern_type: Resource pattern type for this acl. The resource pattern support two types "LITERAL" and "PREFIXED". "LITERAL": A literal name defines the full name of a resource. The special wildcard character "*" can be used to represent a resource with any name. "PREFIXED": A prefixed name defines a prefix for a resource.
|
|
33
|
-
:param pulumi.Input[str] acl_resource_type: Resource type for this acl. The resource type can only be "Topic" and "
|
|
33
|
+
:param pulumi.Input[str] acl_resource_type: Resource type for this acl. The resource type can only be "Topic", "Group". Since version 1.247.0, the resource type support "Cluster" and "TransactionalId".
|
|
34
34
|
:param pulumi.Input[str] instance_id: ID of the ALIKAFKA Instance that owns the groups.
|
|
35
35
|
:param pulumi.Input[str] username: Username for the sasl user. The length should between 1 to 64 characters. The user should be an existed sasl user.
|
|
36
36
|
"""
|
|
@@ -81,7 +81,7 @@ class SaslAclArgs:
|
|
|
81
81
|
@pulumi.getter(name="aclResourceType")
|
|
82
82
|
def acl_resource_type(self) -> pulumi.Input[str]:
|
|
83
83
|
"""
|
|
84
|
-
Resource type for this acl. The resource type can only be "Topic" and "
|
|
84
|
+
Resource type for this acl. The resource type can only be "Topic", "Group". Since version 1.247.0, the resource type support "Cluster" and "TransactionalId".
|
|
85
85
|
"""
|
|
86
86
|
return pulumi.get(self, "acl_resource_type")
|
|
87
87
|
|
|
@@ -129,7 +129,7 @@ class _SaslAclState:
|
|
|
129
129
|
:param pulumi.Input[str] acl_operation_type: Operation type for this acl. The operation type can only be "Write" and "Read".
|
|
130
130
|
:param pulumi.Input[str] acl_resource_name: Resource name for this acl. The resource name should be a topic or consumer group name.
|
|
131
131
|
:param pulumi.Input[str] acl_resource_pattern_type: Resource pattern type for this acl. The resource pattern support two types "LITERAL" and "PREFIXED". "LITERAL": A literal name defines the full name of a resource. The special wildcard character "*" can be used to represent a resource with any name. "PREFIXED": A prefixed name defines a prefix for a resource.
|
|
132
|
-
:param pulumi.Input[str] acl_resource_type: Resource type for this acl. The resource type can only be "Topic" and "
|
|
132
|
+
:param pulumi.Input[str] acl_resource_type: Resource type for this acl. The resource type can only be "Topic", "Group". Since version 1.247.0, the resource type support "Cluster" and "TransactionalId".
|
|
133
133
|
:param pulumi.Input[str] host: The host of the acl.
|
|
134
134
|
:param pulumi.Input[str] instance_id: ID of the ALIKAFKA Instance that owns the groups.
|
|
135
135
|
:param pulumi.Input[str] username: Username for the sasl user. The length should between 1 to 64 characters. The user should be an existed sasl user.
|
|
@@ -189,7 +189,7 @@ class _SaslAclState:
|
|
|
189
189
|
@pulumi.getter(name="aclResourceType")
|
|
190
190
|
def acl_resource_type(self) -> Optional[pulumi.Input[str]]:
|
|
191
191
|
"""
|
|
192
|
-
Resource type for this acl. The resource type can only be "Topic" and "
|
|
192
|
+
Resource type for this acl. The resource type can only be "Topic", "Group". Since version 1.247.0, the resource type support "Cluster" and "TransactionalId".
|
|
193
193
|
"""
|
|
194
194
|
return pulumi.get(self, "acl_resource_type")
|
|
195
195
|
|
|
@@ -322,7 +322,7 @@ class SaslAcl(pulumi.CustomResource):
|
|
|
322
322
|
:param pulumi.Input[str] acl_operation_type: Operation type for this acl. The operation type can only be "Write" and "Read".
|
|
323
323
|
:param pulumi.Input[str] acl_resource_name: Resource name for this acl. The resource name should be a topic or consumer group name.
|
|
324
324
|
:param pulumi.Input[str] acl_resource_pattern_type: Resource pattern type for this acl. The resource pattern support two types "LITERAL" and "PREFIXED". "LITERAL": A literal name defines the full name of a resource. The special wildcard character "*" can be used to represent a resource with any name. "PREFIXED": A prefixed name defines a prefix for a resource.
|
|
325
|
-
:param pulumi.Input[str] acl_resource_type: Resource type for this acl. The resource type can only be "Topic" and "
|
|
325
|
+
:param pulumi.Input[str] acl_resource_type: Resource type for this acl. The resource type can only be "Topic", "Group". Since version 1.247.0, the resource type support "Cluster" and "TransactionalId".
|
|
326
326
|
:param pulumi.Input[str] instance_id: ID of the ALIKAFKA Instance that owns the groups.
|
|
327
327
|
:param pulumi.Input[str] username: Username for the sasl user. The length should between 1 to 64 characters. The user should be an existed sasl user.
|
|
328
328
|
"""
|
|
@@ -479,7 +479,7 @@ class SaslAcl(pulumi.CustomResource):
|
|
|
479
479
|
:param pulumi.Input[str] acl_operation_type: Operation type for this acl. The operation type can only be "Write" and "Read".
|
|
480
480
|
:param pulumi.Input[str] acl_resource_name: Resource name for this acl. The resource name should be a topic or consumer group name.
|
|
481
481
|
:param pulumi.Input[str] acl_resource_pattern_type: Resource pattern type for this acl. The resource pattern support two types "LITERAL" and "PREFIXED". "LITERAL": A literal name defines the full name of a resource. The special wildcard character "*" can be used to represent a resource with any name. "PREFIXED": A prefixed name defines a prefix for a resource.
|
|
482
|
-
:param pulumi.Input[str] acl_resource_type: Resource type for this acl. The resource type can only be "Topic" and "
|
|
482
|
+
:param pulumi.Input[str] acl_resource_type: Resource type for this acl. The resource type can only be "Topic", "Group". Since version 1.247.0, the resource type support "Cluster" and "TransactionalId".
|
|
483
483
|
:param pulumi.Input[str] host: The host of the acl.
|
|
484
484
|
:param pulumi.Input[str] instance_id: ID of the ALIKAFKA Instance that owns the groups.
|
|
485
485
|
:param pulumi.Input[str] username: Username for the sasl user. The length should between 1 to 64 characters. The user should be an existed sasl user.
|
|
@@ -525,7 +525,7 @@ class SaslAcl(pulumi.CustomResource):
|
|
|
525
525
|
@pulumi.getter(name="aclResourceType")
|
|
526
526
|
def acl_resource_type(self) -> pulumi.Output[str]:
|
|
527
527
|
"""
|
|
528
|
-
Resource type for this acl. The resource type can only be "Topic" and "
|
|
528
|
+
Resource type for this acl. The resource type can only be "Topic", "Group". Since version 1.247.0, the resource type support "Cluster" and "TransactionalId".
|
|
529
529
|
"""
|
|
530
530
|
return pulumi.get(self, "acl_resource_type")
|
|
531
531
|
|
|
@@ -33,6 +33,8 @@ __all__ = [
|
|
|
33
33
|
'ApiRequestParameterArgsDict',
|
|
34
34
|
'ApiSystemParameterArgs',
|
|
35
35
|
'ApiSystemParameterArgsDict',
|
|
36
|
+
'GroupUserLogConfigArgs',
|
|
37
|
+
'GroupUserLogConfigArgsDict',
|
|
36
38
|
'InstanceToConnectVpcIpBlockArgs',
|
|
37
39
|
'InstanceToConnectVpcIpBlockArgsDict',
|
|
38
40
|
'InstanceZoneVswitchSecurityGroupArgs',
|
|
@@ -1121,6 +1123,138 @@ class ApiSystemParameterArgs:
|
|
|
1121
1123
|
pulumi.set(self, "name_service", value)
|
|
1122
1124
|
|
|
1123
1125
|
|
|
1126
|
+
if not MYPY:
|
|
1127
|
+
class GroupUserLogConfigArgsDict(TypedDict):
|
|
1128
|
+
jwt_claims: NotRequired[pulumi.Input[str]]
|
|
1129
|
+
"""
|
|
1130
|
+
The jwt claims to be record, support multi jwt claims split by `,`. Set `*` to record all.
|
|
1131
|
+
"""
|
|
1132
|
+
query_string: NotRequired[pulumi.Input[str]]
|
|
1133
|
+
"""
|
|
1134
|
+
The query params to be record, support multi query params split by `,`. Set `*` to record all.
|
|
1135
|
+
"""
|
|
1136
|
+
request_body: NotRequired[pulumi.Input[bool]]
|
|
1137
|
+
"""
|
|
1138
|
+
Whether to record the request body.
|
|
1139
|
+
"""
|
|
1140
|
+
request_headers: NotRequired[pulumi.Input[str]]
|
|
1141
|
+
"""
|
|
1142
|
+
The request headers to be record, support multi request headers split by `,`. Set `*` to record all.
|
|
1143
|
+
"""
|
|
1144
|
+
response_body: NotRequired[pulumi.Input[bool]]
|
|
1145
|
+
"""
|
|
1146
|
+
Whether to record the response body.
|
|
1147
|
+
"""
|
|
1148
|
+
response_headers: NotRequired[pulumi.Input[str]]
|
|
1149
|
+
"""
|
|
1150
|
+
The response headers to be record, support multi response headers split by `,`. Set `*` to record all.
|
|
1151
|
+
"""
|
|
1152
|
+
elif False:
|
|
1153
|
+
GroupUserLogConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
1154
|
+
|
|
1155
|
+
@pulumi.input_type
|
|
1156
|
+
class GroupUserLogConfigArgs:
|
|
1157
|
+
def __init__(__self__, *,
|
|
1158
|
+
jwt_claims: Optional[pulumi.Input[str]] = None,
|
|
1159
|
+
query_string: Optional[pulumi.Input[str]] = None,
|
|
1160
|
+
request_body: Optional[pulumi.Input[bool]] = None,
|
|
1161
|
+
request_headers: Optional[pulumi.Input[str]] = None,
|
|
1162
|
+
response_body: Optional[pulumi.Input[bool]] = None,
|
|
1163
|
+
response_headers: Optional[pulumi.Input[str]] = None):
|
|
1164
|
+
"""
|
|
1165
|
+
:param pulumi.Input[str] jwt_claims: The jwt claims to be record, support multi jwt claims split by `,`. Set `*` to record all.
|
|
1166
|
+
:param pulumi.Input[str] query_string: The query params to be record, support multi query params split by `,`. Set `*` to record all.
|
|
1167
|
+
:param pulumi.Input[bool] request_body: Whether to record the request body.
|
|
1168
|
+
:param pulumi.Input[str] request_headers: The request headers to be record, support multi request headers split by `,`. Set `*` to record all.
|
|
1169
|
+
:param pulumi.Input[bool] response_body: Whether to record the response body.
|
|
1170
|
+
:param pulumi.Input[str] response_headers: The response headers to be record, support multi response headers split by `,`. Set `*` to record all.
|
|
1171
|
+
"""
|
|
1172
|
+
if jwt_claims is not None:
|
|
1173
|
+
pulumi.set(__self__, "jwt_claims", jwt_claims)
|
|
1174
|
+
if query_string is not None:
|
|
1175
|
+
pulumi.set(__self__, "query_string", query_string)
|
|
1176
|
+
if request_body is not None:
|
|
1177
|
+
pulumi.set(__self__, "request_body", request_body)
|
|
1178
|
+
if request_headers is not None:
|
|
1179
|
+
pulumi.set(__self__, "request_headers", request_headers)
|
|
1180
|
+
if response_body is not None:
|
|
1181
|
+
pulumi.set(__self__, "response_body", response_body)
|
|
1182
|
+
if response_headers is not None:
|
|
1183
|
+
pulumi.set(__self__, "response_headers", response_headers)
|
|
1184
|
+
|
|
1185
|
+
@property
|
|
1186
|
+
@pulumi.getter(name="jwtClaims")
|
|
1187
|
+
def jwt_claims(self) -> Optional[pulumi.Input[str]]:
|
|
1188
|
+
"""
|
|
1189
|
+
The jwt claims to be record, support multi jwt claims split by `,`. Set `*` to record all.
|
|
1190
|
+
"""
|
|
1191
|
+
return pulumi.get(self, "jwt_claims")
|
|
1192
|
+
|
|
1193
|
+
@jwt_claims.setter
|
|
1194
|
+
def jwt_claims(self, value: Optional[pulumi.Input[str]]):
|
|
1195
|
+
pulumi.set(self, "jwt_claims", value)
|
|
1196
|
+
|
|
1197
|
+
@property
|
|
1198
|
+
@pulumi.getter(name="queryString")
|
|
1199
|
+
def query_string(self) -> Optional[pulumi.Input[str]]:
|
|
1200
|
+
"""
|
|
1201
|
+
The query params to be record, support multi query params split by `,`. Set `*` to record all.
|
|
1202
|
+
"""
|
|
1203
|
+
return pulumi.get(self, "query_string")
|
|
1204
|
+
|
|
1205
|
+
@query_string.setter
|
|
1206
|
+
def query_string(self, value: Optional[pulumi.Input[str]]):
|
|
1207
|
+
pulumi.set(self, "query_string", value)
|
|
1208
|
+
|
|
1209
|
+
@property
|
|
1210
|
+
@pulumi.getter(name="requestBody")
|
|
1211
|
+
def request_body(self) -> Optional[pulumi.Input[bool]]:
|
|
1212
|
+
"""
|
|
1213
|
+
Whether to record the request body.
|
|
1214
|
+
"""
|
|
1215
|
+
return pulumi.get(self, "request_body")
|
|
1216
|
+
|
|
1217
|
+
@request_body.setter
|
|
1218
|
+
def request_body(self, value: Optional[pulumi.Input[bool]]):
|
|
1219
|
+
pulumi.set(self, "request_body", value)
|
|
1220
|
+
|
|
1221
|
+
@property
|
|
1222
|
+
@pulumi.getter(name="requestHeaders")
|
|
1223
|
+
def request_headers(self) -> Optional[pulumi.Input[str]]:
|
|
1224
|
+
"""
|
|
1225
|
+
The request headers to be record, support multi request headers split by `,`. Set `*` to record all.
|
|
1226
|
+
"""
|
|
1227
|
+
return pulumi.get(self, "request_headers")
|
|
1228
|
+
|
|
1229
|
+
@request_headers.setter
|
|
1230
|
+
def request_headers(self, value: Optional[pulumi.Input[str]]):
|
|
1231
|
+
pulumi.set(self, "request_headers", value)
|
|
1232
|
+
|
|
1233
|
+
@property
|
|
1234
|
+
@pulumi.getter(name="responseBody")
|
|
1235
|
+
def response_body(self) -> Optional[pulumi.Input[bool]]:
|
|
1236
|
+
"""
|
|
1237
|
+
Whether to record the response body.
|
|
1238
|
+
"""
|
|
1239
|
+
return pulumi.get(self, "response_body")
|
|
1240
|
+
|
|
1241
|
+
@response_body.setter
|
|
1242
|
+
def response_body(self, value: Optional[pulumi.Input[bool]]):
|
|
1243
|
+
pulumi.set(self, "response_body", value)
|
|
1244
|
+
|
|
1245
|
+
@property
|
|
1246
|
+
@pulumi.getter(name="responseHeaders")
|
|
1247
|
+
def response_headers(self) -> Optional[pulumi.Input[str]]:
|
|
1248
|
+
"""
|
|
1249
|
+
The response headers to be record, support multi response headers split by `,`. Set `*` to record all.
|
|
1250
|
+
"""
|
|
1251
|
+
return pulumi.get(self, "response_headers")
|
|
1252
|
+
|
|
1253
|
+
@response_headers.setter
|
|
1254
|
+
def response_headers(self, value: Optional[pulumi.Input[str]]):
|
|
1255
|
+
pulumi.set(self, "response_headers", value)
|
|
1256
|
+
|
|
1257
|
+
|
|
1124
1258
|
if not MYPY:
|
|
1125
1259
|
class InstanceToConnectVpcIpBlockArgsDict(TypedDict):
|
|
1126
1260
|
cidr_block: pulumi.Input[str]
|