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,241 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
from ._inputs import *
|
|
18
|
+
|
|
19
|
+
__all__ = ['FleetUpdateStrategyArgs', 'FleetUpdateStrategy']
|
|
20
|
+
|
|
21
|
+
@pulumi.input_type
|
|
22
|
+
class FleetUpdateStrategyArgs:
|
|
23
|
+
def __init__(__self__, *,
|
|
24
|
+
fleet_name: pulumi.Input[str],
|
|
25
|
+
resource_group_name: pulumi.Input[str],
|
|
26
|
+
strategy: pulumi.Input['UpdateRunStrategyArgs'],
|
|
27
|
+
update_strategy_name: Optional[pulumi.Input[str]] = None):
|
|
28
|
+
"""
|
|
29
|
+
The set of arguments for constructing a FleetUpdateStrategy resource.
|
|
30
|
+
:param pulumi.Input[str] fleet_name: The name of the Fleet resource.
|
|
31
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
32
|
+
:param pulumi.Input['UpdateRunStrategyArgs'] strategy: Defines the update sequence of the clusters.
|
|
33
|
+
:param pulumi.Input[str] update_strategy_name: The name of the UpdateStrategy resource.
|
|
34
|
+
"""
|
|
35
|
+
pulumi.set(__self__, "fleet_name", fleet_name)
|
|
36
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
37
|
+
pulumi.set(__self__, "strategy", strategy)
|
|
38
|
+
if update_strategy_name is not None:
|
|
39
|
+
pulumi.set(__self__, "update_strategy_name", update_strategy_name)
|
|
40
|
+
|
|
41
|
+
@property
|
|
42
|
+
@pulumi.getter(name="fleetName")
|
|
43
|
+
def fleet_name(self) -> pulumi.Input[str]:
|
|
44
|
+
"""
|
|
45
|
+
The name of the Fleet resource.
|
|
46
|
+
"""
|
|
47
|
+
return pulumi.get(self, "fleet_name")
|
|
48
|
+
|
|
49
|
+
@fleet_name.setter
|
|
50
|
+
def fleet_name(self, value: pulumi.Input[str]):
|
|
51
|
+
pulumi.set(self, "fleet_name", value)
|
|
52
|
+
|
|
53
|
+
@property
|
|
54
|
+
@pulumi.getter(name="resourceGroupName")
|
|
55
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
56
|
+
"""
|
|
57
|
+
The name of the resource group. The name is case insensitive.
|
|
58
|
+
"""
|
|
59
|
+
return pulumi.get(self, "resource_group_name")
|
|
60
|
+
|
|
61
|
+
@resource_group_name.setter
|
|
62
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
63
|
+
pulumi.set(self, "resource_group_name", value)
|
|
64
|
+
|
|
65
|
+
@property
|
|
66
|
+
@pulumi.getter
|
|
67
|
+
def strategy(self) -> pulumi.Input['UpdateRunStrategyArgs']:
|
|
68
|
+
"""
|
|
69
|
+
Defines the update sequence of the clusters.
|
|
70
|
+
"""
|
|
71
|
+
return pulumi.get(self, "strategy")
|
|
72
|
+
|
|
73
|
+
@strategy.setter
|
|
74
|
+
def strategy(self, value: pulumi.Input['UpdateRunStrategyArgs']):
|
|
75
|
+
pulumi.set(self, "strategy", value)
|
|
76
|
+
|
|
77
|
+
@property
|
|
78
|
+
@pulumi.getter(name="updateStrategyName")
|
|
79
|
+
def update_strategy_name(self) -> Optional[pulumi.Input[str]]:
|
|
80
|
+
"""
|
|
81
|
+
The name of the UpdateStrategy resource.
|
|
82
|
+
"""
|
|
83
|
+
return pulumi.get(self, "update_strategy_name")
|
|
84
|
+
|
|
85
|
+
@update_strategy_name.setter
|
|
86
|
+
def update_strategy_name(self, value: Optional[pulumi.Input[str]]):
|
|
87
|
+
pulumi.set(self, "update_strategy_name", value)
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
class FleetUpdateStrategy(pulumi.CustomResource):
|
|
91
|
+
@overload
|
|
92
|
+
def __init__(__self__,
|
|
93
|
+
resource_name: str,
|
|
94
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
95
|
+
fleet_name: Optional[pulumi.Input[str]] = None,
|
|
96
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
97
|
+
strategy: Optional[pulumi.Input[Union['UpdateRunStrategyArgs', 'UpdateRunStrategyArgsDict']]] = None,
|
|
98
|
+
update_strategy_name: Optional[pulumi.Input[str]] = None,
|
|
99
|
+
__props__=None):
|
|
100
|
+
"""
|
|
101
|
+
Defines a multi-stage process to perform update operations across members of a Fleet.
|
|
102
|
+
|
|
103
|
+
:param str resource_name: The name of the resource.
|
|
104
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
105
|
+
:param pulumi.Input[str] fleet_name: The name of the Fleet resource.
|
|
106
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
107
|
+
:param pulumi.Input[Union['UpdateRunStrategyArgs', 'UpdateRunStrategyArgsDict']] strategy: Defines the update sequence of the clusters.
|
|
108
|
+
:param pulumi.Input[str] update_strategy_name: The name of the UpdateStrategy resource.
|
|
109
|
+
"""
|
|
110
|
+
...
|
|
111
|
+
@overload
|
|
112
|
+
def __init__(__self__,
|
|
113
|
+
resource_name: str,
|
|
114
|
+
args: FleetUpdateStrategyArgs,
|
|
115
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
116
|
+
"""
|
|
117
|
+
Defines a multi-stage process to perform update operations across members of a Fleet.
|
|
118
|
+
|
|
119
|
+
:param str resource_name: The name of the resource.
|
|
120
|
+
:param FleetUpdateStrategyArgs args: The arguments to use to populate this resource's properties.
|
|
121
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
122
|
+
"""
|
|
123
|
+
...
|
|
124
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
125
|
+
resource_args, opts = _utilities.get_resource_args_opts(FleetUpdateStrategyArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
126
|
+
if resource_args is not None:
|
|
127
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
128
|
+
else:
|
|
129
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
130
|
+
|
|
131
|
+
def _internal_init(__self__,
|
|
132
|
+
resource_name: str,
|
|
133
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
134
|
+
fleet_name: Optional[pulumi.Input[str]] = None,
|
|
135
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
136
|
+
strategy: Optional[pulumi.Input[Union['UpdateRunStrategyArgs', 'UpdateRunStrategyArgsDict']]] = None,
|
|
137
|
+
update_strategy_name: Optional[pulumi.Input[str]] = None,
|
|
138
|
+
__props__=None):
|
|
139
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
140
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
141
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
142
|
+
if opts.id is None:
|
|
143
|
+
if __props__ is not None:
|
|
144
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
145
|
+
__props__ = FleetUpdateStrategyArgs.__new__(FleetUpdateStrategyArgs)
|
|
146
|
+
|
|
147
|
+
if fleet_name is None and not opts.urn:
|
|
148
|
+
raise TypeError("Missing required property 'fleet_name'")
|
|
149
|
+
__props__.__dict__["fleet_name"] = fleet_name
|
|
150
|
+
if resource_group_name is None and not opts.urn:
|
|
151
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
152
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
153
|
+
if strategy is None and not opts.urn:
|
|
154
|
+
raise TypeError("Missing required property 'strategy'")
|
|
155
|
+
__props__.__dict__["strategy"] = strategy
|
|
156
|
+
__props__.__dict__["update_strategy_name"] = update_strategy_name
|
|
157
|
+
__props__.__dict__["e_tag"] = None
|
|
158
|
+
__props__.__dict__["name"] = None
|
|
159
|
+
__props__.__dict__["provisioning_state"] = None
|
|
160
|
+
__props__.__dict__["system_data"] = None
|
|
161
|
+
__props__.__dict__["type"] = None
|
|
162
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:containerservice:FleetUpdateStrategy"), pulumi.Alias(type_="azure-native:containerservice/v20230815preview:FleetUpdateStrategy"), pulumi.Alias(type_="azure-native:containerservice/v20231015:FleetUpdateStrategy"), pulumi.Alias(type_="azure-native:containerservice/v20240202preview:FleetUpdateStrategy"), pulumi.Alias(type_="azure-native:containerservice/v20240401:FleetUpdateStrategy")])
|
|
163
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
164
|
+
super(FleetUpdateStrategy, __self__).__init__(
|
|
165
|
+
'azure-native:containerservice/v20240502preview:FleetUpdateStrategy',
|
|
166
|
+
resource_name,
|
|
167
|
+
__props__,
|
|
168
|
+
opts)
|
|
169
|
+
|
|
170
|
+
@staticmethod
|
|
171
|
+
def get(resource_name: str,
|
|
172
|
+
id: pulumi.Input[str],
|
|
173
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'FleetUpdateStrategy':
|
|
174
|
+
"""
|
|
175
|
+
Get an existing FleetUpdateStrategy resource's state with the given name, id, and optional extra
|
|
176
|
+
properties used to qualify the lookup.
|
|
177
|
+
|
|
178
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
179
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
180
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
181
|
+
"""
|
|
182
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
183
|
+
|
|
184
|
+
__props__ = FleetUpdateStrategyArgs.__new__(FleetUpdateStrategyArgs)
|
|
185
|
+
|
|
186
|
+
__props__.__dict__["e_tag"] = None
|
|
187
|
+
__props__.__dict__["name"] = None
|
|
188
|
+
__props__.__dict__["provisioning_state"] = None
|
|
189
|
+
__props__.__dict__["strategy"] = None
|
|
190
|
+
__props__.__dict__["system_data"] = None
|
|
191
|
+
__props__.__dict__["type"] = None
|
|
192
|
+
return FleetUpdateStrategy(resource_name, opts=opts, __props__=__props__)
|
|
193
|
+
|
|
194
|
+
@property
|
|
195
|
+
@pulumi.getter(name="eTag")
|
|
196
|
+
def e_tag(self) -> pulumi.Output[str]:
|
|
197
|
+
"""
|
|
198
|
+
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.
|
|
199
|
+
"""
|
|
200
|
+
return pulumi.get(self, "e_tag")
|
|
201
|
+
|
|
202
|
+
@property
|
|
203
|
+
@pulumi.getter
|
|
204
|
+
def name(self) -> pulumi.Output[str]:
|
|
205
|
+
"""
|
|
206
|
+
The name of the resource
|
|
207
|
+
"""
|
|
208
|
+
return pulumi.get(self, "name")
|
|
209
|
+
|
|
210
|
+
@property
|
|
211
|
+
@pulumi.getter(name="provisioningState")
|
|
212
|
+
def provisioning_state(self) -> pulumi.Output[str]:
|
|
213
|
+
"""
|
|
214
|
+
The provisioning state of the UpdateStrategy resource.
|
|
215
|
+
"""
|
|
216
|
+
return pulumi.get(self, "provisioning_state")
|
|
217
|
+
|
|
218
|
+
@property
|
|
219
|
+
@pulumi.getter
|
|
220
|
+
def strategy(self) -> pulumi.Output['outputs.UpdateRunStrategyResponse']:
|
|
221
|
+
"""
|
|
222
|
+
Defines the update sequence of the clusters.
|
|
223
|
+
"""
|
|
224
|
+
return pulumi.get(self, "strategy")
|
|
225
|
+
|
|
226
|
+
@property
|
|
227
|
+
@pulumi.getter(name="systemData")
|
|
228
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
229
|
+
"""
|
|
230
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
231
|
+
"""
|
|
232
|
+
return pulumi.get(self, "system_data")
|
|
233
|
+
|
|
234
|
+
@property
|
|
235
|
+
@pulumi.getter
|
|
236
|
+
def type(self) -> pulumi.Output[str]:
|
|
237
|
+
"""
|
|
238
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
239
|
+
"""
|
|
240
|
+
return pulumi.get(self, "type")
|
|
241
|
+
|
|
@@ -0,0 +1,209 @@
|
|
|
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
|
+
'GetAutoUpgradeProfileResult',
|
|
20
|
+
'AwaitableGetAutoUpgradeProfileResult',
|
|
21
|
+
'get_auto_upgrade_profile',
|
|
22
|
+
'get_auto_upgrade_profile_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetAutoUpgradeProfileResult:
|
|
27
|
+
"""
|
|
28
|
+
The AutoUpgradeProfile resource.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, channel=None, disabled=None, e_tag=None, id=None, name=None, node_image_selection=None, provisioning_state=None, system_data=None, type=None, update_strategy_id=None):
|
|
31
|
+
if channel and not isinstance(channel, str):
|
|
32
|
+
raise TypeError("Expected argument 'channel' to be a str")
|
|
33
|
+
pulumi.set(__self__, "channel", channel)
|
|
34
|
+
if disabled and not isinstance(disabled, bool):
|
|
35
|
+
raise TypeError("Expected argument 'disabled' to be a bool")
|
|
36
|
+
pulumi.set(__self__, "disabled", disabled)
|
|
37
|
+
if e_tag and not isinstance(e_tag, str):
|
|
38
|
+
raise TypeError("Expected argument 'e_tag' to be a str")
|
|
39
|
+
pulumi.set(__self__, "e_tag", e_tag)
|
|
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 node_image_selection and not isinstance(node_image_selection, dict):
|
|
47
|
+
raise TypeError("Expected argument 'node_image_selection' to be a dict")
|
|
48
|
+
pulumi.set(__self__, "node_image_selection", node_image_selection)
|
|
49
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
50
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
51
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
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
|
|
64
|
+
def channel(self) -> str:
|
|
65
|
+
"""
|
|
66
|
+
Configures how auto-upgrade will be run.
|
|
67
|
+
"""
|
|
68
|
+
return pulumi.get(self, "channel")
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
@pulumi.getter
|
|
72
|
+
def disabled(self) -> Optional[bool]:
|
|
73
|
+
"""
|
|
74
|
+
If set to False: the auto upgrade has effect - target managed clusters will be upgraded on schedule.
|
|
75
|
+
If set to True: the auto upgrade has no effect - no upgrade will be run on the target managed clusters.
|
|
76
|
+
This is a boolean and not an enum because enabled/disabled are all available states of the auto upgrade profile.
|
|
77
|
+
By default, this is set to False.
|
|
78
|
+
"""
|
|
79
|
+
return pulumi.get(self, "disabled")
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
@pulumi.getter(name="eTag")
|
|
83
|
+
def e_tag(self) -> str:
|
|
84
|
+
"""
|
|
85
|
+
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.
|
|
86
|
+
"""
|
|
87
|
+
return pulumi.get(self, "e_tag")
|
|
88
|
+
|
|
89
|
+
@property
|
|
90
|
+
@pulumi.getter
|
|
91
|
+
def id(self) -> str:
|
|
92
|
+
"""
|
|
93
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
94
|
+
"""
|
|
95
|
+
return pulumi.get(self, "id")
|
|
96
|
+
|
|
97
|
+
@property
|
|
98
|
+
@pulumi.getter
|
|
99
|
+
def name(self) -> str:
|
|
100
|
+
"""
|
|
101
|
+
The name of the resource
|
|
102
|
+
"""
|
|
103
|
+
return pulumi.get(self, "name")
|
|
104
|
+
|
|
105
|
+
@property
|
|
106
|
+
@pulumi.getter(name="nodeImageSelection")
|
|
107
|
+
def node_image_selection(self) -> Optional['outputs.AutoUpgradeNodeImageSelectionResponse']:
|
|
108
|
+
"""
|
|
109
|
+
The node image upgrade to be applied to the target clusters in auto upgrade.
|
|
110
|
+
"""
|
|
111
|
+
return pulumi.get(self, "node_image_selection")
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
@pulumi.getter(name="provisioningState")
|
|
115
|
+
def provisioning_state(self) -> str:
|
|
116
|
+
"""
|
|
117
|
+
The provisioning state of the AutoUpgradeProfile resource.
|
|
118
|
+
"""
|
|
119
|
+
return pulumi.get(self, "provisioning_state")
|
|
120
|
+
|
|
121
|
+
@property
|
|
122
|
+
@pulumi.getter(name="systemData")
|
|
123
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
124
|
+
"""
|
|
125
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
126
|
+
"""
|
|
127
|
+
return pulumi.get(self, "system_data")
|
|
128
|
+
|
|
129
|
+
@property
|
|
130
|
+
@pulumi.getter
|
|
131
|
+
def type(self) -> str:
|
|
132
|
+
"""
|
|
133
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
134
|
+
"""
|
|
135
|
+
return pulumi.get(self, "type")
|
|
136
|
+
|
|
137
|
+
@property
|
|
138
|
+
@pulumi.getter(name="updateStrategyId")
|
|
139
|
+
def update_strategy_id(self) -> Optional[str]:
|
|
140
|
+
"""
|
|
141
|
+
The resource id of the UpdateStrategy resource to reference. If not specified, the auto upgrade will run on all clusters which are members of the fleet.
|
|
142
|
+
"""
|
|
143
|
+
return pulumi.get(self, "update_strategy_id")
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
class AwaitableGetAutoUpgradeProfileResult(GetAutoUpgradeProfileResult):
|
|
147
|
+
# pylint: disable=using-constant-test
|
|
148
|
+
def __await__(self):
|
|
149
|
+
if False:
|
|
150
|
+
yield self
|
|
151
|
+
return GetAutoUpgradeProfileResult(
|
|
152
|
+
channel=self.channel,
|
|
153
|
+
disabled=self.disabled,
|
|
154
|
+
e_tag=self.e_tag,
|
|
155
|
+
id=self.id,
|
|
156
|
+
name=self.name,
|
|
157
|
+
node_image_selection=self.node_image_selection,
|
|
158
|
+
provisioning_state=self.provisioning_state,
|
|
159
|
+
system_data=self.system_data,
|
|
160
|
+
type=self.type,
|
|
161
|
+
update_strategy_id=self.update_strategy_id)
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
def get_auto_upgrade_profile(auto_upgrade_profile_name: Optional[str] = None,
|
|
165
|
+
fleet_name: Optional[str] = None,
|
|
166
|
+
resource_group_name: Optional[str] = None,
|
|
167
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAutoUpgradeProfileResult:
|
|
168
|
+
"""
|
|
169
|
+
Get a AutoUpgradeProfile
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
:param str auto_upgrade_profile_name: The name of the AutoUpgradeProfile resource.
|
|
173
|
+
:param str fleet_name: The name of the Fleet resource.
|
|
174
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
175
|
+
"""
|
|
176
|
+
__args__ = dict()
|
|
177
|
+
__args__['autoUpgradeProfileName'] = auto_upgrade_profile_name
|
|
178
|
+
__args__['fleetName'] = fleet_name
|
|
179
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
180
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
181
|
+
__ret__ = pulumi.runtime.invoke('azure-native:containerservice/v20240502preview:getAutoUpgradeProfile', __args__, opts=opts, typ=GetAutoUpgradeProfileResult).value
|
|
182
|
+
|
|
183
|
+
return AwaitableGetAutoUpgradeProfileResult(
|
|
184
|
+
channel=pulumi.get(__ret__, 'channel'),
|
|
185
|
+
disabled=pulumi.get(__ret__, 'disabled'),
|
|
186
|
+
e_tag=pulumi.get(__ret__, 'e_tag'),
|
|
187
|
+
id=pulumi.get(__ret__, 'id'),
|
|
188
|
+
name=pulumi.get(__ret__, 'name'),
|
|
189
|
+
node_image_selection=pulumi.get(__ret__, 'node_image_selection'),
|
|
190
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
191
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
192
|
+
type=pulumi.get(__ret__, 'type'),
|
|
193
|
+
update_strategy_id=pulumi.get(__ret__, 'update_strategy_id'))
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
@_utilities.lift_output_func(get_auto_upgrade_profile)
|
|
197
|
+
def get_auto_upgrade_profile_output(auto_upgrade_profile_name: Optional[pulumi.Input[str]] = None,
|
|
198
|
+
fleet_name: Optional[pulumi.Input[str]] = None,
|
|
199
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
200
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAutoUpgradeProfileResult]:
|
|
201
|
+
"""
|
|
202
|
+
Get a AutoUpgradeProfile
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
:param str auto_upgrade_profile_name: The name of the AutoUpgradeProfile resource.
|
|
206
|
+
:param str fleet_name: The name of the Fleet resource.
|
|
207
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
208
|
+
"""
|
|
209
|
+
...
|
|
@@ -0,0 +1,201 @@
|
|
|
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
|
+
'GetFleetResult',
|
|
20
|
+
'AwaitableGetFleetResult',
|
|
21
|
+
'get_fleet',
|
|
22
|
+
'get_fleet_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetFleetResult:
|
|
27
|
+
"""
|
|
28
|
+
The Fleet resource.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, e_tag=None, hub_profile=None, id=None, identity=None, location=None, name=None, provisioning_state=None, system_data=None, tags=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 hub_profile and not isinstance(hub_profile, dict):
|
|
35
|
+
raise TypeError("Expected argument 'hub_profile' to be a dict")
|
|
36
|
+
pulumi.set(__self__, "hub_profile", hub_profile)
|
|
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 identity and not isinstance(identity, dict):
|
|
41
|
+
raise TypeError("Expected argument 'identity' to be a dict")
|
|
42
|
+
pulumi.set(__self__, "identity", identity)
|
|
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 provisioning_state and not isinstance(provisioning_state, str):
|
|
50
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
51
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
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 tags and not isinstance(tags, dict):
|
|
56
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
57
|
+
pulumi.set(__self__, "tags", tags)
|
|
58
|
+
if type and not isinstance(type, str):
|
|
59
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
60
|
+
pulumi.set(__self__, "type", type)
|
|
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(name="hubProfile")
|
|
72
|
+
def hub_profile(self) -> Optional['outputs.FleetHubProfileResponse']:
|
|
73
|
+
"""
|
|
74
|
+
The FleetHubProfile configures the Fleet's hub.
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "hub_profile")
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
@pulumi.getter
|
|
80
|
+
def id(self) -> str:
|
|
81
|
+
"""
|
|
82
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
83
|
+
"""
|
|
84
|
+
return pulumi.get(self, "id")
|
|
85
|
+
|
|
86
|
+
@property
|
|
87
|
+
@pulumi.getter
|
|
88
|
+
def identity(self) -> Optional['outputs.ManagedServiceIdentityResponse']:
|
|
89
|
+
"""
|
|
90
|
+
Managed identity.
|
|
91
|
+
"""
|
|
92
|
+
return pulumi.get(self, "identity")
|
|
93
|
+
|
|
94
|
+
@property
|
|
95
|
+
@pulumi.getter
|
|
96
|
+
def location(self) -> str:
|
|
97
|
+
"""
|
|
98
|
+
The geo-location where the resource lives
|
|
99
|
+
"""
|
|
100
|
+
return pulumi.get(self, "location")
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
@pulumi.getter
|
|
104
|
+
def name(self) -> str:
|
|
105
|
+
"""
|
|
106
|
+
The name of the resource
|
|
107
|
+
"""
|
|
108
|
+
return pulumi.get(self, "name")
|
|
109
|
+
|
|
110
|
+
@property
|
|
111
|
+
@pulumi.getter(name="provisioningState")
|
|
112
|
+
def provisioning_state(self) -> str:
|
|
113
|
+
"""
|
|
114
|
+
The status of the last operation.
|
|
115
|
+
"""
|
|
116
|
+
return pulumi.get(self, "provisioning_state")
|
|
117
|
+
|
|
118
|
+
@property
|
|
119
|
+
@pulumi.getter(name="systemData")
|
|
120
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
121
|
+
"""
|
|
122
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
123
|
+
"""
|
|
124
|
+
return pulumi.get(self, "system_data")
|
|
125
|
+
|
|
126
|
+
@property
|
|
127
|
+
@pulumi.getter
|
|
128
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
129
|
+
"""
|
|
130
|
+
Resource tags.
|
|
131
|
+
"""
|
|
132
|
+
return pulumi.get(self, "tags")
|
|
133
|
+
|
|
134
|
+
@property
|
|
135
|
+
@pulumi.getter
|
|
136
|
+
def type(self) -> str:
|
|
137
|
+
"""
|
|
138
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
139
|
+
"""
|
|
140
|
+
return pulumi.get(self, "type")
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
class AwaitableGetFleetResult(GetFleetResult):
|
|
144
|
+
# pylint: disable=using-constant-test
|
|
145
|
+
def __await__(self):
|
|
146
|
+
if False:
|
|
147
|
+
yield self
|
|
148
|
+
return GetFleetResult(
|
|
149
|
+
e_tag=self.e_tag,
|
|
150
|
+
hub_profile=self.hub_profile,
|
|
151
|
+
id=self.id,
|
|
152
|
+
identity=self.identity,
|
|
153
|
+
location=self.location,
|
|
154
|
+
name=self.name,
|
|
155
|
+
provisioning_state=self.provisioning_state,
|
|
156
|
+
system_data=self.system_data,
|
|
157
|
+
tags=self.tags,
|
|
158
|
+
type=self.type)
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
def get_fleet(fleet_name: Optional[str] = None,
|
|
162
|
+
resource_group_name: Optional[str] = None,
|
|
163
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFleetResult:
|
|
164
|
+
"""
|
|
165
|
+
Gets a Fleet.
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
:param str fleet_name: The name of the Fleet resource.
|
|
169
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
170
|
+
"""
|
|
171
|
+
__args__ = dict()
|
|
172
|
+
__args__['fleetName'] = fleet_name
|
|
173
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
174
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
175
|
+
__ret__ = pulumi.runtime.invoke('azure-native:containerservice/v20240502preview:getFleet', __args__, opts=opts, typ=GetFleetResult).value
|
|
176
|
+
|
|
177
|
+
return AwaitableGetFleetResult(
|
|
178
|
+
e_tag=pulumi.get(__ret__, 'e_tag'),
|
|
179
|
+
hub_profile=pulumi.get(__ret__, 'hub_profile'),
|
|
180
|
+
id=pulumi.get(__ret__, 'id'),
|
|
181
|
+
identity=pulumi.get(__ret__, 'identity'),
|
|
182
|
+
location=pulumi.get(__ret__, 'location'),
|
|
183
|
+
name=pulumi.get(__ret__, 'name'),
|
|
184
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
185
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
186
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
187
|
+
type=pulumi.get(__ret__, 'type'))
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
@_utilities.lift_output_func(get_fleet)
|
|
191
|
+
def get_fleet_output(fleet_name: Optional[pulumi.Input[str]] = None,
|
|
192
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
193
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetFleetResult]:
|
|
194
|
+
"""
|
|
195
|
+
Gets a Fleet.
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
:param str fleet_name: The name of the Fleet resource.
|
|
199
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
200
|
+
"""
|
|
201
|
+
...
|