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,154 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetPrivateEndpointConnectionResult',
|
|
20
|
+
'AwaitableGetPrivateEndpointConnectionResult',
|
|
21
|
+
'get_private_endpoint_connection',
|
|
22
|
+
'get_private_endpoint_connection_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetPrivateEndpointConnectionResult:
|
|
27
|
+
"""
|
|
28
|
+
A private endpoint connection
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, id=None, name=None, private_endpoint=None, private_link_service_connection_state=None, provisioning_state=None, type=None):
|
|
31
|
+
if id and not isinstance(id, str):
|
|
32
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
33
|
+
pulumi.set(__self__, "id", id)
|
|
34
|
+
if name and not isinstance(name, str):
|
|
35
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
36
|
+
pulumi.set(__self__, "name", name)
|
|
37
|
+
if private_endpoint and not isinstance(private_endpoint, dict):
|
|
38
|
+
raise TypeError("Expected argument 'private_endpoint' to be a dict")
|
|
39
|
+
pulumi.set(__self__, "private_endpoint", private_endpoint)
|
|
40
|
+
if private_link_service_connection_state and not isinstance(private_link_service_connection_state, dict):
|
|
41
|
+
raise TypeError("Expected argument 'private_link_service_connection_state' to be a dict")
|
|
42
|
+
pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
|
|
43
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
44
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
45
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
46
|
+
if type and not isinstance(type, str):
|
|
47
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
48
|
+
pulumi.set(__self__, "type", type)
|
|
49
|
+
|
|
50
|
+
@property
|
|
51
|
+
@pulumi.getter
|
|
52
|
+
def id(self) -> str:
|
|
53
|
+
"""
|
|
54
|
+
The ID of the private endpoint connection.
|
|
55
|
+
"""
|
|
56
|
+
return pulumi.get(self, "id")
|
|
57
|
+
|
|
58
|
+
@property
|
|
59
|
+
@pulumi.getter
|
|
60
|
+
def name(self) -> str:
|
|
61
|
+
"""
|
|
62
|
+
The name of the private endpoint connection.
|
|
63
|
+
"""
|
|
64
|
+
return pulumi.get(self, "name")
|
|
65
|
+
|
|
66
|
+
@property
|
|
67
|
+
@pulumi.getter(name="privateEndpoint")
|
|
68
|
+
def private_endpoint(self) -> Optional['outputs.PrivateEndpointResponse']:
|
|
69
|
+
"""
|
|
70
|
+
The resource of private endpoint.
|
|
71
|
+
"""
|
|
72
|
+
return pulumi.get(self, "private_endpoint")
|
|
73
|
+
|
|
74
|
+
@property
|
|
75
|
+
@pulumi.getter(name="privateLinkServiceConnectionState")
|
|
76
|
+
def private_link_service_connection_state(self) -> 'outputs.PrivateLinkServiceConnectionStateResponse':
|
|
77
|
+
"""
|
|
78
|
+
A collection of information about the state of the connection between service consumer and provider.
|
|
79
|
+
"""
|
|
80
|
+
return pulumi.get(self, "private_link_service_connection_state")
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
@pulumi.getter(name="provisioningState")
|
|
84
|
+
def provisioning_state(self) -> str:
|
|
85
|
+
"""
|
|
86
|
+
The current provisioning state.
|
|
87
|
+
"""
|
|
88
|
+
return pulumi.get(self, "provisioning_state")
|
|
89
|
+
|
|
90
|
+
@property
|
|
91
|
+
@pulumi.getter
|
|
92
|
+
def type(self) -> str:
|
|
93
|
+
"""
|
|
94
|
+
The resource type.
|
|
95
|
+
"""
|
|
96
|
+
return pulumi.get(self, "type")
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
class AwaitableGetPrivateEndpointConnectionResult(GetPrivateEndpointConnectionResult):
|
|
100
|
+
# pylint: disable=using-constant-test
|
|
101
|
+
def __await__(self):
|
|
102
|
+
if False:
|
|
103
|
+
yield self
|
|
104
|
+
return GetPrivateEndpointConnectionResult(
|
|
105
|
+
id=self.id,
|
|
106
|
+
name=self.name,
|
|
107
|
+
private_endpoint=self.private_endpoint,
|
|
108
|
+
private_link_service_connection_state=self.private_link_service_connection_state,
|
|
109
|
+
provisioning_state=self.provisioning_state,
|
|
110
|
+
type=self.type)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
def get_private_endpoint_connection(private_endpoint_connection_name: Optional[str] = None,
|
|
114
|
+
resource_group_name: Optional[str] = None,
|
|
115
|
+
resource_name: Optional[str] = None,
|
|
116
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPrivateEndpointConnectionResult:
|
|
117
|
+
"""
|
|
118
|
+
To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
:param str private_endpoint_connection_name: The name of the private endpoint connection.
|
|
122
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
123
|
+
:param str resource_name: The name of the managed cluster resource.
|
|
124
|
+
"""
|
|
125
|
+
__args__ = dict()
|
|
126
|
+
__args__['privateEndpointConnectionName'] = private_endpoint_connection_name
|
|
127
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
128
|
+
__args__['resourceName'] = resource_name
|
|
129
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
130
|
+
__ret__ = pulumi.runtime.invoke('azure-native:containerservice/v20240801:getPrivateEndpointConnection', __args__, opts=opts, typ=GetPrivateEndpointConnectionResult).value
|
|
131
|
+
|
|
132
|
+
return AwaitableGetPrivateEndpointConnectionResult(
|
|
133
|
+
id=pulumi.get(__ret__, 'id'),
|
|
134
|
+
name=pulumi.get(__ret__, 'name'),
|
|
135
|
+
private_endpoint=pulumi.get(__ret__, 'private_endpoint'),
|
|
136
|
+
private_link_service_connection_state=pulumi.get(__ret__, 'private_link_service_connection_state'),
|
|
137
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
138
|
+
type=pulumi.get(__ret__, 'type'))
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
@_utilities.lift_output_func(get_private_endpoint_connection)
|
|
142
|
+
def get_private_endpoint_connection_output(private_endpoint_connection_name: Optional[pulumi.Input[str]] = None,
|
|
143
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
144
|
+
resource_name: Optional[pulumi.Input[str]] = None,
|
|
145
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetPrivateEndpointConnectionResult]:
|
|
146
|
+
"""
|
|
147
|
+
To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
:param str private_endpoint_connection_name: The name of the private endpoint connection.
|
|
151
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
152
|
+
:param str resource_name: The name of the managed cluster resource.
|
|
153
|
+
"""
|
|
154
|
+
...
|
|
@@ -0,0 +1,253 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetSnapshotResult',
|
|
20
|
+
'AwaitableGetSnapshotResult',
|
|
21
|
+
'get_snapshot',
|
|
22
|
+
'get_snapshot_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetSnapshotResult:
|
|
27
|
+
"""
|
|
28
|
+
A node pool snapshot resource.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, creation_data=None, enable_fips=None, id=None, kubernetes_version=None, location=None, name=None, node_image_version=None, os_sku=None, os_type=None, snapshot_type=None, system_data=None, tags=None, type=None, vm_size=None):
|
|
31
|
+
if creation_data and not isinstance(creation_data, dict):
|
|
32
|
+
raise TypeError("Expected argument 'creation_data' to be a dict")
|
|
33
|
+
pulumi.set(__self__, "creation_data", creation_data)
|
|
34
|
+
if enable_fips and not isinstance(enable_fips, bool):
|
|
35
|
+
raise TypeError("Expected argument 'enable_fips' to be a bool")
|
|
36
|
+
pulumi.set(__self__, "enable_fips", enable_fips)
|
|
37
|
+
if id and not isinstance(id, str):
|
|
38
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
39
|
+
pulumi.set(__self__, "id", id)
|
|
40
|
+
if kubernetes_version and not isinstance(kubernetes_version, str):
|
|
41
|
+
raise TypeError("Expected argument 'kubernetes_version' to be a str")
|
|
42
|
+
pulumi.set(__self__, "kubernetes_version", kubernetes_version)
|
|
43
|
+
if location and not isinstance(location, str):
|
|
44
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
45
|
+
pulumi.set(__self__, "location", location)
|
|
46
|
+
if name and not isinstance(name, str):
|
|
47
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
48
|
+
pulumi.set(__self__, "name", name)
|
|
49
|
+
if node_image_version and not isinstance(node_image_version, str):
|
|
50
|
+
raise TypeError("Expected argument 'node_image_version' to be a str")
|
|
51
|
+
pulumi.set(__self__, "node_image_version", node_image_version)
|
|
52
|
+
if os_sku and not isinstance(os_sku, str):
|
|
53
|
+
raise TypeError("Expected argument 'os_sku' to be a str")
|
|
54
|
+
pulumi.set(__self__, "os_sku", os_sku)
|
|
55
|
+
if os_type and not isinstance(os_type, str):
|
|
56
|
+
raise TypeError("Expected argument 'os_type' to be a str")
|
|
57
|
+
pulumi.set(__self__, "os_type", os_type)
|
|
58
|
+
if snapshot_type and not isinstance(snapshot_type, str):
|
|
59
|
+
raise TypeError("Expected argument 'snapshot_type' to be a str")
|
|
60
|
+
pulumi.set(__self__, "snapshot_type", snapshot_type)
|
|
61
|
+
if system_data and not isinstance(system_data, dict):
|
|
62
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
63
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
64
|
+
if tags and not isinstance(tags, dict):
|
|
65
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
66
|
+
pulumi.set(__self__, "tags", tags)
|
|
67
|
+
if type and not isinstance(type, str):
|
|
68
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
69
|
+
pulumi.set(__self__, "type", type)
|
|
70
|
+
if vm_size and not isinstance(vm_size, str):
|
|
71
|
+
raise TypeError("Expected argument 'vm_size' to be a str")
|
|
72
|
+
pulumi.set(__self__, "vm_size", vm_size)
|
|
73
|
+
|
|
74
|
+
@property
|
|
75
|
+
@pulumi.getter(name="creationData")
|
|
76
|
+
def creation_data(self) -> Optional['outputs.CreationDataResponse']:
|
|
77
|
+
"""
|
|
78
|
+
CreationData to be used to specify the source agent pool resource ID to create this snapshot.
|
|
79
|
+
"""
|
|
80
|
+
return pulumi.get(self, "creation_data")
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
@pulumi.getter(name="enableFIPS")
|
|
84
|
+
def enable_fips(self) -> bool:
|
|
85
|
+
"""
|
|
86
|
+
Whether to use a FIPS-enabled OS.
|
|
87
|
+
"""
|
|
88
|
+
return pulumi.get(self, "enable_fips")
|
|
89
|
+
|
|
90
|
+
@property
|
|
91
|
+
@pulumi.getter
|
|
92
|
+
def id(self) -> str:
|
|
93
|
+
"""
|
|
94
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
95
|
+
"""
|
|
96
|
+
return pulumi.get(self, "id")
|
|
97
|
+
|
|
98
|
+
@property
|
|
99
|
+
@pulumi.getter(name="kubernetesVersion")
|
|
100
|
+
def kubernetes_version(self) -> str:
|
|
101
|
+
"""
|
|
102
|
+
The version of Kubernetes.
|
|
103
|
+
"""
|
|
104
|
+
return pulumi.get(self, "kubernetes_version")
|
|
105
|
+
|
|
106
|
+
@property
|
|
107
|
+
@pulumi.getter
|
|
108
|
+
def location(self) -> str:
|
|
109
|
+
"""
|
|
110
|
+
The geo-location where the resource lives
|
|
111
|
+
"""
|
|
112
|
+
return pulumi.get(self, "location")
|
|
113
|
+
|
|
114
|
+
@property
|
|
115
|
+
@pulumi.getter
|
|
116
|
+
def name(self) -> str:
|
|
117
|
+
"""
|
|
118
|
+
The name of the resource
|
|
119
|
+
"""
|
|
120
|
+
return pulumi.get(self, "name")
|
|
121
|
+
|
|
122
|
+
@property
|
|
123
|
+
@pulumi.getter(name="nodeImageVersion")
|
|
124
|
+
def node_image_version(self) -> str:
|
|
125
|
+
"""
|
|
126
|
+
The version of node image.
|
|
127
|
+
"""
|
|
128
|
+
return pulumi.get(self, "node_image_version")
|
|
129
|
+
|
|
130
|
+
@property
|
|
131
|
+
@pulumi.getter(name="osSku")
|
|
132
|
+
def os_sku(self) -> str:
|
|
133
|
+
"""
|
|
134
|
+
Specifies the OS SKU used by the agent pool. The default is Ubuntu if OSType is Linux. The default is Windows2019 when Kubernetes <= 1.24 or Windows2022 when Kubernetes >= 1.25 if OSType is Windows.
|
|
135
|
+
"""
|
|
136
|
+
return pulumi.get(self, "os_sku")
|
|
137
|
+
|
|
138
|
+
@property
|
|
139
|
+
@pulumi.getter(name="osType")
|
|
140
|
+
def os_type(self) -> str:
|
|
141
|
+
"""
|
|
142
|
+
The operating system type. The default is Linux.
|
|
143
|
+
"""
|
|
144
|
+
return pulumi.get(self, "os_type")
|
|
145
|
+
|
|
146
|
+
@property
|
|
147
|
+
@pulumi.getter(name="snapshotType")
|
|
148
|
+
def snapshot_type(self) -> Optional[str]:
|
|
149
|
+
"""
|
|
150
|
+
The type of a snapshot. The default is NodePool.
|
|
151
|
+
"""
|
|
152
|
+
return pulumi.get(self, "snapshot_type")
|
|
153
|
+
|
|
154
|
+
@property
|
|
155
|
+
@pulumi.getter(name="systemData")
|
|
156
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
157
|
+
"""
|
|
158
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
159
|
+
"""
|
|
160
|
+
return pulumi.get(self, "system_data")
|
|
161
|
+
|
|
162
|
+
@property
|
|
163
|
+
@pulumi.getter
|
|
164
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
165
|
+
"""
|
|
166
|
+
Resource tags.
|
|
167
|
+
"""
|
|
168
|
+
return pulumi.get(self, "tags")
|
|
169
|
+
|
|
170
|
+
@property
|
|
171
|
+
@pulumi.getter
|
|
172
|
+
def type(self) -> str:
|
|
173
|
+
"""
|
|
174
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
175
|
+
"""
|
|
176
|
+
return pulumi.get(self, "type")
|
|
177
|
+
|
|
178
|
+
@property
|
|
179
|
+
@pulumi.getter(name="vmSize")
|
|
180
|
+
def vm_size(self) -> str:
|
|
181
|
+
"""
|
|
182
|
+
The size of the VM.
|
|
183
|
+
"""
|
|
184
|
+
return pulumi.get(self, "vm_size")
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
class AwaitableGetSnapshotResult(GetSnapshotResult):
|
|
188
|
+
# pylint: disable=using-constant-test
|
|
189
|
+
def __await__(self):
|
|
190
|
+
if False:
|
|
191
|
+
yield self
|
|
192
|
+
return GetSnapshotResult(
|
|
193
|
+
creation_data=self.creation_data,
|
|
194
|
+
enable_fips=self.enable_fips,
|
|
195
|
+
id=self.id,
|
|
196
|
+
kubernetes_version=self.kubernetes_version,
|
|
197
|
+
location=self.location,
|
|
198
|
+
name=self.name,
|
|
199
|
+
node_image_version=self.node_image_version,
|
|
200
|
+
os_sku=self.os_sku,
|
|
201
|
+
os_type=self.os_type,
|
|
202
|
+
snapshot_type=self.snapshot_type,
|
|
203
|
+
system_data=self.system_data,
|
|
204
|
+
tags=self.tags,
|
|
205
|
+
type=self.type,
|
|
206
|
+
vm_size=self.vm_size)
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
def get_snapshot(resource_group_name: Optional[str] = None,
|
|
210
|
+
resource_name: Optional[str] = None,
|
|
211
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSnapshotResult:
|
|
212
|
+
"""
|
|
213
|
+
A node pool snapshot resource.
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
217
|
+
:param str resource_name: The name of the managed cluster resource.
|
|
218
|
+
"""
|
|
219
|
+
__args__ = dict()
|
|
220
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
221
|
+
__args__['resourceName'] = resource_name
|
|
222
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
223
|
+
__ret__ = pulumi.runtime.invoke('azure-native:containerservice/v20240801:getSnapshot', __args__, opts=opts, typ=GetSnapshotResult).value
|
|
224
|
+
|
|
225
|
+
return AwaitableGetSnapshotResult(
|
|
226
|
+
creation_data=pulumi.get(__ret__, 'creation_data'),
|
|
227
|
+
enable_fips=pulumi.get(__ret__, 'enable_fips'),
|
|
228
|
+
id=pulumi.get(__ret__, 'id'),
|
|
229
|
+
kubernetes_version=pulumi.get(__ret__, 'kubernetes_version'),
|
|
230
|
+
location=pulumi.get(__ret__, 'location'),
|
|
231
|
+
name=pulumi.get(__ret__, 'name'),
|
|
232
|
+
node_image_version=pulumi.get(__ret__, 'node_image_version'),
|
|
233
|
+
os_sku=pulumi.get(__ret__, 'os_sku'),
|
|
234
|
+
os_type=pulumi.get(__ret__, 'os_type'),
|
|
235
|
+
snapshot_type=pulumi.get(__ret__, 'snapshot_type'),
|
|
236
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
237
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
238
|
+
type=pulumi.get(__ret__, 'type'),
|
|
239
|
+
vm_size=pulumi.get(__ret__, 'vm_size'))
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
@_utilities.lift_output_func(get_snapshot)
|
|
243
|
+
def get_snapshot_output(resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
244
|
+
resource_name: Optional[pulumi.Input[str]] = None,
|
|
245
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSnapshotResult]:
|
|
246
|
+
"""
|
|
247
|
+
A node pool snapshot resource.
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
251
|
+
:param str resource_name: The name of the managed cluster resource.
|
|
252
|
+
"""
|
|
253
|
+
...
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetTrustedAccessRoleBindingResult',
|
|
20
|
+
'AwaitableGetTrustedAccessRoleBindingResult',
|
|
21
|
+
'get_trusted_access_role_binding',
|
|
22
|
+
'get_trusted_access_role_binding_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetTrustedAccessRoleBindingResult:
|
|
27
|
+
"""
|
|
28
|
+
Defines binding between a resource and role
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, id=None, name=None, provisioning_state=None, roles=None, source_resource_id=None, system_data=None, type=None):
|
|
31
|
+
if id and not isinstance(id, str):
|
|
32
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
33
|
+
pulumi.set(__self__, "id", id)
|
|
34
|
+
if name and not isinstance(name, str):
|
|
35
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
36
|
+
pulumi.set(__self__, "name", name)
|
|
37
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
38
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
39
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
40
|
+
if roles and not isinstance(roles, list):
|
|
41
|
+
raise TypeError("Expected argument 'roles' to be a list")
|
|
42
|
+
pulumi.set(__self__, "roles", roles)
|
|
43
|
+
if source_resource_id and not isinstance(source_resource_id, str):
|
|
44
|
+
raise TypeError("Expected argument 'source_resource_id' to be a str")
|
|
45
|
+
pulumi.set(__self__, "source_resource_id", source_resource_id)
|
|
46
|
+
if system_data and not isinstance(system_data, dict):
|
|
47
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
48
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
49
|
+
if type and not isinstance(type, str):
|
|
50
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
51
|
+
pulumi.set(__self__, "type", type)
|
|
52
|
+
|
|
53
|
+
@property
|
|
54
|
+
@pulumi.getter
|
|
55
|
+
def id(self) -> str:
|
|
56
|
+
"""
|
|
57
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
58
|
+
"""
|
|
59
|
+
return pulumi.get(self, "id")
|
|
60
|
+
|
|
61
|
+
@property
|
|
62
|
+
@pulumi.getter
|
|
63
|
+
def name(self) -> str:
|
|
64
|
+
"""
|
|
65
|
+
The name of the resource
|
|
66
|
+
"""
|
|
67
|
+
return pulumi.get(self, "name")
|
|
68
|
+
|
|
69
|
+
@property
|
|
70
|
+
@pulumi.getter(name="provisioningState")
|
|
71
|
+
def provisioning_state(self) -> str:
|
|
72
|
+
"""
|
|
73
|
+
The current provisioning state of trusted access role binding.
|
|
74
|
+
"""
|
|
75
|
+
return pulumi.get(self, "provisioning_state")
|
|
76
|
+
|
|
77
|
+
@property
|
|
78
|
+
@pulumi.getter
|
|
79
|
+
def roles(self) -> Sequence[str]:
|
|
80
|
+
"""
|
|
81
|
+
A list of roles to bind, each item is a resource type qualified role name. For example: 'Microsoft.MachineLearningServices/workspaces/reader'.
|
|
82
|
+
"""
|
|
83
|
+
return pulumi.get(self, "roles")
|
|
84
|
+
|
|
85
|
+
@property
|
|
86
|
+
@pulumi.getter(name="sourceResourceId")
|
|
87
|
+
def source_resource_id(self) -> str:
|
|
88
|
+
"""
|
|
89
|
+
The ARM resource ID of source resource that trusted access is configured for.
|
|
90
|
+
"""
|
|
91
|
+
return pulumi.get(self, "source_resource_id")
|
|
92
|
+
|
|
93
|
+
@property
|
|
94
|
+
@pulumi.getter(name="systemData")
|
|
95
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
96
|
+
"""
|
|
97
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
98
|
+
"""
|
|
99
|
+
return pulumi.get(self, "system_data")
|
|
100
|
+
|
|
101
|
+
@property
|
|
102
|
+
@pulumi.getter
|
|
103
|
+
def type(self) -> str:
|
|
104
|
+
"""
|
|
105
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
106
|
+
"""
|
|
107
|
+
return pulumi.get(self, "type")
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
class AwaitableGetTrustedAccessRoleBindingResult(GetTrustedAccessRoleBindingResult):
|
|
111
|
+
# pylint: disable=using-constant-test
|
|
112
|
+
def __await__(self):
|
|
113
|
+
if False:
|
|
114
|
+
yield self
|
|
115
|
+
return GetTrustedAccessRoleBindingResult(
|
|
116
|
+
id=self.id,
|
|
117
|
+
name=self.name,
|
|
118
|
+
provisioning_state=self.provisioning_state,
|
|
119
|
+
roles=self.roles,
|
|
120
|
+
source_resource_id=self.source_resource_id,
|
|
121
|
+
system_data=self.system_data,
|
|
122
|
+
type=self.type)
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
def get_trusted_access_role_binding(resource_group_name: Optional[str] = None,
|
|
126
|
+
resource_name: Optional[str] = None,
|
|
127
|
+
trusted_access_role_binding_name: Optional[str] = None,
|
|
128
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTrustedAccessRoleBindingResult:
|
|
129
|
+
"""
|
|
130
|
+
Defines binding between a resource and role
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
134
|
+
:param str resource_name: The name of the managed cluster resource.
|
|
135
|
+
:param str trusted_access_role_binding_name: The name of trusted access role binding.
|
|
136
|
+
"""
|
|
137
|
+
__args__ = dict()
|
|
138
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
139
|
+
__args__['resourceName'] = resource_name
|
|
140
|
+
__args__['trustedAccessRoleBindingName'] = trusted_access_role_binding_name
|
|
141
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
142
|
+
__ret__ = pulumi.runtime.invoke('azure-native:containerservice/v20240801:getTrustedAccessRoleBinding', __args__, opts=opts, typ=GetTrustedAccessRoleBindingResult).value
|
|
143
|
+
|
|
144
|
+
return AwaitableGetTrustedAccessRoleBindingResult(
|
|
145
|
+
id=pulumi.get(__ret__, 'id'),
|
|
146
|
+
name=pulumi.get(__ret__, 'name'),
|
|
147
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
148
|
+
roles=pulumi.get(__ret__, 'roles'),
|
|
149
|
+
source_resource_id=pulumi.get(__ret__, 'source_resource_id'),
|
|
150
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
151
|
+
type=pulumi.get(__ret__, 'type'))
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
@_utilities.lift_output_func(get_trusted_access_role_binding)
|
|
155
|
+
def get_trusted_access_role_binding_output(resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
156
|
+
resource_name: Optional[pulumi.Input[str]] = None,
|
|
157
|
+
trusted_access_role_binding_name: Optional[pulumi.Input[str]] = None,
|
|
158
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetTrustedAccessRoleBindingResult]:
|
|
159
|
+
"""
|
|
160
|
+
Defines binding between a resource and role
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
164
|
+
:param str resource_name: The name of the managed cluster resource.
|
|
165
|
+
:param str trusted_access_role_binding_name: The name of trusted access role binding.
|
|
166
|
+
"""
|
|
167
|
+
...
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'ListManagedClusterAdminCredentialsResult',
|
|
20
|
+
'AwaitableListManagedClusterAdminCredentialsResult',
|
|
21
|
+
'list_managed_cluster_admin_credentials',
|
|
22
|
+
'list_managed_cluster_admin_credentials_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class ListManagedClusterAdminCredentialsResult:
|
|
27
|
+
"""
|
|
28
|
+
The list credential result response.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, kubeconfigs=None):
|
|
31
|
+
if kubeconfigs and not isinstance(kubeconfigs, list):
|
|
32
|
+
raise TypeError("Expected argument 'kubeconfigs' to be a list")
|
|
33
|
+
pulumi.set(__self__, "kubeconfigs", kubeconfigs)
|
|
34
|
+
|
|
35
|
+
@property
|
|
36
|
+
@pulumi.getter
|
|
37
|
+
def kubeconfigs(self) -> Sequence['outputs.CredentialResultResponse']:
|
|
38
|
+
"""
|
|
39
|
+
Base64-encoded Kubernetes configuration file.
|
|
40
|
+
"""
|
|
41
|
+
return pulumi.get(self, "kubeconfigs")
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class AwaitableListManagedClusterAdminCredentialsResult(ListManagedClusterAdminCredentialsResult):
|
|
45
|
+
# pylint: disable=using-constant-test
|
|
46
|
+
def __await__(self):
|
|
47
|
+
if False:
|
|
48
|
+
yield self
|
|
49
|
+
return ListManagedClusterAdminCredentialsResult(
|
|
50
|
+
kubeconfigs=self.kubeconfigs)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
def list_managed_cluster_admin_credentials(resource_group_name: Optional[str] = None,
|
|
54
|
+
resource_name: Optional[str] = None,
|
|
55
|
+
server_fqdn: Optional[str] = None,
|
|
56
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableListManagedClusterAdminCredentialsResult:
|
|
57
|
+
"""
|
|
58
|
+
The list credential result response.
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
62
|
+
:param str resource_name: The name of the managed cluster resource.
|
|
63
|
+
:param str server_fqdn: server fqdn type for credentials to be returned
|
|
64
|
+
"""
|
|
65
|
+
__args__ = dict()
|
|
66
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
67
|
+
__args__['resourceName'] = resource_name
|
|
68
|
+
__args__['serverFqdn'] = server_fqdn
|
|
69
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
70
|
+
__ret__ = pulumi.runtime.invoke('azure-native:containerservice/v20240801:listManagedClusterAdminCredentials', __args__, opts=opts, typ=ListManagedClusterAdminCredentialsResult).value
|
|
71
|
+
|
|
72
|
+
return AwaitableListManagedClusterAdminCredentialsResult(
|
|
73
|
+
kubeconfigs=pulumi.get(__ret__, 'kubeconfigs'))
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
@_utilities.lift_output_func(list_managed_cluster_admin_credentials)
|
|
77
|
+
def list_managed_cluster_admin_credentials_output(resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
78
|
+
resource_name: Optional[pulumi.Input[str]] = None,
|
|
79
|
+
server_fqdn: Optional[pulumi.Input[Optional[str]]] = None,
|
|
80
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[ListManagedClusterAdminCredentialsResult]:
|
|
81
|
+
"""
|
|
82
|
+
The list credential result response.
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
86
|
+
:param str resource_name: The name of the managed cluster resource.
|
|
87
|
+
:param str server_fqdn: server fqdn type for credentials to be returned
|
|
88
|
+
"""
|
|
89
|
+
...
|