pulumi-azure-native 2.62.0__py3-none-any.whl → 2.63.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-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +71 -1
- pulumi_azure_native/azuredatatransfer/__init__.py +3 -0
- pulumi_azure_native/azuredatatransfer/connection.py +3 -3
- pulumi_azure_native/azuredatatransfer/flow.py +3 -3
- pulumi_azure_native/azuredatatransfer/get_connection.py +2 -2
- pulumi_azure_native/azuredatatransfer/get_flow.py +2 -2
- pulumi_azure_native/azuredatatransfer/get_pipeline.py +2 -2
- pulumi_azure_native/azuredatatransfer/list_azure_data_transfer_approved_schemas.py +2 -2
- pulumi_azure_native/azuredatatransfer/list_list_pending_connection.py +2 -2
- pulumi_azure_native/azuredatatransfer/list_list_pending_flow.py +2 -2
- pulumi_azure_native/azuredatatransfer/list_list_schema.py +2 -2
- pulumi_azure_native/azuredatatransfer/pipeline.py +3 -3
- pulumi_azure_native/azuredatatransfer/v20231011preview/connection.py +1 -1
- pulumi_azure_native/azuredatatransfer/v20231011preview/flow.py +1 -1
- pulumi_azure_native/azuredatatransfer/v20231011preview/pipeline.py +1 -1
- pulumi_azure_native/azuredatatransfer/v20240125/connection.py +1 -1
- pulumi_azure_native/azuredatatransfer/v20240125/flow.py +1 -1
- pulumi_azure_native/azuredatatransfer/v20240125/pipeline.py +1 -1
- pulumi_azure_native/azuredatatransfer/v20240507/connection.py +1 -1
- pulumi_azure_native/azuredatatransfer/v20240507/flow.py +1 -1
- pulumi_azure_native/azuredatatransfer/v20240507/pipeline.py +1 -1
- pulumi_azure_native/azuredatatransfer/v20240911/__init__.py +20 -0
- pulumi_azure_native/azuredatatransfer/v20240911/_enums.py +111 -0
- pulumi_azure_native/azuredatatransfer/v20240911/_inputs.py +1213 -0
- pulumi_azure_native/azuredatatransfer/v20240911/connection.py +258 -0
- pulumi_azure_native/azuredatatransfer/v20240911/flow.py +337 -0
- pulumi_azure_native/azuredatatransfer/v20240911/get_connection.py +162 -0
- pulumi_azure_native/azuredatatransfer/v20240911/get_flow.py +193 -0
- pulumi_azure_native/azuredatatransfer/v20240911/get_pipeline.py +162 -0
- pulumi_azure_native/azuredatatransfer/v20240911/list_azure_data_transfer_approved_schemas.py +85 -0
- pulumi_azure_native/azuredatatransfer/v20240911/list_list_pending_connection.py +97 -0
- pulumi_azure_native/azuredatatransfer/v20240911/list_list_pending_flow.py +97 -0
- pulumi_azure_native/azuredatatransfer/v20240911/list_list_schema.py +125 -0
- pulumi_azure_native/azuredatatransfer/v20240911/outputs.py +2123 -0
- pulumi_azure_native/azuredatatransfer/v20240911/pipeline.py +258 -0
- pulumi_azure_native/cognitiveservices/__init__.py +3 -0
- pulumi_azure_native/cognitiveservices/account.py +3 -3
- pulumi_azure_native/cognitiveservices/commitment_plan.py +3 -3
- pulumi_azure_native/cognitiveservices/commitment_plan_association.py +3 -3
- pulumi_azure_native/cognitiveservices/deployment.py +3 -3
- pulumi_azure_native/cognitiveservices/encryption_scope.py +3 -3
- pulumi_azure_native/cognitiveservices/get_account.py +2 -2
- pulumi_azure_native/cognitiveservices/get_commitment_plan.py +2 -2
- pulumi_azure_native/cognitiveservices/get_commitment_plan_association.py +2 -2
- pulumi_azure_native/cognitiveservices/get_deployment.py +2 -2
- pulumi_azure_native/cognitiveservices/get_encryption_scope.py +2 -2
- pulumi_azure_native/cognitiveservices/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/cognitiveservices/get_rai_blocklist.py +2 -2
- pulumi_azure_native/cognitiveservices/get_rai_blocklist_item.py +2 -2
- pulumi_azure_native/cognitiveservices/get_rai_policy.py +2 -2
- pulumi_azure_native/cognitiveservices/get_shared_commitment_plan.py +2 -2
- pulumi_azure_native/cognitiveservices/list_account_keys.py +2 -2
- pulumi_azure_native/cognitiveservices/private_endpoint_connection.py +3 -3
- pulumi_azure_native/cognitiveservices/rai_blocklist.py +3 -3
- pulumi_azure_native/cognitiveservices/rai_blocklist_item.py +3 -3
- pulumi_azure_native/cognitiveservices/rai_policy.py +3 -3
- pulumi_azure_native/cognitiveservices/shared_commitment_plan.py +3 -3
- pulumi_azure_native/cognitiveservices/v20170418/account.py +1 -1
- pulumi_azure_native/cognitiveservices/v20230501/account.py +1 -1
- pulumi_azure_native/cognitiveservices/v20230501/commitment_plan.py +1 -1
- pulumi_azure_native/cognitiveservices/v20230501/commitment_plan_association.py +1 -1
- pulumi_azure_native/cognitiveservices/v20230501/deployment.py +1 -1
- pulumi_azure_native/cognitiveservices/v20230501/private_endpoint_connection.py +1 -1
- pulumi_azure_native/cognitiveservices/v20230501/shared_commitment_plan.py +1 -1
- pulumi_azure_native/cognitiveservices/v20231001preview/account.py +1 -1
- pulumi_azure_native/cognitiveservices/v20231001preview/commitment_plan.py +1 -1
- pulumi_azure_native/cognitiveservices/v20231001preview/commitment_plan_association.py +1 -1
- pulumi_azure_native/cognitiveservices/v20231001preview/deployment.py +1 -1
- pulumi_azure_native/cognitiveservices/v20231001preview/encryption_scope.py +1 -1
- pulumi_azure_native/cognitiveservices/v20231001preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/cognitiveservices/v20231001preview/rai_blocklist.py +1 -1
- pulumi_azure_native/cognitiveservices/v20231001preview/rai_blocklist_item.py +1 -1
- pulumi_azure_native/cognitiveservices/v20231001preview/rai_policy.py +1 -1
- pulumi_azure_native/cognitiveservices/v20231001preview/shared_commitment_plan.py +1 -1
- pulumi_azure_native/cognitiveservices/v20240401preview/account.py +1 -1
- pulumi_azure_native/cognitiveservices/v20240401preview/commitment_plan.py +1 -1
- pulumi_azure_native/cognitiveservices/v20240401preview/commitment_plan_association.py +1 -1
- pulumi_azure_native/cognitiveservices/v20240401preview/deployment.py +1 -1
- pulumi_azure_native/cognitiveservices/v20240401preview/encryption_scope.py +1 -1
- pulumi_azure_native/cognitiveservices/v20240401preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/cognitiveservices/v20240401preview/rai_blocklist.py +1 -1
- pulumi_azure_native/cognitiveservices/v20240401preview/rai_blocklist_item.py +1 -1
- pulumi_azure_native/cognitiveservices/v20240401preview/rai_policy.py +1 -1
- pulumi_azure_native/cognitiveservices/v20240401preview/shared_commitment_plan.py +1 -1
- pulumi_azure_native/cognitiveservices/v20240601preview/account.py +1 -1
- pulumi_azure_native/cognitiveservices/v20240601preview/commitment_plan.py +1 -1
- pulumi_azure_native/cognitiveservices/v20240601preview/commitment_plan_association.py +1 -1
- pulumi_azure_native/cognitiveservices/v20240601preview/deployment.py +1 -1
- pulumi_azure_native/cognitiveservices/v20240601preview/encryption_scope.py +1 -1
- pulumi_azure_native/cognitiveservices/v20240601preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/cognitiveservices/v20240601preview/rai_blocklist.py +1 -1
- pulumi_azure_native/cognitiveservices/v20240601preview/rai_blocklist_item.py +1 -1
- pulumi_azure_native/cognitiveservices/v20240601preview/rai_policy.py +1 -1
- pulumi_azure_native/cognitiveservices/v20240601preview/shared_commitment_plan.py +1 -1
- pulumi_azure_native/cognitiveservices/v20241001/__init__.py +31 -0
- pulumi_azure_native/cognitiveservices/v20241001/_enums.py +156 -0
- pulumi_azure_native/cognitiveservices/v20241001/_inputs.py +2577 -0
- pulumi_azure_native/cognitiveservices/v20241001/account.py +355 -0
- pulumi_azure_native/cognitiveservices/v20241001/commitment_plan.py +347 -0
- pulumi_azure_native/cognitiveservices/v20241001/commitment_plan_association.py +258 -0
- pulumi_azure_native/cognitiveservices/v20241001/deployment.py +289 -0
- pulumi_azure_native/cognitiveservices/v20241001/encryption_scope.py +260 -0
- pulumi_azure_native/cognitiveservices/v20241001/get_account.py +214 -0
- pulumi_azure_native/cognitiveservices/v20241001/get_commitment_plan.py +206 -0
- pulumi_azure_native/cognitiveservices/v20241001/get_commitment_plan_association.py +167 -0
- pulumi_azure_native/cognitiveservices/v20241001/get_deployment.py +180 -0
- pulumi_azure_native/cognitiveservices/v20241001/get_encryption_scope.py +167 -0
- pulumi_azure_native/cognitiveservices/v20241001/get_private_endpoint_connection.py +167 -0
- pulumi_azure_native/cognitiveservices/v20241001/get_rai_blocklist.py +167 -0
- pulumi_azure_native/cognitiveservices/v20241001/get_rai_blocklist_item.py +172 -0
- pulumi_azure_native/cognitiveservices/v20241001/get_rai_policy.py +167 -0
- pulumi_azure_native/cognitiveservices/v20241001/get_shared_commitment_plan.py +201 -0
- pulumi_azure_native/cognitiveservices/v20241001/list_account_keys.py +96 -0
- pulumi_azure_native/cognitiveservices/v20241001/outputs.py +3249 -0
- pulumi_azure_native/cognitiveservices/v20241001/private_endpoint_connection.py +260 -0
- pulumi_azure_native/cognitiveservices/v20241001/rai_blocklist.py +259 -0
- pulumi_azure_native/cognitiveservices/v20241001/rai_blocklist_item.py +280 -0
- pulumi_azure_native/cognitiveservices/v20241001/rai_policy.py +260 -0
- pulumi_azure_native/cognitiveservices/v20241001/shared_commitment_plan.py +326 -0
- pulumi_azure_native/compute/v20240701/_enums.py +1 -1
- pulumi_azure_native/compute/v20240701/_inputs.py +3 -3
- pulumi_azure_native/compute/v20240701/outputs.py +2 -2
- pulumi_azure_native/confidentialledger/v20240709preview/_inputs.py +41 -1
- pulumi_azure_native/confidentialledger/v20240709preview/outputs.py +29 -1
- pulumi_azure_native/containerservice/__init__.py +5 -0
- pulumi_azure_native/containerservice/_enums.py +15 -0
- pulumi_azure_native/containerservice/_inputs.py +37 -0
- pulumi_azure_native/containerservice/agent_pool.py +3 -3
- pulumi_azure_native/containerservice/auto_upgrade_profile.py +343 -0
- pulumi_azure_native/containerservice/fleet.py +3 -3
- pulumi_azure_native/containerservice/fleet_member.py +3 -3
- pulumi_azure_native/containerservice/fleet_update_strategy.py +3 -3
- pulumi_azure_native/containerservice/get_agent_pool.py +2 -2
- pulumi_azure_native/containerservice/get_auto_upgrade_profile.py +211 -0
- pulumi_azure_native/containerservice/get_fleet.py +2 -2
- pulumi_azure_native/containerservice/get_fleet_member.py +2 -2
- pulumi_azure_native/containerservice/get_fleet_update_strategy.py +2 -2
- pulumi_azure_native/containerservice/get_maintenance_configuration.py +2 -2
- pulumi_azure_native/containerservice/get_managed_cluster.py +2 -2
- pulumi_azure_native/containerservice/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/containerservice/get_snapshot.py +2 -2
- pulumi_azure_native/containerservice/get_trusted_access_role_binding.py +2 -2
- pulumi_azure_native/containerservice/get_update_run.py +2 -2
- pulumi_azure_native/containerservice/list_fleet_credentials.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_admin_credentials.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_monitoring_user_credentials.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_user_credentials.py +2 -2
- pulumi_azure_native/containerservice/maintenance_configuration.py +3 -3
- pulumi_azure_native/containerservice/managed_cluster.py +3 -3
- pulumi_azure_native/containerservice/outputs.py +23 -0
- pulumi_azure_native/containerservice/private_endpoint_connection.py +3 -3
- pulumi_azure_native/containerservice/snapshot.py +3 -3
- pulumi_azure_native/containerservice/trusted_access_role_binding.py +3 -3
- pulumi_azure_native/containerservice/update_run.py +3 -3
- pulumi_azure_native/containerservice/v20190601/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20200601/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20210201/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20210501/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20210801/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20220402preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20220702preview/fleet.py +1 -1
- pulumi_azure_native/containerservice/v20220702preview/fleet_member.py +1 -1
- pulumi_azure_native/containerservice/v20230315preview/fleet.py +1 -1
- pulumi_azure_native/containerservice/v20230315preview/fleet_member.py +1 -1
- pulumi_azure_native/containerservice/v20230315preview/update_run.py +1 -1
- pulumi_azure_native/containerservice/v20230401/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230401/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230401/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230401/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230401/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230601/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230601/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230601/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230601/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230601/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230615preview/fleet.py +1 -1
- pulumi_azure_native/containerservice/v20230615preview/fleet_member.py +1 -1
- pulumi_azure_native/containerservice/v20230615preview/update_run.py +1 -1
- pulumi_azure_native/containerservice/v20230701/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230701/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230701/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230701/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230701/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230801/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230801/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230801/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230801/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230801/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230815preview/fleet.py +1 -1
- pulumi_azure_native/containerservice/v20230815preview/fleet_member.py +1 -1
- pulumi_azure_native/containerservice/v20230815preview/fleet_update_strategy.py +1 -1
- pulumi_azure_native/containerservice/v20230815preview/update_run.py +1 -1
- pulumi_azure_native/containerservice/v20230901/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230901/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230901/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230901/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230901/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230901/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20231001/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20231001/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20231001/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20231001/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20231001/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231001/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20231015/fleet.py +1 -1
- pulumi_azure_native/containerservice/v20231015/fleet_member.py +1 -1
- pulumi_azure_native/containerservice/v20231015/fleet_update_strategy.py +1 -1
- pulumi_azure_native/containerservice/v20231015/update_run.py +1 -1
- pulumi_azure_native/containerservice/v20231101/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20231101/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20231101/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20231101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20231101/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231101/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240101/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240101/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240101/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240101/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240101/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240102preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240102preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240102preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240102preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240102preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240102preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240201/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240201/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240201/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240201/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240201/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240201/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240202preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240202preview/fleet.py +1 -1
- pulumi_azure_native/containerservice/v20240202preview/fleet_member.py +1 -1
- pulumi_azure_native/containerservice/v20240202preview/fleet_update_strategy.py +1 -1
- pulumi_azure_native/containerservice/v20240202preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240202preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240202preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240202preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240202preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240202preview/update_run.py +1 -1
- pulumi_azure_native/containerservice/v20240302preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240302preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240302preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240302preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240302preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240302preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240401/fleet.py +1 -1
- pulumi_azure_native/containerservice/v20240401/fleet_member.py +1 -1
- pulumi_azure_native/containerservice/v20240401/fleet_update_strategy.py +1 -1
- pulumi_azure_native/containerservice/v20240401/update_run.py +1 -1
- pulumi_azure_native/containerservice/v20240402preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240402preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240402preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240402preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240402preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240402preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240501/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240501/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240501/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240501/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240501/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240501/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240502preview/__init__.py +11 -0
- pulumi_azure_native/containerservice/v20240502preview/_enums.py +64 -0
- pulumi_azure_native/containerservice/v20240502preview/_inputs.py +625 -0
- pulumi_azure_native/containerservice/v20240502preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240502preview/auto_upgrade_profile.py +341 -0
- pulumi_azure_native/containerservice/v20240502preview/fleet.py +307 -0
- pulumi_azure_native/containerservice/v20240502preview/fleet_member.py +269 -0
- pulumi_azure_native/containerservice/v20240502preview/fleet_update_strategy.py +241 -0
- pulumi_azure_native/containerservice/v20240502preview/get_auto_upgrade_profile.py +209 -0
- pulumi_azure_native/containerservice/v20240502preview/get_fleet.py +201 -0
- pulumi_azure_native/containerservice/v20240502preview/get_fleet_member.py +180 -0
- pulumi_azure_native/containerservice/v20240502preview/get_fleet_update_strategy.py +167 -0
- pulumi_azure_native/containerservice/v20240502preview/get_update_run.py +219 -0
- pulumi_azure_native/containerservice/v20240502preview/list_fleet_credentials.py +84 -0
- pulumi_azure_native/containerservice/v20240502preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240502preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240502preview/outputs.py +1235 -3
- pulumi_azure_native/containerservice/v20240502preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240502preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240502preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240502preview/update_run.py +362 -0
- pulumi_azure_native/containerservice/v20240602preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240602preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240602preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240602preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240602preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240602preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240701/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240701/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240701/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240701/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240701/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240701/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240702preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240702preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240702preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240702preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240702preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240702preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240801/__init__.py +25 -0
- pulumi_azure_native/containerservice/v20240801/_enums.py +628 -0
- pulumi_azure_native/containerservice/v20240801/_inputs.py +7532 -0
- pulumi_azure_native/containerservice/v20240801/agent_pool.py +1420 -0
- pulumi_azure_native/containerservice/v20240801/get_agent_pool.py +687 -0
- pulumi_azure_native/containerservice/v20240801/get_maintenance_configuration.py +167 -0
- pulumi_azure_native/containerservice/v20240801/get_managed_cluster.py +721 -0
- pulumi_azure_native/containerservice/v20240801/get_private_endpoint_connection.py +154 -0
- pulumi_azure_native/containerservice/v20240801/get_snapshot.py +253 -0
- pulumi_azure_native/containerservice/v20240801/get_trusted_access_role_binding.py +167 -0
- pulumi_azure_native/containerservice/v20240801/list_managed_cluster_admin_credentials.py +89 -0
- pulumi_azure_native/containerservice/v20240801/list_managed_cluster_monitoring_user_credentials.py +89 -0
- pulumi_azure_native/containerservice/v20240801/list_managed_cluster_user_credentials.py +94 -0
- pulumi_azure_native/containerservice/v20240801/maintenance_configuration.py +279 -0
- pulumi_azure_native/containerservice/v20240801/managed_cluster.py +1353 -0
- pulumi_azure_native/containerservice/v20240801/outputs.py +6472 -0
- pulumi_azure_native/containerservice/v20240801/private_endpoint_connection.py +251 -0
- pulumi_azure_native/containerservice/v20240801/snapshot.py +347 -0
- pulumi_azure_native/containerservice/v20240801/trusted_access_role_binding.py +260 -0
- pulumi_azure_native/datafactory/_inputs.py +20 -0
- pulumi_azure_native/datafactory/outputs.py +14 -0
- pulumi_azure_native/datafactory/v20180601/_inputs.py +20 -0
- pulumi_azure_native/datafactory/v20180601/outputs.py +14 -0
- pulumi_azure_native/dbformysql/__init__.py +3 -0
- pulumi_azure_native/dbformysql/get_server.py +2 -2
- pulumi_azure_native/dbformysql/server.py +3 -3
- pulumi_azure_native/dbformysql/v20200701preview/server.py +1 -1
- pulumi_azure_native/dbformysql/v20200701privatepreview/server.py +1 -1
- pulumi_azure_native/dbformysql/v20220101/server.py +1 -1
- pulumi_azure_native/dbformysql/v20220930preview/server.py +1 -1
- pulumi_azure_native/dbformysql/v20230601preview/server.py +1 -1
- pulumi_azure_native/dbformysql/v20230630/server.py +1 -1
- pulumi_azure_native/dbformysql/v20231001preview/server.py +1 -1
- pulumi_azure_native/dbformysql/v20231201preview/server.py +1 -1
- pulumi_azure_native/dbformysql/v20231230/server.py +1 -1
- pulumi_azure_native/dbformysql/v20240201preview/server.py +1 -1
- pulumi_azure_native/dbformysql/v20240601preview/__init__.py +12 -0
- pulumi_azure_native/dbformysql/v20240601preview/_enums.py +110 -0
- pulumi_azure_native/dbformysql/v20240601preview/_inputs.py +850 -0
- pulumi_azure_native/dbformysql/v20240601preview/get_server.py +409 -0
- pulumi_azure_native/dbformysql/v20240601preview/outputs.py +1147 -0
- pulumi_azure_native/dbformysql/v20240601preview/server.py +793 -0
- pulumi_azure_native/insights/__init__.py +3 -0
- pulumi_azure_native/insights/get_scheduled_query_rule.py +11 -11
- pulumi_azure_native/insights/scheduled_query_rule.py +27 -27
- pulumi_azure_native/insights/v20180416/scheduled_query_rule.py +1 -1
- pulumi_azure_native/insights/v20200501preview/scheduled_query_rule.py +1 -1
- pulumi_azure_native/insights/v20220801preview/get_scheduled_query_rule.py +9 -9
- pulumi_azure_native/insights/v20220801preview/scheduled_query_rule.py +25 -25
- pulumi_azure_native/insights/v20230315preview/get_scheduled_query_rule.py +9 -9
- pulumi_azure_native/insights/v20230315preview/scheduled_query_rule.py +25 -25
- pulumi_azure_native/insights/v20231201/get_scheduled_query_rule.py +9 -9
- pulumi_azure_native/insights/v20231201/scheduled_query_rule.py +25 -25
- pulumi_azure_native/insights/v20240101preview/__init__.py +12 -0
- pulumi_azure_native/insights/v20240101preview/_enums.py +71 -0
- pulumi_azure_native/insights/v20240101preview/_inputs.py +648 -0
- pulumi_azure_native/insights/v20240101preview/get_scheduled_query_rule.py +435 -0
- pulumi_azure_native/insights/v20240101preview/outputs.py +719 -0
- pulumi_azure_native/insights/v20240101preview/scheduled_query_rule.py +794 -0
- pulumi_azure_native/monitor/__init__.py +3 -0
- pulumi_azure_native/monitor/get_pipeline_group.py +4 -0
- pulumi_azure_native/monitor/pipeline_group.py +5 -1
- pulumi_azure_native/monitor/v20231001preview/pipeline_group.py +1 -1
- pulumi_azure_native/monitor/v20241001preview/__init__.py +12 -0
- pulumi_azure_native/monitor/v20241001preview/_enums.py +159 -0
- pulumi_azure_native/monitor/v20241001preview/_inputs.py +1888 -0
- pulumi_azure_native/monitor/v20241001preview/get_pipeline_group.py +175 -0
- pulumi_azure_native/monitor/v20241001preview/outputs.py +1573 -0
- pulumi_azure_native/monitor/v20241001preview/pipeline_group.py +287 -0
- pulumi_azure_native/pulumi-plugin.json +1 -1
- {pulumi_azure_native-2.62.0.dist-info → pulumi_azure_native-2.63.0.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.62.0.dist-info → pulumi_azure_native-2.63.0.dist-info}/RECORD +419 -330
- {pulumi_azure_native-2.62.0.dist-info → pulumi_azure_native-2.63.0.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.62.0.dist-info → pulumi_azure_native-2.63.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,260 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = ['TrustedAccessRoleBindingArgs', 'TrustedAccessRoleBinding']
|
|
19
|
+
|
|
20
|
+
@pulumi.input_type
|
|
21
|
+
class TrustedAccessRoleBindingArgs:
|
|
22
|
+
def __init__(__self__, *,
|
|
23
|
+
resource_group_name: pulumi.Input[str],
|
|
24
|
+
resource_name: pulumi.Input[str],
|
|
25
|
+
roles: pulumi.Input[Sequence[pulumi.Input[str]]],
|
|
26
|
+
source_resource_id: pulumi.Input[str],
|
|
27
|
+
trusted_access_role_binding_name: Optional[pulumi.Input[str]] = None):
|
|
28
|
+
"""
|
|
29
|
+
The set of arguments for constructing a TrustedAccessRoleBinding resource.
|
|
30
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
31
|
+
:param pulumi.Input[str] resource_name: The name of the managed cluster resource.
|
|
32
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] roles: A list of roles to bind, each item is a resource type qualified role name. For example: 'Microsoft.MachineLearningServices/workspaces/reader'.
|
|
33
|
+
:param pulumi.Input[str] source_resource_id: The ARM resource ID of source resource that trusted access is configured for.
|
|
34
|
+
:param pulumi.Input[str] trusted_access_role_binding_name: The name of trusted access role binding.
|
|
35
|
+
"""
|
|
36
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
37
|
+
pulumi.set(__self__, "resource_name", resource_name)
|
|
38
|
+
pulumi.set(__self__, "roles", roles)
|
|
39
|
+
pulumi.set(__self__, "source_resource_id", source_resource_id)
|
|
40
|
+
if trusted_access_role_binding_name is not None:
|
|
41
|
+
pulumi.set(__self__, "trusted_access_role_binding_name", trusted_access_role_binding_name)
|
|
42
|
+
|
|
43
|
+
@property
|
|
44
|
+
@pulumi.getter(name="resourceGroupName")
|
|
45
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
46
|
+
"""
|
|
47
|
+
The name of the resource group. The name is case insensitive.
|
|
48
|
+
"""
|
|
49
|
+
return pulumi.get(self, "resource_group_name")
|
|
50
|
+
|
|
51
|
+
@resource_group_name.setter
|
|
52
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
53
|
+
pulumi.set(self, "resource_group_name", value)
|
|
54
|
+
|
|
55
|
+
@property
|
|
56
|
+
@pulumi.getter(name="resourceName")
|
|
57
|
+
def resource_name(self) -> pulumi.Input[str]:
|
|
58
|
+
"""
|
|
59
|
+
The name of the managed cluster resource.
|
|
60
|
+
"""
|
|
61
|
+
return pulumi.get(self, "resource_name")
|
|
62
|
+
|
|
63
|
+
@resource_name.setter
|
|
64
|
+
def resource_name(self, value: pulumi.Input[str]):
|
|
65
|
+
pulumi.set(self, "resource_name", value)
|
|
66
|
+
|
|
67
|
+
@property
|
|
68
|
+
@pulumi.getter
|
|
69
|
+
def roles(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
|
70
|
+
"""
|
|
71
|
+
A list of roles to bind, each item is a resource type qualified role name. For example: 'Microsoft.MachineLearningServices/workspaces/reader'.
|
|
72
|
+
"""
|
|
73
|
+
return pulumi.get(self, "roles")
|
|
74
|
+
|
|
75
|
+
@roles.setter
|
|
76
|
+
def roles(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
|
77
|
+
pulumi.set(self, "roles", value)
|
|
78
|
+
|
|
79
|
+
@property
|
|
80
|
+
@pulumi.getter(name="sourceResourceId")
|
|
81
|
+
def source_resource_id(self) -> pulumi.Input[str]:
|
|
82
|
+
"""
|
|
83
|
+
The ARM resource ID of source resource that trusted access is configured for.
|
|
84
|
+
"""
|
|
85
|
+
return pulumi.get(self, "source_resource_id")
|
|
86
|
+
|
|
87
|
+
@source_resource_id.setter
|
|
88
|
+
def source_resource_id(self, value: pulumi.Input[str]):
|
|
89
|
+
pulumi.set(self, "source_resource_id", value)
|
|
90
|
+
|
|
91
|
+
@property
|
|
92
|
+
@pulumi.getter(name="trustedAccessRoleBindingName")
|
|
93
|
+
def trusted_access_role_binding_name(self) -> Optional[pulumi.Input[str]]:
|
|
94
|
+
"""
|
|
95
|
+
The name of trusted access role binding.
|
|
96
|
+
"""
|
|
97
|
+
return pulumi.get(self, "trusted_access_role_binding_name")
|
|
98
|
+
|
|
99
|
+
@trusted_access_role_binding_name.setter
|
|
100
|
+
def trusted_access_role_binding_name(self, value: Optional[pulumi.Input[str]]):
|
|
101
|
+
pulumi.set(self, "trusted_access_role_binding_name", value)
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
class TrustedAccessRoleBinding(pulumi.CustomResource):
|
|
105
|
+
@overload
|
|
106
|
+
def __init__(__self__,
|
|
107
|
+
resource_name: str,
|
|
108
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
109
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
110
|
+
resource_name_: Optional[pulumi.Input[str]] = None,
|
|
111
|
+
roles: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
112
|
+
source_resource_id: Optional[pulumi.Input[str]] = None,
|
|
113
|
+
trusted_access_role_binding_name: Optional[pulumi.Input[str]] = None,
|
|
114
|
+
__props__=None):
|
|
115
|
+
"""
|
|
116
|
+
Defines binding between a resource and role
|
|
117
|
+
|
|
118
|
+
:param str resource_name: The name of the resource.
|
|
119
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
120
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
121
|
+
:param pulumi.Input[str] resource_name_: The name of the managed cluster resource.
|
|
122
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] roles: A list of roles to bind, each item is a resource type qualified role name. For example: 'Microsoft.MachineLearningServices/workspaces/reader'.
|
|
123
|
+
:param pulumi.Input[str] source_resource_id: The ARM resource ID of source resource that trusted access is configured for.
|
|
124
|
+
:param pulumi.Input[str] trusted_access_role_binding_name: The name of trusted access role binding.
|
|
125
|
+
"""
|
|
126
|
+
...
|
|
127
|
+
@overload
|
|
128
|
+
def __init__(__self__,
|
|
129
|
+
resource_name: str,
|
|
130
|
+
args: TrustedAccessRoleBindingArgs,
|
|
131
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
132
|
+
"""
|
|
133
|
+
Defines binding between a resource and role
|
|
134
|
+
|
|
135
|
+
:param str resource_name: The name of the resource.
|
|
136
|
+
:param TrustedAccessRoleBindingArgs args: The arguments to use to populate this resource's properties.
|
|
137
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
138
|
+
"""
|
|
139
|
+
...
|
|
140
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
141
|
+
resource_args, opts = _utilities.get_resource_args_opts(TrustedAccessRoleBindingArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
142
|
+
if resource_args is not None:
|
|
143
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
144
|
+
else:
|
|
145
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
146
|
+
|
|
147
|
+
def _internal_init(__self__,
|
|
148
|
+
resource_name: str,
|
|
149
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
150
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
151
|
+
resource_name_: Optional[pulumi.Input[str]] = None,
|
|
152
|
+
roles: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
153
|
+
source_resource_id: Optional[pulumi.Input[str]] = None,
|
|
154
|
+
trusted_access_role_binding_name: Optional[pulumi.Input[str]] = None,
|
|
155
|
+
__props__=None):
|
|
156
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
157
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
158
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
159
|
+
if opts.id is None:
|
|
160
|
+
if __props__ is not None:
|
|
161
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
162
|
+
__props__ = TrustedAccessRoleBindingArgs.__new__(TrustedAccessRoleBindingArgs)
|
|
163
|
+
|
|
164
|
+
if resource_group_name is None and not opts.urn:
|
|
165
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
166
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
167
|
+
if resource_name_ is None and not opts.urn:
|
|
168
|
+
raise TypeError("Missing required property 'resource_name_'")
|
|
169
|
+
__props__.__dict__["resource_name"] = resource_name_
|
|
170
|
+
if roles is None and not opts.urn:
|
|
171
|
+
raise TypeError("Missing required property 'roles'")
|
|
172
|
+
__props__.__dict__["roles"] = roles
|
|
173
|
+
if source_resource_id is None and not opts.urn:
|
|
174
|
+
raise TypeError("Missing required property 'source_resource_id'")
|
|
175
|
+
__props__.__dict__["source_resource_id"] = source_resource_id
|
|
176
|
+
__props__.__dict__["trusted_access_role_binding_name"] = trusted_access_role_binding_name
|
|
177
|
+
__props__.__dict__["name"] = None
|
|
178
|
+
__props__.__dict__["provisioning_state"] = None
|
|
179
|
+
__props__.__dict__["system_data"] = None
|
|
180
|
+
__props__.__dict__["type"] = None
|
|
181
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:containerservice:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20220402preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20220502preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20220602preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20220702preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20220802preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20220803preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20220902preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20221002preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20221102preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20230102preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20230202preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20230302preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20230402preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20230502preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20230602preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20230702preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20230802preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20230901:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20230902preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20231001:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20231002preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20231101:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20231102preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20240101:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20240102preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20240201:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20240202preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20240302preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20240402preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20240501:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20240502preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20240602preview:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20240701:TrustedAccessRoleBinding"), pulumi.Alias(type_="azure-native:containerservice/v20240702preview:TrustedAccessRoleBinding")])
|
|
182
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
183
|
+
super(TrustedAccessRoleBinding, __self__).__init__(
|
|
184
|
+
'azure-native:containerservice/v20240801:TrustedAccessRoleBinding',
|
|
185
|
+
resource_name,
|
|
186
|
+
__props__,
|
|
187
|
+
opts)
|
|
188
|
+
|
|
189
|
+
@staticmethod
|
|
190
|
+
def get(resource_name: str,
|
|
191
|
+
id: pulumi.Input[str],
|
|
192
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'TrustedAccessRoleBinding':
|
|
193
|
+
"""
|
|
194
|
+
Get an existing TrustedAccessRoleBinding resource's state with the given name, id, and optional extra
|
|
195
|
+
properties used to qualify the lookup.
|
|
196
|
+
|
|
197
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
198
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
199
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
200
|
+
"""
|
|
201
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
202
|
+
|
|
203
|
+
__props__ = TrustedAccessRoleBindingArgs.__new__(TrustedAccessRoleBindingArgs)
|
|
204
|
+
|
|
205
|
+
__props__.__dict__["name"] = None
|
|
206
|
+
__props__.__dict__["provisioning_state"] = None
|
|
207
|
+
__props__.__dict__["roles"] = None
|
|
208
|
+
__props__.__dict__["source_resource_id"] = None
|
|
209
|
+
__props__.__dict__["system_data"] = None
|
|
210
|
+
__props__.__dict__["type"] = None
|
|
211
|
+
return TrustedAccessRoleBinding(resource_name, opts=opts, __props__=__props__)
|
|
212
|
+
|
|
213
|
+
@property
|
|
214
|
+
@pulumi.getter
|
|
215
|
+
def name(self) -> pulumi.Output[str]:
|
|
216
|
+
"""
|
|
217
|
+
The name of the resource
|
|
218
|
+
"""
|
|
219
|
+
return pulumi.get(self, "name")
|
|
220
|
+
|
|
221
|
+
@property
|
|
222
|
+
@pulumi.getter(name="provisioningState")
|
|
223
|
+
def provisioning_state(self) -> pulumi.Output[str]:
|
|
224
|
+
"""
|
|
225
|
+
The current provisioning state of trusted access role binding.
|
|
226
|
+
"""
|
|
227
|
+
return pulumi.get(self, "provisioning_state")
|
|
228
|
+
|
|
229
|
+
@property
|
|
230
|
+
@pulumi.getter
|
|
231
|
+
def roles(self) -> pulumi.Output[Sequence[str]]:
|
|
232
|
+
"""
|
|
233
|
+
A list of roles to bind, each item is a resource type qualified role name. For example: 'Microsoft.MachineLearningServices/workspaces/reader'.
|
|
234
|
+
"""
|
|
235
|
+
return pulumi.get(self, "roles")
|
|
236
|
+
|
|
237
|
+
@property
|
|
238
|
+
@pulumi.getter(name="sourceResourceId")
|
|
239
|
+
def source_resource_id(self) -> pulumi.Output[str]:
|
|
240
|
+
"""
|
|
241
|
+
The ARM resource ID of source resource that trusted access is configured for.
|
|
242
|
+
"""
|
|
243
|
+
return pulumi.get(self, "source_resource_id")
|
|
244
|
+
|
|
245
|
+
@property
|
|
246
|
+
@pulumi.getter(name="systemData")
|
|
247
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
248
|
+
"""
|
|
249
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
250
|
+
"""
|
|
251
|
+
return pulumi.get(self, "system_data")
|
|
252
|
+
|
|
253
|
+
@property
|
|
254
|
+
@pulumi.getter
|
|
255
|
+
def type(self) -> pulumi.Output[str]:
|
|
256
|
+
"""
|
|
257
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
258
|
+
"""
|
|
259
|
+
return pulumi.get(self, "type")
|
|
260
|
+
|
|
@@ -102213,6 +102213,10 @@ if not MYPY:
|
|
|
102213
102213
|
"""
|
|
102214
102214
|
The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
|
|
102215
102215
|
"""
|
|
102216
|
+
page_size: NotRequired[Any]
|
|
102217
|
+
"""
|
|
102218
|
+
Page size of the result. Type: integer (or Expression with resultType integer).
|
|
102219
|
+
"""
|
|
102216
102220
|
query_timeout: NotRequired[Any]
|
|
102217
102221
|
"""
|
|
102218
102222
|
Query timeout. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
|
|
@@ -102236,6 +102240,7 @@ class ServiceNowV2SourceArgs:
|
|
|
102236
102240
|
disable_metrics_collection: Optional[Any] = None,
|
|
102237
102241
|
expression: Optional[pulumi.Input['ExpressionV2Args']] = None,
|
|
102238
102242
|
max_concurrent_connections: Optional[Any] = None,
|
|
102243
|
+
page_size: Optional[Any] = None,
|
|
102239
102244
|
query_timeout: Optional[Any] = None,
|
|
102240
102245
|
source_retry_count: Optional[Any] = None,
|
|
102241
102246
|
source_retry_wait: Optional[Any] = None):
|
|
@@ -102247,6 +102252,7 @@ class ServiceNowV2SourceArgs:
|
|
|
102247
102252
|
:param Any disable_metrics_collection: If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
|
|
102248
102253
|
:param pulumi.Input['ExpressionV2Args'] expression: Expression to filter data from source.
|
|
102249
102254
|
:param Any max_concurrent_connections: The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
|
|
102255
|
+
:param Any page_size: Page size of the result. Type: integer (or Expression with resultType integer).
|
|
102250
102256
|
:param Any query_timeout: Query timeout. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
|
|
102251
102257
|
:param Any source_retry_count: Source retry count. Type: integer (or Expression with resultType integer).
|
|
102252
102258
|
:param Any source_retry_wait: Source retry wait. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
|
|
@@ -102260,6 +102266,8 @@ class ServiceNowV2SourceArgs:
|
|
|
102260
102266
|
pulumi.set(__self__, "expression", expression)
|
|
102261
102267
|
if max_concurrent_connections is not None:
|
|
102262
102268
|
pulumi.set(__self__, "max_concurrent_connections", max_concurrent_connections)
|
|
102269
|
+
if page_size is not None:
|
|
102270
|
+
pulumi.set(__self__, "page_size", page_size)
|
|
102263
102271
|
if query_timeout is not None:
|
|
102264
102272
|
pulumi.set(__self__, "query_timeout", query_timeout)
|
|
102265
102273
|
if source_retry_count is not None:
|
|
@@ -102328,6 +102336,18 @@ class ServiceNowV2SourceArgs:
|
|
|
102328
102336
|
def max_concurrent_connections(self, value: Optional[Any]):
|
|
102329
102337
|
pulumi.set(self, "max_concurrent_connections", value)
|
|
102330
102338
|
|
|
102339
|
+
@property
|
|
102340
|
+
@pulumi.getter(name="pageSize")
|
|
102341
|
+
def page_size(self) -> Optional[Any]:
|
|
102342
|
+
"""
|
|
102343
|
+
Page size of the result. Type: integer (or Expression with resultType integer).
|
|
102344
|
+
"""
|
|
102345
|
+
return pulumi.get(self, "page_size")
|
|
102346
|
+
|
|
102347
|
+
@page_size.setter
|
|
102348
|
+
def page_size(self, value: Optional[Any]):
|
|
102349
|
+
pulumi.set(self, "page_size", value)
|
|
102350
|
+
|
|
102331
102351
|
@property
|
|
102332
102352
|
@pulumi.getter(name="queryTimeout")
|
|
102333
102353
|
def query_timeout(self) -> Optional[Any]:
|
|
@@ -74989,6 +74989,8 @@ class ServiceNowV2SourceResponse(dict):
|
|
|
74989
74989
|
suggest = "disable_metrics_collection"
|
|
74990
74990
|
elif key == "maxConcurrentConnections":
|
|
74991
74991
|
suggest = "max_concurrent_connections"
|
|
74992
|
+
elif key == "pageSize":
|
|
74993
|
+
suggest = "page_size"
|
|
74992
74994
|
elif key == "queryTimeout":
|
|
74993
74995
|
suggest = "query_timeout"
|
|
74994
74996
|
elif key == "sourceRetryCount":
|
|
@@ -75013,6 +75015,7 @@ class ServiceNowV2SourceResponse(dict):
|
|
|
75013
75015
|
disable_metrics_collection: Optional[Any] = None,
|
|
75014
75016
|
expression: Optional['outputs.ExpressionV2Response'] = None,
|
|
75015
75017
|
max_concurrent_connections: Optional[Any] = None,
|
|
75018
|
+
page_size: Optional[Any] = None,
|
|
75016
75019
|
query_timeout: Optional[Any] = None,
|
|
75017
75020
|
source_retry_count: Optional[Any] = None,
|
|
75018
75021
|
source_retry_wait: Optional[Any] = None):
|
|
@@ -75024,6 +75027,7 @@ class ServiceNowV2SourceResponse(dict):
|
|
|
75024
75027
|
:param Any disable_metrics_collection: If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
|
|
75025
75028
|
:param 'ExpressionV2Response' expression: Expression to filter data from source.
|
|
75026
75029
|
:param Any max_concurrent_connections: The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
|
|
75030
|
+
:param Any page_size: Page size of the result. Type: integer (or Expression with resultType integer).
|
|
75027
75031
|
:param Any query_timeout: Query timeout. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
|
|
75028
75032
|
:param Any source_retry_count: Source retry count. Type: integer (or Expression with resultType integer).
|
|
75029
75033
|
:param Any source_retry_wait: Source retry wait. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
|
|
@@ -75037,6 +75041,8 @@ class ServiceNowV2SourceResponse(dict):
|
|
|
75037
75041
|
pulumi.set(__self__, "expression", expression)
|
|
75038
75042
|
if max_concurrent_connections is not None:
|
|
75039
75043
|
pulumi.set(__self__, "max_concurrent_connections", max_concurrent_connections)
|
|
75044
|
+
if page_size is not None:
|
|
75045
|
+
pulumi.set(__self__, "page_size", page_size)
|
|
75040
75046
|
if query_timeout is not None:
|
|
75041
75047
|
pulumi.set(__self__, "query_timeout", query_timeout)
|
|
75042
75048
|
if source_retry_count is not None:
|
|
@@ -75085,6 +75091,14 @@ class ServiceNowV2SourceResponse(dict):
|
|
|
75085
75091
|
"""
|
|
75086
75092
|
return pulumi.get(self, "max_concurrent_connections")
|
|
75087
75093
|
|
|
75094
|
+
@property
|
|
75095
|
+
@pulumi.getter(name="pageSize")
|
|
75096
|
+
def page_size(self) -> Optional[Any]:
|
|
75097
|
+
"""
|
|
75098
|
+
Page size of the result. Type: integer (or Expression with resultType integer).
|
|
75099
|
+
"""
|
|
75100
|
+
return pulumi.get(self, "page_size")
|
|
75101
|
+
|
|
75088
75102
|
@property
|
|
75089
75103
|
@pulumi.getter(name="queryTimeout")
|
|
75090
75104
|
def query_timeout(self) -> Optional[Any]:
|
|
@@ -102213,6 +102213,10 @@ if not MYPY:
|
|
|
102213
102213
|
"""
|
|
102214
102214
|
The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
|
|
102215
102215
|
"""
|
|
102216
|
+
page_size: NotRequired[Any]
|
|
102217
|
+
"""
|
|
102218
|
+
Page size of the result. Type: integer (or Expression with resultType integer).
|
|
102219
|
+
"""
|
|
102216
102220
|
query_timeout: NotRequired[Any]
|
|
102217
102221
|
"""
|
|
102218
102222
|
Query timeout. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
|
|
@@ -102236,6 +102240,7 @@ class ServiceNowV2SourceArgs:
|
|
|
102236
102240
|
disable_metrics_collection: Optional[Any] = None,
|
|
102237
102241
|
expression: Optional[pulumi.Input['ExpressionV2Args']] = None,
|
|
102238
102242
|
max_concurrent_connections: Optional[Any] = None,
|
|
102243
|
+
page_size: Optional[Any] = None,
|
|
102239
102244
|
query_timeout: Optional[Any] = None,
|
|
102240
102245
|
source_retry_count: Optional[Any] = None,
|
|
102241
102246
|
source_retry_wait: Optional[Any] = None):
|
|
@@ -102247,6 +102252,7 @@ class ServiceNowV2SourceArgs:
|
|
|
102247
102252
|
:param Any disable_metrics_collection: If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
|
|
102248
102253
|
:param pulumi.Input['ExpressionV2Args'] expression: Expression to filter data from source.
|
|
102249
102254
|
:param Any max_concurrent_connections: The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
|
|
102255
|
+
:param Any page_size: Page size of the result. Type: integer (or Expression with resultType integer).
|
|
102250
102256
|
:param Any query_timeout: Query timeout. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
|
|
102251
102257
|
:param Any source_retry_count: Source retry count. Type: integer (or Expression with resultType integer).
|
|
102252
102258
|
:param Any source_retry_wait: Source retry wait. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
|
|
@@ -102260,6 +102266,8 @@ class ServiceNowV2SourceArgs:
|
|
|
102260
102266
|
pulumi.set(__self__, "expression", expression)
|
|
102261
102267
|
if max_concurrent_connections is not None:
|
|
102262
102268
|
pulumi.set(__self__, "max_concurrent_connections", max_concurrent_connections)
|
|
102269
|
+
if page_size is not None:
|
|
102270
|
+
pulumi.set(__self__, "page_size", page_size)
|
|
102263
102271
|
if query_timeout is not None:
|
|
102264
102272
|
pulumi.set(__self__, "query_timeout", query_timeout)
|
|
102265
102273
|
if source_retry_count is not None:
|
|
@@ -102328,6 +102336,18 @@ class ServiceNowV2SourceArgs:
|
|
|
102328
102336
|
def max_concurrent_connections(self, value: Optional[Any]):
|
|
102329
102337
|
pulumi.set(self, "max_concurrent_connections", value)
|
|
102330
102338
|
|
|
102339
|
+
@property
|
|
102340
|
+
@pulumi.getter(name="pageSize")
|
|
102341
|
+
def page_size(self) -> Optional[Any]:
|
|
102342
|
+
"""
|
|
102343
|
+
Page size of the result. Type: integer (or Expression with resultType integer).
|
|
102344
|
+
"""
|
|
102345
|
+
return pulumi.get(self, "page_size")
|
|
102346
|
+
|
|
102347
|
+
@page_size.setter
|
|
102348
|
+
def page_size(self, value: Optional[Any]):
|
|
102349
|
+
pulumi.set(self, "page_size", value)
|
|
102350
|
+
|
|
102331
102351
|
@property
|
|
102332
102352
|
@pulumi.getter(name="queryTimeout")
|
|
102333
102353
|
def query_timeout(self) -> Optional[Any]:
|
|
@@ -74989,6 +74989,8 @@ class ServiceNowV2SourceResponse(dict):
|
|
|
74989
74989
|
suggest = "disable_metrics_collection"
|
|
74990
74990
|
elif key == "maxConcurrentConnections":
|
|
74991
74991
|
suggest = "max_concurrent_connections"
|
|
74992
|
+
elif key == "pageSize":
|
|
74993
|
+
suggest = "page_size"
|
|
74992
74994
|
elif key == "queryTimeout":
|
|
74993
74995
|
suggest = "query_timeout"
|
|
74994
74996
|
elif key == "sourceRetryCount":
|
|
@@ -75013,6 +75015,7 @@ class ServiceNowV2SourceResponse(dict):
|
|
|
75013
75015
|
disable_metrics_collection: Optional[Any] = None,
|
|
75014
75016
|
expression: Optional['outputs.ExpressionV2Response'] = None,
|
|
75015
75017
|
max_concurrent_connections: Optional[Any] = None,
|
|
75018
|
+
page_size: Optional[Any] = None,
|
|
75016
75019
|
query_timeout: Optional[Any] = None,
|
|
75017
75020
|
source_retry_count: Optional[Any] = None,
|
|
75018
75021
|
source_retry_wait: Optional[Any] = None):
|
|
@@ -75024,6 +75027,7 @@ class ServiceNowV2SourceResponse(dict):
|
|
|
75024
75027
|
:param Any disable_metrics_collection: If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
|
|
75025
75028
|
:param 'ExpressionV2Response' expression: Expression to filter data from source.
|
|
75026
75029
|
:param Any max_concurrent_connections: The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
|
|
75030
|
+
:param Any page_size: Page size of the result. Type: integer (or Expression with resultType integer).
|
|
75027
75031
|
:param Any query_timeout: Query timeout. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
|
|
75028
75032
|
:param Any source_retry_count: Source retry count. Type: integer (or Expression with resultType integer).
|
|
75029
75033
|
:param Any source_retry_wait: Source retry wait. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
|
|
@@ -75037,6 +75041,8 @@ class ServiceNowV2SourceResponse(dict):
|
|
|
75037
75041
|
pulumi.set(__self__, "expression", expression)
|
|
75038
75042
|
if max_concurrent_connections is not None:
|
|
75039
75043
|
pulumi.set(__self__, "max_concurrent_connections", max_concurrent_connections)
|
|
75044
|
+
if page_size is not None:
|
|
75045
|
+
pulumi.set(__self__, "page_size", page_size)
|
|
75040
75046
|
if query_timeout is not None:
|
|
75041
75047
|
pulumi.set(__self__, "query_timeout", query_timeout)
|
|
75042
75048
|
if source_retry_count is not None:
|
|
@@ -75085,6 +75091,14 @@ class ServiceNowV2SourceResponse(dict):
|
|
|
75085
75091
|
"""
|
|
75086
75092
|
return pulumi.get(self, "max_concurrent_connections")
|
|
75087
75093
|
|
|
75094
|
+
@property
|
|
75095
|
+
@pulumi.getter(name="pageSize")
|
|
75096
|
+
def page_size(self) -> Optional[Any]:
|
|
75097
|
+
"""
|
|
75098
|
+
Page size of the result. Type: integer (or Expression with resultType integer).
|
|
75099
|
+
"""
|
|
75100
|
+
return pulumi.get(self, "page_size")
|
|
75101
|
+
|
|
75088
75102
|
@property
|
|
75089
75103
|
@pulumi.getter(name="queryTimeout")
|
|
75090
75104
|
def query_timeout(self) -> Optional[Any]:
|
|
@@ -54,6 +54,8 @@ if typing.TYPE_CHECKING:
|
|
|
54
54
|
v20231230 = __v20231230
|
|
55
55
|
import pulumi_azure_native.dbformysql.v20240201preview as __v20240201preview
|
|
56
56
|
v20240201preview = __v20240201preview
|
|
57
|
+
import pulumi_azure_native.dbformysql.v20240601preview as __v20240601preview
|
|
58
|
+
v20240601preview = __v20240601preview
|
|
57
59
|
else:
|
|
58
60
|
v20171201 = _utilities.lazy_import('pulumi_azure_native.dbformysql.v20171201')
|
|
59
61
|
v20180601privatepreview = _utilities.lazy_import('pulumi_azure_native.dbformysql.v20180601privatepreview')
|
|
@@ -70,4 +72,5 @@ else:
|
|
|
70
72
|
v20231201preview = _utilities.lazy_import('pulumi_azure_native.dbformysql.v20231201preview')
|
|
71
73
|
v20231230 = _utilities.lazy_import('pulumi_azure_native.dbformysql.v20231230')
|
|
72
74
|
v20240201preview = _utilities.lazy_import('pulumi_azure_native.dbformysql.v20240201preview')
|
|
75
|
+
v20240601preview = _utilities.lazy_import('pulumi_azure_native.dbformysql.v20240601preview')
|
|
73
76
|
|
|
@@ -309,7 +309,7 @@ def get_server(resource_group_name: Optional[str] = None,
|
|
|
309
309
|
Gets information about a server.
|
|
310
310
|
Azure REST API version: 2022-01-01.
|
|
311
311
|
|
|
312
|
-
Other available API versions: 2017-12-01, 2018-06-01-privatepreview, 2020-07-01-preview, 2020-07-01-privatepreview, 2022-09-30-preview, 2023-06-01-preview, 2023-06-30, 2023-10-01-preview, 2023-12-01-preview, 2023-12-30, 2024-02-01-preview.
|
|
312
|
+
Other available API versions: 2017-12-01, 2018-06-01-privatepreview, 2020-07-01-preview, 2020-07-01-privatepreview, 2022-09-30-preview, 2023-06-01-preview, 2023-06-30, 2023-10-01-preview, 2023-12-01-preview, 2023-12-30, 2024-02-01-preview, 2024-06-01-preview.
|
|
313
313
|
|
|
314
314
|
|
|
315
315
|
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
@@ -354,7 +354,7 @@ def get_server_output(resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
|
354
354
|
Gets information about a server.
|
|
355
355
|
Azure REST API version: 2022-01-01.
|
|
356
356
|
|
|
357
|
-
Other available API versions: 2017-12-01, 2018-06-01-privatepreview, 2020-07-01-preview, 2020-07-01-privatepreview, 2022-09-30-preview, 2023-06-01-preview, 2023-06-30, 2023-10-01-preview, 2023-12-01-preview, 2023-12-30, 2024-02-01-preview.
|
|
357
|
+
Other available API versions: 2017-12-01, 2018-06-01-privatepreview, 2020-07-01-preview, 2020-07-01-privatepreview, 2022-09-30-preview, 2023-06-01-preview, 2023-06-30, 2023-10-01-preview, 2023-12-01-preview, 2023-12-30, 2024-02-01-preview, 2024-06-01-preview.
|
|
358
358
|
|
|
359
359
|
|
|
360
360
|
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
@@ -376,7 +376,7 @@ class Server(pulumi.CustomResource):
|
|
|
376
376
|
Represents a server.
|
|
377
377
|
Azure REST API version: 2022-01-01. Prior API version in Azure Native 1.x: 2017-12-01.
|
|
378
378
|
|
|
379
|
-
Other available API versions: 2017-12-01, 2018-06-01-privatepreview, 2020-07-01-preview, 2020-07-01-privatepreview, 2022-09-30-preview, 2023-06-01-preview, 2023-06-30, 2023-10-01-preview, 2023-12-01-preview, 2023-12-30, 2024-02-01-preview.
|
|
379
|
+
Other available API versions: 2017-12-01, 2018-06-01-privatepreview, 2020-07-01-preview, 2020-07-01-privatepreview, 2022-09-30-preview, 2023-06-01-preview, 2023-06-30, 2023-10-01-preview, 2023-12-01-preview, 2023-12-30, 2024-02-01-preview, 2024-06-01-preview.
|
|
380
380
|
|
|
381
381
|
:param str resource_name: The name of the resource.
|
|
382
382
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -411,7 +411,7 @@ class Server(pulumi.CustomResource):
|
|
|
411
411
|
Represents a server.
|
|
412
412
|
Azure REST API version: 2022-01-01. Prior API version in Azure Native 1.x: 2017-12-01.
|
|
413
413
|
|
|
414
|
-
Other available API versions: 2017-12-01, 2018-06-01-privatepreview, 2020-07-01-preview, 2020-07-01-privatepreview, 2022-09-30-preview, 2023-06-01-preview, 2023-06-30, 2023-10-01-preview, 2023-12-01-preview, 2023-12-30, 2024-02-01-preview.
|
|
414
|
+
Other available API versions: 2017-12-01, 2018-06-01-privatepreview, 2020-07-01-preview, 2020-07-01-privatepreview, 2022-09-30-preview, 2023-06-01-preview, 2023-06-30, 2023-10-01-preview, 2023-12-01-preview, 2023-12-30, 2024-02-01-preview, 2024-06-01-preview.
|
|
415
415
|
|
|
416
416
|
:param str resource_name: The name of the resource.
|
|
417
417
|
:param ServerArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -485,7 +485,7 @@ class Server(pulumi.CustomResource):
|
|
|
485
485
|
__props__.__dict__["state"] = None
|
|
486
486
|
__props__.__dict__["system_data"] = None
|
|
487
487
|
__props__.__dict__["type"] = None
|
|
488
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:dbformysql/v20200701preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701privatepreview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20211201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220101:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220930preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230601preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230630:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231001preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231230:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240201preview:Server")])
|
|
488
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:dbformysql/v20200701preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701privatepreview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20211201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220101:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220930preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230601preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230630:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231001preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231230:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240601preview:Server")])
|
|
489
489
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
490
490
|
super(Server, __self__).__init__(
|
|
491
491
|
'azure-native:dbformysql:Server',
|
|
@@ -503,7 +503,7 @@ class Server(pulumi.CustomResource):
|
|
|
503
503
|
__props__.__dict__["standby_availability_zone"] = None
|
|
504
504
|
__props__.__dict__["state"] = None
|
|
505
505
|
__props__.__dict__["type"] = None
|
|
506
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:dbformysql:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701privatepreview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20211201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220101:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220930preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230601preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230630:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231001preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231230:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240201preview:Server")])
|
|
506
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:dbformysql:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701privatepreview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20211201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220101:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220930preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230601preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230630:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231001preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231230:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240601preview:Server")])
|
|
507
507
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
508
508
|
super(Server, __self__).__init__(
|
|
509
509
|
'azure-native:dbformysql/v20200701preview:Server',
|
|
@@ -483,7 +483,7 @@ class Server(pulumi.CustomResource):
|
|
|
483
483
|
__props__.__dict__["standby_availability_zone"] = None
|
|
484
484
|
__props__.__dict__["state"] = None
|
|
485
485
|
__props__.__dict__["type"] = None
|
|
486
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:dbformysql:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20211201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220101:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220930preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230601preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230630:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231001preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231230:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240201preview:Server")])
|
|
486
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:dbformysql:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20211201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220101:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220930preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230601preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230630:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231001preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231230:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240601preview:Server")])
|
|
487
487
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
488
488
|
super(Server, __self__).__init__(
|
|
489
489
|
'azure-native:dbformysql/v20200701privatepreview:Server',
|
|
@@ -479,7 +479,7 @@ class Server(pulumi.CustomResource):
|
|
|
479
479
|
__props__.__dict__["state"] = None
|
|
480
480
|
__props__.__dict__["system_data"] = None
|
|
481
481
|
__props__.__dict__["type"] = None
|
|
482
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:dbformysql:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701privatepreview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20211201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220930preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230601preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230630:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231001preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231230:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240201preview:Server")])
|
|
482
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:dbformysql:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701privatepreview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20211201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220930preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230601preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230630:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231001preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231230:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240601preview:Server")])
|
|
483
483
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
484
484
|
super(Server, __self__).__init__(
|
|
485
485
|
'azure-native:dbformysql/v20220101:Server',
|
|
@@ -479,7 +479,7 @@ class Server(pulumi.CustomResource):
|
|
|
479
479
|
__props__.__dict__["state"] = None
|
|
480
480
|
__props__.__dict__["system_data"] = None
|
|
481
481
|
__props__.__dict__["type"] = None
|
|
482
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:dbformysql:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701privatepreview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20211201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220101:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230601preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230630:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231001preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231230:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240201preview:Server")])
|
|
482
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:dbformysql:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701privatepreview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20211201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220101:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230601preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230630:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231001preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231230:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240601preview:Server")])
|
|
483
483
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
484
484
|
super(Server, __self__).__init__(
|
|
485
485
|
'azure-native:dbformysql/v20220930preview:Server',
|
|
@@ -500,7 +500,7 @@ class Server(pulumi.CustomResource):
|
|
|
500
500
|
__props__.__dict__["state"] = None
|
|
501
501
|
__props__.__dict__["system_data"] = None
|
|
502
502
|
__props__.__dict__["type"] = None
|
|
503
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:dbformysql:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701privatepreview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20211201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220101:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220930preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230630:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231001preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231230:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240201preview:Server")])
|
|
503
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:dbformysql:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701privatepreview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20211201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220101:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220930preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230630:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231001preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231230:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240601preview:Server")])
|
|
504
504
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
505
505
|
super(Server, __self__).__init__(
|
|
506
506
|
'azure-native:dbformysql/v20230601preview:Server',
|
|
@@ -500,7 +500,7 @@ class Server(pulumi.CustomResource):
|
|
|
500
500
|
__props__.__dict__["state"] = None
|
|
501
501
|
__props__.__dict__["system_data"] = None
|
|
502
502
|
__props__.__dict__["type"] = None
|
|
503
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:dbformysql:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701privatepreview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20211201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220101:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220930preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230601preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231001preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231230:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240201preview:Server")])
|
|
503
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:dbformysql:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20200701privatepreview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20210501preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20211201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220101:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20220930preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20230601preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231001preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20231230:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240201preview:Server"), pulumi.Alias(type_="azure-native:dbformysql/v20240601preview:Server")])
|
|
504
504
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
505
505
|
super(Server, __self__).__init__(
|
|
506
506
|
'azure-native:dbformysql/v20230630:Server',
|