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,326 @@
|
|
|
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
|
+
from ._inputs import *
|
|
19
|
+
|
|
20
|
+
__all__ = ['SharedCommitmentPlanArgs', 'SharedCommitmentPlan']
|
|
21
|
+
|
|
22
|
+
@pulumi.input_type
|
|
23
|
+
class SharedCommitmentPlanArgs:
|
|
24
|
+
def __init__(__self__, *,
|
|
25
|
+
resource_group_name: pulumi.Input[str],
|
|
26
|
+
commitment_plan_name: Optional[pulumi.Input[str]] = None,
|
|
27
|
+
kind: Optional[pulumi.Input[str]] = None,
|
|
28
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
29
|
+
properties: Optional[pulumi.Input['CommitmentPlanPropertiesArgs']] = None,
|
|
30
|
+
sku: Optional[pulumi.Input['SkuArgs']] = None,
|
|
31
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
32
|
+
"""
|
|
33
|
+
The set of arguments for constructing a SharedCommitmentPlan resource.
|
|
34
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
35
|
+
:param pulumi.Input[str] commitment_plan_name: The name of the commitmentPlan associated with the Cognitive Services Account
|
|
36
|
+
:param pulumi.Input[str] kind: The Kind of the resource.
|
|
37
|
+
:param pulumi.Input[str] location: The geo-location where the resource lives
|
|
38
|
+
:param pulumi.Input['CommitmentPlanPropertiesArgs'] properties: Properties of Cognitive Services account commitment plan.
|
|
39
|
+
:param pulumi.Input['SkuArgs'] sku: The resource model definition representing SKU
|
|
40
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
|
|
41
|
+
"""
|
|
42
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
43
|
+
if commitment_plan_name is not None:
|
|
44
|
+
pulumi.set(__self__, "commitment_plan_name", commitment_plan_name)
|
|
45
|
+
if kind is not None:
|
|
46
|
+
pulumi.set(__self__, "kind", kind)
|
|
47
|
+
if location is not None:
|
|
48
|
+
pulumi.set(__self__, "location", location)
|
|
49
|
+
if properties is not None:
|
|
50
|
+
pulumi.set(__self__, "properties", properties)
|
|
51
|
+
if sku is not None:
|
|
52
|
+
pulumi.set(__self__, "sku", sku)
|
|
53
|
+
if tags is not None:
|
|
54
|
+
pulumi.set(__self__, "tags", tags)
|
|
55
|
+
|
|
56
|
+
@property
|
|
57
|
+
@pulumi.getter(name="resourceGroupName")
|
|
58
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
59
|
+
"""
|
|
60
|
+
The name of the resource group. The name is case insensitive.
|
|
61
|
+
"""
|
|
62
|
+
return pulumi.get(self, "resource_group_name")
|
|
63
|
+
|
|
64
|
+
@resource_group_name.setter
|
|
65
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
66
|
+
pulumi.set(self, "resource_group_name", value)
|
|
67
|
+
|
|
68
|
+
@property
|
|
69
|
+
@pulumi.getter(name="commitmentPlanName")
|
|
70
|
+
def commitment_plan_name(self) -> Optional[pulumi.Input[str]]:
|
|
71
|
+
"""
|
|
72
|
+
The name of the commitmentPlan associated with the Cognitive Services Account
|
|
73
|
+
"""
|
|
74
|
+
return pulumi.get(self, "commitment_plan_name")
|
|
75
|
+
|
|
76
|
+
@commitment_plan_name.setter
|
|
77
|
+
def commitment_plan_name(self, value: Optional[pulumi.Input[str]]):
|
|
78
|
+
pulumi.set(self, "commitment_plan_name", value)
|
|
79
|
+
|
|
80
|
+
@property
|
|
81
|
+
@pulumi.getter
|
|
82
|
+
def kind(self) -> Optional[pulumi.Input[str]]:
|
|
83
|
+
"""
|
|
84
|
+
The Kind of the resource.
|
|
85
|
+
"""
|
|
86
|
+
return pulumi.get(self, "kind")
|
|
87
|
+
|
|
88
|
+
@kind.setter
|
|
89
|
+
def kind(self, value: Optional[pulumi.Input[str]]):
|
|
90
|
+
pulumi.set(self, "kind", value)
|
|
91
|
+
|
|
92
|
+
@property
|
|
93
|
+
@pulumi.getter
|
|
94
|
+
def location(self) -> Optional[pulumi.Input[str]]:
|
|
95
|
+
"""
|
|
96
|
+
The geo-location where the resource lives
|
|
97
|
+
"""
|
|
98
|
+
return pulumi.get(self, "location")
|
|
99
|
+
|
|
100
|
+
@location.setter
|
|
101
|
+
def location(self, value: Optional[pulumi.Input[str]]):
|
|
102
|
+
pulumi.set(self, "location", value)
|
|
103
|
+
|
|
104
|
+
@property
|
|
105
|
+
@pulumi.getter
|
|
106
|
+
def properties(self) -> Optional[pulumi.Input['CommitmentPlanPropertiesArgs']]:
|
|
107
|
+
"""
|
|
108
|
+
Properties of Cognitive Services account commitment plan.
|
|
109
|
+
"""
|
|
110
|
+
return pulumi.get(self, "properties")
|
|
111
|
+
|
|
112
|
+
@properties.setter
|
|
113
|
+
def properties(self, value: Optional[pulumi.Input['CommitmentPlanPropertiesArgs']]):
|
|
114
|
+
pulumi.set(self, "properties", value)
|
|
115
|
+
|
|
116
|
+
@property
|
|
117
|
+
@pulumi.getter
|
|
118
|
+
def sku(self) -> Optional[pulumi.Input['SkuArgs']]:
|
|
119
|
+
"""
|
|
120
|
+
The resource model definition representing SKU
|
|
121
|
+
"""
|
|
122
|
+
return pulumi.get(self, "sku")
|
|
123
|
+
|
|
124
|
+
@sku.setter
|
|
125
|
+
def sku(self, value: Optional[pulumi.Input['SkuArgs']]):
|
|
126
|
+
pulumi.set(self, "sku", value)
|
|
127
|
+
|
|
128
|
+
@property
|
|
129
|
+
@pulumi.getter
|
|
130
|
+
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
131
|
+
"""
|
|
132
|
+
Resource tags.
|
|
133
|
+
"""
|
|
134
|
+
return pulumi.get(self, "tags")
|
|
135
|
+
|
|
136
|
+
@tags.setter
|
|
137
|
+
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
138
|
+
pulumi.set(self, "tags", value)
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
class SharedCommitmentPlan(pulumi.CustomResource):
|
|
142
|
+
@overload
|
|
143
|
+
def __init__(__self__,
|
|
144
|
+
resource_name: str,
|
|
145
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
146
|
+
commitment_plan_name: Optional[pulumi.Input[str]] = None,
|
|
147
|
+
kind: Optional[pulumi.Input[str]] = None,
|
|
148
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
149
|
+
properties: Optional[pulumi.Input[Union['CommitmentPlanPropertiesArgs', 'CommitmentPlanPropertiesArgsDict']]] = None,
|
|
150
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
151
|
+
sku: Optional[pulumi.Input[Union['SkuArgs', 'SkuArgsDict']]] = None,
|
|
152
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
153
|
+
__props__=None):
|
|
154
|
+
"""
|
|
155
|
+
Cognitive Services account commitment plan.
|
|
156
|
+
|
|
157
|
+
:param str resource_name: The name of the resource.
|
|
158
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
159
|
+
:param pulumi.Input[str] commitment_plan_name: The name of the commitmentPlan associated with the Cognitive Services Account
|
|
160
|
+
:param pulumi.Input[str] kind: The Kind of the resource.
|
|
161
|
+
:param pulumi.Input[str] location: The geo-location where the resource lives
|
|
162
|
+
:param pulumi.Input[Union['CommitmentPlanPropertiesArgs', 'CommitmentPlanPropertiesArgsDict']] properties: Properties of Cognitive Services account commitment plan.
|
|
163
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
164
|
+
:param pulumi.Input[Union['SkuArgs', 'SkuArgsDict']] sku: The resource model definition representing SKU
|
|
165
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
|
|
166
|
+
"""
|
|
167
|
+
...
|
|
168
|
+
@overload
|
|
169
|
+
def __init__(__self__,
|
|
170
|
+
resource_name: str,
|
|
171
|
+
args: SharedCommitmentPlanArgs,
|
|
172
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
173
|
+
"""
|
|
174
|
+
Cognitive Services account commitment plan.
|
|
175
|
+
|
|
176
|
+
:param str resource_name: The name of the resource.
|
|
177
|
+
:param SharedCommitmentPlanArgs args: The arguments to use to populate this resource's properties.
|
|
178
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
179
|
+
"""
|
|
180
|
+
...
|
|
181
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
182
|
+
resource_args, opts = _utilities.get_resource_args_opts(SharedCommitmentPlanArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
183
|
+
if resource_args is not None:
|
|
184
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
185
|
+
else:
|
|
186
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
187
|
+
|
|
188
|
+
def _internal_init(__self__,
|
|
189
|
+
resource_name: str,
|
|
190
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
191
|
+
commitment_plan_name: Optional[pulumi.Input[str]] = None,
|
|
192
|
+
kind: Optional[pulumi.Input[str]] = None,
|
|
193
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
194
|
+
properties: Optional[pulumi.Input[Union['CommitmentPlanPropertiesArgs', 'CommitmentPlanPropertiesArgsDict']]] = None,
|
|
195
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
196
|
+
sku: Optional[pulumi.Input[Union['SkuArgs', 'SkuArgsDict']]] = None,
|
|
197
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
198
|
+
__props__=None):
|
|
199
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
200
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
201
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
202
|
+
if opts.id is None:
|
|
203
|
+
if __props__ is not None:
|
|
204
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
205
|
+
__props__ = SharedCommitmentPlanArgs.__new__(SharedCommitmentPlanArgs)
|
|
206
|
+
|
|
207
|
+
__props__.__dict__["commitment_plan_name"] = commitment_plan_name
|
|
208
|
+
__props__.__dict__["kind"] = kind
|
|
209
|
+
__props__.__dict__["location"] = location
|
|
210
|
+
__props__.__dict__["properties"] = properties
|
|
211
|
+
if resource_group_name is None and not opts.urn:
|
|
212
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
213
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
214
|
+
__props__.__dict__["sku"] = sku
|
|
215
|
+
__props__.__dict__["tags"] = tags
|
|
216
|
+
__props__.__dict__["etag"] = None
|
|
217
|
+
__props__.__dict__["name"] = None
|
|
218
|
+
__props__.__dict__["system_data"] = None
|
|
219
|
+
__props__.__dict__["type"] = None
|
|
220
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:cognitiveservices:SharedCommitmentPlan"), pulumi.Alias(type_="azure-native:cognitiveservices/v20221201:SharedCommitmentPlan"), pulumi.Alias(type_="azure-native:cognitiveservices/v20230501:SharedCommitmentPlan"), pulumi.Alias(type_="azure-native:cognitiveservices/v20231001preview:SharedCommitmentPlan"), pulumi.Alias(type_="azure-native:cognitiveservices/v20240401preview:SharedCommitmentPlan"), pulumi.Alias(type_="azure-native:cognitiveservices/v20240601preview:SharedCommitmentPlan")])
|
|
221
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
222
|
+
super(SharedCommitmentPlan, __self__).__init__(
|
|
223
|
+
'azure-native:cognitiveservices/v20241001:SharedCommitmentPlan',
|
|
224
|
+
resource_name,
|
|
225
|
+
__props__,
|
|
226
|
+
opts)
|
|
227
|
+
|
|
228
|
+
@staticmethod
|
|
229
|
+
def get(resource_name: str,
|
|
230
|
+
id: pulumi.Input[str],
|
|
231
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'SharedCommitmentPlan':
|
|
232
|
+
"""
|
|
233
|
+
Get an existing SharedCommitmentPlan resource's state with the given name, id, and optional extra
|
|
234
|
+
properties used to qualify the lookup.
|
|
235
|
+
|
|
236
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
237
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
238
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
239
|
+
"""
|
|
240
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
241
|
+
|
|
242
|
+
__props__ = SharedCommitmentPlanArgs.__new__(SharedCommitmentPlanArgs)
|
|
243
|
+
|
|
244
|
+
__props__.__dict__["etag"] = None
|
|
245
|
+
__props__.__dict__["kind"] = None
|
|
246
|
+
__props__.__dict__["location"] = None
|
|
247
|
+
__props__.__dict__["name"] = None
|
|
248
|
+
__props__.__dict__["properties"] = None
|
|
249
|
+
__props__.__dict__["sku"] = None
|
|
250
|
+
__props__.__dict__["system_data"] = None
|
|
251
|
+
__props__.__dict__["tags"] = None
|
|
252
|
+
__props__.__dict__["type"] = None
|
|
253
|
+
return SharedCommitmentPlan(resource_name, opts=opts, __props__=__props__)
|
|
254
|
+
|
|
255
|
+
@property
|
|
256
|
+
@pulumi.getter
|
|
257
|
+
def etag(self) -> pulumi.Output[str]:
|
|
258
|
+
"""
|
|
259
|
+
Resource Etag.
|
|
260
|
+
"""
|
|
261
|
+
return pulumi.get(self, "etag")
|
|
262
|
+
|
|
263
|
+
@property
|
|
264
|
+
@pulumi.getter
|
|
265
|
+
def kind(self) -> pulumi.Output[Optional[str]]:
|
|
266
|
+
"""
|
|
267
|
+
The Kind of the resource.
|
|
268
|
+
"""
|
|
269
|
+
return pulumi.get(self, "kind")
|
|
270
|
+
|
|
271
|
+
@property
|
|
272
|
+
@pulumi.getter
|
|
273
|
+
def location(self) -> pulumi.Output[Optional[str]]:
|
|
274
|
+
"""
|
|
275
|
+
The geo-location where the resource lives
|
|
276
|
+
"""
|
|
277
|
+
return pulumi.get(self, "location")
|
|
278
|
+
|
|
279
|
+
@property
|
|
280
|
+
@pulumi.getter
|
|
281
|
+
def name(self) -> pulumi.Output[str]:
|
|
282
|
+
"""
|
|
283
|
+
The name of the resource
|
|
284
|
+
"""
|
|
285
|
+
return pulumi.get(self, "name")
|
|
286
|
+
|
|
287
|
+
@property
|
|
288
|
+
@pulumi.getter
|
|
289
|
+
def properties(self) -> pulumi.Output['outputs.CommitmentPlanPropertiesResponse']:
|
|
290
|
+
"""
|
|
291
|
+
Properties of Cognitive Services account commitment plan.
|
|
292
|
+
"""
|
|
293
|
+
return pulumi.get(self, "properties")
|
|
294
|
+
|
|
295
|
+
@property
|
|
296
|
+
@pulumi.getter
|
|
297
|
+
def sku(self) -> pulumi.Output[Optional['outputs.SkuResponse']]:
|
|
298
|
+
"""
|
|
299
|
+
The resource model definition representing SKU
|
|
300
|
+
"""
|
|
301
|
+
return pulumi.get(self, "sku")
|
|
302
|
+
|
|
303
|
+
@property
|
|
304
|
+
@pulumi.getter(name="systemData")
|
|
305
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
306
|
+
"""
|
|
307
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
308
|
+
"""
|
|
309
|
+
return pulumi.get(self, "system_data")
|
|
310
|
+
|
|
311
|
+
@property
|
|
312
|
+
@pulumi.getter
|
|
313
|
+
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
314
|
+
"""
|
|
315
|
+
Resource tags.
|
|
316
|
+
"""
|
|
317
|
+
return pulumi.get(self, "tags")
|
|
318
|
+
|
|
319
|
+
@property
|
|
320
|
+
@pulumi.getter
|
|
321
|
+
def type(self) -> pulumi.Output[str]:
|
|
322
|
+
"""
|
|
323
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
324
|
+
"""
|
|
325
|
+
return pulumi.get(self, "type")
|
|
326
|
+
|
|
@@ -154,7 +154,7 @@ class DiskDeleteOptionTypes(str, Enum):
|
|
|
154
154
|
|
|
155
155
|
class DiskDetachOptionTypes(str, Enum):
|
|
156
156
|
"""
|
|
157
|
-
Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: **ForceDetach.** detachOption: **ForceDetach** is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior.
|
|
157
|
+
Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: **ForceDetach.** detachOption: **ForceDetach** is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
|
|
158
158
|
"""
|
|
159
159
|
FORCE_DETACH = "ForceDetach"
|
|
160
160
|
|
|
@@ -793,7 +793,7 @@ if not MYPY:
|
|
|
793
793
|
"""
|
|
794
794
|
detach_option: NotRequired[pulumi.Input[Union[str, 'DiskDetachOptionTypes']]]
|
|
795
795
|
"""
|
|
796
|
-
Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: **ForceDetach.** detachOption: **ForceDetach** is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior.
|
|
796
|
+
Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: **ForceDetach.** detachOption: **ForceDetach** is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
|
|
797
797
|
"""
|
|
798
798
|
disk_size_gb: NotRequired[pulumi.Input[int]]
|
|
799
799
|
"""
|
|
@@ -852,7 +852,7 @@ class DataDiskArgs:
|
|
|
852
852
|
:param pulumi.Input[int] lun: Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
|
|
853
853
|
:param pulumi.Input['CachingTypes'] caching: Specifies the caching requirements. Possible values are: **None,** **ReadOnly,** **ReadWrite.** The defaulting behavior is: **None for Standard storage. ReadOnly for Premium storage.**
|
|
854
854
|
:param pulumi.Input[Union[str, 'DiskDeleteOptionTypes']] delete_option: Specifies whether data disk should be deleted or detached upon VM deletion. Possible values are: **Delete.** If this value is used, the data disk is deleted when VM is deleted. **Detach.** If this value is used, the data disk is retained after VM is deleted. The default value is set to **Detach**.
|
|
855
|
-
:param pulumi.Input[Union[str, 'DiskDetachOptionTypes']] detach_option: Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: **ForceDetach.** detachOption: **ForceDetach** is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior.
|
|
855
|
+
:param pulumi.Input[Union[str, 'DiskDetachOptionTypes']] detach_option: Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: **ForceDetach.** detachOption: **ForceDetach** is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
|
|
856
856
|
:param pulumi.Input[int] disk_size_gb: Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
|
|
857
857
|
:param pulumi.Input['VirtualHardDiskArgs'] image: The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
|
|
858
858
|
:param pulumi.Input['ManagedDiskParametersArgs'] managed_disk: The managed disk parameters.
|
|
@@ -939,7 +939,7 @@ class DataDiskArgs:
|
|
|
939
939
|
@pulumi.getter(name="detachOption")
|
|
940
940
|
def detach_option(self) -> Optional[pulumi.Input[Union[str, 'DiskDetachOptionTypes']]]:
|
|
941
941
|
"""
|
|
942
|
-
Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: **ForceDetach.** detachOption: **ForceDetach** is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior.
|
|
942
|
+
Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: **ForceDetach.** detachOption: **ForceDetach** is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
|
|
943
943
|
"""
|
|
944
944
|
return pulumi.get(self, "detach_option")
|
|
945
945
|
|
|
@@ -1228,7 +1228,7 @@ class DataDiskResponse(dict):
|
|
|
1228
1228
|
:param int lun: Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
|
|
1229
1229
|
:param str caching: Specifies the caching requirements. Possible values are: **None,** **ReadOnly,** **ReadWrite.** The defaulting behavior is: **None for Standard storage. ReadOnly for Premium storage.**
|
|
1230
1230
|
:param str delete_option: Specifies whether data disk should be deleted or detached upon VM deletion. Possible values are: **Delete.** If this value is used, the data disk is deleted when VM is deleted. **Detach.** If this value is used, the data disk is retained after VM is deleted. The default value is set to **Detach**.
|
|
1231
|
-
:param str detach_option: Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: **ForceDetach.** detachOption: **ForceDetach** is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior.
|
|
1231
|
+
:param str detach_option: Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: **ForceDetach.** detachOption: **ForceDetach** is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
|
|
1232
1232
|
:param int disk_size_gb: Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.
|
|
1233
1233
|
:param 'VirtualHardDiskResponse' image: The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
|
|
1234
1234
|
:param 'ManagedDiskParametersResponse' managed_disk: The managed disk parameters.
|
|
@@ -1317,7 +1317,7 @@ class DataDiskResponse(dict):
|
|
|
1317
1317
|
@pulumi.getter(name="detachOption")
|
|
1318
1318
|
def detach_option(self) -> Optional[str]:
|
|
1319
1319
|
"""
|
|
1320
|
-
Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: **ForceDetach.** detachOption: **ForceDetach** is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior.
|
|
1320
|
+
Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: **ForceDetach.** detachOption: **ForceDetach** is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.
|
|
1321
1321
|
"""
|
|
1322
1322
|
return pulumi.get(self, "detach_option")
|
|
1323
1323
|
|
|
@@ -299,6 +299,14 @@ if not MYPY:
|
|
|
299
299
|
"""
|
|
300
300
|
CCF Property for the subject name to include in the node certificate. Default: CN=CCF Node.
|
|
301
301
|
"""
|
|
302
|
+
worker_threads: NotRequired[pulumi.Input[int]]
|
|
303
|
+
"""
|
|
304
|
+
Number of additional threads processing incoming client requests in the enclave (modify with care!)
|
|
305
|
+
"""
|
|
306
|
+
write_lb_address_prefix: NotRequired[pulumi.Input[str]]
|
|
307
|
+
"""
|
|
308
|
+
Prefix for the write load balancer. Example: write
|
|
309
|
+
"""
|
|
302
310
|
elif False:
|
|
303
311
|
LedgerPropertiesArgsDict: TypeAlias = Mapping[str, Any]
|
|
304
312
|
|
|
@@ -313,7 +321,9 @@ class LedgerPropertiesArgs:
|
|
|
313
321
|
max_body_size_in_mb: Optional[pulumi.Input[int]] = None,
|
|
314
322
|
node_count: Optional[pulumi.Input[int]] = None,
|
|
315
323
|
running_state: Optional[pulumi.Input[Union[str, 'RunningState']]] = None,
|
|
316
|
-
subject_name: Optional[pulumi.Input[str]] = None
|
|
324
|
+
subject_name: Optional[pulumi.Input[str]] = None,
|
|
325
|
+
worker_threads: Optional[pulumi.Input[int]] = None,
|
|
326
|
+
write_lb_address_prefix: Optional[pulumi.Input[str]] = None):
|
|
317
327
|
"""
|
|
318
328
|
Additional Confidential Ledger properties.
|
|
319
329
|
:param pulumi.Input[Sequence[pulumi.Input['AADBasedSecurityPrincipalArgs']]] aad_based_security_principals: Array of all AAD based Security Principals.
|
|
@@ -325,6 +335,8 @@ class LedgerPropertiesArgs:
|
|
|
325
335
|
:param pulumi.Input[int] node_count: Number of CCF nodes in the ACC Ledger.
|
|
326
336
|
:param pulumi.Input[Union[str, 'RunningState']] running_state: Object representing RunningState for Ledger.
|
|
327
337
|
:param pulumi.Input[str] subject_name: CCF Property for the subject name to include in the node certificate. Default: CN=CCF Node.
|
|
338
|
+
:param pulumi.Input[int] worker_threads: Number of additional threads processing incoming client requests in the enclave (modify with care!)
|
|
339
|
+
:param pulumi.Input[str] write_lb_address_prefix: Prefix for the write load balancer. Example: write
|
|
328
340
|
"""
|
|
329
341
|
if aad_based_security_principals is not None:
|
|
330
342
|
pulumi.set(__self__, "aad_based_security_principals", aad_based_security_principals)
|
|
@@ -344,6 +356,10 @@ class LedgerPropertiesArgs:
|
|
|
344
356
|
pulumi.set(__self__, "running_state", running_state)
|
|
345
357
|
if subject_name is not None:
|
|
346
358
|
pulumi.set(__self__, "subject_name", subject_name)
|
|
359
|
+
if worker_threads is not None:
|
|
360
|
+
pulumi.set(__self__, "worker_threads", worker_threads)
|
|
361
|
+
if write_lb_address_prefix is not None:
|
|
362
|
+
pulumi.set(__self__, "write_lb_address_prefix", write_lb_address_prefix)
|
|
347
363
|
|
|
348
364
|
@property
|
|
349
365
|
@pulumi.getter(name="aadBasedSecurityPrincipals")
|
|
@@ -453,6 +469,30 @@ class LedgerPropertiesArgs:
|
|
|
453
469
|
def subject_name(self, value: Optional[pulumi.Input[str]]):
|
|
454
470
|
pulumi.set(self, "subject_name", value)
|
|
455
471
|
|
|
472
|
+
@property
|
|
473
|
+
@pulumi.getter(name="workerThreads")
|
|
474
|
+
def worker_threads(self) -> Optional[pulumi.Input[int]]:
|
|
475
|
+
"""
|
|
476
|
+
Number of additional threads processing incoming client requests in the enclave (modify with care!)
|
|
477
|
+
"""
|
|
478
|
+
return pulumi.get(self, "worker_threads")
|
|
479
|
+
|
|
480
|
+
@worker_threads.setter
|
|
481
|
+
def worker_threads(self, value: Optional[pulumi.Input[int]]):
|
|
482
|
+
pulumi.set(self, "worker_threads", value)
|
|
483
|
+
|
|
484
|
+
@property
|
|
485
|
+
@pulumi.getter(name="writeLBAddressPrefix")
|
|
486
|
+
def write_lb_address_prefix(self) -> Optional[pulumi.Input[str]]:
|
|
487
|
+
"""
|
|
488
|
+
Prefix for the write load balancer. Example: write
|
|
489
|
+
"""
|
|
490
|
+
return pulumi.get(self, "write_lb_address_prefix")
|
|
491
|
+
|
|
492
|
+
@write_lb_address_prefix.setter
|
|
493
|
+
def write_lb_address_prefix(self, value: Optional[pulumi.Input[str]]):
|
|
494
|
+
pulumi.set(self, "write_lb_address_prefix", value)
|
|
495
|
+
|
|
456
496
|
|
|
457
497
|
if not MYPY:
|
|
458
498
|
class ManagedCCFPropertiesArgsDict(TypedDict):
|
|
@@ -260,6 +260,10 @@ class LedgerPropertiesResponse(dict):
|
|
|
260
260
|
suggest = "running_state"
|
|
261
261
|
elif key == "subjectName":
|
|
262
262
|
suggest = "subject_name"
|
|
263
|
+
elif key == "workerThreads":
|
|
264
|
+
suggest = "worker_threads"
|
|
265
|
+
elif key == "writeLBAddressPrefix":
|
|
266
|
+
suggest = "write_lb_address_prefix"
|
|
263
267
|
|
|
264
268
|
if suggest:
|
|
265
269
|
pulumi.log.warn(f"Key '{key}' not found in LedgerPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -286,7 +290,9 @@ class LedgerPropertiesResponse(dict):
|
|
|
286
290
|
max_body_size_in_mb: Optional[int] = None,
|
|
287
291
|
node_count: Optional[int] = None,
|
|
288
292
|
running_state: Optional[str] = None,
|
|
289
|
-
subject_name: Optional[str] = None
|
|
293
|
+
subject_name: Optional[str] = None,
|
|
294
|
+
worker_threads: Optional[int] = None,
|
|
295
|
+
write_lb_address_prefix: Optional[str] = None):
|
|
290
296
|
"""
|
|
291
297
|
Additional Confidential Ledger properties.
|
|
292
298
|
:param str identity_service_uri: Endpoint for accessing network identity.
|
|
@@ -303,6 +309,8 @@ class LedgerPropertiesResponse(dict):
|
|
|
303
309
|
:param int node_count: Number of CCF nodes in the ACC Ledger.
|
|
304
310
|
:param str running_state: Object representing RunningState for Ledger.
|
|
305
311
|
:param str subject_name: CCF Property for the subject name to include in the node certificate. Default: CN=CCF Node.
|
|
312
|
+
:param int worker_threads: Number of additional threads processing incoming client requests in the enclave (modify with care!)
|
|
313
|
+
:param str write_lb_address_prefix: Prefix for the write load balancer. Example: write
|
|
306
314
|
"""
|
|
307
315
|
pulumi.set(__self__, "identity_service_uri", identity_service_uri)
|
|
308
316
|
pulumi.set(__self__, "ledger_internal_namespace", ledger_internal_namespace)
|
|
@@ -327,6 +335,10 @@ class LedgerPropertiesResponse(dict):
|
|
|
327
335
|
pulumi.set(__self__, "running_state", running_state)
|
|
328
336
|
if subject_name is not None:
|
|
329
337
|
pulumi.set(__self__, "subject_name", subject_name)
|
|
338
|
+
if worker_threads is not None:
|
|
339
|
+
pulumi.set(__self__, "worker_threads", worker_threads)
|
|
340
|
+
if write_lb_address_prefix is not None:
|
|
341
|
+
pulumi.set(__self__, "write_lb_address_prefix", write_lb_address_prefix)
|
|
330
342
|
|
|
331
343
|
@property
|
|
332
344
|
@pulumi.getter(name="identityServiceUri")
|
|
@@ -440,6 +452,22 @@ class LedgerPropertiesResponse(dict):
|
|
|
440
452
|
"""
|
|
441
453
|
return pulumi.get(self, "subject_name")
|
|
442
454
|
|
|
455
|
+
@property
|
|
456
|
+
@pulumi.getter(name="workerThreads")
|
|
457
|
+
def worker_threads(self) -> Optional[int]:
|
|
458
|
+
"""
|
|
459
|
+
Number of additional threads processing incoming client requests in the enclave (modify with care!)
|
|
460
|
+
"""
|
|
461
|
+
return pulumi.get(self, "worker_threads")
|
|
462
|
+
|
|
463
|
+
@property
|
|
464
|
+
@pulumi.getter(name="writeLBAddressPrefix")
|
|
465
|
+
def write_lb_address_prefix(self) -> Optional[str]:
|
|
466
|
+
"""
|
|
467
|
+
Prefix for the write load balancer. Example: write
|
|
468
|
+
"""
|
|
469
|
+
return pulumi.get(self, "write_lb_address_prefix")
|
|
470
|
+
|
|
443
471
|
|
|
444
472
|
@pulumi.output_type
|
|
445
473
|
class ManagedCCFPropertiesResponse(dict):
|
|
@@ -7,10 +7,12 @@ import typing
|
|
|
7
7
|
# Export this package's modules as members:
|
|
8
8
|
from ._enums import *
|
|
9
9
|
from .agent_pool import *
|
|
10
|
+
from .auto_upgrade_profile import *
|
|
10
11
|
from .fleet import *
|
|
11
12
|
from .fleet_member import *
|
|
12
13
|
from .fleet_update_strategy import *
|
|
13
14
|
from .get_agent_pool import *
|
|
15
|
+
from .get_auto_upgrade_profile import *
|
|
14
16
|
from .get_fleet import *
|
|
15
17
|
from .get_fleet_member import *
|
|
16
18
|
from .get_fleet_update_strategy import *
|
|
@@ -120,6 +122,8 @@ if typing.TYPE_CHECKING:
|
|
|
120
122
|
v20240701 = __v20240701
|
|
121
123
|
import pulumi_azure_native.containerservice.v20240702preview as __v20240702preview
|
|
122
124
|
v20240702preview = __v20240702preview
|
|
125
|
+
import pulumi_azure_native.containerservice.v20240801 as __v20240801
|
|
126
|
+
v20240801 = __v20240801
|
|
123
127
|
else:
|
|
124
128
|
v20190601 = _utilities.lazy_import('pulumi_azure_native.containerservice.v20190601')
|
|
125
129
|
v20191027preview = _utilities.lazy_import('pulumi_azure_native.containerservice.v20191027preview')
|
|
@@ -160,4 +164,5 @@ else:
|
|
|
160
164
|
v20240602preview = _utilities.lazy_import('pulumi_azure_native.containerservice.v20240602preview')
|
|
161
165
|
v20240701 = _utilities.lazy_import('pulumi_azure_native.containerservice.v20240701')
|
|
162
166
|
v20240702preview = _utilities.lazy_import('pulumi_azure_native.containerservice.v20240702preview')
|
|
167
|
+
v20240801 = _utilities.lazy_import('pulumi_azure_native.containerservice.v20240801')
|
|
163
168
|
|
|
@@ -7,6 +7,7 @@ from enum import Enum
|
|
|
7
7
|
__all__ = [
|
|
8
8
|
'AgentPoolMode',
|
|
9
9
|
'AgentPoolType',
|
|
10
|
+
'AutoUpgradeNodeImageSelectionType',
|
|
10
11
|
'Code',
|
|
11
12
|
'ConnectionStatus',
|
|
12
13
|
'Expander',
|
|
@@ -73,6 +74,20 @@ class AgentPoolType(str, Enum):
|
|
|
73
74
|
"""
|
|
74
75
|
|
|
75
76
|
|
|
77
|
+
class AutoUpgradeNodeImageSelectionType(str, Enum):
|
|
78
|
+
"""
|
|
79
|
+
The node image upgrade type.
|
|
80
|
+
"""
|
|
81
|
+
LATEST = "Latest"
|
|
82
|
+
"""
|
|
83
|
+
Use the latest image version when upgrading nodes. Clusters may use different image versions (e.g., 'AKSUbuntu-1804gen2containerd-2021.10.12' and 'AKSUbuntu-1804gen2containerd-2021.10.19') because, for example, the latest available version is different in different regions.
|
|
84
|
+
"""
|
|
85
|
+
CONSISTENT = "Consistent"
|
|
86
|
+
"""
|
|
87
|
+
The image versions to upgrade nodes to are selected as described below: for each node pool in managed clusters affected by the update run, the system selects the latest image version such that it is available across all other node pools (in all other clusters) of the same image type. As a result, all node pools of the same image type will be upgraded to the same image version. For example, if the latest image version for image type 'AKSUbuntu-1804gen2containerd' is 'AKSUbuntu-1804gen2containerd-2021.10.12' for a node pool in cluster A in region X, and is 'AKSUbuntu-1804gen2containerd-2021.10.17' for a node pool in cluster B in region Y, the system will upgrade both node pools to image version 'AKSUbuntu-1804gen2containerd-2021.10.12'.
|
|
88
|
+
"""
|
|
89
|
+
|
|
90
|
+
|
|
76
91
|
class Code(str, Enum):
|
|
77
92
|
"""
|
|
78
93
|
Tells whether the cluster is Running or Stopped
|
|
@@ -18,6 +18,8 @@ from ._enums import *
|
|
|
18
18
|
__all__ = [
|
|
19
19
|
'AgentPoolUpgradeSettingsArgs',
|
|
20
20
|
'AgentPoolUpgradeSettingsArgsDict',
|
|
21
|
+
'AutoUpgradeNodeImageSelectionArgs',
|
|
22
|
+
'AutoUpgradeNodeImageSelectionArgsDict',
|
|
21
23
|
'AzureKeyVaultKmsArgs',
|
|
22
24
|
'AzureKeyVaultKmsArgsDict',
|
|
23
25
|
'ContainerServiceLinuxProfileArgs',
|
|
@@ -204,6 +206,41 @@ class AgentPoolUpgradeSettingsArgs:
|
|
|
204
206
|
pulumi.set(self, "max_surge", value)
|
|
205
207
|
|
|
206
208
|
|
|
209
|
+
if not MYPY:
|
|
210
|
+
class AutoUpgradeNodeImageSelectionArgsDict(TypedDict):
|
|
211
|
+
"""
|
|
212
|
+
The node image upgrade to be applied to the target clusters in auto upgrade.
|
|
213
|
+
"""
|
|
214
|
+
type: pulumi.Input[Union[str, 'AutoUpgradeNodeImageSelectionType']]
|
|
215
|
+
"""
|
|
216
|
+
The node image upgrade type.
|
|
217
|
+
"""
|
|
218
|
+
elif False:
|
|
219
|
+
AutoUpgradeNodeImageSelectionArgsDict: TypeAlias = Mapping[str, Any]
|
|
220
|
+
|
|
221
|
+
@pulumi.input_type
|
|
222
|
+
class AutoUpgradeNodeImageSelectionArgs:
|
|
223
|
+
def __init__(__self__, *,
|
|
224
|
+
type: pulumi.Input[Union[str, 'AutoUpgradeNodeImageSelectionType']]):
|
|
225
|
+
"""
|
|
226
|
+
The node image upgrade to be applied to the target clusters in auto upgrade.
|
|
227
|
+
:param pulumi.Input[Union[str, 'AutoUpgradeNodeImageSelectionType']] type: The node image upgrade type.
|
|
228
|
+
"""
|
|
229
|
+
pulumi.set(__self__, "type", type)
|
|
230
|
+
|
|
231
|
+
@property
|
|
232
|
+
@pulumi.getter
|
|
233
|
+
def type(self) -> pulumi.Input[Union[str, 'AutoUpgradeNodeImageSelectionType']]:
|
|
234
|
+
"""
|
|
235
|
+
The node image upgrade type.
|
|
236
|
+
"""
|
|
237
|
+
return pulumi.get(self, "type")
|
|
238
|
+
|
|
239
|
+
@type.setter
|
|
240
|
+
def type(self, value: pulumi.Input[Union[str, 'AutoUpgradeNodeImageSelectionType']]):
|
|
241
|
+
pulumi.set(self, "type", value)
|
|
242
|
+
|
|
243
|
+
|
|
207
244
|
if not MYPY:
|
|
208
245
|
class AzureKeyVaultKmsArgsDict(TypedDict):
|
|
209
246
|
"""
|