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,180 @@
|
|
|
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
|
+
'GetFleetMemberResult',
|
|
20
|
+
'AwaitableGetFleetMemberResult',
|
|
21
|
+
'get_fleet_member',
|
|
22
|
+
'get_fleet_member_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetFleetMemberResult:
|
|
27
|
+
"""
|
|
28
|
+
A member of the Fleet. It contains a reference to an existing Kubernetes cluster on Azure.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, cluster_resource_id=None, e_tag=None, group=None, id=None, name=None, provisioning_state=None, system_data=None, type=None):
|
|
31
|
+
if cluster_resource_id and not isinstance(cluster_resource_id, str):
|
|
32
|
+
raise TypeError("Expected argument 'cluster_resource_id' to be a str")
|
|
33
|
+
pulumi.set(__self__, "cluster_resource_id", cluster_resource_id)
|
|
34
|
+
if e_tag and not isinstance(e_tag, str):
|
|
35
|
+
raise TypeError("Expected argument 'e_tag' to be a str")
|
|
36
|
+
pulumi.set(__self__, "e_tag", e_tag)
|
|
37
|
+
if group and not isinstance(group, str):
|
|
38
|
+
raise TypeError("Expected argument 'group' to be a str")
|
|
39
|
+
pulumi.set(__self__, "group", group)
|
|
40
|
+
if id and not isinstance(id, str):
|
|
41
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
42
|
+
pulumi.set(__self__, "id", id)
|
|
43
|
+
if name and not isinstance(name, str):
|
|
44
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
45
|
+
pulumi.set(__self__, "name", name)
|
|
46
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
47
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
48
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
49
|
+
if system_data and not isinstance(system_data, dict):
|
|
50
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
51
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
52
|
+
if type and not isinstance(type, str):
|
|
53
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
54
|
+
pulumi.set(__self__, "type", type)
|
|
55
|
+
|
|
56
|
+
@property
|
|
57
|
+
@pulumi.getter(name="clusterResourceId")
|
|
58
|
+
def cluster_resource_id(self) -> str:
|
|
59
|
+
"""
|
|
60
|
+
The ARM resource id of the cluster that joins the Fleet. Must be a valid Azure resource id. e.g.: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{clusterName}'.
|
|
61
|
+
"""
|
|
62
|
+
return pulumi.get(self, "cluster_resource_id")
|
|
63
|
+
|
|
64
|
+
@property
|
|
65
|
+
@pulumi.getter(name="eTag")
|
|
66
|
+
def e_tag(self) -> str:
|
|
67
|
+
"""
|
|
68
|
+
If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
|
|
69
|
+
"""
|
|
70
|
+
return pulumi.get(self, "e_tag")
|
|
71
|
+
|
|
72
|
+
@property
|
|
73
|
+
@pulumi.getter
|
|
74
|
+
def group(self) -> Optional[str]:
|
|
75
|
+
"""
|
|
76
|
+
The group this member belongs to for multi-cluster update management.
|
|
77
|
+
"""
|
|
78
|
+
return pulumi.get(self, "group")
|
|
79
|
+
|
|
80
|
+
@property
|
|
81
|
+
@pulumi.getter
|
|
82
|
+
def id(self) -> str:
|
|
83
|
+
"""
|
|
84
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
85
|
+
"""
|
|
86
|
+
return pulumi.get(self, "id")
|
|
87
|
+
|
|
88
|
+
@property
|
|
89
|
+
@pulumi.getter
|
|
90
|
+
def name(self) -> str:
|
|
91
|
+
"""
|
|
92
|
+
The name of the resource
|
|
93
|
+
"""
|
|
94
|
+
return pulumi.get(self, "name")
|
|
95
|
+
|
|
96
|
+
@property
|
|
97
|
+
@pulumi.getter(name="provisioningState")
|
|
98
|
+
def provisioning_state(self) -> str:
|
|
99
|
+
"""
|
|
100
|
+
The status of the last operation.
|
|
101
|
+
"""
|
|
102
|
+
return pulumi.get(self, "provisioning_state")
|
|
103
|
+
|
|
104
|
+
@property
|
|
105
|
+
@pulumi.getter(name="systemData")
|
|
106
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
107
|
+
"""
|
|
108
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
109
|
+
"""
|
|
110
|
+
return pulumi.get(self, "system_data")
|
|
111
|
+
|
|
112
|
+
@property
|
|
113
|
+
@pulumi.getter
|
|
114
|
+
def type(self) -> str:
|
|
115
|
+
"""
|
|
116
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
117
|
+
"""
|
|
118
|
+
return pulumi.get(self, "type")
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
class AwaitableGetFleetMemberResult(GetFleetMemberResult):
|
|
122
|
+
# pylint: disable=using-constant-test
|
|
123
|
+
def __await__(self):
|
|
124
|
+
if False:
|
|
125
|
+
yield self
|
|
126
|
+
return GetFleetMemberResult(
|
|
127
|
+
cluster_resource_id=self.cluster_resource_id,
|
|
128
|
+
e_tag=self.e_tag,
|
|
129
|
+
group=self.group,
|
|
130
|
+
id=self.id,
|
|
131
|
+
name=self.name,
|
|
132
|
+
provisioning_state=self.provisioning_state,
|
|
133
|
+
system_data=self.system_data,
|
|
134
|
+
type=self.type)
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
def get_fleet_member(fleet_member_name: Optional[str] = None,
|
|
138
|
+
fleet_name: Optional[str] = None,
|
|
139
|
+
resource_group_name: Optional[str] = None,
|
|
140
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFleetMemberResult:
|
|
141
|
+
"""
|
|
142
|
+
Get a FleetMember
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
:param str fleet_member_name: The name of the Fleet member resource.
|
|
146
|
+
:param str fleet_name: The name of the Fleet resource.
|
|
147
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
148
|
+
"""
|
|
149
|
+
__args__ = dict()
|
|
150
|
+
__args__['fleetMemberName'] = fleet_member_name
|
|
151
|
+
__args__['fleetName'] = fleet_name
|
|
152
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
153
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
154
|
+
__ret__ = pulumi.runtime.invoke('azure-native:containerservice/v20240502preview:getFleetMember', __args__, opts=opts, typ=GetFleetMemberResult).value
|
|
155
|
+
|
|
156
|
+
return AwaitableGetFleetMemberResult(
|
|
157
|
+
cluster_resource_id=pulumi.get(__ret__, 'cluster_resource_id'),
|
|
158
|
+
e_tag=pulumi.get(__ret__, 'e_tag'),
|
|
159
|
+
group=pulumi.get(__ret__, 'group'),
|
|
160
|
+
id=pulumi.get(__ret__, 'id'),
|
|
161
|
+
name=pulumi.get(__ret__, 'name'),
|
|
162
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
163
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
164
|
+
type=pulumi.get(__ret__, 'type'))
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
@_utilities.lift_output_func(get_fleet_member)
|
|
168
|
+
def get_fleet_member_output(fleet_member_name: Optional[pulumi.Input[str]] = None,
|
|
169
|
+
fleet_name: Optional[pulumi.Input[str]] = None,
|
|
170
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
171
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetFleetMemberResult]:
|
|
172
|
+
"""
|
|
173
|
+
Get a FleetMember
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
:param str fleet_member_name: The name of the Fleet member resource.
|
|
177
|
+
:param str fleet_name: The name of the Fleet resource.
|
|
178
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
179
|
+
"""
|
|
180
|
+
...
|
|
@@ -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
|
+
'GetFleetUpdateStrategyResult',
|
|
20
|
+
'AwaitableGetFleetUpdateStrategyResult',
|
|
21
|
+
'get_fleet_update_strategy',
|
|
22
|
+
'get_fleet_update_strategy_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetFleetUpdateStrategyResult:
|
|
27
|
+
"""
|
|
28
|
+
Defines a multi-stage process to perform update operations across members of a Fleet.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, e_tag=None, id=None, name=None, provisioning_state=None, strategy=None, system_data=None, type=None):
|
|
31
|
+
if e_tag and not isinstance(e_tag, str):
|
|
32
|
+
raise TypeError("Expected argument 'e_tag' to be a str")
|
|
33
|
+
pulumi.set(__self__, "e_tag", e_tag)
|
|
34
|
+
if id and not isinstance(id, str):
|
|
35
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
36
|
+
pulumi.set(__self__, "id", id)
|
|
37
|
+
if name and not isinstance(name, str):
|
|
38
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
39
|
+
pulumi.set(__self__, "name", name)
|
|
40
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
41
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
42
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
43
|
+
if strategy and not isinstance(strategy, dict):
|
|
44
|
+
raise TypeError("Expected argument 'strategy' to be a dict")
|
|
45
|
+
pulumi.set(__self__, "strategy", strategy)
|
|
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(name="eTag")
|
|
55
|
+
def e_tag(self) -> str:
|
|
56
|
+
"""
|
|
57
|
+
If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
|
|
58
|
+
"""
|
|
59
|
+
return pulumi.get(self, "e_tag")
|
|
60
|
+
|
|
61
|
+
@property
|
|
62
|
+
@pulumi.getter
|
|
63
|
+
def id(self) -> str:
|
|
64
|
+
"""
|
|
65
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
66
|
+
"""
|
|
67
|
+
return pulumi.get(self, "id")
|
|
68
|
+
|
|
69
|
+
@property
|
|
70
|
+
@pulumi.getter
|
|
71
|
+
def name(self) -> str:
|
|
72
|
+
"""
|
|
73
|
+
The name of the resource
|
|
74
|
+
"""
|
|
75
|
+
return pulumi.get(self, "name")
|
|
76
|
+
|
|
77
|
+
@property
|
|
78
|
+
@pulumi.getter(name="provisioningState")
|
|
79
|
+
def provisioning_state(self) -> str:
|
|
80
|
+
"""
|
|
81
|
+
The provisioning state of the UpdateStrategy resource.
|
|
82
|
+
"""
|
|
83
|
+
return pulumi.get(self, "provisioning_state")
|
|
84
|
+
|
|
85
|
+
@property
|
|
86
|
+
@pulumi.getter
|
|
87
|
+
def strategy(self) -> 'outputs.UpdateRunStrategyResponse':
|
|
88
|
+
"""
|
|
89
|
+
Defines the update sequence of the clusters.
|
|
90
|
+
"""
|
|
91
|
+
return pulumi.get(self, "strategy")
|
|
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 AwaitableGetFleetUpdateStrategyResult(GetFleetUpdateStrategyResult):
|
|
111
|
+
# pylint: disable=using-constant-test
|
|
112
|
+
def __await__(self):
|
|
113
|
+
if False:
|
|
114
|
+
yield self
|
|
115
|
+
return GetFleetUpdateStrategyResult(
|
|
116
|
+
e_tag=self.e_tag,
|
|
117
|
+
id=self.id,
|
|
118
|
+
name=self.name,
|
|
119
|
+
provisioning_state=self.provisioning_state,
|
|
120
|
+
strategy=self.strategy,
|
|
121
|
+
system_data=self.system_data,
|
|
122
|
+
type=self.type)
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
def get_fleet_update_strategy(fleet_name: Optional[str] = None,
|
|
126
|
+
resource_group_name: Optional[str] = None,
|
|
127
|
+
update_strategy_name: Optional[str] = None,
|
|
128
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFleetUpdateStrategyResult:
|
|
129
|
+
"""
|
|
130
|
+
Get a FleetUpdateStrategy
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
:param str fleet_name: The name of the Fleet resource.
|
|
134
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
135
|
+
:param str update_strategy_name: The name of the UpdateStrategy resource.
|
|
136
|
+
"""
|
|
137
|
+
__args__ = dict()
|
|
138
|
+
__args__['fleetName'] = fleet_name
|
|
139
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
140
|
+
__args__['updateStrategyName'] = update_strategy_name
|
|
141
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
142
|
+
__ret__ = pulumi.runtime.invoke('azure-native:containerservice/v20240502preview:getFleetUpdateStrategy', __args__, opts=opts, typ=GetFleetUpdateStrategyResult).value
|
|
143
|
+
|
|
144
|
+
return AwaitableGetFleetUpdateStrategyResult(
|
|
145
|
+
e_tag=pulumi.get(__ret__, 'e_tag'),
|
|
146
|
+
id=pulumi.get(__ret__, 'id'),
|
|
147
|
+
name=pulumi.get(__ret__, 'name'),
|
|
148
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
149
|
+
strategy=pulumi.get(__ret__, 'strategy'),
|
|
150
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
151
|
+
type=pulumi.get(__ret__, 'type'))
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
@_utilities.lift_output_func(get_fleet_update_strategy)
|
|
155
|
+
def get_fleet_update_strategy_output(fleet_name: Optional[pulumi.Input[str]] = None,
|
|
156
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
157
|
+
update_strategy_name: Optional[pulumi.Input[str]] = None,
|
|
158
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetFleetUpdateStrategyResult]:
|
|
159
|
+
"""
|
|
160
|
+
Get a FleetUpdateStrategy
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
:param str fleet_name: The name of the Fleet resource.
|
|
164
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
165
|
+
:param str update_strategy_name: The name of the UpdateStrategy resource.
|
|
166
|
+
"""
|
|
167
|
+
...
|
|
@@ -0,0 +1,219 @@
|
|
|
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
|
+
'GetUpdateRunResult',
|
|
20
|
+
'AwaitableGetUpdateRunResult',
|
|
21
|
+
'get_update_run',
|
|
22
|
+
'get_update_run_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetUpdateRunResult:
|
|
27
|
+
"""
|
|
28
|
+
A multi-stage process to perform update operations across members of a Fleet.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, e_tag=None, id=None, managed_cluster_update=None, name=None, provisioning_state=None, status=None, strategy=None, system_data=None, type=None, update_strategy_id=None):
|
|
31
|
+
if e_tag and not isinstance(e_tag, str):
|
|
32
|
+
raise TypeError("Expected argument 'e_tag' to be a str")
|
|
33
|
+
pulumi.set(__self__, "e_tag", e_tag)
|
|
34
|
+
if id and not isinstance(id, str):
|
|
35
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
36
|
+
pulumi.set(__self__, "id", id)
|
|
37
|
+
if managed_cluster_update and not isinstance(managed_cluster_update, dict):
|
|
38
|
+
raise TypeError("Expected argument 'managed_cluster_update' to be a dict")
|
|
39
|
+
pulumi.set(__self__, "managed_cluster_update", managed_cluster_update)
|
|
40
|
+
if name and not isinstance(name, str):
|
|
41
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
42
|
+
pulumi.set(__self__, "name", name)
|
|
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 status and not isinstance(status, dict):
|
|
47
|
+
raise TypeError("Expected argument 'status' to be a dict")
|
|
48
|
+
pulumi.set(__self__, "status", status)
|
|
49
|
+
if strategy and not isinstance(strategy, dict):
|
|
50
|
+
raise TypeError("Expected argument 'strategy' to be a dict")
|
|
51
|
+
pulumi.set(__self__, "strategy", strategy)
|
|
52
|
+
if system_data and not isinstance(system_data, dict):
|
|
53
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
54
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
55
|
+
if type and not isinstance(type, str):
|
|
56
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
57
|
+
pulumi.set(__self__, "type", type)
|
|
58
|
+
if update_strategy_id and not isinstance(update_strategy_id, str):
|
|
59
|
+
raise TypeError("Expected argument 'update_strategy_id' to be a str")
|
|
60
|
+
pulumi.set(__self__, "update_strategy_id", update_strategy_id)
|
|
61
|
+
|
|
62
|
+
@property
|
|
63
|
+
@pulumi.getter(name="eTag")
|
|
64
|
+
def e_tag(self) -> str:
|
|
65
|
+
"""
|
|
66
|
+
If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
|
|
67
|
+
"""
|
|
68
|
+
return pulumi.get(self, "e_tag")
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
@pulumi.getter
|
|
72
|
+
def id(self) -> str:
|
|
73
|
+
"""
|
|
74
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "id")
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
@pulumi.getter(name="managedClusterUpdate")
|
|
80
|
+
def managed_cluster_update(self) -> 'outputs.ManagedClusterUpdateResponse':
|
|
81
|
+
"""
|
|
82
|
+
The update to be applied to all clusters in the UpdateRun. The managedClusterUpdate can be modified until the run is started.
|
|
83
|
+
"""
|
|
84
|
+
return pulumi.get(self, "managed_cluster_update")
|
|
85
|
+
|
|
86
|
+
@property
|
|
87
|
+
@pulumi.getter
|
|
88
|
+
def name(self) -> str:
|
|
89
|
+
"""
|
|
90
|
+
The name of the resource
|
|
91
|
+
"""
|
|
92
|
+
return pulumi.get(self, "name")
|
|
93
|
+
|
|
94
|
+
@property
|
|
95
|
+
@pulumi.getter(name="provisioningState")
|
|
96
|
+
def provisioning_state(self) -> str:
|
|
97
|
+
"""
|
|
98
|
+
The provisioning state of the UpdateRun resource.
|
|
99
|
+
"""
|
|
100
|
+
return pulumi.get(self, "provisioning_state")
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
@pulumi.getter
|
|
104
|
+
def status(self) -> 'outputs.UpdateRunStatusResponse':
|
|
105
|
+
"""
|
|
106
|
+
The status of the UpdateRun.
|
|
107
|
+
"""
|
|
108
|
+
return pulumi.get(self, "status")
|
|
109
|
+
|
|
110
|
+
@property
|
|
111
|
+
@pulumi.getter
|
|
112
|
+
def strategy(self) -> Optional['outputs.UpdateRunStrategyResponse']:
|
|
113
|
+
"""
|
|
114
|
+
The strategy defines the order in which the clusters will be updated.
|
|
115
|
+
If not set, all members will be updated sequentially. The UpdateRun status will show a single UpdateStage and a single UpdateGroup targeting all members.
|
|
116
|
+
The strategy of the UpdateRun can be modified until the run is started.
|
|
117
|
+
"""
|
|
118
|
+
return pulumi.get(self, "strategy")
|
|
119
|
+
|
|
120
|
+
@property
|
|
121
|
+
@pulumi.getter(name="systemData")
|
|
122
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
123
|
+
"""
|
|
124
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
125
|
+
"""
|
|
126
|
+
return pulumi.get(self, "system_data")
|
|
127
|
+
|
|
128
|
+
@property
|
|
129
|
+
@pulumi.getter
|
|
130
|
+
def type(self) -> str:
|
|
131
|
+
"""
|
|
132
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
133
|
+
"""
|
|
134
|
+
return pulumi.get(self, "type")
|
|
135
|
+
|
|
136
|
+
@property
|
|
137
|
+
@pulumi.getter(name="updateStrategyId")
|
|
138
|
+
def update_strategy_id(self) -> Optional[str]:
|
|
139
|
+
"""
|
|
140
|
+
The resource id of the FleetUpdateStrategy resource to reference.
|
|
141
|
+
|
|
142
|
+
When creating a new run, there are three ways to define a strategy for the run:
|
|
143
|
+
1. Define a new strategy in place: Set the "strategy" field.
|
|
144
|
+
2. Use an existing strategy: Set the "updateStrategyId" field. (since 2023-08-15-preview)
|
|
145
|
+
3. Use the default strategy to update all the members one by one: Leave both "updateStrategyId" and "strategy" unset. (since 2023-08-15-preview)
|
|
146
|
+
|
|
147
|
+
Setting both "updateStrategyId" and "strategy" is invalid.
|
|
148
|
+
|
|
149
|
+
UpdateRuns created by "updateStrategyId" snapshot the referenced UpdateStrategy at the time of creation and store it in the "strategy" field.
|
|
150
|
+
Subsequent changes to the referenced FleetUpdateStrategy resource do not propagate.
|
|
151
|
+
UpdateRunStrategy changes can be made directly on the "strategy" field before launching the UpdateRun.
|
|
152
|
+
"""
|
|
153
|
+
return pulumi.get(self, "update_strategy_id")
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
class AwaitableGetUpdateRunResult(GetUpdateRunResult):
|
|
157
|
+
# pylint: disable=using-constant-test
|
|
158
|
+
def __await__(self):
|
|
159
|
+
if False:
|
|
160
|
+
yield self
|
|
161
|
+
return GetUpdateRunResult(
|
|
162
|
+
e_tag=self.e_tag,
|
|
163
|
+
id=self.id,
|
|
164
|
+
managed_cluster_update=self.managed_cluster_update,
|
|
165
|
+
name=self.name,
|
|
166
|
+
provisioning_state=self.provisioning_state,
|
|
167
|
+
status=self.status,
|
|
168
|
+
strategy=self.strategy,
|
|
169
|
+
system_data=self.system_data,
|
|
170
|
+
type=self.type,
|
|
171
|
+
update_strategy_id=self.update_strategy_id)
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
def get_update_run(fleet_name: Optional[str] = None,
|
|
175
|
+
resource_group_name: Optional[str] = None,
|
|
176
|
+
update_run_name: Optional[str] = None,
|
|
177
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetUpdateRunResult:
|
|
178
|
+
"""
|
|
179
|
+
Get a UpdateRun
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
:param str fleet_name: The name of the Fleet resource.
|
|
183
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
184
|
+
:param str update_run_name: The name of the UpdateRun resource.
|
|
185
|
+
"""
|
|
186
|
+
__args__ = dict()
|
|
187
|
+
__args__['fleetName'] = fleet_name
|
|
188
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
189
|
+
__args__['updateRunName'] = update_run_name
|
|
190
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
191
|
+
__ret__ = pulumi.runtime.invoke('azure-native:containerservice/v20240502preview:getUpdateRun', __args__, opts=opts, typ=GetUpdateRunResult).value
|
|
192
|
+
|
|
193
|
+
return AwaitableGetUpdateRunResult(
|
|
194
|
+
e_tag=pulumi.get(__ret__, 'e_tag'),
|
|
195
|
+
id=pulumi.get(__ret__, 'id'),
|
|
196
|
+
managed_cluster_update=pulumi.get(__ret__, 'managed_cluster_update'),
|
|
197
|
+
name=pulumi.get(__ret__, 'name'),
|
|
198
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
199
|
+
status=pulumi.get(__ret__, 'status'),
|
|
200
|
+
strategy=pulumi.get(__ret__, 'strategy'),
|
|
201
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
202
|
+
type=pulumi.get(__ret__, 'type'),
|
|
203
|
+
update_strategy_id=pulumi.get(__ret__, 'update_strategy_id'))
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
@_utilities.lift_output_func(get_update_run)
|
|
207
|
+
def get_update_run_output(fleet_name: Optional[pulumi.Input[str]] = None,
|
|
208
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
209
|
+
update_run_name: Optional[pulumi.Input[str]] = None,
|
|
210
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetUpdateRunResult]:
|
|
211
|
+
"""
|
|
212
|
+
Get a UpdateRun
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
:param str fleet_name: The name of the Fleet resource.
|
|
216
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
217
|
+
:param str update_run_name: The name of the UpdateRun resource.
|
|
218
|
+
"""
|
|
219
|
+
...
|
|
@@ -0,0 +1,84 @@
|
|
|
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
|
+
'ListFleetCredentialsResult',
|
|
20
|
+
'AwaitableListFleetCredentialsResult',
|
|
21
|
+
'list_fleet_credentials',
|
|
22
|
+
'list_fleet_credentials_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class ListFleetCredentialsResult:
|
|
27
|
+
"""
|
|
28
|
+
The Credential results 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.FleetCredentialResultResponse']:
|
|
38
|
+
"""
|
|
39
|
+
Array of base64-encoded Kubernetes configuration files.
|
|
40
|
+
"""
|
|
41
|
+
return pulumi.get(self, "kubeconfigs")
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class AwaitableListFleetCredentialsResult(ListFleetCredentialsResult):
|
|
45
|
+
# pylint: disable=using-constant-test
|
|
46
|
+
def __await__(self):
|
|
47
|
+
if False:
|
|
48
|
+
yield self
|
|
49
|
+
return ListFleetCredentialsResult(
|
|
50
|
+
kubeconfigs=self.kubeconfigs)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
def list_fleet_credentials(fleet_name: Optional[str] = None,
|
|
54
|
+
resource_group_name: Optional[str] = None,
|
|
55
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableListFleetCredentialsResult:
|
|
56
|
+
"""
|
|
57
|
+
Lists the user credentials of a Fleet.
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
:param str fleet_name: The name of the Fleet resource.
|
|
61
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
62
|
+
"""
|
|
63
|
+
__args__ = dict()
|
|
64
|
+
__args__['fleetName'] = fleet_name
|
|
65
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
66
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
67
|
+
__ret__ = pulumi.runtime.invoke('azure-native:containerservice/v20240502preview:listFleetCredentials', __args__, opts=opts, typ=ListFleetCredentialsResult).value
|
|
68
|
+
|
|
69
|
+
return AwaitableListFleetCredentialsResult(
|
|
70
|
+
kubeconfigs=pulumi.get(__ret__, 'kubeconfigs'))
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
@_utilities.lift_output_func(list_fleet_credentials)
|
|
74
|
+
def list_fleet_credentials_output(fleet_name: Optional[pulumi.Input[str]] = None,
|
|
75
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
76
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[ListFleetCredentialsResult]:
|
|
77
|
+
"""
|
|
78
|
+
Lists the user credentials of a Fleet.
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
:param str fleet_name: The name of the Fleet resource.
|
|
82
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
83
|
+
"""
|
|
84
|
+
...
|