pulumi-azure-native 2.60.1__py3-none-any.whl → 2.61.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 +273 -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/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/pulumi-plugin.json +1 -1
- 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-2.60.1.dist-info → pulumi_azure_native-2.61.0.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.60.1.dist-info → pulumi_azure_native-2.61.0.dist-info}/RECORD +2078 -1595
- {pulumi_azure_native-2.60.1.dist-info → pulumi_azure_native-2.61.0.dist-info}/WHEEL +1 -1
- {pulumi_azure_native-2.60.1.dist-info → pulumi_azure_native-2.61.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,817 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetAgentPoolResult',
|
|
20
|
+
'AwaitableGetAgentPoolResult',
|
|
21
|
+
'get_agent_pool',
|
|
22
|
+
'get_agent_pool_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetAgentPoolResult:
|
|
27
|
+
"""
|
|
28
|
+
Agent Pool.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, artifact_streaming_profile=None, availability_zones=None, capacity_reservation_group_id=None, count=None, creation_data=None, current_orchestrator_version=None, e_tag=None, enable_auto_scaling=None, enable_custom_ca_trust=None, enable_encryption_at_host=None, enable_fips=None, enable_node_public_ip=None, enable_ultra_ssd=None, gateway_profile=None, gpu_instance_profile=None, gpu_profile=None, host_group_id=None, id=None, kubelet_config=None, kubelet_disk_type=None, linux_os_config=None, max_count=None, max_pods=None, message_of_the_day=None, min_count=None, mode=None, name=None, network_profile=None, node_image_version=None, node_initialization_taints=None, node_labels=None, node_public_ip_prefix_id=None, node_taints=None, orchestrator_version=None, os_disk_size_gb=None, os_disk_type=None, os_sku=None, os_type=None, pod_ip_allocation_mode=None, pod_subnet_id=None, power_state=None, provisioning_state=None, proximity_placement_group_id=None, scale_down_mode=None, scale_set_eviction_policy=None, scale_set_priority=None, security_profile=None, spot_max_price=None, tags=None, type=None, upgrade_settings=None, virtual_machine_nodes_status=None, virtual_machines_profile=None, vm_size=None, vnet_subnet_id=None, windows_profile=None, workload_runtime=None):
|
|
31
|
+
if artifact_streaming_profile and not isinstance(artifact_streaming_profile, dict):
|
|
32
|
+
raise TypeError("Expected argument 'artifact_streaming_profile' to be a dict")
|
|
33
|
+
pulumi.set(__self__, "artifact_streaming_profile", artifact_streaming_profile)
|
|
34
|
+
if availability_zones and not isinstance(availability_zones, list):
|
|
35
|
+
raise TypeError("Expected argument 'availability_zones' to be a list")
|
|
36
|
+
pulumi.set(__self__, "availability_zones", availability_zones)
|
|
37
|
+
if capacity_reservation_group_id and not isinstance(capacity_reservation_group_id, str):
|
|
38
|
+
raise TypeError("Expected argument 'capacity_reservation_group_id' to be a str")
|
|
39
|
+
pulumi.set(__self__, "capacity_reservation_group_id", capacity_reservation_group_id)
|
|
40
|
+
if count and not isinstance(count, int):
|
|
41
|
+
raise TypeError("Expected argument 'count' to be a int")
|
|
42
|
+
pulumi.set(__self__, "count", count)
|
|
43
|
+
if creation_data and not isinstance(creation_data, dict):
|
|
44
|
+
raise TypeError("Expected argument 'creation_data' to be a dict")
|
|
45
|
+
pulumi.set(__self__, "creation_data", creation_data)
|
|
46
|
+
if current_orchestrator_version and not isinstance(current_orchestrator_version, str):
|
|
47
|
+
raise TypeError("Expected argument 'current_orchestrator_version' to be a str")
|
|
48
|
+
pulumi.set(__self__, "current_orchestrator_version", current_orchestrator_version)
|
|
49
|
+
if e_tag and not isinstance(e_tag, str):
|
|
50
|
+
raise TypeError("Expected argument 'e_tag' to be a str")
|
|
51
|
+
pulumi.set(__self__, "e_tag", e_tag)
|
|
52
|
+
if enable_auto_scaling and not isinstance(enable_auto_scaling, bool):
|
|
53
|
+
raise TypeError("Expected argument 'enable_auto_scaling' to be a bool")
|
|
54
|
+
pulumi.set(__self__, "enable_auto_scaling", enable_auto_scaling)
|
|
55
|
+
if enable_custom_ca_trust and not isinstance(enable_custom_ca_trust, bool):
|
|
56
|
+
raise TypeError("Expected argument 'enable_custom_ca_trust' to be a bool")
|
|
57
|
+
pulumi.set(__self__, "enable_custom_ca_trust", enable_custom_ca_trust)
|
|
58
|
+
if enable_encryption_at_host and not isinstance(enable_encryption_at_host, bool):
|
|
59
|
+
raise TypeError("Expected argument 'enable_encryption_at_host' to be a bool")
|
|
60
|
+
pulumi.set(__self__, "enable_encryption_at_host", enable_encryption_at_host)
|
|
61
|
+
if enable_fips and not isinstance(enable_fips, bool):
|
|
62
|
+
raise TypeError("Expected argument 'enable_fips' to be a bool")
|
|
63
|
+
pulumi.set(__self__, "enable_fips", enable_fips)
|
|
64
|
+
if enable_node_public_ip and not isinstance(enable_node_public_ip, bool):
|
|
65
|
+
raise TypeError("Expected argument 'enable_node_public_ip' to be a bool")
|
|
66
|
+
pulumi.set(__self__, "enable_node_public_ip", enable_node_public_ip)
|
|
67
|
+
if enable_ultra_ssd and not isinstance(enable_ultra_ssd, bool):
|
|
68
|
+
raise TypeError("Expected argument 'enable_ultra_ssd' to be a bool")
|
|
69
|
+
pulumi.set(__self__, "enable_ultra_ssd", enable_ultra_ssd)
|
|
70
|
+
if gateway_profile and not isinstance(gateway_profile, dict):
|
|
71
|
+
raise TypeError("Expected argument 'gateway_profile' to be a dict")
|
|
72
|
+
pulumi.set(__self__, "gateway_profile", gateway_profile)
|
|
73
|
+
if gpu_instance_profile and not isinstance(gpu_instance_profile, str):
|
|
74
|
+
raise TypeError("Expected argument 'gpu_instance_profile' to be a str")
|
|
75
|
+
pulumi.set(__self__, "gpu_instance_profile", gpu_instance_profile)
|
|
76
|
+
if gpu_profile and not isinstance(gpu_profile, dict):
|
|
77
|
+
raise TypeError("Expected argument 'gpu_profile' to be a dict")
|
|
78
|
+
pulumi.set(__self__, "gpu_profile", gpu_profile)
|
|
79
|
+
if host_group_id and not isinstance(host_group_id, str):
|
|
80
|
+
raise TypeError("Expected argument 'host_group_id' to be a str")
|
|
81
|
+
pulumi.set(__self__, "host_group_id", host_group_id)
|
|
82
|
+
if id and not isinstance(id, str):
|
|
83
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
84
|
+
pulumi.set(__self__, "id", id)
|
|
85
|
+
if kubelet_config and not isinstance(kubelet_config, dict):
|
|
86
|
+
raise TypeError("Expected argument 'kubelet_config' to be a dict")
|
|
87
|
+
pulumi.set(__self__, "kubelet_config", kubelet_config)
|
|
88
|
+
if kubelet_disk_type and not isinstance(kubelet_disk_type, str):
|
|
89
|
+
raise TypeError("Expected argument 'kubelet_disk_type' to be a str")
|
|
90
|
+
pulumi.set(__self__, "kubelet_disk_type", kubelet_disk_type)
|
|
91
|
+
if linux_os_config and not isinstance(linux_os_config, dict):
|
|
92
|
+
raise TypeError("Expected argument 'linux_os_config' to be a dict")
|
|
93
|
+
pulumi.set(__self__, "linux_os_config", linux_os_config)
|
|
94
|
+
if max_count and not isinstance(max_count, int):
|
|
95
|
+
raise TypeError("Expected argument 'max_count' to be a int")
|
|
96
|
+
pulumi.set(__self__, "max_count", max_count)
|
|
97
|
+
if max_pods and not isinstance(max_pods, int):
|
|
98
|
+
raise TypeError("Expected argument 'max_pods' to be a int")
|
|
99
|
+
pulumi.set(__self__, "max_pods", max_pods)
|
|
100
|
+
if message_of_the_day and not isinstance(message_of_the_day, str):
|
|
101
|
+
raise TypeError("Expected argument 'message_of_the_day' to be a str")
|
|
102
|
+
pulumi.set(__self__, "message_of_the_day", message_of_the_day)
|
|
103
|
+
if min_count and not isinstance(min_count, int):
|
|
104
|
+
raise TypeError("Expected argument 'min_count' to be a int")
|
|
105
|
+
pulumi.set(__self__, "min_count", min_count)
|
|
106
|
+
if mode and not isinstance(mode, str):
|
|
107
|
+
raise TypeError("Expected argument 'mode' to be a str")
|
|
108
|
+
pulumi.set(__self__, "mode", mode)
|
|
109
|
+
if name and not isinstance(name, str):
|
|
110
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
111
|
+
pulumi.set(__self__, "name", name)
|
|
112
|
+
if network_profile and not isinstance(network_profile, dict):
|
|
113
|
+
raise TypeError("Expected argument 'network_profile' to be a dict")
|
|
114
|
+
pulumi.set(__self__, "network_profile", network_profile)
|
|
115
|
+
if node_image_version and not isinstance(node_image_version, str):
|
|
116
|
+
raise TypeError("Expected argument 'node_image_version' to be a str")
|
|
117
|
+
pulumi.set(__self__, "node_image_version", node_image_version)
|
|
118
|
+
if node_initialization_taints and not isinstance(node_initialization_taints, list):
|
|
119
|
+
raise TypeError("Expected argument 'node_initialization_taints' to be a list")
|
|
120
|
+
pulumi.set(__self__, "node_initialization_taints", node_initialization_taints)
|
|
121
|
+
if node_labels and not isinstance(node_labels, dict):
|
|
122
|
+
raise TypeError("Expected argument 'node_labels' to be a dict")
|
|
123
|
+
pulumi.set(__self__, "node_labels", node_labels)
|
|
124
|
+
if node_public_ip_prefix_id and not isinstance(node_public_ip_prefix_id, str):
|
|
125
|
+
raise TypeError("Expected argument 'node_public_ip_prefix_id' to be a str")
|
|
126
|
+
pulumi.set(__self__, "node_public_ip_prefix_id", node_public_ip_prefix_id)
|
|
127
|
+
if node_taints and not isinstance(node_taints, list):
|
|
128
|
+
raise TypeError("Expected argument 'node_taints' to be a list")
|
|
129
|
+
pulumi.set(__self__, "node_taints", node_taints)
|
|
130
|
+
if orchestrator_version and not isinstance(orchestrator_version, str):
|
|
131
|
+
raise TypeError("Expected argument 'orchestrator_version' to be a str")
|
|
132
|
+
pulumi.set(__self__, "orchestrator_version", orchestrator_version)
|
|
133
|
+
if os_disk_size_gb and not isinstance(os_disk_size_gb, int):
|
|
134
|
+
raise TypeError("Expected argument 'os_disk_size_gb' to be a int")
|
|
135
|
+
pulumi.set(__self__, "os_disk_size_gb", os_disk_size_gb)
|
|
136
|
+
if os_disk_type and not isinstance(os_disk_type, str):
|
|
137
|
+
raise TypeError("Expected argument 'os_disk_type' to be a str")
|
|
138
|
+
pulumi.set(__self__, "os_disk_type", os_disk_type)
|
|
139
|
+
if os_sku and not isinstance(os_sku, str):
|
|
140
|
+
raise TypeError("Expected argument 'os_sku' to be a str")
|
|
141
|
+
pulumi.set(__self__, "os_sku", os_sku)
|
|
142
|
+
if os_type and not isinstance(os_type, str):
|
|
143
|
+
raise TypeError("Expected argument 'os_type' to be a str")
|
|
144
|
+
pulumi.set(__self__, "os_type", os_type)
|
|
145
|
+
if pod_ip_allocation_mode and not isinstance(pod_ip_allocation_mode, str):
|
|
146
|
+
raise TypeError("Expected argument 'pod_ip_allocation_mode' to be a str")
|
|
147
|
+
pulumi.set(__self__, "pod_ip_allocation_mode", pod_ip_allocation_mode)
|
|
148
|
+
if pod_subnet_id and not isinstance(pod_subnet_id, str):
|
|
149
|
+
raise TypeError("Expected argument 'pod_subnet_id' to be a str")
|
|
150
|
+
pulumi.set(__self__, "pod_subnet_id", pod_subnet_id)
|
|
151
|
+
if power_state and not isinstance(power_state, dict):
|
|
152
|
+
raise TypeError("Expected argument 'power_state' to be a dict")
|
|
153
|
+
pulumi.set(__self__, "power_state", power_state)
|
|
154
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
155
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
156
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
157
|
+
if proximity_placement_group_id and not isinstance(proximity_placement_group_id, str):
|
|
158
|
+
raise TypeError("Expected argument 'proximity_placement_group_id' to be a str")
|
|
159
|
+
pulumi.set(__self__, "proximity_placement_group_id", proximity_placement_group_id)
|
|
160
|
+
if scale_down_mode and not isinstance(scale_down_mode, str):
|
|
161
|
+
raise TypeError("Expected argument 'scale_down_mode' to be a str")
|
|
162
|
+
pulumi.set(__self__, "scale_down_mode", scale_down_mode)
|
|
163
|
+
if scale_set_eviction_policy and not isinstance(scale_set_eviction_policy, str):
|
|
164
|
+
raise TypeError("Expected argument 'scale_set_eviction_policy' to be a str")
|
|
165
|
+
pulumi.set(__self__, "scale_set_eviction_policy", scale_set_eviction_policy)
|
|
166
|
+
if scale_set_priority and not isinstance(scale_set_priority, str):
|
|
167
|
+
raise TypeError("Expected argument 'scale_set_priority' to be a str")
|
|
168
|
+
pulumi.set(__self__, "scale_set_priority", scale_set_priority)
|
|
169
|
+
if security_profile and not isinstance(security_profile, dict):
|
|
170
|
+
raise TypeError("Expected argument 'security_profile' to be a dict")
|
|
171
|
+
pulumi.set(__self__, "security_profile", security_profile)
|
|
172
|
+
if spot_max_price and not isinstance(spot_max_price, float):
|
|
173
|
+
raise TypeError("Expected argument 'spot_max_price' to be a float")
|
|
174
|
+
pulumi.set(__self__, "spot_max_price", spot_max_price)
|
|
175
|
+
if tags and not isinstance(tags, dict):
|
|
176
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
177
|
+
pulumi.set(__self__, "tags", tags)
|
|
178
|
+
if type and not isinstance(type, str):
|
|
179
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
180
|
+
pulumi.set(__self__, "type", type)
|
|
181
|
+
if upgrade_settings and not isinstance(upgrade_settings, dict):
|
|
182
|
+
raise TypeError("Expected argument 'upgrade_settings' to be a dict")
|
|
183
|
+
pulumi.set(__self__, "upgrade_settings", upgrade_settings)
|
|
184
|
+
if virtual_machine_nodes_status and not isinstance(virtual_machine_nodes_status, list):
|
|
185
|
+
raise TypeError("Expected argument 'virtual_machine_nodes_status' to be a list")
|
|
186
|
+
pulumi.set(__self__, "virtual_machine_nodes_status", virtual_machine_nodes_status)
|
|
187
|
+
if virtual_machines_profile and not isinstance(virtual_machines_profile, dict):
|
|
188
|
+
raise TypeError("Expected argument 'virtual_machines_profile' to be a dict")
|
|
189
|
+
pulumi.set(__self__, "virtual_machines_profile", virtual_machines_profile)
|
|
190
|
+
if vm_size and not isinstance(vm_size, str):
|
|
191
|
+
raise TypeError("Expected argument 'vm_size' to be a str")
|
|
192
|
+
pulumi.set(__self__, "vm_size", vm_size)
|
|
193
|
+
if vnet_subnet_id and not isinstance(vnet_subnet_id, str):
|
|
194
|
+
raise TypeError("Expected argument 'vnet_subnet_id' to be a str")
|
|
195
|
+
pulumi.set(__self__, "vnet_subnet_id", vnet_subnet_id)
|
|
196
|
+
if windows_profile and not isinstance(windows_profile, dict):
|
|
197
|
+
raise TypeError("Expected argument 'windows_profile' to be a dict")
|
|
198
|
+
pulumi.set(__self__, "windows_profile", windows_profile)
|
|
199
|
+
if workload_runtime and not isinstance(workload_runtime, str):
|
|
200
|
+
raise TypeError("Expected argument 'workload_runtime' to be a str")
|
|
201
|
+
pulumi.set(__self__, "workload_runtime", workload_runtime)
|
|
202
|
+
|
|
203
|
+
@property
|
|
204
|
+
@pulumi.getter(name="artifactStreamingProfile")
|
|
205
|
+
def artifact_streaming_profile(self) -> Optional['outputs.AgentPoolArtifactStreamingProfileResponse']:
|
|
206
|
+
"""
|
|
207
|
+
Configuration for using artifact streaming on AKS.
|
|
208
|
+
"""
|
|
209
|
+
return pulumi.get(self, "artifact_streaming_profile")
|
|
210
|
+
|
|
211
|
+
@property
|
|
212
|
+
@pulumi.getter(name="availabilityZones")
|
|
213
|
+
def availability_zones(self) -> Optional[Sequence[str]]:
|
|
214
|
+
"""
|
|
215
|
+
The list of Availability zones to use for nodes. This can only be specified if the AgentPoolType property is 'VirtualMachineScaleSets'.
|
|
216
|
+
"""
|
|
217
|
+
return pulumi.get(self, "availability_zones")
|
|
218
|
+
|
|
219
|
+
@property
|
|
220
|
+
@pulumi.getter(name="capacityReservationGroupID")
|
|
221
|
+
def capacity_reservation_group_id(self) -> Optional[str]:
|
|
222
|
+
"""
|
|
223
|
+
AKS will associate the specified agent pool with the Capacity Reservation Group.
|
|
224
|
+
"""
|
|
225
|
+
return pulumi.get(self, "capacity_reservation_group_id")
|
|
226
|
+
|
|
227
|
+
@property
|
|
228
|
+
@pulumi.getter
|
|
229
|
+
def count(self) -> Optional[int]:
|
|
230
|
+
"""
|
|
231
|
+
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.
|
|
232
|
+
"""
|
|
233
|
+
return pulumi.get(self, "count")
|
|
234
|
+
|
|
235
|
+
@property
|
|
236
|
+
@pulumi.getter(name="creationData")
|
|
237
|
+
def creation_data(self) -> Optional['outputs.CreationDataResponse']:
|
|
238
|
+
"""
|
|
239
|
+
CreationData to be used to specify the source Snapshot ID if the node pool will be created/upgraded using a snapshot.
|
|
240
|
+
"""
|
|
241
|
+
return pulumi.get(self, "creation_data")
|
|
242
|
+
|
|
243
|
+
@property
|
|
244
|
+
@pulumi.getter(name="currentOrchestratorVersion")
|
|
245
|
+
def current_orchestrator_version(self) -> str:
|
|
246
|
+
"""
|
|
247
|
+
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.
|
|
248
|
+
"""
|
|
249
|
+
return pulumi.get(self, "current_orchestrator_version")
|
|
250
|
+
|
|
251
|
+
@property
|
|
252
|
+
@pulumi.getter(name="eTag")
|
|
253
|
+
def e_tag(self) -> str:
|
|
254
|
+
"""
|
|
255
|
+
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.
|
|
256
|
+
"""
|
|
257
|
+
return pulumi.get(self, "e_tag")
|
|
258
|
+
|
|
259
|
+
@property
|
|
260
|
+
@pulumi.getter(name="enableAutoScaling")
|
|
261
|
+
def enable_auto_scaling(self) -> Optional[bool]:
|
|
262
|
+
"""
|
|
263
|
+
Whether to enable auto-scaler
|
|
264
|
+
"""
|
|
265
|
+
return pulumi.get(self, "enable_auto_scaling")
|
|
266
|
+
|
|
267
|
+
@property
|
|
268
|
+
@pulumi.getter(name="enableCustomCATrust")
|
|
269
|
+
def enable_custom_ca_trust(self) -> Optional[bool]:
|
|
270
|
+
"""
|
|
271
|
+
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.
|
|
272
|
+
"""
|
|
273
|
+
return pulumi.get(self, "enable_custom_ca_trust")
|
|
274
|
+
|
|
275
|
+
@property
|
|
276
|
+
@pulumi.getter(name="enableEncryptionAtHost")
|
|
277
|
+
def enable_encryption_at_host(self) -> Optional[bool]:
|
|
278
|
+
"""
|
|
279
|
+
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
|
|
280
|
+
"""
|
|
281
|
+
return pulumi.get(self, "enable_encryption_at_host")
|
|
282
|
+
|
|
283
|
+
@property
|
|
284
|
+
@pulumi.getter(name="enableFIPS")
|
|
285
|
+
def enable_fips(self) -> Optional[bool]:
|
|
286
|
+
"""
|
|
287
|
+
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.
|
|
288
|
+
"""
|
|
289
|
+
return pulumi.get(self, "enable_fips")
|
|
290
|
+
|
|
291
|
+
@property
|
|
292
|
+
@pulumi.getter(name="enableNodePublicIP")
|
|
293
|
+
def enable_node_public_ip(self) -> Optional[bool]:
|
|
294
|
+
"""
|
|
295
|
+
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.
|
|
296
|
+
"""
|
|
297
|
+
return pulumi.get(self, "enable_node_public_ip")
|
|
298
|
+
|
|
299
|
+
@property
|
|
300
|
+
@pulumi.getter(name="enableUltraSSD")
|
|
301
|
+
def enable_ultra_ssd(self) -> Optional[bool]:
|
|
302
|
+
"""
|
|
303
|
+
Whether to enable UltraSSD
|
|
304
|
+
"""
|
|
305
|
+
return pulumi.get(self, "enable_ultra_ssd")
|
|
306
|
+
|
|
307
|
+
@property
|
|
308
|
+
@pulumi.getter(name="gatewayProfile")
|
|
309
|
+
def gateway_profile(self) -> Optional['outputs.AgentPoolGatewayProfileResponse']:
|
|
310
|
+
"""
|
|
311
|
+
Profile specific to a managed agent pool in Gateway mode. This field cannot be set if agent pool mode is not Gateway.
|
|
312
|
+
"""
|
|
313
|
+
return pulumi.get(self, "gateway_profile")
|
|
314
|
+
|
|
315
|
+
@property
|
|
316
|
+
@pulumi.getter(name="gpuInstanceProfile")
|
|
317
|
+
def gpu_instance_profile(self) -> Optional[str]:
|
|
318
|
+
"""
|
|
319
|
+
GPUInstanceProfile to be used to specify GPU MIG instance profile for supported GPU VM SKU.
|
|
320
|
+
"""
|
|
321
|
+
return pulumi.get(self, "gpu_instance_profile")
|
|
322
|
+
|
|
323
|
+
@property
|
|
324
|
+
@pulumi.getter(name="gpuProfile")
|
|
325
|
+
def gpu_profile(self) -> Optional['outputs.AgentPoolGPUProfileResponse']:
|
|
326
|
+
"""
|
|
327
|
+
The GPU settings of an agent pool.
|
|
328
|
+
"""
|
|
329
|
+
return pulumi.get(self, "gpu_profile")
|
|
330
|
+
|
|
331
|
+
@property
|
|
332
|
+
@pulumi.getter(name="hostGroupID")
|
|
333
|
+
def host_group_id(self) -> Optional[str]:
|
|
334
|
+
"""
|
|
335
|
+
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).
|
|
336
|
+
"""
|
|
337
|
+
return pulumi.get(self, "host_group_id")
|
|
338
|
+
|
|
339
|
+
@property
|
|
340
|
+
@pulumi.getter
|
|
341
|
+
def id(self) -> str:
|
|
342
|
+
"""
|
|
343
|
+
Resource ID.
|
|
344
|
+
"""
|
|
345
|
+
return pulumi.get(self, "id")
|
|
346
|
+
|
|
347
|
+
@property
|
|
348
|
+
@pulumi.getter(name="kubeletConfig")
|
|
349
|
+
def kubelet_config(self) -> Optional['outputs.KubeletConfigResponse']:
|
|
350
|
+
"""
|
|
351
|
+
The Kubelet configuration on the agent pool nodes.
|
|
352
|
+
"""
|
|
353
|
+
return pulumi.get(self, "kubelet_config")
|
|
354
|
+
|
|
355
|
+
@property
|
|
356
|
+
@pulumi.getter(name="kubeletDiskType")
|
|
357
|
+
def kubelet_disk_type(self) -> Optional[str]:
|
|
358
|
+
"""
|
|
359
|
+
Determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage.
|
|
360
|
+
"""
|
|
361
|
+
return pulumi.get(self, "kubelet_disk_type")
|
|
362
|
+
|
|
363
|
+
@property
|
|
364
|
+
@pulumi.getter(name="linuxOSConfig")
|
|
365
|
+
def linux_os_config(self) -> Optional['outputs.LinuxOSConfigResponse']:
|
|
366
|
+
"""
|
|
367
|
+
The OS configuration of Linux agent nodes.
|
|
368
|
+
"""
|
|
369
|
+
return pulumi.get(self, "linux_os_config")
|
|
370
|
+
|
|
371
|
+
@property
|
|
372
|
+
@pulumi.getter(name="maxCount")
|
|
373
|
+
def max_count(self) -> Optional[int]:
|
|
374
|
+
"""
|
|
375
|
+
The maximum number of nodes for auto-scaling
|
|
376
|
+
"""
|
|
377
|
+
return pulumi.get(self, "max_count")
|
|
378
|
+
|
|
379
|
+
@property
|
|
380
|
+
@pulumi.getter(name="maxPods")
|
|
381
|
+
def max_pods(self) -> Optional[int]:
|
|
382
|
+
"""
|
|
383
|
+
The maximum number of pods that can run on a node.
|
|
384
|
+
"""
|
|
385
|
+
return pulumi.get(self, "max_pods")
|
|
386
|
+
|
|
387
|
+
@property
|
|
388
|
+
@pulumi.getter(name="messageOfTheDay")
|
|
389
|
+
def message_of_the_day(self) -> Optional[str]:
|
|
390
|
+
"""
|
|
391
|
+
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).
|
|
392
|
+
"""
|
|
393
|
+
return pulumi.get(self, "message_of_the_day")
|
|
394
|
+
|
|
395
|
+
@property
|
|
396
|
+
@pulumi.getter(name="minCount")
|
|
397
|
+
def min_count(self) -> Optional[int]:
|
|
398
|
+
"""
|
|
399
|
+
The minimum number of nodes for auto-scaling
|
|
400
|
+
"""
|
|
401
|
+
return pulumi.get(self, "min_count")
|
|
402
|
+
|
|
403
|
+
@property
|
|
404
|
+
@pulumi.getter
|
|
405
|
+
def mode(self) -> Optional[str]:
|
|
406
|
+
"""
|
|
407
|
+
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
|
|
408
|
+
"""
|
|
409
|
+
return pulumi.get(self, "mode")
|
|
410
|
+
|
|
411
|
+
@property
|
|
412
|
+
@pulumi.getter
|
|
413
|
+
def name(self) -> str:
|
|
414
|
+
"""
|
|
415
|
+
The name of the resource that is unique within a resource group. This name can be used to access the resource.
|
|
416
|
+
"""
|
|
417
|
+
return pulumi.get(self, "name")
|
|
418
|
+
|
|
419
|
+
@property
|
|
420
|
+
@pulumi.getter(name="networkProfile")
|
|
421
|
+
def network_profile(self) -> Optional['outputs.AgentPoolNetworkProfileResponse']:
|
|
422
|
+
"""
|
|
423
|
+
Network-related settings of an agent pool.
|
|
424
|
+
"""
|
|
425
|
+
return pulumi.get(self, "network_profile")
|
|
426
|
+
|
|
427
|
+
@property
|
|
428
|
+
@pulumi.getter(name="nodeImageVersion")
|
|
429
|
+
def node_image_version(self) -> str:
|
|
430
|
+
"""
|
|
431
|
+
The version of node image
|
|
432
|
+
"""
|
|
433
|
+
return pulumi.get(self, "node_image_version")
|
|
434
|
+
|
|
435
|
+
@property
|
|
436
|
+
@pulumi.getter(name="nodeInitializationTaints")
|
|
437
|
+
def node_initialization_taints(self) -> Optional[Sequence[str]]:
|
|
438
|
+
"""
|
|
439
|
+
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-`
|
|
440
|
+
"""
|
|
441
|
+
return pulumi.get(self, "node_initialization_taints")
|
|
442
|
+
|
|
443
|
+
@property
|
|
444
|
+
@pulumi.getter(name="nodeLabels")
|
|
445
|
+
def node_labels(self) -> Optional[Mapping[str, str]]:
|
|
446
|
+
"""
|
|
447
|
+
The node labels to be persisted across all nodes in agent pool.
|
|
448
|
+
"""
|
|
449
|
+
return pulumi.get(self, "node_labels")
|
|
450
|
+
|
|
451
|
+
@property
|
|
452
|
+
@pulumi.getter(name="nodePublicIPPrefixID")
|
|
453
|
+
def node_public_ip_prefix_id(self) -> Optional[str]:
|
|
454
|
+
"""
|
|
455
|
+
This is of the form: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIPPrefixName}
|
|
456
|
+
"""
|
|
457
|
+
return pulumi.get(self, "node_public_ip_prefix_id")
|
|
458
|
+
|
|
459
|
+
@property
|
|
460
|
+
@pulumi.getter(name="nodeTaints")
|
|
461
|
+
def node_taints(self) -> Optional[Sequence[str]]:
|
|
462
|
+
"""
|
|
463
|
+
The taints added to new nodes during node pool create and scale. For example, key=value:NoSchedule.
|
|
464
|
+
"""
|
|
465
|
+
return pulumi.get(self, "node_taints")
|
|
466
|
+
|
|
467
|
+
@property
|
|
468
|
+
@pulumi.getter(name="orchestratorVersion")
|
|
469
|
+
def orchestrator_version(self) -> Optional[str]:
|
|
470
|
+
"""
|
|
471
|
+
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).
|
|
472
|
+
"""
|
|
473
|
+
return pulumi.get(self, "orchestrator_version")
|
|
474
|
+
|
|
475
|
+
@property
|
|
476
|
+
@pulumi.getter(name="osDiskSizeGB")
|
|
477
|
+
def os_disk_size_gb(self) -> Optional[int]:
|
|
478
|
+
"""
|
|
479
|
+
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.
|
|
480
|
+
"""
|
|
481
|
+
return pulumi.get(self, "os_disk_size_gb")
|
|
482
|
+
|
|
483
|
+
@property
|
|
484
|
+
@pulumi.getter(name="osDiskType")
|
|
485
|
+
def os_disk_type(self) -> Optional[str]:
|
|
486
|
+
"""
|
|
487
|
+
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).
|
|
488
|
+
"""
|
|
489
|
+
return pulumi.get(self, "os_disk_type")
|
|
490
|
+
|
|
491
|
+
@property
|
|
492
|
+
@pulumi.getter(name="osSKU")
|
|
493
|
+
def os_sku(self) -> Optional[str]:
|
|
494
|
+
"""
|
|
495
|
+
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.
|
|
496
|
+
"""
|
|
497
|
+
return pulumi.get(self, "os_sku")
|
|
498
|
+
|
|
499
|
+
@property
|
|
500
|
+
@pulumi.getter(name="osType")
|
|
501
|
+
def os_type(self) -> Optional[str]:
|
|
502
|
+
"""
|
|
503
|
+
The operating system type. The default is Linux.
|
|
504
|
+
"""
|
|
505
|
+
return pulumi.get(self, "os_type")
|
|
506
|
+
|
|
507
|
+
@property
|
|
508
|
+
@pulumi.getter(name="podIPAllocationMode")
|
|
509
|
+
def pod_ip_allocation_mode(self) -> Optional[str]:
|
|
510
|
+
"""
|
|
511
|
+
The IP allocation mode for pods in the agent pool. Must be used with podSubnetId. The default is 'DynamicIndividual'.
|
|
512
|
+
"""
|
|
513
|
+
return pulumi.get(self, "pod_ip_allocation_mode")
|
|
514
|
+
|
|
515
|
+
@property
|
|
516
|
+
@pulumi.getter(name="podSubnetID")
|
|
517
|
+
def pod_subnet_id(self) -> Optional[str]:
|
|
518
|
+
"""
|
|
519
|
+
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}
|
|
520
|
+
"""
|
|
521
|
+
return pulumi.get(self, "pod_subnet_id")
|
|
522
|
+
|
|
523
|
+
@property
|
|
524
|
+
@pulumi.getter(name="powerState")
|
|
525
|
+
def power_state(self) -> Optional['outputs.PowerStateResponse']:
|
|
526
|
+
"""
|
|
527
|
+
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
|
|
528
|
+
"""
|
|
529
|
+
return pulumi.get(self, "power_state")
|
|
530
|
+
|
|
531
|
+
@property
|
|
532
|
+
@pulumi.getter(name="provisioningState")
|
|
533
|
+
def provisioning_state(self) -> str:
|
|
534
|
+
"""
|
|
535
|
+
The current deployment or provisioning state.
|
|
536
|
+
"""
|
|
537
|
+
return pulumi.get(self, "provisioning_state")
|
|
538
|
+
|
|
539
|
+
@property
|
|
540
|
+
@pulumi.getter(name="proximityPlacementGroupID")
|
|
541
|
+
def proximity_placement_group_id(self) -> Optional[str]:
|
|
542
|
+
"""
|
|
543
|
+
The ID for Proximity Placement Group.
|
|
544
|
+
"""
|
|
545
|
+
return pulumi.get(self, "proximity_placement_group_id")
|
|
546
|
+
|
|
547
|
+
@property
|
|
548
|
+
@pulumi.getter(name="scaleDownMode")
|
|
549
|
+
def scale_down_mode(self) -> Optional[str]:
|
|
550
|
+
"""
|
|
551
|
+
This also effects the cluster autoscaler behavior. If not specified, it defaults to Delete.
|
|
552
|
+
"""
|
|
553
|
+
return pulumi.get(self, "scale_down_mode")
|
|
554
|
+
|
|
555
|
+
@property
|
|
556
|
+
@pulumi.getter(name="scaleSetEvictionPolicy")
|
|
557
|
+
def scale_set_eviction_policy(self) -> Optional[str]:
|
|
558
|
+
"""
|
|
559
|
+
This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'.
|
|
560
|
+
"""
|
|
561
|
+
return pulumi.get(self, "scale_set_eviction_policy")
|
|
562
|
+
|
|
563
|
+
@property
|
|
564
|
+
@pulumi.getter(name="scaleSetPriority")
|
|
565
|
+
def scale_set_priority(self) -> Optional[str]:
|
|
566
|
+
"""
|
|
567
|
+
The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'.
|
|
568
|
+
"""
|
|
569
|
+
return pulumi.get(self, "scale_set_priority")
|
|
570
|
+
|
|
571
|
+
@property
|
|
572
|
+
@pulumi.getter(name="securityProfile")
|
|
573
|
+
def security_profile(self) -> Optional['outputs.AgentPoolSecurityProfileResponse']:
|
|
574
|
+
"""
|
|
575
|
+
The security settings of an agent pool.
|
|
576
|
+
"""
|
|
577
|
+
return pulumi.get(self, "security_profile")
|
|
578
|
+
|
|
579
|
+
@property
|
|
580
|
+
@pulumi.getter(name="spotMaxPrice")
|
|
581
|
+
def spot_max_price(self) -> Optional[float]:
|
|
582
|
+
"""
|
|
583
|
+
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)
|
|
584
|
+
"""
|
|
585
|
+
return pulumi.get(self, "spot_max_price")
|
|
586
|
+
|
|
587
|
+
@property
|
|
588
|
+
@pulumi.getter
|
|
589
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
590
|
+
"""
|
|
591
|
+
The tags to be persisted on the agent pool virtual machine scale set.
|
|
592
|
+
"""
|
|
593
|
+
return pulumi.get(self, "tags")
|
|
594
|
+
|
|
595
|
+
@property
|
|
596
|
+
@pulumi.getter
|
|
597
|
+
def type(self) -> str:
|
|
598
|
+
"""
|
|
599
|
+
Resource type
|
|
600
|
+
"""
|
|
601
|
+
return pulumi.get(self, "type")
|
|
602
|
+
|
|
603
|
+
@property
|
|
604
|
+
@pulumi.getter(name="upgradeSettings")
|
|
605
|
+
def upgrade_settings(self) -> Optional['outputs.AgentPoolUpgradeSettingsResponse']:
|
|
606
|
+
"""
|
|
607
|
+
Settings for upgrading the agentpool
|
|
608
|
+
"""
|
|
609
|
+
return pulumi.get(self, "upgrade_settings")
|
|
610
|
+
|
|
611
|
+
@property
|
|
612
|
+
@pulumi.getter(name="virtualMachineNodesStatus")
|
|
613
|
+
def virtual_machine_nodes_status(self) -> Optional[Sequence['outputs.VirtualMachineNodesResponse']]:
|
|
614
|
+
"""
|
|
615
|
+
The status of nodes in a VirtualMachines agent pool.
|
|
616
|
+
"""
|
|
617
|
+
return pulumi.get(self, "virtual_machine_nodes_status")
|
|
618
|
+
|
|
619
|
+
@property
|
|
620
|
+
@pulumi.getter(name="virtualMachinesProfile")
|
|
621
|
+
def virtual_machines_profile(self) -> Optional['outputs.VirtualMachinesProfileResponse']:
|
|
622
|
+
"""
|
|
623
|
+
Specifications on VirtualMachines agent pool.
|
|
624
|
+
"""
|
|
625
|
+
return pulumi.get(self, "virtual_machines_profile")
|
|
626
|
+
|
|
627
|
+
@property
|
|
628
|
+
@pulumi.getter(name="vmSize")
|
|
629
|
+
def vm_size(self) -> Optional[str]:
|
|
630
|
+
"""
|
|
631
|
+
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
|
|
632
|
+
"""
|
|
633
|
+
return pulumi.get(self, "vm_size")
|
|
634
|
+
|
|
635
|
+
@property
|
|
636
|
+
@pulumi.getter(name="vnetSubnetID")
|
|
637
|
+
def vnet_subnet_id(self) -> Optional[str]:
|
|
638
|
+
"""
|
|
639
|
+
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}
|
|
640
|
+
"""
|
|
641
|
+
return pulumi.get(self, "vnet_subnet_id")
|
|
642
|
+
|
|
643
|
+
@property
|
|
644
|
+
@pulumi.getter(name="windowsProfile")
|
|
645
|
+
def windows_profile(self) -> Optional['outputs.AgentPoolWindowsProfileResponse']:
|
|
646
|
+
"""
|
|
647
|
+
The Windows agent pool's specific profile.
|
|
648
|
+
"""
|
|
649
|
+
return pulumi.get(self, "windows_profile")
|
|
650
|
+
|
|
651
|
+
@property
|
|
652
|
+
@pulumi.getter(name="workloadRuntime")
|
|
653
|
+
def workload_runtime(self) -> Optional[str]:
|
|
654
|
+
"""
|
|
655
|
+
Determines the type of workload a node can run.
|
|
656
|
+
"""
|
|
657
|
+
return pulumi.get(self, "workload_runtime")
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
class AwaitableGetAgentPoolResult(GetAgentPoolResult):
|
|
661
|
+
# pylint: disable=using-constant-test
|
|
662
|
+
def __await__(self):
|
|
663
|
+
if False:
|
|
664
|
+
yield self
|
|
665
|
+
return GetAgentPoolResult(
|
|
666
|
+
artifact_streaming_profile=self.artifact_streaming_profile,
|
|
667
|
+
availability_zones=self.availability_zones,
|
|
668
|
+
capacity_reservation_group_id=self.capacity_reservation_group_id,
|
|
669
|
+
count=self.count,
|
|
670
|
+
creation_data=self.creation_data,
|
|
671
|
+
current_orchestrator_version=self.current_orchestrator_version,
|
|
672
|
+
e_tag=self.e_tag,
|
|
673
|
+
enable_auto_scaling=self.enable_auto_scaling,
|
|
674
|
+
enable_custom_ca_trust=self.enable_custom_ca_trust,
|
|
675
|
+
enable_encryption_at_host=self.enable_encryption_at_host,
|
|
676
|
+
enable_fips=self.enable_fips,
|
|
677
|
+
enable_node_public_ip=self.enable_node_public_ip,
|
|
678
|
+
enable_ultra_ssd=self.enable_ultra_ssd,
|
|
679
|
+
gateway_profile=self.gateway_profile,
|
|
680
|
+
gpu_instance_profile=self.gpu_instance_profile,
|
|
681
|
+
gpu_profile=self.gpu_profile,
|
|
682
|
+
host_group_id=self.host_group_id,
|
|
683
|
+
id=self.id,
|
|
684
|
+
kubelet_config=self.kubelet_config,
|
|
685
|
+
kubelet_disk_type=self.kubelet_disk_type,
|
|
686
|
+
linux_os_config=self.linux_os_config,
|
|
687
|
+
max_count=self.max_count,
|
|
688
|
+
max_pods=self.max_pods,
|
|
689
|
+
message_of_the_day=self.message_of_the_day,
|
|
690
|
+
min_count=self.min_count,
|
|
691
|
+
mode=self.mode,
|
|
692
|
+
name=self.name,
|
|
693
|
+
network_profile=self.network_profile,
|
|
694
|
+
node_image_version=self.node_image_version,
|
|
695
|
+
node_initialization_taints=self.node_initialization_taints,
|
|
696
|
+
node_labels=self.node_labels,
|
|
697
|
+
node_public_ip_prefix_id=self.node_public_ip_prefix_id,
|
|
698
|
+
node_taints=self.node_taints,
|
|
699
|
+
orchestrator_version=self.orchestrator_version,
|
|
700
|
+
os_disk_size_gb=self.os_disk_size_gb,
|
|
701
|
+
os_disk_type=self.os_disk_type,
|
|
702
|
+
os_sku=self.os_sku,
|
|
703
|
+
os_type=self.os_type,
|
|
704
|
+
pod_ip_allocation_mode=self.pod_ip_allocation_mode,
|
|
705
|
+
pod_subnet_id=self.pod_subnet_id,
|
|
706
|
+
power_state=self.power_state,
|
|
707
|
+
provisioning_state=self.provisioning_state,
|
|
708
|
+
proximity_placement_group_id=self.proximity_placement_group_id,
|
|
709
|
+
scale_down_mode=self.scale_down_mode,
|
|
710
|
+
scale_set_eviction_policy=self.scale_set_eviction_policy,
|
|
711
|
+
scale_set_priority=self.scale_set_priority,
|
|
712
|
+
security_profile=self.security_profile,
|
|
713
|
+
spot_max_price=self.spot_max_price,
|
|
714
|
+
tags=self.tags,
|
|
715
|
+
type=self.type,
|
|
716
|
+
upgrade_settings=self.upgrade_settings,
|
|
717
|
+
virtual_machine_nodes_status=self.virtual_machine_nodes_status,
|
|
718
|
+
virtual_machines_profile=self.virtual_machines_profile,
|
|
719
|
+
vm_size=self.vm_size,
|
|
720
|
+
vnet_subnet_id=self.vnet_subnet_id,
|
|
721
|
+
windows_profile=self.windows_profile,
|
|
722
|
+
workload_runtime=self.workload_runtime)
|
|
723
|
+
|
|
724
|
+
|
|
725
|
+
def get_agent_pool(agent_pool_name: Optional[str] = None,
|
|
726
|
+
resource_group_name: Optional[str] = None,
|
|
727
|
+
resource_name: Optional[str] = None,
|
|
728
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAgentPoolResult:
|
|
729
|
+
"""
|
|
730
|
+
Agent Pool.
|
|
731
|
+
|
|
732
|
+
|
|
733
|
+
:param str agent_pool_name: The name of the agent pool.
|
|
734
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
735
|
+
:param str resource_name: The name of the managed cluster resource.
|
|
736
|
+
"""
|
|
737
|
+
__args__ = dict()
|
|
738
|
+
__args__['agentPoolName'] = agent_pool_name
|
|
739
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
740
|
+
__args__['resourceName'] = resource_name
|
|
741
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
742
|
+
__ret__ = pulumi.runtime.invoke('azure-native:containerservice/v20240702preview:getAgentPool', __args__, opts=opts, typ=GetAgentPoolResult).value
|
|
743
|
+
|
|
744
|
+
return AwaitableGetAgentPoolResult(
|
|
745
|
+
artifact_streaming_profile=pulumi.get(__ret__, 'artifact_streaming_profile'),
|
|
746
|
+
availability_zones=pulumi.get(__ret__, 'availability_zones'),
|
|
747
|
+
capacity_reservation_group_id=pulumi.get(__ret__, 'capacity_reservation_group_id'),
|
|
748
|
+
count=pulumi.get(__ret__, 'count'),
|
|
749
|
+
creation_data=pulumi.get(__ret__, 'creation_data'),
|
|
750
|
+
current_orchestrator_version=pulumi.get(__ret__, 'current_orchestrator_version'),
|
|
751
|
+
e_tag=pulumi.get(__ret__, 'e_tag'),
|
|
752
|
+
enable_auto_scaling=pulumi.get(__ret__, 'enable_auto_scaling'),
|
|
753
|
+
enable_custom_ca_trust=pulumi.get(__ret__, 'enable_custom_ca_trust'),
|
|
754
|
+
enable_encryption_at_host=pulumi.get(__ret__, 'enable_encryption_at_host'),
|
|
755
|
+
enable_fips=pulumi.get(__ret__, 'enable_fips'),
|
|
756
|
+
enable_node_public_ip=pulumi.get(__ret__, 'enable_node_public_ip'),
|
|
757
|
+
enable_ultra_ssd=pulumi.get(__ret__, 'enable_ultra_ssd'),
|
|
758
|
+
gateway_profile=pulumi.get(__ret__, 'gateway_profile'),
|
|
759
|
+
gpu_instance_profile=pulumi.get(__ret__, 'gpu_instance_profile'),
|
|
760
|
+
gpu_profile=pulumi.get(__ret__, 'gpu_profile'),
|
|
761
|
+
host_group_id=pulumi.get(__ret__, 'host_group_id'),
|
|
762
|
+
id=pulumi.get(__ret__, 'id'),
|
|
763
|
+
kubelet_config=pulumi.get(__ret__, 'kubelet_config'),
|
|
764
|
+
kubelet_disk_type=pulumi.get(__ret__, 'kubelet_disk_type'),
|
|
765
|
+
linux_os_config=pulumi.get(__ret__, 'linux_os_config'),
|
|
766
|
+
max_count=pulumi.get(__ret__, 'max_count'),
|
|
767
|
+
max_pods=pulumi.get(__ret__, 'max_pods'),
|
|
768
|
+
message_of_the_day=pulumi.get(__ret__, 'message_of_the_day'),
|
|
769
|
+
min_count=pulumi.get(__ret__, 'min_count'),
|
|
770
|
+
mode=pulumi.get(__ret__, 'mode'),
|
|
771
|
+
name=pulumi.get(__ret__, 'name'),
|
|
772
|
+
network_profile=pulumi.get(__ret__, 'network_profile'),
|
|
773
|
+
node_image_version=pulumi.get(__ret__, 'node_image_version'),
|
|
774
|
+
node_initialization_taints=pulumi.get(__ret__, 'node_initialization_taints'),
|
|
775
|
+
node_labels=pulumi.get(__ret__, 'node_labels'),
|
|
776
|
+
node_public_ip_prefix_id=pulumi.get(__ret__, 'node_public_ip_prefix_id'),
|
|
777
|
+
node_taints=pulumi.get(__ret__, 'node_taints'),
|
|
778
|
+
orchestrator_version=pulumi.get(__ret__, 'orchestrator_version'),
|
|
779
|
+
os_disk_size_gb=pulumi.get(__ret__, 'os_disk_size_gb'),
|
|
780
|
+
os_disk_type=pulumi.get(__ret__, 'os_disk_type'),
|
|
781
|
+
os_sku=pulumi.get(__ret__, 'os_sku'),
|
|
782
|
+
os_type=pulumi.get(__ret__, 'os_type'),
|
|
783
|
+
pod_ip_allocation_mode=pulumi.get(__ret__, 'pod_ip_allocation_mode'),
|
|
784
|
+
pod_subnet_id=pulumi.get(__ret__, 'pod_subnet_id'),
|
|
785
|
+
power_state=pulumi.get(__ret__, 'power_state'),
|
|
786
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
787
|
+
proximity_placement_group_id=pulumi.get(__ret__, 'proximity_placement_group_id'),
|
|
788
|
+
scale_down_mode=pulumi.get(__ret__, 'scale_down_mode'),
|
|
789
|
+
scale_set_eviction_policy=pulumi.get(__ret__, 'scale_set_eviction_policy'),
|
|
790
|
+
scale_set_priority=pulumi.get(__ret__, 'scale_set_priority'),
|
|
791
|
+
security_profile=pulumi.get(__ret__, 'security_profile'),
|
|
792
|
+
spot_max_price=pulumi.get(__ret__, 'spot_max_price'),
|
|
793
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
794
|
+
type=pulumi.get(__ret__, 'type'),
|
|
795
|
+
upgrade_settings=pulumi.get(__ret__, 'upgrade_settings'),
|
|
796
|
+
virtual_machine_nodes_status=pulumi.get(__ret__, 'virtual_machine_nodes_status'),
|
|
797
|
+
virtual_machines_profile=pulumi.get(__ret__, 'virtual_machines_profile'),
|
|
798
|
+
vm_size=pulumi.get(__ret__, 'vm_size'),
|
|
799
|
+
vnet_subnet_id=pulumi.get(__ret__, 'vnet_subnet_id'),
|
|
800
|
+
windows_profile=pulumi.get(__ret__, 'windows_profile'),
|
|
801
|
+
workload_runtime=pulumi.get(__ret__, 'workload_runtime'))
|
|
802
|
+
|
|
803
|
+
|
|
804
|
+
@_utilities.lift_output_func(get_agent_pool)
|
|
805
|
+
def get_agent_pool_output(agent_pool_name: Optional[pulumi.Input[str]] = None,
|
|
806
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
807
|
+
resource_name: Optional[pulumi.Input[str]] = None,
|
|
808
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAgentPoolResult]:
|
|
809
|
+
"""
|
|
810
|
+
Agent Pool.
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
:param str agent_pool_name: The name of the agent pool.
|
|
814
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
815
|
+
:param str resource_name: The name of the managed cluster resource.
|
|
816
|
+
"""
|
|
817
|
+
...
|