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
|
@@ -17,6 +17,7 @@ from . import outputs
|
|
|
17
17
|
from ._enums import *
|
|
18
18
|
|
|
19
19
|
__all__ = [
|
|
20
|
+
'APIServerAccessProfileResponse',
|
|
20
21
|
'AbsoluteMonthlyScheduleResponse',
|
|
21
22
|
'AdvancedNetworkingObservabilityResponse',
|
|
22
23
|
'AdvancedNetworkingResponse',
|
|
@@ -27,7 +28,9 @@ __all__ = [
|
|
|
27
28
|
'AgentPoolSecurityProfileResponse',
|
|
28
29
|
'AgentPoolUpgradeSettingsResponse',
|
|
29
30
|
'AgentPoolWindowsProfileResponse',
|
|
31
|
+
'AgentProfileResponse',
|
|
30
32
|
'AutoScaleProfileResponse',
|
|
33
|
+
'AutoUpgradeNodeImageSelectionResponse',
|
|
31
34
|
'AzureKeyVaultKmsResponse',
|
|
32
35
|
'ClusterUpgradeSettingsResponse',
|
|
33
36
|
'ContainerServiceLinuxProfileResponse',
|
|
@@ -41,7 +44,11 @@ __all__ = [
|
|
|
41
44
|
'DailyScheduleResponse',
|
|
42
45
|
'DateSpanResponse',
|
|
43
46
|
'DelegatedResourceResponse',
|
|
47
|
+
'ErrorAdditionalInfoResponse',
|
|
48
|
+
'ErrorDetailResponse',
|
|
44
49
|
'ExtendedLocationResponse',
|
|
50
|
+
'FleetCredentialResultResponse',
|
|
51
|
+
'FleetHubProfileResponse',
|
|
45
52
|
'IPTagResponse',
|
|
46
53
|
'IstioCertificateAuthorityResponse',
|
|
47
54
|
'IstioComponentsResponse',
|
|
@@ -109,12 +116,19 @@ __all__ = [
|
|
|
109
116
|
'ManagedClusterStorageProfileFileCSIDriverResponse',
|
|
110
117
|
'ManagedClusterStorageProfileResponse',
|
|
111
118
|
'ManagedClusterStorageProfileSnapshotControllerResponse',
|
|
119
|
+
'ManagedClusterUpdateResponse',
|
|
120
|
+
'ManagedClusterUpgradeSpecResponse',
|
|
112
121
|
'ManagedClusterWindowsProfileResponse',
|
|
113
122
|
'ManagedClusterWorkloadAutoScalerProfileKedaResponse',
|
|
114
123
|
'ManagedClusterWorkloadAutoScalerProfileResponse',
|
|
115
124
|
'ManagedClusterWorkloadAutoScalerProfileVerticalPodAutoscalerResponse',
|
|
125
|
+
'ManagedServiceIdentityResponse',
|
|
116
126
|
'ManualScaleProfileResponse',
|
|
127
|
+
'MemberUpdateStatusResponse',
|
|
117
128
|
'NetworkProfileForSnapshotResponse',
|
|
129
|
+
'NodeImageSelectionResponse',
|
|
130
|
+
'NodeImageSelectionStatusResponse',
|
|
131
|
+
'NodeImageVersionResponse',
|
|
118
132
|
'PortRangeResponse',
|
|
119
133
|
'PowerStateResponse',
|
|
120
134
|
'PrivateEndpointResponse',
|
|
@@ -130,14 +144,90 @@ __all__ = [
|
|
|
130
144
|
'SystemDataResponse',
|
|
131
145
|
'TimeInWeekResponse',
|
|
132
146
|
'TimeSpanResponse',
|
|
147
|
+
'UpdateGroupResponse',
|
|
148
|
+
'UpdateGroupStatusResponse',
|
|
149
|
+
'UpdateRunStatusResponse',
|
|
150
|
+
'UpdateRunStrategyResponse',
|
|
151
|
+
'UpdateStageResponse',
|
|
152
|
+
'UpdateStageStatusResponse',
|
|
153
|
+
'UpdateStatusResponse',
|
|
133
154
|
'UpgradeOverrideSettingsResponse',
|
|
134
155
|
'UserAssignedIdentityResponse',
|
|
135
156
|
'VirtualMachineNodesResponse',
|
|
136
157
|
'VirtualMachinesProfileResponse',
|
|
158
|
+
'WaitStatusResponse',
|
|
137
159
|
'WeeklyScheduleResponse',
|
|
138
160
|
'WindowsGmsaProfileResponse',
|
|
139
161
|
]
|
|
140
162
|
|
|
163
|
+
@pulumi.output_type
|
|
164
|
+
class APIServerAccessProfileResponse(dict):
|
|
165
|
+
"""
|
|
166
|
+
Access profile for the Fleet hub API server.
|
|
167
|
+
"""
|
|
168
|
+
@staticmethod
|
|
169
|
+
def __key_warning(key: str):
|
|
170
|
+
suggest = None
|
|
171
|
+
if key == "enablePrivateCluster":
|
|
172
|
+
suggest = "enable_private_cluster"
|
|
173
|
+
elif key == "enableVnetIntegration":
|
|
174
|
+
suggest = "enable_vnet_integration"
|
|
175
|
+
elif key == "subnetId":
|
|
176
|
+
suggest = "subnet_id"
|
|
177
|
+
|
|
178
|
+
if suggest:
|
|
179
|
+
pulumi.log.warn(f"Key '{key}' not found in APIServerAccessProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
180
|
+
|
|
181
|
+
def __getitem__(self, key: str) -> Any:
|
|
182
|
+
APIServerAccessProfileResponse.__key_warning(key)
|
|
183
|
+
return super().__getitem__(key)
|
|
184
|
+
|
|
185
|
+
def get(self, key: str, default = None) -> Any:
|
|
186
|
+
APIServerAccessProfileResponse.__key_warning(key)
|
|
187
|
+
return super().get(key, default)
|
|
188
|
+
|
|
189
|
+
def __init__(__self__, *,
|
|
190
|
+
enable_private_cluster: Optional[bool] = None,
|
|
191
|
+
enable_vnet_integration: Optional[bool] = None,
|
|
192
|
+
subnet_id: Optional[str] = None):
|
|
193
|
+
"""
|
|
194
|
+
Access profile for the Fleet hub API server.
|
|
195
|
+
:param bool enable_private_cluster: Whether to create the Fleet hub as a private cluster or not.
|
|
196
|
+
:param bool enable_vnet_integration: Whether to enable apiserver vnet integration for the Fleet hub or not.
|
|
197
|
+
:param str subnet_id: The subnet to be used when apiserver vnet integration is enabled. It is required when creating a new Fleet with BYO vnet.
|
|
198
|
+
"""
|
|
199
|
+
if enable_private_cluster is not None:
|
|
200
|
+
pulumi.set(__self__, "enable_private_cluster", enable_private_cluster)
|
|
201
|
+
if enable_vnet_integration is not None:
|
|
202
|
+
pulumi.set(__self__, "enable_vnet_integration", enable_vnet_integration)
|
|
203
|
+
if subnet_id is not None:
|
|
204
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
|
205
|
+
|
|
206
|
+
@property
|
|
207
|
+
@pulumi.getter(name="enablePrivateCluster")
|
|
208
|
+
def enable_private_cluster(self) -> Optional[bool]:
|
|
209
|
+
"""
|
|
210
|
+
Whether to create the Fleet hub as a private cluster or not.
|
|
211
|
+
"""
|
|
212
|
+
return pulumi.get(self, "enable_private_cluster")
|
|
213
|
+
|
|
214
|
+
@property
|
|
215
|
+
@pulumi.getter(name="enableVnetIntegration")
|
|
216
|
+
def enable_vnet_integration(self) -> Optional[bool]:
|
|
217
|
+
"""
|
|
218
|
+
Whether to enable apiserver vnet integration for the Fleet hub or not.
|
|
219
|
+
"""
|
|
220
|
+
return pulumi.get(self, "enable_vnet_integration")
|
|
221
|
+
|
|
222
|
+
@property
|
|
223
|
+
@pulumi.getter(name="subnetId")
|
|
224
|
+
def subnet_id(self) -> Optional[str]:
|
|
225
|
+
"""
|
|
226
|
+
The subnet to be used when apiserver vnet integration is enabled. It is required when creating a new Fleet with BYO vnet.
|
|
227
|
+
"""
|
|
228
|
+
return pulumi.get(self, "subnet_id")
|
|
229
|
+
|
|
230
|
+
|
|
141
231
|
@pulumi.output_type
|
|
142
232
|
class AbsoluteMonthlyScheduleResponse(dict):
|
|
143
233
|
"""
|
|
@@ -591,6 +681,60 @@ class AgentPoolWindowsProfileResponse(dict):
|
|
|
591
681
|
return pulumi.get(self, "disable_outbound_nat")
|
|
592
682
|
|
|
593
683
|
|
|
684
|
+
@pulumi.output_type
|
|
685
|
+
class AgentProfileResponse(dict):
|
|
686
|
+
"""
|
|
687
|
+
Agent profile for the Fleet hub.
|
|
688
|
+
"""
|
|
689
|
+
@staticmethod
|
|
690
|
+
def __key_warning(key: str):
|
|
691
|
+
suggest = None
|
|
692
|
+
if key == "subnetId":
|
|
693
|
+
suggest = "subnet_id"
|
|
694
|
+
elif key == "vmSize":
|
|
695
|
+
suggest = "vm_size"
|
|
696
|
+
|
|
697
|
+
if suggest:
|
|
698
|
+
pulumi.log.warn(f"Key '{key}' not found in AgentProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
699
|
+
|
|
700
|
+
def __getitem__(self, key: str) -> Any:
|
|
701
|
+
AgentProfileResponse.__key_warning(key)
|
|
702
|
+
return super().__getitem__(key)
|
|
703
|
+
|
|
704
|
+
def get(self, key: str, default = None) -> Any:
|
|
705
|
+
AgentProfileResponse.__key_warning(key)
|
|
706
|
+
return super().get(key, default)
|
|
707
|
+
|
|
708
|
+
def __init__(__self__, *,
|
|
709
|
+
subnet_id: Optional[str] = None,
|
|
710
|
+
vm_size: Optional[str] = None):
|
|
711
|
+
"""
|
|
712
|
+
Agent profile for the Fleet hub.
|
|
713
|
+
:param str subnet_id: The ID of the subnet which the Fleet hub node will join on startup. If this is not specified, a vnet and subnet will be generated and used.
|
|
714
|
+
:param str vm_size: The virtual machine size of the Fleet hub.
|
|
715
|
+
"""
|
|
716
|
+
if subnet_id is not None:
|
|
717
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
|
718
|
+
if vm_size is not None:
|
|
719
|
+
pulumi.set(__self__, "vm_size", vm_size)
|
|
720
|
+
|
|
721
|
+
@property
|
|
722
|
+
@pulumi.getter(name="subnetId")
|
|
723
|
+
def subnet_id(self) -> Optional[str]:
|
|
724
|
+
"""
|
|
725
|
+
The ID of the subnet which the Fleet hub node will join on startup. If this is not specified, a vnet and subnet will be generated and used.
|
|
726
|
+
"""
|
|
727
|
+
return pulumi.get(self, "subnet_id")
|
|
728
|
+
|
|
729
|
+
@property
|
|
730
|
+
@pulumi.getter(name="vmSize")
|
|
731
|
+
def vm_size(self) -> Optional[str]:
|
|
732
|
+
"""
|
|
733
|
+
The virtual machine size of the Fleet hub.
|
|
734
|
+
"""
|
|
735
|
+
return pulumi.get(self, "vm_size")
|
|
736
|
+
|
|
737
|
+
|
|
594
738
|
@pulumi.output_type
|
|
595
739
|
class AutoScaleProfileResponse(dict):
|
|
596
740
|
"""
|
|
@@ -657,6 +801,28 @@ class AutoScaleProfileResponse(dict):
|
|
|
657
801
|
return pulumi.get(self, "sizes")
|
|
658
802
|
|
|
659
803
|
|
|
804
|
+
@pulumi.output_type
|
|
805
|
+
class AutoUpgradeNodeImageSelectionResponse(dict):
|
|
806
|
+
"""
|
|
807
|
+
The node image upgrade to be applied to the target clusters in auto upgrade.
|
|
808
|
+
"""
|
|
809
|
+
def __init__(__self__, *,
|
|
810
|
+
type: str):
|
|
811
|
+
"""
|
|
812
|
+
The node image upgrade to be applied to the target clusters in auto upgrade.
|
|
813
|
+
:param str type: The node image upgrade type.
|
|
814
|
+
"""
|
|
815
|
+
pulumi.set(__self__, "type", type)
|
|
816
|
+
|
|
817
|
+
@property
|
|
818
|
+
@pulumi.getter
|
|
819
|
+
def type(self) -> str:
|
|
820
|
+
"""
|
|
821
|
+
The node image upgrade type.
|
|
822
|
+
"""
|
|
823
|
+
return pulumi.get(self, "type")
|
|
824
|
+
|
|
825
|
+
|
|
660
826
|
@pulumi.output_type
|
|
661
827
|
class AzureKeyVaultKmsResponse(dict):
|
|
662
828
|
"""
|
|
@@ -1576,6 +1742,122 @@ class DelegatedResourceResponse(dict):
|
|
|
1576
1742
|
return pulumi.get(self, "tenant_id")
|
|
1577
1743
|
|
|
1578
1744
|
|
|
1745
|
+
@pulumi.output_type
|
|
1746
|
+
class ErrorAdditionalInfoResponse(dict):
|
|
1747
|
+
"""
|
|
1748
|
+
The resource management error additional info.
|
|
1749
|
+
"""
|
|
1750
|
+
def __init__(__self__, *,
|
|
1751
|
+
info: Any,
|
|
1752
|
+
type: str):
|
|
1753
|
+
"""
|
|
1754
|
+
The resource management error additional info.
|
|
1755
|
+
:param Any info: The additional info.
|
|
1756
|
+
:param str type: The additional info type.
|
|
1757
|
+
"""
|
|
1758
|
+
pulumi.set(__self__, "info", info)
|
|
1759
|
+
pulumi.set(__self__, "type", type)
|
|
1760
|
+
|
|
1761
|
+
@property
|
|
1762
|
+
@pulumi.getter
|
|
1763
|
+
def info(self) -> Any:
|
|
1764
|
+
"""
|
|
1765
|
+
The additional info.
|
|
1766
|
+
"""
|
|
1767
|
+
return pulumi.get(self, "info")
|
|
1768
|
+
|
|
1769
|
+
@property
|
|
1770
|
+
@pulumi.getter
|
|
1771
|
+
def type(self) -> str:
|
|
1772
|
+
"""
|
|
1773
|
+
The additional info type.
|
|
1774
|
+
"""
|
|
1775
|
+
return pulumi.get(self, "type")
|
|
1776
|
+
|
|
1777
|
+
|
|
1778
|
+
@pulumi.output_type
|
|
1779
|
+
class ErrorDetailResponse(dict):
|
|
1780
|
+
"""
|
|
1781
|
+
The error detail.
|
|
1782
|
+
"""
|
|
1783
|
+
@staticmethod
|
|
1784
|
+
def __key_warning(key: str):
|
|
1785
|
+
suggest = None
|
|
1786
|
+
if key == "additionalInfo":
|
|
1787
|
+
suggest = "additional_info"
|
|
1788
|
+
|
|
1789
|
+
if suggest:
|
|
1790
|
+
pulumi.log.warn(f"Key '{key}' not found in ErrorDetailResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1791
|
+
|
|
1792
|
+
def __getitem__(self, key: str) -> Any:
|
|
1793
|
+
ErrorDetailResponse.__key_warning(key)
|
|
1794
|
+
return super().__getitem__(key)
|
|
1795
|
+
|
|
1796
|
+
def get(self, key: str, default = None) -> Any:
|
|
1797
|
+
ErrorDetailResponse.__key_warning(key)
|
|
1798
|
+
return super().get(key, default)
|
|
1799
|
+
|
|
1800
|
+
def __init__(__self__, *,
|
|
1801
|
+
additional_info: Sequence['outputs.ErrorAdditionalInfoResponse'],
|
|
1802
|
+
code: str,
|
|
1803
|
+
details: Sequence['outputs.ErrorDetailResponse'],
|
|
1804
|
+
message: str,
|
|
1805
|
+
target: str):
|
|
1806
|
+
"""
|
|
1807
|
+
The error detail.
|
|
1808
|
+
:param Sequence['ErrorAdditionalInfoResponse'] additional_info: The error additional info.
|
|
1809
|
+
:param str code: The error code.
|
|
1810
|
+
:param Sequence['ErrorDetailResponse'] details: The error details.
|
|
1811
|
+
:param str message: The error message.
|
|
1812
|
+
:param str target: The error target.
|
|
1813
|
+
"""
|
|
1814
|
+
pulumi.set(__self__, "additional_info", additional_info)
|
|
1815
|
+
pulumi.set(__self__, "code", code)
|
|
1816
|
+
pulumi.set(__self__, "details", details)
|
|
1817
|
+
pulumi.set(__self__, "message", message)
|
|
1818
|
+
pulumi.set(__self__, "target", target)
|
|
1819
|
+
|
|
1820
|
+
@property
|
|
1821
|
+
@pulumi.getter(name="additionalInfo")
|
|
1822
|
+
def additional_info(self) -> Sequence['outputs.ErrorAdditionalInfoResponse']:
|
|
1823
|
+
"""
|
|
1824
|
+
The error additional info.
|
|
1825
|
+
"""
|
|
1826
|
+
return pulumi.get(self, "additional_info")
|
|
1827
|
+
|
|
1828
|
+
@property
|
|
1829
|
+
@pulumi.getter
|
|
1830
|
+
def code(self) -> str:
|
|
1831
|
+
"""
|
|
1832
|
+
The error code.
|
|
1833
|
+
"""
|
|
1834
|
+
return pulumi.get(self, "code")
|
|
1835
|
+
|
|
1836
|
+
@property
|
|
1837
|
+
@pulumi.getter
|
|
1838
|
+
def details(self) -> Sequence['outputs.ErrorDetailResponse']:
|
|
1839
|
+
"""
|
|
1840
|
+
The error details.
|
|
1841
|
+
"""
|
|
1842
|
+
return pulumi.get(self, "details")
|
|
1843
|
+
|
|
1844
|
+
@property
|
|
1845
|
+
@pulumi.getter
|
|
1846
|
+
def message(self) -> str:
|
|
1847
|
+
"""
|
|
1848
|
+
The error message.
|
|
1849
|
+
"""
|
|
1850
|
+
return pulumi.get(self, "message")
|
|
1851
|
+
|
|
1852
|
+
@property
|
|
1853
|
+
@pulumi.getter
|
|
1854
|
+
def target(self) -> str:
|
|
1855
|
+
"""
|
|
1856
|
+
The error target.
|
|
1857
|
+
"""
|
|
1858
|
+
return pulumi.get(self, "target")
|
|
1859
|
+
|
|
1860
|
+
|
|
1579
1861
|
@pulumi.output_type
|
|
1580
1862
|
class ExtendedLocationResponse(dict):
|
|
1581
1863
|
"""
|
|
@@ -1611,6 +1893,144 @@ class ExtendedLocationResponse(dict):
|
|
|
1611
1893
|
return pulumi.get(self, "type")
|
|
1612
1894
|
|
|
1613
1895
|
|
|
1896
|
+
@pulumi.output_type
|
|
1897
|
+
class FleetCredentialResultResponse(dict):
|
|
1898
|
+
"""
|
|
1899
|
+
One credential result item.
|
|
1900
|
+
"""
|
|
1901
|
+
def __init__(__self__, *,
|
|
1902
|
+
name: str,
|
|
1903
|
+
value: str):
|
|
1904
|
+
"""
|
|
1905
|
+
One credential result item.
|
|
1906
|
+
:param str name: The name of the credential.
|
|
1907
|
+
:param str value: Base64-encoded Kubernetes configuration file.
|
|
1908
|
+
"""
|
|
1909
|
+
pulumi.set(__self__, "name", name)
|
|
1910
|
+
pulumi.set(__self__, "value", value)
|
|
1911
|
+
|
|
1912
|
+
@property
|
|
1913
|
+
@pulumi.getter
|
|
1914
|
+
def name(self) -> str:
|
|
1915
|
+
"""
|
|
1916
|
+
The name of the credential.
|
|
1917
|
+
"""
|
|
1918
|
+
return pulumi.get(self, "name")
|
|
1919
|
+
|
|
1920
|
+
@property
|
|
1921
|
+
@pulumi.getter
|
|
1922
|
+
def value(self) -> str:
|
|
1923
|
+
"""
|
|
1924
|
+
Base64-encoded Kubernetes configuration file.
|
|
1925
|
+
"""
|
|
1926
|
+
return pulumi.get(self, "value")
|
|
1927
|
+
|
|
1928
|
+
|
|
1929
|
+
@pulumi.output_type
|
|
1930
|
+
class FleetHubProfileResponse(dict):
|
|
1931
|
+
"""
|
|
1932
|
+
The FleetHubProfile configures the fleet hub.
|
|
1933
|
+
"""
|
|
1934
|
+
@staticmethod
|
|
1935
|
+
def __key_warning(key: str):
|
|
1936
|
+
suggest = None
|
|
1937
|
+
if key == "kubernetesVersion":
|
|
1938
|
+
suggest = "kubernetes_version"
|
|
1939
|
+
elif key == "portalFqdn":
|
|
1940
|
+
suggest = "portal_fqdn"
|
|
1941
|
+
elif key == "agentProfile":
|
|
1942
|
+
suggest = "agent_profile"
|
|
1943
|
+
elif key == "apiServerAccessProfile":
|
|
1944
|
+
suggest = "api_server_access_profile"
|
|
1945
|
+
elif key == "dnsPrefix":
|
|
1946
|
+
suggest = "dns_prefix"
|
|
1947
|
+
|
|
1948
|
+
if suggest:
|
|
1949
|
+
pulumi.log.warn(f"Key '{key}' not found in FleetHubProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1950
|
+
|
|
1951
|
+
def __getitem__(self, key: str) -> Any:
|
|
1952
|
+
FleetHubProfileResponse.__key_warning(key)
|
|
1953
|
+
return super().__getitem__(key)
|
|
1954
|
+
|
|
1955
|
+
def get(self, key: str, default = None) -> Any:
|
|
1956
|
+
FleetHubProfileResponse.__key_warning(key)
|
|
1957
|
+
return super().get(key, default)
|
|
1958
|
+
|
|
1959
|
+
def __init__(__self__, *,
|
|
1960
|
+
fqdn: str,
|
|
1961
|
+
kubernetes_version: str,
|
|
1962
|
+
portal_fqdn: str,
|
|
1963
|
+
agent_profile: Optional['outputs.AgentProfileResponse'] = None,
|
|
1964
|
+
api_server_access_profile: Optional['outputs.APIServerAccessProfileResponse'] = None,
|
|
1965
|
+
dns_prefix: Optional[str] = None):
|
|
1966
|
+
"""
|
|
1967
|
+
The FleetHubProfile configures the fleet hub.
|
|
1968
|
+
:param str fqdn: The FQDN of the Fleet hub.
|
|
1969
|
+
:param str kubernetes_version: The Kubernetes version of the Fleet hub.
|
|
1970
|
+
:param str portal_fqdn: The Azure Portal FQDN of the Fleet hub.
|
|
1971
|
+
:param 'AgentProfileResponse' agent_profile: The agent profile for the Fleet hub.
|
|
1972
|
+
:param 'APIServerAccessProfileResponse' api_server_access_profile: The access profile for the Fleet hub API server.
|
|
1973
|
+
:param str dns_prefix: DNS prefix used to create the FQDN for the Fleet hub.
|
|
1974
|
+
"""
|
|
1975
|
+
pulumi.set(__self__, "fqdn", fqdn)
|
|
1976
|
+
pulumi.set(__self__, "kubernetes_version", kubernetes_version)
|
|
1977
|
+
pulumi.set(__self__, "portal_fqdn", portal_fqdn)
|
|
1978
|
+
if agent_profile is not None:
|
|
1979
|
+
pulumi.set(__self__, "agent_profile", agent_profile)
|
|
1980
|
+
if api_server_access_profile is not None:
|
|
1981
|
+
pulumi.set(__self__, "api_server_access_profile", api_server_access_profile)
|
|
1982
|
+
if dns_prefix is not None:
|
|
1983
|
+
pulumi.set(__self__, "dns_prefix", dns_prefix)
|
|
1984
|
+
|
|
1985
|
+
@property
|
|
1986
|
+
@pulumi.getter
|
|
1987
|
+
def fqdn(self) -> str:
|
|
1988
|
+
"""
|
|
1989
|
+
The FQDN of the Fleet hub.
|
|
1990
|
+
"""
|
|
1991
|
+
return pulumi.get(self, "fqdn")
|
|
1992
|
+
|
|
1993
|
+
@property
|
|
1994
|
+
@pulumi.getter(name="kubernetesVersion")
|
|
1995
|
+
def kubernetes_version(self) -> str:
|
|
1996
|
+
"""
|
|
1997
|
+
The Kubernetes version of the Fleet hub.
|
|
1998
|
+
"""
|
|
1999
|
+
return pulumi.get(self, "kubernetes_version")
|
|
2000
|
+
|
|
2001
|
+
@property
|
|
2002
|
+
@pulumi.getter(name="portalFqdn")
|
|
2003
|
+
def portal_fqdn(self) -> str:
|
|
2004
|
+
"""
|
|
2005
|
+
The Azure Portal FQDN of the Fleet hub.
|
|
2006
|
+
"""
|
|
2007
|
+
return pulumi.get(self, "portal_fqdn")
|
|
2008
|
+
|
|
2009
|
+
@property
|
|
2010
|
+
@pulumi.getter(name="agentProfile")
|
|
2011
|
+
def agent_profile(self) -> Optional['outputs.AgentProfileResponse']:
|
|
2012
|
+
"""
|
|
2013
|
+
The agent profile for the Fleet hub.
|
|
2014
|
+
"""
|
|
2015
|
+
return pulumi.get(self, "agent_profile")
|
|
2016
|
+
|
|
2017
|
+
@property
|
|
2018
|
+
@pulumi.getter(name="apiServerAccessProfile")
|
|
2019
|
+
def api_server_access_profile(self) -> Optional['outputs.APIServerAccessProfileResponse']:
|
|
2020
|
+
"""
|
|
2021
|
+
The access profile for the Fleet hub API server.
|
|
2022
|
+
"""
|
|
2023
|
+
return pulumi.get(self, "api_server_access_profile")
|
|
2024
|
+
|
|
2025
|
+
@property
|
|
2026
|
+
@pulumi.getter(name="dnsPrefix")
|
|
2027
|
+
def dns_prefix(self) -> Optional[str]:
|
|
2028
|
+
"""
|
|
2029
|
+
DNS prefix used to create the FQDN for the Fleet hub.
|
|
2030
|
+
"""
|
|
2031
|
+
return pulumi.get(self, "dns_prefix")
|
|
2032
|
+
|
|
2033
|
+
|
|
1614
2034
|
@pulumi.output_type
|
|
1615
2035
|
class IPTagResponse(dict):
|
|
1616
2036
|
"""
|
|
@@ -6374,14 +6794,116 @@ class ManagedClusterStorageProfileSnapshotControllerResponse(dict):
|
|
|
6374
6794
|
|
|
6375
6795
|
|
|
6376
6796
|
@pulumi.output_type
|
|
6377
|
-
class
|
|
6797
|
+
class ManagedClusterUpdateResponse(dict):
|
|
6378
6798
|
"""
|
|
6379
|
-
|
|
6799
|
+
The update to be applied to the ManagedClusters.
|
|
6380
6800
|
"""
|
|
6381
6801
|
@staticmethod
|
|
6382
6802
|
def __key_warning(key: str):
|
|
6383
6803
|
suggest = None
|
|
6384
|
-
if key == "
|
|
6804
|
+
if key == "nodeImageSelection":
|
|
6805
|
+
suggest = "node_image_selection"
|
|
6806
|
+
|
|
6807
|
+
if suggest:
|
|
6808
|
+
pulumi.log.warn(f"Key '{key}' not found in ManagedClusterUpdateResponse. Access the value via the '{suggest}' property getter instead.")
|
|
6809
|
+
|
|
6810
|
+
def __getitem__(self, key: str) -> Any:
|
|
6811
|
+
ManagedClusterUpdateResponse.__key_warning(key)
|
|
6812
|
+
return super().__getitem__(key)
|
|
6813
|
+
|
|
6814
|
+
def get(self, key: str, default = None) -> Any:
|
|
6815
|
+
ManagedClusterUpdateResponse.__key_warning(key)
|
|
6816
|
+
return super().get(key, default)
|
|
6817
|
+
|
|
6818
|
+
def __init__(__self__, *,
|
|
6819
|
+
upgrade: 'outputs.ManagedClusterUpgradeSpecResponse',
|
|
6820
|
+
node_image_selection: Optional['outputs.NodeImageSelectionResponse'] = None):
|
|
6821
|
+
"""
|
|
6822
|
+
The update to be applied to the ManagedClusters.
|
|
6823
|
+
:param 'ManagedClusterUpgradeSpecResponse' upgrade: The upgrade to apply to the ManagedClusters.
|
|
6824
|
+
:param 'NodeImageSelectionResponse' node_image_selection: The node image upgrade to be applied to the target nodes in update run.
|
|
6825
|
+
"""
|
|
6826
|
+
pulumi.set(__self__, "upgrade", upgrade)
|
|
6827
|
+
if node_image_selection is not None:
|
|
6828
|
+
pulumi.set(__self__, "node_image_selection", node_image_selection)
|
|
6829
|
+
|
|
6830
|
+
@property
|
|
6831
|
+
@pulumi.getter
|
|
6832
|
+
def upgrade(self) -> 'outputs.ManagedClusterUpgradeSpecResponse':
|
|
6833
|
+
"""
|
|
6834
|
+
The upgrade to apply to the ManagedClusters.
|
|
6835
|
+
"""
|
|
6836
|
+
return pulumi.get(self, "upgrade")
|
|
6837
|
+
|
|
6838
|
+
@property
|
|
6839
|
+
@pulumi.getter(name="nodeImageSelection")
|
|
6840
|
+
def node_image_selection(self) -> Optional['outputs.NodeImageSelectionResponse']:
|
|
6841
|
+
"""
|
|
6842
|
+
The node image upgrade to be applied to the target nodes in update run.
|
|
6843
|
+
"""
|
|
6844
|
+
return pulumi.get(self, "node_image_selection")
|
|
6845
|
+
|
|
6846
|
+
|
|
6847
|
+
@pulumi.output_type
|
|
6848
|
+
class ManagedClusterUpgradeSpecResponse(dict):
|
|
6849
|
+
"""
|
|
6850
|
+
The upgrade to apply to a ManagedCluster.
|
|
6851
|
+
"""
|
|
6852
|
+
@staticmethod
|
|
6853
|
+
def __key_warning(key: str):
|
|
6854
|
+
suggest = None
|
|
6855
|
+
if key == "kubernetesVersion":
|
|
6856
|
+
suggest = "kubernetes_version"
|
|
6857
|
+
|
|
6858
|
+
if suggest:
|
|
6859
|
+
pulumi.log.warn(f"Key '{key}' not found in ManagedClusterUpgradeSpecResponse. Access the value via the '{suggest}' property getter instead.")
|
|
6860
|
+
|
|
6861
|
+
def __getitem__(self, key: str) -> Any:
|
|
6862
|
+
ManagedClusterUpgradeSpecResponse.__key_warning(key)
|
|
6863
|
+
return super().__getitem__(key)
|
|
6864
|
+
|
|
6865
|
+
def get(self, key: str, default = None) -> Any:
|
|
6866
|
+
ManagedClusterUpgradeSpecResponse.__key_warning(key)
|
|
6867
|
+
return super().get(key, default)
|
|
6868
|
+
|
|
6869
|
+
def __init__(__self__, *,
|
|
6870
|
+
type: str,
|
|
6871
|
+
kubernetes_version: Optional[str] = None):
|
|
6872
|
+
"""
|
|
6873
|
+
The upgrade to apply to a ManagedCluster.
|
|
6874
|
+
:param str type: ManagedClusterUpgradeType is the type of upgrade to be applied.
|
|
6875
|
+
:param str kubernetes_version: The Kubernetes version to upgrade the member clusters to.
|
|
6876
|
+
"""
|
|
6877
|
+
pulumi.set(__self__, "type", type)
|
|
6878
|
+
if kubernetes_version is not None:
|
|
6879
|
+
pulumi.set(__self__, "kubernetes_version", kubernetes_version)
|
|
6880
|
+
|
|
6881
|
+
@property
|
|
6882
|
+
@pulumi.getter
|
|
6883
|
+
def type(self) -> str:
|
|
6884
|
+
"""
|
|
6885
|
+
ManagedClusterUpgradeType is the type of upgrade to be applied.
|
|
6886
|
+
"""
|
|
6887
|
+
return pulumi.get(self, "type")
|
|
6888
|
+
|
|
6889
|
+
@property
|
|
6890
|
+
@pulumi.getter(name="kubernetesVersion")
|
|
6891
|
+
def kubernetes_version(self) -> Optional[str]:
|
|
6892
|
+
"""
|
|
6893
|
+
The Kubernetes version to upgrade the member clusters to.
|
|
6894
|
+
"""
|
|
6895
|
+
return pulumi.get(self, "kubernetes_version")
|
|
6896
|
+
|
|
6897
|
+
|
|
6898
|
+
@pulumi.output_type
|
|
6899
|
+
class ManagedClusterWindowsProfileResponse(dict):
|
|
6900
|
+
"""
|
|
6901
|
+
Profile for Windows VMs in the managed cluster.
|
|
6902
|
+
"""
|
|
6903
|
+
@staticmethod
|
|
6904
|
+
def __key_warning(key: str):
|
|
6905
|
+
suggest = None
|
|
6906
|
+
if key == "adminUsername":
|
|
6385
6907
|
suggest = "admin_username"
|
|
6386
6908
|
elif key == "adminPassword":
|
|
6387
6909
|
suggest = "admin_password"
|
|
@@ -6589,6 +7111,83 @@ class ManagedClusterWorkloadAutoScalerProfileVerticalPodAutoscalerResponse(dict)
|
|
|
6589
7111
|
return pulumi.get(self, "addon_autoscaling")
|
|
6590
7112
|
|
|
6591
7113
|
|
|
7114
|
+
@pulumi.output_type
|
|
7115
|
+
class ManagedServiceIdentityResponse(dict):
|
|
7116
|
+
"""
|
|
7117
|
+
Managed service identity (system assigned and/or user assigned identities)
|
|
7118
|
+
"""
|
|
7119
|
+
@staticmethod
|
|
7120
|
+
def __key_warning(key: str):
|
|
7121
|
+
suggest = None
|
|
7122
|
+
if key == "principalId":
|
|
7123
|
+
suggest = "principal_id"
|
|
7124
|
+
elif key == "tenantId":
|
|
7125
|
+
suggest = "tenant_id"
|
|
7126
|
+
elif key == "userAssignedIdentities":
|
|
7127
|
+
suggest = "user_assigned_identities"
|
|
7128
|
+
|
|
7129
|
+
if suggest:
|
|
7130
|
+
pulumi.log.warn(f"Key '{key}' not found in ManagedServiceIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
7131
|
+
|
|
7132
|
+
def __getitem__(self, key: str) -> Any:
|
|
7133
|
+
ManagedServiceIdentityResponse.__key_warning(key)
|
|
7134
|
+
return super().__getitem__(key)
|
|
7135
|
+
|
|
7136
|
+
def get(self, key: str, default = None) -> Any:
|
|
7137
|
+
ManagedServiceIdentityResponse.__key_warning(key)
|
|
7138
|
+
return super().get(key, default)
|
|
7139
|
+
|
|
7140
|
+
def __init__(__self__, *,
|
|
7141
|
+
principal_id: str,
|
|
7142
|
+
tenant_id: str,
|
|
7143
|
+
type: str,
|
|
7144
|
+
user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']] = None):
|
|
7145
|
+
"""
|
|
7146
|
+
Managed service identity (system assigned and/or user assigned identities)
|
|
7147
|
+
:param str principal_id: The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
|
|
7148
|
+
:param str tenant_id: The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
|
|
7149
|
+
:param str type: Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
|
|
7150
|
+
:param Mapping[str, 'UserAssignedIdentityResponse'] user_assigned_identities: The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
|
|
7151
|
+
"""
|
|
7152
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
7153
|
+
pulumi.set(__self__, "tenant_id", tenant_id)
|
|
7154
|
+
pulumi.set(__self__, "type", type)
|
|
7155
|
+
if user_assigned_identities is not None:
|
|
7156
|
+
pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
|
|
7157
|
+
|
|
7158
|
+
@property
|
|
7159
|
+
@pulumi.getter(name="principalId")
|
|
7160
|
+
def principal_id(self) -> str:
|
|
7161
|
+
"""
|
|
7162
|
+
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
|
|
7163
|
+
"""
|
|
7164
|
+
return pulumi.get(self, "principal_id")
|
|
7165
|
+
|
|
7166
|
+
@property
|
|
7167
|
+
@pulumi.getter(name="tenantId")
|
|
7168
|
+
def tenant_id(self) -> str:
|
|
7169
|
+
"""
|
|
7170
|
+
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
|
|
7171
|
+
"""
|
|
7172
|
+
return pulumi.get(self, "tenant_id")
|
|
7173
|
+
|
|
7174
|
+
@property
|
|
7175
|
+
@pulumi.getter
|
|
7176
|
+
def type(self) -> str:
|
|
7177
|
+
"""
|
|
7178
|
+
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
|
|
7179
|
+
"""
|
|
7180
|
+
return pulumi.get(self, "type")
|
|
7181
|
+
|
|
7182
|
+
@property
|
|
7183
|
+
@pulumi.getter(name="userAssignedIdentities")
|
|
7184
|
+
def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']]:
|
|
7185
|
+
"""
|
|
7186
|
+
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
|
|
7187
|
+
"""
|
|
7188
|
+
return pulumi.get(self, "user_assigned_identities")
|
|
7189
|
+
|
|
7190
|
+
|
|
6592
7191
|
@pulumi.output_type
|
|
6593
7192
|
class ManualScaleProfileResponse(dict):
|
|
6594
7193
|
"""
|
|
@@ -6624,6 +7223,91 @@ class ManualScaleProfileResponse(dict):
|
|
|
6624
7223
|
return pulumi.get(self, "sizes")
|
|
6625
7224
|
|
|
6626
7225
|
|
|
7226
|
+
@pulumi.output_type
|
|
7227
|
+
class MemberUpdateStatusResponse(dict):
|
|
7228
|
+
"""
|
|
7229
|
+
The status of a member update operation.
|
|
7230
|
+
"""
|
|
7231
|
+
@staticmethod
|
|
7232
|
+
def __key_warning(key: str):
|
|
7233
|
+
suggest = None
|
|
7234
|
+
if key == "clusterResourceId":
|
|
7235
|
+
suggest = "cluster_resource_id"
|
|
7236
|
+
elif key == "operationId":
|
|
7237
|
+
suggest = "operation_id"
|
|
7238
|
+
|
|
7239
|
+
if suggest:
|
|
7240
|
+
pulumi.log.warn(f"Key '{key}' not found in MemberUpdateStatusResponse. Access the value via the '{suggest}' property getter instead.")
|
|
7241
|
+
|
|
7242
|
+
def __getitem__(self, key: str) -> Any:
|
|
7243
|
+
MemberUpdateStatusResponse.__key_warning(key)
|
|
7244
|
+
return super().__getitem__(key)
|
|
7245
|
+
|
|
7246
|
+
def get(self, key: str, default = None) -> Any:
|
|
7247
|
+
MemberUpdateStatusResponse.__key_warning(key)
|
|
7248
|
+
return super().get(key, default)
|
|
7249
|
+
|
|
7250
|
+
def __init__(__self__, *,
|
|
7251
|
+
cluster_resource_id: str,
|
|
7252
|
+
message: str,
|
|
7253
|
+
name: str,
|
|
7254
|
+
operation_id: str,
|
|
7255
|
+
status: 'outputs.UpdateStatusResponse'):
|
|
7256
|
+
"""
|
|
7257
|
+
The status of a member update operation.
|
|
7258
|
+
:param str cluster_resource_id: The Azure resource id of the target Kubernetes cluster.
|
|
7259
|
+
:param str message: The status message after processing the member update operation.
|
|
7260
|
+
:param str name: The name of the FleetMember.
|
|
7261
|
+
:param str operation_id: The operation resource id of the latest attempt to perform the operation.
|
|
7262
|
+
:param 'UpdateStatusResponse' status: The status of the MemberUpdate operation.
|
|
7263
|
+
"""
|
|
7264
|
+
pulumi.set(__self__, "cluster_resource_id", cluster_resource_id)
|
|
7265
|
+
pulumi.set(__self__, "message", message)
|
|
7266
|
+
pulumi.set(__self__, "name", name)
|
|
7267
|
+
pulumi.set(__self__, "operation_id", operation_id)
|
|
7268
|
+
pulumi.set(__self__, "status", status)
|
|
7269
|
+
|
|
7270
|
+
@property
|
|
7271
|
+
@pulumi.getter(name="clusterResourceId")
|
|
7272
|
+
def cluster_resource_id(self) -> str:
|
|
7273
|
+
"""
|
|
7274
|
+
The Azure resource id of the target Kubernetes cluster.
|
|
7275
|
+
"""
|
|
7276
|
+
return pulumi.get(self, "cluster_resource_id")
|
|
7277
|
+
|
|
7278
|
+
@property
|
|
7279
|
+
@pulumi.getter
|
|
7280
|
+
def message(self) -> str:
|
|
7281
|
+
"""
|
|
7282
|
+
The status message after processing the member update operation.
|
|
7283
|
+
"""
|
|
7284
|
+
return pulumi.get(self, "message")
|
|
7285
|
+
|
|
7286
|
+
@property
|
|
7287
|
+
@pulumi.getter
|
|
7288
|
+
def name(self) -> str:
|
|
7289
|
+
"""
|
|
7290
|
+
The name of the FleetMember.
|
|
7291
|
+
"""
|
|
7292
|
+
return pulumi.get(self, "name")
|
|
7293
|
+
|
|
7294
|
+
@property
|
|
7295
|
+
@pulumi.getter(name="operationId")
|
|
7296
|
+
def operation_id(self) -> str:
|
|
7297
|
+
"""
|
|
7298
|
+
The operation resource id of the latest attempt to perform the operation.
|
|
7299
|
+
"""
|
|
7300
|
+
return pulumi.get(self, "operation_id")
|
|
7301
|
+
|
|
7302
|
+
@property
|
|
7303
|
+
@pulumi.getter
|
|
7304
|
+
def status(self) -> 'outputs.UpdateStatusResponse':
|
|
7305
|
+
"""
|
|
7306
|
+
The status of the MemberUpdate operation.
|
|
7307
|
+
"""
|
|
7308
|
+
return pulumi.get(self, "status")
|
|
7309
|
+
|
|
7310
|
+
|
|
6627
7311
|
@pulumi.output_type
|
|
6628
7312
|
class NetworkProfileForSnapshotResponse(dict):
|
|
6629
7313
|
"""
|
|
@@ -6720,6 +7404,118 @@ class NetworkProfileForSnapshotResponse(dict):
|
|
|
6720
7404
|
return pulumi.get(self, "network_policy")
|
|
6721
7405
|
|
|
6722
7406
|
|
|
7407
|
+
@pulumi.output_type
|
|
7408
|
+
class NodeImageSelectionResponse(dict):
|
|
7409
|
+
"""
|
|
7410
|
+
The node image upgrade to be applied to the target nodes in update run.
|
|
7411
|
+
"""
|
|
7412
|
+
@staticmethod
|
|
7413
|
+
def __key_warning(key: str):
|
|
7414
|
+
suggest = None
|
|
7415
|
+
if key == "customNodeImageVersions":
|
|
7416
|
+
suggest = "custom_node_image_versions"
|
|
7417
|
+
|
|
7418
|
+
if suggest:
|
|
7419
|
+
pulumi.log.warn(f"Key '{key}' not found in NodeImageSelectionResponse. Access the value via the '{suggest}' property getter instead.")
|
|
7420
|
+
|
|
7421
|
+
def __getitem__(self, key: str) -> Any:
|
|
7422
|
+
NodeImageSelectionResponse.__key_warning(key)
|
|
7423
|
+
return super().__getitem__(key)
|
|
7424
|
+
|
|
7425
|
+
def get(self, key: str, default = None) -> Any:
|
|
7426
|
+
NodeImageSelectionResponse.__key_warning(key)
|
|
7427
|
+
return super().get(key, default)
|
|
7428
|
+
|
|
7429
|
+
def __init__(__self__, *,
|
|
7430
|
+
type: str,
|
|
7431
|
+
custom_node_image_versions: Optional[Sequence['outputs.NodeImageVersionResponse']] = None):
|
|
7432
|
+
"""
|
|
7433
|
+
The node image upgrade to be applied to the target nodes in update run.
|
|
7434
|
+
:param str type: The node image upgrade type.
|
|
7435
|
+
:param Sequence['NodeImageVersionResponse'] custom_node_image_versions: Custom node image versions to upgrade the nodes to. This field is required if node image selection type is Custom. Otherwise, it must be empty. For each node image family (e.g., 'AKSUbuntu-1804gen2containerd'), this field can contain at most one version (e.g., only one of 'AKSUbuntu-1804gen2containerd-2023.01.12' or 'AKSUbuntu-1804gen2containerd-2023.02.12', not both). If the nodes belong to a family without a matching image version in this field, they are not upgraded.
|
|
7436
|
+
"""
|
|
7437
|
+
pulumi.set(__self__, "type", type)
|
|
7438
|
+
if custom_node_image_versions is not None:
|
|
7439
|
+
pulumi.set(__self__, "custom_node_image_versions", custom_node_image_versions)
|
|
7440
|
+
|
|
7441
|
+
@property
|
|
7442
|
+
@pulumi.getter
|
|
7443
|
+
def type(self) -> str:
|
|
7444
|
+
"""
|
|
7445
|
+
The node image upgrade type.
|
|
7446
|
+
"""
|
|
7447
|
+
return pulumi.get(self, "type")
|
|
7448
|
+
|
|
7449
|
+
@property
|
|
7450
|
+
@pulumi.getter(name="customNodeImageVersions")
|
|
7451
|
+
def custom_node_image_versions(self) -> Optional[Sequence['outputs.NodeImageVersionResponse']]:
|
|
7452
|
+
"""
|
|
7453
|
+
Custom node image versions to upgrade the nodes to. This field is required if node image selection type is Custom. Otherwise, it must be empty. For each node image family (e.g., 'AKSUbuntu-1804gen2containerd'), this field can contain at most one version (e.g., only one of 'AKSUbuntu-1804gen2containerd-2023.01.12' or 'AKSUbuntu-1804gen2containerd-2023.02.12', not both). If the nodes belong to a family without a matching image version in this field, they are not upgraded.
|
|
7454
|
+
"""
|
|
7455
|
+
return pulumi.get(self, "custom_node_image_versions")
|
|
7456
|
+
|
|
7457
|
+
|
|
7458
|
+
@pulumi.output_type
|
|
7459
|
+
class NodeImageSelectionStatusResponse(dict):
|
|
7460
|
+
"""
|
|
7461
|
+
The node image upgrade specs for the update run.
|
|
7462
|
+
"""
|
|
7463
|
+
@staticmethod
|
|
7464
|
+
def __key_warning(key: str):
|
|
7465
|
+
suggest = None
|
|
7466
|
+
if key == "selectedNodeImageVersions":
|
|
7467
|
+
suggest = "selected_node_image_versions"
|
|
7468
|
+
|
|
7469
|
+
if suggest:
|
|
7470
|
+
pulumi.log.warn(f"Key '{key}' not found in NodeImageSelectionStatusResponse. Access the value via the '{suggest}' property getter instead.")
|
|
7471
|
+
|
|
7472
|
+
def __getitem__(self, key: str) -> Any:
|
|
7473
|
+
NodeImageSelectionStatusResponse.__key_warning(key)
|
|
7474
|
+
return super().__getitem__(key)
|
|
7475
|
+
|
|
7476
|
+
def get(self, key: str, default = None) -> Any:
|
|
7477
|
+
NodeImageSelectionStatusResponse.__key_warning(key)
|
|
7478
|
+
return super().get(key, default)
|
|
7479
|
+
|
|
7480
|
+
def __init__(__self__, *,
|
|
7481
|
+
selected_node_image_versions: Sequence['outputs.NodeImageVersionResponse']):
|
|
7482
|
+
"""
|
|
7483
|
+
The node image upgrade specs for the update run.
|
|
7484
|
+
:param Sequence['NodeImageVersionResponse'] selected_node_image_versions: The image versions to upgrade the nodes to.
|
|
7485
|
+
"""
|
|
7486
|
+
pulumi.set(__self__, "selected_node_image_versions", selected_node_image_versions)
|
|
7487
|
+
|
|
7488
|
+
@property
|
|
7489
|
+
@pulumi.getter(name="selectedNodeImageVersions")
|
|
7490
|
+
def selected_node_image_versions(self) -> Sequence['outputs.NodeImageVersionResponse']:
|
|
7491
|
+
"""
|
|
7492
|
+
The image versions to upgrade the nodes to.
|
|
7493
|
+
"""
|
|
7494
|
+
return pulumi.get(self, "selected_node_image_versions")
|
|
7495
|
+
|
|
7496
|
+
|
|
7497
|
+
@pulumi.output_type
|
|
7498
|
+
class NodeImageVersionResponse(dict):
|
|
7499
|
+
"""
|
|
7500
|
+
The node upgrade image version.
|
|
7501
|
+
"""
|
|
7502
|
+
def __init__(__self__, *,
|
|
7503
|
+
version: str):
|
|
7504
|
+
"""
|
|
7505
|
+
The node upgrade image version.
|
|
7506
|
+
:param str version: The image version to upgrade the nodes to (e.g., 'AKSUbuntu-1804gen2containerd-2022.12.13').
|
|
7507
|
+
"""
|
|
7508
|
+
pulumi.set(__self__, "version", version)
|
|
7509
|
+
|
|
7510
|
+
@property
|
|
7511
|
+
@pulumi.getter
|
|
7512
|
+
def version(self) -> str:
|
|
7513
|
+
"""
|
|
7514
|
+
The image version to upgrade the nodes to (e.g., 'AKSUbuntu-1804gen2containerd-2022.12.13').
|
|
7515
|
+
"""
|
|
7516
|
+
return pulumi.get(self, "version")
|
|
7517
|
+
|
|
7518
|
+
|
|
6723
7519
|
@pulumi.output_type
|
|
6724
7520
|
class PortRangeResponse(dict):
|
|
6725
7521
|
"""
|
|
@@ -7896,6 +8692,378 @@ class TimeSpanResponse(dict):
|
|
|
7896
8692
|
return pulumi.get(self, "start")
|
|
7897
8693
|
|
|
7898
8694
|
|
|
8695
|
+
@pulumi.output_type
|
|
8696
|
+
class UpdateGroupResponse(dict):
|
|
8697
|
+
"""
|
|
8698
|
+
A group to be updated.
|
|
8699
|
+
"""
|
|
8700
|
+
def __init__(__self__, *,
|
|
8701
|
+
name: str):
|
|
8702
|
+
"""
|
|
8703
|
+
A group to be updated.
|
|
8704
|
+
:param str name: Name of the group.
|
|
8705
|
+
It must match a group name of an existing fleet member.
|
|
8706
|
+
"""
|
|
8707
|
+
pulumi.set(__self__, "name", name)
|
|
8708
|
+
|
|
8709
|
+
@property
|
|
8710
|
+
@pulumi.getter
|
|
8711
|
+
def name(self) -> str:
|
|
8712
|
+
"""
|
|
8713
|
+
Name of the group.
|
|
8714
|
+
It must match a group name of an existing fleet member.
|
|
8715
|
+
"""
|
|
8716
|
+
return pulumi.get(self, "name")
|
|
8717
|
+
|
|
8718
|
+
|
|
8719
|
+
@pulumi.output_type
|
|
8720
|
+
class UpdateGroupStatusResponse(dict):
|
|
8721
|
+
"""
|
|
8722
|
+
The status of a UpdateGroup.
|
|
8723
|
+
"""
|
|
8724
|
+
def __init__(__self__, *,
|
|
8725
|
+
members: Sequence['outputs.MemberUpdateStatusResponse'],
|
|
8726
|
+
name: str,
|
|
8727
|
+
status: 'outputs.UpdateStatusResponse'):
|
|
8728
|
+
"""
|
|
8729
|
+
The status of a UpdateGroup.
|
|
8730
|
+
:param Sequence['MemberUpdateStatusResponse'] members: The list of member this UpdateGroup updates.
|
|
8731
|
+
:param str name: The name of the UpdateGroup.
|
|
8732
|
+
:param 'UpdateStatusResponse' status: The status of the UpdateGroup.
|
|
8733
|
+
"""
|
|
8734
|
+
pulumi.set(__self__, "members", members)
|
|
8735
|
+
pulumi.set(__self__, "name", name)
|
|
8736
|
+
pulumi.set(__self__, "status", status)
|
|
8737
|
+
|
|
8738
|
+
@property
|
|
8739
|
+
@pulumi.getter
|
|
8740
|
+
def members(self) -> Sequence['outputs.MemberUpdateStatusResponse']:
|
|
8741
|
+
"""
|
|
8742
|
+
The list of member this UpdateGroup updates.
|
|
8743
|
+
"""
|
|
8744
|
+
return pulumi.get(self, "members")
|
|
8745
|
+
|
|
8746
|
+
@property
|
|
8747
|
+
@pulumi.getter
|
|
8748
|
+
def name(self) -> str:
|
|
8749
|
+
"""
|
|
8750
|
+
The name of the UpdateGroup.
|
|
8751
|
+
"""
|
|
8752
|
+
return pulumi.get(self, "name")
|
|
8753
|
+
|
|
8754
|
+
@property
|
|
8755
|
+
@pulumi.getter
|
|
8756
|
+
def status(self) -> 'outputs.UpdateStatusResponse':
|
|
8757
|
+
"""
|
|
8758
|
+
The status of the UpdateGroup.
|
|
8759
|
+
"""
|
|
8760
|
+
return pulumi.get(self, "status")
|
|
8761
|
+
|
|
8762
|
+
|
|
8763
|
+
@pulumi.output_type
|
|
8764
|
+
class UpdateRunStatusResponse(dict):
|
|
8765
|
+
"""
|
|
8766
|
+
The status of a UpdateRun.
|
|
8767
|
+
"""
|
|
8768
|
+
@staticmethod
|
|
8769
|
+
def __key_warning(key: str):
|
|
8770
|
+
suggest = None
|
|
8771
|
+
if key == "nodeImageSelection":
|
|
8772
|
+
suggest = "node_image_selection"
|
|
8773
|
+
|
|
8774
|
+
if suggest:
|
|
8775
|
+
pulumi.log.warn(f"Key '{key}' not found in UpdateRunStatusResponse. Access the value via the '{suggest}' property getter instead.")
|
|
8776
|
+
|
|
8777
|
+
def __getitem__(self, key: str) -> Any:
|
|
8778
|
+
UpdateRunStatusResponse.__key_warning(key)
|
|
8779
|
+
return super().__getitem__(key)
|
|
8780
|
+
|
|
8781
|
+
def get(self, key: str, default = None) -> Any:
|
|
8782
|
+
UpdateRunStatusResponse.__key_warning(key)
|
|
8783
|
+
return super().get(key, default)
|
|
8784
|
+
|
|
8785
|
+
def __init__(__self__, *,
|
|
8786
|
+
node_image_selection: 'outputs.NodeImageSelectionStatusResponse',
|
|
8787
|
+
stages: Sequence['outputs.UpdateStageStatusResponse'],
|
|
8788
|
+
status: 'outputs.UpdateStatusResponse'):
|
|
8789
|
+
"""
|
|
8790
|
+
The status of a UpdateRun.
|
|
8791
|
+
:param 'NodeImageSelectionStatusResponse' node_image_selection: The node image upgrade specs for the update run. It is only set in update run when `NodeImageSelection.type` is `Consistent`.
|
|
8792
|
+
:param Sequence['UpdateStageStatusResponse'] stages: The stages composing an update run. Stages are run sequentially withing an UpdateRun.
|
|
8793
|
+
:param 'UpdateStatusResponse' status: The status of the UpdateRun.
|
|
8794
|
+
"""
|
|
8795
|
+
pulumi.set(__self__, "node_image_selection", node_image_selection)
|
|
8796
|
+
pulumi.set(__self__, "stages", stages)
|
|
8797
|
+
pulumi.set(__self__, "status", status)
|
|
8798
|
+
|
|
8799
|
+
@property
|
|
8800
|
+
@pulumi.getter(name="nodeImageSelection")
|
|
8801
|
+
def node_image_selection(self) -> 'outputs.NodeImageSelectionStatusResponse':
|
|
8802
|
+
"""
|
|
8803
|
+
The node image upgrade specs for the update run. It is only set in update run when `NodeImageSelection.type` is `Consistent`.
|
|
8804
|
+
"""
|
|
8805
|
+
return pulumi.get(self, "node_image_selection")
|
|
8806
|
+
|
|
8807
|
+
@property
|
|
8808
|
+
@pulumi.getter
|
|
8809
|
+
def stages(self) -> Sequence['outputs.UpdateStageStatusResponse']:
|
|
8810
|
+
"""
|
|
8811
|
+
The stages composing an update run. Stages are run sequentially withing an UpdateRun.
|
|
8812
|
+
"""
|
|
8813
|
+
return pulumi.get(self, "stages")
|
|
8814
|
+
|
|
8815
|
+
@property
|
|
8816
|
+
@pulumi.getter
|
|
8817
|
+
def status(self) -> 'outputs.UpdateStatusResponse':
|
|
8818
|
+
"""
|
|
8819
|
+
The status of the UpdateRun.
|
|
8820
|
+
"""
|
|
8821
|
+
return pulumi.get(self, "status")
|
|
8822
|
+
|
|
8823
|
+
|
|
8824
|
+
@pulumi.output_type
|
|
8825
|
+
class UpdateRunStrategyResponse(dict):
|
|
8826
|
+
"""
|
|
8827
|
+
Defines the update sequence of the clusters via stages and groups.
|
|
8828
|
+
|
|
8829
|
+
Stages within a run are executed sequentially one after another.
|
|
8830
|
+
Groups within a stage are executed in parallel.
|
|
8831
|
+
Member clusters within a group are updated sequentially one after another.
|
|
8832
|
+
|
|
8833
|
+
A valid strategy contains no duplicate groups within or across stages.
|
|
8834
|
+
"""
|
|
8835
|
+
def __init__(__self__, *,
|
|
8836
|
+
stages: Sequence['outputs.UpdateStageResponse']):
|
|
8837
|
+
"""
|
|
8838
|
+
Defines the update sequence of the clusters via stages and groups.
|
|
8839
|
+
|
|
8840
|
+
Stages within a run are executed sequentially one after another.
|
|
8841
|
+
Groups within a stage are executed in parallel.
|
|
8842
|
+
Member clusters within a group are updated sequentially one after another.
|
|
8843
|
+
|
|
8844
|
+
A valid strategy contains no duplicate groups within or across stages.
|
|
8845
|
+
:param Sequence['UpdateStageResponse'] stages: The list of stages that compose this update run. Min size: 1.
|
|
8846
|
+
"""
|
|
8847
|
+
pulumi.set(__self__, "stages", stages)
|
|
8848
|
+
|
|
8849
|
+
@property
|
|
8850
|
+
@pulumi.getter
|
|
8851
|
+
def stages(self) -> Sequence['outputs.UpdateStageResponse']:
|
|
8852
|
+
"""
|
|
8853
|
+
The list of stages that compose this update run. Min size: 1.
|
|
8854
|
+
"""
|
|
8855
|
+
return pulumi.get(self, "stages")
|
|
8856
|
+
|
|
8857
|
+
|
|
8858
|
+
@pulumi.output_type
|
|
8859
|
+
class UpdateStageResponse(dict):
|
|
8860
|
+
"""
|
|
8861
|
+
Defines a stage which contains the groups to update and the steps to take (e.g., wait for a time period) before starting the next stage.
|
|
8862
|
+
"""
|
|
8863
|
+
@staticmethod
|
|
8864
|
+
def __key_warning(key: str):
|
|
8865
|
+
suggest = None
|
|
8866
|
+
if key == "afterStageWaitInSeconds":
|
|
8867
|
+
suggest = "after_stage_wait_in_seconds"
|
|
8868
|
+
|
|
8869
|
+
if suggest:
|
|
8870
|
+
pulumi.log.warn(f"Key '{key}' not found in UpdateStageResponse. Access the value via the '{suggest}' property getter instead.")
|
|
8871
|
+
|
|
8872
|
+
def __getitem__(self, key: str) -> Any:
|
|
8873
|
+
UpdateStageResponse.__key_warning(key)
|
|
8874
|
+
return super().__getitem__(key)
|
|
8875
|
+
|
|
8876
|
+
def get(self, key: str, default = None) -> Any:
|
|
8877
|
+
UpdateStageResponse.__key_warning(key)
|
|
8878
|
+
return super().get(key, default)
|
|
8879
|
+
|
|
8880
|
+
def __init__(__self__, *,
|
|
8881
|
+
name: str,
|
|
8882
|
+
after_stage_wait_in_seconds: Optional[int] = None,
|
|
8883
|
+
groups: Optional[Sequence['outputs.UpdateGroupResponse']] = None):
|
|
8884
|
+
"""
|
|
8885
|
+
Defines a stage which contains the groups to update and the steps to take (e.g., wait for a time period) before starting the next stage.
|
|
8886
|
+
:param str name: The name of the stage. Must be unique within the UpdateRun.
|
|
8887
|
+
:param int after_stage_wait_in_seconds: The time in seconds to wait at the end of this stage before starting the next one. Defaults to 0 seconds if unspecified.
|
|
8888
|
+
:param Sequence['UpdateGroupResponse'] groups: Defines the groups to be executed in parallel in this stage. Duplicate groups are not allowed. Min size: 1.
|
|
8889
|
+
"""
|
|
8890
|
+
pulumi.set(__self__, "name", name)
|
|
8891
|
+
if after_stage_wait_in_seconds is not None:
|
|
8892
|
+
pulumi.set(__self__, "after_stage_wait_in_seconds", after_stage_wait_in_seconds)
|
|
8893
|
+
if groups is not None:
|
|
8894
|
+
pulumi.set(__self__, "groups", groups)
|
|
8895
|
+
|
|
8896
|
+
@property
|
|
8897
|
+
@pulumi.getter
|
|
8898
|
+
def name(self) -> str:
|
|
8899
|
+
"""
|
|
8900
|
+
The name of the stage. Must be unique within the UpdateRun.
|
|
8901
|
+
"""
|
|
8902
|
+
return pulumi.get(self, "name")
|
|
8903
|
+
|
|
8904
|
+
@property
|
|
8905
|
+
@pulumi.getter(name="afterStageWaitInSeconds")
|
|
8906
|
+
def after_stage_wait_in_seconds(self) -> Optional[int]:
|
|
8907
|
+
"""
|
|
8908
|
+
The time in seconds to wait at the end of this stage before starting the next one. Defaults to 0 seconds if unspecified.
|
|
8909
|
+
"""
|
|
8910
|
+
return pulumi.get(self, "after_stage_wait_in_seconds")
|
|
8911
|
+
|
|
8912
|
+
@property
|
|
8913
|
+
@pulumi.getter
|
|
8914
|
+
def groups(self) -> Optional[Sequence['outputs.UpdateGroupResponse']]:
|
|
8915
|
+
"""
|
|
8916
|
+
Defines the groups to be executed in parallel in this stage. Duplicate groups are not allowed. Min size: 1.
|
|
8917
|
+
"""
|
|
8918
|
+
return pulumi.get(self, "groups")
|
|
8919
|
+
|
|
8920
|
+
|
|
8921
|
+
@pulumi.output_type
|
|
8922
|
+
class UpdateStageStatusResponse(dict):
|
|
8923
|
+
"""
|
|
8924
|
+
The status of a UpdateStage.
|
|
8925
|
+
"""
|
|
8926
|
+
@staticmethod
|
|
8927
|
+
def __key_warning(key: str):
|
|
8928
|
+
suggest = None
|
|
8929
|
+
if key == "afterStageWaitStatus":
|
|
8930
|
+
suggest = "after_stage_wait_status"
|
|
8931
|
+
|
|
8932
|
+
if suggest:
|
|
8933
|
+
pulumi.log.warn(f"Key '{key}' not found in UpdateStageStatusResponse. Access the value via the '{suggest}' property getter instead.")
|
|
8934
|
+
|
|
8935
|
+
def __getitem__(self, key: str) -> Any:
|
|
8936
|
+
UpdateStageStatusResponse.__key_warning(key)
|
|
8937
|
+
return super().__getitem__(key)
|
|
8938
|
+
|
|
8939
|
+
def get(self, key: str, default = None) -> Any:
|
|
8940
|
+
UpdateStageStatusResponse.__key_warning(key)
|
|
8941
|
+
return super().get(key, default)
|
|
8942
|
+
|
|
8943
|
+
def __init__(__self__, *,
|
|
8944
|
+
after_stage_wait_status: 'outputs.WaitStatusResponse',
|
|
8945
|
+
groups: Sequence['outputs.UpdateGroupStatusResponse'],
|
|
8946
|
+
name: str,
|
|
8947
|
+
status: 'outputs.UpdateStatusResponse'):
|
|
8948
|
+
"""
|
|
8949
|
+
The status of a UpdateStage.
|
|
8950
|
+
:param 'WaitStatusResponse' after_stage_wait_status: The status of the wait period configured on the UpdateStage.
|
|
8951
|
+
:param Sequence['UpdateGroupStatusResponse'] groups: The list of groups to be updated as part of this UpdateStage.
|
|
8952
|
+
:param str name: The name of the UpdateStage.
|
|
8953
|
+
:param 'UpdateStatusResponse' status: The status of the UpdateStage.
|
|
8954
|
+
"""
|
|
8955
|
+
pulumi.set(__self__, "after_stage_wait_status", after_stage_wait_status)
|
|
8956
|
+
pulumi.set(__self__, "groups", groups)
|
|
8957
|
+
pulumi.set(__self__, "name", name)
|
|
8958
|
+
pulumi.set(__self__, "status", status)
|
|
8959
|
+
|
|
8960
|
+
@property
|
|
8961
|
+
@pulumi.getter(name="afterStageWaitStatus")
|
|
8962
|
+
def after_stage_wait_status(self) -> 'outputs.WaitStatusResponse':
|
|
8963
|
+
"""
|
|
8964
|
+
The status of the wait period configured on the UpdateStage.
|
|
8965
|
+
"""
|
|
8966
|
+
return pulumi.get(self, "after_stage_wait_status")
|
|
8967
|
+
|
|
8968
|
+
@property
|
|
8969
|
+
@pulumi.getter
|
|
8970
|
+
def groups(self) -> Sequence['outputs.UpdateGroupStatusResponse']:
|
|
8971
|
+
"""
|
|
8972
|
+
The list of groups to be updated as part of this UpdateStage.
|
|
8973
|
+
"""
|
|
8974
|
+
return pulumi.get(self, "groups")
|
|
8975
|
+
|
|
8976
|
+
@property
|
|
8977
|
+
@pulumi.getter
|
|
8978
|
+
def name(self) -> str:
|
|
8979
|
+
"""
|
|
8980
|
+
The name of the UpdateStage.
|
|
8981
|
+
"""
|
|
8982
|
+
return pulumi.get(self, "name")
|
|
8983
|
+
|
|
8984
|
+
@property
|
|
8985
|
+
@pulumi.getter
|
|
8986
|
+
def status(self) -> 'outputs.UpdateStatusResponse':
|
|
8987
|
+
"""
|
|
8988
|
+
The status of the UpdateStage.
|
|
8989
|
+
"""
|
|
8990
|
+
return pulumi.get(self, "status")
|
|
8991
|
+
|
|
8992
|
+
|
|
8993
|
+
@pulumi.output_type
|
|
8994
|
+
class UpdateStatusResponse(dict):
|
|
8995
|
+
"""
|
|
8996
|
+
The status for an operation or group of operations.
|
|
8997
|
+
"""
|
|
8998
|
+
@staticmethod
|
|
8999
|
+
def __key_warning(key: str):
|
|
9000
|
+
suggest = None
|
|
9001
|
+
if key == "completedTime":
|
|
9002
|
+
suggest = "completed_time"
|
|
9003
|
+
elif key == "startTime":
|
|
9004
|
+
suggest = "start_time"
|
|
9005
|
+
|
|
9006
|
+
if suggest:
|
|
9007
|
+
pulumi.log.warn(f"Key '{key}' not found in UpdateStatusResponse. Access the value via the '{suggest}' property getter instead.")
|
|
9008
|
+
|
|
9009
|
+
def __getitem__(self, key: str) -> Any:
|
|
9010
|
+
UpdateStatusResponse.__key_warning(key)
|
|
9011
|
+
return super().__getitem__(key)
|
|
9012
|
+
|
|
9013
|
+
def get(self, key: str, default = None) -> Any:
|
|
9014
|
+
UpdateStatusResponse.__key_warning(key)
|
|
9015
|
+
return super().get(key, default)
|
|
9016
|
+
|
|
9017
|
+
def __init__(__self__, *,
|
|
9018
|
+
completed_time: str,
|
|
9019
|
+
error: 'outputs.ErrorDetailResponse',
|
|
9020
|
+
start_time: str,
|
|
9021
|
+
state: str):
|
|
9022
|
+
"""
|
|
9023
|
+
The status for an operation or group of operations.
|
|
9024
|
+
:param str completed_time: The time the operation or group was completed.
|
|
9025
|
+
:param 'ErrorDetailResponse' error: The error details when a failure is encountered.
|
|
9026
|
+
:param str start_time: The time the operation or group was started.
|
|
9027
|
+
:param str state: The State of the operation or group.
|
|
9028
|
+
"""
|
|
9029
|
+
pulumi.set(__self__, "completed_time", completed_time)
|
|
9030
|
+
pulumi.set(__self__, "error", error)
|
|
9031
|
+
pulumi.set(__self__, "start_time", start_time)
|
|
9032
|
+
pulumi.set(__self__, "state", state)
|
|
9033
|
+
|
|
9034
|
+
@property
|
|
9035
|
+
@pulumi.getter(name="completedTime")
|
|
9036
|
+
def completed_time(self) -> str:
|
|
9037
|
+
"""
|
|
9038
|
+
The time the operation or group was completed.
|
|
9039
|
+
"""
|
|
9040
|
+
return pulumi.get(self, "completed_time")
|
|
9041
|
+
|
|
9042
|
+
@property
|
|
9043
|
+
@pulumi.getter
|
|
9044
|
+
def error(self) -> 'outputs.ErrorDetailResponse':
|
|
9045
|
+
"""
|
|
9046
|
+
The error details when a failure is encountered.
|
|
9047
|
+
"""
|
|
9048
|
+
return pulumi.get(self, "error")
|
|
9049
|
+
|
|
9050
|
+
@property
|
|
9051
|
+
@pulumi.getter(name="startTime")
|
|
9052
|
+
def start_time(self) -> str:
|
|
9053
|
+
"""
|
|
9054
|
+
The time the operation or group was started.
|
|
9055
|
+
"""
|
|
9056
|
+
return pulumi.get(self, "start_time")
|
|
9057
|
+
|
|
9058
|
+
@property
|
|
9059
|
+
@pulumi.getter
|
|
9060
|
+
def state(self) -> str:
|
|
9061
|
+
"""
|
|
9062
|
+
The State of the operation or group.
|
|
9063
|
+
"""
|
|
9064
|
+
return pulumi.get(self, "state")
|
|
9065
|
+
|
|
9066
|
+
|
|
7899
9067
|
@pulumi.output_type
|
|
7900
9068
|
class UpgradeOverrideSettingsResponse(dict):
|
|
7901
9069
|
"""
|
|
@@ -7960,6 +9128,8 @@ class UserAssignedIdentityResponse(dict):
|
|
|
7960
9128
|
suggest = "client_id"
|
|
7961
9129
|
elif key == "objectId":
|
|
7962
9130
|
suggest = "object_id"
|
|
9131
|
+
elif key == "principalId":
|
|
9132
|
+
suggest = "principal_id"
|
|
7963
9133
|
elif key == "resourceId":
|
|
7964
9134
|
suggest = "resource_id"
|
|
7965
9135
|
|
|
@@ -7977,17 +9147,21 @@ class UserAssignedIdentityResponse(dict):
|
|
|
7977
9147
|
def __init__(__self__, *,
|
|
7978
9148
|
client_id: Optional[str] = None,
|
|
7979
9149
|
object_id: Optional[str] = None,
|
|
9150
|
+
principal_id: Optional[str] = None,
|
|
7980
9151
|
resource_id: Optional[str] = None):
|
|
7981
9152
|
"""
|
|
7982
9153
|
Details about a user assigned identity.
|
|
7983
9154
|
:param str client_id: The client ID of the user assigned identity.
|
|
7984
9155
|
:param str object_id: The object ID of the user assigned identity.
|
|
9156
|
+
:param str principal_id: The principal ID of the assigned identity.
|
|
7985
9157
|
:param str resource_id: The resource ID of the user assigned identity.
|
|
7986
9158
|
"""
|
|
7987
9159
|
if client_id is not None:
|
|
7988
9160
|
pulumi.set(__self__, "client_id", client_id)
|
|
7989
9161
|
if object_id is not None:
|
|
7990
9162
|
pulumi.set(__self__, "object_id", object_id)
|
|
9163
|
+
if principal_id is not None:
|
|
9164
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
7991
9165
|
if resource_id is not None:
|
|
7992
9166
|
pulumi.set(__self__, "resource_id", resource_id)
|
|
7993
9167
|
|
|
@@ -8007,6 +9181,14 @@ class UserAssignedIdentityResponse(dict):
|
|
|
8007
9181
|
"""
|
|
8008
9182
|
return pulumi.get(self, "object_id")
|
|
8009
9183
|
|
|
9184
|
+
@property
|
|
9185
|
+
@pulumi.getter(name="principalId")
|
|
9186
|
+
def principal_id(self) -> Optional[str]:
|
|
9187
|
+
"""
|
|
9188
|
+
The principal ID of the assigned identity.
|
|
9189
|
+
"""
|
|
9190
|
+
return pulumi.get(self, "principal_id")
|
|
9191
|
+
|
|
8010
9192
|
@property
|
|
8011
9193
|
@pulumi.getter(name="resourceId")
|
|
8012
9194
|
def resource_id(self) -> Optional[str]:
|
|
@@ -8074,6 +9256,56 @@ class VirtualMachinesProfileResponse(dict):
|
|
|
8074
9256
|
return pulumi.get(self, "scale")
|
|
8075
9257
|
|
|
8076
9258
|
|
|
9259
|
+
@pulumi.output_type
|
|
9260
|
+
class WaitStatusResponse(dict):
|
|
9261
|
+
"""
|
|
9262
|
+
The status of the wait duration.
|
|
9263
|
+
"""
|
|
9264
|
+
@staticmethod
|
|
9265
|
+
def __key_warning(key: str):
|
|
9266
|
+
suggest = None
|
|
9267
|
+
if key == "waitDurationInSeconds":
|
|
9268
|
+
suggest = "wait_duration_in_seconds"
|
|
9269
|
+
|
|
9270
|
+
if suggest:
|
|
9271
|
+
pulumi.log.warn(f"Key '{key}' not found in WaitStatusResponse. Access the value via the '{suggest}' property getter instead.")
|
|
9272
|
+
|
|
9273
|
+
def __getitem__(self, key: str) -> Any:
|
|
9274
|
+
WaitStatusResponse.__key_warning(key)
|
|
9275
|
+
return super().__getitem__(key)
|
|
9276
|
+
|
|
9277
|
+
def get(self, key: str, default = None) -> Any:
|
|
9278
|
+
WaitStatusResponse.__key_warning(key)
|
|
9279
|
+
return super().get(key, default)
|
|
9280
|
+
|
|
9281
|
+
def __init__(__self__, *,
|
|
9282
|
+
status: 'outputs.UpdateStatusResponse',
|
|
9283
|
+
wait_duration_in_seconds: int):
|
|
9284
|
+
"""
|
|
9285
|
+
The status of the wait duration.
|
|
9286
|
+
:param 'UpdateStatusResponse' status: The status of the wait duration.
|
|
9287
|
+
:param int wait_duration_in_seconds: The wait duration configured in seconds.
|
|
9288
|
+
"""
|
|
9289
|
+
pulumi.set(__self__, "status", status)
|
|
9290
|
+
pulumi.set(__self__, "wait_duration_in_seconds", wait_duration_in_seconds)
|
|
9291
|
+
|
|
9292
|
+
@property
|
|
9293
|
+
@pulumi.getter
|
|
9294
|
+
def status(self) -> 'outputs.UpdateStatusResponse':
|
|
9295
|
+
"""
|
|
9296
|
+
The status of the wait duration.
|
|
9297
|
+
"""
|
|
9298
|
+
return pulumi.get(self, "status")
|
|
9299
|
+
|
|
9300
|
+
@property
|
|
9301
|
+
@pulumi.getter(name="waitDurationInSeconds")
|
|
9302
|
+
def wait_duration_in_seconds(self) -> int:
|
|
9303
|
+
"""
|
|
9304
|
+
The wait duration configured in seconds.
|
|
9305
|
+
"""
|
|
9306
|
+
return pulumi.get(self, "wait_duration_in_seconds")
|
|
9307
|
+
|
|
9308
|
+
|
|
8077
9309
|
@pulumi.output_type
|
|
8078
9310
|
class WeeklyScheduleResponse(dict):
|
|
8079
9311
|
"""
|