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,1147 @@
|
|
|
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
|
+
from ._enums import *
|
|
18
|
+
|
|
19
|
+
__all__ = [
|
|
20
|
+
'BackupResponse',
|
|
21
|
+
'DataEncryptionResponse',
|
|
22
|
+
'HighAvailabilityResponse',
|
|
23
|
+
'ImportSourcePropertiesResponse',
|
|
24
|
+
'MaintenancePolicyResponse',
|
|
25
|
+
'MaintenanceWindowResponse',
|
|
26
|
+
'MySQLServerIdentityResponse',
|
|
27
|
+
'MySQLServerSkuResponse',
|
|
28
|
+
'NetworkResponse',
|
|
29
|
+
'PrivateEndpointConnectionResponse',
|
|
30
|
+
'PrivateEndpointResponse',
|
|
31
|
+
'PrivateLinkServiceConnectionStateResponse',
|
|
32
|
+
'StorageResponse',
|
|
33
|
+
'SystemDataResponse',
|
|
34
|
+
'UserAssignedIdentityResponse',
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
@pulumi.output_type
|
|
38
|
+
class BackupResponse(dict):
|
|
39
|
+
"""
|
|
40
|
+
Storage Profile properties of a server
|
|
41
|
+
"""
|
|
42
|
+
@staticmethod
|
|
43
|
+
def __key_warning(key: str):
|
|
44
|
+
suggest = None
|
|
45
|
+
if key == "earliestRestoreDate":
|
|
46
|
+
suggest = "earliest_restore_date"
|
|
47
|
+
elif key == "backupIntervalHours":
|
|
48
|
+
suggest = "backup_interval_hours"
|
|
49
|
+
elif key == "backupRetentionDays":
|
|
50
|
+
suggest = "backup_retention_days"
|
|
51
|
+
elif key == "geoRedundantBackup":
|
|
52
|
+
suggest = "geo_redundant_backup"
|
|
53
|
+
|
|
54
|
+
if suggest:
|
|
55
|
+
pulumi.log.warn(f"Key '{key}' not found in BackupResponse. Access the value via the '{suggest}' property getter instead.")
|
|
56
|
+
|
|
57
|
+
def __getitem__(self, key: str) -> Any:
|
|
58
|
+
BackupResponse.__key_warning(key)
|
|
59
|
+
return super().__getitem__(key)
|
|
60
|
+
|
|
61
|
+
def get(self, key: str, default = None) -> Any:
|
|
62
|
+
BackupResponse.__key_warning(key)
|
|
63
|
+
return super().get(key, default)
|
|
64
|
+
|
|
65
|
+
def __init__(__self__, *,
|
|
66
|
+
earliest_restore_date: str,
|
|
67
|
+
backup_interval_hours: Optional[int] = None,
|
|
68
|
+
backup_retention_days: Optional[int] = None,
|
|
69
|
+
geo_redundant_backup: Optional[str] = None):
|
|
70
|
+
"""
|
|
71
|
+
Storage Profile properties of a server
|
|
72
|
+
:param str earliest_restore_date: Earliest restore point creation time (ISO8601 format)
|
|
73
|
+
:param int backup_interval_hours: Backup interval hours for the server.
|
|
74
|
+
:param int backup_retention_days: Backup retention days for the server.
|
|
75
|
+
:param str geo_redundant_backup: Whether or not geo redundant backup is enabled.
|
|
76
|
+
"""
|
|
77
|
+
pulumi.set(__self__, "earliest_restore_date", earliest_restore_date)
|
|
78
|
+
if backup_interval_hours is not None:
|
|
79
|
+
pulumi.set(__self__, "backup_interval_hours", backup_interval_hours)
|
|
80
|
+
if backup_retention_days is not None:
|
|
81
|
+
pulumi.set(__self__, "backup_retention_days", backup_retention_days)
|
|
82
|
+
if geo_redundant_backup is None:
|
|
83
|
+
geo_redundant_backup = 'Disabled'
|
|
84
|
+
if geo_redundant_backup is not None:
|
|
85
|
+
pulumi.set(__self__, "geo_redundant_backup", geo_redundant_backup)
|
|
86
|
+
|
|
87
|
+
@property
|
|
88
|
+
@pulumi.getter(name="earliestRestoreDate")
|
|
89
|
+
def earliest_restore_date(self) -> str:
|
|
90
|
+
"""
|
|
91
|
+
Earliest restore point creation time (ISO8601 format)
|
|
92
|
+
"""
|
|
93
|
+
return pulumi.get(self, "earliest_restore_date")
|
|
94
|
+
|
|
95
|
+
@property
|
|
96
|
+
@pulumi.getter(name="backupIntervalHours")
|
|
97
|
+
def backup_interval_hours(self) -> Optional[int]:
|
|
98
|
+
"""
|
|
99
|
+
Backup interval hours for the server.
|
|
100
|
+
"""
|
|
101
|
+
return pulumi.get(self, "backup_interval_hours")
|
|
102
|
+
|
|
103
|
+
@property
|
|
104
|
+
@pulumi.getter(name="backupRetentionDays")
|
|
105
|
+
def backup_retention_days(self) -> Optional[int]:
|
|
106
|
+
"""
|
|
107
|
+
Backup retention days for the server.
|
|
108
|
+
"""
|
|
109
|
+
return pulumi.get(self, "backup_retention_days")
|
|
110
|
+
|
|
111
|
+
@property
|
|
112
|
+
@pulumi.getter(name="geoRedundantBackup")
|
|
113
|
+
def geo_redundant_backup(self) -> Optional[str]:
|
|
114
|
+
"""
|
|
115
|
+
Whether or not geo redundant backup is enabled.
|
|
116
|
+
"""
|
|
117
|
+
return pulumi.get(self, "geo_redundant_backup")
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
@pulumi.output_type
|
|
121
|
+
class DataEncryptionResponse(dict):
|
|
122
|
+
"""
|
|
123
|
+
The date encryption for cmk.
|
|
124
|
+
"""
|
|
125
|
+
@staticmethod
|
|
126
|
+
def __key_warning(key: str):
|
|
127
|
+
suggest = None
|
|
128
|
+
if key == "geoBackupKeyURI":
|
|
129
|
+
suggest = "geo_backup_key_uri"
|
|
130
|
+
elif key == "geoBackupUserAssignedIdentityId":
|
|
131
|
+
suggest = "geo_backup_user_assigned_identity_id"
|
|
132
|
+
elif key == "primaryKeyURI":
|
|
133
|
+
suggest = "primary_key_uri"
|
|
134
|
+
elif key == "primaryUserAssignedIdentityId":
|
|
135
|
+
suggest = "primary_user_assigned_identity_id"
|
|
136
|
+
|
|
137
|
+
if suggest:
|
|
138
|
+
pulumi.log.warn(f"Key '{key}' not found in DataEncryptionResponse. Access the value via the '{suggest}' property getter instead.")
|
|
139
|
+
|
|
140
|
+
def __getitem__(self, key: str) -> Any:
|
|
141
|
+
DataEncryptionResponse.__key_warning(key)
|
|
142
|
+
return super().__getitem__(key)
|
|
143
|
+
|
|
144
|
+
def get(self, key: str, default = None) -> Any:
|
|
145
|
+
DataEncryptionResponse.__key_warning(key)
|
|
146
|
+
return super().get(key, default)
|
|
147
|
+
|
|
148
|
+
def __init__(__self__, *,
|
|
149
|
+
geo_backup_key_uri: Optional[str] = None,
|
|
150
|
+
geo_backup_user_assigned_identity_id: Optional[str] = None,
|
|
151
|
+
primary_key_uri: Optional[str] = None,
|
|
152
|
+
primary_user_assigned_identity_id: Optional[str] = None,
|
|
153
|
+
type: Optional[str] = None):
|
|
154
|
+
"""
|
|
155
|
+
The date encryption for cmk.
|
|
156
|
+
:param str geo_backup_key_uri: Geo backup key uri as key vault can't cross region, need cmk in same region as geo backup
|
|
157
|
+
:param str geo_backup_user_assigned_identity_id: Geo backup user identity resource id as identity can't cross region, need identity in same region as geo backup
|
|
158
|
+
:param str primary_key_uri: Primary key uri
|
|
159
|
+
:param str primary_user_assigned_identity_id: Primary user identity resource id
|
|
160
|
+
:param str type: The key type, AzureKeyVault for enable cmk, SystemManaged for disable cmk.
|
|
161
|
+
"""
|
|
162
|
+
if geo_backup_key_uri is not None:
|
|
163
|
+
pulumi.set(__self__, "geo_backup_key_uri", geo_backup_key_uri)
|
|
164
|
+
if geo_backup_user_assigned_identity_id is not None:
|
|
165
|
+
pulumi.set(__self__, "geo_backup_user_assigned_identity_id", geo_backup_user_assigned_identity_id)
|
|
166
|
+
if primary_key_uri is not None:
|
|
167
|
+
pulumi.set(__self__, "primary_key_uri", primary_key_uri)
|
|
168
|
+
if primary_user_assigned_identity_id is not None:
|
|
169
|
+
pulumi.set(__self__, "primary_user_assigned_identity_id", primary_user_assigned_identity_id)
|
|
170
|
+
if type is not None:
|
|
171
|
+
pulumi.set(__self__, "type", type)
|
|
172
|
+
|
|
173
|
+
@property
|
|
174
|
+
@pulumi.getter(name="geoBackupKeyURI")
|
|
175
|
+
def geo_backup_key_uri(self) -> Optional[str]:
|
|
176
|
+
"""
|
|
177
|
+
Geo backup key uri as key vault can't cross region, need cmk in same region as geo backup
|
|
178
|
+
"""
|
|
179
|
+
return pulumi.get(self, "geo_backup_key_uri")
|
|
180
|
+
|
|
181
|
+
@property
|
|
182
|
+
@pulumi.getter(name="geoBackupUserAssignedIdentityId")
|
|
183
|
+
def geo_backup_user_assigned_identity_id(self) -> Optional[str]:
|
|
184
|
+
"""
|
|
185
|
+
Geo backup user identity resource id as identity can't cross region, need identity in same region as geo backup
|
|
186
|
+
"""
|
|
187
|
+
return pulumi.get(self, "geo_backup_user_assigned_identity_id")
|
|
188
|
+
|
|
189
|
+
@property
|
|
190
|
+
@pulumi.getter(name="primaryKeyURI")
|
|
191
|
+
def primary_key_uri(self) -> Optional[str]:
|
|
192
|
+
"""
|
|
193
|
+
Primary key uri
|
|
194
|
+
"""
|
|
195
|
+
return pulumi.get(self, "primary_key_uri")
|
|
196
|
+
|
|
197
|
+
@property
|
|
198
|
+
@pulumi.getter(name="primaryUserAssignedIdentityId")
|
|
199
|
+
def primary_user_assigned_identity_id(self) -> Optional[str]:
|
|
200
|
+
"""
|
|
201
|
+
Primary user identity resource id
|
|
202
|
+
"""
|
|
203
|
+
return pulumi.get(self, "primary_user_assigned_identity_id")
|
|
204
|
+
|
|
205
|
+
@property
|
|
206
|
+
@pulumi.getter
|
|
207
|
+
def type(self) -> Optional[str]:
|
|
208
|
+
"""
|
|
209
|
+
The key type, AzureKeyVault for enable cmk, SystemManaged for disable cmk.
|
|
210
|
+
"""
|
|
211
|
+
return pulumi.get(self, "type")
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
@pulumi.output_type
|
|
215
|
+
class HighAvailabilityResponse(dict):
|
|
216
|
+
"""
|
|
217
|
+
High availability properties of a server
|
|
218
|
+
"""
|
|
219
|
+
@staticmethod
|
|
220
|
+
def __key_warning(key: str):
|
|
221
|
+
suggest = None
|
|
222
|
+
if key == "standbyAvailabilityZone":
|
|
223
|
+
suggest = "standby_availability_zone"
|
|
224
|
+
|
|
225
|
+
if suggest:
|
|
226
|
+
pulumi.log.warn(f"Key '{key}' not found in HighAvailabilityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
227
|
+
|
|
228
|
+
def __getitem__(self, key: str) -> Any:
|
|
229
|
+
HighAvailabilityResponse.__key_warning(key)
|
|
230
|
+
return super().__getitem__(key)
|
|
231
|
+
|
|
232
|
+
def get(self, key: str, default = None) -> Any:
|
|
233
|
+
HighAvailabilityResponse.__key_warning(key)
|
|
234
|
+
return super().get(key, default)
|
|
235
|
+
|
|
236
|
+
def __init__(__self__, *,
|
|
237
|
+
state: str,
|
|
238
|
+
mode: Optional[str] = None,
|
|
239
|
+
standby_availability_zone: Optional[str] = None):
|
|
240
|
+
"""
|
|
241
|
+
High availability properties of a server
|
|
242
|
+
:param str state: The state of server high availability.
|
|
243
|
+
:param str mode: High availability mode for a server.
|
|
244
|
+
:param str standby_availability_zone: Availability zone of the standby server.
|
|
245
|
+
"""
|
|
246
|
+
pulumi.set(__self__, "state", state)
|
|
247
|
+
if mode is not None:
|
|
248
|
+
pulumi.set(__self__, "mode", mode)
|
|
249
|
+
if standby_availability_zone is not None:
|
|
250
|
+
pulumi.set(__self__, "standby_availability_zone", standby_availability_zone)
|
|
251
|
+
|
|
252
|
+
@property
|
|
253
|
+
@pulumi.getter
|
|
254
|
+
def state(self) -> str:
|
|
255
|
+
"""
|
|
256
|
+
The state of server high availability.
|
|
257
|
+
"""
|
|
258
|
+
return pulumi.get(self, "state")
|
|
259
|
+
|
|
260
|
+
@property
|
|
261
|
+
@pulumi.getter
|
|
262
|
+
def mode(self) -> Optional[str]:
|
|
263
|
+
"""
|
|
264
|
+
High availability mode for a server.
|
|
265
|
+
"""
|
|
266
|
+
return pulumi.get(self, "mode")
|
|
267
|
+
|
|
268
|
+
@property
|
|
269
|
+
@pulumi.getter(name="standbyAvailabilityZone")
|
|
270
|
+
def standby_availability_zone(self) -> Optional[str]:
|
|
271
|
+
"""
|
|
272
|
+
Availability zone of the standby server.
|
|
273
|
+
"""
|
|
274
|
+
return pulumi.get(self, "standby_availability_zone")
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
@pulumi.output_type
|
|
278
|
+
class ImportSourcePropertiesResponse(dict):
|
|
279
|
+
"""
|
|
280
|
+
Import source related properties.
|
|
281
|
+
"""
|
|
282
|
+
@staticmethod
|
|
283
|
+
def __key_warning(key: str):
|
|
284
|
+
suggest = None
|
|
285
|
+
if key == "dataDirPath":
|
|
286
|
+
suggest = "data_dir_path"
|
|
287
|
+
elif key == "storageType":
|
|
288
|
+
suggest = "storage_type"
|
|
289
|
+
elif key == "storageUrl":
|
|
290
|
+
suggest = "storage_url"
|
|
291
|
+
|
|
292
|
+
if suggest:
|
|
293
|
+
pulumi.log.warn(f"Key '{key}' not found in ImportSourcePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
294
|
+
|
|
295
|
+
def __getitem__(self, key: str) -> Any:
|
|
296
|
+
ImportSourcePropertiesResponse.__key_warning(key)
|
|
297
|
+
return super().__getitem__(key)
|
|
298
|
+
|
|
299
|
+
def get(self, key: str, default = None) -> Any:
|
|
300
|
+
ImportSourcePropertiesResponse.__key_warning(key)
|
|
301
|
+
return super().get(key, default)
|
|
302
|
+
|
|
303
|
+
def __init__(__self__, *,
|
|
304
|
+
data_dir_path: Optional[str] = None,
|
|
305
|
+
storage_type: Optional[str] = None,
|
|
306
|
+
storage_url: Optional[str] = None):
|
|
307
|
+
"""
|
|
308
|
+
Import source related properties.
|
|
309
|
+
:param str data_dir_path: Relative path of data directory in storage.
|
|
310
|
+
:param str storage_type: Storage type of import source.
|
|
311
|
+
:param str storage_url: Uri of the import source storage.
|
|
312
|
+
"""
|
|
313
|
+
if data_dir_path is not None:
|
|
314
|
+
pulumi.set(__self__, "data_dir_path", data_dir_path)
|
|
315
|
+
if storage_type is not None:
|
|
316
|
+
pulumi.set(__self__, "storage_type", storage_type)
|
|
317
|
+
if storage_url is not None:
|
|
318
|
+
pulumi.set(__self__, "storage_url", storage_url)
|
|
319
|
+
|
|
320
|
+
@property
|
|
321
|
+
@pulumi.getter(name="dataDirPath")
|
|
322
|
+
def data_dir_path(self) -> Optional[str]:
|
|
323
|
+
"""
|
|
324
|
+
Relative path of data directory in storage.
|
|
325
|
+
"""
|
|
326
|
+
return pulumi.get(self, "data_dir_path")
|
|
327
|
+
|
|
328
|
+
@property
|
|
329
|
+
@pulumi.getter(name="storageType")
|
|
330
|
+
def storage_type(self) -> Optional[str]:
|
|
331
|
+
"""
|
|
332
|
+
Storage type of import source.
|
|
333
|
+
"""
|
|
334
|
+
return pulumi.get(self, "storage_type")
|
|
335
|
+
|
|
336
|
+
@property
|
|
337
|
+
@pulumi.getter(name="storageUrl")
|
|
338
|
+
def storage_url(self) -> Optional[str]:
|
|
339
|
+
"""
|
|
340
|
+
Uri of the import source storage.
|
|
341
|
+
"""
|
|
342
|
+
return pulumi.get(self, "storage_url")
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
@pulumi.output_type
|
|
346
|
+
class MaintenancePolicyResponse(dict):
|
|
347
|
+
"""
|
|
348
|
+
Maintenance policy of a server.
|
|
349
|
+
"""
|
|
350
|
+
@staticmethod
|
|
351
|
+
def __key_warning(key: str):
|
|
352
|
+
suggest = None
|
|
353
|
+
if key == "patchStrategy":
|
|
354
|
+
suggest = "patch_strategy"
|
|
355
|
+
|
|
356
|
+
if suggest:
|
|
357
|
+
pulumi.log.warn(f"Key '{key}' not found in MaintenancePolicyResponse. Access the value via the '{suggest}' property getter instead.")
|
|
358
|
+
|
|
359
|
+
def __getitem__(self, key: str) -> Any:
|
|
360
|
+
MaintenancePolicyResponse.__key_warning(key)
|
|
361
|
+
return super().__getitem__(key)
|
|
362
|
+
|
|
363
|
+
def get(self, key: str, default = None) -> Any:
|
|
364
|
+
MaintenancePolicyResponse.__key_warning(key)
|
|
365
|
+
return super().get(key, default)
|
|
366
|
+
|
|
367
|
+
def __init__(__self__, *,
|
|
368
|
+
patch_strategy: Optional[str] = None):
|
|
369
|
+
"""
|
|
370
|
+
Maintenance policy of a server.
|
|
371
|
+
:param str patch_strategy: The patch strategy of this server
|
|
372
|
+
"""
|
|
373
|
+
if patch_strategy is not None:
|
|
374
|
+
pulumi.set(__self__, "patch_strategy", patch_strategy)
|
|
375
|
+
|
|
376
|
+
@property
|
|
377
|
+
@pulumi.getter(name="patchStrategy")
|
|
378
|
+
def patch_strategy(self) -> Optional[str]:
|
|
379
|
+
"""
|
|
380
|
+
The patch strategy of this server
|
|
381
|
+
"""
|
|
382
|
+
return pulumi.get(self, "patch_strategy")
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
@pulumi.output_type
|
|
386
|
+
class MaintenanceWindowResponse(dict):
|
|
387
|
+
"""
|
|
388
|
+
Maintenance window of a server.
|
|
389
|
+
"""
|
|
390
|
+
@staticmethod
|
|
391
|
+
def __key_warning(key: str):
|
|
392
|
+
suggest = None
|
|
393
|
+
if key == "customWindow":
|
|
394
|
+
suggest = "custom_window"
|
|
395
|
+
elif key == "dayOfWeek":
|
|
396
|
+
suggest = "day_of_week"
|
|
397
|
+
elif key == "startHour":
|
|
398
|
+
suggest = "start_hour"
|
|
399
|
+
elif key == "startMinute":
|
|
400
|
+
suggest = "start_minute"
|
|
401
|
+
|
|
402
|
+
if suggest:
|
|
403
|
+
pulumi.log.warn(f"Key '{key}' not found in MaintenanceWindowResponse. Access the value via the '{suggest}' property getter instead.")
|
|
404
|
+
|
|
405
|
+
def __getitem__(self, key: str) -> Any:
|
|
406
|
+
MaintenanceWindowResponse.__key_warning(key)
|
|
407
|
+
return super().__getitem__(key)
|
|
408
|
+
|
|
409
|
+
def get(self, key: str, default = None) -> Any:
|
|
410
|
+
MaintenanceWindowResponse.__key_warning(key)
|
|
411
|
+
return super().get(key, default)
|
|
412
|
+
|
|
413
|
+
def __init__(__self__, *,
|
|
414
|
+
custom_window: Optional[str] = None,
|
|
415
|
+
day_of_week: Optional[int] = None,
|
|
416
|
+
start_hour: Optional[int] = None,
|
|
417
|
+
start_minute: Optional[int] = None):
|
|
418
|
+
"""
|
|
419
|
+
Maintenance window of a server.
|
|
420
|
+
:param str custom_window: indicates whether custom window is enabled or disabled
|
|
421
|
+
:param int day_of_week: day of week for maintenance window
|
|
422
|
+
:param int start_hour: start hour for maintenance window
|
|
423
|
+
:param int start_minute: start minute for maintenance window
|
|
424
|
+
"""
|
|
425
|
+
if custom_window is not None:
|
|
426
|
+
pulumi.set(__self__, "custom_window", custom_window)
|
|
427
|
+
if day_of_week is not None:
|
|
428
|
+
pulumi.set(__self__, "day_of_week", day_of_week)
|
|
429
|
+
if start_hour is not None:
|
|
430
|
+
pulumi.set(__self__, "start_hour", start_hour)
|
|
431
|
+
if start_minute is not None:
|
|
432
|
+
pulumi.set(__self__, "start_minute", start_minute)
|
|
433
|
+
|
|
434
|
+
@property
|
|
435
|
+
@pulumi.getter(name="customWindow")
|
|
436
|
+
def custom_window(self) -> Optional[str]:
|
|
437
|
+
"""
|
|
438
|
+
indicates whether custom window is enabled or disabled
|
|
439
|
+
"""
|
|
440
|
+
return pulumi.get(self, "custom_window")
|
|
441
|
+
|
|
442
|
+
@property
|
|
443
|
+
@pulumi.getter(name="dayOfWeek")
|
|
444
|
+
def day_of_week(self) -> Optional[int]:
|
|
445
|
+
"""
|
|
446
|
+
day of week for maintenance window
|
|
447
|
+
"""
|
|
448
|
+
return pulumi.get(self, "day_of_week")
|
|
449
|
+
|
|
450
|
+
@property
|
|
451
|
+
@pulumi.getter(name="startHour")
|
|
452
|
+
def start_hour(self) -> Optional[int]:
|
|
453
|
+
"""
|
|
454
|
+
start hour for maintenance window
|
|
455
|
+
"""
|
|
456
|
+
return pulumi.get(self, "start_hour")
|
|
457
|
+
|
|
458
|
+
@property
|
|
459
|
+
@pulumi.getter(name="startMinute")
|
|
460
|
+
def start_minute(self) -> Optional[int]:
|
|
461
|
+
"""
|
|
462
|
+
start minute for maintenance window
|
|
463
|
+
"""
|
|
464
|
+
return pulumi.get(self, "start_minute")
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
@pulumi.output_type
|
|
468
|
+
class MySQLServerIdentityResponse(dict):
|
|
469
|
+
"""
|
|
470
|
+
Properties to configure Identity for Bring your Own Keys
|
|
471
|
+
"""
|
|
472
|
+
@staticmethod
|
|
473
|
+
def __key_warning(key: str):
|
|
474
|
+
suggest = None
|
|
475
|
+
if key == "principalId":
|
|
476
|
+
suggest = "principal_id"
|
|
477
|
+
elif key == "tenantId":
|
|
478
|
+
suggest = "tenant_id"
|
|
479
|
+
elif key == "userAssignedIdentities":
|
|
480
|
+
suggest = "user_assigned_identities"
|
|
481
|
+
|
|
482
|
+
if suggest:
|
|
483
|
+
pulumi.log.warn(f"Key '{key}' not found in MySQLServerIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
484
|
+
|
|
485
|
+
def __getitem__(self, key: str) -> Any:
|
|
486
|
+
MySQLServerIdentityResponse.__key_warning(key)
|
|
487
|
+
return super().__getitem__(key)
|
|
488
|
+
|
|
489
|
+
def get(self, key: str, default = None) -> Any:
|
|
490
|
+
MySQLServerIdentityResponse.__key_warning(key)
|
|
491
|
+
return super().get(key, default)
|
|
492
|
+
|
|
493
|
+
def __init__(__self__, *,
|
|
494
|
+
principal_id: str,
|
|
495
|
+
tenant_id: str,
|
|
496
|
+
type: Optional[str] = None,
|
|
497
|
+
user_assigned_identities: Optional[Mapping[str, Sequence['outputs.UserAssignedIdentityResponse']]] = None):
|
|
498
|
+
"""
|
|
499
|
+
Properties to configure Identity for Bring your Own Keys
|
|
500
|
+
:param str principal_id: ObjectId from the KeyVault
|
|
501
|
+
:param str tenant_id: TenantId from the KeyVault
|
|
502
|
+
:param str type: Type of managed service identity.
|
|
503
|
+
:param Mapping[str, Sequence['UserAssignedIdentityResponse']] user_assigned_identities: Metadata of user assigned identity.
|
|
504
|
+
"""
|
|
505
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
506
|
+
pulumi.set(__self__, "tenant_id", tenant_id)
|
|
507
|
+
if type is not None:
|
|
508
|
+
pulumi.set(__self__, "type", type)
|
|
509
|
+
if user_assigned_identities is not None:
|
|
510
|
+
pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
|
|
511
|
+
|
|
512
|
+
@property
|
|
513
|
+
@pulumi.getter(name="principalId")
|
|
514
|
+
def principal_id(self) -> str:
|
|
515
|
+
"""
|
|
516
|
+
ObjectId from the KeyVault
|
|
517
|
+
"""
|
|
518
|
+
return pulumi.get(self, "principal_id")
|
|
519
|
+
|
|
520
|
+
@property
|
|
521
|
+
@pulumi.getter(name="tenantId")
|
|
522
|
+
def tenant_id(self) -> str:
|
|
523
|
+
"""
|
|
524
|
+
TenantId from the KeyVault
|
|
525
|
+
"""
|
|
526
|
+
return pulumi.get(self, "tenant_id")
|
|
527
|
+
|
|
528
|
+
@property
|
|
529
|
+
@pulumi.getter
|
|
530
|
+
def type(self) -> Optional[str]:
|
|
531
|
+
"""
|
|
532
|
+
Type of managed service identity.
|
|
533
|
+
"""
|
|
534
|
+
return pulumi.get(self, "type")
|
|
535
|
+
|
|
536
|
+
@property
|
|
537
|
+
@pulumi.getter(name="userAssignedIdentities")
|
|
538
|
+
def user_assigned_identities(self) -> Optional[Mapping[str, Sequence['outputs.UserAssignedIdentityResponse']]]:
|
|
539
|
+
"""
|
|
540
|
+
Metadata of user assigned identity.
|
|
541
|
+
"""
|
|
542
|
+
return pulumi.get(self, "user_assigned_identities")
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
@pulumi.output_type
|
|
546
|
+
class MySQLServerSkuResponse(dict):
|
|
547
|
+
"""
|
|
548
|
+
Billing information related properties of a server.
|
|
549
|
+
"""
|
|
550
|
+
def __init__(__self__, *,
|
|
551
|
+
name: str,
|
|
552
|
+
tier: str):
|
|
553
|
+
"""
|
|
554
|
+
Billing information related properties of a server.
|
|
555
|
+
:param str name: The name of the sku, e.g. Standard_D32s_v3.
|
|
556
|
+
:param str tier: The tier of the particular SKU, e.g. GeneralPurpose.
|
|
557
|
+
"""
|
|
558
|
+
pulumi.set(__self__, "name", name)
|
|
559
|
+
pulumi.set(__self__, "tier", tier)
|
|
560
|
+
|
|
561
|
+
@property
|
|
562
|
+
@pulumi.getter
|
|
563
|
+
def name(self) -> str:
|
|
564
|
+
"""
|
|
565
|
+
The name of the sku, e.g. Standard_D32s_v3.
|
|
566
|
+
"""
|
|
567
|
+
return pulumi.get(self, "name")
|
|
568
|
+
|
|
569
|
+
@property
|
|
570
|
+
@pulumi.getter
|
|
571
|
+
def tier(self) -> str:
|
|
572
|
+
"""
|
|
573
|
+
The tier of the particular SKU, e.g. GeneralPurpose.
|
|
574
|
+
"""
|
|
575
|
+
return pulumi.get(self, "tier")
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
@pulumi.output_type
|
|
579
|
+
class NetworkResponse(dict):
|
|
580
|
+
"""
|
|
581
|
+
Network related properties of a server
|
|
582
|
+
"""
|
|
583
|
+
@staticmethod
|
|
584
|
+
def __key_warning(key: str):
|
|
585
|
+
suggest = None
|
|
586
|
+
if key == "delegatedSubnetResourceId":
|
|
587
|
+
suggest = "delegated_subnet_resource_id"
|
|
588
|
+
elif key == "privateDnsZoneResourceId":
|
|
589
|
+
suggest = "private_dns_zone_resource_id"
|
|
590
|
+
elif key == "publicNetworkAccess":
|
|
591
|
+
suggest = "public_network_access"
|
|
592
|
+
|
|
593
|
+
if suggest:
|
|
594
|
+
pulumi.log.warn(f"Key '{key}' not found in NetworkResponse. Access the value via the '{suggest}' property getter instead.")
|
|
595
|
+
|
|
596
|
+
def __getitem__(self, key: str) -> Any:
|
|
597
|
+
NetworkResponse.__key_warning(key)
|
|
598
|
+
return super().__getitem__(key)
|
|
599
|
+
|
|
600
|
+
def get(self, key: str, default = None) -> Any:
|
|
601
|
+
NetworkResponse.__key_warning(key)
|
|
602
|
+
return super().get(key, default)
|
|
603
|
+
|
|
604
|
+
def __init__(__self__, *,
|
|
605
|
+
delegated_subnet_resource_id: Optional[str] = None,
|
|
606
|
+
private_dns_zone_resource_id: Optional[str] = None,
|
|
607
|
+
public_network_access: Optional[str] = None):
|
|
608
|
+
"""
|
|
609
|
+
Network related properties of a server
|
|
610
|
+
:param str delegated_subnet_resource_id: Delegated subnet resource id used to setup vnet for a server.
|
|
611
|
+
:param str private_dns_zone_resource_id: Private DNS zone resource id.
|
|
612
|
+
:param str public_network_access: Whether or not public network access is allowed for this server. Value is 'Disabled' when server has VNet integration.
|
|
613
|
+
"""
|
|
614
|
+
if delegated_subnet_resource_id is not None:
|
|
615
|
+
pulumi.set(__self__, "delegated_subnet_resource_id", delegated_subnet_resource_id)
|
|
616
|
+
if private_dns_zone_resource_id is not None:
|
|
617
|
+
pulumi.set(__self__, "private_dns_zone_resource_id", private_dns_zone_resource_id)
|
|
618
|
+
if public_network_access is not None:
|
|
619
|
+
pulumi.set(__self__, "public_network_access", public_network_access)
|
|
620
|
+
|
|
621
|
+
@property
|
|
622
|
+
@pulumi.getter(name="delegatedSubnetResourceId")
|
|
623
|
+
def delegated_subnet_resource_id(self) -> Optional[str]:
|
|
624
|
+
"""
|
|
625
|
+
Delegated subnet resource id used to setup vnet for a server.
|
|
626
|
+
"""
|
|
627
|
+
return pulumi.get(self, "delegated_subnet_resource_id")
|
|
628
|
+
|
|
629
|
+
@property
|
|
630
|
+
@pulumi.getter(name="privateDnsZoneResourceId")
|
|
631
|
+
def private_dns_zone_resource_id(self) -> Optional[str]:
|
|
632
|
+
"""
|
|
633
|
+
Private DNS zone resource id.
|
|
634
|
+
"""
|
|
635
|
+
return pulumi.get(self, "private_dns_zone_resource_id")
|
|
636
|
+
|
|
637
|
+
@property
|
|
638
|
+
@pulumi.getter(name="publicNetworkAccess")
|
|
639
|
+
def public_network_access(self) -> Optional[str]:
|
|
640
|
+
"""
|
|
641
|
+
Whether or not public network access is allowed for this server. Value is 'Disabled' when server has VNet integration.
|
|
642
|
+
"""
|
|
643
|
+
return pulumi.get(self, "public_network_access")
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
@pulumi.output_type
|
|
647
|
+
class PrivateEndpointConnectionResponse(dict):
|
|
648
|
+
"""
|
|
649
|
+
The private endpoint connection resource.
|
|
650
|
+
"""
|
|
651
|
+
@staticmethod
|
|
652
|
+
def __key_warning(key: str):
|
|
653
|
+
suggest = None
|
|
654
|
+
if key == "groupIds":
|
|
655
|
+
suggest = "group_ids"
|
|
656
|
+
elif key == "privateLinkServiceConnectionState":
|
|
657
|
+
suggest = "private_link_service_connection_state"
|
|
658
|
+
elif key == "provisioningState":
|
|
659
|
+
suggest = "provisioning_state"
|
|
660
|
+
elif key == "systemData":
|
|
661
|
+
suggest = "system_data"
|
|
662
|
+
elif key == "privateEndpoint":
|
|
663
|
+
suggest = "private_endpoint"
|
|
664
|
+
|
|
665
|
+
if suggest:
|
|
666
|
+
pulumi.log.warn(f"Key '{key}' not found in PrivateEndpointConnectionResponse. Access the value via the '{suggest}' property getter instead.")
|
|
667
|
+
|
|
668
|
+
def __getitem__(self, key: str) -> Any:
|
|
669
|
+
PrivateEndpointConnectionResponse.__key_warning(key)
|
|
670
|
+
return super().__getitem__(key)
|
|
671
|
+
|
|
672
|
+
def get(self, key: str, default = None) -> Any:
|
|
673
|
+
PrivateEndpointConnectionResponse.__key_warning(key)
|
|
674
|
+
return super().get(key, default)
|
|
675
|
+
|
|
676
|
+
def __init__(__self__, *,
|
|
677
|
+
group_ids: Sequence[str],
|
|
678
|
+
id: str,
|
|
679
|
+
name: str,
|
|
680
|
+
private_link_service_connection_state: 'outputs.PrivateLinkServiceConnectionStateResponse',
|
|
681
|
+
provisioning_state: str,
|
|
682
|
+
system_data: 'outputs.SystemDataResponse',
|
|
683
|
+
type: str,
|
|
684
|
+
private_endpoint: Optional['outputs.PrivateEndpointResponse'] = None):
|
|
685
|
+
"""
|
|
686
|
+
The private endpoint connection resource.
|
|
687
|
+
:param Sequence[str] group_ids: The group ids for the private endpoint resource.
|
|
688
|
+
:param str id: Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
689
|
+
:param str name: The name of the resource
|
|
690
|
+
:param 'PrivateLinkServiceConnectionStateResponse' private_link_service_connection_state: A collection of information about the state of the connection between service consumer and provider.
|
|
691
|
+
:param str provisioning_state: The provisioning state of the private endpoint connection resource.
|
|
692
|
+
:param 'SystemDataResponse' system_data: Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
693
|
+
:param str type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
694
|
+
:param 'PrivateEndpointResponse' private_endpoint: The private endpoint resource.
|
|
695
|
+
"""
|
|
696
|
+
pulumi.set(__self__, "group_ids", group_ids)
|
|
697
|
+
pulumi.set(__self__, "id", id)
|
|
698
|
+
pulumi.set(__self__, "name", name)
|
|
699
|
+
pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
|
|
700
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
701
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
702
|
+
pulumi.set(__self__, "type", type)
|
|
703
|
+
if private_endpoint is not None:
|
|
704
|
+
pulumi.set(__self__, "private_endpoint", private_endpoint)
|
|
705
|
+
|
|
706
|
+
@property
|
|
707
|
+
@pulumi.getter(name="groupIds")
|
|
708
|
+
def group_ids(self) -> Sequence[str]:
|
|
709
|
+
"""
|
|
710
|
+
The group ids for the private endpoint resource.
|
|
711
|
+
"""
|
|
712
|
+
return pulumi.get(self, "group_ids")
|
|
713
|
+
|
|
714
|
+
@property
|
|
715
|
+
@pulumi.getter
|
|
716
|
+
def id(self) -> str:
|
|
717
|
+
"""
|
|
718
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
719
|
+
"""
|
|
720
|
+
return pulumi.get(self, "id")
|
|
721
|
+
|
|
722
|
+
@property
|
|
723
|
+
@pulumi.getter
|
|
724
|
+
def name(self) -> str:
|
|
725
|
+
"""
|
|
726
|
+
The name of the resource
|
|
727
|
+
"""
|
|
728
|
+
return pulumi.get(self, "name")
|
|
729
|
+
|
|
730
|
+
@property
|
|
731
|
+
@pulumi.getter(name="privateLinkServiceConnectionState")
|
|
732
|
+
def private_link_service_connection_state(self) -> 'outputs.PrivateLinkServiceConnectionStateResponse':
|
|
733
|
+
"""
|
|
734
|
+
A collection of information about the state of the connection between service consumer and provider.
|
|
735
|
+
"""
|
|
736
|
+
return pulumi.get(self, "private_link_service_connection_state")
|
|
737
|
+
|
|
738
|
+
@property
|
|
739
|
+
@pulumi.getter(name="provisioningState")
|
|
740
|
+
def provisioning_state(self) -> str:
|
|
741
|
+
"""
|
|
742
|
+
The provisioning state of the private endpoint connection resource.
|
|
743
|
+
"""
|
|
744
|
+
return pulumi.get(self, "provisioning_state")
|
|
745
|
+
|
|
746
|
+
@property
|
|
747
|
+
@pulumi.getter(name="systemData")
|
|
748
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
749
|
+
"""
|
|
750
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
751
|
+
"""
|
|
752
|
+
return pulumi.get(self, "system_data")
|
|
753
|
+
|
|
754
|
+
@property
|
|
755
|
+
@pulumi.getter
|
|
756
|
+
def type(self) -> str:
|
|
757
|
+
"""
|
|
758
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
759
|
+
"""
|
|
760
|
+
return pulumi.get(self, "type")
|
|
761
|
+
|
|
762
|
+
@property
|
|
763
|
+
@pulumi.getter(name="privateEndpoint")
|
|
764
|
+
def private_endpoint(self) -> Optional['outputs.PrivateEndpointResponse']:
|
|
765
|
+
"""
|
|
766
|
+
The private endpoint resource.
|
|
767
|
+
"""
|
|
768
|
+
return pulumi.get(self, "private_endpoint")
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
@pulumi.output_type
|
|
772
|
+
class PrivateEndpointResponse(dict):
|
|
773
|
+
"""
|
|
774
|
+
The private endpoint resource.
|
|
775
|
+
"""
|
|
776
|
+
def __init__(__self__, *,
|
|
777
|
+
id: str):
|
|
778
|
+
"""
|
|
779
|
+
The private endpoint resource.
|
|
780
|
+
:param str id: The ARM identifier for private endpoint.
|
|
781
|
+
"""
|
|
782
|
+
pulumi.set(__self__, "id", id)
|
|
783
|
+
|
|
784
|
+
@property
|
|
785
|
+
@pulumi.getter
|
|
786
|
+
def id(self) -> str:
|
|
787
|
+
"""
|
|
788
|
+
The ARM identifier for private endpoint.
|
|
789
|
+
"""
|
|
790
|
+
return pulumi.get(self, "id")
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
@pulumi.output_type
|
|
794
|
+
class PrivateLinkServiceConnectionStateResponse(dict):
|
|
795
|
+
"""
|
|
796
|
+
A collection of information about the state of the connection between service consumer and provider.
|
|
797
|
+
"""
|
|
798
|
+
@staticmethod
|
|
799
|
+
def __key_warning(key: str):
|
|
800
|
+
suggest = None
|
|
801
|
+
if key == "actionsRequired":
|
|
802
|
+
suggest = "actions_required"
|
|
803
|
+
|
|
804
|
+
if suggest:
|
|
805
|
+
pulumi.log.warn(f"Key '{key}' not found in PrivateLinkServiceConnectionStateResponse. Access the value via the '{suggest}' property getter instead.")
|
|
806
|
+
|
|
807
|
+
def __getitem__(self, key: str) -> Any:
|
|
808
|
+
PrivateLinkServiceConnectionStateResponse.__key_warning(key)
|
|
809
|
+
return super().__getitem__(key)
|
|
810
|
+
|
|
811
|
+
def get(self, key: str, default = None) -> Any:
|
|
812
|
+
PrivateLinkServiceConnectionStateResponse.__key_warning(key)
|
|
813
|
+
return super().get(key, default)
|
|
814
|
+
|
|
815
|
+
def __init__(__self__, *,
|
|
816
|
+
actions_required: Optional[str] = None,
|
|
817
|
+
description: Optional[str] = None,
|
|
818
|
+
status: Optional[str] = None):
|
|
819
|
+
"""
|
|
820
|
+
A collection of information about the state of the connection between service consumer and provider.
|
|
821
|
+
:param str actions_required: A message indicating if changes on the service provider require any updates on the consumer.
|
|
822
|
+
:param str description: The reason for approval/rejection of the connection.
|
|
823
|
+
:param str status: Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
|
|
824
|
+
"""
|
|
825
|
+
if actions_required is not None:
|
|
826
|
+
pulumi.set(__self__, "actions_required", actions_required)
|
|
827
|
+
if description is not None:
|
|
828
|
+
pulumi.set(__self__, "description", description)
|
|
829
|
+
if status is not None:
|
|
830
|
+
pulumi.set(__self__, "status", status)
|
|
831
|
+
|
|
832
|
+
@property
|
|
833
|
+
@pulumi.getter(name="actionsRequired")
|
|
834
|
+
def actions_required(self) -> Optional[str]:
|
|
835
|
+
"""
|
|
836
|
+
A message indicating if changes on the service provider require any updates on the consumer.
|
|
837
|
+
"""
|
|
838
|
+
return pulumi.get(self, "actions_required")
|
|
839
|
+
|
|
840
|
+
@property
|
|
841
|
+
@pulumi.getter
|
|
842
|
+
def description(self) -> Optional[str]:
|
|
843
|
+
"""
|
|
844
|
+
The reason for approval/rejection of the connection.
|
|
845
|
+
"""
|
|
846
|
+
return pulumi.get(self, "description")
|
|
847
|
+
|
|
848
|
+
@property
|
|
849
|
+
@pulumi.getter
|
|
850
|
+
def status(self) -> Optional[str]:
|
|
851
|
+
"""
|
|
852
|
+
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
|
|
853
|
+
"""
|
|
854
|
+
return pulumi.get(self, "status")
|
|
855
|
+
|
|
856
|
+
|
|
857
|
+
@pulumi.output_type
|
|
858
|
+
class StorageResponse(dict):
|
|
859
|
+
"""
|
|
860
|
+
Storage Profile properties of a server
|
|
861
|
+
"""
|
|
862
|
+
@staticmethod
|
|
863
|
+
def __key_warning(key: str):
|
|
864
|
+
suggest = None
|
|
865
|
+
if key == "storageSku":
|
|
866
|
+
suggest = "storage_sku"
|
|
867
|
+
elif key == "autoGrow":
|
|
868
|
+
suggest = "auto_grow"
|
|
869
|
+
elif key == "autoIoScaling":
|
|
870
|
+
suggest = "auto_io_scaling"
|
|
871
|
+
elif key == "logOnDisk":
|
|
872
|
+
suggest = "log_on_disk"
|
|
873
|
+
elif key == "storageRedundancy":
|
|
874
|
+
suggest = "storage_redundancy"
|
|
875
|
+
elif key == "storageSizeGB":
|
|
876
|
+
suggest = "storage_size_gb"
|
|
877
|
+
|
|
878
|
+
if suggest:
|
|
879
|
+
pulumi.log.warn(f"Key '{key}' not found in StorageResponse. Access the value via the '{suggest}' property getter instead.")
|
|
880
|
+
|
|
881
|
+
def __getitem__(self, key: str) -> Any:
|
|
882
|
+
StorageResponse.__key_warning(key)
|
|
883
|
+
return super().__getitem__(key)
|
|
884
|
+
|
|
885
|
+
def get(self, key: str, default = None) -> Any:
|
|
886
|
+
StorageResponse.__key_warning(key)
|
|
887
|
+
return super().get(key, default)
|
|
888
|
+
|
|
889
|
+
def __init__(__self__, *,
|
|
890
|
+
storage_sku: str,
|
|
891
|
+
auto_grow: Optional[str] = None,
|
|
892
|
+
auto_io_scaling: Optional[str] = None,
|
|
893
|
+
iops: Optional[int] = None,
|
|
894
|
+
log_on_disk: Optional[str] = None,
|
|
895
|
+
storage_redundancy: Optional[str] = None,
|
|
896
|
+
storage_size_gb: Optional[int] = None):
|
|
897
|
+
"""
|
|
898
|
+
Storage Profile properties of a server
|
|
899
|
+
:param str storage_sku: The sku name of the server storage.
|
|
900
|
+
:param str auto_grow: Enable Storage Auto Grow or not.
|
|
901
|
+
:param str auto_io_scaling: Enable IO Auto Scaling or not.
|
|
902
|
+
:param int iops: Storage IOPS for a server.
|
|
903
|
+
:param str log_on_disk: Enable Log On Disk or not.
|
|
904
|
+
:param str storage_redundancy: The redundant type of the server storage. The parameter is used for server creation.
|
|
905
|
+
:param int storage_size_gb: Max storage size allowed for a server.
|
|
906
|
+
"""
|
|
907
|
+
pulumi.set(__self__, "storage_sku", storage_sku)
|
|
908
|
+
if auto_grow is None:
|
|
909
|
+
auto_grow = 'Disabled'
|
|
910
|
+
if auto_grow is not None:
|
|
911
|
+
pulumi.set(__self__, "auto_grow", auto_grow)
|
|
912
|
+
if auto_io_scaling is None:
|
|
913
|
+
auto_io_scaling = 'Enabled'
|
|
914
|
+
if auto_io_scaling is not None:
|
|
915
|
+
pulumi.set(__self__, "auto_io_scaling", auto_io_scaling)
|
|
916
|
+
if iops is not None:
|
|
917
|
+
pulumi.set(__self__, "iops", iops)
|
|
918
|
+
if log_on_disk is None:
|
|
919
|
+
log_on_disk = 'Disabled'
|
|
920
|
+
if log_on_disk is not None:
|
|
921
|
+
pulumi.set(__self__, "log_on_disk", log_on_disk)
|
|
922
|
+
if storage_redundancy is None:
|
|
923
|
+
storage_redundancy = 'LocalRedundancy'
|
|
924
|
+
if storage_redundancy is not None:
|
|
925
|
+
pulumi.set(__self__, "storage_redundancy", storage_redundancy)
|
|
926
|
+
if storage_size_gb is not None:
|
|
927
|
+
pulumi.set(__self__, "storage_size_gb", storage_size_gb)
|
|
928
|
+
|
|
929
|
+
@property
|
|
930
|
+
@pulumi.getter(name="storageSku")
|
|
931
|
+
def storage_sku(self) -> str:
|
|
932
|
+
"""
|
|
933
|
+
The sku name of the server storage.
|
|
934
|
+
"""
|
|
935
|
+
return pulumi.get(self, "storage_sku")
|
|
936
|
+
|
|
937
|
+
@property
|
|
938
|
+
@pulumi.getter(name="autoGrow")
|
|
939
|
+
def auto_grow(self) -> Optional[str]:
|
|
940
|
+
"""
|
|
941
|
+
Enable Storage Auto Grow or not.
|
|
942
|
+
"""
|
|
943
|
+
return pulumi.get(self, "auto_grow")
|
|
944
|
+
|
|
945
|
+
@property
|
|
946
|
+
@pulumi.getter(name="autoIoScaling")
|
|
947
|
+
def auto_io_scaling(self) -> Optional[str]:
|
|
948
|
+
"""
|
|
949
|
+
Enable IO Auto Scaling or not.
|
|
950
|
+
"""
|
|
951
|
+
return pulumi.get(self, "auto_io_scaling")
|
|
952
|
+
|
|
953
|
+
@property
|
|
954
|
+
@pulumi.getter
|
|
955
|
+
def iops(self) -> Optional[int]:
|
|
956
|
+
"""
|
|
957
|
+
Storage IOPS for a server.
|
|
958
|
+
"""
|
|
959
|
+
return pulumi.get(self, "iops")
|
|
960
|
+
|
|
961
|
+
@property
|
|
962
|
+
@pulumi.getter(name="logOnDisk")
|
|
963
|
+
def log_on_disk(self) -> Optional[str]:
|
|
964
|
+
"""
|
|
965
|
+
Enable Log On Disk or not.
|
|
966
|
+
"""
|
|
967
|
+
return pulumi.get(self, "log_on_disk")
|
|
968
|
+
|
|
969
|
+
@property
|
|
970
|
+
@pulumi.getter(name="storageRedundancy")
|
|
971
|
+
def storage_redundancy(self) -> Optional[str]:
|
|
972
|
+
"""
|
|
973
|
+
The redundant type of the server storage. The parameter is used for server creation.
|
|
974
|
+
"""
|
|
975
|
+
return pulumi.get(self, "storage_redundancy")
|
|
976
|
+
|
|
977
|
+
@property
|
|
978
|
+
@pulumi.getter(name="storageSizeGB")
|
|
979
|
+
def storage_size_gb(self) -> Optional[int]:
|
|
980
|
+
"""
|
|
981
|
+
Max storage size allowed for a server.
|
|
982
|
+
"""
|
|
983
|
+
return pulumi.get(self, "storage_size_gb")
|
|
984
|
+
|
|
985
|
+
|
|
986
|
+
@pulumi.output_type
|
|
987
|
+
class SystemDataResponse(dict):
|
|
988
|
+
"""
|
|
989
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
990
|
+
"""
|
|
991
|
+
@staticmethod
|
|
992
|
+
def __key_warning(key: str):
|
|
993
|
+
suggest = None
|
|
994
|
+
if key == "createdAt":
|
|
995
|
+
suggest = "created_at"
|
|
996
|
+
elif key == "createdBy":
|
|
997
|
+
suggest = "created_by"
|
|
998
|
+
elif key == "createdByType":
|
|
999
|
+
suggest = "created_by_type"
|
|
1000
|
+
elif key == "lastModifiedAt":
|
|
1001
|
+
suggest = "last_modified_at"
|
|
1002
|
+
elif key == "lastModifiedBy":
|
|
1003
|
+
suggest = "last_modified_by"
|
|
1004
|
+
elif key == "lastModifiedByType":
|
|
1005
|
+
suggest = "last_modified_by_type"
|
|
1006
|
+
|
|
1007
|
+
if suggest:
|
|
1008
|
+
pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1009
|
+
|
|
1010
|
+
def __getitem__(self, key: str) -> Any:
|
|
1011
|
+
SystemDataResponse.__key_warning(key)
|
|
1012
|
+
return super().__getitem__(key)
|
|
1013
|
+
|
|
1014
|
+
def get(self, key: str, default = None) -> Any:
|
|
1015
|
+
SystemDataResponse.__key_warning(key)
|
|
1016
|
+
return super().get(key, default)
|
|
1017
|
+
|
|
1018
|
+
def __init__(__self__, *,
|
|
1019
|
+
created_at: Optional[str] = None,
|
|
1020
|
+
created_by: Optional[str] = None,
|
|
1021
|
+
created_by_type: Optional[str] = None,
|
|
1022
|
+
last_modified_at: Optional[str] = None,
|
|
1023
|
+
last_modified_by: Optional[str] = None,
|
|
1024
|
+
last_modified_by_type: Optional[str] = None):
|
|
1025
|
+
"""
|
|
1026
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
1027
|
+
:param str created_at: The timestamp of resource creation (UTC).
|
|
1028
|
+
:param str created_by: The identity that created the resource.
|
|
1029
|
+
:param str created_by_type: The type of identity that created the resource.
|
|
1030
|
+
:param str last_modified_at: The timestamp of resource last modification (UTC)
|
|
1031
|
+
:param str last_modified_by: The identity that last modified the resource.
|
|
1032
|
+
:param str last_modified_by_type: The type of identity that last modified the resource.
|
|
1033
|
+
"""
|
|
1034
|
+
if created_at is not None:
|
|
1035
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
1036
|
+
if created_by is not None:
|
|
1037
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
1038
|
+
if created_by_type is not None:
|
|
1039
|
+
pulumi.set(__self__, "created_by_type", created_by_type)
|
|
1040
|
+
if last_modified_at is not None:
|
|
1041
|
+
pulumi.set(__self__, "last_modified_at", last_modified_at)
|
|
1042
|
+
if last_modified_by is not None:
|
|
1043
|
+
pulumi.set(__self__, "last_modified_by", last_modified_by)
|
|
1044
|
+
if last_modified_by_type is not None:
|
|
1045
|
+
pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
|
|
1046
|
+
|
|
1047
|
+
@property
|
|
1048
|
+
@pulumi.getter(name="createdAt")
|
|
1049
|
+
def created_at(self) -> Optional[str]:
|
|
1050
|
+
"""
|
|
1051
|
+
The timestamp of resource creation (UTC).
|
|
1052
|
+
"""
|
|
1053
|
+
return pulumi.get(self, "created_at")
|
|
1054
|
+
|
|
1055
|
+
@property
|
|
1056
|
+
@pulumi.getter(name="createdBy")
|
|
1057
|
+
def created_by(self) -> Optional[str]:
|
|
1058
|
+
"""
|
|
1059
|
+
The identity that created the resource.
|
|
1060
|
+
"""
|
|
1061
|
+
return pulumi.get(self, "created_by")
|
|
1062
|
+
|
|
1063
|
+
@property
|
|
1064
|
+
@pulumi.getter(name="createdByType")
|
|
1065
|
+
def created_by_type(self) -> Optional[str]:
|
|
1066
|
+
"""
|
|
1067
|
+
The type of identity that created the resource.
|
|
1068
|
+
"""
|
|
1069
|
+
return pulumi.get(self, "created_by_type")
|
|
1070
|
+
|
|
1071
|
+
@property
|
|
1072
|
+
@pulumi.getter(name="lastModifiedAt")
|
|
1073
|
+
def last_modified_at(self) -> Optional[str]:
|
|
1074
|
+
"""
|
|
1075
|
+
The timestamp of resource last modification (UTC)
|
|
1076
|
+
"""
|
|
1077
|
+
return pulumi.get(self, "last_modified_at")
|
|
1078
|
+
|
|
1079
|
+
@property
|
|
1080
|
+
@pulumi.getter(name="lastModifiedBy")
|
|
1081
|
+
def last_modified_by(self) -> Optional[str]:
|
|
1082
|
+
"""
|
|
1083
|
+
The identity that last modified the resource.
|
|
1084
|
+
"""
|
|
1085
|
+
return pulumi.get(self, "last_modified_by")
|
|
1086
|
+
|
|
1087
|
+
@property
|
|
1088
|
+
@pulumi.getter(name="lastModifiedByType")
|
|
1089
|
+
def last_modified_by_type(self) -> Optional[str]:
|
|
1090
|
+
"""
|
|
1091
|
+
The type of identity that last modified the resource.
|
|
1092
|
+
"""
|
|
1093
|
+
return pulumi.get(self, "last_modified_by_type")
|
|
1094
|
+
|
|
1095
|
+
|
|
1096
|
+
@pulumi.output_type
|
|
1097
|
+
class UserAssignedIdentityResponse(dict):
|
|
1098
|
+
"""
|
|
1099
|
+
Metadata of user assigned identity.
|
|
1100
|
+
"""
|
|
1101
|
+
@staticmethod
|
|
1102
|
+
def __key_warning(key: str):
|
|
1103
|
+
suggest = None
|
|
1104
|
+
if key == "clientId":
|
|
1105
|
+
suggest = "client_id"
|
|
1106
|
+
elif key == "principalId":
|
|
1107
|
+
suggest = "principal_id"
|
|
1108
|
+
|
|
1109
|
+
if suggest:
|
|
1110
|
+
pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1111
|
+
|
|
1112
|
+
def __getitem__(self, key: str) -> Any:
|
|
1113
|
+
UserAssignedIdentityResponse.__key_warning(key)
|
|
1114
|
+
return super().__getitem__(key)
|
|
1115
|
+
|
|
1116
|
+
def get(self, key: str, default = None) -> Any:
|
|
1117
|
+
UserAssignedIdentityResponse.__key_warning(key)
|
|
1118
|
+
return super().get(key, default)
|
|
1119
|
+
|
|
1120
|
+
def __init__(__self__, *,
|
|
1121
|
+
client_id: str,
|
|
1122
|
+
principal_id: str):
|
|
1123
|
+
"""
|
|
1124
|
+
Metadata of user assigned identity.
|
|
1125
|
+
:param str client_id: Client Id of user assigned identity
|
|
1126
|
+
:param str principal_id: Principal Id of user assigned identity
|
|
1127
|
+
"""
|
|
1128
|
+
pulumi.set(__self__, "client_id", client_id)
|
|
1129
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
1130
|
+
|
|
1131
|
+
@property
|
|
1132
|
+
@pulumi.getter(name="clientId")
|
|
1133
|
+
def client_id(self) -> str:
|
|
1134
|
+
"""
|
|
1135
|
+
Client Id of user assigned identity
|
|
1136
|
+
"""
|
|
1137
|
+
return pulumi.get(self, "client_id")
|
|
1138
|
+
|
|
1139
|
+
@property
|
|
1140
|
+
@pulumi.getter(name="principalId")
|
|
1141
|
+
def principal_id(self) -> str:
|
|
1142
|
+
"""
|
|
1143
|
+
Principal Id of user assigned identity
|
|
1144
|
+
"""
|
|
1145
|
+
return pulumi.get(self, "principal_id")
|
|
1146
|
+
|
|
1147
|
+
|