pulumi-azure-native 2.61.0a1726250321__py3-none-any.whl → 2.62.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 +434 -1
- pulumi_azure_native/appconfiguration/__init__.py +3 -0
- pulumi_azure_native/appconfiguration/configuration_store.py +3 -3
- pulumi_azure_native/appconfiguration/get_configuration_store.py +2 -2
- pulumi_azure_native/appconfiguration/get_key_value.py +2 -2
- pulumi_azure_native/appconfiguration/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/appconfiguration/get_replica.py +2 -2
- pulumi_azure_native/appconfiguration/key_value.py +3 -3
- pulumi_azure_native/appconfiguration/list_configuration_store_keys.py +2 -2
- pulumi_azure_native/appconfiguration/private_endpoint_connection.py +3 -3
- pulumi_azure_native/appconfiguration/replica.py +3 -3
- pulumi_azure_native/appconfiguration/v20230301/configuration_store.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/key_value.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/private_endpoint_connection.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/replica.py +1 -1
- pulumi_azure_native/appconfiguration/v20230801preview/configuration_store.py +1 -1
- pulumi_azure_native/appconfiguration/v20230801preview/key_value.py +1 -1
- pulumi_azure_native/appconfiguration/v20230801preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/appconfiguration/v20230801preview/replica.py +1 -1
- pulumi_azure_native/appconfiguration/v20230901preview/configuration_store.py +1 -1
- pulumi_azure_native/appconfiguration/v20230901preview/key_value.py +1 -1
- pulumi_azure_native/appconfiguration/v20230901preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/appconfiguration/v20230901preview/replica.py +1 -1
- pulumi_azure_native/appconfiguration/v20240501/__init__.py +19 -0
- pulumi_azure_native/appconfiguration/v20240501/_enums.py +78 -0
- pulumi_azure_native/appconfiguration/v20240501/_inputs.py +367 -0
- pulumi_azure_native/appconfiguration/v20240501/configuration_store.py +534 -0
- pulumi_azure_native/appconfiguration/v20240501/get_configuration_store.py +305 -0
- pulumi_azure_native/appconfiguration/v20240501/get_key_value.py +222 -0
- pulumi_azure_native/appconfiguration/v20240501/get_private_endpoint_connection.py +154 -0
- pulumi_azure_native/appconfiguration/v20240501/get_replica.py +167 -0
- pulumi_azure_native/appconfiguration/v20240501/key_value.py +323 -0
- pulumi_azure_native/appconfiguration/v20240501/list_configuration_store_keys.py +102 -0
- pulumi_azure_native/appconfiguration/v20240501/outputs.py +704 -0
- pulumi_azure_native/appconfiguration/v20240501/private_endpoint_connection.py +251 -0
- pulumi_azure_native/appconfiguration/v20240501/replica.py +239 -0
- pulumi_azure_native/containerservice/__init__.py +3 -0
- pulumi_azure_native/containerservice/agent_pool.py +3 -3
- pulumi_azure_native/containerservice/get_agent_pool.py +2 -2
- pulumi_azure_native/containerservice/get_load_balancer.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_managed_cluster_snapshot.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/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/load_balancer.py +3 -3
- pulumi_azure_native/containerservice/maintenance_configuration.py +3 -3
- pulumi_azure_native/containerservice/managed_cluster.py +3 -3
- pulumi_azure_native/containerservice/managed_cluster_snapshot.py +3 -3
- 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/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/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/managed_cluster_snapshot.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/managed_cluster_snapshot.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/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/managed_cluster_snapshot.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/managed_cluster_snapshot.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/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/managed_cluster_snapshot.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/managed_cluster_snapshot.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/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/managed_cluster_snapshot.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/managed_cluster_snapshot.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/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240202preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240202preview/managed_cluster_snapshot.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/v20240302preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240302preview/load_balancer.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/managed_cluster_snapshot.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/v20240402preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240402preview/load_balancer.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/managed_cluster_snapshot.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/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240502preview/load_balancer.py +1 -1
- 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/managed_cluster_snapshot.py +1 -1
- 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/v20240602preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240602preview/load_balancer.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/managed_cluster_snapshot.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/__init__.py +29 -0
- pulumi_azure_native/containerservice/v20240702preview/_enums.py +921 -0
- pulumi_azure_native/containerservice/v20240702preview/_inputs.py +9710 -0
- pulumi_azure_native/containerservice/v20240702preview/agent_pool.py +1691 -0
- pulumi_azure_native/containerservice/v20240702preview/get_agent_pool.py +817 -0
- pulumi_azure_native/containerservice/v20240702preview/get_load_balancer.py +206 -0
- pulumi_azure_native/containerservice/v20240702preview/get_maintenance_configuration.py +167 -0
- pulumi_azure_native/containerservice/v20240702preview/get_managed_cluster.py +838 -0
- pulumi_azure_native/containerservice/v20240702preview/get_managed_cluster_snapshot.py +188 -0
- pulumi_azure_native/containerservice/v20240702preview/get_private_endpoint_connection.py +154 -0
- pulumi_azure_native/containerservice/v20240702preview/get_snapshot.py +253 -0
- pulumi_azure_native/containerservice/v20240702preview/get_trusted_access_role_binding.py +167 -0
- pulumi_azure_native/containerservice/v20240702preview/list_managed_cluster_admin_credentials.py +89 -0
- pulumi_azure_native/containerservice/v20240702preview/list_managed_cluster_monitoring_user_credentials.py +89 -0
- pulumi_azure_native/containerservice/v20240702preview/list_managed_cluster_user_credentials.py +94 -0
- pulumi_azure_native/containerservice/v20240702preview/load_balancer.py +368 -0
- pulumi_azure_native/containerservice/v20240702preview/maintenance_configuration.py +279 -0
- pulumi_azure_native/containerservice/v20240702preview/managed_cluster.py +1595 -0
- pulumi_azure_native/containerservice/v20240702preview/managed_cluster_snapshot.py +297 -0
- pulumi_azure_native/containerservice/v20240702preview/outputs.py +8363 -0
- pulumi_azure_native/containerservice/v20240702preview/private_endpoint_connection.py +251 -0
- pulumi_azure_native/containerservice/v20240702preview/snapshot.py +347 -0
- pulumi_azure_native/containerservice/v20240702preview/trusted_access_role_binding.py +260 -0
- pulumi_azure_native/devhub/__init__.py +4 -0
- pulumi_azure_native/devhub/_enums.py +27 -0
- pulumi_azure_native/devhub/_inputs.py +20 -0
- pulumi_azure_native/devhub/get_adoo_auth_info.py +98 -0
- pulumi_azure_native/devhub/get_git_hub_o_auth.py +2 -2
- pulumi_azure_native/devhub/get_iac_profile.py +4 -0
- pulumi_azure_native/devhub/get_workflow.py +2 -2
- pulumi_azure_native/devhub/iac_profile.py +6 -1
- pulumi_azure_native/devhub/outputs.py +15 -14
- pulumi_azure_native/devhub/v20221011preview/workflow.py +1 -1
- pulumi_azure_native/devhub/v20230801/workflow.py +1 -1
- pulumi_azure_native/devhub/v20240501preview/_enums.py +27 -0
- pulumi_azure_native/devhub/v20240501preview/_inputs.py +20 -0
- pulumi_azure_native/devhub/v20240501preview/iac_profile.py +2 -1
- pulumi_azure_native/devhub/v20240501preview/outputs.py +15 -14
- pulumi_azure_native/devhub/v20240501preview/workflow.py +1 -1
- pulumi_azure_native/devhub/v20240801preview/__init__.py +16 -0
- pulumi_azure_native/devhub/v20240801preview/_enums.py +127 -0
- pulumi_azure_native/devhub/v20240801preview/_inputs.py +1446 -0
- pulumi_azure_native/devhub/v20240801preview/get_adoo_auth_info.py +96 -0
- pulumi_azure_native/devhub/v20240801preview/get_git_hub_o_auth.py +96 -0
- pulumi_azure_native/devhub/v20240801preview/get_iac_profile.py +325 -0
- pulumi_azure_native/devhub/v20240801preview/get_workflow.py +162 -0
- pulumi_azure_native/devhub/v20240801preview/iac_profile.py +542 -0
- pulumi_azure_native/devhub/v20240801preview/outputs.py +1527 -0
- pulumi_azure_native/devhub/v20240801preview/workflow.py +258 -0
- pulumi_azure_native/devhub/workflow.py +3 -3
- pulumi_azure_native/deviceregistry/__init__.py +13 -0
- pulumi_azure_native/deviceregistry/_enums.py +73 -4
- pulumi_azure_native/deviceregistry/_inputs.py +414 -9
- pulumi_azure_native/deviceregistry/asset.py +21 -17
- pulumi_azure_native/deviceregistry/asset_endpoint_profile.py +9 -5
- pulumi_azure_native/deviceregistry/discovered_asset.py +738 -0
- pulumi_azure_native/deviceregistry/discovered_asset_endpoint_profile.py +449 -0
- pulumi_azure_native/deviceregistry/get_asset.py +8 -4
- pulumi_azure_native/deviceregistry/get_asset_endpoint_profile.py +5 -1
- pulumi_azure_native/deviceregistry/get_discovered_asset.py +385 -0
- pulumi_azure_native/deviceregistry/get_discovered_asset_endpoint_profile.py +255 -0
- pulumi_azure_native/deviceregistry/get_schema.py +221 -0
- pulumi_azure_native/deviceregistry/get_schema_registry.py +242 -0
- pulumi_azure_native/deviceregistry/get_schema_version.py +200 -0
- pulumi_azure_native/deviceregistry/outputs.py +367 -22
- pulumi_azure_native/deviceregistry/schema.py +360 -0
- pulumi_azure_native/deviceregistry/schema_registry.py +398 -0
- pulumi_azure_native/deviceregistry/schema_version.py +302 -0
- pulumi_azure_native/deviceregistry/v20231101preview/_enums.py +4 -4
- pulumi_azure_native/deviceregistry/v20231101preview/_inputs.py +9 -9
- pulumi_azure_native/deviceregistry/v20231101preview/asset.py +17 -17
- pulumi_azure_native/deviceregistry/v20231101preview/asset_endpoint_profile.py +5 -5
- pulumi_azure_native/deviceregistry/v20231101preview/get_asset.py +4 -4
- pulumi_azure_native/deviceregistry/v20231101preview/get_asset_endpoint_profile.py +1 -1
- pulumi_azure_native/deviceregistry/v20231101preview/outputs.py +18 -22
- pulumi_azure_native/deviceregistry/v20240901preview/__init__.py +24 -0
- pulumi_azure_native/deviceregistry/v20240901preview/_enums.py +119 -0
- pulumi_azure_native/deviceregistry/v20240901preview/_inputs.py +968 -0
- pulumi_azure_native/deviceregistry/v20240901preview/asset.py +880 -0
- pulumi_azure_native/deviceregistry/v20240901preview/asset_endpoint_profile.py +436 -0
- pulumi_azure_native/deviceregistry/v20240901preview/discovered_asset.py +736 -0
- pulumi_azure_native/deviceregistry/v20240901preview/discovered_asset_endpoint_profile.py +447 -0
- pulumi_azure_native/deviceregistry/v20240901preview/get_asset.py +474 -0
- pulumi_azure_native/deviceregistry/v20240901preview/get_asset_endpoint_profile.py +266 -0
- pulumi_azure_native/deviceregistry/v20240901preview/get_discovered_asset.py +383 -0
- pulumi_azure_native/deviceregistry/v20240901preview/get_discovered_asset_endpoint_profile.py +253 -0
- pulumi_azure_native/deviceregistry/v20240901preview/get_schema.py +219 -0
- pulumi_azure_native/deviceregistry/v20240901preview/get_schema_registry.py +240 -0
- pulumi_azure_native/deviceregistry/v20240901preview/get_schema_version.py +198 -0
- pulumi_azure_native/deviceregistry/v20240901preview/outputs.py +1243 -0
- pulumi_azure_native/deviceregistry/v20240901preview/schema.py +358 -0
- pulumi_azure_native/deviceregistry/v20240901preview/schema_registry.py +396 -0
- pulumi_azure_native/deviceregistry/v20240901preview/schema_version.py +300 -0
- pulumi_azure_native/documentdb/__init__.py +6 -0
- pulumi_azure_native/documentdb/cassandra_cluster.py +3 -3
- pulumi_azure_native/documentdb/cassandra_data_center.py +3 -3
- pulumi_azure_native/documentdb/cassandra_resource_cassandra_keyspace.py +3 -3
- pulumi_azure_native/documentdb/cassandra_resource_cassandra_table.py +3 -3
- pulumi_azure_native/documentdb/cassandra_resource_cassandra_view.py +3 -3
- pulumi_azure_native/documentdb/database_account.py +3 -3
- pulumi_azure_native/documentdb/get_cassandra_cluster.py +2 -2
- pulumi_azure_native/documentdb/get_cassandra_data_center.py +2 -2
- pulumi_azure_native/documentdb/get_cassandra_resource_cassandra_keyspace.py +2 -2
- pulumi_azure_native/documentdb/get_cassandra_resource_cassandra_table.py +2 -2
- pulumi_azure_native/documentdb/get_cassandra_resource_cassandra_view.py +2 -2
- pulumi_azure_native/documentdb/get_database_account.py +2 -2
- pulumi_azure_native/documentdb/get_graph_resource_graph.py +2 -2
- pulumi_azure_native/documentdb/get_gremlin_resource_gremlin_database.py +2 -2
- pulumi_azure_native/documentdb/get_gremlin_resource_gremlin_graph.py +2 -2
- pulumi_azure_native/documentdb/get_mongo_db_resource_mongo_db_collection.py +2 -2
- pulumi_azure_native/documentdb/get_mongo_db_resource_mongo_db_database.py +2 -2
- pulumi_azure_native/documentdb/get_mongo_db_resource_mongo_role_definition.py +2 -2
- pulumi_azure_native/documentdb/get_mongo_db_resource_mongo_user_definition.py +2 -2
- pulumi_azure_native/documentdb/get_notebook_workspace.py +2 -2
- pulumi_azure_native/documentdb/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/documentdb/get_service.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_container.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_database.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_role_assignment.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_role_definition.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_stored_procedure.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_trigger.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_user_defined_function.py +2 -2
- pulumi_azure_native/documentdb/get_table_resource_table.py +2 -2
- pulumi_azure_native/documentdb/get_throughput_pool.py +2 -2
- pulumi_azure_native/documentdb/get_throughput_pool_account.py +2 -2
- pulumi_azure_native/documentdb/graph_resource_graph.py +3 -3
- pulumi_azure_native/documentdb/gremlin_resource_gremlin_database.py +3 -3
- pulumi_azure_native/documentdb/gremlin_resource_gremlin_graph.py +3 -3
- pulumi_azure_native/documentdb/list_database_account_connection_strings.py +2 -2
- pulumi_azure_native/documentdb/list_database_account_keys.py +2 -2
- pulumi_azure_native/documentdb/list_notebook_workspace_connection_info.py +2 -2
- pulumi_azure_native/documentdb/mongo_db_resource_mongo_db_collection.py +3 -3
- pulumi_azure_native/documentdb/mongo_db_resource_mongo_db_database.py +3 -3
- pulumi_azure_native/documentdb/mongo_db_resource_mongo_role_definition.py +3 -3
- pulumi_azure_native/documentdb/mongo_db_resource_mongo_user_definition.py +3 -3
- pulumi_azure_native/documentdb/notebook_workspace.py +3 -3
- pulumi_azure_native/documentdb/private_endpoint_connection.py +3 -3
- pulumi_azure_native/documentdb/service.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_container.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_database.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_role_assignment.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_role_definition.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_stored_procedure.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_trigger.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_user_defined_function.py +3 -3
- pulumi_azure_native/documentdb/table_resource_table.py +3 -3
- pulumi_azure_native/documentdb/throughput_pool.py +3 -3
- pulumi_azure_native/documentdb/throughput_pool_account.py +3 -3
- pulumi_azure_native/documentdb/v20210401preview/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20210701preview/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20230301preview/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/cassandra_resource_cassandra_view.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/graph_resource_graph.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20230415/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20230415/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20230415/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20230415/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20230415/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20230415/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20230415/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20230415/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20230415/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20230415/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230415/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230415/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20230415/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20230415/service.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20230415/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20230915/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20230915/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20230915/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20230915/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20230915/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20230915/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20230915/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20230915/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20230915/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20230915/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230915/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230915/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20230915/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20230915/service.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20230915/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/cassandra_resource_cassandra_view.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/graph_resource_graph.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/service.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20231115/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20231115/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20231115/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20231115/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20231115/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20231115/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20231115/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20231115/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20231115/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20231115/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20231115/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20231115/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20231115/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20231115/service.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20231115/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/cassandra_resource_cassandra_view.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/graph_resource_graph.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/service.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/throughput_pool.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/throughput_pool_account.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/cassandra_resource_cassandra_view.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/graph_resource_graph.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/service.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/throughput_pool.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/throughput_pool_account.py +1 -1
- pulumi_azure_native/documentdb/v20240515/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20240515/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20240515/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20240515/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20240515/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20240515/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20240515/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20240515/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20240515/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20240515/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240515/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240515/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20240515/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20240515/service.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20240515/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/cassandra_resource_cassandra_view.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/graph_resource_graph.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/service.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/throughput_pool.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/throughput_pool_account.py +1 -1
- pulumi_azure_native/documentdb/v20240815/__init__.py +57 -0
- pulumi_azure_native/documentdb/v20240815/_enums.py +347 -0
- pulumi_azure_native/documentdb/v20240815/_inputs.py +5585 -0
- pulumi_azure_native/documentdb/v20240815/cassandra_cluster.py +277 -0
- pulumi_azure_native/documentdb/v20240815/cassandra_data_center.py +211 -0
- pulumi_azure_native/documentdb/v20240815/cassandra_resource_cassandra_keyspace.py +292 -0
- pulumi_azure_native/documentdb/v20240815/cassandra_resource_cassandra_table.py +313 -0
- pulumi_azure_native/documentdb/v20240815/database_account.py +1276 -0
- pulumi_azure_native/documentdb/v20240815/get_cassandra_cluster.py +162 -0
- pulumi_azure_native/documentdb/v20240815/get_cassandra_data_center.py +128 -0
- pulumi_azure_native/documentdb/v20240815/get_cassandra_resource_cassandra_keyspace.py +161 -0
- pulumi_azure_native/documentdb/v20240815/get_cassandra_resource_cassandra_table.py +166 -0
- pulumi_azure_native/documentdb/v20240815/get_database_account.py +682 -0
- pulumi_azure_native/documentdb/v20240815/get_gremlin_resource_gremlin_database.py +161 -0
- pulumi_azure_native/documentdb/v20240815/get_gremlin_resource_gremlin_graph.py +166 -0
- pulumi_azure_native/documentdb/v20240815/get_mongo_db_resource_mongo_db_collection.py +166 -0
- pulumi_azure_native/documentdb/v20240815/get_mongo_db_resource_mongo_db_database.py +161 -0
- pulumi_azure_native/documentdb/v20240815/get_mongo_db_resource_mongo_role_definition.py +167 -0
- pulumi_azure_native/documentdb/v20240815/get_mongo_db_resource_mongo_user_definition.py +193 -0
- pulumi_azure_native/documentdb/v20240815/get_notebook_workspace.py +140 -0
- pulumi_azure_native/documentdb/v20240815/get_private_endpoint_connection.py +167 -0
- pulumi_azure_native/documentdb/v20240815/get_service.py +128 -0
- pulumi_azure_native/documentdb/v20240815/get_sql_resource_sql_container.py +166 -0
- pulumi_azure_native/documentdb/v20240815/get_sql_resource_sql_database.py +161 -0
- pulumi_azure_native/documentdb/v20240815/get_sql_resource_sql_role_assignment.py +153 -0
- pulumi_azure_native/documentdb/v20240815/get_sql_resource_sql_role_definition.py +154 -0
- pulumi_azure_native/documentdb/v20240815/get_sql_resource_sql_stored_procedure.py +161 -0
- pulumi_azure_native/documentdb/v20240815/get_sql_resource_sql_trigger.py +161 -0
- pulumi_azure_native/documentdb/v20240815/get_sql_resource_sql_user_defined_function.py +161 -0
- pulumi_azure_native/documentdb/v20240815/get_table_resource_table.py +161 -0
- pulumi_azure_native/documentdb/v20240815/gremlin_resource_gremlin_database.py +293 -0
- pulumi_azure_native/documentdb/v20240815/gremlin_resource_gremlin_graph.py +314 -0
- pulumi_azure_native/documentdb/v20240815/list_database_account_connection_strings.py +84 -0
- pulumi_azure_native/documentdb/v20240815/list_database_account_keys.py +122 -0
- pulumi_azure_native/documentdb/v20240815/list_notebook_workspace_connection_info.py +101 -0
- pulumi_azure_native/documentdb/v20240815/mongo_db_resource_mongo_db_collection.py +314 -0
- pulumi_azure_native/documentdb/v20240815/mongo_db_resource_mongo_db_database.py +293 -0
- pulumi_azure_native/documentdb/v20240815/mongo_db_resource_mongo_role_definition.py +317 -0
- pulumi_azure_native/documentdb/v20240815/mongo_db_resource_mongo_user_definition.py +355 -0
- pulumi_azure_native/documentdb/v20240815/notebook_workspace.py +199 -0
- pulumi_azure_native/documentdb/v20240815/outputs.py +6291 -0
- pulumi_azure_native/documentdb/v20240815/private_endpoint_connection.py +297 -0
- pulumi_azure_native/documentdb/v20240815/service.py +211 -0
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_container.py +314 -0
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_database.py +293 -0
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_role_assignment.py +266 -0
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_role_definition.py +288 -0
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_stored_procedure.py +328 -0
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_trigger.py +329 -0
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_user_defined_function.py +328 -0
- pulumi_azure_native/documentdb/v20240815/table_resource_table.py +293 -0
- pulumi_azure_native/documentdb/v20240901preview/__init__.py +65 -0
- pulumi_azure_native/documentdb/v20240901preview/_enums.py +405 -0
- pulumi_azure_native/documentdb/v20240901preview/_inputs.py +6006 -0
- pulumi_azure_native/documentdb/v20240901preview/cassandra_cluster.py +277 -0
- pulumi_azure_native/documentdb/v20240901preview/cassandra_data_center.py +211 -0
- pulumi_azure_native/documentdb/v20240901preview/cassandra_resource_cassandra_keyspace.py +322 -0
- pulumi_azure_native/documentdb/v20240901preview/cassandra_resource_cassandra_table.py +343 -0
- pulumi_azure_native/documentdb/v20240901preview/cassandra_resource_cassandra_view.py +343 -0
- pulumi_azure_native/documentdb/v20240901preview/database_account.py +1460 -0
- pulumi_azure_native/documentdb/v20240901preview/get_cassandra_cluster.py +162 -0
- pulumi_azure_native/documentdb/v20240901preview/get_cassandra_data_center.py +128 -0
- pulumi_azure_native/documentdb/v20240901preview/get_cassandra_resource_cassandra_keyspace.py +174 -0
- pulumi_azure_native/documentdb/v20240901preview/get_cassandra_resource_cassandra_table.py +179 -0
- pulumi_azure_native/documentdb/v20240901preview/get_cassandra_resource_cassandra_view.py +179 -0
- pulumi_azure_native/documentdb/v20240901preview/get_database_account.py +773 -0
- pulumi_azure_native/documentdb/v20240901preview/get_graph_resource_graph.py +174 -0
- pulumi_azure_native/documentdb/v20240901preview/get_gremlin_resource_gremlin_database.py +174 -0
- pulumi_azure_native/documentdb/v20240901preview/get_gremlin_resource_gremlin_graph.py +179 -0
- pulumi_azure_native/documentdb/v20240901preview/get_mongo_db_resource_mongo_db_collection.py +179 -0
- pulumi_azure_native/documentdb/v20240901preview/get_mongo_db_resource_mongo_db_database.py +174 -0
- pulumi_azure_native/documentdb/v20240901preview/get_mongo_db_resource_mongo_role_definition.py +167 -0
- pulumi_azure_native/documentdb/v20240901preview/get_mongo_db_resource_mongo_user_definition.py +193 -0
- pulumi_azure_native/documentdb/v20240901preview/get_notebook_workspace.py +140 -0
- pulumi_azure_native/documentdb/v20240901preview/get_private_endpoint_connection.py +180 -0
- pulumi_azure_native/documentdb/v20240901preview/get_service.py +128 -0
- pulumi_azure_native/documentdb/v20240901preview/get_sql_resource_sql_container.py +179 -0
- pulumi_azure_native/documentdb/v20240901preview/get_sql_resource_sql_database.py +174 -0
- pulumi_azure_native/documentdb/v20240901preview/get_sql_resource_sql_role_assignment.py +153 -0
- pulumi_azure_native/documentdb/v20240901preview/get_sql_resource_sql_role_definition.py +154 -0
- pulumi_azure_native/documentdb/v20240901preview/get_sql_resource_sql_stored_procedure.py +174 -0
- pulumi_azure_native/documentdb/v20240901preview/get_sql_resource_sql_trigger.py +174 -0
- pulumi_azure_native/documentdb/v20240901preview/get_sql_resource_sql_user_defined_function.py +174 -0
- pulumi_azure_native/documentdb/v20240901preview/get_table_resource_table.py +174 -0
- pulumi_azure_native/documentdb/v20240901preview/get_throughput_pool.py +175 -0
- pulumi_azure_native/documentdb/v20240901preview/get_throughput_pool_account.py +180 -0
- pulumi_azure_native/documentdb/v20240901preview/graph_resource_graph.py +322 -0
- pulumi_azure_native/documentdb/v20240901preview/gremlin_resource_gremlin_database.py +322 -0
- pulumi_azure_native/documentdb/v20240901preview/gremlin_resource_gremlin_graph.py +343 -0
- pulumi_azure_native/documentdb/v20240901preview/list_database_account_connection_strings.py +84 -0
- pulumi_azure_native/documentdb/v20240901preview/list_database_account_keys.py +122 -0
- pulumi_azure_native/documentdb/v20240901preview/list_notebook_workspace_connection_info.py +101 -0
- pulumi_azure_native/documentdb/v20240901preview/mongo_db_resource_mongo_db_collection.py +343 -0
- pulumi_azure_native/documentdb/v20240901preview/mongo_db_resource_mongo_db_database.py +322 -0
- pulumi_azure_native/documentdb/v20240901preview/mongo_db_resource_mongo_role_definition.py +317 -0
- pulumi_azure_native/documentdb/v20240901preview/mongo_db_resource_mongo_user_definition.py +355 -0
- pulumi_azure_native/documentdb/v20240901preview/notebook_workspace.py +199 -0
- pulumi_azure_native/documentdb/v20240901preview/outputs.py +6889 -0
- pulumi_azure_native/documentdb/v20240901preview/private_endpoint_connection.py +307 -0
- pulumi_azure_native/documentdb/v20240901preview/service.py +211 -0
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_container.py +343 -0
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_database.py +322 -0
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_role_assignment.py +266 -0
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_role_definition.py +288 -0
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_stored_procedure.py +358 -0
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_trigger.py +358 -0
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_user_defined_function.py +358 -0
- pulumi_azure_native/documentdb/v20240901preview/table_resource_table.py +322 -0
- pulumi_azure_native/documentdb/v20240901preview/throughput_pool.py +266 -0
- pulumi_azure_native/documentdb/v20240901preview/throughput_pool_account.py +268 -0
- pulumi_azure_native/hybridcompute/__init__.py +3 -0
- pulumi_azure_native/hybridcompute/gateway.py +3 -3
- pulumi_azure_native/hybridcompute/get_gateway.py +2 -2
- pulumi_azure_native/hybridcompute/get_license.py +2 -2
- pulumi_azure_native/hybridcompute/get_license_profile.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_extension.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_run_command.py +2 -2
- pulumi_azure_native/hybridcompute/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/hybridcompute/get_private_link_scope.py +2 -2
- pulumi_azure_native/hybridcompute/license.py +3 -3
- pulumi_azure_native/hybridcompute/license_profile.py +3 -3
- pulumi_azure_native/hybridcompute/machine.py +3 -3
- pulumi_azure_native/hybridcompute/machine_extension.py +3 -3
- pulumi_azure_native/hybridcompute/machine_run_command.py +3 -3
- pulumi_azure_native/hybridcompute/private_endpoint_connection.py +3 -3
- pulumi_azure_native/hybridcompute/private_link_scope.py +3 -3
- pulumi_azure_native/hybridcompute/v20200802/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20220510preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20220510preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine_run_command.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/gateway.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/machine_run_command.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/gateway.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/machine_run_command.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20240710/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20240710/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20240710/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20240710/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20240710/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20240710/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20240731preview/__init__.py +26 -0
- pulumi_azure_native/hybridcompute/v20240731preview/_enums.py +172 -0
- pulumi_azure_native/hybridcompute/v20240731preview/_inputs.py +1924 -0
- pulumi_azure_native/hybridcompute/v20240731preview/gateway.py +316 -0
- pulumi_azure_native/hybridcompute/v20240731preview/get_gateway.py +214 -0
- pulumi_azure_native/hybridcompute/v20240731preview/get_license.py +201 -0
- pulumi_azure_native/hybridcompute/v20240731preview/get_license_profile.py +362 -0
- pulumi_azure_native/hybridcompute/v20240731preview/get_machine.py +635 -0
- pulumi_azure_native/hybridcompute/v20240731preview/get_machine_extension.py +167 -0
- pulumi_azure_native/hybridcompute/v20240731preview/get_machine_run_command.py +323 -0
- pulumi_azure_native/hybridcompute/v20240731preview/get_private_endpoint_connection.py +141 -0
- pulumi_azure_native/hybridcompute/v20240731preview/get_private_link_scope.py +162 -0
- pulumi_azure_native/hybridcompute/v20240731preview/license.py +326 -0
- pulumi_azure_native/hybridcompute/v20240731preview/license_profile.py +505 -0
- pulumi_azure_native/hybridcompute/v20240731preview/machine.py +885 -0
- pulumi_azure_native/hybridcompute/v20240731preview/machine_extension.py +279 -0
- pulumi_azure_native/hybridcompute/v20240731preview/machine_run_command.py +592 -0
- pulumi_azure_native/hybridcompute/v20240731preview/outputs.py +3556 -0
- pulumi_azure_native/hybridcompute/v20240731preview/private_endpoint_connection.py +220 -0
- pulumi_azure_native/hybridcompute/v20240731preview/private_link_scope.py +258 -0
- pulumi_azure_native/hybridnetwork/__init__.py +5 -0
- pulumi_azure_native/hybridnetwork/artifact_manifest.py +5 -1
- pulumi_azure_native/hybridnetwork/artifact_store.py +5 -1
- pulumi_azure_native/hybridnetwork/configuration_group_schema.py +5 -1
- pulumi_azure_native/hybridnetwork/configuration_group_value.py +5 -1
- pulumi_azure_native/hybridnetwork/get_artifact_manifest.py +4 -0
- pulumi_azure_native/hybridnetwork/get_artifact_store.py +4 -0
- pulumi_azure_native/hybridnetwork/get_configuration_group_schema.py +4 -0
- pulumi_azure_native/hybridnetwork/get_configuration_group_value.py +4 -0
- pulumi_azure_native/hybridnetwork/get_network_function.py +2 -2
- pulumi_azure_native/hybridnetwork/get_network_function_definition_group.py +4 -0
- pulumi_azure_native/hybridnetwork/get_network_function_definition_version.py +4 -0
- pulumi_azure_native/hybridnetwork/get_network_service_design_group.py +4 -0
- pulumi_azure_native/hybridnetwork/get_network_service_design_version.py +4 -0
- pulumi_azure_native/hybridnetwork/get_publisher.py +4 -0
- pulumi_azure_native/hybridnetwork/get_site.py +4 -0
- pulumi_azure_native/hybridnetwork/get_site_network_service.py +4 -0
- pulumi_azure_native/hybridnetwork/list_artifact_manifest_credential.py +4 -0
- pulumi_azure_native/hybridnetwork/list_artifact_store_network_fabric_controller_private_end_points.py +104 -0
- pulumi_azure_native/hybridnetwork/list_artifact_store_private_end_points.py +104 -0
- pulumi_azure_native/hybridnetwork/network_function.py +3 -3
- pulumi_azure_native/hybridnetwork/network_function_definition_group.py +5 -1
- pulumi_azure_native/hybridnetwork/network_function_definition_version.py +5 -1
- pulumi_azure_native/hybridnetwork/network_service_design_group.py +5 -1
- pulumi_azure_native/hybridnetwork/network_service_design_version.py +5 -1
- pulumi_azure_native/hybridnetwork/outputs.py +48 -0
- pulumi_azure_native/hybridnetwork/publisher.py +5 -1
- pulumi_azure_native/hybridnetwork/site.py +5 -1
- pulumi_azure_native/hybridnetwork/site_network_service.py +5 -1
- pulumi_azure_native/hybridnetwork/v20220101preview/network_function.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/artifact_manifest.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/artifact_store.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/configuration_group_schema.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/configuration_group_value.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/network_function.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/network_function_definition_group.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/network_function_definition_version.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/network_service_design_group.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/network_service_design_version.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/publisher.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/site.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/site_network_service.py +1 -1
- pulumi_azure_native/hybridnetwork/v20240415/__init__.py +37 -0
- pulumi_azure_native/hybridnetwork/v20240415/_enums.py +205 -0
- pulumi_azure_native/hybridnetwork/v20240415/_inputs.py +4689 -0
- pulumi_azure_native/hybridnetwork/v20240415/artifact_manifest.py +300 -0
- pulumi_azure_native/hybridnetwork/v20240415/artifact_store.py +279 -0
- pulumi_azure_native/hybridnetwork/v20240415/configuration_group_schema.py +278 -0
- pulumi_azure_native/hybridnetwork/v20240415/configuration_group_value.py +257 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_artifact_manifest.py +172 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_artifact_store.py +167 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_configuration_group_schema.py +167 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_configuration_group_value.py +162 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_network_function.py +188 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_network_function_definition_group.py +167 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_network_function_definition_version.py +172 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_network_service_design_group.py +167 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_network_service_design_version.py +172 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_publisher.py +175 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_site.py +162 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_site_network_service.py +188 -0
- pulumi_azure_native/hybridnetwork/v20240415/list_artifact_manifest_credential.py +93 -0
- pulumi_azure_native/hybridnetwork/v20240415/list_artifact_store_network_fabric_controller_private_end_points.py +102 -0
- pulumi_azure_native/hybridnetwork/v20240415/list_artifact_store_private_end_points.py +102 -0
- pulumi_azure_native/hybridnetwork/v20240415/network_function.py +297 -0
- pulumi_azure_native/hybridnetwork/v20240415/network_function_definition_group.py +278 -0
- pulumi_azure_native/hybridnetwork/v20240415/network_function_definition_version.py +300 -0
- pulumi_azure_native/hybridnetwork/v20240415/network_service_design_group.py +278 -0
- pulumi_azure_native/hybridnetwork/v20240415/network_service_design_version.py +300 -0
- pulumi_azure_native/hybridnetwork/v20240415/outputs.py +4660 -0
- pulumi_azure_native/hybridnetwork/v20240415/publisher.py +287 -0
- pulumi_azure_native/hybridnetwork/v20240415/site.py +257 -0
- pulumi_azure_native/hybridnetwork/v20240415/site_network_service.py +316 -0
- pulumi_azure_native/maps/__init__.py +3 -0
- pulumi_azure_native/maps/account.py +3 -3
- pulumi_azure_native/maps/creator.py +3 -3
- pulumi_azure_native/maps/get_account.py +2 -2
- pulumi_azure_native/maps/get_creator.py +2 -2
- pulumi_azure_native/maps/list_account_keys.py +2 -2
- pulumi_azure_native/maps/list_account_sas.py +2 -2
- pulumi_azure_native/maps/v20180501/account.py +1 -1
- pulumi_azure_native/maps/v20200201preview/creator.py +1 -1
- pulumi_azure_native/maps/v20210201/account.py +1 -1
- pulumi_azure_native/maps/v20210201/creator.py +1 -1
- pulumi_azure_native/maps/v20211201preview/account.py +1 -1
- pulumi_azure_native/maps/v20211201preview/creator.py +1 -1
- pulumi_azure_native/maps/v20230601/account.py +1 -1
- pulumi_azure_native/maps/v20230601/creator.py +1 -1
- pulumi_azure_native/maps/v20230801preview/account.py +1 -1
- pulumi_azure_native/maps/v20230801preview/creator.py +1 -1
- pulumi_azure_native/maps/v20231201preview/account.py +1 -1
- pulumi_azure_native/maps/v20231201preview/creator.py +1 -1
- pulumi_azure_native/maps/v20240101preview/account.py +1 -1
- pulumi_azure_native/maps/v20240101preview/creator.py +1 -1
- pulumi_azure_native/maps/v20240701preview/__init__.py +16 -0
- pulumi_azure_native/maps/v20240701preview/_enums.py +54 -0
- pulumi_azure_native/maps/v20240701preview/_inputs.py +695 -0
- pulumi_azure_native/maps/v20240701preview/account.py +346 -0
- pulumi_azure_native/maps/v20240701preview/creator.py +279 -0
- pulumi_azure_native/maps/v20240701preview/get_account.py +201 -0
- pulumi_azure_native/maps/v20240701preview/get_creator.py +167 -0
- pulumi_azure_native/maps/v20240701preview/list_account_keys.py +122 -0
- pulumi_azure_native/maps/v20240701preview/list_account_sas.py +122 -0
- pulumi_azure_native/maps/v20240701preview/outputs.py +862 -0
- pulumi_azure_native/network/__init__.py +14 -0
- pulumi_azure_native/network/_enums.py +30 -0
- pulumi_azure_native/network/_inputs.py +187 -20
- pulumi_azure_native/network/admin_rule.py +3 -3
- pulumi_azure_native/network/admin_rule_collection.py +3 -3
- pulumi_azure_native/network/application_gateway.py +3 -3
- pulumi_azure_native/network/application_gateway_private_endpoint_connection.py +3 -3
- pulumi_azure_native/network/application_security_group.py +3 -3
- pulumi_azure_native/network/azure_firewall.py +3 -3
- pulumi_azure_native/network/bastion_host.py +3 -3
- pulumi_azure_native/network/configuration_policy_group.py +3 -3
- pulumi_azure_native/network/connection_monitor.py +3 -3
- pulumi_azure_native/network/connectivity_configuration.py +3 -3
- pulumi_azure_native/network/custom_ip_prefix.py +3 -3
- pulumi_azure_native/network/ddos_custom_policy.py +3 -3
- pulumi_azure_native/network/ddos_protection_plan.py +3 -3
- pulumi_azure_native/network/default_admin_rule.py +1 -1
- pulumi_azure_native/network/default_user_rule.py +1 -1
- pulumi_azure_native/network/dscp_configuration.py +3 -3
- pulumi_azure_native/network/express_route_circuit.py +3 -3
- pulumi_azure_native/network/express_route_circuit_authorization.py +3 -3
- pulumi_azure_native/network/express_route_circuit_connection.py +3 -3
- pulumi_azure_native/network/express_route_circuit_peering.py +3 -3
- pulumi_azure_native/network/express_route_connection.py +3 -3
- pulumi_azure_native/network/express_route_cross_connection_peering.py +3 -3
- pulumi_azure_native/network/express_route_gateway.py +3 -3
- pulumi_azure_native/network/express_route_port.py +3 -3
- pulumi_azure_native/network/express_route_port_authorization.py +3 -3
- pulumi_azure_native/network/firewall_policy.py +3 -3
- pulumi_azure_native/network/firewall_policy_draft.py +3 -3
- pulumi_azure_native/network/firewall_policy_rule_collection_group.py +3 -3
- pulumi_azure_native/network/firewall_policy_rule_collection_group_draft.py +3 -3
- pulumi_azure_native/network/flow_log.py +3 -3
- pulumi_azure_native/network/get_active_sessions.py +2 -2
- pulumi_azure_native/network/get_admin_rule.py +2 -2
- pulumi_azure_native/network/get_admin_rule_collection.py +2 -2
- pulumi_azure_native/network/get_application_gateway.py +2 -2
- pulumi_azure_native/network/get_application_gateway_backend_health_on_demand.py +2 -2
- pulumi_azure_native/network/get_application_gateway_private_endpoint_connection.py +2 -2
- pulumi_azure_native/network/get_application_security_group.py +2 -2
- pulumi_azure_native/network/get_azure_firewall.py +2 -2
- pulumi_azure_native/network/get_bastion_host.py +2 -2
- pulumi_azure_native/network/get_bastion_shareable_link.py +2 -2
- pulumi_azure_native/network/get_configuration_policy_group.py +2 -2
- pulumi_azure_native/network/get_connection_monitor.py +2 -2
- pulumi_azure_native/network/get_connectivity_configuration.py +2 -2
- pulumi_azure_native/network/get_custom_ip_prefix.py +2 -2
- pulumi_azure_native/network/get_ddos_custom_policy.py +2 -2
- pulumi_azure_native/network/get_ddos_protection_plan.py +2 -2
- pulumi_azure_native/network/get_dscp_configuration.py +2 -2
- pulumi_azure_native/network/get_express_route_circuit.py +2 -2
- pulumi_azure_native/network/get_express_route_circuit_authorization.py +2 -2
- pulumi_azure_native/network/get_express_route_circuit_connection.py +2 -2
- pulumi_azure_native/network/get_express_route_circuit_peering.py +2 -2
- pulumi_azure_native/network/get_express_route_connection.py +2 -2
- pulumi_azure_native/network/get_express_route_cross_connection_peering.py +2 -2
- pulumi_azure_native/network/get_express_route_gateway.py +2 -2
- pulumi_azure_native/network/get_express_route_port.py +2 -2
- pulumi_azure_native/network/get_express_route_port_authorization.py +2 -2
- pulumi_azure_native/network/get_firewall_policy.py +2 -2
- pulumi_azure_native/network/get_firewall_policy_draft.py +2 -2
- pulumi_azure_native/network/get_firewall_policy_rule_collection_group.py +2 -2
- pulumi_azure_native/network/get_firewall_policy_rule_collection_group_draft.py +2 -2
- pulumi_azure_native/network/get_flow_log.py +2 -2
- pulumi_azure_native/network/get_hub_route_table.py +2 -2
- pulumi_azure_native/network/get_hub_virtual_network_connection.py +2 -2
- pulumi_azure_native/network/get_inbound_nat_rule.py +2 -2
- pulumi_azure_native/network/get_ip_allocation.py +2 -2
- pulumi_azure_native/network/get_ip_group.py +2 -2
- pulumi_azure_native/network/get_load_balancer.py +2 -2
- pulumi_azure_native/network/get_load_balancer_backend_address_pool.py +2 -2
- pulumi_azure_native/network/get_local_network_gateway.py +2 -2
- pulumi_azure_native/network/get_management_group_network_manager_connection.py +2 -2
- pulumi_azure_native/network/get_nat_gateway.py +2 -2
- pulumi_azure_native/network/get_nat_rule.py +2 -2
- pulumi_azure_native/network/get_network_group.py +2 -2
- pulumi_azure_native/network/get_network_interface.py +2 -2
- pulumi_azure_native/network/get_network_interface_tap_configuration.py +2 -2
- pulumi_azure_native/network/get_network_manager.py +2 -2
- pulumi_azure_native/network/get_network_manager_routing_configuration.py +182 -0
- pulumi_azure_native/network/get_network_profile.py +2 -2
- pulumi_azure_native/network/get_network_security_group.py +2 -2
- pulumi_azure_native/network/get_network_virtual_appliance.py +2 -2
- pulumi_azure_native/network/get_network_watcher.py +2 -2
- pulumi_azure_native/network/get_p2s_vpn_gateway.py +2 -2
- pulumi_azure_native/network/get_p2s_vpn_gateway_p2s_vpn_connection_health.py +2 -2
- pulumi_azure_native/network/get_p2s_vpn_gateway_p2s_vpn_connection_health_detailed.py +2 -2
- pulumi_azure_native/network/get_packet_capture.py +2 -2
- pulumi_azure_native/network/get_private_dns_zone_group.py +2 -2
- pulumi_azure_native/network/get_private_endpoint.py +2 -2
- pulumi_azure_native/network/get_private_link_service.py +2 -2
- pulumi_azure_native/network/get_private_link_service_private_endpoint_connection.py +2 -2
- pulumi_azure_native/network/get_public_ip_address.py +2 -2
- pulumi_azure_native/network/get_public_ip_prefix.py +2 -2
- pulumi_azure_native/network/get_route.py +3 -3
- pulumi_azure_native/network/get_route_filter.py +2 -2
- pulumi_azure_native/network/get_route_filter_rule.py +2 -2
- pulumi_azure_native/network/get_route_map.py +2 -2
- pulumi_azure_native/network/get_route_table.py +2 -2
- pulumi_azure_native/network/get_routing_intent.py +2 -2
- pulumi_azure_native/network/get_routing_rule.py +218 -0
- pulumi_azure_native/network/get_routing_rule_collection.py +213 -0
- pulumi_azure_native/network/get_scope_connection.py +2 -2
- pulumi_azure_native/network/get_security_admin_configuration.py +2 -2
- pulumi_azure_native/network/get_security_partner_provider.py +2 -2
- pulumi_azure_native/network/get_security_rule.py +2 -2
- pulumi_azure_native/network/get_security_user_configuration.py +2 -2
- pulumi_azure_native/network/get_security_user_rule.py +270 -0
- pulumi_azure_native/network/get_security_user_rule_collection.py +200 -0
- pulumi_azure_native/network/get_service_endpoint_policy.py +2 -2
- pulumi_azure_native/network/get_service_endpoint_policy_definition.py +2 -2
- pulumi_azure_native/network/get_static_member.py +2 -2
- pulumi_azure_native/network/get_subnet.py +2 -2
- pulumi_azure_native/network/get_subscription_network_manager_connection.py +2 -2
- pulumi_azure_native/network/get_virtual_appliance_site.py +2 -2
- pulumi_azure_native/network/get_virtual_hub.py +2 -2
- pulumi_azure_native/network/get_virtual_hub_bgp_connection.py +2 -2
- pulumi_azure_native/network/get_virtual_hub_ip_configuration.py +2 -2
- pulumi_azure_native/network/get_virtual_hub_route_table_v2.py +2 -2
- pulumi_azure_native/network/get_virtual_network.py +2 -2
- pulumi_azure_native/network/get_virtual_network_gateway.py +2 -2
- pulumi_azure_native/network/get_virtual_network_gateway_advertised_routes.py +2 -2
- pulumi_azure_native/network/get_virtual_network_gateway_bgp_peer_status.py +2 -2
- pulumi_azure_native/network/get_virtual_network_gateway_connection.py +2 -2
- pulumi_azure_native/network/get_virtual_network_gateway_connection_ike_sas.py +2 -2
- pulumi_azure_native/network/get_virtual_network_gateway_learned_routes.py +2 -2
- pulumi_azure_native/network/get_virtual_network_gateway_nat_rule.py +2 -2
- pulumi_azure_native/network/get_virtual_network_gateway_vpn_profile_package_url.py +2 -2
- pulumi_azure_native/network/get_virtual_network_gateway_vpnclient_connection_health.py +2 -2
- pulumi_azure_native/network/get_virtual_network_gateway_vpnclient_ipsec_parameters.py +2 -2
- pulumi_azure_native/network/get_virtual_network_peering.py +2 -2
- pulumi_azure_native/network/get_virtual_network_tap.py +2 -2
- pulumi_azure_native/network/get_virtual_router.py +2 -2
- pulumi_azure_native/network/get_virtual_router_peering.py +2 -2
- pulumi_azure_native/network/get_virtual_wan.py +2 -2
- pulumi_azure_native/network/get_vpn_connection.py +2 -2
- pulumi_azure_native/network/get_vpn_gateway.py +2 -2
- pulumi_azure_native/network/get_vpn_link_connection_ike_sas.py +2 -2
- pulumi_azure_native/network/get_vpn_server_configuration.py +2 -2
- pulumi_azure_native/network/get_vpn_site.py +2 -2
- pulumi_azure_native/network/get_web_application_firewall_policy.py +2 -2
- pulumi_azure_native/network/hub_route_table.py +3 -3
- pulumi_azure_native/network/hub_virtual_network_connection.py +3 -3
- pulumi_azure_native/network/inbound_nat_rule.py +3 -3
- pulumi_azure_native/network/interface_endpoint.py +1 -1
- pulumi_azure_native/network/ip_allocation.py +3 -3
- pulumi_azure_native/network/ip_group.py +3 -3
- pulumi_azure_native/network/list_active_connectivity_configurations.py +2 -2
- pulumi_azure_native/network/list_active_security_admin_rules.py +2 -2
- pulumi_azure_native/network/list_firewall_policy_idps_signature.py +2 -2
- pulumi_azure_native/network/list_firewall_policy_idps_signatures_filter_value.py +2 -2
- pulumi_azure_native/network/list_network_manager_deployment_status.py +2 -2
- pulumi_azure_native/network/list_network_manager_effective_connectivity_configurations.py +2 -2
- pulumi_azure_native/network/list_network_manager_effective_security_admin_rules.py +2 -2
- pulumi_azure_native/network/list_vpn_link_connection_default_shared_key.py +135 -0
- pulumi_azure_native/network/load_balancer.py +3 -3
- pulumi_azure_native/network/load_balancer_backend_address_pool.py +3 -3
- pulumi_azure_native/network/local_network_gateway.py +3 -3
- pulumi_azure_native/network/management_group_network_manager_connection.py +3 -3
- pulumi_azure_native/network/nat_gateway.py +3 -3
- pulumi_azure_native/network/nat_rule.py +3 -3
- pulumi_azure_native/network/network_group.py +3 -3
- pulumi_azure_native/network/network_interface.py +3 -3
- pulumi_azure_native/network/network_interface_tap_configuration.py +3 -3
- pulumi_azure_native/network/network_manager.py +3 -3
- pulumi_azure_native/network/network_manager_routing_configuration.py +251 -0
- pulumi_azure_native/network/network_profile.py +3 -3
- pulumi_azure_native/network/network_security_group.py +3 -3
- pulumi_azure_native/network/network_virtual_appliance.py +3 -3
- pulumi_azure_native/network/network_watcher.py +3 -3
- pulumi_azure_native/network/outputs.py +246 -15
- pulumi_azure_native/network/p2s_vpn_gateway.py +3 -3
- pulumi_azure_native/network/packet_capture.py +3 -3
- pulumi_azure_native/network/private_dns_zone_group.py +3 -3
- pulumi_azure_native/network/private_endpoint.py +3 -3
- pulumi_azure_native/network/private_link_service.py +3 -3
- pulumi_azure_native/network/private_link_service_private_endpoint_connection.py +3 -3
- pulumi_azure_native/network/public_ip_address.py +3 -3
- pulumi_azure_native/network/public_ip_prefix.py +3 -3
- pulumi_azure_native/network/route.py +5 -24
- pulumi_azure_native/network/route_filter.py +3 -3
- pulumi_azure_native/network/route_filter_rule.py +3 -3
- pulumi_azure_native/network/route_map.py +3 -3
- pulumi_azure_native/network/route_table.py +3 -3
- pulumi_azure_native/network/routing_intent.py +3 -3
- pulumi_azure_native/network/routing_rule.py +355 -0
- pulumi_azure_native/network/routing_rule_collection.py +333 -0
- pulumi_azure_native/network/scope_connection.py +3 -3
- pulumi_azure_native/network/security_admin_configuration.py +3 -3
- pulumi_azure_native/network/security_partner_provider.py +3 -3
- pulumi_azure_native/network/security_rule.py +3 -3
- pulumi_azure_native/network/security_user_configuration.py +3 -3
- pulumi_azure_native/network/security_user_rule.py +471 -0
- pulumi_azure_native/network/security_user_rule_collection.py +303 -0
- pulumi_azure_native/network/service_endpoint_policy.py +3 -3
- pulumi_azure_native/network/service_endpoint_policy_definition.py +3 -3
- pulumi_azure_native/network/static_member.py +3 -3
- pulumi_azure_native/network/subnet.py +3 -3
- pulumi_azure_native/network/subscription_network_manager_connection.py +3 -3
- pulumi_azure_native/network/user_rule.py +1 -1
- pulumi_azure_native/network/user_rule_collection.py +1 -1
- pulumi_azure_native/network/v20180601/load_balancer.py +1 -1
- pulumi_azure_native/network/v20180701/network_interface.py +1 -1
- pulumi_azure_native/network/v20180701/service_endpoint_policy.py +1 -1
- pulumi_azure_native/network/v20180701/service_endpoint_policy_definition.py +1 -1
- pulumi_azure_native/network/v20180701/virtual_hub.py +1 -1
- pulumi_azure_native/network/v20180701/virtual_wan.py +1 -1
- pulumi_azure_native/network/v20180701/vpn_connection.py +1 -1
- pulumi_azure_native/network/v20180701/vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20180701/vpn_site.py +1 -1
- pulumi_azure_native/network/v20181201/express_route_circuit.py +1 -1
- pulumi_azure_native/network/v20190201/express_route_circuit_peering.py +1 -1
- pulumi_azure_native/network/v20190201/interface_endpoint.py +1 -1
- pulumi_azure_native/network/v20190201/network_interface.py +1 -1
- pulumi_azure_native/network/v20190201/subnet.py +1 -1
- pulumi_azure_native/network/v20190601/application_gateway.py +1 -1
- pulumi_azure_native/network/v20190601/express_route_circuit.py +1 -1
- pulumi_azure_native/network/v20190601/express_route_circuit_authorization.py +1 -1
- pulumi_azure_native/network/v20190601/express_route_circuit_peering.py +1 -1
- pulumi_azure_native/network/v20190601/inbound_nat_rule.py +1 -1
- pulumi_azure_native/network/v20190601/load_balancer.py +1 -1
- pulumi_azure_native/network/v20190601/nat_gateway.py +1 -1
- pulumi_azure_native/network/v20190601/network_interface.py +1 -1
- pulumi_azure_native/network/v20190601/network_security_group.py +1 -1
- pulumi_azure_native/network/v20190601/public_ip_address.py +1 -1
- pulumi_azure_native/network/v20190601/public_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20190601/route.py +1 -1
- pulumi_azure_native/network/v20190601/route_table.py +1 -1
- pulumi_azure_native/network/v20190601/security_rule.py +1 -1
- pulumi_azure_native/network/v20190601/subnet.py +1 -1
- pulumi_azure_native/network/v20190601/virtual_network.py +1 -1
- pulumi_azure_native/network/v20190601/virtual_network_peering.py +1 -1
- pulumi_azure_native/network/v20190701/p2s_vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20190701/virtual_wan.py +1 -1
- pulumi_azure_native/network/v20190701/web_application_firewall_policy.py +1 -1
- pulumi_azure_native/network/v20190801/application_gateway.py +1 -1
- pulumi_azure_native/network/v20190801/express_route_circuit_peering.py +1 -1
- pulumi_azure_native/network/v20190801/express_route_cross_connection_peering.py +1 -1
- pulumi_azure_native/network/v20190801/express_route_port.py +1 -1
- pulumi_azure_native/network/v20190801/load_balancer.py +1 -1
- pulumi_azure_native/network/v20190801/local_network_gateway.py +1 -1
- pulumi_azure_native/network/v20190801/nat_gateway.py +1 -1
- pulumi_azure_native/network/v20190801/network_interface.py +1 -1
- pulumi_azure_native/network/v20190801/network_profile.py +1 -1
- pulumi_azure_native/network/v20190801/network_security_group.py +1 -1
- pulumi_azure_native/network/v20190801/private_link_service.py +1 -1
- pulumi_azure_native/network/v20190801/public_ip_address.py +1 -1
- pulumi_azure_native/network/v20190801/public_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20190801/route_filter.py +1 -1
- pulumi_azure_native/network/v20190801/subnet.py +1 -1
- pulumi_azure_native/network/v20190801/virtual_network.py +1 -1
- pulumi_azure_native/network/v20190801/virtual_network_gateway.py +1 -1
- pulumi_azure_native/network/v20190801/virtual_network_gateway_connection.py +1 -1
- pulumi_azure_native/network/v20190901/connection_monitor.py +1 -1
- pulumi_azure_native/network/v20200401/azure_firewall.py +1 -1
- pulumi_azure_native/network/v20200401/firewall_policy.py +1 -1
- pulumi_azure_native/network/v20200401/network_virtual_appliance.py +1 -1
- pulumi_azure_native/network/v20200401/virtual_hub.py +1 -1
- pulumi_azure_native/network/v20200601/packet_capture.py +1 -1
- pulumi_azure_native/network/v20200601/subnet.py +1 -1
- pulumi_azure_native/network/v20200601/virtual_hub.py +1 -1
- pulumi_azure_native/network/v20210201/_inputs.py +0 -20
- pulumi_azure_native/network/v20210201/outputs.py +14 -15
- pulumi_azure_native/network/v20210201/private_dns_zone_group.py +1 -1
- pulumi_azure_native/network/v20210201/private_endpoint.py +1 -1
- pulumi_azure_native/network/v20210201/private_link_service.py +1 -1
- pulumi_azure_native/network/v20210201preview/admin_rule.py +1 -1
- pulumi_azure_native/network/v20210201preview/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20210201preview/connectivity_configuration.py +1 -1
- pulumi_azure_native/network/v20210201preview/network_group.py +1 -1
- pulumi_azure_native/network/v20210201preview/network_manager.py +1 -1
- pulumi_azure_native/network/v20210201preview/user_rule_collection.py +1 -1
- pulumi_azure_native/network/v20210301/custom_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20210301/express_route_gateway.py +1 -1
- pulumi_azure_native/network/v20210501preview/admin_rule.py +1 -1
- pulumi_azure_native/network/v20210501preview/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20210501preview/connectivity_configuration.py +1 -1
- pulumi_azure_native/network/v20210501preview/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20210501preview/default_user_rule.py +1 -1
- pulumi_azure_native/network/v20210501preview/network_group.py +1 -1
- pulumi_azure_native/network/v20210501preview/network_manager.py +1 -1
- pulumi_azure_native/network/v20210501preview/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20210501preview/security_user_configuration.py +1 -1
- pulumi_azure_native/network/v20210501preview/user_rule.py +1 -1
- pulumi_azure_native/network/v20210501preview/user_rule_collection.py +1 -1
- pulumi_azure_native/network/v20210801/firewall_policy.py +1 -1
- pulumi_azure_native/network/v20220101/ddos_custom_policy.py +1 -1
- pulumi_azure_native/network/v20220401preview/default_user_rule.py +1 -1
- pulumi_azure_native/network/v20220401preview/network_group.py +1 -1
- pulumi_azure_native/network/v20220401preview/security_user_configuration.py +1 -1
- pulumi_azure_native/network/v20220401preview/user_rule.py +1 -1
- pulumi_azure_native/network/v20220401preview/user_rule_collection.py +1 -1
- pulumi_azure_native/network/v20220501/ddos_protection_plan.py +1 -1
- pulumi_azure_native/network/v20220501/network_watcher.py +1 -1
- pulumi_azure_native/network/v20220701/_inputs.py +0 -20
- pulumi_azure_native/network/v20220701/outputs.py +14 -15
- pulumi_azure_native/network/v20220701/security_rule.py +1 -1
- pulumi_azure_native/network/v20220701/subnet.py +1 -1
- pulumi_azure_native/network/v20230201/_inputs.py +0 -20
- pulumi_azure_native/network/v20230201/admin_rule.py +1 -1
- pulumi_azure_native/network/v20230201/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20230201/application_gateway.py +1 -1
- pulumi_azure_native/network/v20230201/application_gateway_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20230201/application_security_group.py +1 -1
- pulumi_azure_native/network/v20230201/azure_firewall.py +1 -1
- pulumi_azure_native/network/v20230201/bastion_host.py +1 -1
- pulumi_azure_native/network/v20230201/configuration_policy_group.py +1 -1
- pulumi_azure_native/network/v20230201/connection_monitor.py +1 -1
- pulumi_azure_native/network/v20230201/connectivity_configuration.py +1 -1
- pulumi_azure_native/network/v20230201/custom_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20230201/ddos_custom_policy.py +1 -1
- pulumi_azure_native/network/v20230201/ddos_protection_plan.py +1 -1
- pulumi_azure_native/network/v20230201/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20230201/dscp_configuration.py +1 -1
- pulumi_azure_native/network/v20230201/express_route_circuit.py +1 -1
- pulumi_azure_native/network/v20230201/express_route_circuit_authorization.py +1 -1
- pulumi_azure_native/network/v20230201/express_route_circuit_connection.py +1 -1
- pulumi_azure_native/network/v20230201/express_route_circuit_peering.py +1 -1
- pulumi_azure_native/network/v20230201/express_route_connection.py +1 -1
- pulumi_azure_native/network/v20230201/express_route_cross_connection_peering.py +1 -1
- pulumi_azure_native/network/v20230201/express_route_gateway.py +1 -1
- pulumi_azure_native/network/v20230201/express_route_port.py +1 -1
- pulumi_azure_native/network/v20230201/express_route_port_authorization.py +1 -1
- pulumi_azure_native/network/v20230201/firewall_policy.py +1 -1
- pulumi_azure_native/network/v20230201/firewall_policy_rule_collection_group.py +1 -1
- pulumi_azure_native/network/v20230201/flow_log.py +1 -1
- pulumi_azure_native/network/v20230201/get_route.py +1 -1
- pulumi_azure_native/network/v20230201/hub_route_table.py +1 -1
- pulumi_azure_native/network/v20230201/hub_virtual_network_connection.py +1 -1
- pulumi_azure_native/network/v20230201/inbound_nat_rule.py +1 -1
- pulumi_azure_native/network/v20230201/ip_allocation.py +1 -1
- pulumi_azure_native/network/v20230201/ip_group.py +1 -1
- pulumi_azure_native/network/v20230201/load_balancer.py +1 -1
- pulumi_azure_native/network/v20230201/load_balancer_backend_address_pool.py +1 -1
- pulumi_azure_native/network/v20230201/local_network_gateway.py +1 -1
- pulumi_azure_native/network/v20230201/management_group_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20230201/nat_gateway.py +1 -1
- pulumi_azure_native/network/v20230201/nat_rule.py +1 -1
- pulumi_azure_native/network/v20230201/network_group.py +1 -1
- pulumi_azure_native/network/v20230201/network_interface.py +1 -1
- pulumi_azure_native/network/v20230201/network_interface_tap_configuration.py +1 -1
- pulumi_azure_native/network/v20230201/network_manager.py +1 -1
- pulumi_azure_native/network/v20230201/network_profile.py +1 -1
- pulumi_azure_native/network/v20230201/network_security_group.py +1 -1
- pulumi_azure_native/network/v20230201/network_virtual_appliance.py +1 -1
- pulumi_azure_native/network/v20230201/network_watcher.py +1 -1
- pulumi_azure_native/network/v20230201/outputs.py +14 -15
- pulumi_azure_native/network/v20230201/p2s_vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20230201/packet_capture.py +1 -1
- pulumi_azure_native/network/v20230201/private_dns_zone_group.py +1 -1
- pulumi_azure_native/network/v20230201/private_endpoint.py +1 -1
- pulumi_azure_native/network/v20230201/private_link_service.py +1 -1
- pulumi_azure_native/network/v20230201/private_link_service_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20230201/public_ip_address.py +1 -1
- pulumi_azure_native/network/v20230201/public_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20230201/route.py +3 -22
- pulumi_azure_native/network/v20230201/route_filter.py +1 -1
- pulumi_azure_native/network/v20230201/route_filter_rule.py +1 -1
- pulumi_azure_native/network/v20230201/route_map.py +1 -1
- pulumi_azure_native/network/v20230201/route_table.py +1 -1
- pulumi_azure_native/network/v20230201/routing_intent.py +1 -1
- pulumi_azure_native/network/v20230201/scope_connection.py +1 -1
- pulumi_azure_native/network/v20230201/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20230201/security_partner_provider.py +1 -1
- pulumi_azure_native/network/v20230201/security_rule.py +1 -1
- pulumi_azure_native/network/v20230201/service_endpoint_policy.py +1 -1
- pulumi_azure_native/network/v20230201/service_endpoint_policy_definition.py +1 -1
- pulumi_azure_native/network/v20230201/static_member.py +1 -1
- pulumi_azure_native/network/v20230201/subnet.py +1 -1
- pulumi_azure_native/network/v20230201/subscription_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_appliance_site.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_hub.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_hub_bgp_connection.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_hub_ip_configuration.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_hub_route_table_v2.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_network.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_network_gateway.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_network_gateway_connection.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_network_gateway_nat_rule.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_network_peering.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_network_tap.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_router.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_router_peering.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_wan.py +1 -1
- pulumi_azure_native/network/v20230201/vpn_connection.py +1 -1
- pulumi_azure_native/network/v20230201/vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20230201/vpn_server_configuration.py +1 -1
- pulumi_azure_native/network/v20230201/vpn_site.py +1 -1
- pulumi_azure_native/network/v20230201/web_application_firewall_policy.py +1 -1
- pulumi_azure_native/network/v20230401/_inputs.py +0 -20
- pulumi_azure_native/network/v20230401/admin_rule.py +1 -1
- pulumi_azure_native/network/v20230401/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20230401/application_gateway.py +1 -1
- pulumi_azure_native/network/v20230401/application_gateway_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20230401/application_security_group.py +1 -1
- pulumi_azure_native/network/v20230401/azure_firewall.py +1 -1
- pulumi_azure_native/network/v20230401/bastion_host.py +1 -1
- pulumi_azure_native/network/v20230401/configuration_policy_group.py +1 -1
- pulumi_azure_native/network/v20230401/connection_monitor.py +1 -1
- pulumi_azure_native/network/v20230401/connectivity_configuration.py +1 -1
- pulumi_azure_native/network/v20230401/custom_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20230401/ddos_custom_policy.py +1 -1
- pulumi_azure_native/network/v20230401/ddos_protection_plan.py +1 -1
- pulumi_azure_native/network/v20230401/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20230401/dscp_configuration.py +1 -1
- pulumi_azure_native/network/v20230401/express_route_circuit.py +1 -1
- pulumi_azure_native/network/v20230401/express_route_circuit_authorization.py +1 -1
- pulumi_azure_native/network/v20230401/express_route_circuit_connection.py +1 -1
- pulumi_azure_native/network/v20230401/express_route_circuit_peering.py +1 -1
- pulumi_azure_native/network/v20230401/express_route_connection.py +1 -1
- pulumi_azure_native/network/v20230401/express_route_cross_connection_peering.py +1 -1
- pulumi_azure_native/network/v20230401/express_route_gateway.py +1 -1
- pulumi_azure_native/network/v20230401/express_route_port.py +1 -1
- pulumi_azure_native/network/v20230401/express_route_port_authorization.py +1 -1
- pulumi_azure_native/network/v20230401/firewall_policy.py +1 -1
- pulumi_azure_native/network/v20230401/firewall_policy_rule_collection_group.py +1 -1
- pulumi_azure_native/network/v20230401/flow_log.py +1 -1
- pulumi_azure_native/network/v20230401/get_route.py +1 -1
- pulumi_azure_native/network/v20230401/hub_route_table.py +1 -1
- pulumi_azure_native/network/v20230401/hub_virtual_network_connection.py +1 -1
- pulumi_azure_native/network/v20230401/inbound_nat_rule.py +1 -1
- pulumi_azure_native/network/v20230401/ip_allocation.py +1 -1
- pulumi_azure_native/network/v20230401/ip_group.py +1 -1
- pulumi_azure_native/network/v20230401/load_balancer.py +1 -1
- pulumi_azure_native/network/v20230401/load_balancer_backend_address_pool.py +1 -1
- pulumi_azure_native/network/v20230401/local_network_gateway.py +1 -1
- pulumi_azure_native/network/v20230401/management_group_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20230401/nat_gateway.py +1 -1
- pulumi_azure_native/network/v20230401/nat_rule.py +1 -1
- pulumi_azure_native/network/v20230401/network_group.py +1 -1
- pulumi_azure_native/network/v20230401/network_interface.py +1 -1
- pulumi_azure_native/network/v20230401/network_interface_tap_configuration.py +1 -1
- pulumi_azure_native/network/v20230401/network_manager.py +1 -1
- pulumi_azure_native/network/v20230401/network_profile.py +1 -1
- pulumi_azure_native/network/v20230401/network_security_group.py +1 -1
- pulumi_azure_native/network/v20230401/network_virtual_appliance.py +1 -1
- pulumi_azure_native/network/v20230401/network_watcher.py +1 -1
- pulumi_azure_native/network/v20230401/outputs.py +14 -15
- pulumi_azure_native/network/v20230401/p2s_vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20230401/packet_capture.py +1 -1
- pulumi_azure_native/network/v20230401/private_dns_zone_group.py +1 -1
- pulumi_azure_native/network/v20230401/private_endpoint.py +1 -1
- pulumi_azure_native/network/v20230401/private_link_service.py +1 -1
- pulumi_azure_native/network/v20230401/private_link_service_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20230401/public_ip_address.py +1 -1
- pulumi_azure_native/network/v20230401/public_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20230401/route.py +3 -22
- pulumi_azure_native/network/v20230401/route_filter.py +1 -1
- pulumi_azure_native/network/v20230401/route_filter_rule.py +1 -1
- pulumi_azure_native/network/v20230401/route_map.py +1 -1
- pulumi_azure_native/network/v20230401/route_table.py +1 -1
- pulumi_azure_native/network/v20230401/routing_intent.py +1 -1
- pulumi_azure_native/network/v20230401/scope_connection.py +1 -1
- pulumi_azure_native/network/v20230401/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20230401/security_partner_provider.py +1 -1
- pulumi_azure_native/network/v20230401/security_rule.py +1 -1
- pulumi_azure_native/network/v20230401/service_endpoint_policy.py +1 -1
- pulumi_azure_native/network/v20230401/service_endpoint_policy_definition.py +1 -1
- pulumi_azure_native/network/v20230401/static_member.py +1 -1
- pulumi_azure_native/network/v20230401/subnet.py +1 -1
- pulumi_azure_native/network/v20230401/subscription_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_appliance_site.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_hub.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_hub_bgp_connection.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_hub_ip_configuration.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_hub_route_table_v2.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_network.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_network_gateway.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_network_gateway_connection.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_network_gateway_nat_rule.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_network_peering.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_network_tap.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_router.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_router_peering.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_wan.py +1 -1
- pulumi_azure_native/network/v20230401/vpn_connection.py +1 -1
- pulumi_azure_native/network/v20230401/vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20230401/vpn_server_configuration.py +1 -1
- pulumi_azure_native/network/v20230401/vpn_site.py +1 -1
- pulumi_azure_native/network/v20230401/web_application_firewall_policy.py +1 -1
- pulumi_azure_native/network/v20230501/_inputs.py +0 -20
- pulumi_azure_native/network/v20230501/admin_rule.py +1 -1
- pulumi_azure_native/network/v20230501/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20230501/application_gateway.py +1 -1
- pulumi_azure_native/network/v20230501/application_gateway_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20230501/application_security_group.py +1 -1
- pulumi_azure_native/network/v20230501/azure_firewall.py +1 -1
- pulumi_azure_native/network/v20230501/bastion_host.py +1 -1
- pulumi_azure_native/network/v20230501/configuration_policy_group.py +1 -1
- pulumi_azure_native/network/v20230501/connection_monitor.py +1 -1
- pulumi_azure_native/network/v20230501/connectivity_configuration.py +1 -1
- pulumi_azure_native/network/v20230501/custom_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20230501/ddos_custom_policy.py +1 -1
- pulumi_azure_native/network/v20230501/ddos_protection_plan.py +1 -1
- pulumi_azure_native/network/v20230501/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20230501/dscp_configuration.py +1 -1
- pulumi_azure_native/network/v20230501/express_route_circuit.py +1 -1
- pulumi_azure_native/network/v20230501/express_route_circuit_authorization.py +1 -1
- pulumi_azure_native/network/v20230501/express_route_circuit_connection.py +1 -1
- pulumi_azure_native/network/v20230501/express_route_circuit_peering.py +1 -1
- pulumi_azure_native/network/v20230501/express_route_connection.py +1 -1
- pulumi_azure_native/network/v20230501/express_route_cross_connection_peering.py +1 -1
- pulumi_azure_native/network/v20230501/express_route_gateway.py +1 -1
- pulumi_azure_native/network/v20230501/express_route_port.py +1 -1
- pulumi_azure_native/network/v20230501/express_route_port_authorization.py +1 -1
- pulumi_azure_native/network/v20230501/firewall_policy.py +1 -1
- pulumi_azure_native/network/v20230501/firewall_policy_rule_collection_group.py +1 -1
- pulumi_azure_native/network/v20230501/flow_log.py +1 -1
- pulumi_azure_native/network/v20230501/get_route.py +1 -1
- pulumi_azure_native/network/v20230501/hub_route_table.py +1 -1
- pulumi_azure_native/network/v20230501/hub_virtual_network_connection.py +1 -1
- pulumi_azure_native/network/v20230501/inbound_nat_rule.py +1 -1
- pulumi_azure_native/network/v20230501/ip_allocation.py +1 -1
- pulumi_azure_native/network/v20230501/ip_group.py +1 -1
- pulumi_azure_native/network/v20230501/load_balancer.py +1 -1
- pulumi_azure_native/network/v20230501/load_balancer_backend_address_pool.py +1 -1
- pulumi_azure_native/network/v20230501/local_network_gateway.py +1 -1
- pulumi_azure_native/network/v20230501/management_group_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20230501/nat_gateway.py +1 -1
- pulumi_azure_native/network/v20230501/nat_rule.py +1 -1
- pulumi_azure_native/network/v20230501/network_group.py +1 -1
- pulumi_azure_native/network/v20230501/network_interface.py +1 -1
- pulumi_azure_native/network/v20230501/network_interface_tap_configuration.py +1 -1
- pulumi_azure_native/network/v20230501/network_manager.py +1 -1
- pulumi_azure_native/network/v20230501/network_profile.py +1 -1
- pulumi_azure_native/network/v20230501/network_security_group.py +1 -1
- pulumi_azure_native/network/v20230501/network_virtual_appliance.py +1 -1
- pulumi_azure_native/network/v20230501/network_watcher.py +1 -1
- pulumi_azure_native/network/v20230501/outputs.py +14 -15
- pulumi_azure_native/network/v20230501/p2s_vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20230501/packet_capture.py +1 -1
- pulumi_azure_native/network/v20230501/private_dns_zone_group.py +1 -1
- pulumi_azure_native/network/v20230501/private_endpoint.py +1 -1
- pulumi_azure_native/network/v20230501/private_link_service.py +1 -1
- pulumi_azure_native/network/v20230501/private_link_service_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20230501/public_ip_address.py +1 -1
- pulumi_azure_native/network/v20230501/public_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20230501/route.py +3 -22
- pulumi_azure_native/network/v20230501/route_filter.py +1 -1
- pulumi_azure_native/network/v20230501/route_filter_rule.py +1 -1
- pulumi_azure_native/network/v20230501/route_map.py +1 -1
- pulumi_azure_native/network/v20230501/route_table.py +1 -1
- pulumi_azure_native/network/v20230501/routing_intent.py +1 -1
- pulumi_azure_native/network/v20230501/scope_connection.py +1 -1
- pulumi_azure_native/network/v20230501/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20230501/security_partner_provider.py +1 -1
- pulumi_azure_native/network/v20230501/security_rule.py +1 -1
- pulumi_azure_native/network/v20230501/service_endpoint_policy.py +1 -1
- pulumi_azure_native/network/v20230501/service_endpoint_policy_definition.py +1 -1
- pulumi_azure_native/network/v20230501/static_member.py +1 -1
- pulumi_azure_native/network/v20230501/subnet.py +1 -1
- pulumi_azure_native/network/v20230501/subscription_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_appliance_site.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_hub.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_hub_bgp_connection.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_hub_ip_configuration.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_hub_route_table_v2.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_network.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_network_gateway.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_network_gateway_connection.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_network_gateway_nat_rule.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_network_peering.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_network_tap.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_router.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_router_peering.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_wan.py +1 -1
- pulumi_azure_native/network/v20230501/vpn_connection.py +1 -1
- pulumi_azure_native/network/v20230501/vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20230501/vpn_server_configuration.py +1 -1
- pulumi_azure_native/network/v20230501/vpn_site.py +1 -1
- pulumi_azure_native/network/v20230501/web_application_firewall_policy.py +1 -1
- pulumi_azure_native/network/v20230601/_inputs.py +0 -20
- pulumi_azure_native/network/v20230601/admin_rule.py +1 -1
- pulumi_azure_native/network/v20230601/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20230601/application_gateway.py +1 -1
- pulumi_azure_native/network/v20230601/application_gateway_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20230601/application_security_group.py +1 -1
- pulumi_azure_native/network/v20230601/azure_firewall.py +1 -1
- pulumi_azure_native/network/v20230601/bastion_host.py +1 -1
- pulumi_azure_native/network/v20230601/configuration_policy_group.py +1 -1
- pulumi_azure_native/network/v20230601/connection_monitor.py +1 -1
- pulumi_azure_native/network/v20230601/connectivity_configuration.py +1 -1
- pulumi_azure_native/network/v20230601/custom_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20230601/ddos_custom_policy.py +1 -1
- pulumi_azure_native/network/v20230601/ddos_protection_plan.py +1 -1
- pulumi_azure_native/network/v20230601/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20230601/dscp_configuration.py +1 -1
- pulumi_azure_native/network/v20230601/express_route_circuit.py +1 -1
- pulumi_azure_native/network/v20230601/express_route_circuit_authorization.py +1 -1
- pulumi_azure_native/network/v20230601/express_route_circuit_connection.py +1 -1
- pulumi_azure_native/network/v20230601/express_route_circuit_peering.py +1 -1
- pulumi_azure_native/network/v20230601/express_route_connection.py +1 -1
- pulumi_azure_native/network/v20230601/express_route_cross_connection_peering.py +1 -1
- pulumi_azure_native/network/v20230601/express_route_gateway.py +1 -1
- pulumi_azure_native/network/v20230601/express_route_port.py +1 -1
- pulumi_azure_native/network/v20230601/express_route_port_authorization.py +1 -1
- pulumi_azure_native/network/v20230601/firewall_policy.py +1 -1
- pulumi_azure_native/network/v20230601/firewall_policy_rule_collection_group.py +1 -1
- pulumi_azure_native/network/v20230601/flow_log.py +1 -1
- pulumi_azure_native/network/v20230601/get_route.py +1 -1
- pulumi_azure_native/network/v20230601/hub_route_table.py +1 -1
- pulumi_azure_native/network/v20230601/hub_virtual_network_connection.py +1 -1
- pulumi_azure_native/network/v20230601/inbound_nat_rule.py +1 -1
- pulumi_azure_native/network/v20230601/ip_allocation.py +1 -1
- pulumi_azure_native/network/v20230601/ip_group.py +1 -1
- pulumi_azure_native/network/v20230601/load_balancer.py +1 -1
- pulumi_azure_native/network/v20230601/load_balancer_backend_address_pool.py +1 -1
- pulumi_azure_native/network/v20230601/local_network_gateway.py +1 -1
- pulumi_azure_native/network/v20230601/management_group_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20230601/nat_gateway.py +1 -1
- pulumi_azure_native/network/v20230601/nat_rule.py +1 -1
- pulumi_azure_native/network/v20230601/network_group.py +1 -1
- pulumi_azure_native/network/v20230601/network_interface.py +1 -1
- pulumi_azure_native/network/v20230601/network_interface_tap_configuration.py +1 -1
- pulumi_azure_native/network/v20230601/network_manager.py +1 -1
- pulumi_azure_native/network/v20230601/network_profile.py +1 -1
- pulumi_azure_native/network/v20230601/network_security_group.py +1 -1
- pulumi_azure_native/network/v20230601/network_virtual_appliance.py +1 -1
- pulumi_azure_native/network/v20230601/network_virtual_appliance_connection.py +1 -1
- pulumi_azure_native/network/v20230601/network_watcher.py +1 -1
- pulumi_azure_native/network/v20230601/outputs.py +14 -15
- pulumi_azure_native/network/v20230601/p2s_vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20230601/packet_capture.py +1 -1
- pulumi_azure_native/network/v20230601/private_dns_zone_group.py +1 -1
- pulumi_azure_native/network/v20230601/private_endpoint.py +1 -1
- pulumi_azure_native/network/v20230601/private_link_service.py +1 -1
- pulumi_azure_native/network/v20230601/private_link_service_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20230601/public_ip_address.py +1 -1
- pulumi_azure_native/network/v20230601/public_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20230601/route.py +3 -22
- pulumi_azure_native/network/v20230601/route_filter.py +1 -1
- pulumi_azure_native/network/v20230601/route_filter_rule.py +1 -1
- pulumi_azure_native/network/v20230601/route_map.py +1 -1
- pulumi_azure_native/network/v20230601/route_table.py +1 -1
- pulumi_azure_native/network/v20230601/routing_intent.py +1 -1
- pulumi_azure_native/network/v20230601/scope_connection.py +1 -1
- pulumi_azure_native/network/v20230601/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20230601/security_partner_provider.py +1 -1
- pulumi_azure_native/network/v20230601/security_rule.py +1 -1
- pulumi_azure_native/network/v20230601/service_endpoint_policy.py +1 -1
- pulumi_azure_native/network/v20230601/service_endpoint_policy_definition.py +1 -1
- pulumi_azure_native/network/v20230601/static_member.py +1 -1
- pulumi_azure_native/network/v20230601/subnet.py +1 -1
- pulumi_azure_native/network/v20230601/subscription_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_appliance_site.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_hub.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_hub_bgp_connection.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_hub_ip_configuration.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_hub_route_table_v2.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_network.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_network_gateway.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_network_gateway_connection.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_network_gateway_nat_rule.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_network_peering.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_network_tap.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_router.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_router_peering.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_wan.py +1 -1
- pulumi_azure_native/network/v20230601/vpn_connection.py +1 -1
- pulumi_azure_native/network/v20230601/vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20230601/vpn_server_configuration.py +1 -1
- pulumi_azure_native/network/v20230601/vpn_site.py +1 -1
- pulumi_azure_native/network/v20230601/web_application_firewall_policy.py +1 -1
- pulumi_azure_native/network/v20230901/_inputs.py +0 -20
- pulumi_azure_native/network/v20230901/admin_rule.py +1 -1
- pulumi_azure_native/network/v20230901/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20230901/application_gateway.py +1 -1
- pulumi_azure_native/network/v20230901/application_gateway_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20230901/application_security_group.py +1 -1
- pulumi_azure_native/network/v20230901/azure_firewall.py +1 -1
- pulumi_azure_native/network/v20230901/bastion_host.py +1 -1
- pulumi_azure_native/network/v20230901/configuration_policy_group.py +1 -1
- pulumi_azure_native/network/v20230901/connection_monitor.py +1 -1
- pulumi_azure_native/network/v20230901/connectivity_configuration.py +1 -1
- pulumi_azure_native/network/v20230901/custom_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20230901/ddos_custom_policy.py +1 -1
- pulumi_azure_native/network/v20230901/ddos_protection_plan.py +1 -1
- pulumi_azure_native/network/v20230901/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20230901/dscp_configuration.py +1 -1
- pulumi_azure_native/network/v20230901/express_route_circuit.py +1 -1
- pulumi_azure_native/network/v20230901/express_route_circuit_authorization.py +1 -1
- pulumi_azure_native/network/v20230901/express_route_circuit_connection.py +1 -1
- pulumi_azure_native/network/v20230901/express_route_circuit_peering.py +1 -1
- pulumi_azure_native/network/v20230901/express_route_connection.py +1 -1
- pulumi_azure_native/network/v20230901/express_route_cross_connection_peering.py +1 -1
- pulumi_azure_native/network/v20230901/express_route_gateway.py +1 -1
- pulumi_azure_native/network/v20230901/express_route_port.py +1 -1
- pulumi_azure_native/network/v20230901/express_route_port_authorization.py +1 -1
- pulumi_azure_native/network/v20230901/firewall_policy.py +1 -1
- pulumi_azure_native/network/v20230901/firewall_policy_rule_collection_group.py +1 -1
- pulumi_azure_native/network/v20230901/flow_log.py +1 -1
- pulumi_azure_native/network/v20230901/get_route.py +1 -1
- pulumi_azure_native/network/v20230901/hub_route_table.py +1 -1
- pulumi_azure_native/network/v20230901/hub_virtual_network_connection.py +1 -1
- pulumi_azure_native/network/v20230901/inbound_nat_rule.py +1 -1
- pulumi_azure_native/network/v20230901/ip_allocation.py +1 -1
- pulumi_azure_native/network/v20230901/ip_group.py +1 -1
- pulumi_azure_native/network/v20230901/load_balancer.py +1 -1
- pulumi_azure_native/network/v20230901/load_balancer_backend_address_pool.py +1 -1
- pulumi_azure_native/network/v20230901/local_network_gateway.py +1 -1
- pulumi_azure_native/network/v20230901/management_group_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20230901/nat_gateway.py +1 -1
- pulumi_azure_native/network/v20230901/nat_rule.py +1 -1
- pulumi_azure_native/network/v20230901/network_group.py +1 -1
- pulumi_azure_native/network/v20230901/network_interface.py +1 -1
- pulumi_azure_native/network/v20230901/network_interface_tap_configuration.py +1 -1
- pulumi_azure_native/network/v20230901/network_manager.py +1 -1
- pulumi_azure_native/network/v20230901/network_profile.py +1 -1
- pulumi_azure_native/network/v20230901/network_security_group.py +1 -1
- pulumi_azure_native/network/v20230901/network_virtual_appliance.py +1 -1
- pulumi_azure_native/network/v20230901/network_virtual_appliance_connection.py +1 -1
- pulumi_azure_native/network/v20230901/network_watcher.py +1 -1
- pulumi_azure_native/network/v20230901/outputs.py +14 -15
- pulumi_azure_native/network/v20230901/p2s_vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20230901/packet_capture.py +1 -1
- pulumi_azure_native/network/v20230901/private_dns_zone_group.py +1 -1
- pulumi_azure_native/network/v20230901/private_endpoint.py +1 -1
- pulumi_azure_native/network/v20230901/private_link_service.py +1 -1
- pulumi_azure_native/network/v20230901/private_link_service_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20230901/public_ip_address.py +1 -1
- pulumi_azure_native/network/v20230901/public_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20230901/route.py +3 -22
- pulumi_azure_native/network/v20230901/route_filter.py +1 -1
- pulumi_azure_native/network/v20230901/route_filter_rule.py +1 -1
- pulumi_azure_native/network/v20230901/route_map.py +1 -1
- pulumi_azure_native/network/v20230901/route_table.py +1 -1
- pulumi_azure_native/network/v20230901/routing_intent.py +1 -1
- pulumi_azure_native/network/v20230901/scope_connection.py +1 -1
- pulumi_azure_native/network/v20230901/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20230901/security_partner_provider.py +1 -1
- pulumi_azure_native/network/v20230901/security_rule.py +1 -1
- pulumi_azure_native/network/v20230901/service_endpoint_policy.py +1 -1
- pulumi_azure_native/network/v20230901/service_endpoint_policy_definition.py +1 -1
- pulumi_azure_native/network/v20230901/static_member.py +1 -1
- pulumi_azure_native/network/v20230901/subnet.py +1 -1
- pulumi_azure_native/network/v20230901/subscription_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_appliance_site.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_hub.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_hub_bgp_connection.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_hub_ip_configuration.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_hub_route_table_v2.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_network.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_network_gateway.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_network_gateway_connection.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_network_gateway_nat_rule.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_network_peering.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_network_tap.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_router.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_router_peering.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_wan.py +1 -1
- pulumi_azure_native/network/v20230901/vpn_connection.py +1 -1
- pulumi_azure_native/network/v20230901/vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20230901/vpn_server_configuration.py +1 -1
- pulumi_azure_native/network/v20230901/vpn_site.py +1 -1
- pulumi_azure_native/network/v20230901/web_application_firewall_policy.py +1 -1
- pulumi_azure_native/network/v20231101/_inputs.py +0 -20
- pulumi_azure_native/network/v20231101/admin_rule.py +1 -1
- pulumi_azure_native/network/v20231101/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20231101/application_gateway.py +1 -1
- pulumi_azure_native/network/v20231101/application_gateway_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20231101/application_security_group.py +1 -1
- pulumi_azure_native/network/v20231101/azure_firewall.py +1 -1
- pulumi_azure_native/network/v20231101/bastion_host.py +1 -1
- pulumi_azure_native/network/v20231101/configuration_policy_group.py +1 -1
- pulumi_azure_native/network/v20231101/connection_monitor.py +1 -1
- pulumi_azure_native/network/v20231101/connectivity_configuration.py +1 -1
- pulumi_azure_native/network/v20231101/custom_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20231101/ddos_custom_policy.py +1 -1
- pulumi_azure_native/network/v20231101/ddos_protection_plan.py +1 -1
- pulumi_azure_native/network/v20231101/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20231101/dscp_configuration.py +1 -1
- pulumi_azure_native/network/v20231101/express_route_circuit.py +1 -1
- pulumi_azure_native/network/v20231101/express_route_circuit_authorization.py +1 -1
- pulumi_azure_native/network/v20231101/express_route_circuit_connection.py +1 -1
- pulumi_azure_native/network/v20231101/express_route_circuit_peering.py +1 -1
- pulumi_azure_native/network/v20231101/express_route_connection.py +1 -1
- pulumi_azure_native/network/v20231101/express_route_cross_connection_peering.py +1 -1
- pulumi_azure_native/network/v20231101/express_route_gateway.py +1 -1
- pulumi_azure_native/network/v20231101/express_route_port.py +1 -1
- pulumi_azure_native/network/v20231101/express_route_port_authorization.py +1 -1
- pulumi_azure_native/network/v20231101/firewall_policy.py +1 -1
- pulumi_azure_native/network/v20231101/firewall_policy_draft.py +1 -1
- pulumi_azure_native/network/v20231101/firewall_policy_rule_collection_group.py +1 -1
- pulumi_azure_native/network/v20231101/firewall_policy_rule_collection_group_draft.py +1 -1
- pulumi_azure_native/network/v20231101/flow_log.py +1 -1
- pulumi_azure_native/network/v20231101/get_route.py +1 -1
- pulumi_azure_native/network/v20231101/hub_route_table.py +1 -1
- pulumi_azure_native/network/v20231101/hub_virtual_network_connection.py +1 -1
- pulumi_azure_native/network/v20231101/inbound_nat_rule.py +1 -1
- pulumi_azure_native/network/v20231101/ip_allocation.py +1 -1
- pulumi_azure_native/network/v20231101/ip_group.py +1 -1
- pulumi_azure_native/network/v20231101/load_balancer.py +1 -1
- pulumi_azure_native/network/v20231101/load_balancer_backend_address_pool.py +1 -1
- pulumi_azure_native/network/v20231101/local_network_gateway.py +1 -1
- pulumi_azure_native/network/v20231101/management_group_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20231101/nat_gateway.py +1 -1
- pulumi_azure_native/network/v20231101/nat_rule.py +1 -1
- pulumi_azure_native/network/v20231101/network_group.py +1 -1
- pulumi_azure_native/network/v20231101/network_interface.py +1 -1
- pulumi_azure_native/network/v20231101/network_interface_tap_configuration.py +1 -1
- pulumi_azure_native/network/v20231101/network_manager.py +1 -1
- pulumi_azure_native/network/v20231101/network_profile.py +1 -1
- pulumi_azure_native/network/v20231101/network_security_group.py +1 -1
- pulumi_azure_native/network/v20231101/network_virtual_appliance.py +1 -1
- pulumi_azure_native/network/v20231101/network_virtual_appliance_connection.py +1 -1
- pulumi_azure_native/network/v20231101/network_watcher.py +1 -1
- pulumi_azure_native/network/v20231101/outputs.py +14 -15
- pulumi_azure_native/network/v20231101/p2s_vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20231101/packet_capture.py +1 -1
- pulumi_azure_native/network/v20231101/private_dns_zone_group.py +1 -1
- pulumi_azure_native/network/v20231101/private_endpoint.py +1 -1
- pulumi_azure_native/network/v20231101/private_link_service.py +1 -1
- pulumi_azure_native/network/v20231101/private_link_service_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20231101/public_ip_address.py +1 -1
- pulumi_azure_native/network/v20231101/public_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20231101/route.py +3 -22
- pulumi_azure_native/network/v20231101/route_filter.py +1 -1
- pulumi_azure_native/network/v20231101/route_filter_rule.py +1 -1
- pulumi_azure_native/network/v20231101/route_map.py +1 -1
- pulumi_azure_native/network/v20231101/route_table.py +1 -1
- pulumi_azure_native/network/v20231101/routing_intent.py +1 -1
- pulumi_azure_native/network/v20231101/scope_connection.py +1 -1
- pulumi_azure_native/network/v20231101/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20231101/security_partner_provider.py +1 -1
- pulumi_azure_native/network/v20231101/security_rule.py +1 -1
- pulumi_azure_native/network/v20231101/service_endpoint_policy.py +1 -1
- pulumi_azure_native/network/v20231101/service_endpoint_policy_definition.py +1 -1
- pulumi_azure_native/network/v20231101/static_member.py +1 -1
- pulumi_azure_native/network/v20231101/subnet.py +1 -1
- pulumi_azure_native/network/v20231101/subscription_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_appliance_site.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_hub.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_hub_bgp_connection.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_hub_ip_configuration.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_hub_route_table_v2.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_network.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_network_gateway.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_network_gateway_connection.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_network_gateway_nat_rule.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_network_peering.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_network_tap.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_router.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_router_peering.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_wan.py +1 -1
- pulumi_azure_native/network/v20231101/vpn_connection.py +1 -1
- pulumi_azure_native/network/v20231101/vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20231101/vpn_server_configuration.py +1 -1
- pulumi_azure_native/network/v20231101/vpn_site.py +1 -1
- pulumi_azure_native/network/v20231101/web_application_firewall_policy.py +1 -1
- pulumi_azure_native/network/v20240101/_enums.py +0 -1
- pulumi_azure_native/network/v20240101/_inputs.py +0 -20
- pulumi_azure_native/network/v20240101/admin_rule.py +1 -1
- pulumi_azure_native/network/v20240101/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20240101/application_gateway.py +1 -1
- pulumi_azure_native/network/v20240101/application_gateway_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20240101/application_security_group.py +1 -1
- pulumi_azure_native/network/v20240101/azure_firewall.py +1 -1
- pulumi_azure_native/network/v20240101/bastion_host.py +1 -1
- pulumi_azure_native/network/v20240101/configuration_policy_group.py +1 -1
- pulumi_azure_native/network/v20240101/connection_monitor.py +1 -1
- pulumi_azure_native/network/v20240101/connectivity_configuration.py +1 -1
- pulumi_azure_native/network/v20240101/custom_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20240101/ddos_custom_policy.py +1 -1
- pulumi_azure_native/network/v20240101/ddos_protection_plan.py +1 -1
- pulumi_azure_native/network/v20240101/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20240101/dscp_configuration.py +1 -1
- pulumi_azure_native/network/v20240101/express_route_circuit.py +1 -1
- pulumi_azure_native/network/v20240101/express_route_circuit_authorization.py +1 -1
- pulumi_azure_native/network/v20240101/express_route_circuit_connection.py +1 -1
- pulumi_azure_native/network/v20240101/express_route_circuit_peering.py +1 -1
- pulumi_azure_native/network/v20240101/express_route_connection.py +1 -1
- pulumi_azure_native/network/v20240101/express_route_cross_connection_peering.py +1 -1
- pulumi_azure_native/network/v20240101/express_route_gateway.py +1 -1
- pulumi_azure_native/network/v20240101/express_route_port.py +1 -1
- pulumi_azure_native/network/v20240101/express_route_port_authorization.py +1 -1
- pulumi_azure_native/network/v20240101/firewall_policy.py +1 -1
- pulumi_azure_native/network/v20240101/firewall_policy_draft.py +1 -1
- pulumi_azure_native/network/v20240101/firewall_policy_rule_collection_group.py +1 -1
- pulumi_azure_native/network/v20240101/firewall_policy_rule_collection_group_draft.py +1 -1
- pulumi_azure_native/network/v20240101/flow_log.py +1 -1
- pulumi_azure_native/network/v20240101/get_route.py +1 -1
- pulumi_azure_native/network/v20240101/hub_route_table.py +1 -1
- pulumi_azure_native/network/v20240101/hub_virtual_network_connection.py +1 -1
- pulumi_azure_native/network/v20240101/inbound_nat_rule.py +1 -1
- pulumi_azure_native/network/v20240101/ip_allocation.py +1 -1
- pulumi_azure_native/network/v20240101/ip_group.py +1 -1
- pulumi_azure_native/network/v20240101/load_balancer.py +1 -1
- pulumi_azure_native/network/v20240101/load_balancer_backend_address_pool.py +1 -1
- pulumi_azure_native/network/v20240101/local_network_gateway.py +1 -1
- pulumi_azure_native/network/v20240101/management_group_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20240101/nat_gateway.py +1 -1
- pulumi_azure_native/network/v20240101/nat_rule.py +1 -1
- pulumi_azure_native/network/v20240101/network_group.py +1 -1
- pulumi_azure_native/network/v20240101/network_interface.py +1 -1
- pulumi_azure_native/network/v20240101/network_interface_tap_configuration.py +1 -1
- pulumi_azure_native/network/v20240101/network_manager.py +1 -1
- pulumi_azure_native/network/v20240101/network_profile.py +1 -1
- pulumi_azure_native/network/v20240101/network_security_group.py +1 -1
- pulumi_azure_native/network/v20240101/network_virtual_appliance.py +1 -1
- pulumi_azure_native/network/v20240101/network_virtual_appliance_connection.py +1 -1
- pulumi_azure_native/network/v20240101/network_watcher.py +1 -1
- pulumi_azure_native/network/v20240101/outputs.py +14 -15
- pulumi_azure_native/network/v20240101/p2s_vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20240101/packet_capture.py +1 -1
- pulumi_azure_native/network/v20240101/private_dns_zone_group.py +1 -1
- pulumi_azure_native/network/v20240101/private_endpoint.py +1 -1
- pulumi_azure_native/network/v20240101/private_link_service.py +1 -1
- pulumi_azure_native/network/v20240101/private_link_service_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20240101/public_ip_address.py +1 -1
- pulumi_azure_native/network/v20240101/public_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20240101/route.py +3 -22
- pulumi_azure_native/network/v20240101/route_filter.py +1 -1
- pulumi_azure_native/network/v20240101/route_filter_rule.py +1 -1
- pulumi_azure_native/network/v20240101/route_map.py +1 -1
- pulumi_azure_native/network/v20240101/route_table.py +1 -1
- pulumi_azure_native/network/v20240101/routing_intent.py +1 -1
- pulumi_azure_native/network/v20240101/scope_connection.py +1 -1
- pulumi_azure_native/network/v20240101/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20240101/security_partner_provider.py +1 -1
- pulumi_azure_native/network/v20240101/security_rule.py +1 -1
- pulumi_azure_native/network/v20240101/service_endpoint_policy.py +1 -1
- pulumi_azure_native/network/v20240101/service_endpoint_policy_definition.py +1 -1
- pulumi_azure_native/network/v20240101/static_member.py +1 -1
- pulumi_azure_native/network/v20240101/subnet.py +1 -1
- pulumi_azure_native/network/v20240101/subscription_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_appliance_site.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_hub.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_hub_bgp_connection.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_hub_ip_configuration.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_hub_route_table_v2.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_network.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_network_gateway.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_network_gateway_connection.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_network_gateway_nat_rule.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_network_peering.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_network_tap.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_router.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_router_peering.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_wan.py +1 -1
- pulumi_azure_native/network/v20240101/vpn_connection.py +1 -1
- pulumi_azure_native/network/v20240101/vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20240101/vpn_server_configuration.py +1 -1
- pulumi_azure_native/network/v20240101/vpn_site.py +1 -1
- pulumi_azure_native/network/v20240101/web_application_firewall_policy.py +1 -1
- pulumi_azure_native/network/v20240101preview/admin_rule.py +1 -1
- pulumi_azure_native/network/v20240101preview/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20240101preview/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20240101preview/network_manager.py +1 -1
- pulumi_azure_native/network/v20240101preview/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20240301/__init__.py +225 -0
- pulumi_azure_native/network/v20240301/_enums.py +1874 -0
- pulumi_azure_native/network/v20240301/_inputs.py +28409 -0
- pulumi_azure_native/network/v20240301/admin_rule.py +563 -0
- pulumi_azure_native/network/v20240301/admin_rule_collection.py +301 -0
- pulumi_azure_native/network/v20240301/application_gateway.py +1256 -0
- pulumi_azure_native/network/v20240301/application_gateway_private_endpoint_connection.py +289 -0
- pulumi_azure_native/network/v20240301/application_security_group.py +266 -0
- pulumi_azure_native/network/v20240301/azure_firewall.py +646 -0
- pulumi_azure_native/network/v20240301/bastion_host.py +685 -0
- pulumi_azure_native/network/v20240301/configuration_policy_group.py +338 -0
- pulumi_azure_native/network/v20240301/connection_monitor.py +579 -0
- pulumi_azure_native/network/v20240301/connectivity_configuration.py +398 -0
- pulumi_azure_native/network/v20240301/custom_ip_prefix.py +647 -0
- pulumi_azure_native/network/v20240301/ddos_custom_policy.py +266 -0
- pulumi_azure_native/network/v20240301/ddos_protection_plan.py +267 -0
- pulumi_azure_native/network/v20240301/default_admin_rule.py +415 -0
- pulumi_azure_native/network/v20240301/dscp_configuration.py +492 -0
- pulumi_azure_native/network/v20240301/express_route_circuit.py +720 -0
- pulumi_azure_native/network/v20240301/express_route_circuit_authorization.py +307 -0
- pulumi_azure_native/network/v20240301/express_route_circuit_connection.py +416 -0
- pulumi_azure_native/network/v20240301/express_route_circuit_peering.py +738 -0
- pulumi_azure_native/network/v20240301/express_route_connection.py +426 -0
- pulumi_azure_native/network/v20240301/express_route_cross_connection_peering.py +561 -0
- pulumi_azure_native/network/v20240301/express_route_gateway.py +379 -0
- pulumi_azure_native/network/v20240301/express_route_port.py +493 -0
- pulumi_azure_native/network/v20240301/express_route_port_authorization.py +268 -0
- pulumi_azure_native/network/v20240301/firewall_policy.py +647 -0
- pulumi_azure_native/network/v20240301/firewall_policy_draft.py +501 -0
- pulumi_azure_native/network/v20240301/firewall_policy_rule_collection_group.py +309 -0
- pulumi_azure_native/network/v20240301/firewall_policy_rule_collection_group_draft.py +290 -0
- pulumi_azure_native/network/v20240301/flow_log.py +524 -0
- pulumi_azure_native/network/v20240301/get_active_sessions.py +97 -0
- pulumi_azure_native/network/v20240301/get_admin_rule.py +308 -0
- pulumi_azure_native/network/v20240301/get_admin_rule_collection.py +198 -0
- pulumi_azure_native/network/v20240301/get_application_gateway.py +643 -0
- pulumi_azure_native/network/v20240301/get_application_gateway_backend_health_on_demand.py +144 -0
- pulumi_azure_native/network/v20240301/get_application_gateway_private_endpoint_connection.py +180 -0
- pulumi_azure_native/network/v20240301/get_application_security_group.py +174 -0
- pulumi_azure_native/network/v20240301/get_azure_firewall.py +344 -0
- pulumi_azure_native/network/v20240301/get_bastion_host.py +341 -0
- pulumi_azure_native/network/v20240301/get_bastion_shareable_link.py +103 -0
- pulumi_azure_native/network/v20240301/get_configuration_policy_group.py +193 -0
- pulumi_azure_native/network/v20240301/get_connection_monitor.py +323 -0
- pulumi_azure_native/network/v20240301/get_connectivity_configuration.py +245 -0
- pulumi_azure_native/network/v20240301/get_custom_ip_prefix.py +375 -0
- pulumi_azure_native/network/v20240301/get_ddos_custom_policy.py +174 -0
- pulumi_azure_native/network/v20240301/get_ddos_protection_plan.py +201 -0
- pulumi_azure_native/network/v20240301/get_default_admin_rule.py +321 -0
- pulumi_azure_native/network/v20240301/get_dscp_configuration.py +292 -0
- pulumi_azure_native/network/v20240301/get_express_route_circuit.py +383 -0
- pulumi_azure_native/network/v20240301/get_express_route_circuit_authorization.py +179 -0
- pulumi_azure_native/network/v20240301/get_express_route_circuit_connection.py +224 -0
- pulumi_azure_native/network/v20240301/get_express_route_circuit_peering.py +388 -0
- pulumi_azure_native/network/v20240301/get_express_route_connection.py +206 -0
- pulumi_azure_native/network/v20240301/get_express_route_cross_connection_peering.py +310 -0
- pulumi_azure_native/network/v20240301/get_express_route_gateway.py +214 -0
- pulumi_azure_native/network/v20240301/get_express_route_port.py +318 -0
- pulumi_azure_native/network/v20240301/get_express_route_port_authorization.py +179 -0
- pulumi_azure_native/network/v20240301/get_firewall_policy.py +375 -0
- pulumi_azure_native/network/v20240301/get_firewall_policy_draft.py +253 -0
- pulumi_azure_native/network/v20240301/get_firewall_policy_rule_collection_group.py +180 -0
- pulumi_azure_native/network/v20240301/get_firewall_policy_rule_collection_group_draft.py +154 -0
- pulumi_azure_native/network/v20240301/get_flow_log.py +284 -0
- pulumi_azure_native/network/v20240301/get_hub_route_table.py +193 -0
- pulumi_azure_native/network/v20240301/get_hub_virtual_network_connection.py +193 -0
- pulumi_azure_native/network/v20240301/get_inbound_nat_rule.py +289 -0
- pulumi_azure_native/network/v20240301/get_ip_allocation.py +245 -0
- pulumi_azure_native/network/v20240301/get_ip_group.py +206 -0
- pulumi_azure_native/network/v20240301/get_load_balancer.py +297 -0
- pulumi_azure_native/network/v20240301/get_load_balancer_backend_address_pool.py +284 -0
- pulumi_azure_native/network/v20240301/get_local_network_gateway.py +227 -0
- pulumi_azure_native/network/v20240301/get_management_group_network_manager_connection.py +162 -0
- pulumi_azure_native/network/v20240301/get_nat_gateway.py +258 -0
- pulumi_azure_native/network/v20240301/get_nat_rule.py +219 -0
- pulumi_azure_native/network/v20240301/get_network_group.py +193 -0
- pulumi_azure_native/network/v20240301/get_network_interface.py +453 -0
- pulumi_azure_native/network/v20240301/get_network_interface_tap_configuration.py +154 -0
- pulumi_azure_native/network/v20240301/get_network_manager.py +227 -0
- pulumi_azure_native/network/v20240301/get_network_manager_routing_configuration.py +180 -0
- pulumi_azure_native/network/v20240301/get_network_profile.py +206 -0
- pulumi_azure_native/network/v20240301/get_network_security_group.py +258 -0
- pulumi_azure_native/network/v20240301/get_network_virtual_appliance.py +414 -0
- pulumi_azure_native/network/v20240301/get_network_virtual_appliance_connection.py +180 -0
- pulumi_azure_native/network/v20240301/get_network_watcher.py +161 -0
- pulumi_azure_native/network/v20240301/get_p2s_vpn_gateway.py +253 -0
- pulumi_azure_native/network/v20240301/get_p2s_vpn_gateway_p2s_vpn_connection_health.py +253 -0
- pulumi_azure_native/network/v20240301/get_p2s_vpn_gateway_p2s_vpn_connection_health_detailed.py +93 -0
- pulumi_azure_native/network/v20240301/get_packet_capture.py +258 -0
- pulumi_azure_native/network/v20240301/get_private_dns_zone_group.py +141 -0
- pulumi_azure_native/network/v20240301/get_private_endpoint.py +284 -0
- pulumi_azure_native/network/v20240301/get_private_link_service.py +310 -0
- pulumi_azure_native/network/v20240301/get_private_link_service_private_endpoint_connection.py +198 -0
- pulumi_azure_native/network/v20240301/get_public_ip_address.py +401 -0
- pulumi_azure_native/network/v20240301/get_public_ip_prefix.py +323 -0
- pulumi_azure_native/network/v20240301/get_route.py +192 -0
- pulumi_azure_native/network/v20240301/get_route_filter.py +206 -0
- pulumi_azure_native/network/v20240301/get_route_filter_rule.py +179 -0
- pulumi_azure_native/network/v20240301/get_route_map.py +180 -0
- pulumi_azure_native/network/v20240301/get_route_table.py +219 -0
- pulumi_azure_native/network/v20240301/get_routing_intent.py +154 -0
- pulumi_azure_native/network/v20240301/get_routing_rule.py +216 -0
- pulumi_azure_native/network/v20240301/get_routing_rule_collection.py +211 -0
- pulumi_azure_native/network/v20240301/get_scope_connection.py +180 -0
- pulumi_azure_native/network/v20240301/get_security_admin_configuration.py +193 -0
- pulumi_azure_native/network/v20240301/get_security_partner_provider.py +201 -0
- pulumi_azure_native/network/v20240301/get_security_rule.py +336 -0
- pulumi_azure_native/network/v20240301/get_security_user_configuration.py +180 -0
- pulumi_azure_native/network/v20240301/get_security_user_rule.py +268 -0
- pulumi_azure_native/network/v20240301/get_security_user_rule_collection.py +198 -0
- pulumi_azure_native/network/v20240301/get_service_endpoint_policy.py +245 -0
- pulumi_azure_native/network/v20240301/get_service_endpoint_policy_definition.py +179 -0
- pulumi_azure_native/network/v20240301/get_static_member.py +185 -0
- pulumi_azure_native/network/v20240301/get_subnet.py +406 -0
- pulumi_azure_native/network/v20240301/get_subscription_network_manager_connection.py +157 -0
- pulumi_azure_native/network/v20240301/get_virtual_appliance_site.py +167 -0
- pulumi_azure_native/network/v20240301/get_virtual_hub.py +448 -0
- pulumi_azure_native/network/v20240301/get_virtual_hub_bgp_connection.py +193 -0
- pulumi_azure_native/network/v20240301/get_virtual_hub_ip_configuration.py +193 -0
- pulumi_azure_native/network/v20240301/get_virtual_hub_route_table_v2.py +154 -0
- pulumi_azure_native/network/v20240301/get_virtual_network.py +362 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_gateway.py +513 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_gateway_advertised_routes.py +89 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_gateway_bgp_peer_status.py +89 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_gateway_connection.py +500 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_gateway_connection_ike_sas.py +77 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_gateway_learned_routes.py +84 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_gateway_nat_rule.py +193 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_gateway_vpn_profile_package_url.py +77 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_gateway_vpnclient_connection_health.py +84 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_gateway_vpnclient_ipsec_parameters.py +174 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_peering.py +388 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_tap.py +227 -0
- pulumi_azure_native/network/v20240301/get_virtual_router.py +232 -0
- pulumi_azure_native/network/v20240301/get_virtual_router_peering.py +166 -0
- pulumi_azure_native/network/v20240301/get_virtual_wan.py +240 -0
- pulumi_azure_native/network/v20240301/get_vpn_connection.py +362 -0
- pulumi_azure_native/network/v20240301/get_vpn_gateway.py +266 -0
- pulumi_azure_native/network/v20240301/get_vpn_link_connection_ike_sas.py +87 -0
- pulumi_azure_native/network/v20240301/get_vpn_server_configuration.py +331 -0
- pulumi_azure_native/network/v20240301/get_vpn_site.py +279 -0
- pulumi_azure_native/network/v20240301/get_web_application_firewall_policy.py +266 -0
- pulumi_azure_native/network/v20240301/hub_route_table.py +318 -0
- pulumi_azure_native/network/v20240301/hub_virtual_network_connection.py +376 -0
- pulumi_azure_native/network/v20240301/inbound_nat_rule.py +541 -0
- pulumi_azure_native/network/v20240301/ip_allocation.py +436 -0
- pulumi_azure_native/network/v20240301/ip_group.py +306 -0
- pulumi_azure_native/network/v20240301/list_active_connectivity_configurations.py +112 -0
- pulumi_azure_native/network/v20240301/list_active_security_admin_rules.py +112 -0
- pulumi_azure_native/network/v20240301/list_firewall_policy_idps_signature.py +124 -0
- pulumi_azure_native/network/v20240301/list_firewall_policy_idps_signatures_filter_value.py +88 -0
- pulumi_azure_native/network/v20240301/list_network_manager_deployment_status.py +118 -0
- pulumi_azure_native/network/v20240301/list_network_manager_effective_connectivity_configurations.py +107 -0
- pulumi_azure_native/network/v20240301/list_network_manager_effective_security_admin_rules.py +107 -0
- pulumi_azure_native/network/v20240301/list_vpn_link_connection_default_shared_key.py +133 -0
- pulumi_azure_native/network/v20240301/load_balancer.py +536 -0
- pulumi_azure_native/network/v20240301/load_balancer_backend_address_pool.py +465 -0
- pulumi_azure_native/network/v20240301/local_network_gateway.py +384 -0
- pulumi_azure_native/network/v20240301/management_group_network_manager_connection.py +237 -0
- pulumi_azure_native/network/v20240301/nat_gateway.py +424 -0
- pulumi_azure_native/network/v20240301/nat_rule.py +396 -0
- pulumi_azure_native/network/v20240301/network_group.py +279 -0
- pulumi_azure_native/network/v20240301/network_interface.py +726 -0
- pulumi_azure_native/network/v20240301/network_interface_tap_configuration.py +270 -0
- pulumi_azure_native/network/v20240301/network_manager.py +368 -0
- pulumi_azure_native/network/v20240301/network_manager_routing_configuration.py +249 -0
- pulumi_azure_native/network/v20240301/network_profile.py +308 -0
- pulumi_azure_native/network/v20240301/network_security_group.py +370 -0
- pulumi_azure_native/network/v20240301/network_virtual_appliance.py +677 -0
- pulumi_azure_native/network/v20240301/network_virtual_appliance_connection.py +366 -0
- pulumi_azure_native/network/v20240301/network_watcher.py +256 -0
- pulumi_azure_native/network/v20240301/outputs.py +31507 -0
- pulumi_azure_native/network/v20240301/p2s_vpn_gateway.py +443 -0
- pulumi_azure_native/network/v20240301/packet_capture.py +496 -0
- pulumi_azure_native/network/v20240301/private_dns_zone_group.py +259 -0
- pulumi_azure_native/network/v20240301/private_endpoint.py +501 -0
- pulumi_azure_native/network/v20240301/private_link_service.py +521 -0
- pulumi_azure_native/network/v20240301/private_link_service_private_endpoint_connection.py +299 -0
- pulumi_azure_native/network/v20240301/public_ip_address.py +743 -0
- pulumi_azure_native/network/v20240301/public_ip_prefix.py +531 -0
- pulumi_azure_native/network/v20240301/route.py +356 -0
- pulumi_azure_native/network/v20240301/route_filter.py +311 -0
- pulumi_azure_native/network/v20240301/route_filter_rule.py +348 -0
- pulumi_azure_native/network/v20240301/route_map.py +309 -0
- pulumi_azure_native/network/v20240301/route_table.py +340 -0
- pulumi_azure_native/network/v20240301/routing_intent.py +269 -0
- pulumi_azure_native/network/v20240301/routing_rule.py +353 -0
- pulumi_azure_native/network/v20240301/routing_rule_collection.py +331 -0
- pulumi_azure_native/network/v20240301/scope_connection.py +287 -0
- pulumi_azure_native/network/v20240301/security_admin_configuration.py +279 -0
- pulumi_azure_native/network/v20240301/security_partner_provider.py +327 -0
- pulumi_azure_native/network/v20240301/security_rule.py +699 -0
- pulumi_azure_native/network/v20240301/security_user_configuration.py +249 -0
- pulumi_azure_native/network/v20240301/security_user_rule.py +469 -0
- pulumi_azure_native/network/v20240301/security_user_rule_collection.py +301 -0
- pulumi_azure_native/network/v20240301/service_endpoint_policy.py +378 -0
- pulumi_azure_native/network/v20240301/service_endpoint_policy_definition.py +344 -0
- pulumi_azure_native/network/v20240301/static_member.py +270 -0
- pulumi_azure_native/network/v20240301/subnet.py +734 -0
- pulumi_azure_native/network/v20240301/subscription_network_manager_connection.py +216 -0
- pulumi_azure_native/network/v20240301/virtual_appliance_site.py +298 -0
- pulumi_azure_native/network/v20240301/virtual_hub.py +805 -0
- pulumi_azure_native/network/v20240301/virtual_hub_bgp_connection.py +337 -0
- pulumi_azure_native/network/v20240301/virtual_hub_ip_configuration.py +357 -0
- pulumi_azure_native/network/v20240301/virtual_hub_route_table_v2.py +288 -0
- pulumi_azure_native/network/v20240301/virtual_network.py +670 -0
- pulumi_azure_native/network/v20240301/virtual_network_gateway.py +1007 -0
- pulumi_azure_native/network/v20240301/virtual_network_gateway_connection.py +920 -0
- pulumi_azure_native/network/v20240301/virtual_network_gateway_nat_rule.py +376 -0
- pulumi_azure_native/network/v20240301/virtual_network_peering.py +793 -0
- pulumi_azure_native/network/v20240301/virtual_network_tap.py +366 -0
- pulumi_azure_native/network/v20240301/virtual_router.py +384 -0
- pulumi_azure_native/network/v20240301/virtual_router_peering.py +296 -0
- pulumi_azure_native/network/v20240301/virtual_wan.py +393 -0
- pulumi_azure_native/network/v20240301/vpn_connection.py +696 -0
- pulumi_azure_native/network/v20240301/vpn_gateway.py +478 -0
- pulumi_azure_native/network/v20240301/vpn_server_configuration.py +639 -0
- pulumi_azure_native/network/v20240301/vpn_site.py +519 -0
- pulumi_azure_native/network/v20240301/web_application_firewall_policy.py +397 -0
- pulumi_azure_native/network/virtual_appliance_site.py +3 -3
- pulumi_azure_native/network/virtual_hub.py +3 -3
- pulumi_azure_native/network/virtual_hub_bgp_connection.py +3 -3
- pulumi_azure_native/network/virtual_hub_ip_configuration.py +3 -3
- pulumi_azure_native/network/virtual_hub_route_table_v2.py +3 -3
- pulumi_azure_native/network/virtual_network.py +3 -3
- pulumi_azure_native/network/virtual_network_gateway.py +3 -3
- pulumi_azure_native/network/virtual_network_gateway_connection.py +3 -3
- pulumi_azure_native/network/virtual_network_gateway_nat_rule.py +3 -3
- pulumi_azure_native/network/virtual_network_peering.py +3 -3
- pulumi_azure_native/network/virtual_network_tap.py +3 -3
- pulumi_azure_native/network/virtual_router.py +3 -3
- pulumi_azure_native/network/virtual_router_peering.py +3 -3
- pulumi_azure_native/network/virtual_wan.py +3 -3
- pulumi_azure_native/network/vpn_connection.py +3 -3
- pulumi_azure_native/network/vpn_gateway.py +3 -3
- pulumi_azure_native/network/vpn_server_configuration.py +3 -3
- pulumi_azure_native/network/vpn_site.py +3 -3
- pulumi_azure_native/network/web_application_firewall_policy.py +3 -3
- pulumi_azure_native/portal/_inputs.py +84 -281
- pulumi_azure_native/portal/outputs.py +51 -192
- pulumi_azure_native/programmableconnectivity/__init__.py +22 -0
- pulumi_azure_native/programmableconnectivity/_enums.py +23 -0
- pulumi_azure_native/programmableconnectivity/_inputs.py +238 -0
- pulumi_azure_native/programmableconnectivity/gateway.py +259 -0
- pulumi_azure_native/programmableconnectivity/get_gateway.py +190 -0
- pulumi_azure_native/programmableconnectivity/get_operator_api_connection.py +281 -0
- pulumi_azure_native/programmableconnectivity/operator_api_connection.py +468 -0
- pulumi_azure_native/programmableconnectivity/outputs.py +345 -0
- pulumi_azure_native/programmableconnectivity/v20240115preview/__init__.py +14 -0
- pulumi_azure_native/programmableconnectivity/v20240115preview/_enums.py +23 -0
- pulumi_azure_native/programmableconnectivity/v20240115preview/_inputs.py +238 -0
- pulumi_azure_native/programmableconnectivity/v20240115preview/gateway.py +257 -0
- pulumi_azure_native/programmableconnectivity/v20240115preview/get_gateway.py +188 -0
- pulumi_azure_native/programmableconnectivity/v20240115preview/get_operator_api_connection.py +279 -0
- pulumi_azure_native/programmableconnectivity/v20240115preview/operator_api_connection.py +466 -0
- pulumi_azure_native/programmableconnectivity/v20240115preview/outputs.py +345 -0
- pulumi_azure_native/pulumi-plugin.json +1 -1
- pulumi_azure_native/relay/__init__.py +3 -0
- pulumi_azure_native/relay/get_hybrid_connection.py +4 -0
- pulumi_azure_native/relay/get_hybrid_connection_authorization_rule.py +2 -2
- pulumi_azure_native/relay/get_namespace.py +4 -0
- pulumi_azure_native/relay/get_namespace_authorization_rule.py +2 -2
- pulumi_azure_native/relay/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/relay/get_wcf_relay.py +2 -2
- pulumi_azure_native/relay/get_wcf_relay_authorization_rule.py +2 -2
- pulumi_azure_native/relay/hybrid_connection.py +5 -1
- pulumi_azure_native/relay/hybrid_connection_authorization_rule.py +3 -3
- pulumi_azure_native/relay/list_hybrid_connection_keys.py +4 -0
- pulumi_azure_native/relay/list_namespace_keys.py +4 -0
- pulumi_azure_native/relay/list_wcf_relay_keys.py +4 -0
- pulumi_azure_native/relay/namespace.py +5 -1
- pulumi_azure_native/relay/namespace_authorization_rule.py +3 -3
- pulumi_azure_native/relay/private_endpoint_connection.py +3 -3
- pulumi_azure_native/relay/v20170401/hybrid_connection_authorization_rule.py +1 -1
- pulumi_azure_native/relay/v20170401/namespace_authorization_rule.py +1 -1
- pulumi_azure_native/relay/v20170401/wcf_relay_authorization_rule.py +1 -1
- pulumi_azure_native/relay/v20180101preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/relay/v20211101/hybrid_connection.py +1 -1
- pulumi_azure_native/relay/v20211101/hybrid_connection_authorization_rule.py +1 -1
- pulumi_azure_native/relay/v20211101/namespace.py +1 -1
- pulumi_azure_native/relay/v20211101/namespace_authorization_rule.py +1 -1
- pulumi_azure_native/relay/v20211101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/relay/v20211101/wcf_relay.py +1 -1
- pulumi_azure_native/relay/v20211101/wcf_relay_authorization_rule.py +1 -1
- pulumi_azure_native/relay/v20240101/__init__.py +27 -0
- pulumi_azure_native/relay/v20240101/_enums.py +74 -0
- pulumi_azure_native/relay/v20240101/_inputs.py +253 -0
- pulumi_azure_native/relay/v20240101/get_hybrid_connection.py +206 -0
- pulumi_azure_native/relay/v20240101/get_hybrid_connection_authorization_rule.py +159 -0
- pulumi_azure_native/relay/v20240101/get_namespace.py +266 -0
- pulumi_azure_native/relay/v20240101/get_namespace_authorization_rule.py +154 -0
- pulumi_azure_native/relay/v20240101/get_private_endpoint_connection.py +180 -0
- pulumi_azure_native/relay/v20240101/get_wcf_relay.py +245 -0
- pulumi_azure_native/relay/v20240101/get_wcf_relay_authorization_rule.py +159 -0
- pulumi_azure_native/relay/v20240101/hybrid_connection.py +288 -0
- pulumi_azure_native/relay/v20240101/hybrid_connection_authorization_rule.py +252 -0
- pulumi_azure_native/relay/v20240101/list_hybrid_connection_keys.py +145 -0
- pulumi_azure_native/relay/v20240101/list_namespace_keys.py +140 -0
- pulumi_azure_native/relay/v20240101/list_wcf_relay_keys.py +145 -0
- pulumi_azure_native/relay/v20240101/namespace.py +383 -0
- pulumi_azure_native/relay/v20240101/namespace_authorization_rule.py +231 -0
- pulumi_azure_native/relay/v20240101/outputs.py +353 -0
- pulumi_azure_native/relay/v20240101/private_endpoint_connection.py +289 -0
- pulumi_azure_native/relay/v20240101/wcf_relay.py +357 -0
- pulumi_azure_native/relay/v20240101/wcf_relay_authorization_rule.py +252 -0
- pulumi_azure_native/relay/wcf_relay.py +3 -3
- pulumi_azure_native/relay/wcf_relay_authorization_rule.py +3 -3
- pulumi_azure_native/security/__init__.py +9 -0
- pulumi_azure_native/security/_enums.py +63 -1
- pulumi_azure_native/security/_inputs.py +275 -5
- pulumi_azure_native/security/custom_recommendation.py +385 -0
- pulumi_azure_native/security/get_custom_recommendation.py +229 -0
- pulumi_azure_native/security/get_security_standard.py +203 -0
- pulumi_azure_native/security/get_standard_assignment.py +229 -0
- pulumi_azure_native/security/outputs.py +432 -4
- pulumi_azure_native/security/security_standard.py +328 -0
- pulumi_azure_native/security/standard_assignment.py +405 -0
- pulumi_azure_native/security/v20240801/__init__.py +16 -0
- pulumi_azure_native/security/v20240801/_enums.py +80 -0
- pulumi_azure_native/security/v20240801/_inputs.py +330 -0
- pulumi_azure_native/security/v20240801/custom_recommendation.py +383 -0
- pulumi_azure_native/security/v20240801/get_custom_recommendation.py +227 -0
- pulumi_azure_native/security/v20240801/get_security_standard.py +201 -0
- pulumi_azure_native/security/v20240801/get_standard_assignment.py +227 -0
- pulumi_azure_native/security/v20240801/outputs.py +584 -0
- pulumi_azure_native/security/v20240801/security_standard.py +326 -0
- pulumi_azure_native/security/v20240801/standard_assignment.py +403 -0
- pulumi_azure_native/servicebus/__init__.py +3 -0
- pulumi_azure_native/servicebus/disaster_recovery_config.py +3 -3
- pulumi_azure_native/servicebus/get_disaster_recovery_config.py +2 -2
- pulumi_azure_native/servicebus/get_migration_config.py +2 -2
- pulumi_azure_native/servicebus/get_namespace.py +2 -2
- pulumi_azure_native/servicebus/get_namespace_authorization_rule.py +2 -2
- pulumi_azure_native/servicebus/get_namespace_network_rule_set.py +2 -2
- pulumi_azure_native/servicebus/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/servicebus/get_queue.py +2 -2
- pulumi_azure_native/servicebus/get_queue_authorization_rule.py +2 -2
- pulumi_azure_native/servicebus/get_rule.py +2 -2
- pulumi_azure_native/servicebus/get_subscription.py +2 -2
- pulumi_azure_native/servicebus/get_topic.py +2 -2
- pulumi_azure_native/servicebus/get_topic_authorization_rule.py +2 -2
- pulumi_azure_native/servicebus/list_disaster_recovery_config_keys.py +2 -2
- pulumi_azure_native/servicebus/list_namespace_keys.py +2 -2
- pulumi_azure_native/servicebus/list_queue_keys.py +2 -2
- pulumi_azure_native/servicebus/list_topic_keys.py +2 -2
- pulumi_azure_native/servicebus/migration_config.py +3 -3
- pulumi_azure_native/servicebus/namespace.py +3 -3
- pulumi_azure_native/servicebus/namespace_authorization_rule.py +3 -3
- pulumi_azure_native/servicebus/namespace_network_rule_set.py +3 -3
- pulumi_azure_native/servicebus/private_endpoint_connection.py +3 -3
- pulumi_azure_native/servicebus/queue.py +3 -3
- pulumi_azure_native/servicebus/queue_authorization_rule.py +3 -3
- pulumi_azure_native/servicebus/rule.py +3 -3
- pulumi_azure_native/servicebus/subscription.py +3 -3
- pulumi_azure_native/servicebus/topic.py +3 -3
- pulumi_azure_native/servicebus/topic_authorization_rule.py +3 -3
- pulumi_azure_native/servicebus/v20220101preview/disaster_recovery_config.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/migration_config.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/namespace.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/namespace_authorization_rule.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/namespace_network_rule_set.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/queue.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/queue_authorization_rule.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/rule.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/subscription.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/topic.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/topic_authorization_rule.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/disaster_recovery_config.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/migration_config.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/namespace.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/namespace_authorization_rule.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/namespace_network_rule_set.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/queue.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/queue_authorization_rule.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/rule.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/subscription.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/topic.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/topic_authorization_rule.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/disaster_recovery_config.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/migration_config.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/namespace.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/namespace_authorization_rule.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/namespace_network_rule_set.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/queue.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/queue_authorization_rule.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/rule.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/subscription.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/topic.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/topic_authorization_rule.py +1 -1
- pulumi_azure_native/servicebus/v20240101/__init__.py +38 -0
- pulumi_azure_native/servicebus/v20240101/_enums.py +149 -0
- pulumi_azure_native/servicebus/v20240101/_inputs.py +1149 -0
- pulumi_azure_native/servicebus/v20240101/disaster_recovery_config.py +288 -0
- pulumi_azure_native/servicebus/v20240101/get_disaster_recovery_config.py +206 -0
- pulumi_azure_native/servicebus/v20240101/get_migration_config.py +206 -0
- pulumi_azure_native/servicebus/v20240101/get_namespace.py +357 -0
- pulumi_azure_native/servicebus/v20240101/get_namespace_authorization_rule.py +154 -0
- pulumi_azure_native/servicebus/v20240101/get_namespace_network_rule_set.py +201 -0
- pulumi_azure_native/servicebus/v20240101/get_private_endpoint_connection.py +180 -0
- pulumi_azure_native/servicebus/v20240101/get_queue.py +427 -0
- pulumi_azure_native/servicebus/v20240101/get_queue_authorization_rule.py +159 -0
- pulumi_azure_native/servicebus/v20240101/get_rule.py +203 -0
- pulumi_azure_native/servicebus/v20240101/get_subscription.py +393 -0
- pulumi_azure_native/servicebus/v20240101/get_topic.py +362 -0
- pulumi_azure_native/servicebus/v20240101/get_topic_authorization_rule.py +159 -0
- pulumi_azure_native/servicebus/v20240101/list_disaster_recovery_config_keys.py +171 -0
- pulumi_azure_native/servicebus/v20240101/list_namespace_keys.py +166 -0
- pulumi_azure_native/servicebus/v20240101/list_queue_keys.py +171 -0
- pulumi_azure_native/servicebus/v20240101/list_topic_keys.py +171 -0
- pulumi_azure_native/servicebus/v20240101/migration_config.py +290 -0
- pulumi_azure_native/servicebus/v20240101/namespace.py +586 -0
- pulumi_azure_native/servicebus/v20240101/namespace_authorization_rule.py +231 -0
- pulumi_azure_native/servicebus/v20240101/namespace_network_rule_set.py +331 -0
- pulumi_azure_native/servicebus/v20240101/outputs.py +1279 -0
- pulumi_azure_native/servicebus/v20240101/private_endpoint_connection.py +289 -0
- pulumi_azure_native/servicebus/v20240101/queue.py +725 -0
- pulumi_azure_native/servicebus/v20240101/queue_authorization_rule.py +252 -0
- pulumi_azure_native/servicebus/v20240101/rule.py +360 -0
- pulumi_azure_native/servicebus/v20240101/subscription.py +679 -0
- pulumi_azure_native/servicebus/v20240101/topic.py +580 -0
- pulumi_azure_native/servicebus/v20240101/topic_authorization_rule.py +252 -0
- pulumi_azure_native/signalrservice/__init__.py +3 -0
- pulumi_azure_native/signalrservice/get_signal_r.py +2 -2
- pulumi_azure_native/signalrservice/get_signal_r_custom_certificate.py +2 -2
- pulumi_azure_native/signalrservice/get_signal_r_custom_domain.py +2 -2
- pulumi_azure_native/signalrservice/get_signal_r_private_endpoint_connection.py +2 -2
- pulumi_azure_native/signalrservice/get_signal_r_replica.py +2 -2
- pulumi_azure_native/signalrservice/get_signal_r_shared_private_link_resource.py +2 -2
- pulumi_azure_native/signalrservice/list_signal_r_keys.py +2 -2
- pulumi_azure_native/signalrservice/signal_r.py +3 -3
- pulumi_azure_native/signalrservice/signal_r_custom_certificate.py +3 -3
- pulumi_azure_native/signalrservice/signal_r_custom_domain.py +3 -3
- pulumi_azure_native/signalrservice/signal_r_private_endpoint_connection.py +3 -3
- pulumi_azure_native/signalrservice/signal_r_replica.py +3 -3
- pulumi_azure_native/signalrservice/signal_r_shared_private_link_resource.py +3 -3
- pulumi_azure_native/signalrservice/v20230201/signal_r.py +1 -1
- pulumi_azure_native/signalrservice/v20230201/signal_r_custom_certificate.py +1 -1
- pulumi_azure_native/signalrservice/v20230201/signal_r_custom_domain.py +1 -1
- pulumi_azure_native/signalrservice/v20230201/signal_r_private_endpoint_connection.py +1 -1
- pulumi_azure_native/signalrservice/v20230201/signal_r_shared_private_link_resource.py +1 -1
- pulumi_azure_native/signalrservice/v20230301preview/signal_r.py +1 -1
- pulumi_azure_native/signalrservice/v20230301preview/signal_r_custom_certificate.py +1 -1
- pulumi_azure_native/signalrservice/v20230301preview/signal_r_custom_domain.py +1 -1
- pulumi_azure_native/signalrservice/v20230301preview/signal_r_private_endpoint_connection.py +1 -1
- pulumi_azure_native/signalrservice/v20230301preview/signal_r_replica.py +1 -1
- pulumi_azure_native/signalrservice/v20230301preview/signal_r_shared_private_link_resource.py +1 -1
- pulumi_azure_native/signalrservice/v20230601preview/signal_r.py +1 -1
- pulumi_azure_native/signalrservice/v20230601preview/signal_r_custom_certificate.py +1 -1
- pulumi_azure_native/signalrservice/v20230601preview/signal_r_custom_domain.py +1 -1
- pulumi_azure_native/signalrservice/v20230601preview/signal_r_private_endpoint_connection.py +1 -1
- pulumi_azure_native/signalrservice/v20230601preview/signal_r_replica.py +1 -1
- pulumi_azure_native/signalrservice/v20230601preview/signal_r_shared_private_link_resource.py +1 -1
- pulumi_azure_native/signalrservice/v20230801preview/signal_r.py +1 -1
- pulumi_azure_native/signalrservice/v20230801preview/signal_r_custom_certificate.py +1 -1
- pulumi_azure_native/signalrservice/v20230801preview/signal_r_custom_domain.py +1 -1
- pulumi_azure_native/signalrservice/v20230801preview/signal_r_private_endpoint_connection.py +1 -1
- pulumi_azure_native/signalrservice/v20230801preview/signal_r_replica.py +1 -1
- pulumi_azure_native/signalrservice/v20230801preview/signal_r_shared_private_link_resource.py +1 -1
- pulumi_azure_native/signalrservice/v20240101preview/signal_r.py +1 -1
- pulumi_azure_native/signalrservice/v20240101preview/signal_r_custom_certificate.py +1 -1
- pulumi_azure_native/signalrservice/v20240101preview/signal_r_custom_domain.py +1 -1
- pulumi_azure_native/signalrservice/v20240101preview/signal_r_private_endpoint_connection.py +1 -1
- pulumi_azure_native/signalrservice/v20240101preview/signal_r_replica.py +1 -1
- pulumi_azure_native/signalrservice/v20240101preview/signal_r_shared_private_link_resource.py +1 -1
- pulumi_azure_native/signalrservice/v20240301/signal_r.py +1 -1
- pulumi_azure_native/signalrservice/v20240301/signal_r_custom_certificate.py +1 -1
- pulumi_azure_native/signalrservice/v20240301/signal_r_custom_domain.py +1 -1
- pulumi_azure_native/signalrservice/v20240301/signal_r_private_endpoint_connection.py +1 -1
- pulumi_azure_native/signalrservice/v20240301/signal_r_replica.py +1 -1
- pulumi_azure_native/signalrservice/v20240301/signal_r_shared_private_link_resource.py +1 -1
- pulumi_azure_native/signalrservice/v20240401preview/signal_r.py +1 -1
- pulumi_azure_native/signalrservice/v20240401preview/signal_r_custom_certificate.py +1 -1
- pulumi_azure_native/signalrservice/v20240401preview/signal_r_custom_domain.py +1 -1
- pulumi_azure_native/signalrservice/v20240401preview/signal_r_private_endpoint_connection.py +1 -1
- pulumi_azure_native/signalrservice/v20240401preview/signal_r_replica.py +1 -1
- pulumi_azure_native/signalrservice/v20240401preview/signal_r_shared_private_link_resource.py +1 -1
- pulumi_azure_native/signalrservice/v20240801preview/__init__.py +23 -0
- pulumi_azure_native/signalrservice/v20240801preview/_enums.py +102 -0
- pulumi_azure_native/signalrservice/v20240801preview/_inputs.py +1650 -0
- pulumi_azure_native/signalrservice/v20240801preview/get_signal_r.py +502 -0
- pulumi_azure_native/signalrservice/v20240801preview/get_signal_r_custom_certificate.py +180 -0
- pulumi_azure_native/signalrservice/v20240801preview/get_signal_r_custom_domain.py +167 -0
- pulumi_azure_native/signalrservice/v20240801preview/get_signal_r_private_endpoint_connection.py +180 -0
- pulumi_azure_native/signalrservice/v20240801preview/get_signal_r_replica.py +209 -0
- pulumi_azure_native/signalrservice/v20240801preview/get_signal_r_shared_private_link_resource.py +206 -0
- pulumi_azure_native/signalrservice/v20240801preview/list_signal_r_keys.py +122 -0
- pulumi_azure_native/signalrservice/v20240801preview/outputs.py +1750 -0
- pulumi_azure_native/signalrservice/v20240801preview/signal_r.py +892 -0
- pulumi_azure_native/signalrservice/v20240801preview/signal_r_custom_certificate.py +289 -0
- pulumi_azure_native/signalrservice/v20240801preview/signal_r_custom_domain.py +260 -0
- pulumi_azure_native/signalrservice/v20240801preview/signal_r_private_endpoint_connection.py +270 -0
- pulumi_azure_native/signalrservice/v20240801preview/signal_r_replica.py +367 -0
- pulumi_azure_native/signalrservice/v20240801preview/signal_r_shared_private_link_resource.py +328 -0
- pulumi_azure_native/sql/__init__.py +3 -0
- pulumi_azure_native/sql/backup_long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/backup_short_term_retention_policy.py +3 -3
- pulumi_azure_native/sql/data_masking_policy.py +3 -3
- pulumi_azure_native/sql/database.py +3 -3
- pulumi_azure_native/sql/database_advisor.py +3 -3
- pulumi_azure_native/sql/database_blob_auditing_policy.py +3 -3
- pulumi_azure_native/sql/database_security_alert_policy.py +3 -3
- pulumi_azure_native/sql/database_sql_vulnerability_assessment_rule_baseline.py +3 -3
- pulumi_azure_native/sql/database_threat_detection_policy.py +1 -1
- pulumi_azure_native/sql/database_vulnerability_assessment.py +3 -3
- pulumi_azure_native/sql/database_vulnerability_assessment_rule_baseline.py +3 -3
- pulumi_azure_native/sql/distributed_availability_group.py +3 -3
- pulumi_azure_native/sql/elastic_pool.py +3 -3
- pulumi_azure_native/sql/encryption_protector.py +3 -3
- pulumi_azure_native/sql/extended_database_blob_auditing_policy.py +3 -3
- pulumi_azure_native/sql/extended_server_blob_auditing_policy.py +3 -3
- pulumi_azure_native/sql/failover_group.py +3 -3
- pulumi_azure_native/sql/firewall_rule.py +3 -3
- pulumi_azure_native/sql/geo_backup_policy.py +3 -3
- pulumi_azure_native/sql/get_backup_short_term_retention_policy.py +2 -2
- pulumi_azure_native/sql/get_data_masking_policy.py +2 -2
- pulumi_azure_native/sql/get_database.py +2 -2
- pulumi_azure_native/sql/get_database_advisor.py +2 -2
- pulumi_azure_native/sql/get_database_blob_auditing_policy.py +2 -2
- pulumi_azure_native/sql/get_database_security_alert_policy.py +2 -2
- pulumi_azure_native/sql/get_database_sql_vulnerability_assessment_rule_baseline.py +2 -2
- pulumi_azure_native/sql/get_database_vulnerability_assessment.py +2 -2
- pulumi_azure_native/sql/get_database_vulnerability_assessment_rule_baseline.py +2 -2
- pulumi_azure_native/sql/get_distributed_availability_group.py +2 -2
- pulumi_azure_native/sql/get_elastic_pool.py +2 -2
- pulumi_azure_native/sql/get_encryption_protector.py +2 -2
- pulumi_azure_native/sql/get_extended_database_blob_auditing_policy.py +2 -2
- pulumi_azure_native/sql/get_extended_server_blob_auditing_policy.py +2 -2
- pulumi_azure_native/sql/get_failover_group.py +2 -2
- pulumi_azure_native/sql/get_firewall_rule.py +2 -2
- pulumi_azure_native/sql/get_geo_backup_policy.py +2 -2
- pulumi_azure_native/sql/get_i_pv6_firewall_rule.py +2 -2
- pulumi_azure_native/sql/get_instance_failover_group.py +2 -2
- pulumi_azure_native/sql/get_instance_pool.py +2 -2
- pulumi_azure_native/sql/get_job.py +2 -2
- pulumi_azure_native/sql/get_job_agent.py +2 -2
- pulumi_azure_native/sql/get_job_credential.py +2 -2
- pulumi_azure_native/sql/get_job_private_endpoint.py +2 -2
- pulumi_azure_native/sql/get_job_step.py +2 -2
- pulumi_azure_native/sql/get_job_target_group.py +2 -2
- pulumi_azure_native/sql/get_long_term_retention_policy.py +2 -2
- pulumi_azure_native/sql/get_managed_database.py +2 -2
- pulumi_azure_native/sql/get_managed_database_sensitivity_label.py +2 -2
- pulumi_azure_native/sql/get_managed_database_vulnerability_assessment.py +2 -2
- pulumi_azure_native/sql/get_managed_database_vulnerability_assessment_rule_baseline.py +2 -2
- pulumi_azure_native/sql/get_managed_instance.py +2 -2
- pulumi_azure_native/sql/get_managed_instance_administrator.py +2 -2
- pulumi_azure_native/sql/get_managed_instance_azure_ad_only_authentication.py +2 -2
- pulumi_azure_native/sql/get_managed_instance_key.py +2 -2
- pulumi_azure_native/sql/get_managed_instance_long_term_retention_policy.py +2 -2
- pulumi_azure_native/sql/get_managed_instance_private_endpoint_connection.py +2 -2
- pulumi_azure_native/sql/get_managed_instance_vulnerability_assessment.py +2 -2
- pulumi_azure_native/sql/get_managed_server_dns_alias.py +2 -2
- pulumi_azure_native/sql/get_outbound_firewall_rule.py +2 -2
- pulumi_azure_native/sql/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/sql/get_replication_link.py +2 -2
- pulumi_azure_native/sql/get_sensitivity_label.py +2 -2
- pulumi_azure_native/sql/get_server.py +2 -2
- pulumi_azure_native/sql/get_server_advisor.py +2 -2
- pulumi_azure_native/sql/get_server_azure_ad_administrator.py +2 -2
- pulumi_azure_native/sql/get_server_azure_ad_only_authentication.py +2 -2
- pulumi_azure_native/sql/get_server_blob_auditing_policy.py +2 -2
- pulumi_azure_native/sql/get_server_dns_alias.py +2 -2
- pulumi_azure_native/sql/get_server_key.py +2 -2
- pulumi_azure_native/sql/get_server_security_alert_policy.py +2 -2
- pulumi_azure_native/sql/get_server_trust_certificate.py +2 -2
- pulumi_azure_native/sql/get_server_trust_group.py +2 -2
- pulumi_azure_native/sql/get_server_vulnerability_assessment.py +2 -2
- pulumi_azure_native/sql/get_sql_vulnerability_assessment_rule_baseline.py +2 -2
- pulumi_azure_native/sql/get_sql_vulnerability_assessments_setting.py +2 -2
- pulumi_azure_native/sql/get_start_stop_managed_instance_schedule.py +2 -2
- pulumi_azure_native/sql/get_sync_agent.py +2 -2
- pulumi_azure_native/sql/get_sync_group.py +2 -2
- pulumi_azure_native/sql/get_sync_member.py +2 -2
- pulumi_azure_native/sql/get_transparent_data_encryption.py +2 -2
- pulumi_azure_native/sql/get_virtual_network_rule.py +2 -2
- pulumi_azure_native/sql/get_workload_classifier.py +2 -2
- pulumi_azure_native/sql/get_workload_group.py +2 -2
- pulumi_azure_native/sql/i_pv6_firewall_rule.py +3 -3
- pulumi_azure_native/sql/instance_failover_group.py +3 -3
- pulumi_azure_native/sql/instance_pool.py +3 -3
- pulumi_azure_native/sql/job.py +3 -3
- pulumi_azure_native/sql/job_agent.py +3 -3
- pulumi_azure_native/sql/job_credential.py +3 -3
- pulumi_azure_native/sql/job_private_endpoint.py +3 -3
- pulumi_azure_native/sql/job_step.py +3 -3
- pulumi_azure_native/sql/job_target_group.py +3 -3
- pulumi_azure_native/sql/long_term_retention_policy.py +3 -3
- pulumi_azure_native/sql/managed_database.py +3 -3
- pulumi_azure_native/sql/managed_database_sensitivity_label.py +3 -3
- pulumi_azure_native/sql/managed_database_vulnerability_assessment.py +3 -3
- pulumi_azure_native/sql/managed_database_vulnerability_assessment_rule_baseline.py +3 -3
- pulumi_azure_native/sql/managed_instance.py +3 -3
- pulumi_azure_native/sql/managed_instance_administrator.py +3 -3
- pulumi_azure_native/sql/managed_instance_azure_ad_only_authentication.py +3 -3
- pulumi_azure_native/sql/managed_instance_key.py +3 -3
- pulumi_azure_native/sql/managed_instance_long_term_retention_policy.py +3 -3
- pulumi_azure_native/sql/managed_instance_private_endpoint_connection.py +3 -3
- pulumi_azure_native/sql/managed_instance_vulnerability_assessment.py +3 -3
- pulumi_azure_native/sql/managed_server_dns_alias.py +3 -3
- pulumi_azure_native/sql/outbound_firewall_rule.py +3 -3
- pulumi_azure_native/sql/private_endpoint_connection.py +3 -3
- pulumi_azure_native/sql/replication_link.py +3 -3
- pulumi_azure_native/sql/sensitivity_label.py +3 -3
- pulumi_azure_native/sql/server.py +3 -3
- pulumi_azure_native/sql/server_advisor.py +3 -3
- pulumi_azure_native/sql/server_azure_ad_administrator.py +3 -3
- pulumi_azure_native/sql/server_azure_ad_only_authentication.py +3 -3
- pulumi_azure_native/sql/server_blob_auditing_policy.py +3 -3
- pulumi_azure_native/sql/server_dns_alias.py +3 -3
- pulumi_azure_native/sql/server_key.py +3 -3
- pulumi_azure_native/sql/server_security_alert_policy.py +3 -3
- pulumi_azure_native/sql/server_trust_certificate.py +3 -3
- pulumi_azure_native/sql/server_trust_group.py +3 -3
- pulumi_azure_native/sql/server_vulnerability_assessment.py +3 -3
- pulumi_azure_native/sql/sql_vulnerability_assessment_rule_baseline.py +3 -3
- pulumi_azure_native/sql/sql_vulnerability_assessments_setting.py +3 -3
- pulumi_azure_native/sql/start_stop_managed_instance_schedule.py +3 -3
- pulumi_azure_native/sql/sync_agent.py +3 -3
- pulumi_azure_native/sql/sync_group.py +3 -3
- pulumi_azure_native/sql/sync_member.py +3 -3
- pulumi_azure_native/sql/transparent_data_encryption.py +3 -3
- pulumi_azure_native/sql/v20140401/database.py +1 -1
- pulumi_azure_native/sql/v20140401/database_advisor.py +1 -1
- pulumi_azure_native/sql/v20140401/database_threat_detection_policy.py +1 -1
- pulumi_azure_native/sql/v20140401/elastic_pool.py +1 -1
- pulumi_azure_native/sql/v20140401/firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20140401/server.py +1 -1
- pulumi_azure_native/sql/v20140401/server_advisor.py +1 -1
- pulumi_azure_native/sql/v20140401/server_azure_ad_administrator.py +1 -1
- pulumi_azure_native/sql/v20140401/transparent_data_encryption.py +1 -1
- pulumi_azure_native/sql/v20150501preview/server_key.py +1 -1
- pulumi_azure_native/sql/v20170301preview/backup_long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20170301preview/server_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20180601preview/database_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20190601preview/database.py +1 -1
- pulumi_azure_native/sql/v20200202preview/database.py +1 -1
- pulumi_azure_native/sql/v20200801preview/database.py +1 -1
- pulumi_azure_native/sql/v20210201preview/managed_instance.py +1 -1
- pulumi_azure_native/sql/v20211101/backup_short_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20211101/data_masking_policy.py +1 -1
- pulumi_azure_native/sql/v20211101/database.py +1 -1
- pulumi_azure_native/sql/v20211101/database_advisor.py +1 -1
- pulumi_azure_native/sql/v20211101/database_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20211101/database_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20211101/database_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20211101/database_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20211101/distributed_availability_group.py +1 -1
- pulumi_azure_native/sql/v20211101/elastic_pool.py +1 -1
- pulumi_azure_native/sql/v20211101/encryption_protector.py +1 -1
- pulumi_azure_native/sql/v20211101/extended_database_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20211101/extended_server_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20211101/failover_group.py +1 -1
- pulumi_azure_native/sql/v20211101/firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20211101/geo_backup_policy.py +1 -1
- pulumi_azure_native/sql/v20211101/i_pv6_firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20211101/instance_failover_group.py +1 -1
- pulumi_azure_native/sql/v20211101/instance_pool.py +1 -1
- pulumi_azure_native/sql/v20211101/job.py +1 -1
- pulumi_azure_native/sql/v20211101/job_agent.py +1 -1
- pulumi_azure_native/sql/v20211101/job_credential.py +1 -1
- pulumi_azure_native/sql/v20211101/job_step.py +1 -1
- pulumi_azure_native/sql/v20211101/job_target_group.py +1 -1
- pulumi_azure_native/sql/v20211101/long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_database.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_database_sensitivity_label.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_database_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_database_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_instance.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_instance_administrator.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_instance_azure_ad_only_authentication.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_instance_key.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_instance_private_endpoint_connection.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_instance_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_server_dns_alias.py +1 -1
- pulumi_azure_native/sql/v20211101/outbound_firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20211101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/sql/v20211101/sensitivity_label.py +1 -1
- pulumi_azure_native/sql/v20211101/server.py +1 -1
- pulumi_azure_native/sql/v20211101/server_advisor.py +1 -1
- pulumi_azure_native/sql/v20211101/server_azure_ad_administrator.py +1 -1
- pulumi_azure_native/sql/v20211101/server_azure_ad_only_authentication.py +1 -1
- pulumi_azure_native/sql/v20211101/server_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20211101/server_dns_alias.py +1 -1
- pulumi_azure_native/sql/v20211101/server_key.py +1 -1
- pulumi_azure_native/sql/v20211101/server_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20211101/server_trust_certificate.py +1 -1
- pulumi_azure_native/sql/v20211101/server_trust_group.py +1 -1
- pulumi_azure_native/sql/v20211101/server_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20211101/sync_agent.py +1 -1
- pulumi_azure_native/sql/v20211101/sync_group.py +1 -1
- pulumi_azure_native/sql/v20211101/sync_member.py +1 -1
- pulumi_azure_native/sql/v20211101/transparent_data_encryption.py +1 -1
- pulumi_azure_native/sql/v20211101/virtual_network_rule.py +1 -1
- pulumi_azure_native/sql/v20211101/workload_classifier.py +1 -1
- pulumi_azure_native/sql/v20211101/workload_group.py +1 -1
- pulumi_azure_native/sql/v20221101preview/backup_short_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/data_masking_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/database.py +1 -1
- pulumi_azure_native/sql/v20221101preview/database_advisor.py +1 -1
- pulumi_azure_native/sql/v20221101preview/database_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/database_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/database_sql_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20221101preview/database_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20221101preview/database_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20221101preview/distributed_availability_group.py +1 -1
- pulumi_azure_native/sql/v20221101preview/elastic_pool.py +1 -1
- pulumi_azure_native/sql/v20221101preview/encryption_protector.py +1 -1
- pulumi_azure_native/sql/v20221101preview/extended_database_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/extended_server_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/failover_group.py +1 -1
- pulumi_azure_native/sql/v20221101preview/firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20221101preview/geo_backup_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/i_pv6_firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20221101preview/instance_failover_group.py +1 -1
- pulumi_azure_native/sql/v20221101preview/instance_pool.py +1 -1
- pulumi_azure_native/sql/v20221101preview/job.py +1 -1
- pulumi_azure_native/sql/v20221101preview/job_agent.py +1 -1
- pulumi_azure_native/sql/v20221101preview/job_credential.py +1 -1
- pulumi_azure_native/sql/v20221101preview/job_step.py +1 -1
- pulumi_azure_native/sql/v20221101preview/job_target_group.py +1 -1
- pulumi_azure_native/sql/v20221101preview/long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_database.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_database_sensitivity_label.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_database_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_database_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_instance.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_instance_administrator.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_instance_azure_ad_only_authentication.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_instance_key.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_instance_long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_instance_private_endpoint_connection.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_instance_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_server_dns_alias.py +1 -1
- pulumi_azure_native/sql/v20221101preview/outbound_firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20221101preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/sql/v20221101preview/sensitivity_label.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server_advisor.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server_azure_ad_administrator.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server_azure_ad_only_authentication.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server_dns_alias.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server_key.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server_trust_certificate.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server_trust_group.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20221101preview/sql_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20221101preview/sql_vulnerability_assessments_setting.py +1 -1
- pulumi_azure_native/sql/v20221101preview/start_stop_managed_instance_schedule.py +1 -1
- pulumi_azure_native/sql/v20221101preview/sync_agent.py +1 -1
- pulumi_azure_native/sql/v20221101preview/sync_group.py +1 -1
- pulumi_azure_native/sql/v20221101preview/sync_member.py +1 -1
- pulumi_azure_native/sql/v20221101preview/transparent_data_encryption.py +1 -1
- pulumi_azure_native/sql/v20221101preview/virtual_network_rule.py +1 -1
- pulumi_azure_native/sql/v20221101preview/workload_classifier.py +1 -1
- pulumi_azure_native/sql/v20221101preview/workload_group.py +1 -1
- pulumi_azure_native/sql/v20230201preview/backup_short_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/data_masking_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/database.py +1 -1
- pulumi_azure_native/sql/v20230201preview/database_advisor.py +1 -1
- pulumi_azure_native/sql/v20230201preview/database_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/database_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/database_sql_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230201preview/database_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230201preview/database_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230201preview/distributed_availability_group.py +1 -1
- pulumi_azure_native/sql/v20230201preview/elastic_pool.py +1 -1
- pulumi_azure_native/sql/v20230201preview/encryption_protector.py +1 -1
- pulumi_azure_native/sql/v20230201preview/extended_database_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/extended_server_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/failover_group.py +1 -1
- pulumi_azure_native/sql/v20230201preview/firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20230201preview/geo_backup_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/i_pv6_firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20230201preview/instance_failover_group.py +1 -1
- pulumi_azure_native/sql/v20230201preview/instance_pool.py +1 -1
- pulumi_azure_native/sql/v20230201preview/job.py +1 -1
- pulumi_azure_native/sql/v20230201preview/job_agent.py +1 -1
- pulumi_azure_native/sql/v20230201preview/job_credential.py +1 -1
- pulumi_azure_native/sql/v20230201preview/job_step.py +1 -1
- pulumi_azure_native/sql/v20230201preview/job_target_group.py +1 -1
- pulumi_azure_native/sql/v20230201preview/long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_database.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_database_sensitivity_label.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_database_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_database_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_instance.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_instance_administrator.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_instance_azure_ad_only_authentication.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_instance_key.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_instance_long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_instance_private_endpoint_connection.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_instance_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_server_dns_alias.py +1 -1
- pulumi_azure_native/sql/v20230201preview/outbound_firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20230201preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/sql/v20230201preview/sensitivity_label.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server_advisor.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server_azure_ad_administrator.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server_azure_ad_only_authentication.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server_dns_alias.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server_key.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server_trust_certificate.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server_trust_group.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230201preview/sql_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230201preview/sql_vulnerability_assessments_setting.py +1 -1
- pulumi_azure_native/sql/v20230201preview/start_stop_managed_instance_schedule.py +1 -1
- pulumi_azure_native/sql/v20230201preview/sync_agent.py +1 -1
- pulumi_azure_native/sql/v20230201preview/sync_group.py +1 -1
- pulumi_azure_native/sql/v20230201preview/sync_member.py +1 -1
- pulumi_azure_native/sql/v20230201preview/transparent_data_encryption.py +1 -1
- pulumi_azure_native/sql/v20230201preview/virtual_network_rule.py +1 -1
- pulumi_azure_native/sql/v20230201preview/workload_classifier.py +1 -1
- pulumi_azure_native/sql/v20230201preview/workload_group.py +1 -1
- pulumi_azure_native/sql/v20230501preview/backup_short_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/data_masking_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/database.py +1 -1
- pulumi_azure_native/sql/v20230501preview/database_advisor.py +1 -1
- pulumi_azure_native/sql/v20230501preview/database_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/database_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/database_sql_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230501preview/database_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230501preview/database_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230501preview/distributed_availability_group.py +1 -1
- pulumi_azure_native/sql/v20230501preview/elastic_pool.py +1 -1
- pulumi_azure_native/sql/v20230501preview/encryption_protector.py +1 -1
- pulumi_azure_native/sql/v20230501preview/extended_database_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/extended_server_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/failover_group.py +1 -1
- pulumi_azure_native/sql/v20230501preview/firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20230501preview/geo_backup_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/i_pv6_firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20230501preview/instance_failover_group.py +1 -1
- pulumi_azure_native/sql/v20230501preview/instance_pool.py +1 -1
- pulumi_azure_native/sql/v20230501preview/job.py +1 -1
- pulumi_azure_native/sql/v20230501preview/job_agent.py +1 -1
- pulumi_azure_native/sql/v20230501preview/job_credential.py +1 -1
- pulumi_azure_native/sql/v20230501preview/job_private_endpoint.py +1 -1
- pulumi_azure_native/sql/v20230501preview/job_step.py +1 -1
- pulumi_azure_native/sql/v20230501preview/job_target_group.py +1 -1
- pulumi_azure_native/sql/v20230501preview/long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_database.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_database_sensitivity_label.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_database_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_database_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_instance.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_instance_administrator.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_instance_azure_ad_only_authentication.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_instance_key.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_instance_long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_instance_private_endpoint_connection.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_instance_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_server_dns_alias.py +1 -1
- pulumi_azure_native/sql/v20230501preview/outbound_firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20230501preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/sql/v20230501preview/replication_link.py +1 -1
- pulumi_azure_native/sql/v20230501preview/sensitivity_label.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server_advisor.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server_azure_ad_administrator.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server_azure_ad_only_authentication.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server_dns_alias.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server_key.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server_trust_certificate.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server_trust_group.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230501preview/sql_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230501preview/sql_vulnerability_assessments_setting.py +1 -1
- pulumi_azure_native/sql/v20230501preview/start_stop_managed_instance_schedule.py +1 -1
- pulumi_azure_native/sql/v20230501preview/sync_agent.py +1 -1
- pulumi_azure_native/sql/v20230501preview/sync_group.py +1 -1
- pulumi_azure_native/sql/v20230501preview/sync_member.py +1 -1
- pulumi_azure_native/sql/v20230501preview/transparent_data_encryption.py +1 -1
- pulumi_azure_native/sql/v20230501preview/virtual_network_rule.py +1 -1
- pulumi_azure_native/sql/v20230501preview/workload_classifier.py +1 -1
- pulumi_azure_native/sql/v20230501preview/workload_group.py +1 -1
- pulumi_azure_native/sql/v20230801preview/backup_short_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/data_masking_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/database.py +1 -1
- pulumi_azure_native/sql/v20230801preview/database_advisor.py +1 -1
- pulumi_azure_native/sql/v20230801preview/database_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/database_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/database_sql_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230801preview/database_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230801preview/database_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230801preview/distributed_availability_group.py +1 -1
- pulumi_azure_native/sql/v20230801preview/elastic_pool.py +1 -1
- pulumi_azure_native/sql/v20230801preview/encryption_protector.py +1 -1
- pulumi_azure_native/sql/v20230801preview/extended_database_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/extended_server_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/failover_group.py +1 -1
- pulumi_azure_native/sql/v20230801preview/firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20230801preview/geo_backup_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/i_pv6_firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20230801preview/instance_failover_group.py +1 -1
- pulumi_azure_native/sql/v20230801preview/instance_pool.py +1 -1
- pulumi_azure_native/sql/v20230801preview/job.py +1 -1
- pulumi_azure_native/sql/v20230801preview/job_agent.py +1 -1
- pulumi_azure_native/sql/v20230801preview/job_credential.py +1 -1
- pulumi_azure_native/sql/v20230801preview/job_private_endpoint.py +1 -1
- pulumi_azure_native/sql/v20230801preview/job_step.py +1 -1
- pulumi_azure_native/sql/v20230801preview/job_target_group.py +1 -1
- pulumi_azure_native/sql/v20230801preview/long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_database.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_database_sensitivity_label.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_database_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_database_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_instance.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_instance_administrator.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_instance_azure_ad_only_authentication.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_instance_key.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_instance_long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_instance_private_endpoint_connection.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_instance_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_server_dns_alias.py +1 -1
- pulumi_azure_native/sql/v20230801preview/outbound_firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20230801preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/sql/v20230801preview/replication_link.py +1 -1
- pulumi_azure_native/sql/v20230801preview/sensitivity_label.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server_advisor.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server_azure_ad_administrator.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server_azure_ad_only_authentication.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server_dns_alias.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server_key.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server_trust_certificate.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server_trust_group.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230801preview/sql_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230801preview/sql_vulnerability_assessments_setting.py +1 -1
- pulumi_azure_native/sql/v20230801preview/start_stop_managed_instance_schedule.py +1 -1
- pulumi_azure_native/sql/v20230801preview/sync_agent.py +1 -1
- pulumi_azure_native/sql/v20230801preview/sync_group.py +1 -1
- pulumi_azure_native/sql/v20230801preview/sync_member.py +1 -1
- pulumi_azure_native/sql/v20230801preview/transparent_data_encryption.py +1 -1
- pulumi_azure_native/sql/v20230801preview/virtual_network_rule.py +1 -1
- pulumi_azure_native/sql/v20230801preview/workload_classifier.py +1 -1
- pulumi_azure_native/sql/v20230801preview/workload_group.py +1 -1
- pulumi_azure_native/sql/v20240501preview/__init__.py +138 -0
- pulumi_azure_native/sql/v20240501preview/_enums.py +616 -0
- pulumi_azure_native/sql/v20240501preview/_inputs.py +2390 -0
- pulumi_azure_native/sql/v20240501preview/backup_short_term_retention_policy.py +258 -0
- pulumi_azure_native/sql/v20240501preview/data_masking_policy.py +300 -0
- pulumi_azure_native/sql/v20240501preview/database.py +1542 -0
- pulumi_azure_native/sql/v20240501preview/database_advisor.py +302 -0
- pulumi_azure_native/sql/v20240501preview/database_blob_auditing_policy.py +792 -0
- pulumi_azure_native/sql/v20240501preview/database_security_alert_policy.py +426 -0
- pulumi_azure_native/sql/v20240501preview/database_sql_vulnerability_assessment_rule_baseline.py +299 -0
- pulumi_azure_native/sql/v20240501preview/database_vulnerability_assessment.py +291 -0
- pulumi_azure_native/sql/v20240501preview/database_vulnerability_assessment_rule_baseline.py +274 -0
- pulumi_azure_native/sql/v20240501preview/distributed_availability_group.py +443 -0
- pulumi_azure_native/sql/v20240501preview/elastic_pool.py +613 -0
- pulumi_azure_native/sql/v20240501preview/encryption_protector.py +318 -0
- pulumi_azure_native/sql/v20240501preview/extended_database_blob_auditing_policy.py +811 -0
- pulumi_azure_native/sql/v20240501preview/extended_server_blob_auditing_policy.py +855 -0
- pulumi_azure_native/sql/v20240501preview/failover_group.py +379 -0
- pulumi_azure_native/sql/v20240501preview/firewall_rule.py +256 -0
- pulumi_azure_native/sql/v20240501preview/geo_backup_policy.py +261 -0
- pulumi_azure_native/sql/v20240501preview/get_backup_short_term_retention_policy.py +145 -0
- pulumi_azure_native/sql/v20240501preview/get_data_masking_policy.py +197 -0
- pulumi_azure_native/sql/v20240501preview/get_database.py +723 -0
- pulumi_azure_native/sql/v20240501preview/get_database_advisor.py +224 -0
- pulumi_azure_native/sql/v20240501preview/get_database_blob_auditing_policy.py +320 -0
- pulumi_azure_native/sql/v20240501preview/get_database_security_alert_policy.py +237 -0
- pulumi_azure_native/sql/v20240501preview/get_database_sql_vulnerability_assessment_rule_baseline.py +154 -0
- pulumi_azure_native/sql/v20240501preview/get_database_vulnerability_assessment.py +133 -0
- pulumi_azure_native/sql/v20240501preview/get_database_vulnerability_assessment_rule_baseline.py +143 -0
- pulumi_azure_native/sql/v20240501preview/get_distributed_availability_group.py +258 -0
- pulumi_azure_native/sql/v20240501preview/get_elastic_pool.py +329 -0
- pulumi_azure_native/sql/v20240501preview/get_encryption_protector.py +218 -0
- pulumi_azure_native/sql/v20240501preview/get_extended_database_blob_auditing_policy.py +320 -0
- pulumi_azure_native/sql/v20240501preview/get_extended_server_blob_auditing_policy.py +337 -0
- pulumi_azure_native/sql/v20240501preview/get_failover_group.py +219 -0
- pulumi_azure_native/sql/v20240501preview/get_firewall_rule.py +140 -0
- pulumi_azure_native/sql/v20240501preview/get_geo_backup_policy.py +171 -0
- pulumi_azure_native/sql/v20240501preview/get_i_pv6_firewall_rule.py +140 -0
- pulumi_azure_native/sql/v20240501preview/get_instance_failover_group.py +206 -0
- pulumi_azure_native/sql/v20240501preview/get_instance_pool.py +214 -0
- pulumi_azure_native/sql/v20240501preview/get_job.py +159 -0
- pulumi_azure_native/sql/v20240501preview/get_job_agent.py +193 -0
- pulumi_azure_native/sql/v20240501preview/get_job_credential.py +132 -0
- pulumi_azure_native/sql/v20240501preview/get_job_private_endpoint.py +145 -0
- pulumi_azure_native/sql/v20240501preview/get_job_step.py +203 -0
- pulumi_azure_native/sql/v20240501preview/get_job_target_group.py +133 -0
- pulumi_azure_native/sql/v20240501preview/get_long_term_retention_policy.py +171 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_database.py +244 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_database_sensitivity_label.py +271 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_database_vulnerability_assessment.py +133 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_database_vulnerability_assessment_rule_baseline.py +143 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_instance.py +640 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_instance_administrator.py +164 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_instance_azure_ad_only_authentication.py +127 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_instance_key.py +166 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_instance_long_term_retention_policy.py +184 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_instance_private_endpoint_connection.py +154 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_instance_vulnerability_assessment.py +128 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_server_dns_alias.py +138 -0
- pulumi_azure_native/sql/v20240501preview/get_outbound_firewall_rule.py +125 -0
- pulumi_azure_native/sql/v20240501preview/get_private_endpoint_connection.py +167 -0
- pulumi_azure_native/sql/v20240501preview/get_replication_link.py +275 -0
- pulumi_azure_native/sql/v20240501preview/get_sensitivity_label.py +271 -0
- pulumi_azure_native/sql/v20240501preview/get_server.py +362 -0
- pulumi_azure_native/sql/v20240501preview/get_server_advisor.py +219 -0
- pulumi_azure_native/sql/v20240501preview/get_server_azure_ad_administrator.py +179 -0
- pulumi_azure_native/sql/v20240501preview/get_server_azure_ad_only_authentication.py +127 -0
- pulumi_azure_native/sql/v20240501preview/get_server_blob_auditing_policy.py +324 -0
- pulumi_azure_native/sql/v20240501preview/get_server_dns_alias.py +127 -0
- pulumi_azure_native/sql/v20240501preview/get_server_key.py +192 -0
- pulumi_azure_native/sql/v20240501preview/get_server_security_alert_policy.py +232 -0
- pulumi_azure_native/sql/v20240501preview/get_server_trust_certificate.py +153 -0
- pulumi_azure_native/sql/v20240501preview/get_server_trust_group.py +141 -0
- pulumi_azure_native/sql/v20240501preview/get_server_vulnerability_assessment.py +128 -0
- pulumi_azure_native/sql/v20240501preview/get_sql_vulnerability_assessment_rule_baseline.py +154 -0
- pulumi_azure_native/sql/v20240501preview/get_sql_vulnerability_assessments_setting.py +141 -0
- pulumi_azure_native/sql/v20240501preview/get_start_stop_managed_instance_schedule.py +193 -0
- pulumi_azure_native/sql/v20240501preview/get_sync_agent.py +192 -0
- pulumi_azure_native/sql/v20240501preview/get_sync_group.py +276 -0
- pulumi_azure_native/sql/v20240501preview/get_sync_member.py +267 -0
- pulumi_azure_native/sql/v20240501preview/get_transparent_data_encryption.py +132 -0
- pulumi_azure_native/sql/v20240501preview/get_virtual_network_rule.py +153 -0
- pulumi_azure_native/sql/v20240501preview/get_workload_classifier.py +202 -0
- pulumi_azure_native/sql/v20240501preview/get_workload_group.py +197 -0
- pulumi_azure_native/sql/v20240501preview/i_pv6_firewall_rule.py +256 -0
- pulumi_azure_native/sql/v20240501preview/instance_failover_group.py +350 -0
- pulumi_azure_native/sql/v20240501preview/instance_pool.py +377 -0
- pulumi_azure_native/sql/v20240501preview/job.py +275 -0
- pulumi_azure_native/sql/v20240501preview/job_agent.py +338 -0
- pulumi_azure_native/sql/v20240501preview/job_credential.py +251 -0
- pulumi_azure_native/sql/v20240501preview/job_private_endpoint.py +240 -0
- pulumi_azure_native/sql/v20240501preview/job_step.py +400 -0
- pulumi_azure_native/sql/v20240501preview/job_target_group.py +233 -0
- pulumi_azure_native/sql/v20240501preview/long_term_retention_policy.py +316 -0
- pulumi_azure_native/sql/v20240501preview/managed_database.py +655 -0
- pulumi_azure_native/sql/v20240501preview/managed_database_sensitivity_label.py +469 -0
- pulumi_azure_native/sql/v20240501preview/managed_database_vulnerability_assessment.py +291 -0
- pulumi_azure_native/sql/v20240501preview/managed_database_vulnerability_assessment_rule_baseline.py +274 -0
- pulumi_azure_native/sql/v20240501preview/managed_instance.py +1263 -0
- pulumi_azure_native/sql/v20240501preview/managed_instance_administrator.py +294 -0
- pulumi_azure_native/sql/v20240501preview/managed_instance_azure_ad_only_authentication.py +209 -0
- pulumi_azure_native/sql/v20240501preview/managed_instance_key.py +261 -0
- pulumi_azure_native/sql/v20240501preview/managed_instance_long_term_retention_policy.py +346 -0
- pulumi_azure_native/sql/v20240501preview/managed_instance_private_endpoint_connection.py +244 -0
- pulumi_azure_native/sql/v20240501preview/managed_instance_vulnerability_assessment.py +271 -0
- pulumi_azure_native/sql/v20240501preview/managed_server_dns_alias.py +218 -0
- pulumi_azure_native/sql/v20240501preview/outbound_firewall_rule.py +184 -0
- pulumi_azure_native/sql/v20240501preview/outputs.py +3714 -0
- pulumi_azure_native/sql/v20240501preview/private_endpoint_connection.py +255 -0
- pulumi_azure_native/sql/v20240501preview/replication_link.py +335 -0
- pulumi_azure_native/sql/v20240501preview/sensitivity_label.py +469 -0
- pulumi_azure_native/sql/v20240501preview/server.py +618 -0
- pulumi_azure_native/sql/v20240501preview/server_advisor.py +281 -0
- pulumi_azure_native/sql/v20240501preview/server_azure_ad_administrator.py +308 -0
- pulumi_azure_native/sql/v20240501preview/server_azure_ad_only_authentication.py +209 -0
- pulumi_azure_native/sql/v20240501preview/server_blob_auditing_policy.py +826 -0
- pulumi_azure_native/sql/v20240501preview/server_dns_alias.py +189 -0
- pulumi_azure_native/sql/v20240501preview/server_key.py +281 -0
- pulumi_azure_native/sql/v20240501preview/server_security_alert_policy.py +405 -0
- pulumi_azure_native/sql/v20240501preview/server_trust_certificate.py +227 -0
- pulumi_azure_native/sql/v20240501preview/server_trust_group.py +241 -0
- pulumi_azure_native/sql/v20240501preview/server_vulnerability_assessment.py +271 -0
- pulumi_azure_native/sql/v20240501preview/sql_vulnerability_assessment_rule_baseline.py +299 -0
- pulumi_azure_native/sql/v20240501preview/sql_vulnerability_assessments_setting.py +220 -0
- pulumi_azure_native/sql/v20240501preview/start_stop_managed_instance_schedule.py +308 -0
- pulumi_azure_native/sql/v20240501preview/sync_agent.py +258 -0
- pulumi_azure_native/sql/v20240501preview/sync_group.py +514 -0
- pulumi_azure_native/sql/v20240501preview/sync_member.py +483 -0
- pulumi_azure_native/sql/v20240501preview/transparent_data_encryption.py +231 -0
- pulumi_azure_native/sql/v20240501preview/virtual_network_rule.py +248 -0
- pulumi_azure_native/sql/v20240501preview/workload_classifier.py +396 -0
- pulumi_azure_native/sql/v20240501preview/workload_group.py +377 -0
- pulumi_azure_native/sql/virtual_network_rule.py +3 -3
- pulumi_azure_native/sql/workload_classifier.py +3 -3
- pulumi_azure_native/sql/workload_group.py +3 -3
- pulumi_azure_native/webpubsub/__init__.py +3 -0
- pulumi_azure_native/webpubsub/get_web_pub_sub.py +2 -2
- pulumi_azure_native/webpubsub/get_web_pub_sub_custom_certificate.py +2 -2
- pulumi_azure_native/webpubsub/get_web_pub_sub_custom_domain.py +2 -2
- pulumi_azure_native/webpubsub/get_web_pub_sub_hub.py +2 -2
- pulumi_azure_native/webpubsub/get_web_pub_sub_private_endpoint_connection.py +2 -2
- pulumi_azure_native/webpubsub/get_web_pub_sub_replica.py +2 -2
- pulumi_azure_native/webpubsub/get_web_pub_sub_shared_private_link_resource.py +2 -2
- pulumi_azure_native/webpubsub/list_web_pub_sub_keys.py +2 -2
- pulumi_azure_native/webpubsub/v20210401preview/web_pub_sub.py +1 -1
- pulumi_azure_native/webpubsub/v20210601preview/web_pub_sub.py +1 -1
- pulumi_azure_native/webpubsub/v20210901preview/web_pub_sub.py +1 -1
- pulumi_azure_native/webpubsub/v20230201/web_pub_sub.py +1 -1
- pulumi_azure_native/webpubsub/v20230201/web_pub_sub_custom_certificate.py +1 -1
- pulumi_azure_native/webpubsub/v20230201/web_pub_sub_custom_domain.py +1 -1
- pulumi_azure_native/webpubsub/v20230201/web_pub_sub_hub.py +1 -1
- pulumi_azure_native/webpubsub/v20230201/web_pub_sub_private_endpoint_connection.py +1 -1
- pulumi_azure_native/webpubsub/v20230201/web_pub_sub_shared_private_link_resource.py +1 -1
- pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub.py +1 -1
- pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub_custom_certificate.py +1 -1
- pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub_custom_domain.py +1 -1
- pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub_hub.py +1 -1
- pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub_private_endpoint_connection.py +1 -1
- pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub_replica.py +1 -1
- pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub_shared_private_link_resource.py +1 -1
- pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub.py +1 -1
- pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub_custom_certificate.py +1 -1
- pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub_custom_domain.py +1 -1
- pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub_hub.py +1 -1
- pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub_private_endpoint_connection.py +1 -1
- pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub_replica.py +1 -1
- pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub_shared_private_link_resource.py +1 -1
- pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub.py +1 -1
- pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub_custom_certificate.py +1 -1
- pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub_custom_domain.py +1 -1
- pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub_hub.py +1 -1
- pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub_private_endpoint_connection.py +1 -1
- pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub_replica.py +1 -1
- pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub_shared_private_link_resource.py +1 -1
- pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub.py +1 -1
- pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub_custom_certificate.py +1 -1
- pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub_custom_domain.py +1 -1
- pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub_hub.py +1 -1
- pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub_private_endpoint_connection.py +1 -1
- pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub_replica.py +1 -1
- pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub_shared_private_link_resource.py +1 -1
- pulumi_azure_native/webpubsub/v20240301/web_pub_sub.py +1 -1
- pulumi_azure_native/webpubsub/v20240301/web_pub_sub_custom_certificate.py +1 -1
- pulumi_azure_native/webpubsub/v20240301/web_pub_sub_custom_domain.py +1 -1
- pulumi_azure_native/webpubsub/v20240301/web_pub_sub_hub.py +1 -1
- pulumi_azure_native/webpubsub/v20240301/web_pub_sub_private_endpoint_connection.py +1 -1
- pulumi_azure_native/webpubsub/v20240301/web_pub_sub_replica.py +1 -1
- pulumi_azure_native/webpubsub/v20240301/web_pub_sub_shared_private_link_resource.py +1 -1
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub.py +1 -1
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_custom_certificate.py +1 -1
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_custom_domain.py +1 -1
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_hub.py +1 -1
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_private_endpoint_connection.py +1 -1
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_replica.py +1 -1
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_shared_private_link_resource.py +1 -1
- pulumi_azure_native/webpubsub/v20240801preview/__init__.py +25 -0
- pulumi_azure_native/webpubsub/v20240801preview/_enums.py +97 -0
- pulumi_azure_native/webpubsub/v20240801preview/_inputs.py +1768 -0
- pulumi_azure_native/webpubsub/v20240801preview/get_web_pub_sub.py +458 -0
- pulumi_azure_native/webpubsub/v20240801preview/get_web_pub_sub_custom_certificate.py +180 -0
- pulumi_azure_native/webpubsub/v20240801preview/get_web_pub_sub_custom_domain.py +167 -0
- pulumi_azure_native/webpubsub/v20240801preview/get_web_pub_sub_hub.py +141 -0
- pulumi_azure_native/webpubsub/v20240801preview/get_web_pub_sub_private_endpoint_connection.py +180 -0
- pulumi_azure_native/webpubsub/v20240801preview/get_web_pub_sub_replica.py +209 -0
- pulumi_azure_native/webpubsub/v20240801preview/get_web_pub_sub_shared_private_link_resource.py +206 -0
- pulumi_azure_native/webpubsub/v20240801preview/list_web_pub_sub_keys.py +122 -0
- pulumi_azure_native/webpubsub/v20240801preview/outputs.py +1862 -0
- pulumi_azure_native/webpubsub/v20240801preview/web_pub_sub.py +785 -0
- pulumi_azure_native/webpubsub/v20240801preview/web_pub_sub_custom_certificate.py +289 -0
- pulumi_azure_native/webpubsub/v20240801preview/web_pub_sub_custom_domain.py +260 -0
- pulumi_azure_native/webpubsub/v20240801preview/web_pub_sub_hub.py +222 -0
- pulumi_azure_native/webpubsub/v20240801preview/web_pub_sub_private_endpoint_connection.py +270 -0
- pulumi_azure_native/webpubsub/v20240801preview/web_pub_sub_replica.py +367 -0
- pulumi_azure_native/webpubsub/v20240801preview/web_pub_sub_shared_private_link_resource.py +328 -0
- pulumi_azure_native/webpubsub/web_pub_sub.py +3 -3
- pulumi_azure_native/webpubsub/web_pub_sub_custom_certificate.py +3 -3
- pulumi_azure_native/webpubsub/web_pub_sub_custom_domain.py +3 -3
- pulumi_azure_native/webpubsub/web_pub_sub_hub.py +3 -3
- pulumi_azure_native/webpubsub/web_pub_sub_private_endpoint_connection.py +3 -3
- pulumi_azure_native/webpubsub/web_pub_sub_replica.py +3 -3
- pulumi_azure_native/webpubsub/web_pub_sub_shared_private_link_resource.py +3 -3
- pulumi_azure_native/workloads/__init__.py +4 -0
- pulumi_azure_native/workloads/_enums.py +37 -1
- pulumi_azure_native/workloads/get_sap_virtual_instance_invoke_availability_zone_details.py +97 -0
- pulumi_azure_native/workloads/get_sap_virtual_instance_invoke_disk_configurations.py +112 -0
- pulumi_azure_native/workloads/get_sap_virtual_instance_invoke_sap_supported_sku.py +112 -0
- pulumi_azure_native/workloads/get_sap_virtual_instance_invoke_sizing_recommendations.py +126 -0
- pulumi_azure_native/workloads/v20240901/__init__.py +4 -4
- pulumi_azure_native/workloads/v20240901/{get_sap_virtual_instance_availability_zone_details.py → get_sap_virtual_instance_invoke_availability_zone_details.py} +20 -20
- pulumi_azure_native/workloads/v20240901/{get_sap_virtual_instance_disk_configurations.py → get_sap_virtual_instance_invoke_disk_configurations.py} +26 -26
- pulumi_azure_native/workloads/v20240901/{get_sap_virtual_instance_sap_supported_sku.py → get_sap_virtual_instance_invoke_sap_supported_sku.py} +26 -26
- pulumi_azure_native/workloads/v20240901/{get_sap_virtual_instance_sizing_recommendations.py → get_sap_virtual_instance_invoke_sizing_recommendations.py} +32 -32
- {pulumi_azure_native-2.61.0a1726250321.dist-info → pulumi_azure_native-2.62.0.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.61.0a1726250321.dist-info → pulumi_azure_native-2.62.0.dist-info}/RECORD +3008 -2273
- {pulumi_azure_native-2.61.0a1726250321.dist-info → pulumi_azure_native-2.62.0.dist-info}/WHEEL +1 -1
- {pulumi_azure_native-2.61.0a1726250321.dist-info → pulumi_azure_native-2.62.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,1691 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
from ._enums import *
|
|
18
|
+
from ._inputs import *
|
|
19
|
+
|
|
20
|
+
__all__ = ['AgentPoolArgs', 'AgentPool']
|
|
21
|
+
|
|
22
|
+
@pulumi.input_type
|
|
23
|
+
class AgentPoolArgs:
|
|
24
|
+
def __init__(__self__, *,
|
|
25
|
+
resource_group_name: pulumi.Input[str],
|
|
26
|
+
resource_name: pulumi.Input[str],
|
|
27
|
+
agent_pool_name: Optional[pulumi.Input[str]] = None,
|
|
28
|
+
artifact_streaming_profile: Optional[pulumi.Input['AgentPoolArtifactStreamingProfileArgs']] = None,
|
|
29
|
+
availability_zones: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
30
|
+
capacity_reservation_group_id: Optional[pulumi.Input[str]] = None,
|
|
31
|
+
count: Optional[pulumi.Input[int]] = None,
|
|
32
|
+
creation_data: Optional[pulumi.Input['CreationDataArgs']] = None,
|
|
33
|
+
enable_auto_scaling: Optional[pulumi.Input[bool]] = None,
|
|
34
|
+
enable_custom_ca_trust: Optional[pulumi.Input[bool]] = None,
|
|
35
|
+
enable_encryption_at_host: Optional[pulumi.Input[bool]] = None,
|
|
36
|
+
enable_fips: Optional[pulumi.Input[bool]] = None,
|
|
37
|
+
enable_node_public_ip: Optional[pulumi.Input[bool]] = None,
|
|
38
|
+
enable_ultra_ssd: Optional[pulumi.Input[bool]] = None,
|
|
39
|
+
gateway_profile: Optional[pulumi.Input['AgentPoolGatewayProfileArgs']] = None,
|
|
40
|
+
gpu_instance_profile: Optional[pulumi.Input[Union[str, 'GPUInstanceProfile']]] = None,
|
|
41
|
+
gpu_profile: Optional[pulumi.Input['AgentPoolGPUProfileArgs']] = None,
|
|
42
|
+
host_group_id: Optional[pulumi.Input[str]] = None,
|
|
43
|
+
kubelet_config: Optional[pulumi.Input['KubeletConfigArgs']] = None,
|
|
44
|
+
kubelet_disk_type: Optional[pulumi.Input[Union[str, 'KubeletDiskType']]] = None,
|
|
45
|
+
linux_os_config: Optional[pulumi.Input['LinuxOSConfigArgs']] = None,
|
|
46
|
+
max_count: Optional[pulumi.Input[int]] = None,
|
|
47
|
+
max_pods: Optional[pulumi.Input[int]] = None,
|
|
48
|
+
message_of_the_day: Optional[pulumi.Input[str]] = None,
|
|
49
|
+
min_count: Optional[pulumi.Input[int]] = None,
|
|
50
|
+
mode: Optional[pulumi.Input[Union[str, 'AgentPoolMode']]] = None,
|
|
51
|
+
network_profile: Optional[pulumi.Input['AgentPoolNetworkProfileArgs']] = None,
|
|
52
|
+
node_initialization_taints: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
53
|
+
node_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
54
|
+
node_public_ip_prefix_id: Optional[pulumi.Input[str]] = None,
|
|
55
|
+
node_taints: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
56
|
+
orchestrator_version: Optional[pulumi.Input[str]] = None,
|
|
57
|
+
os_disk_size_gb: Optional[pulumi.Input[int]] = None,
|
|
58
|
+
os_disk_type: Optional[pulumi.Input[Union[str, 'OSDiskType']]] = None,
|
|
59
|
+
os_sku: Optional[pulumi.Input[Union[str, 'OSSKU']]] = None,
|
|
60
|
+
os_type: Optional[pulumi.Input[Union[str, 'OSType']]] = None,
|
|
61
|
+
pod_ip_allocation_mode: Optional[pulumi.Input[Union[str, 'PodIPAllocationMode']]] = None,
|
|
62
|
+
pod_subnet_id: Optional[pulumi.Input[str]] = None,
|
|
63
|
+
power_state: Optional[pulumi.Input['PowerStateArgs']] = None,
|
|
64
|
+
proximity_placement_group_id: Optional[pulumi.Input[str]] = None,
|
|
65
|
+
scale_down_mode: Optional[pulumi.Input[Union[str, 'ScaleDownMode']]] = None,
|
|
66
|
+
scale_set_eviction_policy: Optional[pulumi.Input[Union[str, 'ScaleSetEvictionPolicy']]] = None,
|
|
67
|
+
scale_set_priority: Optional[pulumi.Input[Union[str, 'ScaleSetPriority']]] = None,
|
|
68
|
+
security_profile: Optional[pulumi.Input['AgentPoolSecurityProfileArgs']] = None,
|
|
69
|
+
spot_max_price: Optional[pulumi.Input[float]] = None,
|
|
70
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
71
|
+
type: Optional[pulumi.Input[Union[str, 'AgentPoolType']]] = None,
|
|
72
|
+
upgrade_settings: Optional[pulumi.Input['AgentPoolUpgradeSettingsArgs']] = None,
|
|
73
|
+
virtual_machine_nodes_status: Optional[pulumi.Input[Sequence[pulumi.Input['VirtualMachineNodesArgs']]]] = None,
|
|
74
|
+
virtual_machines_profile: Optional[pulumi.Input['VirtualMachinesProfileArgs']] = None,
|
|
75
|
+
vm_size: Optional[pulumi.Input[str]] = None,
|
|
76
|
+
vnet_subnet_id: Optional[pulumi.Input[str]] = None,
|
|
77
|
+
windows_profile: Optional[pulumi.Input['AgentPoolWindowsProfileArgs']] = None,
|
|
78
|
+
workload_runtime: Optional[pulumi.Input[Union[str, 'WorkloadRuntime']]] = None):
|
|
79
|
+
"""
|
|
80
|
+
The set of arguments for constructing a AgentPool resource.
|
|
81
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
82
|
+
:param pulumi.Input[str] resource_name: The name of the managed cluster resource.
|
|
83
|
+
:param pulumi.Input[str] agent_pool_name: The name of the agent pool.
|
|
84
|
+
:param pulumi.Input['AgentPoolArtifactStreamingProfileArgs'] artifact_streaming_profile: Configuration for using artifact streaming on AKS.
|
|
85
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] availability_zones: The list of Availability zones to use for nodes. This can only be specified if the AgentPoolType property is 'VirtualMachineScaleSets'.
|
|
86
|
+
:param pulumi.Input[str] capacity_reservation_group_id: AKS will associate the specified agent pool with the Capacity Reservation Group.
|
|
87
|
+
:param pulumi.Input[int] count: Number of agents (VMs) to host docker containers. Allowed values must be in the range of 0 to 1000 (inclusive) for user pools and in the range of 1 to 1000 (inclusive) for system pools. The default value is 1.
|
|
88
|
+
:param pulumi.Input['CreationDataArgs'] creation_data: CreationData to be used to specify the source Snapshot ID if the node pool will be created/upgraded using a snapshot.
|
|
89
|
+
:param pulumi.Input[bool] enable_auto_scaling: Whether to enable auto-scaler
|
|
90
|
+
:param pulumi.Input[bool] enable_custom_ca_trust: When set to true, AKS adds a label to the node indicating that the feature is enabled and deploys a daemonset along with host services to sync custom certificate authorities from user-provided list of base64 encoded certificates into node trust stores. Defaults to false.
|
|
91
|
+
:param pulumi.Input[bool] enable_encryption_at_host: This is only supported on certain VM sizes and in certain Azure regions. For more information, see: https://docs.microsoft.com/azure/aks/enable-host-encryption
|
|
92
|
+
:param pulumi.Input[bool] enable_fips: See [Add a FIPS-enabled node pool](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#add-a-fips-enabled-node-pool-preview) for more details.
|
|
93
|
+
:param pulumi.Input[bool] enable_node_public_ip: Some scenarios may require nodes in a node pool to receive their own dedicated public IP addresses. A common scenario is for gaming workloads, where a console needs to make a direct connection to a cloud virtual machine to minimize hops. For more information see [assigning a public IP per node](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#assign-a-public-ip-per-node-for-your-node-pools). The default is false.
|
|
94
|
+
:param pulumi.Input[bool] enable_ultra_ssd: Whether to enable UltraSSD
|
|
95
|
+
:param pulumi.Input['AgentPoolGatewayProfileArgs'] gateway_profile: Profile specific to a managed agent pool in Gateway mode. This field cannot be set if agent pool mode is not Gateway.
|
|
96
|
+
:param pulumi.Input[Union[str, 'GPUInstanceProfile']] gpu_instance_profile: GPUInstanceProfile to be used to specify GPU MIG instance profile for supported GPU VM SKU.
|
|
97
|
+
:param pulumi.Input['AgentPoolGPUProfileArgs'] gpu_profile: The GPU settings of an agent pool.
|
|
98
|
+
:param pulumi.Input[str] host_group_id: This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}. For more information see [Azure dedicated hosts](https://docs.microsoft.com/azure/virtual-machines/dedicated-hosts).
|
|
99
|
+
:param pulumi.Input['KubeletConfigArgs'] kubelet_config: The Kubelet configuration on the agent pool nodes.
|
|
100
|
+
:param pulumi.Input[Union[str, 'KubeletDiskType']] kubelet_disk_type: Determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage.
|
|
101
|
+
:param pulumi.Input['LinuxOSConfigArgs'] linux_os_config: The OS configuration of Linux agent nodes.
|
|
102
|
+
:param pulumi.Input[int] max_count: The maximum number of nodes for auto-scaling
|
|
103
|
+
:param pulumi.Input[int] max_pods: The maximum number of pods that can run on a node.
|
|
104
|
+
:param pulumi.Input[str] message_of_the_day: A base64-encoded string which will be written to /etc/motd after decoding. This allows customization of the message of the day for Linux nodes. It must not be specified for Windows nodes. It must be a static string (i.e., will be printed raw and not be executed as a script).
|
|
105
|
+
:param pulumi.Input[int] min_count: The minimum number of nodes for auto-scaling
|
|
106
|
+
:param pulumi.Input[Union[str, 'AgentPoolMode']] mode: A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools
|
|
107
|
+
:param pulumi.Input['AgentPoolNetworkProfileArgs'] network_profile: Network-related settings of an agent pool.
|
|
108
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] node_initialization_taints: These taints will not be reconciled by AKS and can be removed with a kubectl call. This field can be modified after node pool is created, but nodes will not be recreated with new taints until another operation that requires recreation (e.g. node image upgrade) happens. These taints allow for required configuration to run before the node is ready to accept workloads, for example 'key1=value1:NoSchedule' that then can be removed with `kubectl taint nodes node1 key1=value1:NoSchedule-`
|
|
109
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] node_labels: The node labels to be persisted across all nodes in agent pool.
|
|
110
|
+
:param pulumi.Input[str] node_public_ip_prefix_id: This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}
|
|
111
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] node_taints: The taints added to new nodes during node pool create and scale. For example, key=value:NoSchedule.
|
|
112
|
+
:param pulumi.Input[str] orchestrator_version: Both patch version <major.minor.patch> and <major.minor> are supported. When <major.minor> is specified, the latest supported patch version is chosen automatically. Updating the agent pool with the same <major.minor> once it has been created will not trigger an upgrade, even if a newer patch version is available. As a best practice, you should upgrade all node pools in an AKS cluster to the same Kubernetes version. The node pool version must have the same major version as the control plane. The node pool minor version must be within two minor versions of the control plane version. The node pool version cannot be greater than the control plane version. For more information see [upgrading a node pool](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#upgrade-a-node-pool).
|
|
113
|
+
:param pulumi.Input[int] os_disk_size_gb: OS Disk Size in GB to be used to specify the disk size for every machine in the master/agent pool. If you specify 0, it will apply the default osDisk size according to the vmSize specified.
|
|
114
|
+
:param pulumi.Input[Union[str, 'OSDiskType']] os_disk_type: The default is 'Ephemeral' if the VM supports it and has a cache disk larger than the requested OSDiskSizeGB. Otherwise, defaults to 'Managed'. May not be changed after creation. For more information see [Ephemeral OS](https://docs.microsoft.com/azure/aks/cluster-configuration#ephemeral-os).
|
|
115
|
+
:param pulumi.Input[Union[str, 'OSSKU']] os_sku: Specifies the OS SKU used by the agent pool. If not specified, the default is Ubuntu if OSType=Linux or Windows2019 if OSType=Windows. And the default Windows OSSKU will be changed to Windows2022 after Windows2019 is deprecated.
|
|
116
|
+
:param pulumi.Input[Union[str, 'OSType']] os_type: The operating system type. The default is Linux.
|
|
117
|
+
:param pulumi.Input[Union[str, 'PodIPAllocationMode']] pod_ip_allocation_mode: The IP allocation mode for pods in the agent pool. Must be used with podSubnetId. The default is 'DynamicIndividual'.
|
|
118
|
+
:param pulumi.Input[str] pod_subnet_id: If omitted, pod IPs are statically assigned on the node subnet (see vnetSubnetID for more details). This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}
|
|
119
|
+
:param pulumi.Input['PowerStateArgs'] power_state: When an Agent Pool is first created it is initially Running. The Agent Pool can be stopped by setting this field to Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An Agent Pool can only be stopped if it is Running and provisioning state is Succeeded
|
|
120
|
+
:param pulumi.Input[str] proximity_placement_group_id: The ID for Proximity Placement Group.
|
|
121
|
+
:param pulumi.Input[Union[str, 'ScaleDownMode']] scale_down_mode: This also effects the cluster autoscaler behavior. If not specified, it defaults to Delete.
|
|
122
|
+
:param pulumi.Input[Union[str, 'ScaleSetEvictionPolicy']] scale_set_eviction_policy: This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'.
|
|
123
|
+
:param pulumi.Input[Union[str, 'ScaleSetPriority']] scale_set_priority: The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
|
|
124
|
+
:param pulumi.Input['AgentPoolSecurityProfileArgs'] security_profile: The security settings of an agent pool.
|
|
125
|
+
:param pulumi.Input[float] spot_max_price: Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any on-demand price. For more details on spot pricing, see [spot VMs pricing](https://docs.microsoft.com/azure/virtual-machines/spot-vms#pricing)
|
|
126
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tags to be persisted on the agent pool virtual machine scale set.
|
|
127
|
+
:param pulumi.Input[Union[str, 'AgentPoolType']] type: The type of Agent Pool.
|
|
128
|
+
:param pulumi.Input['AgentPoolUpgradeSettingsArgs'] upgrade_settings: Settings for upgrading the agentpool
|
|
129
|
+
:param pulumi.Input[Sequence[pulumi.Input['VirtualMachineNodesArgs']]] virtual_machine_nodes_status: The status of nodes in a VirtualMachines agent pool.
|
|
130
|
+
:param pulumi.Input['VirtualMachinesProfileArgs'] virtual_machines_profile: Specifications on VirtualMachines agent pool.
|
|
131
|
+
:param pulumi.Input[str] vm_size: VM size availability varies by region. If a node contains insufficient compute resources (memory, cpu, etc) pods might fail to run correctly. For more details on restricted VM sizes, see: https://docs.microsoft.com/azure/aks/quotas-skus-regions
|
|
132
|
+
:param pulumi.Input[str] vnet_subnet_id: If this is not specified, a VNET and subnet will be generated and used. If no podSubnetID is specified, this applies to nodes and pods, otherwise it applies to just nodes. This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}
|
|
133
|
+
:param pulumi.Input['AgentPoolWindowsProfileArgs'] windows_profile: The Windows agent pool's specific profile.
|
|
134
|
+
:param pulumi.Input[Union[str, 'WorkloadRuntime']] workload_runtime: Determines the type of workload a node can run.
|
|
135
|
+
"""
|
|
136
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
137
|
+
pulumi.set(__self__, "resource_name", resource_name)
|
|
138
|
+
if agent_pool_name is not None:
|
|
139
|
+
pulumi.set(__self__, "agent_pool_name", agent_pool_name)
|
|
140
|
+
if artifact_streaming_profile is not None:
|
|
141
|
+
pulumi.set(__self__, "artifact_streaming_profile", artifact_streaming_profile)
|
|
142
|
+
if availability_zones is not None:
|
|
143
|
+
pulumi.set(__self__, "availability_zones", availability_zones)
|
|
144
|
+
if capacity_reservation_group_id is not None:
|
|
145
|
+
pulumi.set(__self__, "capacity_reservation_group_id", capacity_reservation_group_id)
|
|
146
|
+
if count is not None:
|
|
147
|
+
pulumi.set(__self__, "count", count)
|
|
148
|
+
if creation_data is not None:
|
|
149
|
+
pulumi.set(__self__, "creation_data", creation_data)
|
|
150
|
+
if enable_auto_scaling is not None:
|
|
151
|
+
pulumi.set(__self__, "enable_auto_scaling", enable_auto_scaling)
|
|
152
|
+
if enable_custom_ca_trust is not None:
|
|
153
|
+
pulumi.set(__self__, "enable_custom_ca_trust", enable_custom_ca_trust)
|
|
154
|
+
if enable_encryption_at_host is not None:
|
|
155
|
+
pulumi.set(__self__, "enable_encryption_at_host", enable_encryption_at_host)
|
|
156
|
+
if enable_fips is not None:
|
|
157
|
+
pulumi.set(__self__, "enable_fips", enable_fips)
|
|
158
|
+
if enable_node_public_ip is not None:
|
|
159
|
+
pulumi.set(__self__, "enable_node_public_ip", enable_node_public_ip)
|
|
160
|
+
if enable_ultra_ssd is not None:
|
|
161
|
+
pulumi.set(__self__, "enable_ultra_ssd", enable_ultra_ssd)
|
|
162
|
+
if gateway_profile is not None:
|
|
163
|
+
pulumi.set(__self__, "gateway_profile", gateway_profile)
|
|
164
|
+
if gpu_instance_profile is not None:
|
|
165
|
+
pulumi.set(__self__, "gpu_instance_profile", gpu_instance_profile)
|
|
166
|
+
if gpu_profile is not None:
|
|
167
|
+
pulumi.set(__self__, "gpu_profile", gpu_profile)
|
|
168
|
+
if host_group_id is not None:
|
|
169
|
+
pulumi.set(__self__, "host_group_id", host_group_id)
|
|
170
|
+
if kubelet_config is not None:
|
|
171
|
+
pulumi.set(__self__, "kubelet_config", kubelet_config)
|
|
172
|
+
if kubelet_disk_type is not None:
|
|
173
|
+
pulumi.set(__self__, "kubelet_disk_type", kubelet_disk_type)
|
|
174
|
+
if linux_os_config is not None:
|
|
175
|
+
pulumi.set(__self__, "linux_os_config", linux_os_config)
|
|
176
|
+
if max_count is not None:
|
|
177
|
+
pulumi.set(__self__, "max_count", max_count)
|
|
178
|
+
if max_pods is not None:
|
|
179
|
+
pulumi.set(__self__, "max_pods", max_pods)
|
|
180
|
+
if message_of_the_day is not None:
|
|
181
|
+
pulumi.set(__self__, "message_of_the_day", message_of_the_day)
|
|
182
|
+
if min_count is not None:
|
|
183
|
+
pulumi.set(__self__, "min_count", min_count)
|
|
184
|
+
if mode is not None:
|
|
185
|
+
pulumi.set(__self__, "mode", mode)
|
|
186
|
+
if network_profile is not None:
|
|
187
|
+
pulumi.set(__self__, "network_profile", network_profile)
|
|
188
|
+
if node_initialization_taints is not None:
|
|
189
|
+
pulumi.set(__self__, "node_initialization_taints", node_initialization_taints)
|
|
190
|
+
if node_labels is not None:
|
|
191
|
+
pulumi.set(__self__, "node_labels", node_labels)
|
|
192
|
+
if node_public_ip_prefix_id is not None:
|
|
193
|
+
pulumi.set(__self__, "node_public_ip_prefix_id", node_public_ip_prefix_id)
|
|
194
|
+
if node_taints is not None:
|
|
195
|
+
pulumi.set(__self__, "node_taints", node_taints)
|
|
196
|
+
if orchestrator_version is not None:
|
|
197
|
+
pulumi.set(__self__, "orchestrator_version", orchestrator_version)
|
|
198
|
+
if os_disk_size_gb is not None:
|
|
199
|
+
pulumi.set(__self__, "os_disk_size_gb", os_disk_size_gb)
|
|
200
|
+
if os_disk_type is not None:
|
|
201
|
+
pulumi.set(__self__, "os_disk_type", os_disk_type)
|
|
202
|
+
if os_sku is not None:
|
|
203
|
+
pulumi.set(__self__, "os_sku", os_sku)
|
|
204
|
+
if os_type is not None:
|
|
205
|
+
pulumi.set(__self__, "os_type", os_type)
|
|
206
|
+
if pod_ip_allocation_mode is not None:
|
|
207
|
+
pulumi.set(__self__, "pod_ip_allocation_mode", pod_ip_allocation_mode)
|
|
208
|
+
if pod_subnet_id is not None:
|
|
209
|
+
pulumi.set(__self__, "pod_subnet_id", pod_subnet_id)
|
|
210
|
+
if power_state is not None:
|
|
211
|
+
pulumi.set(__self__, "power_state", power_state)
|
|
212
|
+
if proximity_placement_group_id is not None:
|
|
213
|
+
pulumi.set(__self__, "proximity_placement_group_id", proximity_placement_group_id)
|
|
214
|
+
if scale_down_mode is not None:
|
|
215
|
+
pulumi.set(__self__, "scale_down_mode", scale_down_mode)
|
|
216
|
+
if scale_set_eviction_policy is not None:
|
|
217
|
+
pulumi.set(__self__, "scale_set_eviction_policy", scale_set_eviction_policy)
|
|
218
|
+
if scale_set_priority is not None:
|
|
219
|
+
pulumi.set(__self__, "scale_set_priority", scale_set_priority)
|
|
220
|
+
if security_profile is not None:
|
|
221
|
+
pulumi.set(__self__, "security_profile", security_profile)
|
|
222
|
+
if spot_max_price is not None:
|
|
223
|
+
pulumi.set(__self__, "spot_max_price", spot_max_price)
|
|
224
|
+
if tags is not None:
|
|
225
|
+
pulumi.set(__self__, "tags", tags)
|
|
226
|
+
if type is not None:
|
|
227
|
+
pulumi.set(__self__, "type", type)
|
|
228
|
+
if upgrade_settings is not None:
|
|
229
|
+
pulumi.set(__self__, "upgrade_settings", upgrade_settings)
|
|
230
|
+
if virtual_machine_nodes_status is not None:
|
|
231
|
+
pulumi.set(__self__, "virtual_machine_nodes_status", virtual_machine_nodes_status)
|
|
232
|
+
if virtual_machines_profile is not None:
|
|
233
|
+
pulumi.set(__self__, "virtual_machines_profile", virtual_machines_profile)
|
|
234
|
+
if vm_size is not None:
|
|
235
|
+
pulumi.set(__self__, "vm_size", vm_size)
|
|
236
|
+
if vnet_subnet_id is not None:
|
|
237
|
+
pulumi.set(__self__, "vnet_subnet_id", vnet_subnet_id)
|
|
238
|
+
if windows_profile is not None:
|
|
239
|
+
pulumi.set(__self__, "windows_profile", windows_profile)
|
|
240
|
+
if workload_runtime is not None:
|
|
241
|
+
pulumi.set(__self__, "workload_runtime", workload_runtime)
|
|
242
|
+
|
|
243
|
+
@property
|
|
244
|
+
@pulumi.getter(name="resourceGroupName")
|
|
245
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
246
|
+
"""
|
|
247
|
+
The name of the resource group. The name is case insensitive.
|
|
248
|
+
"""
|
|
249
|
+
return pulumi.get(self, "resource_group_name")
|
|
250
|
+
|
|
251
|
+
@resource_group_name.setter
|
|
252
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
253
|
+
pulumi.set(self, "resource_group_name", value)
|
|
254
|
+
|
|
255
|
+
@property
|
|
256
|
+
@pulumi.getter(name="resourceName")
|
|
257
|
+
def resource_name(self) -> pulumi.Input[str]:
|
|
258
|
+
"""
|
|
259
|
+
The name of the managed cluster resource.
|
|
260
|
+
"""
|
|
261
|
+
return pulumi.get(self, "resource_name")
|
|
262
|
+
|
|
263
|
+
@resource_name.setter
|
|
264
|
+
def resource_name(self, value: pulumi.Input[str]):
|
|
265
|
+
pulumi.set(self, "resource_name", value)
|
|
266
|
+
|
|
267
|
+
@property
|
|
268
|
+
@pulumi.getter(name="agentPoolName")
|
|
269
|
+
def agent_pool_name(self) -> Optional[pulumi.Input[str]]:
|
|
270
|
+
"""
|
|
271
|
+
The name of the agent pool.
|
|
272
|
+
"""
|
|
273
|
+
return pulumi.get(self, "agent_pool_name")
|
|
274
|
+
|
|
275
|
+
@agent_pool_name.setter
|
|
276
|
+
def agent_pool_name(self, value: Optional[pulumi.Input[str]]):
|
|
277
|
+
pulumi.set(self, "agent_pool_name", value)
|
|
278
|
+
|
|
279
|
+
@property
|
|
280
|
+
@pulumi.getter(name="artifactStreamingProfile")
|
|
281
|
+
def artifact_streaming_profile(self) -> Optional[pulumi.Input['AgentPoolArtifactStreamingProfileArgs']]:
|
|
282
|
+
"""
|
|
283
|
+
Configuration for using artifact streaming on AKS.
|
|
284
|
+
"""
|
|
285
|
+
return pulumi.get(self, "artifact_streaming_profile")
|
|
286
|
+
|
|
287
|
+
@artifact_streaming_profile.setter
|
|
288
|
+
def artifact_streaming_profile(self, value: Optional[pulumi.Input['AgentPoolArtifactStreamingProfileArgs']]):
|
|
289
|
+
pulumi.set(self, "artifact_streaming_profile", value)
|
|
290
|
+
|
|
291
|
+
@property
|
|
292
|
+
@pulumi.getter(name="availabilityZones")
|
|
293
|
+
def availability_zones(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
294
|
+
"""
|
|
295
|
+
The list of Availability zones to use for nodes. This can only be specified if the AgentPoolType property is 'VirtualMachineScaleSets'.
|
|
296
|
+
"""
|
|
297
|
+
return pulumi.get(self, "availability_zones")
|
|
298
|
+
|
|
299
|
+
@availability_zones.setter
|
|
300
|
+
def availability_zones(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
301
|
+
pulumi.set(self, "availability_zones", value)
|
|
302
|
+
|
|
303
|
+
@property
|
|
304
|
+
@pulumi.getter(name="capacityReservationGroupID")
|
|
305
|
+
def capacity_reservation_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
306
|
+
"""
|
|
307
|
+
AKS will associate the specified agent pool with the Capacity Reservation Group.
|
|
308
|
+
"""
|
|
309
|
+
return pulumi.get(self, "capacity_reservation_group_id")
|
|
310
|
+
|
|
311
|
+
@capacity_reservation_group_id.setter
|
|
312
|
+
def capacity_reservation_group_id(self, value: Optional[pulumi.Input[str]]):
|
|
313
|
+
pulumi.set(self, "capacity_reservation_group_id", value)
|
|
314
|
+
|
|
315
|
+
@property
|
|
316
|
+
@pulumi.getter
|
|
317
|
+
def count(self) -> Optional[pulumi.Input[int]]:
|
|
318
|
+
"""
|
|
319
|
+
Number of agents (VMs) to host docker containers. Allowed values must be in the range of 0 to 1000 (inclusive) for user pools and in the range of 1 to 1000 (inclusive) for system pools. The default value is 1.
|
|
320
|
+
"""
|
|
321
|
+
return pulumi.get(self, "count")
|
|
322
|
+
|
|
323
|
+
@count.setter
|
|
324
|
+
def count(self, value: Optional[pulumi.Input[int]]):
|
|
325
|
+
pulumi.set(self, "count", value)
|
|
326
|
+
|
|
327
|
+
@property
|
|
328
|
+
@pulumi.getter(name="creationData")
|
|
329
|
+
def creation_data(self) -> Optional[pulumi.Input['CreationDataArgs']]:
|
|
330
|
+
"""
|
|
331
|
+
CreationData to be used to specify the source Snapshot ID if the node pool will be created/upgraded using a snapshot.
|
|
332
|
+
"""
|
|
333
|
+
return pulumi.get(self, "creation_data")
|
|
334
|
+
|
|
335
|
+
@creation_data.setter
|
|
336
|
+
def creation_data(self, value: Optional[pulumi.Input['CreationDataArgs']]):
|
|
337
|
+
pulumi.set(self, "creation_data", value)
|
|
338
|
+
|
|
339
|
+
@property
|
|
340
|
+
@pulumi.getter(name="enableAutoScaling")
|
|
341
|
+
def enable_auto_scaling(self) -> Optional[pulumi.Input[bool]]:
|
|
342
|
+
"""
|
|
343
|
+
Whether to enable auto-scaler
|
|
344
|
+
"""
|
|
345
|
+
return pulumi.get(self, "enable_auto_scaling")
|
|
346
|
+
|
|
347
|
+
@enable_auto_scaling.setter
|
|
348
|
+
def enable_auto_scaling(self, value: Optional[pulumi.Input[bool]]):
|
|
349
|
+
pulumi.set(self, "enable_auto_scaling", value)
|
|
350
|
+
|
|
351
|
+
@property
|
|
352
|
+
@pulumi.getter(name="enableCustomCATrust")
|
|
353
|
+
def enable_custom_ca_trust(self) -> Optional[pulumi.Input[bool]]:
|
|
354
|
+
"""
|
|
355
|
+
When set to true, AKS adds a label to the node indicating that the feature is enabled and deploys a daemonset along with host services to sync custom certificate authorities from user-provided list of base64 encoded certificates into node trust stores. Defaults to false.
|
|
356
|
+
"""
|
|
357
|
+
return pulumi.get(self, "enable_custom_ca_trust")
|
|
358
|
+
|
|
359
|
+
@enable_custom_ca_trust.setter
|
|
360
|
+
def enable_custom_ca_trust(self, value: Optional[pulumi.Input[bool]]):
|
|
361
|
+
pulumi.set(self, "enable_custom_ca_trust", value)
|
|
362
|
+
|
|
363
|
+
@property
|
|
364
|
+
@pulumi.getter(name="enableEncryptionAtHost")
|
|
365
|
+
def enable_encryption_at_host(self) -> Optional[pulumi.Input[bool]]:
|
|
366
|
+
"""
|
|
367
|
+
This is only supported on certain VM sizes and in certain Azure regions. For more information, see: https://docs.microsoft.com/azure/aks/enable-host-encryption
|
|
368
|
+
"""
|
|
369
|
+
return pulumi.get(self, "enable_encryption_at_host")
|
|
370
|
+
|
|
371
|
+
@enable_encryption_at_host.setter
|
|
372
|
+
def enable_encryption_at_host(self, value: Optional[pulumi.Input[bool]]):
|
|
373
|
+
pulumi.set(self, "enable_encryption_at_host", value)
|
|
374
|
+
|
|
375
|
+
@property
|
|
376
|
+
@pulumi.getter(name="enableFIPS")
|
|
377
|
+
def enable_fips(self) -> Optional[pulumi.Input[bool]]:
|
|
378
|
+
"""
|
|
379
|
+
See [Add a FIPS-enabled node pool](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#add-a-fips-enabled-node-pool-preview) for more details.
|
|
380
|
+
"""
|
|
381
|
+
return pulumi.get(self, "enable_fips")
|
|
382
|
+
|
|
383
|
+
@enable_fips.setter
|
|
384
|
+
def enable_fips(self, value: Optional[pulumi.Input[bool]]):
|
|
385
|
+
pulumi.set(self, "enable_fips", value)
|
|
386
|
+
|
|
387
|
+
@property
|
|
388
|
+
@pulumi.getter(name="enableNodePublicIP")
|
|
389
|
+
def enable_node_public_ip(self) -> Optional[pulumi.Input[bool]]:
|
|
390
|
+
"""
|
|
391
|
+
Some scenarios may require nodes in a node pool to receive their own dedicated public IP addresses. A common scenario is for gaming workloads, where a console needs to make a direct connection to a cloud virtual machine to minimize hops. For more information see [assigning a public IP per node](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#assign-a-public-ip-per-node-for-your-node-pools). The default is false.
|
|
392
|
+
"""
|
|
393
|
+
return pulumi.get(self, "enable_node_public_ip")
|
|
394
|
+
|
|
395
|
+
@enable_node_public_ip.setter
|
|
396
|
+
def enable_node_public_ip(self, value: Optional[pulumi.Input[bool]]):
|
|
397
|
+
pulumi.set(self, "enable_node_public_ip", value)
|
|
398
|
+
|
|
399
|
+
@property
|
|
400
|
+
@pulumi.getter(name="enableUltraSSD")
|
|
401
|
+
def enable_ultra_ssd(self) -> Optional[pulumi.Input[bool]]:
|
|
402
|
+
"""
|
|
403
|
+
Whether to enable UltraSSD
|
|
404
|
+
"""
|
|
405
|
+
return pulumi.get(self, "enable_ultra_ssd")
|
|
406
|
+
|
|
407
|
+
@enable_ultra_ssd.setter
|
|
408
|
+
def enable_ultra_ssd(self, value: Optional[pulumi.Input[bool]]):
|
|
409
|
+
pulumi.set(self, "enable_ultra_ssd", value)
|
|
410
|
+
|
|
411
|
+
@property
|
|
412
|
+
@pulumi.getter(name="gatewayProfile")
|
|
413
|
+
def gateway_profile(self) -> Optional[pulumi.Input['AgentPoolGatewayProfileArgs']]:
|
|
414
|
+
"""
|
|
415
|
+
Profile specific to a managed agent pool in Gateway mode. This field cannot be set if agent pool mode is not Gateway.
|
|
416
|
+
"""
|
|
417
|
+
return pulumi.get(self, "gateway_profile")
|
|
418
|
+
|
|
419
|
+
@gateway_profile.setter
|
|
420
|
+
def gateway_profile(self, value: Optional[pulumi.Input['AgentPoolGatewayProfileArgs']]):
|
|
421
|
+
pulumi.set(self, "gateway_profile", value)
|
|
422
|
+
|
|
423
|
+
@property
|
|
424
|
+
@pulumi.getter(name="gpuInstanceProfile")
|
|
425
|
+
def gpu_instance_profile(self) -> Optional[pulumi.Input[Union[str, 'GPUInstanceProfile']]]:
|
|
426
|
+
"""
|
|
427
|
+
GPUInstanceProfile to be used to specify GPU MIG instance profile for supported GPU VM SKU.
|
|
428
|
+
"""
|
|
429
|
+
return pulumi.get(self, "gpu_instance_profile")
|
|
430
|
+
|
|
431
|
+
@gpu_instance_profile.setter
|
|
432
|
+
def gpu_instance_profile(self, value: Optional[pulumi.Input[Union[str, 'GPUInstanceProfile']]]):
|
|
433
|
+
pulumi.set(self, "gpu_instance_profile", value)
|
|
434
|
+
|
|
435
|
+
@property
|
|
436
|
+
@pulumi.getter(name="gpuProfile")
|
|
437
|
+
def gpu_profile(self) -> Optional[pulumi.Input['AgentPoolGPUProfileArgs']]:
|
|
438
|
+
"""
|
|
439
|
+
The GPU settings of an agent pool.
|
|
440
|
+
"""
|
|
441
|
+
return pulumi.get(self, "gpu_profile")
|
|
442
|
+
|
|
443
|
+
@gpu_profile.setter
|
|
444
|
+
def gpu_profile(self, value: Optional[pulumi.Input['AgentPoolGPUProfileArgs']]):
|
|
445
|
+
pulumi.set(self, "gpu_profile", value)
|
|
446
|
+
|
|
447
|
+
@property
|
|
448
|
+
@pulumi.getter(name="hostGroupID")
|
|
449
|
+
def host_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
450
|
+
"""
|
|
451
|
+
This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}. For more information see [Azure dedicated hosts](https://docs.microsoft.com/azure/virtual-machines/dedicated-hosts).
|
|
452
|
+
"""
|
|
453
|
+
return pulumi.get(self, "host_group_id")
|
|
454
|
+
|
|
455
|
+
@host_group_id.setter
|
|
456
|
+
def host_group_id(self, value: Optional[pulumi.Input[str]]):
|
|
457
|
+
pulumi.set(self, "host_group_id", value)
|
|
458
|
+
|
|
459
|
+
@property
|
|
460
|
+
@pulumi.getter(name="kubeletConfig")
|
|
461
|
+
def kubelet_config(self) -> Optional[pulumi.Input['KubeletConfigArgs']]:
|
|
462
|
+
"""
|
|
463
|
+
The Kubelet configuration on the agent pool nodes.
|
|
464
|
+
"""
|
|
465
|
+
return pulumi.get(self, "kubelet_config")
|
|
466
|
+
|
|
467
|
+
@kubelet_config.setter
|
|
468
|
+
def kubelet_config(self, value: Optional[pulumi.Input['KubeletConfigArgs']]):
|
|
469
|
+
pulumi.set(self, "kubelet_config", value)
|
|
470
|
+
|
|
471
|
+
@property
|
|
472
|
+
@pulumi.getter(name="kubeletDiskType")
|
|
473
|
+
def kubelet_disk_type(self) -> Optional[pulumi.Input[Union[str, 'KubeletDiskType']]]:
|
|
474
|
+
"""
|
|
475
|
+
Determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage.
|
|
476
|
+
"""
|
|
477
|
+
return pulumi.get(self, "kubelet_disk_type")
|
|
478
|
+
|
|
479
|
+
@kubelet_disk_type.setter
|
|
480
|
+
def kubelet_disk_type(self, value: Optional[pulumi.Input[Union[str, 'KubeletDiskType']]]):
|
|
481
|
+
pulumi.set(self, "kubelet_disk_type", value)
|
|
482
|
+
|
|
483
|
+
@property
|
|
484
|
+
@pulumi.getter(name="linuxOSConfig")
|
|
485
|
+
def linux_os_config(self) -> Optional[pulumi.Input['LinuxOSConfigArgs']]:
|
|
486
|
+
"""
|
|
487
|
+
The OS configuration of Linux agent nodes.
|
|
488
|
+
"""
|
|
489
|
+
return pulumi.get(self, "linux_os_config")
|
|
490
|
+
|
|
491
|
+
@linux_os_config.setter
|
|
492
|
+
def linux_os_config(self, value: Optional[pulumi.Input['LinuxOSConfigArgs']]):
|
|
493
|
+
pulumi.set(self, "linux_os_config", value)
|
|
494
|
+
|
|
495
|
+
@property
|
|
496
|
+
@pulumi.getter(name="maxCount")
|
|
497
|
+
def max_count(self) -> Optional[pulumi.Input[int]]:
|
|
498
|
+
"""
|
|
499
|
+
The maximum number of nodes for auto-scaling
|
|
500
|
+
"""
|
|
501
|
+
return pulumi.get(self, "max_count")
|
|
502
|
+
|
|
503
|
+
@max_count.setter
|
|
504
|
+
def max_count(self, value: Optional[pulumi.Input[int]]):
|
|
505
|
+
pulumi.set(self, "max_count", value)
|
|
506
|
+
|
|
507
|
+
@property
|
|
508
|
+
@pulumi.getter(name="maxPods")
|
|
509
|
+
def max_pods(self) -> Optional[pulumi.Input[int]]:
|
|
510
|
+
"""
|
|
511
|
+
The maximum number of pods that can run on a node.
|
|
512
|
+
"""
|
|
513
|
+
return pulumi.get(self, "max_pods")
|
|
514
|
+
|
|
515
|
+
@max_pods.setter
|
|
516
|
+
def max_pods(self, value: Optional[pulumi.Input[int]]):
|
|
517
|
+
pulumi.set(self, "max_pods", value)
|
|
518
|
+
|
|
519
|
+
@property
|
|
520
|
+
@pulumi.getter(name="messageOfTheDay")
|
|
521
|
+
def message_of_the_day(self) -> Optional[pulumi.Input[str]]:
|
|
522
|
+
"""
|
|
523
|
+
A base64-encoded string which will be written to /etc/motd after decoding. This allows customization of the message of the day for Linux nodes. It must not be specified for Windows nodes. It must be a static string (i.e., will be printed raw and not be executed as a script).
|
|
524
|
+
"""
|
|
525
|
+
return pulumi.get(self, "message_of_the_day")
|
|
526
|
+
|
|
527
|
+
@message_of_the_day.setter
|
|
528
|
+
def message_of_the_day(self, value: Optional[pulumi.Input[str]]):
|
|
529
|
+
pulumi.set(self, "message_of_the_day", value)
|
|
530
|
+
|
|
531
|
+
@property
|
|
532
|
+
@pulumi.getter(name="minCount")
|
|
533
|
+
def min_count(self) -> Optional[pulumi.Input[int]]:
|
|
534
|
+
"""
|
|
535
|
+
The minimum number of nodes for auto-scaling
|
|
536
|
+
"""
|
|
537
|
+
return pulumi.get(self, "min_count")
|
|
538
|
+
|
|
539
|
+
@min_count.setter
|
|
540
|
+
def min_count(self, value: Optional[pulumi.Input[int]]):
|
|
541
|
+
pulumi.set(self, "min_count", value)
|
|
542
|
+
|
|
543
|
+
@property
|
|
544
|
+
@pulumi.getter
|
|
545
|
+
def mode(self) -> Optional[pulumi.Input[Union[str, 'AgentPoolMode']]]:
|
|
546
|
+
"""
|
|
547
|
+
A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools
|
|
548
|
+
"""
|
|
549
|
+
return pulumi.get(self, "mode")
|
|
550
|
+
|
|
551
|
+
@mode.setter
|
|
552
|
+
def mode(self, value: Optional[pulumi.Input[Union[str, 'AgentPoolMode']]]):
|
|
553
|
+
pulumi.set(self, "mode", value)
|
|
554
|
+
|
|
555
|
+
@property
|
|
556
|
+
@pulumi.getter(name="networkProfile")
|
|
557
|
+
def network_profile(self) -> Optional[pulumi.Input['AgentPoolNetworkProfileArgs']]:
|
|
558
|
+
"""
|
|
559
|
+
Network-related settings of an agent pool.
|
|
560
|
+
"""
|
|
561
|
+
return pulumi.get(self, "network_profile")
|
|
562
|
+
|
|
563
|
+
@network_profile.setter
|
|
564
|
+
def network_profile(self, value: Optional[pulumi.Input['AgentPoolNetworkProfileArgs']]):
|
|
565
|
+
pulumi.set(self, "network_profile", value)
|
|
566
|
+
|
|
567
|
+
@property
|
|
568
|
+
@pulumi.getter(name="nodeInitializationTaints")
|
|
569
|
+
def node_initialization_taints(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
570
|
+
"""
|
|
571
|
+
These taints will not be reconciled by AKS and can be removed with a kubectl call. This field can be modified after node pool is created, but nodes will not be recreated with new taints until another operation that requires recreation (e.g. node image upgrade) happens. These taints allow for required configuration to run before the node is ready to accept workloads, for example 'key1=value1:NoSchedule' that then can be removed with `kubectl taint nodes node1 key1=value1:NoSchedule-`
|
|
572
|
+
"""
|
|
573
|
+
return pulumi.get(self, "node_initialization_taints")
|
|
574
|
+
|
|
575
|
+
@node_initialization_taints.setter
|
|
576
|
+
def node_initialization_taints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
577
|
+
pulumi.set(self, "node_initialization_taints", value)
|
|
578
|
+
|
|
579
|
+
@property
|
|
580
|
+
@pulumi.getter(name="nodeLabels")
|
|
581
|
+
def node_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
582
|
+
"""
|
|
583
|
+
The node labels to be persisted across all nodes in agent pool.
|
|
584
|
+
"""
|
|
585
|
+
return pulumi.get(self, "node_labels")
|
|
586
|
+
|
|
587
|
+
@node_labels.setter
|
|
588
|
+
def node_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
589
|
+
pulumi.set(self, "node_labels", value)
|
|
590
|
+
|
|
591
|
+
@property
|
|
592
|
+
@pulumi.getter(name="nodePublicIPPrefixID")
|
|
593
|
+
def node_public_ip_prefix_id(self) -> Optional[pulumi.Input[str]]:
|
|
594
|
+
"""
|
|
595
|
+
This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}
|
|
596
|
+
"""
|
|
597
|
+
return pulumi.get(self, "node_public_ip_prefix_id")
|
|
598
|
+
|
|
599
|
+
@node_public_ip_prefix_id.setter
|
|
600
|
+
def node_public_ip_prefix_id(self, value: Optional[pulumi.Input[str]]):
|
|
601
|
+
pulumi.set(self, "node_public_ip_prefix_id", value)
|
|
602
|
+
|
|
603
|
+
@property
|
|
604
|
+
@pulumi.getter(name="nodeTaints")
|
|
605
|
+
def node_taints(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
606
|
+
"""
|
|
607
|
+
The taints added to new nodes during node pool create and scale. For example, key=value:NoSchedule.
|
|
608
|
+
"""
|
|
609
|
+
return pulumi.get(self, "node_taints")
|
|
610
|
+
|
|
611
|
+
@node_taints.setter
|
|
612
|
+
def node_taints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
613
|
+
pulumi.set(self, "node_taints", value)
|
|
614
|
+
|
|
615
|
+
@property
|
|
616
|
+
@pulumi.getter(name="orchestratorVersion")
|
|
617
|
+
def orchestrator_version(self) -> Optional[pulumi.Input[str]]:
|
|
618
|
+
"""
|
|
619
|
+
Both patch version <major.minor.patch> and <major.minor> are supported. When <major.minor> is specified, the latest supported patch version is chosen automatically. Updating the agent pool with the same <major.minor> once it has been created will not trigger an upgrade, even if a newer patch version is available. As a best practice, you should upgrade all node pools in an AKS cluster to the same Kubernetes version. The node pool version must have the same major version as the control plane. The node pool minor version must be within two minor versions of the control plane version. The node pool version cannot be greater than the control plane version. For more information see [upgrading a node pool](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#upgrade-a-node-pool).
|
|
620
|
+
"""
|
|
621
|
+
return pulumi.get(self, "orchestrator_version")
|
|
622
|
+
|
|
623
|
+
@orchestrator_version.setter
|
|
624
|
+
def orchestrator_version(self, value: Optional[pulumi.Input[str]]):
|
|
625
|
+
pulumi.set(self, "orchestrator_version", value)
|
|
626
|
+
|
|
627
|
+
@property
|
|
628
|
+
@pulumi.getter(name="osDiskSizeGB")
|
|
629
|
+
def os_disk_size_gb(self) -> Optional[pulumi.Input[int]]:
|
|
630
|
+
"""
|
|
631
|
+
OS Disk Size in GB to be used to specify the disk size for every machine in the master/agent pool. If you specify 0, it will apply the default osDisk size according to the vmSize specified.
|
|
632
|
+
"""
|
|
633
|
+
return pulumi.get(self, "os_disk_size_gb")
|
|
634
|
+
|
|
635
|
+
@os_disk_size_gb.setter
|
|
636
|
+
def os_disk_size_gb(self, value: Optional[pulumi.Input[int]]):
|
|
637
|
+
pulumi.set(self, "os_disk_size_gb", value)
|
|
638
|
+
|
|
639
|
+
@property
|
|
640
|
+
@pulumi.getter(name="osDiskType")
|
|
641
|
+
def os_disk_type(self) -> Optional[pulumi.Input[Union[str, 'OSDiskType']]]:
|
|
642
|
+
"""
|
|
643
|
+
The default is 'Ephemeral' if the VM supports it and has a cache disk larger than the requested OSDiskSizeGB. Otherwise, defaults to 'Managed'. May not be changed after creation. For more information see [Ephemeral OS](https://docs.microsoft.com/azure/aks/cluster-configuration#ephemeral-os).
|
|
644
|
+
"""
|
|
645
|
+
return pulumi.get(self, "os_disk_type")
|
|
646
|
+
|
|
647
|
+
@os_disk_type.setter
|
|
648
|
+
def os_disk_type(self, value: Optional[pulumi.Input[Union[str, 'OSDiskType']]]):
|
|
649
|
+
pulumi.set(self, "os_disk_type", value)
|
|
650
|
+
|
|
651
|
+
@property
|
|
652
|
+
@pulumi.getter(name="osSKU")
|
|
653
|
+
def os_sku(self) -> Optional[pulumi.Input[Union[str, 'OSSKU']]]:
|
|
654
|
+
"""
|
|
655
|
+
Specifies the OS SKU used by the agent pool. If not specified, the default is Ubuntu if OSType=Linux or Windows2019 if OSType=Windows. And the default Windows OSSKU will be changed to Windows2022 after Windows2019 is deprecated.
|
|
656
|
+
"""
|
|
657
|
+
return pulumi.get(self, "os_sku")
|
|
658
|
+
|
|
659
|
+
@os_sku.setter
|
|
660
|
+
def os_sku(self, value: Optional[pulumi.Input[Union[str, 'OSSKU']]]):
|
|
661
|
+
pulumi.set(self, "os_sku", value)
|
|
662
|
+
|
|
663
|
+
@property
|
|
664
|
+
@pulumi.getter(name="osType")
|
|
665
|
+
def os_type(self) -> Optional[pulumi.Input[Union[str, 'OSType']]]:
|
|
666
|
+
"""
|
|
667
|
+
The operating system type. The default is Linux.
|
|
668
|
+
"""
|
|
669
|
+
return pulumi.get(self, "os_type")
|
|
670
|
+
|
|
671
|
+
@os_type.setter
|
|
672
|
+
def os_type(self, value: Optional[pulumi.Input[Union[str, 'OSType']]]):
|
|
673
|
+
pulumi.set(self, "os_type", value)
|
|
674
|
+
|
|
675
|
+
@property
|
|
676
|
+
@pulumi.getter(name="podIPAllocationMode")
|
|
677
|
+
def pod_ip_allocation_mode(self) -> Optional[pulumi.Input[Union[str, 'PodIPAllocationMode']]]:
|
|
678
|
+
"""
|
|
679
|
+
The IP allocation mode for pods in the agent pool. Must be used with podSubnetId. The default is 'DynamicIndividual'.
|
|
680
|
+
"""
|
|
681
|
+
return pulumi.get(self, "pod_ip_allocation_mode")
|
|
682
|
+
|
|
683
|
+
@pod_ip_allocation_mode.setter
|
|
684
|
+
def pod_ip_allocation_mode(self, value: Optional[pulumi.Input[Union[str, 'PodIPAllocationMode']]]):
|
|
685
|
+
pulumi.set(self, "pod_ip_allocation_mode", value)
|
|
686
|
+
|
|
687
|
+
@property
|
|
688
|
+
@pulumi.getter(name="podSubnetID")
|
|
689
|
+
def pod_subnet_id(self) -> Optional[pulumi.Input[str]]:
|
|
690
|
+
"""
|
|
691
|
+
If omitted, pod IPs are statically assigned on the node subnet (see vnetSubnetID for more details). This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}
|
|
692
|
+
"""
|
|
693
|
+
return pulumi.get(self, "pod_subnet_id")
|
|
694
|
+
|
|
695
|
+
@pod_subnet_id.setter
|
|
696
|
+
def pod_subnet_id(self, value: Optional[pulumi.Input[str]]):
|
|
697
|
+
pulumi.set(self, "pod_subnet_id", value)
|
|
698
|
+
|
|
699
|
+
@property
|
|
700
|
+
@pulumi.getter(name="powerState")
|
|
701
|
+
def power_state(self) -> Optional[pulumi.Input['PowerStateArgs']]:
|
|
702
|
+
"""
|
|
703
|
+
When an Agent Pool is first created it is initially Running. The Agent Pool can be stopped by setting this field to Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An Agent Pool can only be stopped if it is Running and provisioning state is Succeeded
|
|
704
|
+
"""
|
|
705
|
+
return pulumi.get(self, "power_state")
|
|
706
|
+
|
|
707
|
+
@power_state.setter
|
|
708
|
+
def power_state(self, value: Optional[pulumi.Input['PowerStateArgs']]):
|
|
709
|
+
pulumi.set(self, "power_state", value)
|
|
710
|
+
|
|
711
|
+
@property
|
|
712
|
+
@pulumi.getter(name="proximityPlacementGroupID")
|
|
713
|
+
def proximity_placement_group_id(self) -> Optional[pulumi.Input[str]]:
|
|
714
|
+
"""
|
|
715
|
+
The ID for Proximity Placement Group.
|
|
716
|
+
"""
|
|
717
|
+
return pulumi.get(self, "proximity_placement_group_id")
|
|
718
|
+
|
|
719
|
+
@proximity_placement_group_id.setter
|
|
720
|
+
def proximity_placement_group_id(self, value: Optional[pulumi.Input[str]]):
|
|
721
|
+
pulumi.set(self, "proximity_placement_group_id", value)
|
|
722
|
+
|
|
723
|
+
@property
|
|
724
|
+
@pulumi.getter(name="scaleDownMode")
|
|
725
|
+
def scale_down_mode(self) -> Optional[pulumi.Input[Union[str, 'ScaleDownMode']]]:
|
|
726
|
+
"""
|
|
727
|
+
This also effects the cluster autoscaler behavior. If not specified, it defaults to Delete.
|
|
728
|
+
"""
|
|
729
|
+
return pulumi.get(self, "scale_down_mode")
|
|
730
|
+
|
|
731
|
+
@scale_down_mode.setter
|
|
732
|
+
def scale_down_mode(self, value: Optional[pulumi.Input[Union[str, 'ScaleDownMode']]]):
|
|
733
|
+
pulumi.set(self, "scale_down_mode", value)
|
|
734
|
+
|
|
735
|
+
@property
|
|
736
|
+
@pulumi.getter(name="scaleSetEvictionPolicy")
|
|
737
|
+
def scale_set_eviction_policy(self) -> Optional[pulumi.Input[Union[str, 'ScaleSetEvictionPolicy']]]:
|
|
738
|
+
"""
|
|
739
|
+
This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'.
|
|
740
|
+
"""
|
|
741
|
+
return pulumi.get(self, "scale_set_eviction_policy")
|
|
742
|
+
|
|
743
|
+
@scale_set_eviction_policy.setter
|
|
744
|
+
def scale_set_eviction_policy(self, value: Optional[pulumi.Input[Union[str, 'ScaleSetEvictionPolicy']]]):
|
|
745
|
+
pulumi.set(self, "scale_set_eviction_policy", value)
|
|
746
|
+
|
|
747
|
+
@property
|
|
748
|
+
@pulumi.getter(name="scaleSetPriority")
|
|
749
|
+
def scale_set_priority(self) -> Optional[pulumi.Input[Union[str, 'ScaleSetPriority']]]:
|
|
750
|
+
"""
|
|
751
|
+
The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
|
|
752
|
+
"""
|
|
753
|
+
return pulumi.get(self, "scale_set_priority")
|
|
754
|
+
|
|
755
|
+
@scale_set_priority.setter
|
|
756
|
+
def scale_set_priority(self, value: Optional[pulumi.Input[Union[str, 'ScaleSetPriority']]]):
|
|
757
|
+
pulumi.set(self, "scale_set_priority", value)
|
|
758
|
+
|
|
759
|
+
@property
|
|
760
|
+
@pulumi.getter(name="securityProfile")
|
|
761
|
+
def security_profile(self) -> Optional[pulumi.Input['AgentPoolSecurityProfileArgs']]:
|
|
762
|
+
"""
|
|
763
|
+
The security settings of an agent pool.
|
|
764
|
+
"""
|
|
765
|
+
return pulumi.get(self, "security_profile")
|
|
766
|
+
|
|
767
|
+
@security_profile.setter
|
|
768
|
+
def security_profile(self, value: Optional[pulumi.Input['AgentPoolSecurityProfileArgs']]):
|
|
769
|
+
pulumi.set(self, "security_profile", value)
|
|
770
|
+
|
|
771
|
+
@property
|
|
772
|
+
@pulumi.getter(name="spotMaxPrice")
|
|
773
|
+
def spot_max_price(self) -> Optional[pulumi.Input[float]]:
|
|
774
|
+
"""
|
|
775
|
+
Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any on-demand price. For more details on spot pricing, see [spot VMs pricing](https://docs.microsoft.com/azure/virtual-machines/spot-vms#pricing)
|
|
776
|
+
"""
|
|
777
|
+
return pulumi.get(self, "spot_max_price")
|
|
778
|
+
|
|
779
|
+
@spot_max_price.setter
|
|
780
|
+
def spot_max_price(self, value: Optional[pulumi.Input[float]]):
|
|
781
|
+
pulumi.set(self, "spot_max_price", value)
|
|
782
|
+
|
|
783
|
+
@property
|
|
784
|
+
@pulumi.getter
|
|
785
|
+
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
786
|
+
"""
|
|
787
|
+
The tags to be persisted on the agent pool virtual machine scale set.
|
|
788
|
+
"""
|
|
789
|
+
return pulumi.get(self, "tags")
|
|
790
|
+
|
|
791
|
+
@tags.setter
|
|
792
|
+
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
793
|
+
pulumi.set(self, "tags", value)
|
|
794
|
+
|
|
795
|
+
@property
|
|
796
|
+
@pulumi.getter
|
|
797
|
+
def type(self) -> Optional[pulumi.Input[Union[str, 'AgentPoolType']]]:
|
|
798
|
+
"""
|
|
799
|
+
The type of Agent Pool.
|
|
800
|
+
"""
|
|
801
|
+
return pulumi.get(self, "type")
|
|
802
|
+
|
|
803
|
+
@type.setter
|
|
804
|
+
def type(self, value: Optional[pulumi.Input[Union[str, 'AgentPoolType']]]):
|
|
805
|
+
pulumi.set(self, "type", value)
|
|
806
|
+
|
|
807
|
+
@property
|
|
808
|
+
@pulumi.getter(name="upgradeSettings")
|
|
809
|
+
def upgrade_settings(self) -> Optional[pulumi.Input['AgentPoolUpgradeSettingsArgs']]:
|
|
810
|
+
"""
|
|
811
|
+
Settings for upgrading the agentpool
|
|
812
|
+
"""
|
|
813
|
+
return pulumi.get(self, "upgrade_settings")
|
|
814
|
+
|
|
815
|
+
@upgrade_settings.setter
|
|
816
|
+
def upgrade_settings(self, value: Optional[pulumi.Input['AgentPoolUpgradeSettingsArgs']]):
|
|
817
|
+
pulumi.set(self, "upgrade_settings", value)
|
|
818
|
+
|
|
819
|
+
@property
|
|
820
|
+
@pulumi.getter(name="virtualMachineNodesStatus")
|
|
821
|
+
def virtual_machine_nodes_status(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VirtualMachineNodesArgs']]]]:
|
|
822
|
+
"""
|
|
823
|
+
The status of nodes in a VirtualMachines agent pool.
|
|
824
|
+
"""
|
|
825
|
+
return pulumi.get(self, "virtual_machine_nodes_status")
|
|
826
|
+
|
|
827
|
+
@virtual_machine_nodes_status.setter
|
|
828
|
+
def virtual_machine_nodes_status(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VirtualMachineNodesArgs']]]]):
|
|
829
|
+
pulumi.set(self, "virtual_machine_nodes_status", value)
|
|
830
|
+
|
|
831
|
+
@property
|
|
832
|
+
@pulumi.getter(name="virtualMachinesProfile")
|
|
833
|
+
def virtual_machines_profile(self) -> Optional[pulumi.Input['VirtualMachinesProfileArgs']]:
|
|
834
|
+
"""
|
|
835
|
+
Specifications on VirtualMachines agent pool.
|
|
836
|
+
"""
|
|
837
|
+
return pulumi.get(self, "virtual_machines_profile")
|
|
838
|
+
|
|
839
|
+
@virtual_machines_profile.setter
|
|
840
|
+
def virtual_machines_profile(self, value: Optional[pulumi.Input['VirtualMachinesProfileArgs']]):
|
|
841
|
+
pulumi.set(self, "virtual_machines_profile", value)
|
|
842
|
+
|
|
843
|
+
@property
|
|
844
|
+
@pulumi.getter(name="vmSize")
|
|
845
|
+
def vm_size(self) -> Optional[pulumi.Input[str]]:
|
|
846
|
+
"""
|
|
847
|
+
VM size availability varies by region. If a node contains insufficient compute resources (memory, cpu, etc) pods might fail to run correctly. For more details on restricted VM sizes, see: https://docs.microsoft.com/azure/aks/quotas-skus-regions
|
|
848
|
+
"""
|
|
849
|
+
return pulumi.get(self, "vm_size")
|
|
850
|
+
|
|
851
|
+
@vm_size.setter
|
|
852
|
+
def vm_size(self, value: Optional[pulumi.Input[str]]):
|
|
853
|
+
pulumi.set(self, "vm_size", value)
|
|
854
|
+
|
|
855
|
+
@property
|
|
856
|
+
@pulumi.getter(name="vnetSubnetID")
|
|
857
|
+
def vnet_subnet_id(self) -> Optional[pulumi.Input[str]]:
|
|
858
|
+
"""
|
|
859
|
+
If this is not specified, a VNET and subnet will be generated and used. If no podSubnetID is specified, this applies to nodes and pods, otherwise it applies to just nodes. This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}
|
|
860
|
+
"""
|
|
861
|
+
return pulumi.get(self, "vnet_subnet_id")
|
|
862
|
+
|
|
863
|
+
@vnet_subnet_id.setter
|
|
864
|
+
def vnet_subnet_id(self, value: Optional[pulumi.Input[str]]):
|
|
865
|
+
pulumi.set(self, "vnet_subnet_id", value)
|
|
866
|
+
|
|
867
|
+
@property
|
|
868
|
+
@pulumi.getter(name="windowsProfile")
|
|
869
|
+
def windows_profile(self) -> Optional[pulumi.Input['AgentPoolWindowsProfileArgs']]:
|
|
870
|
+
"""
|
|
871
|
+
The Windows agent pool's specific profile.
|
|
872
|
+
"""
|
|
873
|
+
return pulumi.get(self, "windows_profile")
|
|
874
|
+
|
|
875
|
+
@windows_profile.setter
|
|
876
|
+
def windows_profile(self, value: Optional[pulumi.Input['AgentPoolWindowsProfileArgs']]):
|
|
877
|
+
pulumi.set(self, "windows_profile", value)
|
|
878
|
+
|
|
879
|
+
@property
|
|
880
|
+
@pulumi.getter(name="workloadRuntime")
|
|
881
|
+
def workload_runtime(self) -> Optional[pulumi.Input[Union[str, 'WorkloadRuntime']]]:
|
|
882
|
+
"""
|
|
883
|
+
Determines the type of workload a node can run.
|
|
884
|
+
"""
|
|
885
|
+
return pulumi.get(self, "workload_runtime")
|
|
886
|
+
|
|
887
|
+
@workload_runtime.setter
|
|
888
|
+
def workload_runtime(self, value: Optional[pulumi.Input[Union[str, 'WorkloadRuntime']]]):
|
|
889
|
+
pulumi.set(self, "workload_runtime", value)
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
class AgentPool(pulumi.CustomResource):
|
|
893
|
+
@overload
|
|
894
|
+
def __init__(__self__,
|
|
895
|
+
resource_name: str,
|
|
896
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
897
|
+
agent_pool_name: Optional[pulumi.Input[str]] = None,
|
|
898
|
+
artifact_streaming_profile: Optional[pulumi.Input[Union['AgentPoolArtifactStreamingProfileArgs', 'AgentPoolArtifactStreamingProfileArgsDict']]] = None,
|
|
899
|
+
availability_zones: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
900
|
+
capacity_reservation_group_id: Optional[pulumi.Input[str]] = None,
|
|
901
|
+
count: Optional[pulumi.Input[int]] = None,
|
|
902
|
+
creation_data: Optional[pulumi.Input[Union['CreationDataArgs', 'CreationDataArgsDict']]] = None,
|
|
903
|
+
enable_auto_scaling: Optional[pulumi.Input[bool]] = None,
|
|
904
|
+
enable_custom_ca_trust: Optional[pulumi.Input[bool]] = None,
|
|
905
|
+
enable_encryption_at_host: Optional[pulumi.Input[bool]] = None,
|
|
906
|
+
enable_fips: Optional[pulumi.Input[bool]] = None,
|
|
907
|
+
enable_node_public_ip: Optional[pulumi.Input[bool]] = None,
|
|
908
|
+
enable_ultra_ssd: Optional[pulumi.Input[bool]] = None,
|
|
909
|
+
gateway_profile: Optional[pulumi.Input[Union['AgentPoolGatewayProfileArgs', 'AgentPoolGatewayProfileArgsDict']]] = None,
|
|
910
|
+
gpu_instance_profile: Optional[pulumi.Input[Union[str, 'GPUInstanceProfile']]] = None,
|
|
911
|
+
gpu_profile: Optional[pulumi.Input[Union['AgentPoolGPUProfileArgs', 'AgentPoolGPUProfileArgsDict']]] = None,
|
|
912
|
+
host_group_id: Optional[pulumi.Input[str]] = None,
|
|
913
|
+
kubelet_config: Optional[pulumi.Input[Union['KubeletConfigArgs', 'KubeletConfigArgsDict']]] = None,
|
|
914
|
+
kubelet_disk_type: Optional[pulumi.Input[Union[str, 'KubeletDiskType']]] = None,
|
|
915
|
+
linux_os_config: Optional[pulumi.Input[Union['LinuxOSConfigArgs', 'LinuxOSConfigArgsDict']]] = None,
|
|
916
|
+
max_count: Optional[pulumi.Input[int]] = None,
|
|
917
|
+
max_pods: Optional[pulumi.Input[int]] = None,
|
|
918
|
+
message_of_the_day: Optional[pulumi.Input[str]] = None,
|
|
919
|
+
min_count: Optional[pulumi.Input[int]] = None,
|
|
920
|
+
mode: Optional[pulumi.Input[Union[str, 'AgentPoolMode']]] = None,
|
|
921
|
+
network_profile: Optional[pulumi.Input[Union['AgentPoolNetworkProfileArgs', 'AgentPoolNetworkProfileArgsDict']]] = None,
|
|
922
|
+
node_initialization_taints: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
923
|
+
node_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
924
|
+
node_public_ip_prefix_id: Optional[pulumi.Input[str]] = None,
|
|
925
|
+
node_taints: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
926
|
+
orchestrator_version: Optional[pulumi.Input[str]] = None,
|
|
927
|
+
os_disk_size_gb: Optional[pulumi.Input[int]] = None,
|
|
928
|
+
os_disk_type: Optional[pulumi.Input[Union[str, 'OSDiskType']]] = None,
|
|
929
|
+
os_sku: Optional[pulumi.Input[Union[str, 'OSSKU']]] = None,
|
|
930
|
+
os_type: Optional[pulumi.Input[Union[str, 'OSType']]] = None,
|
|
931
|
+
pod_ip_allocation_mode: Optional[pulumi.Input[Union[str, 'PodIPAllocationMode']]] = None,
|
|
932
|
+
pod_subnet_id: Optional[pulumi.Input[str]] = None,
|
|
933
|
+
power_state: Optional[pulumi.Input[Union['PowerStateArgs', 'PowerStateArgsDict']]] = None,
|
|
934
|
+
proximity_placement_group_id: Optional[pulumi.Input[str]] = None,
|
|
935
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
936
|
+
resource_name_: Optional[pulumi.Input[str]] = None,
|
|
937
|
+
scale_down_mode: Optional[pulumi.Input[Union[str, 'ScaleDownMode']]] = None,
|
|
938
|
+
scale_set_eviction_policy: Optional[pulumi.Input[Union[str, 'ScaleSetEvictionPolicy']]] = None,
|
|
939
|
+
scale_set_priority: Optional[pulumi.Input[Union[str, 'ScaleSetPriority']]] = None,
|
|
940
|
+
security_profile: Optional[pulumi.Input[Union['AgentPoolSecurityProfileArgs', 'AgentPoolSecurityProfileArgsDict']]] = None,
|
|
941
|
+
spot_max_price: Optional[pulumi.Input[float]] = None,
|
|
942
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
943
|
+
type: Optional[pulumi.Input[Union[str, 'AgentPoolType']]] = None,
|
|
944
|
+
upgrade_settings: Optional[pulumi.Input[Union['AgentPoolUpgradeSettingsArgs', 'AgentPoolUpgradeSettingsArgsDict']]] = None,
|
|
945
|
+
virtual_machine_nodes_status: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VirtualMachineNodesArgs', 'VirtualMachineNodesArgsDict']]]]] = None,
|
|
946
|
+
virtual_machines_profile: Optional[pulumi.Input[Union['VirtualMachinesProfileArgs', 'VirtualMachinesProfileArgsDict']]] = None,
|
|
947
|
+
vm_size: Optional[pulumi.Input[str]] = None,
|
|
948
|
+
vnet_subnet_id: Optional[pulumi.Input[str]] = None,
|
|
949
|
+
windows_profile: Optional[pulumi.Input[Union['AgentPoolWindowsProfileArgs', 'AgentPoolWindowsProfileArgsDict']]] = None,
|
|
950
|
+
workload_runtime: Optional[pulumi.Input[Union[str, 'WorkloadRuntime']]] = None,
|
|
951
|
+
__props__=None):
|
|
952
|
+
"""
|
|
953
|
+
Agent Pool.
|
|
954
|
+
|
|
955
|
+
:param str resource_name: The name of the resource.
|
|
956
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
957
|
+
:param pulumi.Input[str] agent_pool_name: The name of the agent pool.
|
|
958
|
+
:param pulumi.Input[Union['AgentPoolArtifactStreamingProfileArgs', 'AgentPoolArtifactStreamingProfileArgsDict']] artifact_streaming_profile: Configuration for using artifact streaming on AKS.
|
|
959
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] availability_zones: The list of Availability zones to use for nodes. This can only be specified if the AgentPoolType property is 'VirtualMachineScaleSets'.
|
|
960
|
+
:param pulumi.Input[str] capacity_reservation_group_id: AKS will associate the specified agent pool with the Capacity Reservation Group.
|
|
961
|
+
:param pulumi.Input[int] count: Number of agents (VMs) to host docker containers. Allowed values must be in the range of 0 to 1000 (inclusive) for user pools and in the range of 1 to 1000 (inclusive) for system pools. The default value is 1.
|
|
962
|
+
:param pulumi.Input[Union['CreationDataArgs', 'CreationDataArgsDict']] creation_data: CreationData to be used to specify the source Snapshot ID if the node pool will be created/upgraded using a snapshot.
|
|
963
|
+
:param pulumi.Input[bool] enable_auto_scaling: Whether to enable auto-scaler
|
|
964
|
+
:param pulumi.Input[bool] enable_custom_ca_trust: When set to true, AKS adds a label to the node indicating that the feature is enabled and deploys a daemonset along with host services to sync custom certificate authorities from user-provided list of base64 encoded certificates into node trust stores. Defaults to false.
|
|
965
|
+
:param pulumi.Input[bool] enable_encryption_at_host: This is only supported on certain VM sizes and in certain Azure regions. For more information, see: https://docs.microsoft.com/azure/aks/enable-host-encryption
|
|
966
|
+
:param pulumi.Input[bool] enable_fips: See [Add a FIPS-enabled node pool](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#add-a-fips-enabled-node-pool-preview) for more details.
|
|
967
|
+
:param pulumi.Input[bool] enable_node_public_ip: Some scenarios may require nodes in a node pool to receive their own dedicated public IP addresses. A common scenario is for gaming workloads, where a console needs to make a direct connection to a cloud virtual machine to minimize hops. For more information see [assigning a public IP per node](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#assign-a-public-ip-per-node-for-your-node-pools). The default is false.
|
|
968
|
+
:param pulumi.Input[bool] enable_ultra_ssd: Whether to enable UltraSSD
|
|
969
|
+
:param pulumi.Input[Union['AgentPoolGatewayProfileArgs', 'AgentPoolGatewayProfileArgsDict']] gateway_profile: Profile specific to a managed agent pool in Gateway mode. This field cannot be set if agent pool mode is not Gateway.
|
|
970
|
+
:param pulumi.Input[Union[str, 'GPUInstanceProfile']] gpu_instance_profile: GPUInstanceProfile to be used to specify GPU MIG instance profile for supported GPU VM SKU.
|
|
971
|
+
:param pulumi.Input[Union['AgentPoolGPUProfileArgs', 'AgentPoolGPUProfileArgsDict']] gpu_profile: The GPU settings of an agent pool.
|
|
972
|
+
:param pulumi.Input[str] host_group_id: This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}. For more information see [Azure dedicated hosts](https://docs.microsoft.com/azure/virtual-machines/dedicated-hosts).
|
|
973
|
+
:param pulumi.Input[Union['KubeletConfigArgs', 'KubeletConfigArgsDict']] kubelet_config: The Kubelet configuration on the agent pool nodes.
|
|
974
|
+
:param pulumi.Input[Union[str, 'KubeletDiskType']] kubelet_disk_type: Determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage.
|
|
975
|
+
:param pulumi.Input[Union['LinuxOSConfigArgs', 'LinuxOSConfigArgsDict']] linux_os_config: The OS configuration of Linux agent nodes.
|
|
976
|
+
:param pulumi.Input[int] max_count: The maximum number of nodes for auto-scaling
|
|
977
|
+
:param pulumi.Input[int] max_pods: The maximum number of pods that can run on a node.
|
|
978
|
+
:param pulumi.Input[str] message_of_the_day: A base64-encoded string which will be written to /etc/motd after decoding. This allows customization of the message of the day for Linux nodes. It must not be specified for Windows nodes. It must be a static string (i.e., will be printed raw and not be executed as a script).
|
|
979
|
+
:param pulumi.Input[int] min_count: The minimum number of nodes for auto-scaling
|
|
980
|
+
:param pulumi.Input[Union[str, 'AgentPoolMode']] mode: A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools
|
|
981
|
+
:param pulumi.Input[Union['AgentPoolNetworkProfileArgs', 'AgentPoolNetworkProfileArgsDict']] network_profile: Network-related settings of an agent pool.
|
|
982
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] node_initialization_taints: These taints will not be reconciled by AKS and can be removed with a kubectl call. This field can be modified after node pool is created, but nodes will not be recreated with new taints until another operation that requires recreation (e.g. node image upgrade) happens. These taints allow for required configuration to run before the node is ready to accept workloads, for example 'key1=value1:NoSchedule' that then can be removed with `kubectl taint nodes node1 key1=value1:NoSchedule-`
|
|
983
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] node_labels: The node labels to be persisted across all nodes in agent pool.
|
|
984
|
+
:param pulumi.Input[str] node_public_ip_prefix_id: This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}
|
|
985
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] node_taints: The taints added to new nodes during node pool create and scale. For example, key=value:NoSchedule.
|
|
986
|
+
:param pulumi.Input[str] orchestrator_version: Both patch version <major.minor.patch> and <major.minor> are supported. When <major.minor> is specified, the latest supported patch version is chosen automatically. Updating the agent pool with the same <major.minor> once it has been created will not trigger an upgrade, even if a newer patch version is available. As a best practice, you should upgrade all node pools in an AKS cluster to the same Kubernetes version. The node pool version must have the same major version as the control plane. The node pool minor version must be within two minor versions of the control plane version. The node pool version cannot be greater than the control plane version. For more information see [upgrading a node pool](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#upgrade-a-node-pool).
|
|
987
|
+
:param pulumi.Input[int] os_disk_size_gb: OS Disk Size in GB to be used to specify the disk size for every machine in the master/agent pool. If you specify 0, it will apply the default osDisk size according to the vmSize specified.
|
|
988
|
+
:param pulumi.Input[Union[str, 'OSDiskType']] os_disk_type: The default is 'Ephemeral' if the VM supports it and has a cache disk larger than the requested OSDiskSizeGB. Otherwise, defaults to 'Managed'. May not be changed after creation. For more information see [Ephemeral OS](https://docs.microsoft.com/azure/aks/cluster-configuration#ephemeral-os).
|
|
989
|
+
:param pulumi.Input[Union[str, 'OSSKU']] os_sku: Specifies the OS SKU used by the agent pool. If not specified, the default is Ubuntu if OSType=Linux or Windows2019 if OSType=Windows. And the default Windows OSSKU will be changed to Windows2022 after Windows2019 is deprecated.
|
|
990
|
+
:param pulumi.Input[Union[str, 'OSType']] os_type: The operating system type. The default is Linux.
|
|
991
|
+
:param pulumi.Input[Union[str, 'PodIPAllocationMode']] pod_ip_allocation_mode: The IP allocation mode for pods in the agent pool. Must be used with podSubnetId. The default is 'DynamicIndividual'.
|
|
992
|
+
:param pulumi.Input[str] pod_subnet_id: If omitted, pod IPs are statically assigned on the node subnet (see vnetSubnetID for more details). This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}
|
|
993
|
+
:param pulumi.Input[Union['PowerStateArgs', 'PowerStateArgsDict']] power_state: When an Agent Pool is first created it is initially Running. The Agent Pool can be stopped by setting this field to Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An Agent Pool can only be stopped if it is Running and provisioning state is Succeeded
|
|
994
|
+
:param pulumi.Input[str] proximity_placement_group_id: The ID for Proximity Placement Group.
|
|
995
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
996
|
+
:param pulumi.Input[str] resource_name_: The name of the managed cluster resource.
|
|
997
|
+
:param pulumi.Input[Union[str, 'ScaleDownMode']] scale_down_mode: This also effects the cluster autoscaler behavior. If not specified, it defaults to Delete.
|
|
998
|
+
:param pulumi.Input[Union[str, 'ScaleSetEvictionPolicy']] scale_set_eviction_policy: This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'.
|
|
999
|
+
:param pulumi.Input[Union[str, 'ScaleSetPriority']] scale_set_priority: The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
|
|
1000
|
+
:param pulumi.Input[Union['AgentPoolSecurityProfileArgs', 'AgentPoolSecurityProfileArgsDict']] security_profile: The security settings of an agent pool.
|
|
1001
|
+
:param pulumi.Input[float] spot_max_price: Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any on-demand price. For more details on spot pricing, see [spot VMs pricing](https://docs.microsoft.com/azure/virtual-machines/spot-vms#pricing)
|
|
1002
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: The tags to be persisted on the agent pool virtual machine scale set.
|
|
1003
|
+
:param pulumi.Input[Union[str, 'AgentPoolType']] type: The type of Agent Pool.
|
|
1004
|
+
:param pulumi.Input[Union['AgentPoolUpgradeSettingsArgs', 'AgentPoolUpgradeSettingsArgsDict']] upgrade_settings: Settings for upgrading the agentpool
|
|
1005
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['VirtualMachineNodesArgs', 'VirtualMachineNodesArgsDict']]]] virtual_machine_nodes_status: The status of nodes in a VirtualMachines agent pool.
|
|
1006
|
+
:param pulumi.Input[Union['VirtualMachinesProfileArgs', 'VirtualMachinesProfileArgsDict']] virtual_machines_profile: Specifications on VirtualMachines agent pool.
|
|
1007
|
+
:param pulumi.Input[str] vm_size: VM size availability varies by region. If a node contains insufficient compute resources (memory, cpu, etc) pods might fail to run correctly. For more details on restricted VM sizes, see: https://docs.microsoft.com/azure/aks/quotas-skus-regions
|
|
1008
|
+
:param pulumi.Input[str] vnet_subnet_id: If this is not specified, a VNET and subnet will be generated and used. If no podSubnetID is specified, this applies to nodes and pods, otherwise it applies to just nodes. This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}
|
|
1009
|
+
:param pulumi.Input[Union['AgentPoolWindowsProfileArgs', 'AgentPoolWindowsProfileArgsDict']] windows_profile: The Windows agent pool's specific profile.
|
|
1010
|
+
:param pulumi.Input[Union[str, 'WorkloadRuntime']] workload_runtime: Determines the type of workload a node can run.
|
|
1011
|
+
"""
|
|
1012
|
+
...
|
|
1013
|
+
@overload
|
|
1014
|
+
def __init__(__self__,
|
|
1015
|
+
resource_name: str,
|
|
1016
|
+
args: AgentPoolArgs,
|
|
1017
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
1018
|
+
"""
|
|
1019
|
+
Agent Pool.
|
|
1020
|
+
|
|
1021
|
+
:param str resource_name: The name of the resource.
|
|
1022
|
+
:param AgentPoolArgs args: The arguments to use to populate this resource's properties.
|
|
1023
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1024
|
+
"""
|
|
1025
|
+
...
|
|
1026
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
1027
|
+
resource_args, opts = _utilities.get_resource_args_opts(AgentPoolArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
1028
|
+
if resource_args is not None:
|
|
1029
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
1030
|
+
else:
|
|
1031
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
1032
|
+
|
|
1033
|
+
def _internal_init(__self__,
|
|
1034
|
+
resource_name: str,
|
|
1035
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
1036
|
+
agent_pool_name: Optional[pulumi.Input[str]] = None,
|
|
1037
|
+
artifact_streaming_profile: Optional[pulumi.Input[Union['AgentPoolArtifactStreamingProfileArgs', 'AgentPoolArtifactStreamingProfileArgsDict']]] = None,
|
|
1038
|
+
availability_zones: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
1039
|
+
capacity_reservation_group_id: Optional[pulumi.Input[str]] = None,
|
|
1040
|
+
count: Optional[pulumi.Input[int]] = None,
|
|
1041
|
+
creation_data: Optional[pulumi.Input[Union['CreationDataArgs', 'CreationDataArgsDict']]] = None,
|
|
1042
|
+
enable_auto_scaling: Optional[pulumi.Input[bool]] = None,
|
|
1043
|
+
enable_custom_ca_trust: Optional[pulumi.Input[bool]] = None,
|
|
1044
|
+
enable_encryption_at_host: Optional[pulumi.Input[bool]] = None,
|
|
1045
|
+
enable_fips: Optional[pulumi.Input[bool]] = None,
|
|
1046
|
+
enable_node_public_ip: Optional[pulumi.Input[bool]] = None,
|
|
1047
|
+
enable_ultra_ssd: Optional[pulumi.Input[bool]] = None,
|
|
1048
|
+
gateway_profile: Optional[pulumi.Input[Union['AgentPoolGatewayProfileArgs', 'AgentPoolGatewayProfileArgsDict']]] = None,
|
|
1049
|
+
gpu_instance_profile: Optional[pulumi.Input[Union[str, 'GPUInstanceProfile']]] = None,
|
|
1050
|
+
gpu_profile: Optional[pulumi.Input[Union['AgentPoolGPUProfileArgs', 'AgentPoolGPUProfileArgsDict']]] = None,
|
|
1051
|
+
host_group_id: Optional[pulumi.Input[str]] = None,
|
|
1052
|
+
kubelet_config: Optional[pulumi.Input[Union['KubeletConfigArgs', 'KubeletConfigArgsDict']]] = None,
|
|
1053
|
+
kubelet_disk_type: Optional[pulumi.Input[Union[str, 'KubeletDiskType']]] = None,
|
|
1054
|
+
linux_os_config: Optional[pulumi.Input[Union['LinuxOSConfigArgs', 'LinuxOSConfigArgsDict']]] = None,
|
|
1055
|
+
max_count: Optional[pulumi.Input[int]] = None,
|
|
1056
|
+
max_pods: Optional[pulumi.Input[int]] = None,
|
|
1057
|
+
message_of_the_day: Optional[pulumi.Input[str]] = None,
|
|
1058
|
+
min_count: Optional[pulumi.Input[int]] = None,
|
|
1059
|
+
mode: Optional[pulumi.Input[Union[str, 'AgentPoolMode']]] = None,
|
|
1060
|
+
network_profile: Optional[pulumi.Input[Union['AgentPoolNetworkProfileArgs', 'AgentPoolNetworkProfileArgsDict']]] = None,
|
|
1061
|
+
node_initialization_taints: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
1062
|
+
node_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
1063
|
+
node_public_ip_prefix_id: Optional[pulumi.Input[str]] = None,
|
|
1064
|
+
node_taints: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
1065
|
+
orchestrator_version: Optional[pulumi.Input[str]] = None,
|
|
1066
|
+
os_disk_size_gb: Optional[pulumi.Input[int]] = None,
|
|
1067
|
+
os_disk_type: Optional[pulumi.Input[Union[str, 'OSDiskType']]] = None,
|
|
1068
|
+
os_sku: Optional[pulumi.Input[Union[str, 'OSSKU']]] = None,
|
|
1069
|
+
os_type: Optional[pulumi.Input[Union[str, 'OSType']]] = None,
|
|
1070
|
+
pod_ip_allocation_mode: Optional[pulumi.Input[Union[str, 'PodIPAllocationMode']]] = None,
|
|
1071
|
+
pod_subnet_id: Optional[pulumi.Input[str]] = None,
|
|
1072
|
+
power_state: Optional[pulumi.Input[Union['PowerStateArgs', 'PowerStateArgsDict']]] = None,
|
|
1073
|
+
proximity_placement_group_id: Optional[pulumi.Input[str]] = None,
|
|
1074
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
1075
|
+
resource_name_: Optional[pulumi.Input[str]] = None,
|
|
1076
|
+
scale_down_mode: Optional[pulumi.Input[Union[str, 'ScaleDownMode']]] = None,
|
|
1077
|
+
scale_set_eviction_policy: Optional[pulumi.Input[Union[str, 'ScaleSetEvictionPolicy']]] = None,
|
|
1078
|
+
scale_set_priority: Optional[pulumi.Input[Union[str, 'ScaleSetPriority']]] = None,
|
|
1079
|
+
security_profile: Optional[pulumi.Input[Union['AgentPoolSecurityProfileArgs', 'AgentPoolSecurityProfileArgsDict']]] = None,
|
|
1080
|
+
spot_max_price: Optional[pulumi.Input[float]] = None,
|
|
1081
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
1082
|
+
type: Optional[pulumi.Input[Union[str, 'AgentPoolType']]] = None,
|
|
1083
|
+
upgrade_settings: Optional[pulumi.Input[Union['AgentPoolUpgradeSettingsArgs', 'AgentPoolUpgradeSettingsArgsDict']]] = None,
|
|
1084
|
+
virtual_machine_nodes_status: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VirtualMachineNodesArgs', 'VirtualMachineNodesArgsDict']]]]] = None,
|
|
1085
|
+
virtual_machines_profile: Optional[pulumi.Input[Union['VirtualMachinesProfileArgs', 'VirtualMachinesProfileArgsDict']]] = None,
|
|
1086
|
+
vm_size: Optional[pulumi.Input[str]] = None,
|
|
1087
|
+
vnet_subnet_id: Optional[pulumi.Input[str]] = None,
|
|
1088
|
+
windows_profile: Optional[pulumi.Input[Union['AgentPoolWindowsProfileArgs', 'AgentPoolWindowsProfileArgsDict']]] = None,
|
|
1089
|
+
workload_runtime: Optional[pulumi.Input[Union[str, 'WorkloadRuntime']]] = None,
|
|
1090
|
+
__props__=None):
|
|
1091
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
1092
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
1093
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
1094
|
+
if opts.id is None:
|
|
1095
|
+
if __props__ is not None:
|
|
1096
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
1097
|
+
__props__ = AgentPoolArgs.__new__(AgentPoolArgs)
|
|
1098
|
+
|
|
1099
|
+
__props__.__dict__["agent_pool_name"] = agent_pool_name
|
|
1100
|
+
__props__.__dict__["artifact_streaming_profile"] = artifact_streaming_profile
|
|
1101
|
+
__props__.__dict__["availability_zones"] = availability_zones
|
|
1102
|
+
__props__.__dict__["capacity_reservation_group_id"] = capacity_reservation_group_id
|
|
1103
|
+
__props__.__dict__["count"] = count
|
|
1104
|
+
__props__.__dict__["creation_data"] = creation_data
|
|
1105
|
+
__props__.__dict__["enable_auto_scaling"] = enable_auto_scaling
|
|
1106
|
+
__props__.__dict__["enable_custom_ca_trust"] = enable_custom_ca_trust
|
|
1107
|
+
__props__.__dict__["enable_encryption_at_host"] = enable_encryption_at_host
|
|
1108
|
+
__props__.__dict__["enable_fips"] = enable_fips
|
|
1109
|
+
__props__.__dict__["enable_node_public_ip"] = enable_node_public_ip
|
|
1110
|
+
__props__.__dict__["enable_ultra_ssd"] = enable_ultra_ssd
|
|
1111
|
+
__props__.__dict__["gateway_profile"] = gateway_profile
|
|
1112
|
+
__props__.__dict__["gpu_instance_profile"] = gpu_instance_profile
|
|
1113
|
+
__props__.__dict__["gpu_profile"] = gpu_profile
|
|
1114
|
+
__props__.__dict__["host_group_id"] = host_group_id
|
|
1115
|
+
__props__.__dict__["kubelet_config"] = kubelet_config
|
|
1116
|
+
__props__.__dict__["kubelet_disk_type"] = kubelet_disk_type
|
|
1117
|
+
__props__.__dict__["linux_os_config"] = linux_os_config
|
|
1118
|
+
__props__.__dict__["max_count"] = max_count
|
|
1119
|
+
__props__.__dict__["max_pods"] = max_pods
|
|
1120
|
+
__props__.__dict__["message_of_the_day"] = message_of_the_day
|
|
1121
|
+
__props__.__dict__["min_count"] = min_count
|
|
1122
|
+
__props__.__dict__["mode"] = mode
|
|
1123
|
+
__props__.__dict__["network_profile"] = network_profile
|
|
1124
|
+
__props__.__dict__["node_initialization_taints"] = node_initialization_taints
|
|
1125
|
+
__props__.__dict__["node_labels"] = node_labels
|
|
1126
|
+
__props__.__dict__["node_public_ip_prefix_id"] = node_public_ip_prefix_id
|
|
1127
|
+
__props__.__dict__["node_taints"] = node_taints
|
|
1128
|
+
__props__.__dict__["orchestrator_version"] = orchestrator_version
|
|
1129
|
+
__props__.__dict__["os_disk_size_gb"] = os_disk_size_gb
|
|
1130
|
+
__props__.__dict__["os_disk_type"] = os_disk_type
|
|
1131
|
+
__props__.__dict__["os_sku"] = os_sku
|
|
1132
|
+
__props__.__dict__["os_type"] = os_type
|
|
1133
|
+
__props__.__dict__["pod_ip_allocation_mode"] = pod_ip_allocation_mode
|
|
1134
|
+
__props__.__dict__["pod_subnet_id"] = pod_subnet_id
|
|
1135
|
+
__props__.__dict__["power_state"] = power_state
|
|
1136
|
+
__props__.__dict__["proximity_placement_group_id"] = proximity_placement_group_id
|
|
1137
|
+
if resource_group_name is None and not opts.urn:
|
|
1138
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
1139
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
1140
|
+
if resource_name_ is None and not opts.urn:
|
|
1141
|
+
raise TypeError("Missing required property 'resource_name_'")
|
|
1142
|
+
__props__.__dict__["resource_name"] = resource_name_
|
|
1143
|
+
__props__.__dict__["scale_down_mode"] = scale_down_mode
|
|
1144
|
+
__props__.__dict__["scale_set_eviction_policy"] = scale_set_eviction_policy
|
|
1145
|
+
__props__.__dict__["scale_set_priority"] = scale_set_priority
|
|
1146
|
+
__props__.__dict__["security_profile"] = security_profile
|
|
1147
|
+
__props__.__dict__["spot_max_price"] = spot_max_price
|
|
1148
|
+
__props__.__dict__["tags"] = tags
|
|
1149
|
+
__props__.__dict__["type"] = type
|
|
1150
|
+
__props__.__dict__["upgrade_settings"] = upgrade_settings
|
|
1151
|
+
__props__.__dict__["virtual_machine_nodes_status"] = virtual_machine_nodes_status
|
|
1152
|
+
__props__.__dict__["virtual_machines_profile"] = virtual_machines_profile
|
|
1153
|
+
__props__.__dict__["vm_size"] = vm_size
|
|
1154
|
+
__props__.__dict__["vnet_subnet_id"] = vnet_subnet_id
|
|
1155
|
+
__props__.__dict__["windows_profile"] = windows_profile
|
|
1156
|
+
__props__.__dict__["workload_runtime"] = workload_runtime
|
|
1157
|
+
__props__.__dict__["current_orchestrator_version"] = None
|
|
1158
|
+
__props__.__dict__["e_tag"] = None
|
|
1159
|
+
__props__.__dict__["name"] = None
|
|
1160
|
+
__props__.__dict__["node_image_version"] = None
|
|
1161
|
+
__props__.__dict__["provisioning_state"] = None
|
|
1162
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:containerservice:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20190201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20190401:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20190601:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20190801:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20191001:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20191101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200301:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200401:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200601:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200701:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20200901:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20201101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20201201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20210201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20210301:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20210501:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20210701:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20210801:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20210901:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20211001:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20211101preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220102preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220202preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220301:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220302preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220401:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220402preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220502preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220601:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220602preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220701:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220702preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220802preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220803preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220901:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20220902preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20221002preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20221101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20221102preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230102preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230202preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230301:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230302preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230401:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230402preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230501:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230502preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230601:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230602preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230701:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230702preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230801:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230802preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230901:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20230902preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20231001:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20231002preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20231101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20231102preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240101:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240102preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240201:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240202preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240302preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240402preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240501:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240502preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240602preview:AgentPool"), pulumi.Alias(type_="azure-native:containerservice/v20240701:AgentPool")])
|
|
1163
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
1164
|
+
super(AgentPool, __self__).__init__(
|
|
1165
|
+
'azure-native:containerservice/v20240702preview:AgentPool',
|
|
1166
|
+
resource_name,
|
|
1167
|
+
__props__,
|
|
1168
|
+
opts)
|
|
1169
|
+
|
|
1170
|
+
@staticmethod
|
|
1171
|
+
def get(resource_name: str,
|
|
1172
|
+
id: pulumi.Input[str],
|
|
1173
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'AgentPool':
|
|
1174
|
+
"""
|
|
1175
|
+
Get an existing AgentPool resource's state with the given name, id, and optional extra
|
|
1176
|
+
properties used to qualify the lookup.
|
|
1177
|
+
|
|
1178
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
1179
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
1180
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1181
|
+
"""
|
|
1182
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
1183
|
+
|
|
1184
|
+
__props__ = AgentPoolArgs.__new__(AgentPoolArgs)
|
|
1185
|
+
|
|
1186
|
+
__props__.__dict__["artifact_streaming_profile"] = None
|
|
1187
|
+
__props__.__dict__["availability_zones"] = None
|
|
1188
|
+
__props__.__dict__["capacity_reservation_group_id"] = None
|
|
1189
|
+
__props__.__dict__["count"] = None
|
|
1190
|
+
__props__.__dict__["creation_data"] = None
|
|
1191
|
+
__props__.__dict__["current_orchestrator_version"] = None
|
|
1192
|
+
__props__.__dict__["e_tag"] = None
|
|
1193
|
+
__props__.__dict__["enable_auto_scaling"] = None
|
|
1194
|
+
__props__.__dict__["enable_custom_ca_trust"] = None
|
|
1195
|
+
__props__.__dict__["enable_encryption_at_host"] = None
|
|
1196
|
+
__props__.__dict__["enable_fips"] = None
|
|
1197
|
+
__props__.__dict__["enable_node_public_ip"] = None
|
|
1198
|
+
__props__.__dict__["enable_ultra_ssd"] = None
|
|
1199
|
+
__props__.__dict__["gateway_profile"] = None
|
|
1200
|
+
__props__.__dict__["gpu_instance_profile"] = None
|
|
1201
|
+
__props__.__dict__["gpu_profile"] = None
|
|
1202
|
+
__props__.__dict__["host_group_id"] = None
|
|
1203
|
+
__props__.__dict__["kubelet_config"] = None
|
|
1204
|
+
__props__.__dict__["kubelet_disk_type"] = None
|
|
1205
|
+
__props__.__dict__["linux_os_config"] = None
|
|
1206
|
+
__props__.__dict__["max_count"] = None
|
|
1207
|
+
__props__.__dict__["max_pods"] = None
|
|
1208
|
+
__props__.__dict__["message_of_the_day"] = None
|
|
1209
|
+
__props__.__dict__["min_count"] = None
|
|
1210
|
+
__props__.__dict__["mode"] = None
|
|
1211
|
+
__props__.__dict__["name"] = None
|
|
1212
|
+
__props__.__dict__["network_profile"] = None
|
|
1213
|
+
__props__.__dict__["node_image_version"] = None
|
|
1214
|
+
__props__.__dict__["node_initialization_taints"] = None
|
|
1215
|
+
__props__.__dict__["node_labels"] = None
|
|
1216
|
+
__props__.__dict__["node_public_ip_prefix_id"] = None
|
|
1217
|
+
__props__.__dict__["node_taints"] = None
|
|
1218
|
+
__props__.__dict__["orchestrator_version"] = None
|
|
1219
|
+
__props__.__dict__["os_disk_size_gb"] = None
|
|
1220
|
+
__props__.__dict__["os_disk_type"] = None
|
|
1221
|
+
__props__.__dict__["os_sku"] = None
|
|
1222
|
+
__props__.__dict__["os_type"] = None
|
|
1223
|
+
__props__.__dict__["pod_ip_allocation_mode"] = None
|
|
1224
|
+
__props__.__dict__["pod_subnet_id"] = None
|
|
1225
|
+
__props__.__dict__["power_state"] = None
|
|
1226
|
+
__props__.__dict__["provisioning_state"] = None
|
|
1227
|
+
__props__.__dict__["proximity_placement_group_id"] = None
|
|
1228
|
+
__props__.__dict__["scale_down_mode"] = None
|
|
1229
|
+
__props__.__dict__["scale_set_eviction_policy"] = None
|
|
1230
|
+
__props__.__dict__["scale_set_priority"] = None
|
|
1231
|
+
__props__.__dict__["security_profile"] = None
|
|
1232
|
+
__props__.__dict__["spot_max_price"] = None
|
|
1233
|
+
__props__.__dict__["tags"] = None
|
|
1234
|
+
__props__.__dict__["type"] = None
|
|
1235
|
+
__props__.__dict__["upgrade_settings"] = None
|
|
1236
|
+
__props__.__dict__["virtual_machine_nodes_status"] = None
|
|
1237
|
+
__props__.__dict__["virtual_machines_profile"] = None
|
|
1238
|
+
__props__.__dict__["vm_size"] = None
|
|
1239
|
+
__props__.__dict__["vnet_subnet_id"] = None
|
|
1240
|
+
__props__.__dict__["windows_profile"] = None
|
|
1241
|
+
__props__.__dict__["workload_runtime"] = None
|
|
1242
|
+
return AgentPool(resource_name, opts=opts, __props__=__props__)
|
|
1243
|
+
|
|
1244
|
+
@property
|
|
1245
|
+
@pulumi.getter(name="artifactStreamingProfile")
|
|
1246
|
+
def artifact_streaming_profile(self) -> pulumi.Output[Optional['outputs.AgentPoolArtifactStreamingProfileResponse']]:
|
|
1247
|
+
"""
|
|
1248
|
+
Configuration for using artifact streaming on AKS.
|
|
1249
|
+
"""
|
|
1250
|
+
return pulumi.get(self, "artifact_streaming_profile")
|
|
1251
|
+
|
|
1252
|
+
@property
|
|
1253
|
+
@pulumi.getter(name="availabilityZones")
|
|
1254
|
+
def availability_zones(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
1255
|
+
"""
|
|
1256
|
+
The list of Availability zones to use for nodes. This can only be specified if the AgentPoolType property is 'VirtualMachineScaleSets'.
|
|
1257
|
+
"""
|
|
1258
|
+
return pulumi.get(self, "availability_zones")
|
|
1259
|
+
|
|
1260
|
+
@property
|
|
1261
|
+
@pulumi.getter(name="capacityReservationGroupID")
|
|
1262
|
+
def capacity_reservation_group_id(self) -> pulumi.Output[Optional[str]]:
|
|
1263
|
+
"""
|
|
1264
|
+
AKS will associate the specified agent pool with the Capacity Reservation Group.
|
|
1265
|
+
"""
|
|
1266
|
+
return pulumi.get(self, "capacity_reservation_group_id")
|
|
1267
|
+
|
|
1268
|
+
@property
|
|
1269
|
+
@pulumi.getter
|
|
1270
|
+
def count(self) -> pulumi.Output[Optional[int]]:
|
|
1271
|
+
"""
|
|
1272
|
+
Number of agents (VMs) to host docker containers. Allowed values must be in the range of 0 to 1000 (inclusive) for user pools and in the range of 1 to 1000 (inclusive) for system pools. The default value is 1.
|
|
1273
|
+
"""
|
|
1274
|
+
return pulumi.get(self, "count")
|
|
1275
|
+
|
|
1276
|
+
@property
|
|
1277
|
+
@pulumi.getter(name="creationData")
|
|
1278
|
+
def creation_data(self) -> pulumi.Output[Optional['outputs.CreationDataResponse']]:
|
|
1279
|
+
"""
|
|
1280
|
+
CreationData to be used to specify the source Snapshot ID if the node pool will be created/upgraded using a snapshot.
|
|
1281
|
+
"""
|
|
1282
|
+
return pulumi.get(self, "creation_data")
|
|
1283
|
+
|
|
1284
|
+
@property
|
|
1285
|
+
@pulumi.getter(name="currentOrchestratorVersion")
|
|
1286
|
+
def current_orchestrator_version(self) -> pulumi.Output[str]:
|
|
1287
|
+
"""
|
|
1288
|
+
If orchestratorVersion was a fully specified version <major.minor.patch>, this field will be exactly equal to it. If orchestratorVersion was <major.minor>, this field will contain the full <major.minor.patch> version being used.
|
|
1289
|
+
"""
|
|
1290
|
+
return pulumi.get(self, "current_orchestrator_version")
|
|
1291
|
+
|
|
1292
|
+
@property
|
|
1293
|
+
@pulumi.getter(name="eTag")
|
|
1294
|
+
def e_tag(self) -> pulumi.Output[str]:
|
|
1295
|
+
"""
|
|
1296
|
+
Unique read-only string used to implement optimistic concurrency. The eTag value will change when the resource is updated. Specify an if-match or if-none-match header with the eTag value for a subsequent request to enable optimistic concurrency per the normal etag convention.
|
|
1297
|
+
"""
|
|
1298
|
+
return pulumi.get(self, "e_tag")
|
|
1299
|
+
|
|
1300
|
+
@property
|
|
1301
|
+
@pulumi.getter(name="enableAutoScaling")
|
|
1302
|
+
def enable_auto_scaling(self) -> pulumi.Output[Optional[bool]]:
|
|
1303
|
+
"""
|
|
1304
|
+
Whether to enable auto-scaler
|
|
1305
|
+
"""
|
|
1306
|
+
return pulumi.get(self, "enable_auto_scaling")
|
|
1307
|
+
|
|
1308
|
+
@property
|
|
1309
|
+
@pulumi.getter(name="enableCustomCATrust")
|
|
1310
|
+
def enable_custom_ca_trust(self) -> pulumi.Output[Optional[bool]]:
|
|
1311
|
+
"""
|
|
1312
|
+
When set to true, AKS adds a label to the node indicating that the feature is enabled and deploys a daemonset along with host services to sync custom certificate authorities from user-provided list of base64 encoded certificates into node trust stores. Defaults to false.
|
|
1313
|
+
"""
|
|
1314
|
+
return pulumi.get(self, "enable_custom_ca_trust")
|
|
1315
|
+
|
|
1316
|
+
@property
|
|
1317
|
+
@pulumi.getter(name="enableEncryptionAtHost")
|
|
1318
|
+
def enable_encryption_at_host(self) -> pulumi.Output[Optional[bool]]:
|
|
1319
|
+
"""
|
|
1320
|
+
This is only supported on certain VM sizes and in certain Azure regions. For more information, see: https://docs.microsoft.com/azure/aks/enable-host-encryption
|
|
1321
|
+
"""
|
|
1322
|
+
return pulumi.get(self, "enable_encryption_at_host")
|
|
1323
|
+
|
|
1324
|
+
@property
|
|
1325
|
+
@pulumi.getter(name="enableFIPS")
|
|
1326
|
+
def enable_fips(self) -> pulumi.Output[Optional[bool]]:
|
|
1327
|
+
"""
|
|
1328
|
+
See [Add a FIPS-enabled node pool](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#add-a-fips-enabled-node-pool-preview) for more details.
|
|
1329
|
+
"""
|
|
1330
|
+
return pulumi.get(self, "enable_fips")
|
|
1331
|
+
|
|
1332
|
+
@property
|
|
1333
|
+
@pulumi.getter(name="enableNodePublicIP")
|
|
1334
|
+
def enable_node_public_ip(self) -> pulumi.Output[Optional[bool]]:
|
|
1335
|
+
"""
|
|
1336
|
+
Some scenarios may require nodes in a node pool to receive their own dedicated public IP addresses. A common scenario is for gaming workloads, where a console needs to make a direct connection to a cloud virtual machine to minimize hops. For more information see [assigning a public IP per node](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#assign-a-public-ip-per-node-for-your-node-pools). The default is false.
|
|
1337
|
+
"""
|
|
1338
|
+
return pulumi.get(self, "enable_node_public_ip")
|
|
1339
|
+
|
|
1340
|
+
@property
|
|
1341
|
+
@pulumi.getter(name="enableUltraSSD")
|
|
1342
|
+
def enable_ultra_ssd(self) -> pulumi.Output[Optional[bool]]:
|
|
1343
|
+
"""
|
|
1344
|
+
Whether to enable UltraSSD
|
|
1345
|
+
"""
|
|
1346
|
+
return pulumi.get(self, "enable_ultra_ssd")
|
|
1347
|
+
|
|
1348
|
+
@property
|
|
1349
|
+
@pulumi.getter(name="gatewayProfile")
|
|
1350
|
+
def gateway_profile(self) -> pulumi.Output[Optional['outputs.AgentPoolGatewayProfileResponse']]:
|
|
1351
|
+
"""
|
|
1352
|
+
Profile specific to a managed agent pool in Gateway mode. This field cannot be set if agent pool mode is not Gateway.
|
|
1353
|
+
"""
|
|
1354
|
+
return pulumi.get(self, "gateway_profile")
|
|
1355
|
+
|
|
1356
|
+
@property
|
|
1357
|
+
@pulumi.getter(name="gpuInstanceProfile")
|
|
1358
|
+
def gpu_instance_profile(self) -> pulumi.Output[Optional[str]]:
|
|
1359
|
+
"""
|
|
1360
|
+
GPUInstanceProfile to be used to specify GPU MIG instance profile for supported GPU VM SKU.
|
|
1361
|
+
"""
|
|
1362
|
+
return pulumi.get(self, "gpu_instance_profile")
|
|
1363
|
+
|
|
1364
|
+
@property
|
|
1365
|
+
@pulumi.getter(name="gpuProfile")
|
|
1366
|
+
def gpu_profile(self) -> pulumi.Output[Optional['outputs.AgentPoolGPUProfileResponse']]:
|
|
1367
|
+
"""
|
|
1368
|
+
The GPU settings of an agent pool.
|
|
1369
|
+
"""
|
|
1370
|
+
return pulumi.get(self, "gpu_profile")
|
|
1371
|
+
|
|
1372
|
+
@property
|
|
1373
|
+
@pulumi.getter(name="hostGroupID")
|
|
1374
|
+
def host_group_id(self) -> pulumi.Output[Optional[str]]:
|
|
1375
|
+
"""
|
|
1376
|
+
This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}. For more information see [Azure dedicated hosts](https://docs.microsoft.com/azure/virtual-machines/dedicated-hosts).
|
|
1377
|
+
"""
|
|
1378
|
+
return pulumi.get(self, "host_group_id")
|
|
1379
|
+
|
|
1380
|
+
@property
|
|
1381
|
+
@pulumi.getter(name="kubeletConfig")
|
|
1382
|
+
def kubelet_config(self) -> pulumi.Output[Optional['outputs.KubeletConfigResponse']]:
|
|
1383
|
+
"""
|
|
1384
|
+
The Kubelet configuration on the agent pool nodes.
|
|
1385
|
+
"""
|
|
1386
|
+
return pulumi.get(self, "kubelet_config")
|
|
1387
|
+
|
|
1388
|
+
@property
|
|
1389
|
+
@pulumi.getter(name="kubeletDiskType")
|
|
1390
|
+
def kubelet_disk_type(self) -> pulumi.Output[Optional[str]]:
|
|
1391
|
+
"""
|
|
1392
|
+
Determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage.
|
|
1393
|
+
"""
|
|
1394
|
+
return pulumi.get(self, "kubelet_disk_type")
|
|
1395
|
+
|
|
1396
|
+
@property
|
|
1397
|
+
@pulumi.getter(name="linuxOSConfig")
|
|
1398
|
+
def linux_os_config(self) -> pulumi.Output[Optional['outputs.LinuxOSConfigResponse']]:
|
|
1399
|
+
"""
|
|
1400
|
+
The OS configuration of Linux agent nodes.
|
|
1401
|
+
"""
|
|
1402
|
+
return pulumi.get(self, "linux_os_config")
|
|
1403
|
+
|
|
1404
|
+
@property
|
|
1405
|
+
@pulumi.getter(name="maxCount")
|
|
1406
|
+
def max_count(self) -> pulumi.Output[Optional[int]]:
|
|
1407
|
+
"""
|
|
1408
|
+
The maximum number of nodes for auto-scaling
|
|
1409
|
+
"""
|
|
1410
|
+
return pulumi.get(self, "max_count")
|
|
1411
|
+
|
|
1412
|
+
@property
|
|
1413
|
+
@pulumi.getter(name="maxPods")
|
|
1414
|
+
def max_pods(self) -> pulumi.Output[Optional[int]]:
|
|
1415
|
+
"""
|
|
1416
|
+
The maximum number of pods that can run on a node.
|
|
1417
|
+
"""
|
|
1418
|
+
return pulumi.get(self, "max_pods")
|
|
1419
|
+
|
|
1420
|
+
@property
|
|
1421
|
+
@pulumi.getter(name="messageOfTheDay")
|
|
1422
|
+
def message_of_the_day(self) -> pulumi.Output[Optional[str]]:
|
|
1423
|
+
"""
|
|
1424
|
+
A base64-encoded string which will be written to /etc/motd after decoding. This allows customization of the message of the day for Linux nodes. It must not be specified for Windows nodes. It must be a static string (i.e., will be printed raw and not be executed as a script).
|
|
1425
|
+
"""
|
|
1426
|
+
return pulumi.get(self, "message_of_the_day")
|
|
1427
|
+
|
|
1428
|
+
@property
|
|
1429
|
+
@pulumi.getter(name="minCount")
|
|
1430
|
+
def min_count(self) -> pulumi.Output[Optional[int]]:
|
|
1431
|
+
"""
|
|
1432
|
+
The minimum number of nodes for auto-scaling
|
|
1433
|
+
"""
|
|
1434
|
+
return pulumi.get(self, "min_count")
|
|
1435
|
+
|
|
1436
|
+
@property
|
|
1437
|
+
@pulumi.getter
|
|
1438
|
+
def mode(self) -> pulumi.Output[Optional[str]]:
|
|
1439
|
+
"""
|
|
1440
|
+
A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools
|
|
1441
|
+
"""
|
|
1442
|
+
return pulumi.get(self, "mode")
|
|
1443
|
+
|
|
1444
|
+
@property
|
|
1445
|
+
@pulumi.getter
|
|
1446
|
+
def name(self) -> pulumi.Output[str]:
|
|
1447
|
+
"""
|
|
1448
|
+
The name of the resource that is unique within a resource group. This name can be used to access the resource.
|
|
1449
|
+
"""
|
|
1450
|
+
return pulumi.get(self, "name")
|
|
1451
|
+
|
|
1452
|
+
@property
|
|
1453
|
+
@pulumi.getter(name="networkProfile")
|
|
1454
|
+
def network_profile(self) -> pulumi.Output[Optional['outputs.AgentPoolNetworkProfileResponse']]:
|
|
1455
|
+
"""
|
|
1456
|
+
Network-related settings of an agent pool.
|
|
1457
|
+
"""
|
|
1458
|
+
return pulumi.get(self, "network_profile")
|
|
1459
|
+
|
|
1460
|
+
@property
|
|
1461
|
+
@pulumi.getter(name="nodeImageVersion")
|
|
1462
|
+
def node_image_version(self) -> pulumi.Output[str]:
|
|
1463
|
+
"""
|
|
1464
|
+
The version of node image
|
|
1465
|
+
"""
|
|
1466
|
+
return pulumi.get(self, "node_image_version")
|
|
1467
|
+
|
|
1468
|
+
@property
|
|
1469
|
+
@pulumi.getter(name="nodeInitializationTaints")
|
|
1470
|
+
def node_initialization_taints(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
1471
|
+
"""
|
|
1472
|
+
These taints will not be reconciled by AKS and can be removed with a kubectl call. This field can be modified after node pool is created, but nodes will not be recreated with new taints until another operation that requires recreation (e.g. node image upgrade) happens. These taints allow for required configuration to run before the node is ready to accept workloads, for example 'key1=value1:NoSchedule' that then can be removed with `kubectl taint nodes node1 key1=value1:NoSchedule-`
|
|
1473
|
+
"""
|
|
1474
|
+
return pulumi.get(self, "node_initialization_taints")
|
|
1475
|
+
|
|
1476
|
+
@property
|
|
1477
|
+
@pulumi.getter(name="nodeLabels")
|
|
1478
|
+
def node_labels(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
1479
|
+
"""
|
|
1480
|
+
The node labels to be persisted across all nodes in agent pool.
|
|
1481
|
+
"""
|
|
1482
|
+
return pulumi.get(self, "node_labels")
|
|
1483
|
+
|
|
1484
|
+
@property
|
|
1485
|
+
@pulumi.getter(name="nodePublicIPPrefixID")
|
|
1486
|
+
def node_public_ip_prefix_id(self) -> pulumi.Output[Optional[str]]:
|
|
1487
|
+
"""
|
|
1488
|
+
This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}
|
|
1489
|
+
"""
|
|
1490
|
+
return pulumi.get(self, "node_public_ip_prefix_id")
|
|
1491
|
+
|
|
1492
|
+
@property
|
|
1493
|
+
@pulumi.getter(name="nodeTaints")
|
|
1494
|
+
def node_taints(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
1495
|
+
"""
|
|
1496
|
+
The taints added to new nodes during node pool create and scale. For example, key=value:NoSchedule.
|
|
1497
|
+
"""
|
|
1498
|
+
return pulumi.get(self, "node_taints")
|
|
1499
|
+
|
|
1500
|
+
@property
|
|
1501
|
+
@pulumi.getter(name="orchestratorVersion")
|
|
1502
|
+
def orchestrator_version(self) -> pulumi.Output[Optional[str]]:
|
|
1503
|
+
"""
|
|
1504
|
+
Both patch version <major.minor.patch> and <major.minor> are supported. When <major.minor> is specified, the latest supported patch version is chosen automatically. Updating the agent pool with the same <major.minor> once it has been created will not trigger an upgrade, even if a newer patch version is available. As a best practice, you should upgrade all node pools in an AKS cluster to the same Kubernetes version. The node pool version must have the same major version as the control plane. The node pool minor version must be within two minor versions of the control plane version. The node pool version cannot be greater than the control plane version. For more information see [upgrading a node pool](https://docs.microsoft.com/azure/aks/use-multiple-node-pools#upgrade-a-node-pool).
|
|
1505
|
+
"""
|
|
1506
|
+
return pulumi.get(self, "orchestrator_version")
|
|
1507
|
+
|
|
1508
|
+
@property
|
|
1509
|
+
@pulumi.getter(name="osDiskSizeGB")
|
|
1510
|
+
def os_disk_size_gb(self) -> pulumi.Output[Optional[int]]:
|
|
1511
|
+
"""
|
|
1512
|
+
OS Disk Size in GB to be used to specify the disk size for every machine in the master/agent pool. If you specify 0, it will apply the default osDisk size according to the vmSize specified.
|
|
1513
|
+
"""
|
|
1514
|
+
return pulumi.get(self, "os_disk_size_gb")
|
|
1515
|
+
|
|
1516
|
+
@property
|
|
1517
|
+
@pulumi.getter(name="osDiskType")
|
|
1518
|
+
def os_disk_type(self) -> pulumi.Output[Optional[str]]:
|
|
1519
|
+
"""
|
|
1520
|
+
The default is 'Ephemeral' if the VM supports it and has a cache disk larger than the requested OSDiskSizeGB. Otherwise, defaults to 'Managed'. May not be changed after creation. For more information see [Ephemeral OS](https://docs.microsoft.com/azure/aks/cluster-configuration#ephemeral-os).
|
|
1521
|
+
"""
|
|
1522
|
+
return pulumi.get(self, "os_disk_type")
|
|
1523
|
+
|
|
1524
|
+
@property
|
|
1525
|
+
@pulumi.getter(name="osSKU")
|
|
1526
|
+
def os_sku(self) -> pulumi.Output[Optional[str]]:
|
|
1527
|
+
"""
|
|
1528
|
+
Specifies the OS SKU used by the agent pool. If not specified, the default is Ubuntu if OSType=Linux or Windows2019 if OSType=Windows. And the default Windows OSSKU will be changed to Windows2022 after Windows2019 is deprecated.
|
|
1529
|
+
"""
|
|
1530
|
+
return pulumi.get(self, "os_sku")
|
|
1531
|
+
|
|
1532
|
+
@property
|
|
1533
|
+
@pulumi.getter(name="osType")
|
|
1534
|
+
def os_type(self) -> pulumi.Output[Optional[str]]:
|
|
1535
|
+
"""
|
|
1536
|
+
The operating system type. The default is Linux.
|
|
1537
|
+
"""
|
|
1538
|
+
return pulumi.get(self, "os_type")
|
|
1539
|
+
|
|
1540
|
+
@property
|
|
1541
|
+
@pulumi.getter(name="podIPAllocationMode")
|
|
1542
|
+
def pod_ip_allocation_mode(self) -> pulumi.Output[Optional[str]]:
|
|
1543
|
+
"""
|
|
1544
|
+
The IP allocation mode for pods in the agent pool. Must be used with podSubnetId. The default is 'DynamicIndividual'.
|
|
1545
|
+
"""
|
|
1546
|
+
return pulumi.get(self, "pod_ip_allocation_mode")
|
|
1547
|
+
|
|
1548
|
+
@property
|
|
1549
|
+
@pulumi.getter(name="podSubnetID")
|
|
1550
|
+
def pod_subnet_id(self) -> pulumi.Output[Optional[str]]:
|
|
1551
|
+
"""
|
|
1552
|
+
If omitted, pod IPs are statically assigned on the node subnet (see vnetSubnetID for more details). This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}
|
|
1553
|
+
"""
|
|
1554
|
+
return pulumi.get(self, "pod_subnet_id")
|
|
1555
|
+
|
|
1556
|
+
@property
|
|
1557
|
+
@pulumi.getter(name="powerState")
|
|
1558
|
+
def power_state(self) -> pulumi.Output[Optional['outputs.PowerStateResponse']]:
|
|
1559
|
+
"""
|
|
1560
|
+
When an Agent Pool is first created it is initially Running. The Agent Pool can be stopped by setting this field to Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An Agent Pool can only be stopped if it is Running and provisioning state is Succeeded
|
|
1561
|
+
"""
|
|
1562
|
+
return pulumi.get(self, "power_state")
|
|
1563
|
+
|
|
1564
|
+
@property
|
|
1565
|
+
@pulumi.getter(name="provisioningState")
|
|
1566
|
+
def provisioning_state(self) -> pulumi.Output[str]:
|
|
1567
|
+
"""
|
|
1568
|
+
The current deployment or provisioning state.
|
|
1569
|
+
"""
|
|
1570
|
+
return pulumi.get(self, "provisioning_state")
|
|
1571
|
+
|
|
1572
|
+
@property
|
|
1573
|
+
@pulumi.getter(name="proximityPlacementGroupID")
|
|
1574
|
+
def proximity_placement_group_id(self) -> pulumi.Output[Optional[str]]:
|
|
1575
|
+
"""
|
|
1576
|
+
The ID for Proximity Placement Group.
|
|
1577
|
+
"""
|
|
1578
|
+
return pulumi.get(self, "proximity_placement_group_id")
|
|
1579
|
+
|
|
1580
|
+
@property
|
|
1581
|
+
@pulumi.getter(name="scaleDownMode")
|
|
1582
|
+
def scale_down_mode(self) -> pulumi.Output[Optional[str]]:
|
|
1583
|
+
"""
|
|
1584
|
+
This also effects the cluster autoscaler behavior. If not specified, it defaults to Delete.
|
|
1585
|
+
"""
|
|
1586
|
+
return pulumi.get(self, "scale_down_mode")
|
|
1587
|
+
|
|
1588
|
+
@property
|
|
1589
|
+
@pulumi.getter(name="scaleSetEvictionPolicy")
|
|
1590
|
+
def scale_set_eviction_policy(self) -> pulumi.Output[Optional[str]]:
|
|
1591
|
+
"""
|
|
1592
|
+
This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'.
|
|
1593
|
+
"""
|
|
1594
|
+
return pulumi.get(self, "scale_set_eviction_policy")
|
|
1595
|
+
|
|
1596
|
+
@property
|
|
1597
|
+
@pulumi.getter(name="scaleSetPriority")
|
|
1598
|
+
def scale_set_priority(self) -> pulumi.Output[Optional[str]]:
|
|
1599
|
+
"""
|
|
1600
|
+
The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
|
|
1601
|
+
"""
|
|
1602
|
+
return pulumi.get(self, "scale_set_priority")
|
|
1603
|
+
|
|
1604
|
+
@property
|
|
1605
|
+
@pulumi.getter(name="securityProfile")
|
|
1606
|
+
def security_profile(self) -> pulumi.Output[Optional['outputs.AgentPoolSecurityProfileResponse']]:
|
|
1607
|
+
"""
|
|
1608
|
+
The security settings of an agent pool.
|
|
1609
|
+
"""
|
|
1610
|
+
return pulumi.get(self, "security_profile")
|
|
1611
|
+
|
|
1612
|
+
@property
|
|
1613
|
+
@pulumi.getter(name="spotMaxPrice")
|
|
1614
|
+
def spot_max_price(self) -> pulumi.Output[Optional[float]]:
|
|
1615
|
+
"""
|
|
1616
|
+
Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any on-demand price. For more details on spot pricing, see [spot VMs pricing](https://docs.microsoft.com/azure/virtual-machines/spot-vms#pricing)
|
|
1617
|
+
"""
|
|
1618
|
+
return pulumi.get(self, "spot_max_price")
|
|
1619
|
+
|
|
1620
|
+
@property
|
|
1621
|
+
@pulumi.getter
|
|
1622
|
+
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
1623
|
+
"""
|
|
1624
|
+
The tags to be persisted on the agent pool virtual machine scale set.
|
|
1625
|
+
"""
|
|
1626
|
+
return pulumi.get(self, "tags")
|
|
1627
|
+
|
|
1628
|
+
@property
|
|
1629
|
+
@pulumi.getter
|
|
1630
|
+
def type(self) -> pulumi.Output[str]:
|
|
1631
|
+
"""
|
|
1632
|
+
Resource type
|
|
1633
|
+
"""
|
|
1634
|
+
return pulumi.get(self, "type")
|
|
1635
|
+
|
|
1636
|
+
@property
|
|
1637
|
+
@pulumi.getter(name="upgradeSettings")
|
|
1638
|
+
def upgrade_settings(self) -> pulumi.Output[Optional['outputs.AgentPoolUpgradeSettingsResponse']]:
|
|
1639
|
+
"""
|
|
1640
|
+
Settings for upgrading the agentpool
|
|
1641
|
+
"""
|
|
1642
|
+
return pulumi.get(self, "upgrade_settings")
|
|
1643
|
+
|
|
1644
|
+
@property
|
|
1645
|
+
@pulumi.getter(name="virtualMachineNodesStatus")
|
|
1646
|
+
def virtual_machine_nodes_status(self) -> pulumi.Output[Optional[Sequence['outputs.VirtualMachineNodesResponse']]]:
|
|
1647
|
+
"""
|
|
1648
|
+
The status of nodes in a VirtualMachines agent pool.
|
|
1649
|
+
"""
|
|
1650
|
+
return pulumi.get(self, "virtual_machine_nodes_status")
|
|
1651
|
+
|
|
1652
|
+
@property
|
|
1653
|
+
@pulumi.getter(name="virtualMachinesProfile")
|
|
1654
|
+
def virtual_machines_profile(self) -> pulumi.Output[Optional['outputs.VirtualMachinesProfileResponse']]:
|
|
1655
|
+
"""
|
|
1656
|
+
Specifications on VirtualMachines agent pool.
|
|
1657
|
+
"""
|
|
1658
|
+
return pulumi.get(self, "virtual_machines_profile")
|
|
1659
|
+
|
|
1660
|
+
@property
|
|
1661
|
+
@pulumi.getter(name="vmSize")
|
|
1662
|
+
def vm_size(self) -> pulumi.Output[Optional[str]]:
|
|
1663
|
+
"""
|
|
1664
|
+
VM size availability varies by region. If a node contains insufficient compute resources (memory, cpu, etc) pods might fail to run correctly. For more details on restricted VM sizes, see: https://docs.microsoft.com/azure/aks/quotas-skus-regions
|
|
1665
|
+
"""
|
|
1666
|
+
return pulumi.get(self, "vm_size")
|
|
1667
|
+
|
|
1668
|
+
@property
|
|
1669
|
+
@pulumi.getter(name="vnetSubnetID")
|
|
1670
|
+
def vnet_subnet_id(self) -> pulumi.Output[Optional[str]]:
|
|
1671
|
+
"""
|
|
1672
|
+
If this is not specified, a VNET and subnet will be generated and used. If no podSubnetID is specified, this applies to nodes and pods, otherwise it applies to just nodes. This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}
|
|
1673
|
+
"""
|
|
1674
|
+
return pulumi.get(self, "vnet_subnet_id")
|
|
1675
|
+
|
|
1676
|
+
@property
|
|
1677
|
+
@pulumi.getter(name="windowsProfile")
|
|
1678
|
+
def windows_profile(self) -> pulumi.Output[Optional['outputs.AgentPoolWindowsProfileResponse']]:
|
|
1679
|
+
"""
|
|
1680
|
+
The Windows agent pool's specific profile.
|
|
1681
|
+
"""
|
|
1682
|
+
return pulumi.get(self, "windows_profile")
|
|
1683
|
+
|
|
1684
|
+
@property
|
|
1685
|
+
@pulumi.getter(name="workloadRuntime")
|
|
1686
|
+
def workload_runtime(self) -> pulumi.Output[Optional[str]]:
|
|
1687
|
+
"""
|
|
1688
|
+
Determines the type of workload a node can run.
|
|
1689
|
+
"""
|
|
1690
|
+
return pulumi.get(self, "workload_runtime")
|
|
1691
|
+
|