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,1874 @@
|
|
|
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
|
+
from enum import Enum
|
|
6
|
+
|
|
7
|
+
__all__ = [
|
|
8
|
+
'Access',
|
|
9
|
+
'ActionType',
|
|
10
|
+
'AddressPrefixType',
|
|
11
|
+
'AdminRuleKind',
|
|
12
|
+
'AdminState',
|
|
13
|
+
'ApplicationGatewayClientRevocationOptions',
|
|
14
|
+
'ApplicationGatewayCookieBasedAffinity',
|
|
15
|
+
'ApplicationGatewayCustomErrorStatusCode',
|
|
16
|
+
'ApplicationGatewayFirewallMode',
|
|
17
|
+
'ApplicationGatewayFirewallRateLimitDuration',
|
|
18
|
+
'ApplicationGatewayFirewallUserSessionVariable',
|
|
19
|
+
'ApplicationGatewayLoadDistributionAlgorithm',
|
|
20
|
+
'ApplicationGatewayProtocol',
|
|
21
|
+
'ApplicationGatewayRedirectType',
|
|
22
|
+
'ApplicationGatewayRequestRoutingRuleType',
|
|
23
|
+
'ApplicationGatewaySkuFamily',
|
|
24
|
+
'ApplicationGatewaySkuName',
|
|
25
|
+
'ApplicationGatewaySslCipherSuite',
|
|
26
|
+
'ApplicationGatewaySslPolicyName',
|
|
27
|
+
'ApplicationGatewaySslPolicyType',
|
|
28
|
+
'ApplicationGatewaySslProtocol',
|
|
29
|
+
'ApplicationGatewayTier',
|
|
30
|
+
'AuthorizationUseStatus',
|
|
31
|
+
'AutoLearnPrivateRangesMode',
|
|
32
|
+
'AzureFirewallApplicationRuleProtocolType',
|
|
33
|
+
'AzureFirewallNatRCActionType',
|
|
34
|
+
'AzureFirewallNetworkRuleProtocol',
|
|
35
|
+
'AzureFirewallRCActionType',
|
|
36
|
+
'AzureFirewallSkuName',
|
|
37
|
+
'AzureFirewallSkuTier',
|
|
38
|
+
'AzureFirewallThreatIntelMode',
|
|
39
|
+
'BastionHostSkuName',
|
|
40
|
+
'CommissionedState',
|
|
41
|
+
'ConfigurationType',
|
|
42
|
+
'ConnectionMonitorEndpointFilterItemType',
|
|
43
|
+
'ConnectionMonitorEndpointFilterType',
|
|
44
|
+
'ConnectionMonitorTestConfigurationProtocol',
|
|
45
|
+
'ConnectivityTopology',
|
|
46
|
+
'CoverageLevel',
|
|
47
|
+
'CustomIpPrefixType',
|
|
48
|
+
'DdosSettingsProtectionMode',
|
|
49
|
+
'DeleteExistingPeering',
|
|
50
|
+
'DeleteOptions',
|
|
51
|
+
'DestinationPortBehavior',
|
|
52
|
+
'DhGroup',
|
|
53
|
+
'DisableBgpRoutePropagation',
|
|
54
|
+
'EndpointType',
|
|
55
|
+
'ExceptionEntryMatchVariable',
|
|
56
|
+
'ExceptionEntrySelectorMatchOperator',
|
|
57
|
+
'ExceptionEntryValueMatchOperator',
|
|
58
|
+
'ExpressRouteCircuitPeeringState',
|
|
59
|
+
'ExpressRouteCircuitSkuFamily',
|
|
60
|
+
'ExpressRouteCircuitSkuTier',
|
|
61
|
+
'ExpressRouteLinkAdminState',
|
|
62
|
+
'ExpressRouteLinkMacSecCipher',
|
|
63
|
+
'ExpressRouteLinkMacSecSciState',
|
|
64
|
+
'ExpressRoutePeeringState',
|
|
65
|
+
'ExpressRoutePeeringType',
|
|
66
|
+
'ExpressRoutePortsBillingType',
|
|
67
|
+
'ExpressRoutePortsEncapsulation',
|
|
68
|
+
'ExtendedLocationTypes',
|
|
69
|
+
'FirewallPolicyFilterRuleCollectionActionType',
|
|
70
|
+
'FirewallPolicyIDPSQuerySortOrder',
|
|
71
|
+
'FirewallPolicyIntrusionDetectionProfileType',
|
|
72
|
+
'FirewallPolicyIntrusionDetectionProtocol',
|
|
73
|
+
'FirewallPolicyIntrusionDetectionStateType',
|
|
74
|
+
'FirewallPolicyNatRuleCollectionActionType',
|
|
75
|
+
'FirewallPolicyRuleApplicationProtocolType',
|
|
76
|
+
'FirewallPolicyRuleCollectionType',
|
|
77
|
+
'FirewallPolicyRuleNetworkProtocol',
|
|
78
|
+
'FirewallPolicyRuleType',
|
|
79
|
+
'FirewallPolicySkuTier',
|
|
80
|
+
'FlowLogFormatType',
|
|
81
|
+
'GatewayLoadBalancerTunnelInterfaceType',
|
|
82
|
+
'GatewayLoadBalancerTunnelProtocol',
|
|
83
|
+
'Geo',
|
|
84
|
+
'GroupConnectivity',
|
|
85
|
+
'GroupMemberType',
|
|
86
|
+
'HTTPConfigurationMethod',
|
|
87
|
+
'HubRoutingPreference',
|
|
88
|
+
'IPAllocationMethod',
|
|
89
|
+
'IPVersion',
|
|
90
|
+
'IkeEncryption',
|
|
91
|
+
'IkeIntegrity',
|
|
92
|
+
'IpAllocationType',
|
|
93
|
+
'IpsecEncryption',
|
|
94
|
+
'IpsecIntegrity',
|
|
95
|
+
'IsGlobal',
|
|
96
|
+
'LoadBalancerBackendAddressAdminState',
|
|
97
|
+
'LoadBalancerOutboundRuleProtocol',
|
|
98
|
+
'LoadBalancerSkuName',
|
|
99
|
+
'LoadBalancerSkuTier',
|
|
100
|
+
'LoadDistribution',
|
|
101
|
+
'ManagedRuleEnabledState',
|
|
102
|
+
'NatGatewaySkuName',
|
|
103
|
+
'NetworkIntentPolicyBasedService',
|
|
104
|
+
'NetworkInterfaceAuxiliaryMode',
|
|
105
|
+
'NetworkInterfaceAuxiliarySku',
|
|
106
|
+
'NetworkInterfaceMigrationPhase',
|
|
107
|
+
'NetworkInterfaceNicType',
|
|
108
|
+
'NextStep',
|
|
109
|
+
'NicTypeInRequest',
|
|
110
|
+
'OutputType',
|
|
111
|
+
'OwaspCrsExclusionEntryMatchVariable',
|
|
112
|
+
'OwaspCrsExclusionEntrySelectorMatchOperator',
|
|
113
|
+
'PacketCaptureTargetType',
|
|
114
|
+
'PcProtocol',
|
|
115
|
+
'PfsGroup',
|
|
116
|
+
'PreferredIPVersion',
|
|
117
|
+
'PreferredRoutingGateway',
|
|
118
|
+
'PrivateEndpointVNetPolicies',
|
|
119
|
+
'ProbeNoHealthyBackendsBehavior',
|
|
120
|
+
'ProbeProtocol',
|
|
121
|
+
'ProtocolType',
|
|
122
|
+
'PublicIPAddressMigrationPhase',
|
|
123
|
+
'PublicIPAddressSkuName',
|
|
124
|
+
'PublicIPAddressSkuTier',
|
|
125
|
+
'PublicIPPrefixSkuName',
|
|
126
|
+
'PublicIPPrefixSkuTier',
|
|
127
|
+
'PublicIpAddressDnsSettingsDomainNameLabelScope',
|
|
128
|
+
'ResiliencyModel',
|
|
129
|
+
'ResourceIdentityType',
|
|
130
|
+
'RouteFilterRuleType',
|
|
131
|
+
'RouteMapActionType',
|
|
132
|
+
'RouteMapMatchCondition',
|
|
133
|
+
'RouteNextHopType',
|
|
134
|
+
'RoutingRuleDestinationType',
|
|
135
|
+
'RoutingRuleNextHopType',
|
|
136
|
+
'ScrubbingRuleEntryMatchOperator',
|
|
137
|
+
'ScrubbingRuleEntryMatchVariable',
|
|
138
|
+
'ScrubbingRuleEntryState',
|
|
139
|
+
'SecurityConfigurationRuleAccess',
|
|
140
|
+
'SecurityConfigurationRuleDirection',
|
|
141
|
+
'SecurityConfigurationRuleProtocol',
|
|
142
|
+
'SecurityProviderName',
|
|
143
|
+
'SecurityRuleAccess',
|
|
144
|
+
'SecurityRuleDirection',
|
|
145
|
+
'SecurityRuleProtocol',
|
|
146
|
+
'SensitivityType',
|
|
147
|
+
'ServiceProviderProvisioningState',
|
|
148
|
+
'SharingScope',
|
|
149
|
+
'SyncMode',
|
|
150
|
+
'TransportProtocol',
|
|
151
|
+
'UseHubGateway',
|
|
152
|
+
'VirtualNetworkEncryptionEnforcement',
|
|
153
|
+
'VirtualNetworkGatewayConnectionMode',
|
|
154
|
+
'VirtualNetworkGatewayConnectionProtocol',
|
|
155
|
+
'VirtualNetworkGatewayConnectionType',
|
|
156
|
+
'VirtualNetworkGatewaySkuName',
|
|
157
|
+
'VirtualNetworkGatewaySkuTier',
|
|
158
|
+
'VirtualNetworkGatewayType',
|
|
159
|
+
'VirtualNetworkPeeringLevel',
|
|
160
|
+
'VirtualNetworkPeeringState',
|
|
161
|
+
'VirtualNetworkPrivateEndpointNetworkPolicies',
|
|
162
|
+
'VirtualNetworkPrivateLinkServiceNetworkPolicies',
|
|
163
|
+
'VnetLocalRouteOverrideCriteria',
|
|
164
|
+
'VpnAuthenticationType',
|
|
165
|
+
'VpnClientProtocol',
|
|
166
|
+
'VpnGatewayGeneration',
|
|
167
|
+
'VpnGatewayTunnelingProtocol',
|
|
168
|
+
'VpnLinkConnectionMode',
|
|
169
|
+
'VpnNatRuleMode',
|
|
170
|
+
'VpnNatRuleType',
|
|
171
|
+
'VpnPolicyMemberAttributeType',
|
|
172
|
+
'VpnType',
|
|
173
|
+
'WebApplicationFirewallAction',
|
|
174
|
+
'WebApplicationFirewallEnabledState',
|
|
175
|
+
'WebApplicationFirewallMatchVariable',
|
|
176
|
+
'WebApplicationFirewallMode',
|
|
177
|
+
'WebApplicationFirewallOperator',
|
|
178
|
+
'WebApplicationFirewallRuleType',
|
|
179
|
+
'WebApplicationFirewallScrubbingState',
|
|
180
|
+
'WebApplicationFirewallState',
|
|
181
|
+
'WebApplicationFirewallTransform',
|
|
182
|
+
]
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
class Access(str, Enum):
|
|
186
|
+
"""
|
|
187
|
+
The access type of the rule.
|
|
188
|
+
"""
|
|
189
|
+
ALLOW = "Allow"
|
|
190
|
+
DENY = "Deny"
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
class ActionType(str, Enum):
|
|
194
|
+
"""
|
|
195
|
+
Describes the override action to be applied when rule matches.
|
|
196
|
+
"""
|
|
197
|
+
ANOMALY_SCORING = "AnomalyScoring"
|
|
198
|
+
ALLOW = "Allow"
|
|
199
|
+
BLOCK = "Block"
|
|
200
|
+
LOG = "Log"
|
|
201
|
+
JS_CHALLENGE = "JSChallenge"
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
class AddressPrefixType(str, Enum):
|
|
205
|
+
"""
|
|
206
|
+
Address prefix type.
|
|
207
|
+
"""
|
|
208
|
+
IP_PREFIX = "IPPrefix"
|
|
209
|
+
SERVICE_TAG = "ServiceTag"
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
class AdminRuleKind(str, Enum):
|
|
213
|
+
"""
|
|
214
|
+
Whether the rule is custom or default.
|
|
215
|
+
"""
|
|
216
|
+
CUSTOM = "Custom"
|
|
217
|
+
DEFAULT = "Default"
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
class AdminState(str, Enum):
|
|
221
|
+
"""
|
|
222
|
+
Property to indicate if the Express Route Gateway serves traffic when there are multiple Express Route Gateways in the vnet
|
|
223
|
+
"""
|
|
224
|
+
ENABLED = "Enabled"
|
|
225
|
+
DISABLED = "Disabled"
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
class ApplicationGatewayClientRevocationOptions(str, Enum):
|
|
229
|
+
"""
|
|
230
|
+
Verify client certificate revocation status.
|
|
231
|
+
"""
|
|
232
|
+
NONE = "None"
|
|
233
|
+
OCSP = "OCSP"
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
class ApplicationGatewayCookieBasedAffinity(str, Enum):
|
|
237
|
+
"""
|
|
238
|
+
Cookie based affinity.
|
|
239
|
+
"""
|
|
240
|
+
ENABLED = "Enabled"
|
|
241
|
+
DISABLED = "Disabled"
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
class ApplicationGatewayCustomErrorStatusCode(str, Enum):
|
|
245
|
+
"""
|
|
246
|
+
Status code of the application gateway custom error.
|
|
247
|
+
"""
|
|
248
|
+
HTTP_STATUS400 = "HttpStatus400"
|
|
249
|
+
HTTP_STATUS403 = "HttpStatus403"
|
|
250
|
+
HTTP_STATUS404 = "HttpStatus404"
|
|
251
|
+
HTTP_STATUS405 = "HttpStatus405"
|
|
252
|
+
HTTP_STATUS408 = "HttpStatus408"
|
|
253
|
+
HTTP_STATUS500 = "HttpStatus500"
|
|
254
|
+
HTTP_STATUS502 = "HttpStatus502"
|
|
255
|
+
HTTP_STATUS503 = "HttpStatus503"
|
|
256
|
+
HTTP_STATUS504 = "HttpStatus504"
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
class ApplicationGatewayFirewallMode(str, Enum):
|
|
260
|
+
"""
|
|
261
|
+
Web application firewall mode.
|
|
262
|
+
"""
|
|
263
|
+
DETECTION = "Detection"
|
|
264
|
+
PREVENTION = "Prevention"
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
class ApplicationGatewayFirewallRateLimitDuration(str, Enum):
|
|
268
|
+
"""
|
|
269
|
+
Duration over which Rate Limit policy will be applied. Applies only when ruleType is RateLimitRule.
|
|
270
|
+
"""
|
|
271
|
+
ONE_MIN = "OneMin"
|
|
272
|
+
FIVE_MINS = "FiveMins"
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
class ApplicationGatewayFirewallUserSessionVariable(str, Enum):
|
|
276
|
+
"""
|
|
277
|
+
User Session clause variable.
|
|
278
|
+
"""
|
|
279
|
+
CLIENT_ADDR = "ClientAddr"
|
|
280
|
+
GEO_LOCATION = "GeoLocation"
|
|
281
|
+
NONE = "None"
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
class ApplicationGatewayLoadDistributionAlgorithm(str, Enum):
|
|
285
|
+
"""
|
|
286
|
+
Load Distribution Targets resource of an application gateway.
|
|
287
|
+
"""
|
|
288
|
+
ROUND_ROBIN = "RoundRobin"
|
|
289
|
+
LEAST_CONNECTIONS = "LeastConnections"
|
|
290
|
+
IP_HASH = "IpHash"
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
class ApplicationGatewayProtocol(str, Enum):
|
|
294
|
+
"""
|
|
295
|
+
The protocol used for the probe.
|
|
296
|
+
"""
|
|
297
|
+
HTTP = "Http"
|
|
298
|
+
"""
|
|
299
|
+
Supported for httpListeners and backendHttpSettingsCollection properties.
|
|
300
|
+
"""
|
|
301
|
+
HTTPS = "Https"
|
|
302
|
+
"""
|
|
303
|
+
Supported for httpListeners and backendHttpSettingsCollection properties.
|
|
304
|
+
"""
|
|
305
|
+
TCP = "Tcp"
|
|
306
|
+
"""
|
|
307
|
+
Supported for listeners and backendSettingsCollection properties.
|
|
308
|
+
"""
|
|
309
|
+
TLS = "Tls"
|
|
310
|
+
"""
|
|
311
|
+
Supported for listeners and backendSettingsCollection properties.
|
|
312
|
+
"""
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
class ApplicationGatewayRedirectType(str, Enum):
|
|
316
|
+
"""
|
|
317
|
+
HTTP redirection type.
|
|
318
|
+
"""
|
|
319
|
+
PERMANENT = "Permanent"
|
|
320
|
+
FOUND = "Found"
|
|
321
|
+
SEE_OTHER = "SeeOther"
|
|
322
|
+
TEMPORARY = "Temporary"
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
class ApplicationGatewayRequestRoutingRuleType(str, Enum):
|
|
326
|
+
"""
|
|
327
|
+
Rule type.
|
|
328
|
+
"""
|
|
329
|
+
BASIC = "Basic"
|
|
330
|
+
PATH_BASED_ROUTING = "PathBasedRouting"
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
class ApplicationGatewaySkuFamily(str, Enum):
|
|
334
|
+
"""
|
|
335
|
+
Family of an application gateway SKU.
|
|
336
|
+
"""
|
|
337
|
+
GENERATION_1 = "Generation_1"
|
|
338
|
+
GENERATION_2 = "Generation_2"
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
class ApplicationGatewaySkuName(str, Enum):
|
|
342
|
+
"""
|
|
343
|
+
Name of an application gateway SKU.
|
|
344
|
+
"""
|
|
345
|
+
STANDARD_SMALL = "Standard_Small"
|
|
346
|
+
STANDARD_MEDIUM = "Standard_Medium"
|
|
347
|
+
STANDARD_LARGE = "Standard_Large"
|
|
348
|
+
WA_F_MEDIUM = "WAF_Medium"
|
|
349
|
+
WA_F_LARGE = "WAF_Large"
|
|
350
|
+
STANDARD_V2 = "Standard_v2"
|
|
351
|
+
WA_F_V2 = "WAF_v2"
|
|
352
|
+
BASIC = "Basic"
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
class ApplicationGatewaySslCipherSuite(str, Enum):
|
|
356
|
+
"""
|
|
357
|
+
Ssl cipher suites enums.
|
|
358
|
+
"""
|
|
359
|
+
TL_S_ECDH_E_RS_A_WIT_H_AE_S_256_CB_C_SHA384 = "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384"
|
|
360
|
+
TL_S_ECDH_E_RS_A_WIT_H_AE_S_128_CB_C_SHA256 = "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256"
|
|
361
|
+
TL_S_ECDH_E_RS_A_WIT_H_AE_S_256_CB_C_SHA = "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA"
|
|
362
|
+
TL_S_ECDH_E_RS_A_WIT_H_AE_S_128_CB_C_SHA = "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA"
|
|
363
|
+
TL_S_DH_E_RS_A_WIT_H_AE_S_256_GC_M_SHA384 = "TLS_DHE_RSA_WITH_AES_256_GCM_SHA384"
|
|
364
|
+
TL_S_DH_E_RS_A_WIT_H_AE_S_128_GC_M_SHA256 = "TLS_DHE_RSA_WITH_AES_128_GCM_SHA256"
|
|
365
|
+
TL_S_DH_E_RS_A_WIT_H_AE_S_256_CB_C_SHA = "TLS_DHE_RSA_WITH_AES_256_CBC_SHA"
|
|
366
|
+
TL_S_DH_E_RS_A_WIT_H_AE_S_128_CB_C_SHA = "TLS_DHE_RSA_WITH_AES_128_CBC_SHA"
|
|
367
|
+
TL_S_RS_A_WIT_H_AE_S_256_GC_M_SHA384 = "TLS_RSA_WITH_AES_256_GCM_SHA384"
|
|
368
|
+
TL_S_RS_A_WIT_H_AE_S_128_GC_M_SHA256 = "TLS_RSA_WITH_AES_128_GCM_SHA256"
|
|
369
|
+
TL_S_RS_A_WIT_H_AE_S_256_CB_C_SHA256 = "TLS_RSA_WITH_AES_256_CBC_SHA256"
|
|
370
|
+
TL_S_RS_A_WIT_H_AE_S_128_CB_C_SHA256 = "TLS_RSA_WITH_AES_128_CBC_SHA256"
|
|
371
|
+
TL_S_RS_A_WIT_H_AE_S_256_CB_C_SHA = "TLS_RSA_WITH_AES_256_CBC_SHA"
|
|
372
|
+
TL_S_RS_A_WIT_H_AE_S_128_CB_C_SHA = "TLS_RSA_WITH_AES_128_CBC_SHA"
|
|
373
|
+
TL_S_ECDH_E_ECDS_A_WIT_H_AE_S_256_GC_M_SHA384 = "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384"
|
|
374
|
+
TL_S_ECDH_E_ECDS_A_WIT_H_AE_S_128_GC_M_SHA256 = "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256"
|
|
375
|
+
TL_S_ECDH_E_ECDS_A_WIT_H_AE_S_256_CB_C_SHA384 = "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384"
|
|
376
|
+
TL_S_ECDH_E_ECDS_A_WIT_H_AE_S_128_CB_C_SHA256 = "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256"
|
|
377
|
+
TL_S_ECDH_E_ECDS_A_WIT_H_AE_S_256_CB_C_SHA = "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA"
|
|
378
|
+
TL_S_ECDH_E_ECDS_A_WIT_H_AE_S_128_CB_C_SHA = "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA"
|
|
379
|
+
TL_S_DH_E_DS_S_WIT_H_AE_S_256_CB_C_SHA256 = "TLS_DHE_DSS_WITH_AES_256_CBC_SHA256"
|
|
380
|
+
TL_S_DH_E_DS_S_WIT_H_AE_S_128_CB_C_SHA256 = "TLS_DHE_DSS_WITH_AES_128_CBC_SHA256"
|
|
381
|
+
TL_S_DH_E_DS_S_WIT_H_AE_S_256_CB_C_SHA = "TLS_DHE_DSS_WITH_AES_256_CBC_SHA"
|
|
382
|
+
TL_S_DH_E_DS_S_WIT_H_AE_S_128_CB_C_SHA = "TLS_DHE_DSS_WITH_AES_128_CBC_SHA"
|
|
383
|
+
TL_S_RS_A_WIT_H_3_DE_S_ED_E_CB_C_SHA = "TLS_RSA_WITH_3DES_EDE_CBC_SHA"
|
|
384
|
+
TL_S_DH_E_DS_S_WIT_H_3_DE_S_ED_E_CB_C_SHA = "TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA"
|
|
385
|
+
TL_S_ECDH_E_RS_A_WIT_H_AE_S_128_GC_M_SHA256 = "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"
|
|
386
|
+
TL_S_ECDH_E_RS_A_WIT_H_AE_S_256_GC_M_SHA384 = "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384"
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
class ApplicationGatewaySslPolicyName(str, Enum):
|
|
390
|
+
"""
|
|
391
|
+
Name of Ssl predefined policy.
|
|
392
|
+
"""
|
|
393
|
+
APP_GW_SSL_POLICY20150501 = "AppGwSslPolicy20150501"
|
|
394
|
+
APP_GW_SSL_POLICY20170401 = "AppGwSslPolicy20170401"
|
|
395
|
+
APP_GW_SSL_POLICY20170401_S = "AppGwSslPolicy20170401S"
|
|
396
|
+
APP_GW_SSL_POLICY20220101 = "AppGwSslPolicy20220101"
|
|
397
|
+
APP_GW_SSL_POLICY20220101_S = "AppGwSslPolicy20220101S"
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
class ApplicationGatewaySslPolicyType(str, Enum):
|
|
401
|
+
"""
|
|
402
|
+
Type of Ssl Policy.
|
|
403
|
+
"""
|
|
404
|
+
PREDEFINED = "Predefined"
|
|
405
|
+
CUSTOM = "Custom"
|
|
406
|
+
CUSTOM_V2 = "CustomV2"
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
class ApplicationGatewaySslProtocol(str, Enum):
|
|
410
|
+
"""
|
|
411
|
+
Minimum version of Ssl protocol to be supported on application gateway.
|
|
412
|
+
"""
|
|
413
|
+
TL_SV1_0 = "TLSv1_0"
|
|
414
|
+
TL_SV1_1 = "TLSv1_1"
|
|
415
|
+
TL_SV1_2 = "TLSv1_2"
|
|
416
|
+
TL_SV1_3 = "TLSv1_3"
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
class ApplicationGatewayTier(str, Enum):
|
|
420
|
+
"""
|
|
421
|
+
Tier of an application gateway.
|
|
422
|
+
"""
|
|
423
|
+
STANDARD = "Standard"
|
|
424
|
+
WAF = "WAF"
|
|
425
|
+
STANDARD_V2 = "Standard_v2"
|
|
426
|
+
WA_F_V2 = "WAF_v2"
|
|
427
|
+
BASIC = "Basic"
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
class AuthorizationUseStatus(str, Enum):
|
|
431
|
+
"""
|
|
432
|
+
The authorization use status.
|
|
433
|
+
"""
|
|
434
|
+
AVAILABLE = "Available"
|
|
435
|
+
IN_USE = "InUse"
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
class AutoLearnPrivateRangesMode(str, Enum):
|
|
439
|
+
"""
|
|
440
|
+
The operation mode for automatically learning private ranges to not be SNAT
|
|
441
|
+
"""
|
|
442
|
+
ENABLED = "Enabled"
|
|
443
|
+
DISABLED = "Disabled"
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
class AzureFirewallApplicationRuleProtocolType(str, Enum):
|
|
447
|
+
"""
|
|
448
|
+
Protocol type.
|
|
449
|
+
"""
|
|
450
|
+
HTTP = "Http"
|
|
451
|
+
HTTPS = "Https"
|
|
452
|
+
MSSQL = "Mssql"
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
class AzureFirewallNatRCActionType(str, Enum):
|
|
456
|
+
"""
|
|
457
|
+
The type of action.
|
|
458
|
+
"""
|
|
459
|
+
SNAT = "Snat"
|
|
460
|
+
DNAT = "Dnat"
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
class AzureFirewallNetworkRuleProtocol(str, Enum):
|
|
464
|
+
"""
|
|
465
|
+
The protocol of a Network Rule resource.
|
|
466
|
+
"""
|
|
467
|
+
TCP = "TCP"
|
|
468
|
+
UDP = "UDP"
|
|
469
|
+
ANY = "Any"
|
|
470
|
+
ICMP = "ICMP"
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
class AzureFirewallRCActionType(str, Enum):
|
|
474
|
+
"""
|
|
475
|
+
The type of action.
|
|
476
|
+
"""
|
|
477
|
+
ALLOW = "Allow"
|
|
478
|
+
DENY = "Deny"
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
class AzureFirewallSkuName(str, Enum):
|
|
482
|
+
"""
|
|
483
|
+
Name of an Azure Firewall SKU.
|
|
484
|
+
"""
|
|
485
|
+
AZF_W_V_NET = "AZFW_VNet"
|
|
486
|
+
AZF_W_HUB = "AZFW_Hub"
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
class AzureFirewallSkuTier(str, Enum):
|
|
490
|
+
"""
|
|
491
|
+
Tier of an Azure Firewall.
|
|
492
|
+
"""
|
|
493
|
+
STANDARD = "Standard"
|
|
494
|
+
PREMIUM = "Premium"
|
|
495
|
+
BASIC = "Basic"
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
class AzureFirewallThreatIntelMode(str, Enum):
|
|
499
|
+
"""
|
|
500
|
+
The operation mode for Threat Intelligence.
|
|
501
|
+
"""
|
|
502
|
+
ALERT = "Alert"
|
|
503
|
+
DENY = "Deny"
|
|
504
|
+
OFF = "Off"
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
class BastionHostSkuName(str, Enum):
|
|
508
|
+
"""
|
|
509
|
+
The name of the sku of this Bastion Host.
|
|
510
|
+
"""
|
|
511
|
+
BASIC = "Basic"
|
|
512
|
+
STANDARD = "Standard"
|
|
513
|
+
DEVELOPER = "Developer"
|
|
514
|
+
PREMIUM = "Premium"
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
class CommissionedState(str, Enum):
|
|
518
|
+
"""
|
|
519
|
+
The commissioned state of the Custom IP Prefix.
|
|
520
|
+
"""
|
|
521
|
+
PROVISIONING = "Provisioning"
|
|
522
|
+
PROVISIONED = "Provisioned"
|
|
523
|
+
COMMISSIONING = "Commissioning"
|
|
524
|
+
COMMISSIONED_NO_INTERNET_ADVERTISE = "CommissionedNoInternetAdvertise"
|
|
525
|
+
COMMISSIONED = "Commissioned"
|
|
526
|
+
DECOMMISSIONING = "Decommissioning"
|
|
527
|
+
DEPROVISIONING = "Deprovisioning"
|
|
528
|
+
DEPROVISIONED = "Deprovisioned"
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
class ConfigurationType(str, Enum):
|
|
532
|
+
"""
|
|
533
|
+
Configuration Deployment Type.
|
|
534
|
+
"""
|
|
535
|
+
SECURITY_ADMIN = "SecurityAdmin"
|
|
536
|
+
CONNECTIVITY = "Connectivity"
|
|
537
|
+
SECURITY_USER = "SecurityUser"
|
|
538
|
+
ROUTING = "Routing"
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
class ConnectionMonitorEndpointFilterItemType(str, Enum):
|
|
542
|
+
"""
|
|
543
|
+
The type of item included in the filter. Currently only 'AgentAddress' is supported.
|
|
544
|
+
"""
|
|
545
|
+
AGENT_ADDRESS = "AgentAddress"
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
class ConnectionMonitorEndpointFilterType(str, Enum):
|
|
549
|
+
"""
|
|
550
|
+
The behavior of the endpoint filter. Currently only 'Include' is supported.
|
|
551
|
+
"""
|
|
552
|
+
INCLUDE = "Include"
|
|
553
|
+
|
|
554
|
+
|
|
555
|
+
class ConnectionMonitorTestConfigurationProtocol(str, Enum):
|
|
556
|
+
"""
|
|
557
|
+
The protocol to use in test evaluation.
|
|
558
|
+
"""
|
|
559
|
+
TCP = "Tcp"
|
|
560
|
+
HTTP = "Http"
|
|
561
|
+
ICMP = "Icmp"
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
class ConnectivityTopology(str, Enum):
|
|
565
|
+
"""
|
|
566
|
+
Connectivity topology type.
|
|
567
|
+
"""
|
|
568
|
+
HUB_AND_SPOKE = "HubAndSpoke"
|
|
569
|
+
MESH = "Mesh"
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
class CoverageLevel(str, Enum):
|
|
573
|
+
"""
|
|
574
|
+
Test coverage for the endpoint.
|
|
575
|
+
"""
|
|
576
|
+
DEFAULT = "Default"
|
|
577
|
+
LOW = "Low"
|
|
578
|
+
BELOW_AVERAGE = "BelowAverage"
|
|
579
|
+
AVERAGE = "Average"
|
|
580
|
+
ABOVE_AVERAGE = "AboveAverage"
|
|
581
|
+
FULL = "Full"
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
class CustomIpPrefixType(str, Enum):
|
|
585
|
+
"""
|
|
586
|
+
Type of custom IP prefix. Should be Singular, Parent, or Child.
|
|
587
|
+
"""
|
|
588
|
+
SINGULAR = "Singular"
|
|
589
|
+
PARENT = "Parent"
|
|
590
|
+
CHILD = "Child"
|
|
591
|
+
|
|
592
|
+
|
|
593
|
+
class DdosSettingsProtectionMode(str, Enum):
|
|
594
|
+
"""
|
|
595
|
+
The DDoS protection mode of the public IP
|
|
596
|
+
"""
|
|
597
|
+
VIRTUAL_NETWORK_INHERITED = "VirtualNetworkInherited"
|
|
598
|
+
ENABLED = "Enabled"
|
|
599
|
+
DISABLED = "Disabled"
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
class DeleteExistingPeering(str, Enum):
|
|
603
|
+
"""
|
|
604
|
+
Flag if need to remove current existing peerings.
|
|
605
|
+
"""
|
|
606
|
+
FALSE = "False"
|
|
607
|
+
TRUE = "True"
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
class DeleteOptions(str, Enum):
|
|
611
|
+
"""
|
|
612
|
+
Specify what happens to the public IP address when the VM using it is deleted
|
|
613
|
+
"""
|
|
614
|
+
DELETE = "Delete"
|
|
615
|
+
DETACH = "Detach"
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
class DestinationPortBehavior(str, Enum):
|
|
619
|
+
"""
|
|
620
|
+
Destination port behavior.
|
|
621
|
+
"""
|
|
622
|
+
NONE = "None"
|
|
623
|
+
LISTEN_IF_AVAILABLE = "ListenIfAvailable"
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
class DhGroup(str, Enum):
|
|
627
|
+
"""
|
|
628
|
+
The DH Group used in IKE Phase 1 for initial SA.
|
|
629
|
+
"""
|
|
630
|
+
NONE = "None"
|
|
631
|
+
DH_GROUP1 = "DHGroup1"
|
|
632
|
+
DH_GROUP2 = "DHGroup2"
|
|
633
|
+
DH_GROUP14 = "DHGroup14"
|
|
634
|
+
DH_GROUP2048 = "DHGroup2048"
|
|
635
|
+
ECP256 = "ECP256"
|
|
636
|
+
ECP384 = "ECP384"
|
|
637
|
+
DH_GROUP24 = "DHGroup24"
|
|
638
|
+
|
|
639
|
+
|
|
640
|
+
class DisableBgpRoutePropagation(str, Enum):
|
|
641
|
+
"""
|
|
642
|
+
Determines whether BGP route propagation is enabled. Defaults to true.
|
|
643
|
+
"""
|
|
644
|
+
FALSE = "False"
|
|
645
|
+
TRUE = "True"
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
class EndpointType(str, Enum):
|
|
649
|
+
"""
|
|
650
|
+
The endpoint type.
|
|
651
|
+
"""
|
|
652
|
+
AZURE_VM = "AzureVM"
|
|
653
|
+
AZURE_V_NET = "AzureVNet"
|
|
654
|
+
AZURE_SUBNET = "AzureSubnet"
|
|
655
|
+
EXTERNAL_ADDRESS = "ExternalAddress"
|
|
656
|
+
MMA_WORKSPACE_MACHINE = "MMAWorkspaceMachine"
|
|
657
|
+
MMA_WORKSPACE_NETWORK = "MMAWorkspaceNetwork"
|
|
658
|
+
AZURE_ARC_VM = "AzureArcVM"
|
|
659
|
+
AZURE_VMSS = "AzureVMSS"
|
|
660
|
+
AZURE_ARC_NETWORK = "AzureArcNetwork"
|
|
661
|
+
|
|
662
|
+
|
|
663
|
+
class ExceptionEntryMatchVariable(str, Enum):
|
|
664
|
+
"""
|
|
665
|
+
The variable on which we evaluate the exception condition
|
|
666
|
+
"""
|
|
667
|
+
REQUEST_URI = "RequestURI"
|
|
668
|
+
REMOTE_ADDR = "RemoteAddr"
|
|
669
|
+
REQUEST_HEADER = "RequestHeader"
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
class ExceptionEntrySelectorMatchOperator(str, Enum):
|
|
673
|
+
"""
|
|
674
|
+
When the matchVariable points to a key-value pair (e.g, RequestHeader), this operates on the selector
|
|
675
|
+
"""
|
|
676
|
+
EQUALS = "Equals"
|
|
677
|
+
CONTAINS = "Contains"
|
|
678
|
+
STARTS_WITH = "StartsWith"
|
|
679
|
+
ENDS_WITH = "EndsWith"
|
|
680
|
+
|
|
681
|
+
|
|
682
|
+
class ExceptionEntryValueMatchOperator(str, Enum):
|
|
683
|
+
"""
|
|
684
|
+
Operates on the allowed values for the matchVariable
|
|
685
|
+
"""
|
|
686
|
+
EQUALS = "Equals"
|
|
687
|
+
CONTAINS = "Contains"
|
|
688
|
+
STARTS_WITH = "StartsWith"
|
|
689
|
+
ENDS_WITH = "EndsWith"
|
|
690
|
+
IP_MATCH = "IPMatch"
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
class ExpressRouteCircuitPeeringState(str, Enum):
|
|
694
|
+
"""
|
|
695
|
+
The state of peering.
|
|
696
|
+
"""
|
|
697
|
+
DISABLED = "Disabled"
|
|
698
|
+
ENABLED = "Enabled"
|
|
699
|
+
|
|
700
|
+
|
|
701
|
+
class ExpressRouteCircuitSkuFamily(str, Enum):
|
|
702
|
+
"""
|
|
703
|
+
The family of the SKU.
|
|
704
|
+
"""
|
|
705
|
+
UNLIMITED_DATA = "UnlimitedData"
|
|
706
|
+
METERED_DATA = "MeteredData"
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
class ExpressRouteCircuitSkuTier(str, Enum):
|
|
710
|
+
"""
|
|
711
|
+
The tier of the SKU.
|
|
712
|
+
"""
|
|
713
|
+
STANDARD = "Standard"
|
|
714
|
+
PREMIUM = "Premium"
|
|
715
|
+
BASIC = "Basic"
|
|
716
|
+
LOCAL = "Local"
|
|
717
|
+
|
|
718
|
+
|
|
719
|
+
class ExpressRouteLinkAdminState(str, Enum):
|
|
720
|
+
"""
|
|
721
|
+
Administrative state of the physical port.
|
|
722
|
+
"""
|
|
723
|
+
ENABLED = "Enabled"
|
|
724
|
+
DISABLED = "Disabled"
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
class ExpressRouteLinkMacSecCipher(str, Enum):
|
|
728
|
+
"""
|
|
729
|
+
Mac security cipher.
|
|
730
|
+
"""
|
|
731
|
+
GCM_AES256 = "GcmAes256"
|
|
732
|
+
GCM_AES128 = "GcmAes128"
|
|
733
|
+
GCM_AES_XPN128 = "GcmAesXpn128"
|
|
734
|
+
GCM_AES_XPN256 = "GcmAesXpn256"
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
class ExpressRouteLinkMacSecSciState(str, Enum):
|
|
738
|
+
"""
|
|
739
|
+
Sci mode enabled/disabled.
|
|
740
|
+
"""
|
|
741
|
+
DISABLED = "Disabled"
|
|
742
|
+
ENABLED = "Enabled"
|
|
743
|
+
|
|
744
|
+
|
|
745
|
+
class ExpressRoutePeeringState(str, Enum):
|
|
746
|
+
"""
|
|
747
|
+
The peering state.
|
|
748
|
+
"""
|
|
749
|
+
DISABLED = "Disabled"
|
|
750
|
+
ENABLED = "Enabled"
|
|
751
|
+
|
|
752
|
+
|
|
753
|
+
class ExpressRoutePeeringType(str, Enum):
|
|
754
|
+
"""
|
|
755
|
+
The peering type.
|
|
756
|
+
"""
|
|
757
|
+
AZURE_PUBLIC_PEERING = "AzurePublicPeering"
|
|
758
|
+
AZURE_PRIVATE_PEERING = "AzurePrivatePeering"
|
|
759
|
+
MICROSOFT_PEERING = "MicrosoftPeering"
|
|
760
|
+
|
|
761
|
+
|
|
762
|
+
class ExpressRoutePortsBillingType(str, Enum):
|
|
763
|
+
"""
|
|
764
|
+
The billing type of the ExpressRoutePort resource.
|
|
765
|
+
"""
|
|
766
|
+
METERED_DATA = "MeteredData"
|
|
767
|
+
UNLIMITED_DATA = "UnlimitedData"
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
class ExpressRoutePortsEncapsulation(str, Enum):
|
|
771
|
+
"""
|
|
772
|
+
Encapsulation method on physical ports.
|
|
773
|
+
"""
|
|
774
|
+
DOT1_Q = "Dot1Q"
|
|
775
|
+
QIN_Q = "QinQ"
|
|
776
|
+
|
|
777
|
+
|
|
778
|
+
class ExtendedLocationTypes(str, Enum):
|
|
779
|
+
"""
|
|
780
|
+
The type of the extended location.
|
|
781
|
+
"""
|
|
782
|
+
EDGE_ZONE = "EdgeZone"
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
class FirewallPolicyFilterRuleCollectionActionType(str, Enum):
|
|
786
|
+
"""
|
|
787
|
+
The type of action.
|
|
788
|
+
"""
|
|
789
|
+
ALLOW = "Allow"
|
|
790
|
+
DENY = "Deny"
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
class FirewallPolicyIDPSQuerySortOrder(str, Enum):
|
|
794
|
+
"""
|
|
795
|
+
Describes if results should be in ascending/descending order
|
|
796
|
+
"""
|
|
797
|
+
ASCENDING = "Ascending"
|
|
798
|
+
DESCENDING = "Descending"
|
|
799
|
+
|
|
800
|
+
|
|
801
|
+
class FirewallPolicyIntrusionDetectionProfileType(str, Enum):
|
|
802
|
+
"""
|
|
803
|
+
IDPS profile name. When attached to a parent policy, the firewall's effective profile is the profile name of the parent policy.
|
|
804
|
+
"""
|
|
805
|
+
BASIC = "Basic"
|
|
806
|
+
STANDARD = "Standard"
|
|
807
|
+
ADVANCED = "Advanced"
|
|
808
|
+
EXTENDED = "Extended"
|
|
809
|
+
|
|
810
|
+
|
|
811
|
+
class FirewallPolicyIntrusionDetectionProtocol(str, Enum):
|
|
812
|
+
"""
|
|
813
|
+
The rule bypass protocol.
|
|
814
|
+
"""
|
|
815
|
+
TCP = "TCP"
|
|
816
|
+
UDP = "UDP"
|
|
817
|
+
ICMP = "ICMP"
|
|
818
|
+
ANY = "ANY"
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
class FirewallPolicyIntrusionDetectionStateType(str, Enum):
|
|
822
|
+
"""
|
|
823
|
+
Intrusion detection general state. When attached to a parent policy, the firewall's effective IDPS mode is the stricter mode of the two.
|
|
824
|
+
"""
|
|
825
|
+
OFF = "Off"
|
|
826
|
+
ALERT = "Alert"
|
|
827
|
+
DENY = "Deny"
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
class FirewallPolicyNatRuleCollectionActionType(str, Enum):
|
|
831
|
+
"""
|
|
832
|
+
The type of action.
|
|
833
|
+
"""
|
|
834
|
+
DNAT = "DNAT"
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
class FirewallPolicyRuleApplicationProtocolType(str, Enum):
|
|
838
|
+
"""
|
|
839
|
+
Protocol type.
|
|
840
|
+
"""
|
|
841
|
+
HTTP = "Http"
|
|
842
|
+
HTTPS = "Https"
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
class FirewallPolicyRuleCollectionType(str, Enum):
|
|
846
|
+
"""
|
|
847
|
+
The type of the rule collection.
|
|
848
|
+
"""
|
|
849
|
+
FIREWALL_POLICY_NAT_RULE_COLLECTION = "FirewallPolicyNatRuleCollection"
|
|
850
|
+
FIREWALL_POLICY_FILTER_RULE_COLLECTION = "FirewallPolicyFilterRuleCollection"
|
|
851
|
+
|
|
852
|
+
|
|
853
|
+
class FirewallPolicyRuleNetworkProtocol(str, Enum):
|
|
854
|
+
"""
|
|
855
|
+
The Network protocol of a Rule.
|
|
856
|
+
"""
|
|
857
|
+
TCP = "TCP"
|
|
858
|
+
UDP = "UDP"
|
|
859
|
+
ANY = "Any"
|
|
860
|
+
ICMP = "ICMP"
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
class FirewallPolicyRuleType(str, Enum):
|
|
864
|
+
"""
|
|
865
|
+
Rule Type.
|
|
866
|
+
"""
|
|
867
|
+
APPLICATION_RULE = "ApplicationRule"
|
|
868
|
+
NETWORK_RULE = "NetworkRule"
|
|
869
|
+
NAT_RULE = "NatRule"
|
|
870
|
+
|
|
871
|
+
|
|
872
|
+
class FirewallPolicySkuTier(str, Enum):
|
|
873
|
+
"""
|
|
874
|
+
Tier of Firewall Policy.
|
|
875
|
+
"""
|
|
876
|
+
STANDARD = "Standard"
|
|
877
|
+
PREMIUM = "Premium"
|
|
878
|
+
BASIC = "Basic"
|
|
879
|
+
|
|
880
|
+
|
|
881
|
+
class FlowLogFormatType(str, Enum):
|
|
882
|
+
"""
|
|
883
|
+
The file type of flow log.
|
|
884
|
+
"""
|
|
885
|
+
JSON = "JSON"
|
|
886
|
+
|
|
887
|
+
|
|
888
|
+
class GatewayLoadBalancerTunnelInterfaceType(str, Enum):
|
|
889
|
+
"""
|
|
890
|
+
Traffic type of gateway load balancer tunnel interface.
|
|
891
|
+
"""
|
|
892
|
+
NONE = "None"
|
|
893
|
+
INTERNAL = "Internal"
|
|
894
|
+
EXTERNAL = "External"
|
|
895
|
+
|
|
896
|
+
|
|
897
|
+
class GatewayLoadBalancerTunnelProtocol(str, Enum):
|
|
898
|
+
"""
|
|
899
|
+
Protocol of gateway load balancer tunnel interface.
|
|
900
|
+
"""
|
|
901
|
+
NONE = "None"
|
|
902
|
+
NATIVE = "Native"
|
|
903
|
+
VXLAN = "VXLAN"
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
class Geo(str, Enum):
|
|
907
|
+
"""
|
|
908
|
+
The Geo for CIDR advertising. Should be an Geo code.
|
|
909
|
+
"""
|
|
910
|
+
GLOBAL_ = "GLOBAL"
|
|
911
|
+
AFRI = "AFRI"
|
|
912
|
+
APAC = "APAC"
|
|
913
|
+
EURO = "EURO"
|
|
914
|
+
LATAM = "LATAM"
|
|
915
|
+
NAM = "NAM"
|
|
916
|
+
ME = "ME"
|
|
917
|
+
OCEANIA = "OCEANIA"
|
|
918
|
+
AQ = "AQ"
|
|
919
|
+
|
|
920
|
+
|
|
921
|
+
class GroupConnectivity(str, Enum):
|
|
922
|
+
"""
|
|
923
|
+
Group connectivity type.
|
|
924
|
+
"""
|
|
925
|
+
NONE = "None"
|
|
926
|
+
DIRECTLY_CONNECTED = "DirectlyConnected"
|
|
927
|
+
|
|
928
|
+
|
|
929
|
+
class GroupMemberType(str, Enum):
|
|
930
|
+
"""
|
|
931
|
+
The type of the group member.
|
|
932
|
+
"""
|
|
933
|
+
VIRTUAL_NETWORK = "VirtualNetwork"
|
|
934
|
+
SUBNET = "Subnet"
|
|
935
|
+
|
|
936
|
+
|
|
937
|
+
class HTTPConfigurationMethod(str, Enum):
|
|
938
|
+
"""
|
|
939
|
+
The HTTP method to use.
|
|
940
|
+
"""
|
|
941
|
+
GET = "Get"
|
|
942
|
+
POST = "Post"
|
|
943
|
+
|
|
944
|
+
|
|
945
|
+
class HubRoutingPreference(str, Enum):
|
|
946
|
+
"""
|
|
947
|
+
The hubRoutingPreference of this VirtualHub.
|
|
948
|
+
"""
|
|
949
|
+
EXPRESS_ROUTE = "ExpressRoute"
|
|
950
|
+
VPN_GATEWAY = "VpnGateway"
|
|
951
|
+
AS_PATH = "ASPath"
|
|
952
|
+
|
|
953
|
+
|
|
954
|
+
class IPAllocationMethod(str, Enum):
|
|
955
|
+
"""
|
|
956
|
+
The private IP address allocation method.
|
|
957
|
+
"""
|
|
958
|
+
STATIC = "Static"
|
|
959
|
+
DYNAMIC = "Dynamic"
|
|
960
|
+
|
|
961
|
+
|
|
962
|
+
class IPVersion(str, Enum):
|
|
963
|
+
"""
|
|
964
|
+
Whether the specific IP configuration is IPv4 or IPv6. Default is IPv4.
|
|
965
|
+
"""
|
|
966
|
+
I_PV4 = "IPv4"
|
|
967
|
+
I_PV6 = "IPv6"
|
|
968
|
+
|
|
969
|
+
|
|
970
|
+
class IkeEncryption(str, Enum):
|
|
971
|
+
"""
|
|
972
|
+
The IKE encryption algorithm (IKE phase 2).
|
|
973
|
+
"""
|
|
974
|
+
DES = "DES"
|
|
975
|
+
DES3 = "DES3"
|
|
976
|
+
AES128 = "AES128"
|
|
977
|
+
AES192 = "AES192"
|
|
978
|
+
AES256 = "AES256"
|
|
979
|
+
GCMAES256 = "GCMAES256"
|
|
980
|
+
GCMAES128 = "GCMAES128"
|
|
981
|
+
|
|
982
|
+
|
|
983
|
+
class IkeIntegrity(str, Enum):
|
|
984
|
+
"""
|
|
985
|
+
The IKE integrity algorithm (IKE phase 2).
|
|
986
|
+
"""
|
|
987
|
+
MD5 = "MD5"
|
|
988
|
+
SHA1 = "SHA1"
|
|
989
|
+
SHA256 = "SHA256"
|
|
990
|
+
SHA384 = "SHA384"
|
|
991
|
+
GCMAES256 = "GCMAES256"
|
|
992
|
+
GCMAES128 = "GCMAES128"
|
|
993
|
+
|
|
994
|
+
|
|
995
|
+
class IpAllocationType(str, Enum):
|
|
996
|
+
"""
|
|
997
|
+
The type for the IpAllocation.
|
|
998
|
+
"""
|
|
999
|
+
UNDEFINED = "Undefined"
|
|
1000
|
+
HYPERNET = "Hypernet"
|
|
1001
|
+
|
|
1002
|
+
|
|
1003
|
+
class IpsecEncryption(str, Enum):
|
|
1004
|
+
"""
|
|
1005
|
+
The IPSec encryption algorithm (IKE phase 1).
|
|
1006
|
+
"""
|
|
1007
|
+
NONE = "None"
|
|
1008
|
+
DES = "DES"
|
|
1009
|
+
DES3 = "DES3"
|
|
1010
|
+
AES128 = "AES128"
|
|
1011
|
+
AES192 = "AES192"
|
|
1012
|
+
AES256 = "AES256"
|
|
1013
|
+
GCMAES128 = "GCMAES128"
|
|
1014
|
+
GCMAES192 = "GCMAES192"
|
|
1015
|
+
GCMAES256 = "GCMAES256"
|
|
1016
|
+
|
|
1017
|
+
|
|
1018
|
+
class IpsecIntegrity(str, Enum):
|
|
1019
|
+
"""
|
|
1020
|
+
The IPSec integrity algorithm (IKE phase 1).
|
|
1021
|
+
"""
|
|
1022
|
+
MD5 = "MD5"
|
|
1023
|
+
SHA1 = "SHA1"
|
|
1024
|
+
SHA256 = "SHA256"
|
|
1025
|
+
GCMAES128 = "GCMAES128"
|
|
1026
|
+
GCMAES192 = "GCMAES192"
|
|
1027
|
+
GCMAES256 = "GCMAES256"
|
|
1028
|
+
|
|
1029
|
+
|
|
1030
|
+
class IsGlobal(str, Enum):
|
|
1031
|
+
"""
|
|
1032
|
+
Flag if global mesh is supported.
|
|
1033
|
+
"""
|
|
1034
|
+
FALSE = "False"
|
|
1035
|
+
TRUE = "True"
|
|
1036
|
+
|
|
1037
|
+
|
|
1038
|
+
class LoadBalancerBackendAddressAdminState(str, Enum):
|
|
1039
|
+
"""
|
|
1040
|
+
A list of administrative states which once set can override health probe so that Load Balancer will always forward new connections to backend, or deny new connections and reset existing connections.
|
|
1041
|
+
"""
|
|
1042
|
+
NONE = "None"
|
|
1043
|
+
UP = "Up"
|
|
1044
|
+
DOWN = "Down"
|
|
1045
|
+
|
|
1046
|
+
|
|
1047
|
+
class LoadBalancerOutboundRuleProtocol(str, Enum):
|
|
1048
|
+
"""
|
|
1049
|
+
The protocol for the outbound rule in load balancer.
|
|
1050
|
+
"""
|
|
1051
|
+
TCP = "Tcp"
|
|
1052
|
+
UDP = "Udp"
|
|
1053
|
+
ALL = "All"
|
|
1054
|
+
|
|
1055
|
+
|
|
1056
|
+
class LoadBalancerSkuName(str, Enum):
|
|
1057
|
+
"""
|
|
1058
|
+
Name of a load balancer SKU.
|
|
1059
|
+
"""
|
|
1060
|
+
BASIC = "Basic"
|
|
1061
|
+
STANDARD = "Standard"
|
|
1062
|
+
GATEWAY = "Gateway"
|
|
1063
|
+
|
|
1064
|
+
|
|
1065
|
+
class LoadBalancerSkuTier(str, Enum):
|
|
1066
|
+
"""
|
|
1067
|
+
Tier of a load balancer SKU.
|
|
1068
|
+
"""
|
|
1069
|
+
REGIONAL = "Regional"
|
|
1070
|
+
GLOBAL_ = "Global"
|
|
1071
|
+
|
|
1072
|
+
|
|
1073
|
+
class LoadDistribution(str, Enum):
|
|
1074
|
+
"""
|
|
1075
|
+
The load distribution policy for this rule.
|
|
1076
|
+
"""
|
|
1077
|
+
DEFAULT = "Default"
|
|
1078
|
+
SOURCE_IP = "SourceIP"
|
|
1079
|
+
SOURCE_IP_PROTOCOL = "SourceIPProtocol"
|
|
1080
|
+
|
|
1081
|
+
|
|
1082
|
+
class ManagedRuleEnabledState(str, Enum):
|
|
1083
|
+
"""
|
|
1084
|
+
The state of the managed rule. Defaults to Disabled if not specified.
|
|
1085
|
+
"""
|
|
1086
|
+
DISABLED = "Disabled"
|
|
1087
|
+
ENABLED = "Enabled"
|
|
1088
|
+
|
|
1089
|
+
|
|
1090
|
+
class NatGatewaySkuName(str, Enum):
|
|
1091
|
+
"""
|
|
1092
|
+
Name of Nat Gateway SKU.
|
|
1093
|
+
"""
|
|
1094
|
+
STANDARD = "Standard"
|
|
1095
|
+
|
|
1096
|
+
|
|
1097
|
+
class NetworkIntentPolicyBasedService(str, Enum):
|
|
1098
|
+
"""
|
|
1099
|
+
Network intent policy based services.
|
|
1100
|
+
"""
|
|
1101
|
+
NONE = "None"
|
|
1102
|
+
ALL = "All"
|
|
1103
|
+
ALLOW_RULES_ONLY = "AllowRulesOnly"
|
|
1104
|
+
|
|
1105
|
+
|
|
1106
|
+
class NetworkInterfaceAuxiliaryMode(str, Enum):
|
|
1107
|
+
"""
|
|
1108
|
+
Auxiliary mode of Network Interface resource.
|
|
1109
|
+
"""
|
|
1110
|
+
NONE = "None"
|
|
1111
|
+
MAX_CONNECTIONS = "MaxConnections"
|
|
1112
|
+
FLOATING = "Floating"
|
|
1113
|
+
ACCELERATED_CONNECTIONS = "AcceleratedConnections"
|
|
1114
|
+
|
|
1115
|
+
|
|
1116
|
+
class NetworkInterfaceAuxiliarySku(str, Enum):
|
|
1117
|
+
"""
|
|
1118
|
+
Auxiliary sku of Network Interface resource.
|
|
1119
|
+
"""
|
|
1120
|
+
NONE = "None"
|
|
1121
|
+
A1 = "A1"
|
|
1122
|
+
A2 = "A2"
|
|
1123
|
+
A4 = "A4"
|
|
1124
|
+
A8 = "A8"
|
|
1125
|
+
|
|
1126
|
+
|
|
1127
|
+
class NetworkInterfaceMigrationPhase(str, Enum):
|
|
1128
|
+
"""
|
|
1129
|
+
Migration phase of Network Interface resource.
|
|
1130
|
+
"""
|
|
1131
|
+
NONE = "None"
|
|
1132
|
+
PREPARE = "Prepare"
|
|
1133
|
+
COMMIT = "Commit"
|
|
1134
|
+
ABORT = "Abort"
|
|
1135
|
+
COMMITTED = "Committed"
|
|
1136
|
+
|
|
1137
|
+
|
|
1138
|
+
class NetworkInterfaceNicType(str, Enum):
|
|
1139
|
+
"""
|
|
1140
|
+
Type of Network Interface resource.
|
|
1141
|
+
"""
|
|
1142
|
+
STANDARD = "Standard"
|
|
1143
|
+
ELASTIC = "Elastic"
|
|
1144
|
+
|
|
1145
|
+
|
|
1146
|
+
class NextStep(str, Enum):
|
|
1147
|
+
"""
|
|
1148
|
+
Next step after rule is evaluated. Current supported behaviors are 'Continue'(to next rule) and 'Terminate'.
|
|
1149
|
+
"""
|
|
1150
|
+
UNKNOWN = "Unknown"
|
|
1151
|
+
CONTINUE_ = "Continue"
|
|
1152
|
+
TERMINATE = "Terminate"
|
|
1153
|
+
|
|
1154
|
+
|
|
1155
|
+
class NicTypeInRequest(str, Enum):
|
|
1156
|
+
"""
|
|
1157
|
+
NIC type. This should be either PublicNic or PrivateNic.
|
|
1158
|
+
"""
|
|
1159
|
+
PUBLIC_NIC = "PublicNic"
|
|
1160
|
+
PRIVATE_NIC = "PrivateNic"
|
|
1161
|
+
|
|
1162
|
+
|
|
1163
|
+
class OutputType(str, Enum):
|
|
1164
|
+
"""
|
|
1165
|
+
Connection monitor output destination type. Currently, only "Workspace" is supported.
|
|
1166
|
+
"""
|
|
1167
|
+
WORKSPACE = "Workspace"
|
|
1168
|
+
|
|
1169
|
+
|
|
1170
|
+
class OwaspCrsExclusionEntryMatchVariable(str, Enum):
|
|
1171
|
+
"""
|
|
1172
|
+
The variable to be excluded.
|
|
1173
|
+
"""
|
|
1174
|
+
REQUEST_HEADER_NAMES = "RequestHeaderNames"
|
|
1175
|
+
REQUEST_COOKIE_NAMES = "RequestCookieNames"
|
|
1176
|
+
REQUEST_ARG_NAMES = "RequestArgNames"
|
|
1177
|
+
REQUEST_HEADER_KEYS = "RequestHeaderKeys"
|
|
1178
|
+
REQUEST_HEADER_VALUES = "RequestHeaderValues"
|
|
1179
|
+
REQUEST_COOKIE_KEYS = "RequestCookieKeys"
|
|
1180
|
+
REQUEST_COOKIE_VALUES = "RequestCookieValues"
|
|
1181
|
+
REQUEST_ARG_KEYS = "RequestArgKeys"
|
|
1182
|
+
REQUEST_ARG_VALUES = "RequestArgValues"
|
|
1183
|
+
|
|
1184
|
+
|
|
1185
|
+
class OwaspCrsExclusionEntrySelectorMatchOperator(str, Enum):
|
|
1186
|
+
"""
|
|
1187
|
+
When matchVariable is a collection, operate on the selector to specify which elements in the collection this exclusion applies to.
|
|
1188
|
+
"""
|
|
1189
|
+
EQUALS = "Equals"
|
|
1190
|
+
CONTAINS = "Contains"
|
|
1191
|
+
STARTS_WITH = "StartsWith"
|
|
1192
|
+
ENDS_WITH = "EndsWith"
|
|
1193
|
+
EQUALS_ANY = "EqualsAny"
|
|
1194
|
+
|
|
1195
|
+
|
|
1196
|
+
class PacketCaptureTargetType(str, Enum):
|
|
1197
|
+
"""
|
|
1198
|
+
Target type of the resource provided.
|
|
1199
|
+
"""
|
|
1200
|
+
AZURE_VM = "AzureVM"
|
|
1201
|
+
AZURE_VMSS = "AzureVMSS"
|
|
1202
|
+
|
|
1203
|
+
|
|
1204
|
+
class PcProtocol(str, Enum):
|
|
1205
|
+
"""
|
|
1206
|
+
Protocol to be filtered on.
|
|
1207
|
+
"""
|
|
1208
|
+
TCP = "TCP"
|
|
1209
|
+
UDP = "UDP"
|
|
1210
|
+
ANY = "Any"
|
|
1211
|
+
|
|
1212
|
+
|
|
1213
|
+
class PfsGroup(str, Enum):
|
|
1214
|
+
"""
|
|
1215
|
+
The Pfs Group used in IKE Phase 2 for new child SA.
|
|
1216
|
+
"""
|
|
1217
|
+
NONE = "None"
|
|
1218
|
+
PFS1 = "PFS1"
|
|
1219
|
+
PFS2 = "PFS2"
|
|
1220
|
+
PFS2048 = "PFS2048"
|
|
1221
|
+
ECP256 = "ECP256"
|
|
1222
|
+
ECP384 = "ECP384"
|
|
1223
|
+
PFS24 = "PFS24"
|
|
1224
|
+
PFS14 = "PFS14"
|
|
1225
|
+
PFSMM = "PFSMM"
|
|
1226
|
+
|
|
1227
|
+
|
|
1228
|
+
class PreferredIPVersion(str, Enum):
|
|
1229
|
+
"""
|
|
1230
|
+
The preferred IP version to use in test evaluation. The connection monitor may choose to use a different version depending on other parameters.
|
|
1231
|
+
"""
|
|
1232
|
+
I_PV4 = "IPv4"
|
|
1233
|
+
I_PV6 = "IPv6"
|
|
1234
|
+
|
|
1235
|
+
|
|
1236
|
+
class PreferredRoutingGateway(str, Enum):
|
|
1237
|
+
"""
|
|
1238
|
+
The preferred gateway to route on-prem traffic
|
|
1239
|
+
"""
|
|
1240
|
+
EXPRESS_ROUTE = "ExpressRoute"
|
|
1241
|
+
VPN_GATEWAY = "VpnGateway"
|
|
1242
|
+
NONE = "None"
|
|
1243
|
+
|
|
1244
|
+
|
|
1245
|
+
class PrivateEndpointVNetPolicies(str, Enum):
|
|
1246
|
+
"""
|
|
1247
|
+
Private Endpoint VNet Policies.
|
|
1248
|
+
"""
|
|
1249
|
+
DISABLED = "Disabled"
|
|
1250
|
+
BASIC = "Basic"
|
|
1251
|
+
|
|
1252
|
+
|
|
1253
|
+
class ProbeNoHealthyBackendsBehavior(str, Enum):
|
|
1254
|
+
"""
|
|
1255
|
+
Determines how new connections are handled by the load balancer when all backend instances are probed down.
|
|
1256
|
+
"""
|
|
1257
|
+
ALL_PROBED_DOWN = "AllProbedDown"
|
|
1258
|
+
"""
|
|
1259
|
+
No new flows will be sent to the backend pool.
|
|
1260
|
+
"""
|
|
1261
|
+
ALL_PROBED_UP = "AllProbedUp"
|
|
1262
|
+
"""
|
|
1263
|
+
When all backend instances are probed down, incoming packets will be sent to all instances.
|
|
1264
|
+
"""
|
|
1265
|
+
|
|
1266
|
+
|
|
1267
|
+
class ProbeProtocol(str, Enum):
|
|
1268
|
+
"""
|
|
1269
|
+
The protocol of the end point. If 'Tcp' is specified, a received ACK is required for the probe to be successful. If 'Http' or 'Https' is specified, a 200 OK response from the specifies URI is required for the probe to be successful.
|
|
1270
|
+
"""
|
|
1271
|
+
HTTP = "Http"
|
|
1272
|
+
TCP = "Tcp"
|
|
1273
|
+
HTTPS = "Https"
|
|
1274
|
+
|
|
1275
|
+
|
|
1276
|
+
class ProtocolType(str, Enum):
|
|
1277
|
+
"""
|
|
1278
|
+
RNM supported protocol types.
|
|
1279
|
+
"""
|
|
1280
|
+
DO_NOT_USE = "DoNotUse"
|
|
1281
|
+
ICMP = "Icmp"
|
|
1282
|
+
TCP = "Tcp"
|
|
1283
|
+
UDP = "Udp"
|
|
1284
|
+
GRE = "Gre"
|
|
1285
|
+
ESP = "Esp"
|
|
1286
|
+
AH = "Ah"
|
|
1287
|
+
VXLAN = "Vxlan"
|
|
1288
|
+
ALL = "All"
|
|
1289
|
+
|
|
1290
|
+
|
|
1291
|
+
class PublicIPAddressMigrationPhase(str, Enum):
|
|
1292
|
+
"""
|
|
1293
|
+
Migration phase of Public IP Address.
|
|
1294
|
+
"""
|
|
1295
|
+
NONE = "None"
|
|
1296
|
+
PREPARE = "Prepare"
|
|
1297
|
+
COMMIT = "Commit"
|
|
1298
|
+
ABORT = "Abort"
|
|
1299
|
+
COMMITTED = "Committed"
|
|
1300
|
+
|
|
1301
|
+
|
|
1302
|
+
class PublicIPAddressSkuName(str, Enum):
|
|
1303
|
+
"""
|
|
1304
|
+
Name of a public IP address SKU.
|
|
1305
|
+
"""
|
|
1306
|
+
BASIC = "Basic"
|
|
1307
|
+
STANDARD = "Standard"
|
|
1308
|
+
|
|
1309
|
+
|
|
1310
|
+
class PublicIPAddressSkuTier(str, Enum):
|
|
1311
|
+
"""
|
|
1312
|
+
Tier of a public IP address SKU.
|
|
1313
|
+
"""
|
|
1314
|
+
REGIONAL = "Regional"
|
|
1315
|
+
GLOBAL_ = "Global"
|
|
1316
|
+
|
|
1317
|
+
|
|
1318
|
+
class PublicIPPrefixSkuName(str, Enum):
|
|
1319
|
+
"""
|
|
1320
|
+
Name of a public IP prefix SKU.
|
|
1321
|
+
"""
|
|
1322
|
+
STANDARD = "Standard"
|
|
1323
|
+
|
|
1324
|
+
|
|
1325
|
+
class PublicIPPrefixSkuTier(str, Enum):
|
|
1326
|
+
"""
|
|
1327
|
+
Tier of a public IP prefix SKU.
|
|
1328
|
+
"""
|
|
1329
|
+
REGIONAL = "Regional"
|
|
1330
|
+
GLOBAL_ = "Global"
|
|
1331
|
+
|
|
1332
|
+
|
|
1333
|
+
class PublicIpAddressDnsSettingsDomainNameLabelScope(str, Enum):
|
|
1334
|
+
"""
|
|
1335
|
+
The domain name label scope. If a domain name label and a domain name label scope are specified, an A DNS record is created for the public IP in the Microsoft Azure DNS system with a hashed value includes in FQDN.
|
|
1336
|
+
"""
|
|
1337
|
+
TENANT_REUSE = "TenantReuse"
|
|
1338
|
+
SUBSCRIPTION_REUSE = "SubscriptionReuse"
|
|
1339
|
+
RESOURCE_GROUP_REUSE = "ResourceGroupReuse"
|
|
1340
|
+
NO_REUSE = "NoReuse"
|
|
1341
|
+
|
|
1342
|
+
|
|
1343
|
+
class ResiliencyModel(str, Enum):
|
|
1344
|
+
"""
|
|
1345
|
+
Property to indicate if the Express Route Gateway has resiliency model of MultiHomed or SingleHomed
|
|
1346
|
+
"""
|
|
1347
|
+
SINGLE_HOMED = "SingleHomed"
|
|
1348
|
+
MULTI_HOMED = "MultiHomed"
|
|
1349
|
+
|
|
1350
|
+
|
|
1351
|
+
class ResourceIdentityType(str, Enum):
|
|
1352
|
+
"""
|
|
1353
|
+
The type of identity used for the resource. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the virtual machine.
|
|
1354
|
+
"""
|
|
1355
|
+
SYSTEM_ASSIGNED = "SystemAssigned"
|
|
1356
|
+
USER_ASSIGNED = "UserAssigned"
|
|
1357
|
+
SYSTEM_ASSIGNED_USER_ASSIGNED = "SystemAssigned, UserAssigned"
|
|
1358
|
+
NONE = "None"
|
|
1359
|
+
|
|
1360
|
+
|
|
1361
|
+
class RouteFilterRuleType(str, Enum):
|
|
1362
|
+
"""
|
|
1363
|
+
The rule type of the rule.
|
|
1364
|
+
"""
|
|
1365
|
+
COMMUNITY = "Community"
|
|
1366
|
+
|
|
1367
|
+
|
|
1368
|
+
class RouteMapActionType(str, Enum):
|
|
1369
|
+
"""
|
|
1370
|
+
Type of action to be taken. Supported types are 'Remove', 'Add', 'Replace', and 'Drop.'
|
|
1371
|
+
"""
|
|
1372
|
+
UNKNOWN = "Unknown"
|
|
1373
|
+
REMOVE = "Remove"
|
|
1374
|
+
ADD = "Add"
|
|
1375
|
+
REPLACE = "Replace"
|
|
1376
|
+
DROP = "Drop"
|
|
1377
|
+
|
|
1378
|
+
|
|
1379
|
+
class RouteMapMatchCondition(str, Enum):
|
|
1380
|
+
"""
|
|
1381
|
+
Match condition to apply RouteMap rules.
|
|
1382
|
+
"""
|
|
1383
|
+
UNKNOWN = "Unknown"
|
|
1384
|
+
CONTAINS = "Contains"
|
|
1385
|
+
EQUALS = "Equals"
|
|
1386
|
+
NOT_CONTAINS = "NotContains"
|
|
1387
|
+
NOT_EQUALS = "NotEquals"
|
|
1388
|
+
|
|
1389
|
+
|
|
1390
|
+
class RouteNextHopType(str, Enum):
|
|
1391
|
+
"""
|
|
1392
|
+
The type of Azure hop the packet should be sent to.
|
|
1393
|
+
"""
|
|
1394
|
+
VIRTUAL_NETWORK_GATEWAY = "VirtualNetworkGateway"
|
|
1395
|
+
VNET_LOCAL = "VnetLocal"
|
|
1396
|
+
INTERNET = "Internet"
|
|
1397
|
+
VIRTUAL_APPLIANCE = "VirtualAppliance"
|
|
1398
|
+
NONE = "None"
|
|
1399
|
+
|
|
1400
|
+
|
|
1401
|
+
class RoutingRuleDestinationType(str, Enum):
|
|
1402
|
+
"""
|
|
1403
|
+
Destination type.
|
|
1404
|
+
"""
|
|
1405
|
+
ADDRESS_PREFIX = "AddressPrefix"
|
|
1406
|
+
SERVICE_TAG = "ServiceTag"
|
|
1407
|
+
|
|
1408
|
+
|
|
1409
|
+
class RoutingRuleNextHopType(str, Enum):
|
|
1410
|
+
"""
|
|
1411
|
+
Next hop type.
|
|
1412
|
+
"""
|
|
1413
|
+
INTERNET = "Internet"
|
|
1414
|
+
NO_NEXT_HOP = "NoNextHop"
|
|
1415
|
+
VIRTUAL_APPLIANCE = "VirtualAppliance"
|
|
1416
|
+
VIRTUAL_NETWORK_GATEWAY = "VirtualNetworkGateway"
|
|
1417
|
+
VNET_LOCAL = "VnetLocal"
|
|
1418
|
+
|
|
1419
|
+
|
|
1420
|
+
class ScrubbingRuleEntryMatchOperator(str, Enum):
|
|
1421
|
+
"""
|
|
1422
|
+
When matchVariable is a collection, operate on the selector to specify which elements in the collection this rule applies to.
|
|
1423
|
+
"""
|
|
1424
|
+
EQUALS = "Equals"
|
|
1425
|
+
EQUALS_ANY = "EqualsAny"
|
|
1426
|
+
|
|
1427
|
+
|
|
1428
|
+
class ScrubbingRuleEntryMatchVariable(str, Enum):
|
|
1429
|
+
"""
|
|
1430
|
+
The variable to be scrubbed from the logs.
|
|
1431
|
+
"""
|
|
1432
|
+
REQUEST_HEADER_NAMES = "RequestHeaderNames"
|
|
1433
|
+
REQUEST_COOKIE_NAMES = "RequestCookieNames"
|
|
1434
|
+
REQUEST_ARG_NAMES = "RequestArgNames"
|
|
1435
|
+
REQUEST_POST_ARG_NAMES = "RequestPostArgNames"
|
|
1436
|
+
REQUEST_JSON_ARG_NAMES = "RequestJSONArgNames"
|
|
1437
|
+
REQUEST_IP_ADDRESS = "RequestIPAddress"
|
|
1438
|
+
|
|
1439
|
+
|
|
1440
|
+
class ScrubbingRuleEntryState(str, Enum):
|
|
1441
|
+
"""
|
|
1442
|
+
Defines the state of log scrubbing rule. Default value is Enabled.
|
|
1443
|
+
"""
|
|
1444
|
+
ENABLED = "Enabled"
|
|
1445
|
+
DISABLED = "Disabled"
|
|
1446
|
+
|
|
1447
|
+
|
|
1448
|
+
class SecurityConfigurationRuleAccess(str, Enum):
|
|
1449
|
+
"""
|
|
1450
|
+
Indicates the access allowed for this particular rule
|
|
1451
|
+
"""
|
|
1452
|
+
ALLOW = "Allow"
|
|
1453
|
+
DENY = "Deny"
|
|
1454
|
+
ALWAYS_ALLOW = "AlwaysAllow"
|
|
1455
|
+
|
|
1456
|
+
|
|
1457
|
+
class SecurityConfigurationRuleDirection(str, Enum):
|
|
1458
|
+
"""
|
|
1459
|
+
Indicates if the traffic matched against the rule in inbound or outbound.
|
|
1460
|
+
"""
|
|
1461
|
+
INBOUND = "Inbound"
|
|
1462
|
+
OUTBOUND = "Outbound"
|
|
1463
|
+
|
|
1464
|
+
|
|
1465
|
+
class SecurityConfigurationRuleProtocol(str, Enum):
|
|
1466
|
+
"""
|
|
1467
|
+
Network protocol this rule applies to.
|
|
1468
|
+
"""
|
|
1469
|
+
TCP = "Tcp"
|
|
1470
|
+
UDP = "Udp"
|
|
1471
|
+
ICMP = "Icmp"
|
|
1472
|
+
ESP = "Esp"
|
|
1473
|
+
ANY = "Any"
|
|
1474
|
+
AH = "Ah"
|
|
1475
|
+
|
|
1476
|
+
|
|
1477
|
+
class SecurityProviderName(str, Enum):
|
|
1478
|
+
"""
|
|
1479
|
+
The security provider name.
|
|
1480
|
+
"""
|
|
1481
|
+
Z_SCALER = "ZScaler"
|
|
1482
|
+
I_BOSS = "IBoss"
|
|
1483
|
+
CHECKPOINT = "Checkpoint"
|
|
1484
|
+
|
|
1485
|
+
|
|
1486
|
+
class SecurityRuleAccess(str, Enum):
|
|
1487
|
+
"""
|
|
1488
|
+
The network traffic is allowed or denied.
|
|
1489
|
+
"""
|
|
1490
|
+
ALLOW = "Allow"
|
|
1491
|
+
DENY = "Deny"
|
|
1492
|
+
|
|
1493
|
+
|
|
1494
|
+
class SecurityRuleDirection(str, Enum):
|
|
1495
|
+
"""
|
|
1496
|
+
The direction of the rule. The direction specifies if rule will be evaluated on incoming or outgoing traffic.
|
|
1497
|
+
"""
|
|
1498
|
+
INBOUND = "Inbound"
|
|
1499
|
+
OUTBOUND = "Outbound"
|
|
1500
|
+
|
|
1501
|
+
|
|
1502
|
+
class SecurityRuleProtocol(str, Enum):
|
|
1503
|
+
"""
|
|
1504
|
+
Network protocol this rule applies to.
|
|
1505
|
+
"""
|
|
1506
|
+
TCP = "Tcp"
|
|
1507
|
+
UDP = "Udp"
|
|
1508
|
+
ICMP = "Icmp"
|
|
1509
|
+
ESP = "Esp"
|
|
1510
|
+
ASTERISK = "*"
|
|
1511
|
+
AH = "Ah"
|
|
1512
|
+
|
|
1513
|
+
|
|
1514
|
+
class SensitivityType(str, Enum):
|
|
1515
|
+
"""
|
|
1516
|
+
Describes the override sensitivity to be applied when rule matches.
|
|
1517
|
+
"""
|
|
1518
|
+
NONE = "None"
|
|
1519
|
+
LOW = "Low"
|
|
1520
|
+
MEDIUM = "Medium"
|
|
1521
|
+
HIGH = "High"
|
|
1522
|
+
|
|
1523
|
+
|
|
1524
|
+
class ServiceProviderProvisioningState(str, Enum):
|
|
1525
|
+
"""
|
|
1526
|
+
The ServiceProviderProvisioningState state of the resource.
|
|
1527
|
+
"""
|
|
1528
|
+
NOT_PROVISIONED = "NotProvisioned"
|
|
1529
|
+
PROVISIONING = "Provisioning"
|
|
1530
|
+
PROVISIONED = "Provisioned"
|
|
1531
|
+
DEPROVISIONING = "Deprovisioning"
|
|
1532
|
+
|
|
1533
|
+
|
|
1534
|
+
class SharingScope(str, Enum):
|
|
1535
|
+
"""
|
|
1536
|
+
Set this property to Tenant to allow sharing subnet with other subscriptions in your AAD tenant. This property can only be set if defaultOutboundAccess is set to false, both properties can only be set if subnet is empty.
|
|
1537
|
+
"""
|
|
1538
|
+
TENANT = "Tenant"
|
|
1539
|
+
DELEGATED_SERVICES = "DelegatedServices"
|
|
1540
|
+
|
|
1541
|
+
|
|
1542
|
+
class SyncMode(str, Enum):
|
|
1543
|
+
"""
|
|
1544
|
+
Backend address synchronous mode for the backend pool
|
|
1545
|
+
"""
|
|
1546
|
+
AUTOMATIC = "Automatic"
|
|
1547
|
+
MANUAL = "Manual"
|
|
1548
|
+
|
|
1549
|
+
|
|
1550
|
+
class TransportProtocol(str, Enum):
|
|
1551
|
+
"""
|
|
1552
|
+
The reference to the transport protocol used by the load balancing rule.
|
|
1553
|
+
"""
|
|
1554
|
+
UDP = "Udp"
|
|
1555
|
+
TCP = "Tcp"
|
|
1556
|
+
ALL = "All"
|
|
1557
|
+
|
|
1558
|
+
|
|
1559
|
+
class UseHubGateway(str, Enum):
|
|
1560
|
+
"""
|
|
1561
|
+
Flag if need to use hub gateway.
|
|
1562
|
+
"""
|
|
1563
|
+
FALSE = "False"
|
|
1564
|
+
TRUE = "True"
|
|
1565
|
+
|
|
1566
|
+
|
|
1567
|
+
class VirtualNetworkEncryptionEnforcement(str, Enum):
|
|
1568
|
+
"""
|
|
1569
|
+
If the encrypted VNet allows VM that does not support encryption. This field is for future support, AllowUnencrypted is the only supported value at general availability.
|
|
1570
|
+
"""
|
|
1571
|
+
DROP_UNENCRYPTED = "DropUnencrypted"
|
|
1572
|
+
ALLOW_UNENCRYPTED = "AllowUnencrypted"
|
|
1573
|
+
|
|
1574
|
+
|
|
1575
|
+
class VirtualNetworkGatewayConnectionMode(str, Enum):
|
|
1576
|
+
"""
|
|
1577
|
+
The connection mode for this connection.
|
|
1578
|
+
"""
|
|
1579
|
+
DEFAULT = "Default"
|
|
1580
|
+
RESPONDER_ONLY = "ResponderOnly"
|
|
1581
|
+
INITIATOR_ONLY = "InitiatorOnly"
|
|
1582
|
+
|
|
1583
|
+
|
|
1584
|
+
class VirtualNetworkGatewayConnectionProtocol(str, Enum):
|
|
1585
|
+
"""
|
|
1586
|
+
Connection protocol used for this connection.
|
|
1587
|
+
"""
|
|
1588
|
+
IK_EV2 = "IKEv2"
|
|
1589
|
+
IK_EV1 = "IKEv1"
|
|
1590
|
+
|
|
1591
|
+
|
|
1592
|
+
class VirtualNetworkGatewayConnectionType(str, Enum):
|
|
1593
|
+
"""
|
|
1594
|
+
Gateway connection type.
|
|
1595
|
+
"""
|
|
1596
|
+
IPSEC = "IPsec"
|
|
1597
|
+
VNET2_VNET = "Vnet2Vnet"
|
|
1598
|
+
EXPRESS_ROUTE = "ExpressRoute"
|
|
1599
|
+
VPN_CLIENT = "VPNClient"
|
|
1600
|
+
|
|
1601
|
+
|
|
1602
|
+
class VirtualNetworkGatewaySkuName(str, Enum):
|
|
1603
|
+
"""
|
|
1604
|
+
Gateway SKU name.
|
|
1605
|
+
"""
|
|
1606
|
+
BASIC = "Basic"
|
|
1607
|
+
HIGH_PERFORMANCE = "HighPerformance"
|
|
1608
|
+
STANDARD = "Standard"
|
|
1609
|
+
ULTRA_PERFORMANCE = "UltraPerformance"
|
|
1610
|
+
VPN_GW1 = "VpnGw1"
|
|
1611
|
+
VPN_GW2 = "VpnGw2"
|
|
1612
|
+
VPN_GW3 = "VpnGw3"
|
|
1613
|
+
VPN_GW4 = "VpnGw4"
|
|
1614
|
+
VPN_GW5 = "VpnGw5"
|
|
1615
|
+
VPN_GW1_AZ = "VpnGw1AZ"
|
|
1616
|
+
VPN_GW2_AZ = "VpnGw2AZ"
|
|
1617
|
+
VPN_GW3_AZ = "VpnGw3AZ"
|
|
1618
|
+
VPN_GW4_AZ = "VpnGw4AZ"
|
|
1619
|
+
VPN_GW5_AZ = "VpnGw5AZ"
|
|
1620
|
+
ER_GW1_AZ = "ErGw1AZ"
|
|
1621
|
+
ER_GW2_AZ = "ErGw2AZ"
|
|
1622
|
+
ER_GW3_AZ = "ErGw3AZ"
|
|
1623
|
+
ER_GW_SCALE = "ErGwScale"
|
|
1624
|
+
|
|
1625
|
+
|
|
1626
|
+
class VirtualNetworkGatewaySkuTier(str, Enum):
|
|
1627
|
+
"""
|
|
1628
|
+
Gateway SKU tier.
|
|
1629
|
+
"""
|
|
1630
|
+
BASIC = "Basic"
|
|
1631
|
+
HIGH_PERFORMANCE = "HighPerformance"
|
|
1632
|
+
STANDARD = "Standard"
|
|
1633
|
+
ULTRA_PERFORMANCE = "UltraPerformance"
|
|
1634
|
+
VPN_GW1 = "VpnGw1"
|
|
1635
|
+
VPN_GW2 = "VpnGw2"
|
|
1636
|
+
VPN_GW3 = "VpnGw3"
|
|
1637
|
+
VPN_GW4 = "VpnGw4"
|
|
1638
|
+
VPN_GW5 = "VpnGw5"
|
|
1639
|
+
VPN_GW1_AZ = "VpnGw1AZ"
|
|
1640
|
+
VPN_GW2_AZ = "VpnGw2AZ"
|
|
1641
|
+
VPN_GW3_AZ = "VpnGw3AZ"
|
|
1642
|
+
VPN_GW4_AZ = "VpnGw4AZ"
|
|
1643
|
+
VPN_GW5_AZ = "VpnGw5AZ"
|
|
1644
|
+
ER_GW1_AZ = "ErGw1AZ"
|
|
1645
|
+
ER_GW2_AZ = "ErGw2AZ"
|
|
1646
|
+
ER_GW3_AZ = "ErGw3AZ"
|
|
1647
|
+
ER_GW_SCALE = "ErGwScale"
|
|
1648
|
+
|
|
1649
|
+
|
|
1650
|
+
class VirtualNetworkGatewayType(str, Enum):
|
|
1651
|
+
"""
|
|
1652
|
+
The type of this virtual network gateway.
|
|
1653
|
+
"""
|
|
1654
|
+
VPN = "Vpn"
|
|
1655
|
+
EXPRESS_ROUTE = "ExpressRoute"
|
|
1656
|
+
LOCAL_GATEWAY = "LocalGateway"
|
|
1657
|
+
|
|
1658
|
+
|
|
1659
|
+
class VirtualNetworkPeeringLevel(str, Enum):
|
|
1660
|
+
"""
|
|
1661
|
+
The peering sync status of the virtual network peering.
|
|
1662
|
+
"""
|
|
1663
|
+
FULLY_IN_SYNC = "FullyInSync"
|
|
1664
|
+
REMOTE_NOT_IN_SYNC = "RemoteNotInSync"
|
|
1665
|
+
LOCAL_NOT_IN_SYNC = "LocalNotInSync"
|
|
1666
|
+
LOCAL_AND_REMOTE_NOT_IN_SYNC = "LocalAndRemoteNotInSync"
|
|
1667
|
+
|
|
1668
|
+
|
|
1669
|
+
class VirtualNetworkPeeringState(str, Enum):
|
|
1670
|
+
"""
|
|
1671
|
+
The status of the virtual network peering.
|
|
1672
|
+
"""
|
|
1673
|
+
INITIATED = "Initiated"
|
|
1674
|
+
CONNECTED = "Connected"
|
|
1675
|
+
DISCONNECTED = "Disconnected"
|
|
1676
|
+
|
|
1677
|
+
|
|
1678
|
+
class VirtualNetworkPrivateEndpointNetworkPolicies(str, Enum):
|
|
1679
|
+
"""
|
|
1680
|
+
Enable or Disable apply network policies on private end point in the subnet.
|
|
1681
|
+
"""
|
|
1682
|
+
ENABLED = "Enabled"
|
|
1683
|
+
DISABLED = "Disabled"
|
|
1684
|
+
NETWORK_SECURITY_GROUP_ENABLED = "NetworkSecurityGroupEnabled"
|
|
1685
|
+
ROUTE_TABLE_ENABLED = "RouteTableEnabled"
|
|
1686
|
+
|
|
1687
|
+
|
|
1688
|
+
class VirtualNetworkPrivateLinkServiceNetworkPolicies(str, Enum):
|
|
1689
|
+
"""
|
|
1690
|
+
Enable or Disable apply network policies on private link service in the subnet.
|
|
1691
|
+
"""
|
|
1692
|
+
ENABLED = "Enabled"
|
|
1693
|
+
DISABLED = "Disabled"
|
|
1694
|
+
|
|
1695
|
+
|
|
1696
|
+
class VnetLocalRouteOverrideCriteria(str, Enum):
|
|
1697
|
+
"""
|
|
1698
|
+
Parameter determining whether NVA in spoke vnet is bypassed for traffic with destination in spoke.
|
|
1699
|
+
"""
|
|
1700
|
+
CONTAINS = "Contains"
|
|
1701
|
+
EQUAL = "Equal"
|
|
1702
|
+
|
|
1703
|
+
|
|
1704
|
+
class VpnAuthenticationType(str, Enum):
|
|
1705
|
+
"""
|
|
1706
|
+
VPN authentication types enabled for the VpnServerConfiguration.
|
|
1707
|
+
"""
|
|
1708
|
+
CERTIFICATE = "Certificate"
|
|
1709
|
+
RADIUS = "Radius"
|
|
1710
|
+
AAD = "AAD"
|
|
1711
|
+
|
|
1712
|
+
|
|
1713
|
+
class VpnClientProtocol(str, Enum):
|
|
1714
|
+
"""
|
|
1715
|
+
VPN client protocol enabled for the virtual network gateway.
|
|
1716
|
+
"""
|
|
1717
|
+
IKE_V2 = "IkeV2"
|
|
1718
|
+
SSTP = "SSTP"
|
|
1719
|
+
OPEN_VPN = "OpenVPN"
|
|
1720
|
+
|
|
1721
|
+
|
|
1722
|
+
class VpnGatewayGeneration(str, Enum):
|
|
1723
|
+
"""
|
|
1724
|
+
The generation for this VirtualNetworkGateway. Must be None if gatewayType is not VPN.
|
|
1725
|
+
"""
|
|
1726
|
+
NONE = "None"
|
|
1727
|
+
GENERATION1 = "Generation1"
|
|
1728
|
+
GENERATION2 = "Generation2"
|
|
1729
|
+
|
|
1730
|
+
|
|
1731
|
+
class VpnGatewayTunnelingProtocol(str, Enum):
|
|
1732
|
+
"""
|
|
1733
|
+
VPN protocol enabled for the VpnServerConfiguration.
|
|
1734
|
+
"""
|
|
1735
|
+
IKE_V2 = "IkeV2"
|
|
1736
|
+
OPEN_VPN = "OpenVPN"
|
|
1737
|
+
|
|
1738
|
+
|
|
1739
|
+
class VpnLinkConnectionMode(str, Enum):
|
|
1740
|
+
"""
|
|
1741
|
+
Vpn link connection mode.
|
|
1742
|
+
"""
|
|
1743
|
+
DEFAULT = "Default"
|
|
1744
|
+
RESPONDER_ONLY = "ResponderOnly"
|
|
1745
|
+
INITIATOR_ONLY = "InitiatorOnly"
|
|
1746
|
+
|
|
1747
|
+
|
|
1748
|
+
class VpnNatRuleMode(str, Enum):
|
|
1749
|
+
"""
|
|
1750
|
+
The Source NAT direction of a VPN NAT.
|
|
1751
|
+
"""
|
|
1752
|
+
EGRESS_SNAT = "EgressSnat"
|
|
1753
|
+
INGRESS_SNAT = "IngressSnat"
|
|
1754
|
+
|
|
1755
|
+
|
|
1756
|
+
class VpnNatRuleType(str, Enum):
|
|
1757
|
+
"""
|
|
1758
|
+
The type of NAT rule for VPN NAT.
|
|
1759
|
+
"""
|
|
1760
|
+
STATIC = "Static"
|
|
1761
|
+
DYNAMIC = "Dynamic"
|
|
1762
|
+
|
|
1763
|
+
|
|
1764
|
+
class VpnPolicyMemberAttributeType(str, Enum):
|
|
1765
|
+
"""
|
|
1766
|
+
The Vpn Policy member attribute type.
|
|
1767
|
+
"""
|
|
1768
|
+
CERTIFICATE_GROUP_ID = "CertificateGroupId"
|
|
1769
|
+
AAD_GROUP_ID = "AADGroupId"
|
|
1770
|
+
RADIUS_AZURE_GROUP_ID = "RadiusAzureGroupId"
|
|
1771
|
+
|
|
1772
|
+
|
|
1773
|
+
class VpnType(str, Enum):
|
|
1774
|
+
"""
|
|
1775
|
+
The type of this virtual network gateway.
|
|
1776
|
+
"""
|
|
1777
|
+
POLICY_BASED = "PolicyBased"
|
|
1778
|
+
ROUTE_BASED = "RouteBased"
|
|
1779
|
+
|
|
1780
|
+
|
|
1781
|
+
class WebApplicationFirewallAction(str, Enum):
|
|
1782
|
+
"""
|
|
1783
|
+
Type of Actions.
|
|
1784
|
+
"""
|
|
1785
|
+
ALLOW = "Allow"
|
|
1786
|
+
BLOCK = "Block"
|
|
1787
|
+
LOG = "Log"
|
|
1788
|
+
JS_CHALLENGE = "JSChallenge"
|
|
1789
|
+
|
|
1790
|
+
|
|
1791
|
+
class WebApplicationFirewallEnabledState(str, Enum):
|
|
1792
|
+
"""
|
|
1793
|
+
The state of the policy.
|
|
1794
|
+
"""
|
|
1795
|
+
DISABLED = "Disabled"
|
|
1796
|
+
ENABLED = "Enabled"
|
|
1797
|
+
|
|
1798
|
+
|
|
1799
|
+
class WebApplicationFirewallMatchVariable(str, Enum):
|
|
1800
|
+
"""
|
|
1801
|
+
Match Variable.
|
|
1802
|
+
"""
|
|
1803
|
+
REMOTE_ADDR = "RemoteAddr"
|
|
1804
|
+
REQUEST_METHOD = "RequestMethod"
|
|
1805
|
+
QUERY_STRING = "QueryString"
|
|
1806
|
+
POST_ARGS = "PostArgs"
|
|
1807
|
+
REQUEST_URI = "RequestUri"
|
|
1808
|
+
REQUEST_HEADERS = "RequestHeaders"
|
|
1809
|
+
REQUEST_BODY = "RequestBody"
|
|
1810
|
+
REQUEST_COOKIES = "RequestCookies"
|
|
1811
|
+
|
|
1812
|
+
|
|
1813
|
+
class WebApplicationFirewallMode(str, Enum):
|
|
1814
|
+
"""
|
|
1815
|
+
The mode of the policy.
|
|
1816
|
+
"""
|
|
1817
|
+
PREVENTION = "Prevention"
|
|
1818
|
+
DETECTION = "Detection"
|
|
1819
|
+
|
|
1820
|
+
|
|
1821
|
+
class WebApplicationFirewallOperator(str, Enum):
|
|
1822
|
+
"""
|
|
1823
|
+
The operator to be matched.
|
|
1824
|
+
"""
|
|
1825
|
+
IP_MATCH = "IPMatch"
|
|
1826
|
+
EQUAL = "Equal"
|
|
1827
|
+
CONTAINS = "Contains"
|
|
1828
|
+
LESS_THAN = "LessThan"
|
|
1829
|
+
GREATER_THAN = "GreaterThan"
|
|
1830
|
+
LESS_THAN_OR_EQUAL = "LessThanOrEqual"
|
|
1831
|
+
GREATER_THAN_OR_EQUAL = "GreaterThanOrEqual"
|
|
1832
|
+
BEGINS_WITH = "BeginsWith"
|
|
1833
|
+
ENDS_WITH = "EndsWith"
|
|
1834
|
+
REGEX = "Regex"
|
|
1835
|
+
GEO_MATCH = "GeoMatch"
|
|
1836
|
+
ANY = "Any"
|
|
1837
|
+
|
|
1838
|
+
|
|
1839
|
+
class WebApplicationFirewallRuleType(str, Enum):
|
|
1840
|
+
"""
|
|
1841
|
+
The rule type.
|
|
1842
|
+
"""
|
|
1843
|
+
MATCH_RULE = "MatchRule"
|
|
1844
|
+
RATE_LIMIT_RULE = "RateLimitRule"
|
|
1845
|
+
INVALID = "Invalid"
|
|
1846
|
+
|
|
1847
|
+
|
|
1848
|
+
class WebApplicationFirewallScrubbingState(str, Enum):
|
|
1849
|
+
"""
|
|
1850
|
+
State of the log scrubbing config. Default value is Enabled.
|
|
1851
|
+
"""
|
|
1852
|
+
DISABLED = "Disabled"
|
|
1853
|
+
ENABLED = "Enabled"
|
|
1854
|
+
|
|
1855
|
+
|
|
1856
|
+
class WebApplicationFirewallState(str, Enum):
|
|
1857
|
+
"""
|
|
1858
|
+
Describes if the custom rule is in enabled or disabled state. Defaults to Enabled if not specified.
|
|
1859
|
+
"""
|
|
1860
|
+
DISABLED = "Disabled"
|
|
1861
|
+
ENABLED = "Enabled"
|
|
1862
|
+
|
|
1863
|
+
|
|
1864
|
+
class WebApplicationFirewallTransform(str, Enum):
|
|
1865
|
+
"""
|
|
1866
|
+
Transforms applied before matching.
|
|
1867
|
+
"""
|
|
1868
|
+
UPPERCASE = "Uppercase"
|
|
1869
|
+
LOWERCASE = "Lowercase"
|
|
1870
|
+
TRIM = "Trim"
|
|
1871
|
+
URL_DECODE = "UrlDecode"
|
|
1872
|
+
URL_ENCODE = "UrlEncode"
|
|
1873
|
+
REMOVE_NULLS = "RemoveNulls"
|
|
1874
|
+
HTML_ENTITY_DECODE = "HtmlEntityDecode"
|