pulumi-azure-native 2.61.0a1726045166__py3-none-any.whl → 2.62.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +434 -1
- pulumi_azure_native/appconfiguration/__init__.py +3 -0
- pulumi_azure_native/appconfiguration/configuration_store.py +3 -3
- pulumi_azure_native/appconfiguration/get_configuration_store.py +2 -2
- pulumi_azure_native/appconfiguration/get_key_value.py +2 -2
- pulumi_azure_native/appconfiguration/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/appconfiguration/get_replica.py +2 -2
- pulumi_azure_native/appconfiguration/key_value.py +3 -3
- pulumi_azure_native/appconfiguration/list_configuration_store_keys.py +2 -2
- pulumi_azure_native/appconfiguration/private_endpoint_connection.py +3 -3
- pulumi_azure_native/appconfiguration/replica.py +3 -3
- pulumi_azure_native/appconfiguration/v20230301/configuration_store.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/key_value.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/private_endpoint_connection.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/replica.py +1 -1
- pulumi_azure_native/appconfiguration/v20230801preview/configuration_store.py +1 -1
- pulumi_azure_native/appconfiguration/v20230801preview/key_value.py +1 -1
- pulumi_azure_native/appconfiguration/v20230801preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/appconfiguration/v20230801preview/replica.py +1 -1
- pulumi_azure_native/appconfiguration/v20230901preview/configuration_store.py +1 -1
- pulumi_azure_native/appconfiguration/v20230901preview/key_value.py +1 -1
- pulumi_azure_native/appconfiguration/v20230901preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/appconfiguration/v20230901preview/replica.py +1 -1
- pulumi_azure_native/appconfiguration/v20240501/__init__.py +19 -0
- pulumi_azure_native/appconfiguration/v20240501/_enums.py +78 -0
- pulumi_azure_native/appconfiguration/v20240501/_inputs.py +367 -0
- pulumi_azure_native/appconfiguration/v20240501/configuration_store.py +534 -0
- pulumi_azure_native/appconfiguration/v20240501/get_configuration_store.py +305 -0
- pulumi_azure_native/appconfiguration/v20240501/get_key_value.py +222 -0
- pulumi_azure_native/appconfiguration/v20240501/get_private_endpoint_connection.py +154 -0
- pulumi_azure_native/appconfiguration/v20240501/get_replica.py +167 -0
- pulumi_azure_native/appconfiguration/v20240501/key_value.py +323 -0
- pulumi_azure_native/appconfiguration/v20240501/list_configuration_store_keys.py +102 -0
- pulumi_azure_native/appconfiguration/v20240501/outputs.py +704 -0
- pulumi_azure_native/appconfiguration/v20240501/private_endpoint_connection.py +251 -0
- pulumi_azure_native/appconfiguration/v20240501/replica.py +239 -0
- pulumi_azure_native/containerservice/__init__.py +3 -0
- pulumi_azure_native/containerservice/agent_pool.py +3 -3
- pulumi_azure_native/containerservice/get_agent_pool.py +2 -2
- pulumi_azure_native/containerservice/get_load_balancer.py +2 -2
- pulumi_azure_native/containerservice/get_maintenance_configuration.py +2 -2
- pulumi_azure_native/containerservice/get_managed_cluster.py +2 -2
- pulumi_azure_native/containerservice/get_managed_cluster_snapshot.py +2 -2
- pulumi_azure_native/containerservice/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/containerservice/get_snapshot.py +2 -2
- pulumi_azure_native/containerservice/get_trusted_access_role_binding.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_admin_credentials.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_monitoring_user_credentials.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_user_credentials.py +2 -2
- pulumi_azure_native/containerservice/load_balancer.py +3 -3
- pulumi_azure_native/containerservice/maintenance_configuration.py +3 -3
- pulumi_azure_native/containerservice/managed_cluster.py +3 -3
- pulumi_azure_native/containerservice/managed_cluster_snapshot.py +3 -3
- pulumi_azure_native/containerservice/private_endpoint_connection.py +3 -3
- pulumi_azure_native/containerservice/snapshot.py +3 -3
- pulumi_azure_native/containerservice/trusted_access_role_binding.py +3 -3
- pulumi_azure_native/containerservice/v20190601/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20200601/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20210201/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20210501/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20210801/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20220402preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230401/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230401/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230401/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230401/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230401/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230601/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230601/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230601/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230601/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230601/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230701/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230701/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230701/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230701/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230701/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230801/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230801/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230801/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230801/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230801/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230901/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230901/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230901/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230901/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230901/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230901/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20231001/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20231001/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20231001/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20231001/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20231001/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231001/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20231101/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20231101/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20231101/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20231101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20231101/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231101/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240101/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240101/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240101/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240101/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240101/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240102preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240102preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240102preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240102preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240102preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240102preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240102preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240201/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240201/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240201/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240201/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240201/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240201/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240202preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240202preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240202preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240202preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240202preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240202preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240202preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240302preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240302preview/load_balancer.py +1 -1
- pulumi_azure_native/containerservice/v20240302preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240302preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240302preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240302preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240302preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240302preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240402preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240402preview/load_balancer.py +1 -1
- pulumi_azure_native/containerservice/v20240402preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240402preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240402preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240402preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240402preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240402preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240501/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240501/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240501/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240501/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240501/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240501/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240502preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240502preview/load_balancer.py +1 -1
- pulumi_azure_native/containerservice/v20240502preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240502preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240502preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240502preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240502preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240502preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240602preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240602preview/load_balancer.py +1 -1
- pulumi_azure_native/containerservice/v20240602preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240602preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240602preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240602preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240602preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240602preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240701/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20240701/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20240701/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20240701/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20240701/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20240701/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240702preview/__init__.py +29 -0
- pulumi_azure_native/containerservice/v20240702preview/_enums.py +921 -0
- pulumi_azure_native/containerservice/v20240702preview/_inputs.py +9710 -0
- pulumi_azure_native/containerservice/v20240702preview/agent_pool.py +1691 -0
- pulumi_azure_native/containerservice/v20240702preview/get_agent_pool.py +817 -0
- pulumi_azure_native/containerservice/v20240702preview/get_load_balancer.py +206 -0
- pulumi_azure_native/containerservice/v20240702preview/get_maintenance_configuration.py +167 -0
- pulumi_azure_native/containerservice/v20240702preview/get_managed_cluster.py +838 -0
- pulumi_azure_native/containerservice/v20240702preview/get_managed_cluster_snapshot.py +188 -0
- pulumi_azure_native/containerservice/v20240702preview/get_private_endpoint_connection.py +154 -0
- pulumi_azure_native/containerservice/v20240702preview/get_snapshot.py +253 -0
- pulumi_azure_native/containerservice/v20240702preview/get_trusted_access_role_binding.py +167 -0
- pulumi_azure_native/containerservice/v20240702preview/list_managed_cluster_admin_credentials.py +89 -0
- pulumi_azure_native/containerservice/v20240702preview/list_managed_cluster_monitoring_user_credentials.py +89 -0
- pulumi_azure_native/containerservice/v20240702preview/list_managed_cluster_user_credentials.py +94 -0
- pulumi_azure_native/containerservice/v20240702preview/load_balancer.py +368 -0
- pulumi_azure_native/containerservice/v20240702preview/maintenance_configuration.py +279 -0
- pulumi_azure_native/containerservice/v20240702preview/managed_cluster.py +1595 -0
- pulumi_azure_native/containerservice/v20240702preview/managed_cluster_snapshot.py +297 -0
- pulumi_azure_native/containerservice/v20240702preview/outputs.py +8363 -0
- pulumi_azure_native/containerservice/v20240702preview/private_endpoint_connection.py +251 -0
- pulumi_azure_native/containerservice/v20240702preview/snapshot.py +347 -0
- pulumi_azure_native/containerservice/v20240702preview/trusted_access_role_binding.py +260 -0
- pulumi_azure_native/devhub/__init__.py +4 -0
- pulumi_azure_native/devhub/_enums.py +27 -0
- pulumi_azure_native/devhub/_inputs.py +20 -0
- pulumi_azure_native/devhub/get_adoo_auth_info.py +98 -0
- pulumi_azure_native/devhub/get_git_hub_o_auth.py +2 -2
- pulumi_azure_native/devhub/get_iac_profile.py +4 -0
- pulumi_azure_native/devhub/get_workflow.py +2 -2
- pulumi_azure_native/devhub/iac_profile.py +6 -1
- pulumi_azure_native/devhub/outputs.py +15 -14
- pulumi_azure_native/devhub/v20221011preview/workflow.py +1 -1
- pulumi_azure_native/devhub/v20230801/workflow.py +1 -1
- pulumi_azure_native/devhub/v20240501preview/_enums.py +27 -0
- pulumi_azure_native/devhub/v20240501preview/_inputs.py +20 -0
- pulumi_azure_native/devhub/v20240501preview/iac_profile.py +2 -1
- pulumi_azure_native/devhub/v20240501preview/outputs.py +15 -14
- pulumi_azure_native/devhub/v20240501preview/workflow.py +1 -1
- pulumi_azure_native/devhub/v20240801preview/__init__.py +16 -0
- pulumi_azure_native/devhub/v20240801preview/_enums.py +127 -0
- pulumi_azure_native/devhub/v20240801preview/_inputs.py +1446 -0
- pulumi_azure_native/devhub/v20240801preview/get_adoo_auth_info.py +96 -0
- pulumi_azure_native/devhub/v20240801preview/get_git_hub_o_auth.py +96 -0
- pulumi_azure_native/devhub/v20240801preview/get_iac_profile.py +325 -0
- pulumi_azure_native/devhub/v20240801preview/get_workflow.py +162 -0
- pulumi_azure_native/devhub/v20240801preview/iac_profile.py +542 -0
- pulumi_azure_native/devhub/v20240801preview/outputs.py +1527 -0
- pulumi_azure_native/devhub/v20240801preview/workflow.py +258 -0
- pulumi_azure_native/devhub/workflow.py +3 -3
- pulumi_azure_native/deviceregistry/__init__.py +13 -0
- pulumi_azure_native/deviceregistry/_enums.py +73 -4
- pulumi_azure_native/deviceregistry/_inputs.py +414 -9
- pulumi_azure_native/deviceregistry/asset.py +21 -17
- pulumi_azure_native/deviceregistry/asset_endpoint_profile.py +9 -5
- pulumi_azure_native/deviceregistry/discovered_asset.py +738 -0
- pulumi_azure_native/deviceregistry/discovered_asset_endpoint_profile.py +449 -0
- pulumi_azure_native/deviceregistry/get_asset.py +8 -4
- pulumi_azure_native/deviceregistry/get_asset_endpoint_profile.py +5 -1
- pulumi_azure_native/deviceregistry/get_discovered_asset.py +385 -0
- pulumi_azure_native/deviceregistry/get_discovered_asset_endpoint_profile.py +255 -0
- pulumi_azure_native/deviceregistry/get_schema.py +221 -0
- pulumi_azure_native/deviceregistry/get_schema_registry.py +242 -0
- pulumi_azure_native/deviceregistry/get_schema_version.py +200 -0
- pulumi_azure_native/deviceregistry/outputs.py +367 -22
- pulumi_azure_native/deviceregistry/schema.py +360 -0
- pulumi_azure_native/deviceregistry/schema_registry.py +398 -0
- pulumi_azure_native/deviceregistry/schema_version.py +302 -0
- pulumi_azure_native/deviceregistry/v20231101preview/_enums.py +4 -4
- pulumi_azure_native/deviceregistry/v20231101preview/_inputs.py +9 -9
- pulumi_azure_native/deviceregistry/v20231101preview/asset.py +17 -17
- pulumi_azure_native/deviceregistry/v20231101preview/asset_endpoint_profile.py +5 -5
- pulumi_azure_native/deviceregistry/v20231101preview/get_asset.py +4 -4
- pulumi_azure_native/deviceregistry/v20231101preview/get_asset_endpoint_profile.py +1 -1
- pulumi_azure_native/deviceregistry/v20231101preview/outputs.py +18 -22
- pulumi_azure_native/deviceregistry/v20240901preview/__init__.py +24 -0
- pulumi_azure_native/deviceregistry/v20240901preview/_enums.py +119 -0
- pulumi_azure_native/deviceregistry/v20240901preview/_inputs.py +968 -0
- pulumi_azure_native/deviceregistry/v20240901preview/asset.py +880 -0
- pulumi_azure_native/deviceregistry/v20240901preview/asset_endpoint_profile.py +436 -0
- pulumi_azure_native/deviceregistry/v20240901preview/discovered_asset.py +736 -0
- pulumi_azure_native/deviceregistry/v20240901preview/discovered_asset_endpoint_profile.py +447 -0
- pulumi_azure_native/deviceregistry/v20240901preview/get_asset.py +474 -0
- pulumi_azure_native/deviceregistry/v20240901preview/get_asset_endpoint_profile.py +266 -0
- pulumi_azure_native/deviceregistry/v20240901preview/get_discovered_asset.py +383 -0
- pulumi_azure_native/deviceregistry/v20240901preview/get_discovered_asset_endpoint_profile.py +253 -0
- pulumi_azure_native/deviceregistry/v20240901preview/get_schema.py +219 -0
- pulumi_azure_native/deviceregistry/v20240901preview/get_schema_registry.py +240 -0
- pulumi_azure_native/deviceregistry/v20240901preview/get_schema_version.py +198 -0
- pulumi_azure_native/deviceregistry/v20240901preview/outputs.py +1243 -0
- pulumi_azure_native/deviceregistry/v20240901preview/schema.py +358 -0
- pulumi_azure_native/deviceregistry/v20240901preview/schema_registry.py +396 -0
- pulumi_azure_native/deviceregistry/v20240901preview/schema_version.py +300 -0
- pulumi_azure_native/documentdb/__init__.py +6 -0
- pulumi_azure_native/documentdb/cassandra_cluster.py +3 -3
- pulumi_azure_native/documentdb/cassandra_data_center.py +3 -3
- pulumi_azure_native/documentdb/cassandra_resource_cassandra_keyspace.py +3 -3
- pulumi_azure_native/documentdb/cassandra_resource_cassandra_table.py +3 -3
- pulumi_azure_native/documentdb/cassandra_resource_cassandra_view.py +3 -3
- pulumi_azure_native/documentdb/database_account.py +3 -3
- pulumi_azure_native/documentdb/get_cassandra_cluster.py +2 -2
- pulumi_azure_native/documentdb/get_cassandra_data_center.py +2 -2
- pulumi_azure_native/documentdb/get_cassandra_resource_cassandra_keyspace.py +2 -2
- pulumi_azure_native/documentdb/get_cassandra_resource_cassandra_table.py +2 -2
- pulumi_azure_native/documentdb/get_cassandra_resource_cassandra_view.py +2 -2
- pulumi_azure_native/documentdb/get_database_account.py +2 -2
- pulumi_azure_native/documentdb/get_graph_resource_graph.py +2 -2
- pulumi_azure_native/documentdb/get_gremlin_resource_gremlin_database.py +2 -2
- pulumi_azure_native/documentdb/get_gremlin_resource_gremlin_graph.py +2 -2
- pulumi_azure_native/documentdb/get_mongo_db_resource_mongo_db_collection.py +2 -2
- pulumi_azure_native/documentdb/get_mongo_db_resource_mongo_db_database.py +2 -2
- pulumi_azure_native/documentdb/get_mongo_db_resource_mongo_role_definition.py +2 -2
- pulumi_azure_native/documentdb/get_mongo_db_resource_mongo_user_definition.py +2 -2
- pulumi_azure_native/documentdb/get_notebook_workspace.py +2 -2
- pulumi_azure_native/documentdb/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/documentdb/get_service.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_container.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_database.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_role_assignment.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_role_definition.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_stored_procedure.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_trigger.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_user_defined_function.py +2 -2
- pulumi_azure_native/documentdb/get_table_resource_table.py +2 -2
- pulumi_azure_native/documentdb/get_throughput_pool.py +2 -2
- pulumi_azure_native/documentdb/get_throughput_pool_account.py +2 -2
- pulumi_azure_native/documentdb/graph_resource_graph.py +3 -3
- pulumi_azure_native/documentdb/gremlin_resource_gremlin_database.py +3 -3
- pulumi_azure_native/documentdb/gremlin_resource_gremlin_graph.py +3 -3
- pulumi_azure_native/documentdb/list_database_account_connection_strings.py +2 -2
- pulumi_azure_native/documentdb/list_database_account_keys.py +2 -2
- pulumi_azure_native/documentdb/list_notebook_workspace_connection_info.py +2 -2
- pulumi_azure_native/documentdb/mongo_db_resource_mongo_db_collection.py +3 -3
- pulumi_azure_native/documentdb/mongo_db_resource_mongo_db_database.py +3 -3
- pulumi_azure_native/documentdb/mongo_db_resource_mongo_role_definition.py +3 -3
- pulumi_azure_native/documentdb/mongo_db_resource_mongo_user_definition.py +3 -3
- pulumi_azure_native/documentdb/notebook_workspace.py +3 -3
- pulumi_azure_native/documentdb/private_endpoint_connection.py +3 -3
- pulumi_azure_native/documentdb/service.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_container.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_database.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_role_assignment.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_role_definition.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_stored_procedure.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_trigger.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_user_defined_function.py +3 -3
- pulumi_azure_native/documentdb/table_resource_table.py +3 -3
- pulumi_azure_native/documentdb/throughput_pool.py +3 -3
- pulumi_azure_native/documentdb/throughput_pool_account.py +3 -3
- pulumi_azure_native/documentdb/v20210401preview/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20210701preview/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20230301preview/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/cassandra_resource_cassandra_view.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/graph_resource_graph.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20230415/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20230415/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20230415/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20230415/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20230415/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20230415/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20230415/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20230415/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20230415/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20230415/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230415/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230415/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20230415/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20230415/service.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20230415/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20230915/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20230915/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20230915/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20230915/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20230915/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20230915/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20230915/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20230915/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20230915/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20230915/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230915/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230915/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20230915/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20230915/service.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20230915/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/cassandra_resource_cassandra_view.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/graph_resource_graph.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/service.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20231115/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20231115/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20231115/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20231115/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20231115/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20231115/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20231115/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20231115/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20231115/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20231115/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20231115/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20231115/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20231115/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20231115/service.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20231115/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/cassandra_resource_cassandra_view.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/graph_resource_graph.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/service.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/throughput_pool.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/throughput_pool_account.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/cassandra_resource_cassandra_view.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/graph_resource_graph.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/service.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/throughput_pool.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/throughput_pool_account.py +1 -1
- pulumi_azure_native/documentdb/v20240515/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20240515/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20240515/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20240515/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20240515/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20240515/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20240515/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20240515/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20240515/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20240515/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240515/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240515/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20240515/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20240515/service.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20240515/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/cassandra_resource_cassandra_view.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/graph_resource_graph.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/service.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/throughput_pool.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/throughput_pool_account.py +1 -1
- pulumi_azure_native/documentdb/v20240815/__init__.py +57 -0
- pulumi_azure_native/documentdb/v20240815/_enums.py +347 -0
- pulumi_azure_native/documentdb/v20240815/_inputs.py +5585 -0
- pulumi_azure_native/documentdb/v20240815/cassandra_cluster.py +277 -0
- pulumi_azure_native/documentdb/v20240815/cassandra_data_center.py +211 -0
- pulumi_azure_native/documentdb/v20240815/cassandra_resource_cassandra_keyspace.py +292 -0
- pulumi_azure_native/documentdb/v20240815/cassandra_resource_cassandra_table.py +313 -0
- pulumi_azure_native/documentdb/v20240815/database_account.py +1276 -0
- pulumi_azure_native/documentdb/v20240815/get_cassandra_cluster.py +162 -0
- pulumi_azure_native/documentdb/v20240815/get_cassandra_data_center.py +128 -0
- pulumi_azure_native/documentdb/v20240815/get_cassandra_resource_cassandra_keyspace.py +161 -0
- pulumi_azure_native/documentdb/v20240815/get_cassandra_resource_cassandra_table.py +166 -0
- pulumi_azure_native/documentdb/v20240815/get_database_account.py +682 -0
- pulumi_azure_native/documentdb/v20240815/get_gremlin_resource_gremlin_database.py +161 -0
- pulumi_azure_native/documentdb/v20240815/get_gremlin_resource_gremlin_graph.py +166 -0
- pulumi_azure_native/documentdb/v20240815/get_mongo_db_resource_mongo_db_collection.py +166 -0
- pulumi_azure_native/documentdb/v20240815/get_mongo_db_resource_mongo_db_database.py +161 -0
- pulumi_azure_native/documentdb/v20240815/get_mongo_db_resource_mongo_role_definition.py +167 -0
- pulumi_azure_native/documentdb/v20240815/get_mongo_db_resource_mongo_user_definition.py +193 -0
- pulumi_azure_native/documentdb/v20240815/get_notebook_workspace.py +140 -0
- pulumi_azure_native/documentdb/v20240815/get_private_endpoint_connection.py +167 -0
- pulumi_azure_native/documentdb/v20240815/get_service.py +128 -0
- pulumi_azure_native/documentdb/v20240815/get_sql_resource_sql_container.py +166 -0
- pulumi_azure_native/documentdb/v20240815/get_sql_resource_sql_database.py +161 -0
- pulumi_azure_native/documentdb/v20240815/get_sql_resource_sql_role_assignment.py +153 -0
- pulumi_azure_native/documentdb/v20240815/get_sql_resource_sql_role_definition.py +154 -0
- pulumi_azure_native/documentdb/v20240815/get_sql_resource_sql_stored_procedure.py +161 -0
- pulumi_azure_native/documentdb/v20240815/get_sql_resource_sql_trigger.py +161 -0
- pulumi_azure_native/documentdb/v20240815/get_sql_resource_sql_user_defined_function.py +161 -0
- pulumi_azure_native/documentdb/v20240815/get_table_resource_table.py +161 -0
- pulumi_azure_native/documentdb/v20240815/gremlin_resource_gremlin_database.py +293 -0
- pulumi_azure_native/documentdb/v20240815/gremlin_resource_gremlin_graph.py +314 -0
- pulumi_azure_native/documentdb/v20240815/list_database_account_connection_strings.py +84 -0
- pulumi_azure_native/documentdb/v20240815/list_database_account_keys.py +122 -0
- pulumi_azure_native/documentdb/v20240815/list_notebook_workspace_connection_info.py +101 -0
- pulumi_azure_native/documentdb/v20240815/mongo_db_resource_mongo_db_collection.py +314 -0
- pulumi_azure_native/documentdb/v20240815/mongo_db_resource_mongo_db_database.py +293 -0
- pulumi_azure_native/documentdb/v20240815/mongo_db_resource_mongo_role_definition.py +317 -0
- pulumi_azure_native/documentdb/v20240815/mongo_db_resource_mongo_user_definition.py +355 -0
- pulumi_azure_native/documentdb/v20240815/notebook_workspace.py +199 -0
- pulumi_azure_native/documentdb/v20240815/outputs.py +6291 -0
- pulumi_azure_native/documentdb/v20240815/private_endpoint_connection.py +297 -0
- pulumi_azure_native/documentdb/v20240815/service.py +211 -0
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_container.py +314 -0
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_database.py +293 -0
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_role_assignment.py +266 -0
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_role_definition.py +288 -0
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_stored_procedure.py +328 -0
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_trigger.py +329 -0
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_user_defined_function.py +328 -0
- pulumi_azure_native/documentdb/v20240815/table_resource_table.py +293 -0
- pulumi_azure_native/documentdb/v20240901preview/__init__.py +65 -0
- pulumi_azure_native/documentdb/v20240901preview/_enums.py +405 -0
- pulumi_azure_native/documentdb/v20240901preview/_inputs.py +6006 -0
- pulumi_azure_native/documentdb/v20240901preview/cassandra_cluster.py +277 -0
- pulumi_azure_native/documentdb/v20240901preview/cassandra_data_center.py +211 -0
- pulumi_azure_native/documentdb/v20240901preview/cassandra_resource_cassandra_keyspace.py +322 -0
- pulumi_azure_native/documentdb/v20240901preview/cassandra_resource_cassandra_table.py +343 -0
- pulumi_azure_native/documentdb/v20240901preview/cassandra_resource_cassandra_view.py +343 -0
- pulumi_azure_native/documentdb/v20240901preview/database_account.py +1460 -0
- pulumi_azure_native/documentdb/v20240901preview/get_cassandra_cluster.py +162 -0
- pulumi_azure_native/documentdb/v20240901preview/get_cassandra_data_center.py +128 -0
- pulumi_azure_native/documentdb/v20240901preview/get_cassandra_resource_cassandra_keyspace.py +174 -0
- pulumi_azure_native/documentdb/v20240901preview/get_cassandra_resource_cassandra_table.py +179 -0
- pulumi_azure_native/documentdb/v20240901preview/get_cassandra_resource_cassandra_view.py +179 -0
- pulumi_azure_native/documentdb/v20240901preview/get_database_account.py +773 -0
- pulumi_azure_native/documentdb/v20240901preview/get_graph_resource_graph.py +174 -0
- pulumi_azure_native/documentdb/v20240901preview/get_gremlin_resource_gremlin_database.py +174 -0
- pulumi_azure_native/documentdb/v20240901preview/get_gremlin_resource_gremlin_graph.py +179 -0
- pulumi_azure_native/documentdb/v20240901preview/get_mongo_db_resource_mongo_db_collection.py +179 -0
- pulumi_azure_native/documentdb/v20240901preview/get_mongo_db_resource_mongo_db_database.py +174 -0
- pulumi_azure_native/documentdb/v20240901preview/get_mongo_db_resource_mongo_role_definition.py +167 -0
- pulumi_azure_native/documentdb/v20240901preview/get_mongo_db_resource_mongo_user_definition.py +193 -0
- pulumi_azure_native/documentdb/v20240901preview/get_notebook_workspace.py +140 -0
- pulumi_azure_native/documentdb/v20240901preview/get_private_endpoint_connection.py +180 -0
- pulumi_azure_native/documentdb/v20240901preview/get_service.py +128 -0
- pulumi_azure_native/documentdb/v20240901preview/get_sql_resource_sql_container.py +179 -0
- pulumi_azure_native/documentdb/v20240901preview/get_sql_resource_sql_database.py +174 -0
- pulumi_azure_native/documentdb/v20240901preview/get_sql_resource_sql_role_assignment.py +153 -0
- pulumi_azure_native/documentdb/v20240901preview/get_sql_resource_sql_role_definition.py +154 -0
- pulumi_azure_native/documentdb/v20240901preview/get_sql_resource_sql_stored_procedure.py +174 -0
- pulumi_azure_native/documentdb/v20240901preview/get_sql_resource_sql_trigger.py +174 -0
- pulumi_azure_native/documentdb/v20240901preview/get_sql_resource_sql_user_defined_function.py +174 -0
- pulumi_azure_native/documentdb/v20240901preview/get_table_resource_table.py +174 -0
- pulumi_azure_native/documentdb/v20240901preview/get_throughput_pool.py +175 -0
- pulumi_azure_native/documentdb/v20240901preview/get_throughput_pool_account.py +180 -0
- pulumi_azure_native/documentdb/v20240901preview/graph_resource_graph.py +322 -0
- pulumi_azure_native/documentdb/v20240901preview/gremlin_resource_gremlin_database.py +322 -0
- pulumi_azure_native/documentdb/v20240901preview/gremlin_resource_gremlin_graph.py +343 -0
- pulumi_azure_native/documentdb/v20240901preview/list_database_account_connection_strings.py +84 -0
- pulumi_azure_native/documentdb/v20240901preview/list_database_account_keys.py +122 -0
- pulumi_azure_native/documentdb/v20240901preview/list_notebook_workspace_connection_info.py +101 -0
- pulumi_azure_native/documentdb/v20240901preview/mongo_db_resource_mongo_db_collection.py +343 -0
- pulumi_azure_native/documentdb/v20240901preview/mongo_db_resource_mongo_db_database.py +322 -0
- pulumi_azure_native/documentdb/v20240901preview/mongo_db_resource_mongo_role_definition.py +317 -0
- pulumi_azure_native/documentdb/v20240901preview/mongo_db_resource_mongo_user_definition.py +355 -0
- pulumi_azure_native/documentdb/v20240901preview/notebook_workspace.py +199 -0
- pulumi_azure_native/documentdb/v20240901preview/outputs.py +6889 -0
- pulumi_azure_native/documentdb/v20240901preview/private_endpoint_connection.py +307 -0
- pulumi_azure_native/documentdb/v20240901preview/service.py +211 -0
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_container.py +343 -0
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_database.py +322 -0
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_role_assignment.py +266 -0
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_role_definition.py +288 -0
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_stored_procedure.py +358 -0
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_trigger.py +358 -0
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_user_defined_function.py +358 -0
- pulumi_azure_native/documentdb/v20240901preview/table_resource_table.py +322 -0
- pulumi_azure_native/documentdb/v20240901preview/throughput_pool.py +266 -0
- pulumi_azure_native/documentdb/v20240901preview/throughput_pool_account.py +268 -0
- pulumi_azure_native/hybridcompute/__init__.py +3 -0
- pulumi_azure_native/hybridcompute/gateway.py +3 -3
- pulumi_azure_native/hybridcompute/get_gateway.py +2 -2
- pulumi_azure_native/hybridcompute/get_license.py +2 -2
- pulumi_azure_native/hybridcompute/get_license_profile.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_extension.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_run_command.py +2 -2
- pulumi_azure_native/hybridcompute/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/hybridcompute/get_private_link_scope.py +2 -2
- pulumi_azure_native/hybridcompute/license.py +3 -3
- pulumi_azure_native/hybridcompute/license_profile.py +3 -3
- pulumi_azure_native/hybridcompute/machine.py +3 -3
- pulumi_azure_native/hybridcompute/machine_extension.py +3 -3
- pulumi_azure_native/hybridcompute/machine_run_command.py +3 -3
- pulumi_azure_native/hybridcompute/private_endpoint_connection.py +3 -3
- pulumi_azure_native/hybridcompute/private_link_scope.py +3 -3
- pulumi_azure_native/hybridcompute/v20200802/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20220510preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20220510preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine_run_command.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/gateway.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/machine_run_command.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/gateway.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/machine_run_command.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20240710/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20240710/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20240710/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20240710/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20240710/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20240710/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20240731preview/__init__.py +26 -0
- pulumi_azure_native/hybridcompute/v20240731preview/_enums.py +172 -0
- pulumi_azure_native/hybridcompute/v20240731preview/_inputs.py +1924 -0
- pulumi_azure_native/hybridcompute/v20240731preview/gateway.py +316 -0
- pulumi_azure_native/hybridcompute/v20240731preview/get_gateway.py +214 -0
- pulumi_azure_native/hybridcompute/v20240731preview/get_license.py +201 -0
- pulumi_azure_native/hybridcompute/v20240731preview/get_license_profile.py +362 -0
- pulumi_azure_native/hybridcompute/v20240731preview/get_machine.py +635 -0
- pulumi_azure_native/hybridcompute/v20240731preview/get_machine_extension.py +167 -0
- pulumi_azure_native/hybridcompute/v20240731preview/get_machine_run_command.py +323 -0
- pulumi_azure_native/hybridcompute/v20240731preview/get_private_endpoint_connection.py +141 -0
- pulumi_azure_native/hybridcompute/v20240731preview/get_private_link_scope.py +162 -0
- pulumi_azure_native/hybridcompute/v20240731preview/license.py +326 -0
- pulumi_azure_native/hybridcompute/v20240731preview/license_profile.py +505 -0
- pulumi_azure_native/hybridcompute/v20240731preview/machine.py +885 -0
- pulumi_azure_native/hybridcompute/v20240731preview/machine_extension.py +279 -0
- pulumi_azure_native/hybridcompute/v20240731preview/machine_run_command.py +592 -0
- pulumi_azure_native/hybridcompute/v20240731preview/outputs.py +3556 -0
- pulumi_azure_native/hybridcompute/v20240731preview/private_endpoint_connection.py +220 -0
- pulumi_azure_native/hybridcompute/v20240731preview/private_link_scope.py +258 -0
- pulumi_azure_native/hybridnetwork/__init__.py +5 -0
- pulumi_azure_native/hybridnetwork/artifact_manifest.py +5 -1
- pulumi_azure_native/hybridnetwork/artifact_store.py +5 -1
- pulumi_azure_native/hybridnetwork/configuration_group_schema.py +5 -1
- pulumi_azure_native/hybridnetwork/configuration_group_value.py +5 -1
- pulumi_azure_native/hybridnetwork/get_artifact_manifest.py +4 -0
- pulumi_azure_native/hybridnetwork/get_artifact_store.py +4 -0
- pulumi_azure_native/hybridnetwork/get_configuration_group_schema.py +4 -0
- pulumi_azure_native/hybridnetwork/get_configuration_group_value.py +4 -0
- pulumi_azure_native/hybridnetwork/get_network_function.py +2 -2
- pulumi_azure_native/hybridnetwork/get_network_function_definition_group.py +4 -0
- pulumi_azure_native/hybridnetwork/get_network_function_definition_version.py +4 -0
- pulumi_azure_native/hybridnetwork/get_network_service_design_group.py +4 -0
- pulumi_azure_native/hybridnetwork/get_network_service_design_version.py +4 -0
- pulumi_azure_native/hybridnetwork/get_publisher.py +4 -0
- pulumi_azure_native/hybridnetwork/get_site.py +4 -0
- pulumi_azure_native/hybridnetwork/get_site_network_service.py +4 -0
- pulumi_azure_native/hybridnetwork/list_artifact_manifest_credential.py +4 -0
- pulumi_azure_native/hybridnetwork/list_artifact_store_network_fabric_controller_private_end_points.py +104 -0
- pulumi_azure_native/hybridnetwork/list_artifact_store_private_end_points.py +104 -0
- pulumi_azure_native/hybridnetwork/network_function.py +3 -3
- pulumi_azure_native/hybridnetwork/network_function_definition_group.py +5 -1
- pulumi_azure_native/hybridnetwork/network_function_definition_version.py +5 -1
- pulumi_azure_native/hybridnetwork/network_service_design_group.py +5 -1
- pulumi_azure_native/hybridnetwork/network_service_design_version.py +5 -1
- pulumi_azure_native/hybridnetwork/outputs.py +48 -0
- pulumi_azure_native/hybridnetwork/publisher.py +5 -1
- pulumi_azure_native/hybridnetwork/site.py +5 -1
- pulumi_azure_native/hybridnetwork/site_network_service.py +5 -1
- pulumi_azure_native/hybridnetwork/v20220101preview/network_function.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/artifact_manifest.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/artifact_store.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/configuration_group_schema.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/configuration_group_value.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/network_function.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/network_function_definition_group.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/network_function_definition_version.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/network_service_design_group.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/network_service_design_version.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/publisher.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/site.py +1 -1
- pulumi_azure_native/hybridnetwork/v20230901/site_network_service.py +1 -1
- pulumi_azure_native/hybridnetwork/v20240415/__init__.py +37 -0
- pulumi_azure_native/hybridnetwork/v20240415/_enums.py +205 -0
- pulumi_azure_native/hybridnetwork/v20240415/_inputs.py +4689 -0
- pulumi_azure_native/hybridnetwork/v20240415/artifact_manifest.py +300 -0
- pulumi_azure_native/hybridnetwork/v20240415/artifact_store.py +279 -0
- pulumi_azure_native/hybridnetwork/v20240415/configuration_group_schema.py +278 -0
- pulumi_azure_native/hybridnetwork/v20240415/configuration_group_value.py +257 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_artifact_manifest.py +172 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_artifact_store.py +167 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_configuration_group_schema.py +167 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_configuration_group_value.py +162 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_network_function.py +188 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_network_function_definition_group.py +167 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_network_function_definition_version.py +172 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_network_service_design_group.py +167 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_network_service_design_version.py +172 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_publisher.py +175 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_site.py +162 -0
- pulumi_azure_native/hybridnetwork/v20240415/get_site_network_service.py +188 -0
- pulumi_azure_native/hybridnetwork/v20240415/list_artifact_manifest_credential.py +93 -0
- pulumi_azure_native/hybridnetwork/v20240415/list_artifact_store_network_fabric_controller_private_end_points.py +102 -0
- pulumi_azure_native/hybridnetwork/v20240415/list_artifact_store_private_end_points.py +102 -0
- pulumi_azure_native/hybridnetwork/v20240415/network_function.py +297 -0
- pulumi_azure_native/hybridnetwork/v20240415/network_function_definition_group.py +278 -0
- pulumi_azure_native/hybridnetwork/v20240415/network_function_definition_version.py +300 -0
- pulumi_azure_native/hybridnetwork/v20240415/network_service_design_group.py +278 -0
- pulumi_azure_native/hybridnetwork/v20240415/network_service_design_version.py +300 -0
- pulumi_azure_native/hybridnetwork/v20240415/outputs.py +4660 -0
- pulumi_azure_native/hybridnetwork/v20240415/publisher.py +287 -0
- pulumi_azure_native/hybridnetwork/v20240415/site.py +257 -0
- pulumi_azure_native/hybridnetwork/v20240415/site_network_service.py +316 -0
- pulumi_azure_native/maps/__init__.py +3 -0
- pulumi_azure_native/maps/account.py +3 -3
- pulumi_azure_native/maps/creator.py +3 -3
- pulumi_azure_native/maps/get_account.py +2 -2
- pulumi_azure_native/maps/get_creator.py +2 -2
- pulumi_azure_native/maps/list_account_keys.py +2 -2
- pulumi_azure_native/maps/list_account_sas.py +2 -2
- pulumi_azure_native/maps/v20180501/account.py +1 -1
- pulumi_azure_native/maps/v20200201preview/creator.py +1 -1
- pulumi_azure_native/maps/v20210201/account.py +1 -1
- pulumi_azure_native/maps/v20210201/creator.py +1 -1
- pulumi_azure_native/maps/v20211201preview/account.py +1 -1
- pulumi_azure_native/maps/v20211201preview/creator.py +1 -1
- pulumi_azure_native/maps/v20230601/account.py +1 -1
- pulumi_azure_native/maps/v20230601/creator.py +1 -1
- pulumi_azure_native/maps/v20230801preview/account.py +1 -1
- pulumi_azure_native/maps/v20230801preview/creator.py +1 -1
- pulumi_azure_native/maps/v20231201preview/account.py +1 -1
- pulumi_azure_native/maps/v20231201preview/creator.py +1 -1
- pulumi_azure_native/maps/v20240101preview/account.py +1 -1
- pulumi_azure_native/maps/v20240101preview/creator.py +1 -1
- pulumi_azure_native/maps/v20240701preview/__init__.py +16 -0
- pulumi_azure_native/maps/v20240701preview/_enums.py +54 -0
- pulumi_azure_native/maps/v20240701preview/_inputs.py +695 -0
- pulumi_azure_native/maps/v20240701preview/account.py +346 -0
- pulumi_azure_native/maps/v20240701preview/creator.py +279 -0
- pulumi_azure_native/maps/v20240701preview/get_account.py +201 -0
- pulumi_azure_native/maps/v20240701preview/get_creator.py +167 -0
- pulumi_azure_native/maps/v20240701preview/list_account_keys.py +122 -0
- pulumi_azure_native/maps/v20240701preview/list_account_sas.py +122 -0
- pulumi_azure_native/maps/v20240701preview/outputs.py +862 -0
- pulumi_azure_native/network/__init__.py +14 -0
- pulumi_azure_native/network/_enums.py +30 -0
- pulumi_azure_native/network/_inputs.py +187 -20
- pulumi_azure_native/network/admin_rule.py +3 -3
- pulumi_azure_native/network/admin_rule_collection.py +3 -3
- pulumi_azure_native/network/application_gateway.py +3 -3
- pulumi_azure_native/network/application_gateway_private_endpoint_connection.py +3 -3
- pulumi_azure_native/network/application_security_group.py +3 -3
- pulumi_azure_native/network/azure_firewall.py +3 -3
- pulumi_azure_native/network/bastion_host.py +3 -3
- pulumi_azure_native/network/configuration_policy_group.py +3 -3
- pulumi_azure_native/network/connection_monitor.py +3 -3
- pulumi_azure_native/network/connectivity_configuration.py +3 -3
- pulumi_azure_native/network/custom_ip_prefix.py +3 -3
- pulumi_azure_native/network/ddos_custom_policy.py +3 -3
- pulumi_azure_native/network/ddos_protection_plan.py +3 -3
- pulumi_azure_native/network/default_admin_rule.py +1 -1
- pulumi_azure_native/network/default_user_rule.py +1 -1
- pulumi_azure_native/network/dscp_configuration.py +3 -3
- pulumi_azure_native/network/express_route_circuit.py +3 -3
- pulumi_azure_native/network/express_route_circuit_authorization.py +3 -3
- pulumi_azure_native/network/express_route_circuit_connection.py +3 -3
- pulumi_azure_native/network/express_route_circuit_peering.py +3 -3
- pulumi_azure_native/network/express_route_connection.py +3 -3
- pulumi_azure_native/network/express_route_cross_connection_peering.py +3 -3
- pulumi_azure_native/network/express_route_gateway.py +3 -3
- pulumi_azure_native/network/express_route_port.py +3 -3
- pulumi_azure_native/network/express_route_port_authorization.py +3 -3
- pulumi_azure_native/network/firewall_policy.py +3 -3
- pulumi_azure_native/network/firewall_policy_draft.py +3 -3
- pulumi_azure_native/network/firewall_policy_rule_collection_group.py +3 -3
- pulumi_azure_native/network/firewall_policy_rule_collection_group_draft.py +3 -3
- pulumi_azure_native/network/flow_log.py +3 -3
- pulumi_azure_native/network/get_active_sessions.py +2 -2
- pulumi_azure_native/network/get_admin_rule.py +2 -2
- pulumi_azure_native/network/get_admin_rule_collection.py +2 -2
- pulumi_azure_native/network/get_application_gateway.py +2 -2
- pulumi_azure_native/network/get_application_gateway_backend_health_on_demand.py +2 -2
- pulumi_azure_native/network/get_application_gateway_private_endpoint_connection.py +2 -2
- pulumi_azure_native/network/get_application_security_group.py +2 -2
- pulumi_azure_native/network/get_azure_firewall.py +2 -2
- pulumi_azure_native/network/get_bastion_host.py +2 -2
- pulumi_azure_native/network/get_bastion_shareable_link.py +2 -2
- pulumi_azure_native/network/get_configuration_policy_group.py +2 -2
- pulumi_azure_native/network/get_connection_monitor.py +2 -2
- pulumi_azure_native/network/get_connectivity_configuration.py +2 -2
- pulumi_azure_native/network/get_custom_ip_prefix.py +2 -2
- pulumi_azure_native/network/get_ddos_custom_policy.py +2 -2
- pulumi_azure_native/network/get_ddos_protection_plan.py +2 -2
- pulumi_azure_native/network/get_dscp_configuration.py +2 -2
- pulumi_azure_native/network/get_express_route_circuit.py +2 -2
- pulumi_azure_native/network/get_express_route_circuit_authorization.py +2 -2
- pulumi_azure_native/network/get_express_route_circuit_connection.py +2 -2
- pulumi_azure_native/network/get_express_route_circuit_peering.py +2 -2
- pulumi_azure_native/network/get_express_route_connection.py +2 -2
- pulumi_azure_native/network/get_express_route_cross_connection_peering.py +2 -2
- pulumi_azure_native/network/get_express_route_gateway.py +2 -2
- pulumi_azure_native/network/get_express_route_port.py +2 -2
- pulumi_azure_native/network/get_express_route_port_authorization.py +2 -2
- pulumi_azure_native/network/get_firewall_policy.py +2 -2
- pulumi_azure_native/network/get_firewall_policy_draft.py +2 -2
- pulumi_azure_native/network/get_firewall_policy_rule_collection_group.py +2 -2
- pulumi_azure_native/network/get_firewall_policy_rule_collection_group_draft.py +2 -2
- pulumi_azure_native/network/get_flow_log.py +2 -2
- pulumi_azure_native/network/get_hub_route_table.py +2 -2
- pulumi_azure_native/network/get_hub_virtual_network_connection.py +2 -2
- pulumi_azure_native/network/get_inbound_nat_rule.py +2 -2
- pulumi_azure_native/network/get_ip_allocation.py +2 -2
- pulumi_azure_native/network/get_ip_group.py +2 -2
- pulumi_azure_native/network/get_load_balancer.py +2 -2
- pulumi_azure_native/network/get_load_balancer_backend_address_pool.py +2 -2
- pulumi_azure_native/network/get_local_network_gateway.py +2 -2
- pulumi_azure_native/network/get_management_group_network_manager_connection.py +2 -2
- pulumi_azure_native/network/get_nat_gateway.py +2 -2
- pulumi_azure_native/network/get_nat_rule.py +2 -2
- pulumi_azure_native/network/get_network_group.py +2 -2
- pulumi_azure_native/network/get_network_interface.py +2 -2
- pulumi_azure_native/network/get_network_interface_tap_configuration.py +2 -2
- pulumi_azure_native/network/get_network_manager.py +2 -2
- pulumi_azure_native/network/get_network_manager_routing_configuration.py +182 -0
- pulumi_azure_native/network/get_network_profile.py +2 -2
- pulumi_azure_native/network/get_network_security_group.py +2 -2
- pulumi_azure_native/network/get_network_virtual_appliance.py +2 -2
- pulumi_azure_native/network/get_network_watcher.py +2 -2
- pulumi_azure_native/network/get_p2s_vpn_gateway.py +2 -2
- pulumi_azure_native/network/get_p2s_vpn_gateway_p2s_vpn_connection_health.py +2 -2
- pulumi_azure_native/network/get_p2s_vpn_gateway_p2s_vpn_connection_health_detailed.py +2 -2
- pulumi_azure_native/network/get_packet_capture.py +2 -2
- pulumi_azure_native/network/get_private_dns_zone_group.py +2 -2
- pulumi_azure_native/network/get_private_endpoint.py +2 -2
- pulumi_azure_native/network/get_private_link_service.py +2 -2
- pulumi_azure_native/network/get_private_link_service_private_endpoint_connection.py +2 -2
- pulumi_azure_native/network/get_public_ip_address.py +2 -2
- pulumi_azure_native/network/get_public_ip_prefix.py +2 -2
- pulumi_azure_native/network/get_route.py +3 -3
- pulumi_azure_native/network/get_route_filter.py +2 -2
- pulumi_azure_native/network/get_route_filter_rule.py +2 -2
- pulumi_azure_native/network/get_route_map.py +2 -2
- pulumi_azure_native/network/get_route_table.py +2 -2
- pulumi_azure_native/network/get_routing_intent.py +2 -2
- pulumi_azure_native/network/get_routing_rule.py +218 -0
- pulumi_azure_native/network/get_routing_rule_collection.py +213 -0
- pulumi_azure_native/network/get_scope_connection.py +2 -2
- pulumi_azure_native/network/get_security_admin_configuration.py +2 -2
- pulumi_azure_native/network/get_security_partner_provider.py +2 -2
- pulumi_azure_native/network/get_security_rule.py +2 -2
- pulumi_azure_native/network/get_security_user_configuration.py +2 -2
- pulumi_azure_native/network/get_security_user_rule.py +270 -0
- pulumi_azure_native/network/get_security_user_rule_collection.py +200 -0
- pulumi_azure_native/network/get_service_endpoint_policy.py +2 -2
- pulumi_azure_native/network/get_service_endpoint_policy_definition.py +2 -2
- pulumi_azure_native/network/get_static_member.py +2 -2
- pulumi_azure_native/network/get_subnet.py +2 -2
- pulumi_azure_native/network/get_subscription_network_manager_connection.py +2 -2
- pulumi_azure_native/network/get_virtual_appliance_site.py +2 -2
- pulumi_azure_native/network/get_virtual_hub.py +2 -2
- pulumi_azure_native/network/get_virtual_hub_bgp_connection.py +2 -2
- pulumi_azure_native/network/get_virtual_hub_ip_configuration.py +2 -2
- pulumi_azure_native/network/get_virtual_hub_route_table_v2.py +2 -2
- pulumi_azure_native/network/get_virtual_network.py +2 -2
- pulumi_azure_native/network/get_virtual_network_gateway.py +2 -2
- pulumi_azure_native/network/get_virtual_network_gateway_advertised_routes.py +2 -2
- pulumi_azure_native/network/get_virtual_network_gateway_bgp_peer_status.py +2 -2
- pulumi_azure_native/network/get_virtual_network_gateway_connection.py +2 -2
- pulumi_azure_native/network/get_virtual_network_gateway_connection_ike_sas.py +2 -2
- pulumi_azure_native/network/get_virtual_network_gateway_learned_routes.py +2 -2
- pulumi_azure_native/network/get_virtual_network_gateway_nat_rule.py +2 -2
- pulumi_azure_native/network/get_virtual_network_gateway_vpn_profile_package_url.py +2 -2
- pulumi_azure_native/network/get_virtual_network_gateway_vpnclient_connection_health.py +2 -2
- pulumi_azure_native/network/get_virtual_network_gateway_vpnclient_ipsec_parameters.py +2 -2
- pulumi_azure_native/network/get_virtual_network_peering.py +2 -2
- pulumi_azure_native/network/get_virtual_network_tap.py +2 -2
- pulumi_azure_native/network/get_virtual_router.py +2 -2
- pulumi_azure_native/network/get_virtual_router_peering.py +2 -2
- pulumi_azure_native/network/get_virtual_wan.py +2 -2
- pulumi_azure_native/network/get_vpn_connection.py +2 -2
- pulumi_azure_native/network/get_vpn_gateway.py +2 -2
- pulumi_azure_native/network/get_vpn_link_connection_ike_sas.py +2 -2
- pulumi_azure_native/network/get_vpn_server_configuration.py +2 -2
- pulumi_azure_native/network/get_vpn_site.py +2 -2
- pulumi_azure_native/network/get_web_application_firewall_policy.py +2 -2
- pulumi_azure_native/network/hub_route_table.py +3 -3
- pulumi_azure_native/network/hub_virtual_network_connection.py +3 -3
- pulumi_azure_native/network/inbound_nat_rule.py +3 -3
- pulumi_azure_native/network/interface_endpoint.py +1 -1
- pulumi_azure_native/network/ip_allocation.py +3 -3
- pulumi_azure_native/network/ip_group.py +3 -3
- pulumi_azure_native/network/list_active_connectivity_configurations.py +2 -2
- pulumi_azure_native/network/list_active_security_admin_rules.py +2 -2
- pulumi_azure_native/network/list_firewall_policy_idps_signature.py +2 -2
- pulumi_azure_native/network/list_firewall_policy_idps_signatures_filter_value.py +2 -2
- pulumi_azure_native/network/list_network_manager_deployment_status.py +2 -2
- pulumi_azure_native/network/list_network_manager_effective_connectivity_configurations.py +2 -2
- pulumi_azure_native/network/list_network_manager_effective_security_admin_rules.py +2 -2
- pulumi_azure_native/network/list_vpn_link_connection_default_shared_key.py +135 -0
- pulumi_azure_native/network/load_balancer.py +3 -3
- pulumi_azure_native/network/load_balancer_backend_address_pool.py +3 -3
- pulumi_azure_native/network/local_network_gateway.py +3 -3
- pulumi_azure_native/network/management_group_network_manager_connection.py +3 -3
- pulumi_azure_native/network/nat_gateway.py +3 -3
- pulumi_azure_native/network/nat_rule.py +3 -3
- pulumi_azure_native/network/network_group.py +3 -3
- pulumi_azure_native/network/network_interface.py +3 -3
- pulumi_azure_native/network/network_interface_tap_configuration.py +3 -3
- pulumi_azure_native/network/network_manager.py +3 -3
- pulumi_azure_native/network/network_manager_routing_configuration.py +251 -0
- pulumi_azure_native/network/network_profile.py +3 -3
- pulumi_azure_native/network/network_security_group.py +3 -3
- pulumi_azure_native/network/network_virtual_appliance.py +3 -3
- pulumi_azure_native/network/network_watcher.py +3 -3
- pulumi_azure_native/network/outputs.py +246 -15
- pulumi_azure_native/network/p2s_vpn_gateway.py +3 -3
- pulumi_azure_native/network/packet_capture.py +3 -3
- pulumi_azure_native/network/private_dns_zone_group.py +3 -3
- pulumi_azure_native/network/private_endpoint.py +3 -3
- pulumi_azure_native/network/private_link_service.py +3 -3
- pulumi_azure_native/network/private_link_service_private_endpoint_connection.py +3 -3
- pulumi_azure_native/network/public_ip_address.py +3 -3
- pulumi_azure_native/network/public_ip_prefix.py +3 -3
- pulumi_azure_native/network/route.py +5 -24
- pulumi_azure_native/network/route_filter.py +3 -3
- pulumi_azure_native/network/route_filter_rule.py +3 -3
- pulumi_azure_native/network/route_map.py +3 -3
- pulumi_azure_native/network/route_table.py +3 -3
- pulumi_azure_native/network/routing_intent.py +3 -3
- pulumi_azure_native/network/routing_rule.py +355 -0
- pulumi_azure_native/network/routing_rule_collection.py +333 -0
- pulumi_azure_native/network/scope_connection.py +3 -3
- pulumi_azure_native/network/security_admin_configuration.py +3 -3
- pulumi_azure_native/network/security_partner_provider.py +3 -3
- pulumi_azure_native/network/security_rule.py +3 -3
- pulumi_azure_native/network/security_user_configuration.py +3 -3
- pulumi_azure_native/network/security_user_rule.py +471 -0
- pulumi_azure_native/network/security_user_rule_collection.py +303 -0
- pulumi_azure_native/network/service_endpoint_policy.py +3 -3
- pulumi_azure_native/network/service_endpoint_policy_definition.py +3 -3
- pulumi_azure_native/network/static_member.py +3 -3
- pulumi_azure_native/network/subnet.py +3 -3
- pulumi_azure_native/network/subscription_network_manager_connection.py +3 -3
- pulumi_azure_native/network/user_rule.py +1 -1
- pulumi_azure_native/network/user_rule_collection.py +1 -1
- pulumi_azure_native/network/v20180601/load_balancer.py +1 -1
- pulumi_azure_native/network/v20180701/network_interface.py +1 -1
- pulumi_azure_native/network/v20180701/service_endpoint_policy.py +1 -1
- pulumi_azure_native/network/v20180701/service_endpoint_policy_definition.py +1 -1
- pulumi_azure_native/network/v20180701/virtual_hub.py +1 -1
- pulumi_azure_native/network/v20180701/virtual_wan.py +1 -1
- pulumi_azure_native/network/v20180701/vpn_connection.py +1 -1
- pulumi_azure_native/network/v20180701/vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20180701/vpn_site.py +1 -1
- pulumi_azure_native/network/v20181201/express_route_circuit.py +1 -1
- pulumi_azure_native/network/v20190201/express_route_circuit_peering.py +1 -1
- pulumi_azure_native/network/v20190201/interface_endpoint.py +1 -1
- pulumi_azure_native/network/v20190201/network_interface.py +1 -1
- pulumi_azure_native/network/v20190201/subnet.py +1 -1
- pulumi_azure_native/network/v20190601/application_gateway.py +1 -1
- pulumi_azure_native/network/v20190601/express_route_circuit.py +1 -1
- pulumi_azure_native/network/v20190601/express_route_circuit_authorization.py +1 -1
- pulumi_azure_native/network/v20190601/express_route_circuit_peering.py +1 -1
- pulumi_azure_native/network/v20190601/inbound_nat_rule.py +1 -1
- pulumi_azure_native/network/v20190601/load_balancer.py +1 -1
- pulumi_azure_native/network/v20190601/nat_gateway.py +1 -1
- pulumi_azure_native/network/v20190601/network_interface.py +1 -1
- pulumi_azure_native/network/v20190601/network_security_group.py +1 -1
- pulumi_azure_native/network/v20190601/public_ip_address.py +1 -1
- pulumi_azure_native/network/v20190601/public_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20190601/route.py +1 -1
- pulumi_azure_native/network/v20190601/route_table.py +1 -1
- pulumi_azure_native/network/v20190601/security_rule.py +1 -1
- pulumi_azure_native/network/v20190601/subnet.py +1 -1
- pulumi_azure_native/network/v20190601/virtual_network.py +1 -1
- pulumi_azure_native/network/v20190601/virtual_network_peering.py +1 -1
- pulumi_azure_native/network/v20190701/p2s_vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20190701/virtual_wan.py +1 -1
- pulumi_azure_native/network/v20190701/web_application_firewall_policy.py +1 -1
- pulumi_azure_native/network/v20190801/application_gateway.py +1 -1
- pulumi_azure_native/network/v20190801/express_route_circuit_peering.py +1 -1
- pulumi_azure_native/network/v20190801/express_route_cross_connection_peering.py +1 -1
- pulumi_azure_native/network/v20190801/express_route_port.py +1 -1
- pulumi_azure_native/network/v20190801/load_balancer.py +1 -1
- pulumi_azure_native/network/v20190801/local_network_gateway.py +1 -1
- pulumi_azure_native/network/v20190801/nat_gateway.py +1 -1
- pulumi_azure_native/network/v20190801/network_interface.py +1 -1
- pulumi_azure_native/network/v20190801/network_profile.py +1 -1
- pulumi_azure_native/network/v20190801/network_security_group.py +1 -1
- pulumi_azure_native/network/v20190801/private_link_service.py +1 -1
- pulumi_azure_native/network/v20190801/public_ip_address.py +1 -1
- pulumi_azure_native/network/v20190801/public_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20190801/route_filter.py +1 -1
- pulumi_azure_native/network/v20190801/subnet.py +1 -1
- pulumi_azure_native/network/v20190801/virtual_network.py +1 -1
- pulumi_azure_native/network/v20190801/virtual_network_gateway.py +1 -1
- pulumi_azure_native/network/v20190801/virtual_network_gateway_connection.py +1 -1
- pulumi_azure_native/network/v20190901/connection_monitor.py +1 -1
- pulumi_azure_native/network/v20200401/azure_firewall.py +1 -1
- pulumi_azure_native/network/v20200401/firewall_policy.py +1 -1
- pulumi_azure_native/network/v20200401/network_virtual_appliance.py +1 -1
- pulumi_azure_native/network/v20200401/virtual_hub.py +1 -1
- pulumi_azure_native/network/v20200601/packet_capture.py +1 -1
- pulumi_azure_native/network/v20200601/subnet.py +1 -1
- pulumi_azure_native/network/v20200601/virtual_hub.py +1 -1
- pulumi_azure_native/network/v20210201/_inputs.py +0 -20
- pulumi_azure_native/network/v20210201/outputs.py +14 -15
- pulumi_azure_native/network/v20210201/private_dns_zone_group.py +1 -1
- pulumi_azure_native/network/v20210201/private_endpoint.py +1 -1
- pulumi_azure_native/network/v20210201/private_link_service.py +1 -1
- pulumi_azure_native/network/v20210201preview/admin_rule.py +1 -1
- pulumi_azure_native/network/v20210201preview/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20210201preview/connectivity_configuration.py +1 -1
- pulumi_azure_native/network/v20210201preview/network_group.py +1 -1
- pulumi_azure_native/network/v20210201preview/network_manager.py +1 -1
- pulumi_azure_native/network/v20210201preview/user_rule_collection.py +1 -1
- pulumi_azure_native/network/v20210301/custom_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20210301/express_route_gateway.py +1 -1
- pulumi_azure_native/network/v20210501preview/admin_rule.py +1 -1
- pulumi_azure_native/network/v20210501preview/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20210501preview/connectivity_configuration.py +1 -1
- pulumi_azure_native/network/v20210501preview/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20210501preview/default_user_rule.py +1 -1
- pulumi_azure_native/network/v20210501preview/network_group.py +1 -1
- pulumi_azure_native/network/v20210501preview/network_manager.py +1 -1
- pulumi_azure_native/network/v20210501preview/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20210501preview/security_user_configuration.py +1 -1
- pulumi_azure_native/network/v20210501preview/user_rule.py +1 -1
- pulumi_azure_native/network/v20210501preview/user_rule_collection.py +1 -1
- pulumi_azure_native/network/v20210801/firewall_policy.py +1 -1
- pulumi_azure_native/network/v20220101/ddos_custom_policy.py +1 -1
- pulumi_azure_native/network/v20220401preview/default_user_rule.py +1 -1
- pulumi_azure_native/network/v20220401preview/network_group.py +1 -1
- pulumi_azure_native/network/v20220401preview/security_user_configuration.py +1 -1
- pulumi_azure_native/network/v20220401preview/user_rule.py +1 -1
- pulumi_azure_native/network/v20220401preview/user_rule_collection.py +1 -1
- pulumi_azure_native/network/v20220501/ddos_protection_plan.py +1 -1
- pulumi_azure_native/network/v20220501/network_watcher.py +1 -1
- pulumi_azure_native/network/v20220701/_inputs.py +0 -20
- pulumi_azure_native/network/v20220701/outputs.py +14 -15
- pulumi_azure_native/network/v20220701/security_rule.py +1 -1
- pulumi_azure_native/network/v20220701/subnet.py +1 -1
- pulumi_azure_native/network/v20230201/_inputs.py +0 -20
- pulumi_azure_native/network/v20230201/admin_rule.py +1 -1
- pulumi_azure_native/network/v20230201/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20230201/application_gateway.py +1 -1
- pulumi_azure_native/network/v20230201/application_gateway_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20230201/application_security_group.py +1 -1
- pulumi_azure_native/network/v20230201/azure_firewall.py +1 -1
- pulumi_azure_native/network/v20230201/bastion_host.py +1 -1
- pulumi_azure_native/network/v20230201/configuration_policy_group.py +1 -1
- pulumi_azure_native/network/v20230201/connection_monitor.py +1 -1
- pulumi_azure_native/network/v20230201/connectivity_configuration.py +1 -1
- pulumi_azure_native/network/v20230201/custom_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20230201/ddos_custom_policy.py +1 -1
- pulumi_azure_native/network/v20230201/ddos_protection_plan.py +1 -1
- pulumi_azure_native/network/v20230201/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20230201/dscp_configuration.py +1 -1
- pulumi_azure_native/network/v20230201/express_route_circuit.py +1 -1
- pulumi_azure_native/network/v20230201/express_route_circuit_authorization.py +1 -1
- pulumi_azure_native/network/v20230201/express_route_circuit_connection.py +1 -1
- pulumi_azure_native/network/v20230201/express_route_circuit_peering.py +1 -1
- pulumi_azure_native/network/v20230201/express_route_connection.py +1 -1
- pulumi_azure_native/network/v20230201/express_route_cross_connection_peering.py +1 -1
- pulumi_azure_native/network/v20230201/express_route_gateway.py +1 -1
- pulumi_azure_native/network/v20230201/express_route_port.py +1 -1
- pulumi_azure_native/network/v20230201/express_route_port_authorization.py +1 -1
- pulumi_azure_native/network/v20230201/firewall_policy.py +1 -1
- pulumi_azure_native/network/v20230201/firewall_policy_rule_collection_group.py +1 -1
- pulumi_azure_native/network/v20230201/flow_log.py +1 -1
- pulumi_azure_native/network/v20230201/get_route.py +1 -1
- pulumi_azure_native/network/v20230201/hub_route_table.py +1 -1
- pulumi_azure_native/network/v20230201/hub_virtual_network_connection.py +1 -1
- pulumi_azure_native/network/v20230201/inbound_nat_rule.py +1 -1
- pulumi_azure_native/network/v20230201/ip_allocation.py +1 -1
- pulumi_azure_native/network/v20230201/ip_group.py +1 -1
- pulumi_azure_native/network/v20230201/load_balancer.py +1 -1
- pulumi_azure_native/network/v20230201/load_balancer_backend_address_pool.py +1 -1
- pulumi_azure_native/network/v20230201/local_network_gateway.py +1 -1
- pulumi_azure_native/network/v20230201/management_group_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20230201/nat_gateway.py +1 -1
- pulumi_azure_native/network/v20230201/nat_rule.py +1 -1
- pulumi_azure_native/network/v20230201/network_group.py +1 -1
- pulumi_azure_native/network/v20230201/network_interface.py +1 -1
- pulumi_azure_native/network/v20230201/network_interface_tap_configuration.py +1 -1
- pulumi_azure_native/network/v20230201/network_manager.py +1 -1
- pulumi_azure_native/network/v20230201/network_profile.py +1 -1
- pulumi_azure_native/network/v20230201/network_security_group.py +1 -1
- pulumi_azure_native/network/v20230201/network_virtual_appliance.py +1 -1
- pulumi_azure_native/network/v20230201/network_watcher.py +1 -1
- pulumi_azure_native/network/v20230201/outputs.py +14 -15
- pulumi_azure_native/network/v20230201/p2s_vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20230201/packet_capture.py +1 -1
- pulumi_azure_native/network/v20230201/private_dns_zone_group.py +1 -1
- pulumi_azure_native/network/v20230201/private_endpoint.py +1 -1
- pulumi_azure_native/network/v20230201/private_link_service.py +1 -1
- pulumi_azure_native/network/v20230201/private_link_service_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20230201/public_ip_address.py +1 -1
- pulumi_azure_native/network/v20230201/public_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20230201/route.py +3 -22
- pulumi_azure_native/network/v20230201/route_filter.py +1 -1
- pulumi_azure_native/network/v20230201/route_filter_rule.py +1 -1
- pulumi_azure_native/network/v20230201/route_map.py +1 -1
- pulumi_azure_native/network/v20230201/route_table.py +1 -1
- pulumi_azure_native/network/v20230201/routing_intent.py +1 -1
- pulumi_azure_native/network/v20230201/scope_connection.py +1 -1
- pulumi_azure_native/network/v20230201/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20230201/security_partner_provider.py +1 -1
- pulumi_azure_native/network/v20230201/security_rule.py +1 -1
- pulumi_azure_native/network/v20230201/service_endpoint_policy.py +1 -1
- pulumi_azure_native/network/v20230201/service_endpoint_policy_definition.py +1 -1
- pulumi_azure_native/network/v20230201/static_member.py +1 -1
- pulumi_azure_native/network/v20230201/subnet.py +1 -1
- pulumi_azure_native/network/v20230201/subscription_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_appliance_site.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_hub.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_hub_bgp_connection.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_hub_ip_configuration.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_hub_route_table_v2.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_network.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_network_gateway.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_network_gateway_connection.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_network_gateway_nat_rule.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_network_peering.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_network_tap.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_router.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_router_peering.py +1 -1
- pulumi_azure_native/network/v20230201/virtual_wan.py +1 -1
- pulumi_azure_native/network/v20230201/vpn_connection.py +1 -1
- pulumi_azure_native/network/v20230201/vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20230201/vpn_server_configuration.py +1 -1
- pulumi_azure_native/network/v20230201/vpn_site.py +1 -1
- pulumi_azure_native/network/v20230201/web_application_firewall_policy.py +1 -1
- pulumi_azure_native/network/v20230401/_inputs.py +0 -20
- pulumi_azure_native/network/v20230401/admin_rule.py +1 -1
- pulumi_azure_native/network/v20230401/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20230401/application_gateway.py +1 -1
- pulumi_azure_native/network/v20230401/application_gateway_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20230401/application_security_group.py +1 -1
- pulumi_azure_native/network/v20230401/azure_firewall.py +1 -1
- pulumi_azure_native/network/v20230401/bastion_host.py +1 -1
- pulumi_azure_native/network/v20230401/configuration_policy_group.py +1 -1
- pulumi_azure_native/network/v20230401/connection_monitor.py +1 -1
- pulumi_azure_native/network/v20230401/connectivity_configuration.py +1 -1
- pulumi_azure_native/network/v20230401/custom_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20230401/ddos_custom_policy.py +1 -1
- pulumi_azure_native/network/v20230401/ddos_protection_plan.py +1 -1
- pulumi_azure_native/network/v20230401/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20230401/dscp_configuration.py +1 -1
- pulumi_azure_native/network/v20230401/express_route_circuit.py +1 -1
- pulumi_azure_native/network/v20230401/express_route_circuit_authorization.py +1 -1
- pulumi_azure_native/network/v20230401/express_route_circuit_connection.py +1 -1
- pulumi_azure_native/network/v20230401/express_route_circuit_peering.py +1 -1
- pulumi_azure_native/network/v20230401/express_route_connection.py +1 -1
- pulumi_azure_native/network/v20230401/express_route_cross_connection_peering.py +1 -1
- pulumi_azure_native/network/v20230401/express_route_gateway.py +1 -1
- pulumi_azure_native/network/v20230401/express_route_port.py +1 -1
- pulumi_azure_native/network/v20230401/express_route_port_authorization.py +1 -1
- pulumi_azure_native/network/v20230401/firewall_policy.py +1 -1
- pulumi_azure_native/network/v20230401/firewall_policy_rule_collection_group.py +1 -1
- pulumi_azure_native/network/v20230401/flow_log.py +1 -1
- pulumi_azure_native/network/v20230401/get_route.py +1 -1
- pulumi_azure_native/network/v20230401/hub_route_table.py +1 -1
- pulumi_azure_native/network/v20230401/hub_virtual_network_connection.py +1 -1
- pulumi_azure_native/network/v20230401/inbound_nat_rule.py +1 -1
- pulumi_azure_native/network/v20230401/ip_allocation.py +1 -1
- pulumi_azure_native/network/v20230401/ip_group.py +1 -1
- pulumi_azure_native/network/v20230401/load_balancer.py +1 -1
- pulumi_azure_native/network/v20230401/load_balancer_backend_address_pool.py +1 -1
- pulumi_azure_native/network/v20230401/local_network_gateway.py +1 -1
- pulumi_azure_native/network/v20230401/management_group_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20230401/nat_gateway.py +1 -1
- pulumi_azure_native/network/v20230401/nat_rule.py +1 -1
- pulumi_azure_native/network/v20230401/network_group.py +1 -1
- pulumi_azure_native/network/v20230401/network_interface.py +1 -1
- pulumi_azure_native/network/v20230401/network_interface_tap_configuration.py +1 -1
- pulumi_azure_native/network/v20230401/network_manager.py +1 -1
- pulumi_azure_native/network/v20230401/network_profile.py +1 -1
- pulumi_azure_native/network/v20230401/network_security_group.py +1 -1
- pulumi_azure_native/network/v20230401/network_virtual_appliance.py +1 -1
- pulumi_azure_native/network/v20230401/network_watcher.py +1 -1
- pulumi_azure_native/network/v20230401/outputs.py +14 -15
- pulumi_azure_native/network/v20230401/p2s_vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20230401/packet_capture.py +1 -1
- pulumi_azure_native/network/v20230401/private_dns_zone_group.py +1 -1
- pulumi_azure_native/network/v20230401/private_endpoint.py +1 -1
- pulumi_azure_native/network/v20230401/private_link_service.py +1 -1
- pulumi_azure_native/network/v20230401/private_link_service_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20230401/public_ip_address.py +1 -1
- pulumi_azure_native/network/v20230401/public_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20230401/route.py +3 -22
- pulumi_azure_native/network/v20230401/route_filter.py +1 -1
- pulumi_azure_native/network/v20230401/route_filter_rule.py +1 -1
- pulumi_azure_native/network/v20230401/route_map.py +1 -1
- pulumi_azure_native/network/v20230401/route_table.py +1 -1
- pulumi_azure_native/network/v20230401/routing_intent.py +1 -1
- pulumi_azure_native/network/v20230401/scope_connection.py +1 -1
- pulumi_azure_native/network/v20230401/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20230401/security_partner_provider.py +1 -1
- pulumi_azure_native/network/v20230401/security_rule.py +1 -1
- pulumi_azure_native/network/v20230401/service_endpoint_policy.py +1 -1
- pulumi_azure_native/network/v20230401/service_endpoint_policy_definition.py +1 -1
- pulumi_azure_native/network/v20230401/static_member.py +1 -1
- pulumi_azure_native/network/v20230401/subnet.py +1 -1
- pulumi_azure_native/network/v20230401/subscription_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_appliance_site.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_hub.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_hub_bgp_connection.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_hub_ip_configuration.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_hub_route_table_v2.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_network.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_network_gateway.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_network_gateway_connection.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_network_gateway_nat_rule.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_network_peering.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_network_tap.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_router.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_router_peering.py +1 -1
- pulumi_azure_native/network/v20230401/virtual_wan.py +1 -1
- pulumi_azure_native/network/v20230401/vpn_connection.py +1 -1
- pulumi_azure_native/network/v20230401/vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20230401/vpn_server_configuration.py +1 -1
- pulumi_azure_native/network/v20230401/vpn_site.py +1 -1
- pulumi_azure_native/network/v20230401/web_application_firewall_policy.py +1 -1
- pulumi_azure_native/network/v20230501/_inputs.py +0 -20
- pulumi_azure_native/network/v20230501/admin_rule.py +1 -1
- pulumi_azure_native/network/v20230501/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20230501/application_gateway.py +1 -1
- pulumi_azure_native/network/v20230501/application_gateway_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20230501/application_security_group.py +1 -1
- pulumi_azure_native/network/v20230501/azure_firewall.py +1 -1
- pulumi_azure_native/network/v20230501/bastion_host.py +1 -1
- pulumi_azure_native/network/v20230501/configuration_policy_group.py +1 -1
- pulumi_azure_native/network/v20230501/connection_monitor.py +1 -1
- pulumi_azure_native/network/v20230501/connectivity_configuration.py +1 -1
- pulumi_azure_native/network/v20230501/custom_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20230501/ddos_custom_policy.py +1 -1
- pulumi_azure_native/network/v20230501/ddos_protection_plan.py +1 -1
- pulumi_azure_native/network/v20230501/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20230501/dscp_configuration.py +1 -1
- pulumi_azure_native/network/v20230501/express_route_circuit.py +1 -1
- pulumi_azure_native/network/v20230501/express_route_circuit_authorization.py +1 -1
- pulumi_azure_native/network/v20230501/express_route_circuit_connection.py +1 -1
- pulumi_azure_native/network/v20230501/express_route_circuit_peering.py +1 -1
- pulumi_azure_native/network/v20230501/express_route_connection.py +1 -1
- pulumi_azure_native/network/v20230501/express_route_cross_connection_peering.py +1 -1
- pulumi_azure_native/network/v20230501/express_route_gateway.py +1 -1
- pulumi_azure_native/network/v20230501/express_route_port.py +1 -1
- pulumi_azure_native/network/v20230501/express_route_port_authorization.py +1 -1
- pulumi_azure_native/network/v20230501/firewall_policy.py +1 -1
- pulumi_azure_native/network/v20230501/firewall_policy_rule_collection_group.py +1 -1
- pulumi_azure_native/network/v20230501/flow_log.py +1 -1
- pulumi_azure_native/network/v20230501/get_route.py +1 -1
- pulumi_azure_native/network/v20230501/hub_route_table.py +1 -1
- pulumi_azure_native/network/v20230501/hub_virtual_network_connection.py +1 -1
- pulumi_azure_native/network/v20230501/inbound_nat_rule.py +1 -1
- pulumi_azure_native/network/v20230501/ip_allocation.py +1 -1
- pulumi_azure_native/network/v20230501/ip_group.py +1 -1
- pulumi_azure_native/network/v20230501/load_balancer.py +1 -1
- pulumi_azure_native/network/v20230501/load_balancer_backend_address_pool.py +1 -1
- pulumi_azure_native/network/v20230501/local_network_gateway.py +1 -1
- pulumi_azure_native/network/v20230501/management_group_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20230501/nat_gateway.py +1 -1
- pulumi_azure_native/network/v20230501/nat_rule.py +1 -1
- pulumi_azure_native/network/v20230501/network_group.py +1 -1
- pulumi_azure_native/network/v20230501/network_interface.py +1 -1
- pulumi_azure_native/network/v20230501/network_interface_tap_configuration.py +1 -1
- pulumi_azure_native/network/v20230501/network_manager.py +1 -1
- pulumi_azure_native/network/v20230501/network_profile.py +1 -1
- pulumi_azure_native/network/v20230501/network_security_group.py +1 -1
- pulumi_azure_native/network/v20230501/network_virtual_appliance.py +1 -1
- pulumi_azure_native/network/v20230501/network_watcher.py +1 -1
- pulumi_azure_native/network/v20230501/outputs.py +14 -15
- pulumi_azure_native/network/v20230501/p2s_vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20230501/packet_capture.py +1 -1
- pulumi_azure_native/network/v20230501/private_dns_zone_group.py +1 -1
- pulumi_azure_native/network/v20230501/private_endpoint.py +1 -1
- pulumi_azure_native/network/v20230501/private_link_service.py +1 -1
- pulumi_azure_native/network/v20230501/private_link_service_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20230501/public_ip_address.py +1 -1
- pulumi_azure_native/network/v20230501/public_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20230501/route.py +3 -22
- pulumi_azure_native/network/v20230501/route_filter.py +1 -1
- pulumi_azure_native/network/v20230501/route_filter_rule.py +1 -1
- pulumi_azure_native/network/v20230501/route_map.py +1 -1
- pulumi_azure_native/network/v20230501/route_table.py +1 -1
- pulumi_azure_native/network/v20230501/routing_intent.py +1 -1
- pulumi_azure_native/network/v20230501/scope_connection.py +1 -1
- pulumi_azure_native/network/v20230501/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20230501/security_partner_provider.py +1 -1
- pulumi_azure_native/network/v20230501/security_rule.py +1 -1
- pulumi_azure_native/network/v20230501/service_endpoint_policy.py +1 -1
- pulumi_azure_native/network/v20230501/service_endpoint_policy_definition.py +1 -1
- pulumi_azure_native/network/v20230501/static_member.py +1 -1
- pulumi_azure_native/network/v20230501/subnet.py +1 -1
- pulumi_azure_native/network/v20230501/subscription_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_appliance_site.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_hub.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_hub_bgp_connection.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_hub_ip_configuration.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_hub_route_table_v2.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_network.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_network_gateway.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_network_gateway_connection.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_network_gateway_nat_rule.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_network_peering.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_network_tap.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_router.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_router_peering.py +1 -1
- pulumi_azure_native/network/v20230501/virtual_wan.py +1 -1
- pulumi_azure_native/network/v20230501/vpn_connection.py +1 -1
- pulumi_azure_native/network/v20230501/vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20230501/vpn_server_configuration.py +1 -1
- pulumi_azure_native/network/v20230501/vpn_site.py +1 -1
- pulumi_azure_native/network/v20230501/web_application_firewall_policy.py +1 -1
- pulumi_azure_native/network/v20230601/_inputs.py +0 -20
- pulumi_azure_native/network/v20230601/admin_rule.py +1 -1
- pulumi_azure_native/network/v20230601/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20230601/application_gateway.py +1 -1
- pulumi_azure_native/network/v20230601/application_gateway_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20230601/application_security_group.py +1 -1
- pulumi_azure_native/network/v20230601/azure_firewall.py +1 -1
- pulumi_azure_native/network/v20230601/bastion_host.py +1 -1
- pulumi_azure_native/network/v20230601/configuration_policy_group.py +1 -1
- pulumi_azure_native/network/v20230601/connection_monitor.py +1 -1
- pulumi_azure_native/network/v20230601/connectivity_configuration.py +1 -1
- pulumi_azure_native/network/v20230601/custom_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20230601/ddos_custom_policy.py +1 -1
- pulumi_azure_native/network/v20230601/ddos_protection_plan.py +1 -1
- pulumi_azure_native/network/v20230601/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20230601/dscp_configuration.py +1 -1
- pulumi_azure_native/network/v20230601/express_route_circuit.py +1 -1
- pulumi_azure_native/network/v20230601/express_route_circuit_authorization.py +1 -1
- pulumi_azure_native/network/v20230601/express_route_circuit_connection.py +1 -1
- pulumi_azure_native/network/v20230601/express_route_circuit_peering.py +1 -1
- pulumi_azure_native/network/v20230601/express_route_connection.py +1 -1
- pulumi_azure_native/network/v20230601/express_route_cross_connection_peering.py +1 -1
- pulumi_azure_native/network/v20230601/express_route_gateway.py +1 -1
- pulumi_azure_native/network/v20230601/express_route_port.py +1 -1
- pulumi_azure_native/network/v20230601/express_route_port_authorization.py +1 -1
- pulumi_azure_native/network/v20230601/firewall_policy.py +1 -1
- pulumi_azure_native/network/v20230601/firewall_policy_rule_collection_group.py +1 -1
- pulumi_azure_native/network/v20230601/flow_log.py +1 -1
- pulumi_azure_native/network/v20230601/get_route.py +1 -1
- pulumi_azure_native/network/v20230601/hub_route_table.py +1 -1
- pulumi_azure_native/network/v20230601/hub_virtual_network_connection.py +1 -1
- pulumi_azure_native/network/v20230601/inbound_nat_rule.py +1 -1
- pulumi_azure_native/network/v20230601/ip_allocation.py +1 -1
- pulumi_azure_native/network/v20230601/ip_group.py +1 -1
- pulumi_azure_native/network/v20230601/load_balancer.py +1 -1
- pulumi_azure_native/network/v20230601/load_balancer_backend_address_pool.py +1 -1
- pulumi_azure_native/network/v20230601/local_network_gateway.py +1 -1
- pulumi_azure_native/network/v20230601/management_group_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20230601/nat_gateway.py +1 -1
- pulumi_azure_native/network/v20230601/nat_rule.py +1 -1
- pulumi_azure_native/network/v20230601/network_group.py +1 -1
- pulumi_azure_native/network/v20230601/network_interface.py +1 -1
- pulumi_azure_native/network/v20230601/network_interface_tap_configuration.py +1 -1
- pulumi_azure_native/network/v20230601/network_manager.py +1 -1
- pulumi_azure_native/network/v20230601/network_profile.py +1 -1
- pulumi_azure_native/network/v20230601/network_security_group.py +1 -1
- pulumi_azure_native/network/v20230601/network_virtual_appliance.py +1 -1
- pulumi_azure_native/network/v20230601/network_virtual_appliance_connection.py +1 -1
- pulumi_azure_native/network/v20230601/network_watcher.py +1 -1
- pulumi_azure_native/network/v20230601/outputs.py +14 -15
- pulumi_azure_native/network/v20230601/p2s_vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20230601/packet_capture.py +1 -1
- pulumi_azure_native/network/v20230601/private_dns_zone_group.py +1 -1
- pulumi_azure_native/network/v20230601/private_endpoint.py +1 -1
- pulumi_azure_native/network/v20230601/private_link_service.py +1 -1
- pulumi_azure_native/network/v20230601/private_link_service_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20230601/public_ip_address.py +1 -1
- pulumi_azure_native/network/v20230601/public_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20230601/route.py +3 -22
- pulumi_azure_native/network/v20230601/route_filter.py +1 -1
- pulumi_azure_native/network/v20230601/route_filter_rule.py +1 -1
- pulumi_azure_native/network/v20230601/route_map.py +1 -1
- pulumi_azure_native/network/v20230601/route_table.py +1 -1
- pulumi_azure_native/network/v20230601/routing_intent.py +1 -1
- pulumi_azure_native/network/v20230601/scope_connection.py +1 -1
- pulumi_azure_native/network/v20230601/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20230601/security_partner_provider.py +1 -1
- pulumi_azure_native/network/v20230601/security_rule.py +1 -1
- pulumi_azure_native/network/v20230601/service_endpoint_policy.py +1 -1
- pulumi_azure_native/network/v20230601/service_endpoint_policy_definition.py +1 -1
- pulumi_azure_native/network/v20230601/static_member.py +1 -1
- pulumi_azure_native/network/v20230601/subnet.py +1 -1
- pulumi_azure_native/network/v20230601/subscription_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_appliance_site.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_hub.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_hub_bgp_connection.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_hub_ip_configuration.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_hub_route_table_v2.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_network.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_network_gateway.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_network_gateway_connection.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_network_gateway_nat_rule.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_network_peering.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_network_tap.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_router.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_router_peering.py +1 -1
- pulumi_azure_native/network/v20230601/virtual_wan.py +1 -1
- pulumi_azure_native/network/v20230601/vpn_connection.py +1 -1
- pulumi_azure_native/network/v20230601/vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20230601/vpn_server_configuration.py +1 -1
- pulumi_azure_native/network/v20230601/vpn_site.py +1 -1
- pulumi_azure_native/network/v20230601/web_application_firewall_policy.py +1 -1
- pulumi_azure_native/network/v20230901/_inputs.py +0 -20
- pulumi_azure_native/network/v20230901/admin_rule.py +1 -1
- pulumi_azure_native/network/v20230901/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20230901/application_gateway.py +1 -1
- pulumi_azure_native/network/v20230901/application_gateway_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20230901/application_security_group.py +1 -1
- pulumi_azure_native/network/v20230901/azure_firewall.py +1 -1
- pulumi_azure_native/network/v20230901/bastion_host.py +1 -1
- pulumi_azure_native/network/v20230901/configuration_policy_group.py +1 -1
- pulumi_azure_native/network/v20230901/connection_monitor.py +1 -1
- pulumi_azure_native/network/v20230901/connectivity_configuration.py +1 -1
- pulumi_azure_native/network/v20230901/custom_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20230901/ddos_custom_policy.py +1 -1
- pulumi_azure_native/network/v20230901/ddos_protection_plan.py +1 -1
- pulumi_azure_native/network/v20230901/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20230901/dscp_configuration.py +1 -1
- pulumi_azure_native/network/v20230901/express_route_circuit.py +1 -1
- pulumi_azure_native/network/v20230901/express_route_circuit_authorization.py +1 -1
- pulumi_azure_native/network/v20230901/express_route_circuit_connection.py +1 -1
- pulumi_azure_native/network/v20230901/express_route_circuit_peering.py +1 -1
- pulumi_azure_native/network/v20230901/express_route_connection.py +1 -1
- pulumi_azure_native/network/v20230901/express_route_cross_connection_peering.py +1 -1
- pulumi_azure_native/network/v20230901/express_route_gateway.py +1 -1
- pulumi_azure_native/network/v20230901/express_route_port.py +1 -1
- pulumi_azure_native/network/v20230901/express_route_port_authorization.py +1 -1
- pulumi_azure_native/network/v20230901/firewall_policy.py +1 -1
- pulumi_azure_native/network/v20230901/firewall_policy_rule_collection_group.py +1 -1
- pulumi_azure_native/network/v20230901/flow_log.py +1 -1
- pulumi_azure_native/network/v20230901/get_route.py +1 -1
- pulumi_azure_native/network/v20230901/hub_route_table.py +1 -1
- pulumi_azure_native/network/v20230901/hub_virtual_network_connection.py +1 -1
- pulumi_azure_native/network/v20230901/inbound_nat_rule.py +1 -1
- pulumi_azure_native/network/v20230901/ip_allocation.py +1 -1
- pulumi_azure_native/network/v20230901/ip_group.py +1 -1
- pulumi_azure_native/network/v20230901/load_balancer.py +1 -1
- pulumi_azure_native/network/v20230901/load_balancer_backend_address_pool.py +1 -1
- pulumi_azure_native/network/v20230901/local_network_gateway.py +1 -1
- pulumi_azure_native/network/v20230901/management_group_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20230901/nat_gateway.py +1 -1
- pulumi_azure_native/network/v20230901/nat_rule.py +1 -1
- pulumi_azure_native/network/v20230901/network_group.py +1 -1
- pulumi_azure_native/network/v20230901/network_interface.py +1 -1
- pulumi_azure_native/network/v20230901/network_interface_tap_configuration.py +1 -1
- pulumi_azure_native/network/v20230901/network_manager.py +1 -1
- pulumi_azure_native/network/v20230901/network_profile.py +1 -1
- pulumi_azure_native/network/v20230901/network_security_group.py +1 -1
- pulumi_azure_native/network/v20230901/network_virtual_appliance.py +1 -1
- pulumi_azure_native/network/v20230901/network_virtual_appliance_connection.py +1 -1
- pulumi_azure_native/network/v20230901/network_watcher.py +1 -1
- pulumi_azure_native/network/v20230901/outputs.py +14 -15
- pulumi_azure_native/network/v20230901/p2s_vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20230901/packet_capture.py +1 -1
- pulumi_azure_native/network/v20230901/private_dns_zone_group.py +1 -1
- pulumi_azure_native/network/v20230901/private_endpoint.py +1 -1
- pulumi_azure_native/network/v20230901/private_link_service.py +1 -1
- pulumi_azure_native/network/v20230901/private_link_service_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20230901/public_ip_address.py +1 -1
- pulumi_azure_native/network/v20230901/public_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20230901/route.py +3 -22
- pulumi_azure_native/network/v20230901/route_filter.py +1 -1
- pulumi_azure_native/network/v20230901/route_filter_rule.py +1 -1
- pulumi_azure_native/network/v20230901/route_map.py +1 -1
- pulumi_azure_native/network/v20230901/route_table.py +1 -1
- pulumi_azure_native/network/v20230901/routing_intent.py +1 -1
- pulumi_azure_native/network/v20230901/scope_connection.py +1 -1
- pulumi_azure_native/network/v20230901/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20230901/security_partner_provider.py +1 -1
- pulumi_azure_native/network/v20230901/security_rule.py +1 -1
- pulumi_azure_native/network/v20230901/service_endpoint_policy.py +1 -1
- pulumi_azure_native/network/v20230901/service_endpoint_policy_definition.py +1 -1
- pulumi_azure_native/network/v20230901/static_member.py +1 -1
- pulumi_azure_native/network/v20230901/subnet.py +1 -1
- pulumi_azure_native/network/v20230901/subscription_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_appliance_site.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_hub.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_hub_bgp_connection.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_hub_ip_configuration.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_hub_route_table_v2.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_network.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_network_gateway.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_network_gateway_connection.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_network_gateway_nat_rule.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_network_peering.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_network_tap.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_router.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_router_peering.py +1 -1
- pulumi_azure_native/network/v20230901/virtual_wan.py +1 -1
- pulumi_azure_native/network/v20230901/vpn_connection.py +1 -1
- pulumi_azure_native/network/v20230901/vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20230901/vpn_server_configuration.py +1 -1
- pulumi_azure_native/network/v20230901/vpn_site.py +1 -1
- pulumi_azure_native/network/v20230901/web_application_firewall_policy.py +1 -1
- pulumi_azure_native/network/v20231101/_inputs.py +0 -20
- pulumi_azure_native/network/v20231101/admin_rule.py +1 -1
- pulumi_azure_native/network/v20231101/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20231101/application_gateway.py +1 -1
- pulumi_azure_native/network/v20231101/application_gateway_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20231101/application_security_group.py +1 -1
- pulumi_azure_native/network/v20231101/azure_firewall.py +1 -1
- pulumi_azure_native/network/v20231101/bastion_host.py +1 -1
- pulumi_azure_native/network/v20231101/configuration_policy_group.py +1 -1
- pulumi_azure_native/network/v20231101/connection_monitor.py +1 -1
- pulumi_azure_native/network/v20231101/connectivity_configuration.py +1 -1
- pulumi_azure_native/network/v20231101/custom_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20231101/ddos_custom_policy.py +1 -1
- pulumi_azure_native/network/v20231101/ddos_protection_plan.py +1 -1
- pulumi_azure_native/network/v20231101/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20231101/dscp_configuration.py +1 -1
- pulumi_azure_native/network/v20231101/express_route_circuit.py +1 -1
- pulumi_azure_native/network/v20231101/express_route_circuit_authorization.py +1 -1
- pulumi_azure_native/network/v20231101/express_route_circuit_connection.py +1 -1
- pulumi_azure_native/network/v20231101/express_route_circuit_peering.py +1 -1
- pulumi_azure_native/network/v20231101/express_route_connection.py +1 -1
- pulumi_azure_native/network/v20231101/express_route_cross_connection_peering.py +1 -1
- pulumi_azure_native/network/v20231101/express_route_gateway.py +1 -1
- pulumi_azure_native/network/v20231101/express_route_port.py +1 -1
- pulumi_azure_native/network/v20231101/express_route_port_authorization.py +1 -1
- pulumi_azure_native/network/v20231101/firewall_policy.py +1 -1
- pulumi_azure_native/network/v20231101/firewall_policy_draft.py +1 -1
- pulumi_azure_native/network/v20231101/firewall_policy_rule_collection_group.py +1 -1
- pulumi_azure_native/network/v20231101/firewall_policy_rule_collection_group_draft.py +1 -1
- pulumi_azure_native/network/v20231101/flow_log.py +1 -1
- pulumi_azure_native/network/v20231101/get_route.py +1 -1
- pulumi_azure_native/network/v20231101/hub_route_table.py +1 -1
- pulumi_azure_native/network/v20231101/hub_virtual_network_connection.py +1 -1
- pulumi_azure_native/network/v20231101/inbound_nat_rule.py +1 -1
- pulumi_azure_native/network/v20231101/ip_allocation.py +1 -1
- pulumi_azure_native/network/v20231101/ip_group.py +1 -1
- pulumi_azure_native/network/v20231101/load_balancer.py +1 -1
- pulumi_azure_native/network/v20231101/load_balancer_backend_address_pool.py +1 -1
- pulumi_azure_native/network/v20231101/local_network_gateway.py +1 -1
- pulumi_azure_native/network/v20231101/management_group_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20231101/nat_gateway.py +1 -1
- pulumi_azure_native/network/v20231101/nat_rule.py +1 -1
- pulumi_azure_native/network/v20231101/network_group.py +1 -1
- pulumi_azure_native/network/v20231101/network_interface.py +1 -1
- pulumi_azure_native/network/v20231101/network_interface_tap_configuration.py +1 -1
- pulumi_azure_native/network/v20231101/network_manager.py +1 -1
- pulumi_azure_native/network/v20231101/network_profile.py +1 -1
- pulumi_azure_native/network/v20231101/network_security_group.py +1 -1
- pulumi_azure_native/network/v20231101/network_virtual_appliance.py +1 -1
- pulumi_azure_native/network/v20231101/network_virtual_appliance_connection.py +1 -1
- pulumi_azure_native/network/v20231101/network_watcher.py +1 -1
- pulumi_azure_native/network/v20231101/outputs.py +14 -15
- pulumi_azure_native/network/v20231101/p2s_vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20231101/packet_capture.py +1 -1
- pulumi_azure_native/network/v20231101/private_dns_zone_group.py +1 -1
- pulumi_azure_native/network/v20231101/private_endpoint.py +1 -1
- pulumi_azure_native/network/v20231101/private_link_service.py +1 -1
- pulumi_azure_native/network/v20231101/private_link_service_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20231101/public_ip_address.py +1 -1
- pulumi_azure_native/network/v20231101/public_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20231101/route.py +3 -22
- pulumi_azure_native/network/v20231101/route_filter.py +1 -1
- pulumi_azure_native/network/v20231101/route_filter_rule.py +1 -1
- pulumi_azure_native/network/v20231101/route_map.py +1 -1
- pulumi_azure_native/network/v20231101/route_table.py +1 -1
- pulumi_azure_native/network/v20231101/routing_intent.py +1 -1
- pulumi_azure_native/network/v20231101/scope_connection.py +1 -1
- pulumi_azure_native/network/v20231101/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20231101/security_partner_provider.py +1 -1
- pulumi_azure_native/network/v20231101/security_rule.py +1 -1
- pulumi_azure_native/network/v20231101/service_endpoint_policy.py +1 -1
- pulumi_azure_native/network/v20231101/service_endpoint_policy_definition.py +1 -1
- pulumi_azure_native/network/v20231101/static_member.py +1 -1
- pulumi_azure_native/network/v20231101/subnet.py +1 -1
- pulumi_azure_native/network/v20231101/subscription_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_appliance_site.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_hub.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_hub_bgp_connection.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_hub_ip_configuration.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_hub_route_table_v2.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_network.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_network_gateway.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_network_gateway_connection.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_network_gateway_nat_rule.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_network_peering.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_network_tap.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_router.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_router_peering.py +1 -1
- pulumi_azure_native/network/v20231101/virtual_wan.py +1 -1
- pulumi_azure_native/network/v20231101/vpn_connection.py +1 -1
- pulumi_azure_native/network/v20231101/vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20231101/vpn_server_configuration.py +1 -1
- pulumi_azure_native/network/v20231101/vpn_site.py +1 -1
- pulumi_azure_native/network/v20231101/web_application_firewall_policy.py +1 -1
- pulumi_azure_native/network/v20240101/_enums.py +0 -1
- pulumi_azure_native/network/v20240101/_inputs.py +0 -20
- pulumi_azure_native/network/v20240101/admin_rule.py +1 -1
- pulumi_azure_native/network/v20240101/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20240101/application_gateway.py +1 -1
- pulumi_azure_native/network/v20240101/application_gateway_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20240101/application_security_group.py +1 -1
- pulumi_azure_native/network/v20240101/azure_firewall.py +1 -1
- pulumi_azure_native/network/v20240101/bastion_host.py +1 -1
- pulumi_azure_native/network/v20240101/configuration_policy_group.py +1 -1
- pulumi_azure_native/network/v20240101/connection_monitor.py +1 -1
- pulumi_azure_native/network/v20240101/connectivity_configuration.py +1 -1
- pulumi_azure_native/network/v20240101/custom_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20240101/ddos_custom_policy.py +1 -1
- pulumi_azure_native/network/v20240101/ddos_protection_plan.py +1 -1
- pulumi_azure_native/network/v20240101/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20240101/dscp_configuration.py +1 -1
- pulumi_azure_native/network/v20240101/express_route_circuit.py +1 -1
- pulumi_azure_native/network/v20240101/express_route_circuit_authorization.py +1 -1
- pulumi_azure_native/network/v20240101/express_route_circuit_connection.py +1 -1
- pulumi_azure_native/network/v20240101/express_route_circuit_peering.py +1 -1
- pulumi_azure_native/network/v20240101/express_route_connection.py +1 -1
- pulumi_azure_native/network/v20240101/express_route_cross_connection_peering.py +1 -1
- pulumi_azure_native/network/v20240101/express_route_gateway.py +1 -1
- pulumi_azure_native/network/v20240101/express_route_port.py +1 -1
- pulumi_azure_native/network/v20240101/express_route_port_authorization.py +1 -1
- pulumi_azure_native/network/v20240101/firewall_policy.py +1 -1
- pulumi_azure_native/network/v20240101/firewall_policy_draft.py +1 -1
- pulumi_azure_native/network/v20240101/firewall_policy_rule_collection_group.py +1 -1
- pulumi_azure_native/network/v20240101/firewall_policy_rule_collection_group_draft.py +1 -1
- pulumi_azure_native/network/v20240101/flow_log.py +1 -1
- pulumi_azure_native/network/v20240101/get_route.py +1 -1
- pulumi_azure_native/network/v20240101/hub_route_table.py +1 -1
- pulumi_azure_native/network/v20240101/hub_virtual_network_connection.py +1 -1
- pulumi_azure_native/network/v20240101/inbound_nat_rule.py +1 -1
- pulumi_azure_native/network/v20240101/ip_allocation.py +1 -1
- pulumi_azure_native/network/v20240101/ip_group.py +1 -1
- pulumi_azure_native/network/v20240101/load_balancer.py +1 -1
- pulumi_azure_native/network/v20240101/load_balancer_backend_address_pool.py +1 -1
- pulumi_azure_native/network/v20240101/local_network_gateway.py +1 -1
- pulumi_azure_native/network/v20240101/management_group_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20240101/nat_gateway.py +1 -1
- pulumi_azure_native/network/v20240101/nat_rule.py +1 -1
- pulumi_azure_native/network/v20240101/network_group.py +1 -1
- pulumi_azure_native/network/v20240101/network_interface.py +1 -1
- pulumi_azure_native/network/v20240101/network_interface_tap_configuration.py +1 -1
- pulumi_azure_native/network/v20240101/network_manager.py +1 -1
- pulumi_azure_native/network/v20240101/network_profile.py +1 -1
- pulumi_azure_native/network/v20240101/network_security_group.py +1 -1
- pulumi_azure_native/network/v20240101/network_virtual_appliance.py +1 -1
- pulumi_azure_native/network/v20240101/network_virtual_appliance_connection.py +1 -1
- pulumi_azure_native/network/v20240101/network_watcher.py +1 -1
- pulumi_azure_native/network/v20240101/outputs.py +14 -15
- pulumi_azure_native/network/v20240101/p2s_vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20240101/packet_capture.py +1 -1
- pulumi_azure_native/network/v20240101/private_dns_zone_group.py +1 -1
- pulumi_azure_native/network/v20240101/private_endpoint.py +1 -1
- pulumi_azure_native/network/v20240101/private_link_service.py +1 -1
- pulumi_azure_native/network/v20240101/private_link_service_private_endpoint_connection.py +1 -1
- pulumi_azure_native/network/v20240101/public_ip_address.py +1 -1
- pulumi_azure_native/network/v20240101/public_ip_prefix.py +1 -1
- pulumi_azure_native/network/v20240101/route.py +3 -22
- pulumi_azure_native/network/v20240101/route_filter.py +1 -1
- pulumi_azure_native/network/v20240101/route_filter_rule.py +1 -1
- pulumi_azure_native/network/v20240101/route_map.py +1 -1
- pulumi_azure_native/network/v20240101/route_table.py +1 -1
- pulumi_azure_native/network/v20240101/routing_intent.py +1 -1
- pulumi_azure_native/network/v20240101/scope_connection.py +1 -1
- pulumi_azure_native/network/v20240101/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20240101/security_partner_provider.py +1 -1
- pulumi_azure_native/network/v20240101/security_rule.py +1 -1
- pulumi_azure_native/network/v20240101/service_endpoint_policy.py +1 -1
- pulumi_azure_native/network/v20240101/service_endpoint_policy_definition.py +1 -1
- pulumi_azure_native/network/v20240101/static_member.py +1 -1
- pulumi_azure_native/network/v20240101/subnet.py +1 -1
- pulumi_azure_native/network/v20240101/subscription_network_manager_connection.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_appliance_site.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_hub.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_hub_bgp_connection.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_hub_ip_configuration.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_hub_route_table_v2.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_network.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_network_gateway.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_network_gateway_connection.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_network_gateway_nat_rule.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_network_peering.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_network_tap.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_router.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_router_peering.py +1 -1
- pulumi_azure_native/network/v20240101/virtual_wan.py +1 -1
- pulumi_azure_native/network/v20240101/vpn_connection.py +1 -1
- pulumi_azure_native/network/v20240101/vpn_gateway.py +1 -1
- pulumi_azure_native/network/v20240101/vpn_server_configuration.py +1 -1
- pulumi_azure_native/network/v20240101/vpn_site.py +1 -1
- pulumi_azure_native/network/v20240101/web_application_firewall_policy.py +1 -1
- pulumi_azure_native/network/v20240101preview/admin_rule.py +1 -1
- pulumi_azure_native/network/v20240101preview/admin_rule_collection.py +1 -1
- pulumi_azure_native/network/v20240101preview/default_admin_rule.py +1 -1
- pulumi_azure_native/network/v20240101preview/network_manager.py +1 -1
- pulumi_azure_native/network/v20240101preview/security_admin_configuration.py +1 -1
- pulumi_azure_native/network/v20240301/__init__.py +225 -0
- pulumi_azure_native/network/v20240301/_enums.py +1874 -0
- pulumi_azure_native/network/v20240301/_inputs.py +28409 -0
- pulumi_azure_native/network/v20240301/admin_rule.py +563 -0
- pulumi_azure_native/network/v20240301/admin_rule_collection.py +301 -0
- pulumi_azure_native/network/v20240301/application_gateway.py +1256 -0
- pulumi_azure_native/network/v20240301/application_gateway_private_endpoint_connection.py +289 -0
- pulumi_azure_native/network/v20240301/application_security_group.py +266 -0
- pulumi_azure_native/network/v20240301/azure_firewall.py +646 -0
- pulumi_azure_native/network/v20240301/bastion_host.py +685 -0
- pulumi_azure_native/network/v20240301/configuration_policy_group.py +338 -0
- pulumi_azure_native/network/v20240301/connection_monitor.py +579 -0
- pulumi_azure_native/network/v20240301/connectivity_configuration.py +398 -0
- pulumi_azure_native/network/v20240301/custom_ip_prefix.py +647 -0
- pulumi_azure_native/network/v20240301/ddos_custom_policy.py +266 -0
- pulumi_azure_native/network/v20240301/ddos_protection_plan.py +267 -0
- pulumi_azure_native/network/v20240301/default_admin_rule.py +415 -0
- pulumi_azure_native/network/v20240301/dscp_configuration.py +492 -0
- pulumi_azure_native/network/v20240301/express_route_circuit.py +720 -0
- pulumi_azure_native/network/v20240301/express_route_circuit_authorization.py +307 -0
- pulumi_azure_native/network/v20240301/express_route_circuit_connection.py +416 -0
- pulumi_azure_native/network/v20240301/express_route_circuit_peering.py +738 -0
- pulumi_azure_native/network/v20240301/express_route_connection.py +426 -0
- pulumi_azure_native/network/v20240301/express_route_cross_connection_peering.py +561 -0
- pulumi_azure_native/network/v20240301/express_route_gateway.py +379 -0
- pulumi_azure_native/network/v20240301/express_route_port.py +493 -0
- pulumi_azure_native/network/v20240301/express_route_port_authorization.py +268 -0
- pulumi_azure_native/network/v20240301/firewall_policy.py +647 -0
- pulumi_azure_native/network/v20240301/firewall_policy_draft.py +501 -0
- pulumi_azure_native/network/v20240301/firewall_policy_rule_collection_group.py +309 -0
- pulumi_azure_native/network/v20240301/firewall_policy_rule_collection_group_draft.py +290 -0
- pulumi_azure_native/network/v20240301/flow_log.py +524 -0
- pulumi_azure_native/network/v20240301/get_active_sessions.py +97 -0
- pulumi_azure_native/network/v20240301/get_admin_rule.py +308 -0
- pulumi_azure_native/network/v20240301/get_admin_rule_collection.py +198 -0
- pulumi_azure_native/network/v20240301/get_application_gateway.py +643 -0
- pulumi_azure_native/network/v20240301/get_application_gateway_backend_health_on_demand.py +144 -0
- pulumi_azure_native/network/v20240301/get_application_gateway_private_endpoint_connection.py +180 -0
- pulumi_azure_native/network/v20240301/get_application_security_group.py +174 -0
- pulumi_azure_native/network/v20240301/get_azure_firewall.py +344 -0
- pulumi_azure_native/network/v20240301/get_bastion_host.py +341 -0
- pulumi_azure_native/network/v20240301/get_bastion_shareable_link.py +103 -0
- pulumi_azure_native/network/v20240301/get_configuration_policy_group.py +193 -0
- pulumi_azure_native/network/v20240301/get_connection_monitor.py +323 -0
- pulumi_azure_native/network/v20240301/get_connectivity_configuration.py +245 -0
- pulumi_azure_native/network/v20240301/get_custom_ip_prefix.py +375 -0
- pulumi_azure_native/network/v20240301/get_ddos_custom_policy.py +174 -0
- pulumi_azure_native/network/v20240301/get_ddos_protection_plan.py +201 -0
- pulumi_azure_native/network/v20240301/get_default_admin_rule.py +321 -0
- pulumi_azure_native/network/v20240301/get_dscp_configuration.py +292 -0
- pulumi_azure_native/network/v20240301/get_express_route_circuit.py +383 -0
- pulumi_azure_native/network/v20240301/get_express_route_circuit_authorization.py +179 -0
- pulumi_azure_native/network/v20240301/get_express_route_circuit_connection.py +224 -0
- pulumi_azure_native/network/v20240301/get_express_route_circuit_peering.py +388 -0
- pulumi_azure_native/network/v20240301/get_express_route_connection.py +206 -0
- pulumi_azure_native/network/v20240301/get_express_route_cross_connection_peering.py +310 -0
- pulumi_azure_native/network/v20240301/get_express_route_gateway.py +214 -0
- pulumi_azure_native/network/v20240301/get_express_route_port.py +318 -0
- pulumi_azure_native/network/v20240301/get_express_route_port_authorization.py +179 -0
- pulumi_azure_native/network/v20240301/get_firewall_policy.py +375 -0
- pulumi_azure_native/network/v20240301/get_firewall_policy_draft.py +253 -0
- pulumi_azure_native/network/v20240301/get_firewall_policy_rule_collection_group.py +180 -0
- pulumi_azure_native/network/v20240301/get_firewall_policy_rule_collection_group_draft.py +154 -0
- pulumi_azure_native/network/v20240301/get_flow_log.py +284 -0
- pulumi_azure_native/network/v20240301/get_hub_route_table.py +193 -0
- pulumi_azure_native/network/v20240301/get_hub_virtual_network_connection.py +193 -0
- pulumi_azure_native/network/v20240301/get_inbound_nat_rule.py +289 -0
- pulumi_azure_native/network/v20240301/get_ip_allocation.py +245 -0
- pulumi_azure_native/network/v20240301/get_ip_group.py +206 -0
- pulumi_azure_native/network/v20240301/get_load_balancer.py +297 -0
- pulumi_azure_native/network/v20240301/get_load_balancer_backend_address_pool.py +284 -0
- pulumi_azure_native/network/v20240301/get_local_network_gateway.py +227 -0
- pulumi_azure_native/network/v20240301/get_management_group_network_manager_connection.py +162 -0
- pulumi_azure_native/network/v20240301/get_nat_gateway.py +258 -0
- pulumi_azure_native/network/v20240301/get_nat_rule.py +219 -0
- pulumi_azure_native/network/v20240301/get_network_group.py +193 -0
- pulumi_azure_native/network/v20240301/get_network_interface.py +453 -0
- pulumi_azure_native/network/v20240301/get_network_interface_tap_configuration.py +154 -0
- pulumi_azure_native/network/v20240301/get_network_manager.py +227 -0
- pulumi_azure_native/network/v20240301/get_network_manager_routing_configuration.py +180 -0
- pulumi_azure_native/network/v20240301/get_network_profile.py +206 -0
- pulumi_azure_native/network/v20240301/get_network_security_group.py +258 -0
- pulumi_azure_native/network/v20240301/get_network_virtual_appliance.py +414 -0
- pulumi_azure_native/network/v20240301/get_network_virtual_appliance_connection.py +180 -0
- pulumi_azure_native/network/v20240301/get_network_watcher.py +161 -0
- pulumi_azure_native/network/v20240301/get_p2s_vpn_gateway.py +253 -0
- pulumi_azure_native/network/v20240301/get_p2s_vpn_gateway_p2s_vpn_connection_health.py +253 -0
- pulumi_azure_native/network/v20240301/get_p2s_vpn_gateway_p2s_vpn_connection_health_detailed.py +93 -0
- pulumi_azure_native/network/v20240301/get_packet_capture.py +258 -0
- pulumi_azure_native/network/v20240301/get_private_dns_zone_group.py +141 -0
- pulumi_azure_native/network/v20240301/get_private_endpoint.py +284 -0
- pulumi_azure_native/network/v20240301/get_private_link_service.py +310 -0
- pulumi_azure_native/network/v20240301/get_private_link_service_private_endpoint_connection.py +198 -0
- pulumi_azure_native/network/v20240301/get_public_ip_address.py +401 -0
- pulumi_azure_native/network/v20240301/get_public_ip_prefix.py +323 -0
- pulumi_azure_native/network/v20240301/get_route.py +192 -0
- pulumi_azure_native/network/v20240301/get_route_filter.py +206 -0
- pulumi_azure_native/network/v20240301/get_route_filter_rule.py +179 -0
- pulumi_azure_native/network/v20240301/get_route_map.py +180 -0
- pulumi_azure_native/network/v20240301/get_route_table.py +219 -0
- pulumi_azure_native/network/v20240301/get_routing_intent.py +154 -0
- pulumi_azure_native/network/v20240301/get_routing_rule.py +216 -0
- pulumi_azure_native/network/v20240301/get_routing_rule_collection.py +211 -0
- pulumi_azure_native/network/v20240301/get_scope_connection.py +180 -0
- pulumi_azure_native/network/v20240301/get_security_admin_configuration.py +193 -0
- pulumi_azure_native/network/v20240301/get_security_partner_provider.py +201 -0
- pulumi_azure_native/network/v20240301/get_security_rule.py +336 -0
- pulumi_azure_native/network/v20240301/get_security_user_configuration.py +180 -0
- pulumi_azure_native/network/v20240301/get_security_user_rule.py +268 -0
- pulumi_azure_native/network/v20240301/get_security_user_rule_collection.py +198 -0
- pulumi_azure_native/network/v20240301/get_service_endpoint_policy.py +245 -0
- pulumi_azure_native/network/v20240301/get_service_endpoint_policy_definition.py +179 -0
- pulumi_azure_native/network/v20240301/get_static_member.py +185 -0
- pulumi_azure_native/network/v20240301/get_subnet.py +406 -0
- pulumi_azure_native/network/v20240301/get_subscription_network_manager_connection.py +157 -0
- pulumi_azure_native/network/v20240301/get_virtual_appliance_site.py +167 -0
- pulumi_azure_native/network/v20240301/get_virtual_hub.py +448 -0
- pulumi_azure_native/network/v20240301/get_virtual_hub_bgp_connection.py +193 -0
- pulumi_azure_native/network/v20240301/get_virtual_hub_ip_configuration.py +193 -0
- pulumi_azure_native/network/v20240301/get_virtual_hub_route_table_v2.py +154 -0
- pulumi_azure_native/network/v20240301/get_virtual_network.py +362 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_gateway.py +513 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_gateway_advertised_routes.py +89 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_gateway_bgp_peer_status.py +89 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_gateway_connection.py +500 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_gateway_connection_ike_sas.py +77 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_gateway_learned_routes.py +84 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_gateway_nat_rule.py +193 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_gateway_vpn_profile_package_url.py +77 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_gateway_vpnclient_connection_health.py +84 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_gateway_vpnclient_ipsec_parameters.py +174 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_peering.py +388 -0
- pulumi_azure_native/network/v20240301/get_virtual_network_tap.py +227 -0
- pulumi_azure_native/network/v20240301/get_virtual_router.py +232 -0
- pulumi_azure_native/network/v20240301/get_virtual_router_peering.py +166 -0
- pulumi_azure_native/network/v20240301/get_virtual_wan.py +240 -0
- pulumi_azure_native/network/v20240301/get_vpn_connection.py +362 -0
- pulumi_azure_native/network/v20240301/get_vpn_gateway.py +266 -0
- pulumi_azure_native/network/v20240301/get_vpn_link_connection_ike_sas.py +87 -0
- pulumi_azure_native/network/v20240301/get_vpn_server_configuration.py +331 -0
- pulumi_azure_native/network/v20240301/get_vpn_site.py +279 -0
- pulumi_azure_native/network/v20240301/get_web_application_firewall_policy.py +266 -0
- pulumi_azure_native/network/v20240301/hub_route_table.py +318 -0
- pulumi_azure_native/network/v20240301/hub_virtual_network_connection.py +376 -0
- pulumi_azure_native/network/v20240301/inbound_nat_rule.py +541 -0
- pulumi_azure_native/network/v20240301/ip_allocation.py +436 -0
- pulumi_azure_native/network/v20240301/ip_group.py +306 -0
- pulumi_azure_native/network/v20240301/list_active_connectivity_configurations.py +112 -0
- pulumi_azure_native/network/v20240301/list_active_security_admin_rules.py +112 -0
- pulumi_azure_native/network/v20240301/list_firewall_policy_idps_signature.py +124 -0
- pulumi_azure_native/network/v20240301/list_firewall_policy_idps_signatures_filter_value.py +88 -0
- pulumi_azure_native/network/v20240301/list_network_manager_deployment_status.py +118 -0
- pulumi_azure_native/network/v20240301/list_network_manager_effective_connectivity_configurations.py +107 -0
- pulumi_azure_native/network/v20240301/list_network_manager_effective_security_admin_rules.py +107 -0
- pulumi_azure_native/network/v20240301/list_vpn_link_connection_default_shared_key.py +133 -0
- pulumi_azure_native/network/v20240301/load_balancer.py +536 -0
- pulumi_azure_native/network/v20240301/load_balancer_backend_address_pool.py +465 -0
- pulumi_azure_native/network/v20240301/local_network_gateway.py +384 -0
- pulumi_azure_native/network/v20240301/management_group_network_manager_connection.py +237 -0
- pulumi_azure_native/network/v20240301/nat_gateway.py +424 -0
- pulumi_azure_native/network/v20240301/nat_rule.py +396 -0
- pulumi_azure_native/network/v20240301/network_group.py +279 -0
- pulumi_azure_native/network/v20240301/network_interface.py +726 -0
- pulumi_azure_native/network/v20240301/network_interface_tap_configuration.py +270 -0
- pulumi_azure_native/network/v20240301/network_manager.py +368 -0
- pulumi_azure_native/network/v20240301/network_manager_routing_configuration.py +249 -0
- pulumi_azure_native/network/v20240301/network_profile.py +308 -0
- pulumi_azure_native/network/v20240301/network_security_group.py +370 -0
- pulumi_azure_native/network/v20240301/network_virtual_appliance.py +677 -0
- pulumi_azure_native/network/v20240301/network_virtual_appliance_connection.py +366 -0
- pulumi_azure_native/network/v20240301/network_watcher.py +256 -0
- pulumi_azure_native/network/v20240301/outputs.py +31507 -0
- pulumi_azure_native/network/v20240301/p2s_vpn_gateway.py +443 -0
- pulumi_azure_native/network/v20240301/packet_capture.py +496 -0
- pulumi_azure_native/network/v20240301/private_dns_zone_group.py +259 -0
- pulumi_azure_native/network/v20240301/private_endpoint.py +501 -0
- pulumi_azure_native/network/v20240301/private_link_service.py +521 -0
- pulumi_azure_native/network/v20240301/private_link_service_private_endpoint_connection.py +299 -0
- pulumi_azure_native/network/v20240301/public_ip_address.py +743 -0
- pulumi_azure_native/network/v20240301/public_ip_prefix.py +531 -0
- pulumi_azure_native/network/v20240301/route.py +356 -0
- pulumi_azure_native/network/v20240301/route_filter.py +311 -0
- pulumi_azure_native/network/v20240301/route_filter_rule.py +348 -0
- pulumi_azure_native/network/v20240301/route_map.py +309 -0
- pulumi_azure_native/network/v20240301/route_table.py +340 -0
- pulumi_azure_native/network/v20240301/routing_intent.py +269 -0
- pulumi_azure_native/network/v20240301/routing_rule.py +353 -0
- pulumi_azure_native/network/v20240301/routing_rule_collection.py +331 -0
- pulumi_azure_native/network/v20240301/scope_connection.py +287 -0
- pulumi_azure_native/network/v20240301/security_admin_configuration.py +279 -0
- pulumi_azure_native/network/v20240301/security_partner_provider.py +327 -0
- pulumi_azure_native/network/v20240301/security_rule.py +699 -0
- pulumi_azure_native/network/v20240301/security_user_configuration.py +249 -0
- pulumi_azure_native/network/v20240301/security_user_rule.py +469 -0
- pulumi_azure_native/network/v20240301/security_user_rule_collection.py +301 -0
- pulumi_azure_native/network/v20240301/service_endpoint_policy.py +378 -0
- pulumi_azure_native/network/v20240301/service_endpoint_policy_definition.py +344 -0
- pulumi_azure_native/network/v20240301/static_member.py +270 -0
- pulumi_azure_native/network/v20240301/subnet.py +734 -0
- pulumi_azure_native/network/v20240301/subscription_network_manager_connection.py +216 -0
- pulumi_azure_native/network/v20240301/virtual_appliance_site.py +298 -0
- pulumi_azure_native/network/v20240301/virtual_hub.py +805 -0
- pulumi_azure_native/network/v20240301/virtual_hub_bgp_connection.py +337 -0
- pulumi_azure_native/network/v20240301/virtual_hub_ip_configuration.py +357 -0
- pulumi_azure_native/network/v20240301/virtual_hub_route_table_v2.py +288 -0
- pulumi_azure_native/network/v20240301/virtual_network.py +670 -0
- pulumi_azure_native/network/v20240301/virtual_network_gateway.py +1007 -0
- pulumi_azure_native/network/v20240301/virtual_network_gateway_connection.py +920 -0
- pulumi_azure_native/network/v20240301/virtual_network_gateway_nat_rule.py +376 -0
- pulumi_azure_native/network/v20240301/virtual_network_peering.py +793 -0
- pulumi_azure_native/network/v20240301/virtual_network_tap.py +366 -0
- pulumi_azure_native/network/v20240301/virtual_router.py +384 -0
- pulumi_azure_native/network/v20240301/virtual_router_peering.py +296 -0
- pulumi_azure_native/network/v20240301/virtual_wan.py +393 -0
- pulumi_azure_native/network/v20240301/vpn_connection.py +696 -0
- pulumi_azure_native/network/v20240301/vpn_gateway.py +478 -0
- pulumi_azure_native/network/v20240301/vpn_server_configuration.py +639 -0
- pulumi_azure_native/network/v20240301/vpn_site.py +519 -0
- pulumi_azure_native/network/v20240301/web_application_firewall_policy.py +397 -0
- pulumi_azure_native/network/virtual_appliance_site.py +3 -3
- pulumi_azure_native/network/virtual_hub.py +3 -3
- pulumi_azure_native/network/virtual_hub_bgp_connection.py +3 -3
- pulumi_azure_native/network/virtual_hub_ip_configuration.py +3 -3
- pulumi_azure_native/network/virtual_hub_route_table_v2.py +3 -3
- pulumi_azure_native/network/virtual_network.py +3 -3
- pulumi_azure_native/network/virtual_network_gateway.py +3 -3
- pulumi_azure_native/network/virtual_network_gateway_connection.py +3 -3
- pulumi_azure_native/network/virtual_network_gateway_nat_rule.py +3 -3
- pulumi_azure_native/network/virtual_network_peering.py +3 -3
- pulumi_azure_native/network/virtual_network_tap.py +3 -3
- pulumi_azure_native/network/virtual_router.py +3 -3
- pulumi_azure_native/network/virtual_router_peering.py +3 -3
- pulumi_azure_native/network/virtual_wan.py +3 -3
- pulumi_azure_native/network/vpn_connection.py +3 -3
- pulumi_azure_native/network/vpn_gateway.py +3 -3
- pulumi_azure_native/network/vpn_server_configuration.py +3 -3
- pulumi_azure_native/network/vpn_site.py +3 -3
- pulumi_azure_native/network/web_application_firewall_policy.py +3 -3
- pulumi_azure_native/portal/_inputs.py +84 -281
- pulumi_azure_native/portal/outputs.py +51 -192
- pulumi_azure_native/programmableconnectivity/__init__.py +22 -0
- pulumi_azure_native/programmableconnectivity/_enums.py +23 -0
- pulumi_azure_native/programmableconnectivity/_inputs.py +238 -0
- pulumi_azure_native/programmableconnectivity/gateway.py +259 -0
- pulumi_azure_native/programmableconnectivity/get_gateway.py +190 -0
- pulumi_azure_native/programmableconnectivity/get_operator_api_connection.py +281 -0
- pulumi_azure_native/programmableconnectivity/operator_api_connection.py +468 -0
- pulumi_azure_native/programmableconnectivity/outputs.py +345 -0
- pulumi_azure_native/programmableconnectivity/v20240115preview/__init__.py +14 -0
- pulumi_azure_native/programmableconnectivity/v20240115preview/_enums.py +23 -0
- pulumi_azure_native/programmableconnectivity/v20240115preview/_inputs.py +238 -0
- pulumi_azure_native/programmableconnectivity/v20240115preview/gateway.py +257 -0
- pulumi_azure_native/programmableconnectivity/v20240115preview/get_gateway.py +188 -0
- pulumi_azure_native/programmableconnectivity/v20240115preview/get_operator_api_connection.py +279 -0
- pulumi_azure_native/programmableconnectivity/v20240115preview/operator_api_connection.py +466 -0
- pulumi_azure_native/programmableconnectivity/v20240115preview/outputs.py +345 -0
- pulumi_azure_native/pulumi-plugin.json +1 -1
- pulumi_azure_native/relay/__init__.py +3 -0
- pulumi_azure_native/relay/get_hybrid_connection.py +4 -0
- pulumi_azure_native/relay/get_hybrid_connection_authorization_rule.py +2 -2
- pulumi_azure_native/relay/get_namespace.py +4 -0
- pulumi_azure_native/relay/get_namespace_authorization_rule.py +2 -2
- pulumi_azure_native/relay/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/relay/get_wcf_relay.py +2 -2
- pulumi_azure_native/relay/get_wcf_relay_authorization_rule.py +2 -2
- pulumi_azure_native/relay/hybrid_connection.py +5 -1
- pulumi_azure_native/relay/hybrid_connection_authorization_rule.py +3 -3
- pulumi_azure_native/relay/list_hybrid_connection_keys.py +4 -0
- pulumi_azure_native/relay/list_namespace_keys.py +4 -0
- pulumi_azure_native/relay/list_wcf_relay_keys.py +4 -0
- pulumi_azure_native/relay/namespace.py +5 -1
- pulumi_azure_native/relay/namespace_authorization_rule.py +3 -3
- pulumi_azure_native/relay/private_endpoint_connection.py +3 -3
- pulumi_azure_native/relay/v20170401/hybrid_connection_authorization_rule.py +1 -1
- pulumi_azure_native/relay/v20170401/namespace_authorization_rule.py +1 -1
- pulumi_azure_native/relay/v20170401/wcf_relay_authorization_rule.py +1 -1
- pulumi_azure_native/relay/v20180101preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/relay/v20211101/hybrid_connection.py +1 -1
- pulumi_azure_native/relay/v20211101/hybrid_connection_authorization_rule.py +1 -1
- pulumi_azure_native/relay/v20211101/namespace.py +1 -1
- pulumi_azure_native/relay/v20211101/namespace_authorization_rule.py +1 -1
- pulumi_azure_native/relay/v20211101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/relay/v20211101/wcf_relay.py +1 -1
- pulumi_azure_native/relay/v20211101/wcf_relay_authorization_rule.py +1 -1
- pulumi_azure_native/relay/v20240101/__init__.py +27 -0
- pulumi_azure_native/relay/v20240101/_enums.py +74 -0
- pulumi_azure_native/relay/v20240101/_inputs.py +253 -0
- pulumi_azure_native/relay/v20240101/get_hybrid_connection.py +206 -0
- pulumi_azure_native/relay/v20240101/get_hybrid_connection_authorization_rule.py +159 -0
- pulumi_azure_native/relay/v20240101/get_namespace.py +266 -0
- pulumi_azure_native/relay/v20240101/get_namespace_authorization_rule.py +154 -0
- pulumi_azure_native/relay/v20240101/get_private_endpoint_connection.py +180 -0
- pulumi_azure_native/relay/v20240101/get_wcf_relay.py +245 -0
- pulumi_azure_native/relay/v20240101/get_wcf_relay_authorization_rule.py +159 -0
- pulumi_azure_native/relay/v20240101/hybrid_connection.py +288 -0
- pulumi_azure_native/relay/v20240101/hybrid_connection_authorization_rule.py +252 -0
- pulumi_azure_native/relay/v20240101/list_hybrid_connection_keys.py +145 -0
- pulumi_azure_native/relay/v20240101/list_namespace_keys.py +140 -0
- pulumi_azure_native/relay/v20240101/list_wcf_relay_keys.py +145 -0
- pulumi_azure_native/relay/v20240101/namespace.py +383 -0
- pulumi_azure_native/relay/v20240101/namespace_authorization_rule.py +231 -0
- pulumi_azure_native/relay/v20240101/outputs.py +353 -0
- pulumi_azure_native/relay/v20240101/private_endpoint_connection.py +289 -0
- pulumi_azure_native/relay/v20240101/wcf_relay.py +357 -0
- pulumi_azure_native/relay/v20240101/wcf_relay_authorization_rule.py +252 -0
- pulumi_azure_native/relay/wcf_relay.py +3 -3
- pulumi_azure_native/relay/wcf_relay_authorization_rule.py +3 -3
- pulumi_azure_native/security/__init__.py +9 -0
- pulumi_azure_native/security/_enums.py +63 -1
- pulumi_azure_native/security/_inputs.py +275 -5
- pulumi_azure_native/security/custom_recommendation.py +385 -0
- pulumi_azure_native/security/get_custom_recommendation.py +229 -0
- pulumi_azure_native/security/get_security_standard.py +203 -0
- pulumi_azure_native/security/get_standard_assignment.py +229 -0
- pulumi_azure_native/security/outputs.py +432 -4
- pulumi_azure_native/security/security_standard.py +328 -0
- pulumi_azure_native/security/standard_assignment.py +405 -0
- pulumi_azure_native/security/v20240801/__init__.py +16 -0
- pulumi_azure_native/security/v20240801/_enums.py +80 -0
- pulumi_azure_native/security/v20240801/_inputs.py +330 -0
- pulumi_azure_native/security/v20240801/custom_recommendation.py +383 -0
- pulumi_azure_native/security/v20240801/get_custom_recommendation.py +227 -0
- pulumi_azure_native/security/v20240801/get_security_standard.py +201 -0
- pulumi_azure_native/security/v20240801/get_standard_assignment.py +227 -0
- pulumi_azure_native/security/v20240801/outputs.py +584 -0
- pulumi_azure_native/security/v20240801/security_standard.py +326 -0
- pulumi_azure_native/security/v20240801/standard_assignment.py +403 -0
- pulumi_azure_native/servicebus/__init__.py +3 -0
- pulumi_azure_native/servicebus/disaster_recovery_config.py +3 -3
- pulumi_azure_native/servicebus/get_disaster_recovery_config.py +2 -2
- pulumi_azure_native/servicebus/get_migration_config.py +2 -2
- pulumi_azure_native/servicebus/get_namespace.py +2 -2
- pulumi_azure_native/servicebus/get_namespace_authorization_rule.py +2 -2
- pulumi_azure_native/servicebus/get_namespace_network_rule_set.py +2 -2
- pulumi_azure_native/servicebus/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/servicebus/get_queue.py +2 -2
- pulumi_azure_native/servicebus/get_queue_authorization_rule.py +2 -2
- pulumi_azure_native/servicebus/get_rule.py +2 -2
- pulumi_azure_native/servicebus/get_subscription.py +2 -2
- pulumi_azure_native/servicebus/get_topic.py +2 -2
- pulumi_azure_native/servicebus/get_topic_authorization_rule.py +2 -2
- pulumi_azure_native/servicebus/list_disaster_recovery_config_keys.py +2 -2
- pulumi_azure_native/servicebus/list_namespace_keys.py +2 -2
- pulumi_azure_native/servicebus/list_queue_keys.py +2 -2
- pulumi_azure_native/servicebus/list_topic_keys.py +2 -2
- pulumi_azure_native/servicebus/migration_config.py +3 -3
- pulumi_azure_native/servicebus/namespace.py +3 -3
- pulumi_azure_native/servicebus/namespace_authorization_rule.py +3 -3
- pulumi_azure_native/servicebus/namespace_network_rule_set.py +3 -3
- pulumi_azure_native/servicebus/private_endpoint_connection.py +3 -3
- pulumi_azure_native/servicebus/queue.py +3 -3
- pulumi_azure_native/servicebus/queue_authorization_rule.py +3 -3
- pulumi_azure_native/servicebus/rule.py +3 -3
- pulumi_azure_native/servicebus/subscription.py +3 -3
- pulumi_azure_native/servicebus/topic.py +3 -3
- pulumi_azure_native/servicebus/topic_authorization_rule.py +3 -3
- pulumi_azure_native/servicebus/v20220101preview/disaster_recovery_config.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/migration_config.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/namespace.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/namespace_authorization_rule.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/namespace_network_rule_set.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/queue.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/queue_authorization_rule.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/rule.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/subscription.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/topic.py +1 -1
- pulumi_azure_native/servicebus/v20220101preview/topic_authorization_rule.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/disaster_recovery_config.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/migration_config.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/namespace.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/namespace_authorization_rule.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/namespace_network_rule_set.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/queue.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/queue_authorization_rule.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/rule.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/subscription.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/topic.py +1 -1
- pulumi_azure_native/servicebus/v20221001preview/topic_authorization_rule.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/disaster_recovery_config.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/migration_config.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/namespace.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/namespace_authorization_rule.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/namespace_network_rule_set.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/queue.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/queue_authorization_rule.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/rule.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/subscription.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/topic.py +1 -1
- pulumi_azure_native/servicebus/v20230101preview/topic_authorization_rule.py +1 -1
- pulumi_azure_native/servicebus/v20240101/__init__.py +38 -0
- pulumi_azure_native/servicebus/v20240101/_enums.py +149 -0
- pulumi_azure_native/servicebus/v20240101/_inputs.py +1149 -0
- pulumi_azure_native/servicebus/v20240101/disaster_recovery_config.py +288 -0
- pulumi_azure_native/servicebus/v20240101/get_disaster_recovery_config.py +206 -0
- pulumi_azure_native/servicebus/v20240101/get_migration_config.py +206 -0
- pulumi_azure_native/servicebus/v20240101/get_namespace.py +357 -0
- pulumi_azure_native/servicebus/v20240101/get_namespace_authorization_rule.py +154 -0
- pulumi_azure_native/servicebus/v20240101/get_namespace_network_rule_set.py +201 -0
- pulumi_azure_native/servicebus/v20240101/get_private_endpoint_connection.py +180 -0
- pulumi_azure_native/servicebus/v20240101/get_queue.py +427 -0
- pulumi_azure_native/servicebus/v20240101/get_queue_authorization_rule.py +159 -0
- pulumi_azure_native/servicebus/v20240101/get_rule.py +203 -0
- pulumi_azure_native/servicebus/v20240101/get_subscription.py +393 -0
- pulumi_azure_native/servicebus/v20240101/get_topic.py +362 -0
- pulumi_azure_native/servicebus/v20240101/get_topic_authorization_rule.py +159 -0
- pulumi_azure_native/servicebus/v20240101/list_disaster_recovery_config_keys.py +171 -0
- pulumi_azure_native/servicebus/v20240101/list_namespace_keys.py +166 -0
- pulumi_azure_native/servicebus/v20240101/list_queue_keys.py +171 -0
- pulumi_azure_native/servicebus/v20240101/list_topic_keys.py +171 -0
- pulumi_azure_native/servicebus/v20240101/migration_config.py +290 -0
- pulumi_azure_native/servicebus/v20240101/namespace.py +586 -0
- pulumi_azure_native/servicebus/v20240101/namespace_authorization_rule.py +231 -0
- pulumi_azure_native/servicebus/v20240101/namespace_network_rule_set.py +331 -0
- pulumi_azure_native/servicebus/v20240101/outputs.py +1279 -0
- pulumi_azure_native/servicebus/v20240101/private_endpoint_connection.py +289 -0
- pulumi_azure_native/servicebus/v20240101/queue.py +725 -0
- pulumi_azure_native/servicebus/v20240101/queue_authorization_rule.py +252 -0
- pulumi_azure_native/servicebus/v20240101/rule.py +360 -0
- pulumi_azure_native/servicebus/v20240101/subscription.py +679 -0
- pulumi_azure_native/servicebus/v20240101/topic.py +580 -0
- pulumi_azure_native/servicebus/v20240101/topic_authorization_rule.py +252 -0
- pulumi_azure_native/signalrservice/__init__.py +3 -0
- pulumi_azure_native/signalrservice/get_signal_r.py +2 -2
- pulumi_azure_native/signalrservice/get_signal_r_custom_certificate.py +2 -2
- pulumi_azure_native/signalrservice/get_signal_r_custom_domain.py +2 -2
- pulumi_azure_native/signalrservice/get_signal_r_private_endpoint_connection.py +2 -2
- pulumi_azure_native/signalrservice/get_signal_r_replica.py +2 -2
- pulumi_azure_native/signalrservice/get_signal_r_shared_private_link_resource.py +2 -2
- pulumi_azure_native/signalrservice/list_signal_r_keys.py +2 -2
- pulumi_azure_native/signalrservice/signal_r.py +3 -3
- pulumi_azure_native/signalrservice/signal_r_custom_certificate.py +3 -3
- pulumi_azure_native/signalrservice/signal_r_custom_domain.py +3 -3
- pulumi_azure_native/signalrservice/signal_r_private_endpoint_connection.py +3 -3
- pulumi_azure_native/signalrservice/signal_r_replica.py +3 -3
- pulumi_azure_native/signalrservice/signal_r_shared_private_link_resource.py +3 -3
- pulumi_azure_native/signalrservice/v20230201/signal_r.py +1 -1
- pulumi_azure_native/signalrservice/v20230201/signal_r_custom_certificate.py +1 -1
- pulumi_azure_native/signalrservice/v20230201/signal_r_custom_domain.py +1 -1
- pulumi_azure_native/signalrservice/v20230201/signal_r_private_endpoint_connection.py +1 -1
- pulumi_azure_native/signalrservice/v20230201/signal_r_shared_private_link_resource.py +1 -1
- pulumi_azure_native/signalrservice/v20230301preview/signal_r.py +1 -1
- pulumi_azure_native/signalrservice/v20230301preview/signal_r_custom_certificate.py +1 -1
- pulumi_azure_native/signalrservice/v20230301preview/signal_r_custom_domain.py +1 -1
- pulumi_azure_native/signalrservice/v20230301preview/signal_r_private_endpoint_connection.py +1 -1
- pulumi_azure_native/signalrservice/v20230301preview/signal_r_replica.py +1 -1
- pulumi_azure_native/signalrservice/v20230301preview/signal_r_shared_private_link_resource.py +1 -1
- pulumi_azure_native/signalrservice/v20230601preview/signal_r.py +1 -1
- pulumi_azure_native/signalrservice/v20230601preview/signal_r_custom_certificate.py +1 -1
- pulumi_azure_native/signalrservice/v20230601preview/signal_r_custom_domain.py +1 -1
- pulumi_azure_native/signalrservice/v20230601preview/signal_r_private_endpoint_connection.py +1 -1
- pulumi_azure_native/signalrservice/v20230601preview/signal_r_replica.py +1 -1
- pulumi_azure_native/signalrservice/v20230601preview/signal_r_shared_private_link_resource.py +1 -1
- pulumi_azure_native/signalrservice/v20230801preview/signal_r.py +1 -1
- pulumi_azure_native/signalrservice/v20230801preview/signal_r_custom_certificate.py +1 -1
- pulumi_azure_native/signalrservice/v20230801preview/signal_r_custom_domain.py +1 -1
- pulumi_azure_native/signalrservice/v20230801preview/signal_r_private_endpoint_connection.py +1 -1
- pulumi_azure_native/signalrservice/v20230801preview/signal_r_replica.py +1 -1
- pulumi_azure_native/signalrservice/v20230801preview/signal_r_shared_private_link_resource.py +1 -1
- pulumi_azure_native/signalrservice/v20240101preview/signal_r.py +1 -1
- pulumi_azure_native/signalrservice/v20240101preview/signal_r_custom_certificate.py +1 -1
- pulumi_azure_native/signalrservice/v20240101preview/signal_r_custom_domain.py +1 -1
- pulumi_azure_native/signalrservice/v20240101preview/signal_r_private_endpoint_connection.py +1 -1
- pulumi_azure_native/signalrservice/v20240101preview/signal_r_replica.py +1 -1
- pulumi_azure_native/signalrservice/v20240101preview/signal_r_shared_private_link_resource.py +1 -1
- pulumi_azure_native/signalrservice/v20240301/signal_r.py +1 -1
- pulumi_azure_native/signalrservice/v20240301/signal_r_custom_certificate.py +1 -1
- pulumi_azure_native/signalrservice/v20240301/signal_r_custom_domain.py +1 -1
- pulumi_azure_native/signalrservice/v20240301/signal_r_private_endpoint_connection.py +1 -1
- pulumi_azure_native/signalrservice/v20240301/signal_r_replica.py +1 -1
- pulumi_azure_native/signalrservice/v20240301/signal_r_shared_private_link_resource.py +1 -1
- pulumi_azure_native/signalrservice/v20240401preview/signal_r.py +1 -1
- pulumi_azure_native/signalrservice/v20240401preview/signal_r_custom_certificate.py +1 -1
- pulumi_azure_native/signalrservice/v20240401preview/signal_r_custom_domain.py +1 -1
- pulumi_azure_native/signalrservice/v20240401preview/signal_r_private_endpoint_connection.py +1 -1
- pulumi_azure_native/signalrservice/v20240401preview/signal_r_replica.py +1 -1
- pulumi_azure_native/signalrservice/v20240401preview/signal_r_shared_private_link_resource.py +1 -1
- pulumi_azure_native/signalrservice/v20240801preview/__init__.py +23 -0
- pulumi_azure_native/signalrservice/v20240801preview/_enums.py +102 -0
- pulumi_azure_native/signalrservice/v20240801preview/_inputs.py +1650 -0
- pulumi_azure_native/signalrservice/v20240801preview/get_signal_r.py +502 -0
- pulumi_azure_native/signalrservice/v20240801preview/get_signal_r_custom_certificate.py +180 -0
- pulumi_azure_native/signalrservice/v20240801preview/get_signal_r_custom_domain.py +167 -0
- pulumi_azure_native/signalrservice/v20240801preview/get_signal_r_private_endpoint_connection.py +180 -0
- pulumi_azure_native/signalrservice/v20240801preview/get_signal_r_replica.py +209 -0
- pulumi_azure_native/signalrservice/v20240801preview/get_signal_r_shared_private_link_resource.py +206 -0
- pulumi_azure_native/signalrservice/v20240801preview/list_signal_r_keys.py +122 -0
- pulumi_azure_native/signalrservice/v20240801preview/outputs.py +1750 -0
- pulumi_azure_native/signalrservice/v20240801preview/signal_r.py +892 -0
- pulumi_azure_native/signalrservice/v20240801preview/signal_r_custom_certificate.py +289 -0
- pulumi_azure_native/signalrservice/v20240801preview/signal_r_custom_domain.py +260 -0
- pulumi_azure_native/signalrservice/v20240801preview/signal_r_private_endpoint_connection.py +270 -0
- pulumi_azure_native/signalrservice/v20240801preview/signal_r_replica.py +367 -0
- pulumi_azure_native/signalrservice/v20240801preview/signal_r_shared_private_link_resource.py +328 -0
- pulumi_azure_native/sql/__init__.py +3 -0
- pulumi_azure_native/sql/backup_long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/backup_short_term_retention_policy.py +3 -3
- pulumi_azure_native/sql/data_masking_policy.py +3 -3
- pulumi_azure_native/sql/database.py +3 -3
- pulumi_azure_native/sql/database_advisor.py +3 -3
- pulumi_azure_native/sql/database_blob_auditing_policy.py +3 -3
- pulumi_azure_native/sql/database_security_alert_policy.py +3 -3
- pulumi_azure_native/sql/database_sql_vulnerability_assessment_rule_baseline.py +3 -3
- pulumi_azure_native/sql/database_threat_detection_policy.py +1 -1
- pulumi_azure_native/sql/database_vulnerability_assessment.py +3 -3
- pulumi_azure_native/sql/database_vulnerability_assessment_rule_baseline.py +3 -3
- pulumi_azure_native/sql/distributed_availability_group.py +3 -3
- pulumi_azure_native/sql/elastic_pool.py +3 -3
- pulumi_azure_native/sql/encryption_protector.py +3 -3
- pulumi_azure_native/sql/extended_database_blob_auditing_policy.py +3 -3
- pulumi_azure_native/sql/extended_server_blob_auditing_policy.py +3 -3
- pulumi_azure_native/sql/failover_group.py +3 -3
- pulumi_azure_native/sql/firewall_rule.py +3 -3
- pulumi_azure_native/sql/geo_backup_policy.py +3 -3
- pulumi_azure_native/sql/get_backup_short_term_retention_policy.py +2 -2
- pulumi_azure_native/sql/get_data_masking_policy.py +2 -2
- pulumi_azure_native/sql/get_database.py +2 -2
- pulumi_azure_native/sql/get_database_advisor.py +2 -2
- pulumi_azure_native/sql/get_database_blob_auditing_policy.py +2 -2
- pulumi_azure_native/sql/get_database_security_alert_policy.py +2 -2
- pulumi_azure_native/sql/get_database_sql_vulnerability_assessment_rule_baseline.py +2 -2
- pulumi_azure_native/sql/get_database_vulnerability_assessment.py +2 -2
- pulumi_azure_native/sql/get_database_vulnerability_assessment_rule_baseline.py +2 -2
- pulumi_azure_native/sql/get_distributed_availability_group.py +2 -2
- pulumi_azure_native/sql/get_elastic_pool.py +2 -2
- pulumi_azure_native/sql/get_encryption_protector.py +2 -2
- pulumi_azure_native/sql/get_extended_database_blob_auditing_policy.py +2 -2
- pulumi_azure_native/sql/get_extended_server_blob_auditing_policy.py +2 -2
- pulumi_azure_native/sql/get_failover_group.py +2 -2
- pulumi_azure_native/sql/get_firewall_rule.py +2 -2
- pulumi_azure_native/sql/get_geo_backup_policy.py +2 -2
- pulumi_azure_native/sql/get_i_pv6_firewall_rule.py +2 -2
- pulumi_azure_native/sql/get_instance_failover_group.py +2 -2
- pulumi_azure_native/sql/get_instance_pool.py +2 -2
- pulumi_azure_native/sql/get_job.py +2 -2
- pulumi_azure_native/sql/get_job_agent.py +2 -2
- pulumi_azure_native/sql/get_job_credential.py +2 -2
- pulumi_azure_native/sql/get_job_private_endpoint.py +2 -2
- pulumi_azure_native/sql/get_job_step.py +2 -2
- pulumi_azure_native/sql/get_job_target_group.py +2 -2
- pulumi_azure_native/sql/get_long_term_retention_policy.py +2 -2
- pulumi_azure_native/sql/get_managed_database.py +2 -2
- pulumi_azure_native/sql/get_managed_database_sensitivity_label.py +2 -2
- pulumi_azure_native/sql/get_managed_database_vulnerability_assessment.py +2 -2
- pulumi_azure_native/sql/get_managed_database_vulnerability_assessment_rule_baseline.py +2 -2
- pulumi_azure_native/sql/get_managed_instance.py +2 -2
- pulumi_azure_native/sql/get_managed_instance_administrator.py +2 -2
- pulumi_azure_native/sql/get_managed_instance_azure_ad_only_authentication.py +2 -2
- pulumi_azure_native/sql/get_managed_instance_key.py +2 -2
- pulumi_azure_native/sql/get_managed_instance_long_term_retention_policy.py +2 -2
- pulumi_azure_native/sql/get_managed_instance_private_endpoint_connection.py +2 -2
- pulumi_azure_native/sql/get_managed_instance_vulnerability_assessment.py +2 -2
- pulumi_azure_native/sql/get_managed_server_dns_alias.py +2 -2
- pulumi_azure_native/sql/get_outbound_firewall_rule.py +2 -2
- pulumi_azure_native/sql/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/sql/get_replication_link.py +2 -2
- pulumi_azure_native/sql/get_sensitivity_label.py +2 -2
- pulumi_azure_native/sql/get_server.py +2 -2
- pulumi_azure_native/sql/get_server_advisor.py +2 -2
- pulumi_azure_native/sql/get_server_azure_ad_administrator.py +2 -2
- pulumi_azure_native/sql/get_server_azure_ad_only_authentication.py +2 -2
- pulumi_azure_native/sql/get_server_blob_auditing_policy.py +2 -2
- pulumi_azure_native/sql/get_server_dns_alias.py +2 -2
- pulumi_azure_native/sql/get_server_key.py +2 -2
- pulumi_azure_native/sql/get_server_security_alert_policy.py +2 -2
- pulumi_azure_native/sql/get_server_trust_certificate.py +2 -2
- pulumi_azure_native/sql/get_server_trust_group.py +2 -2
- pulumi_azure_native/sql/get_server_vulnerability_assessment.py +2 -2
- pulumi_azure_native/sql/get_sql_vulnerability_assessment_rule_baseline.py +2 -2
- pulumi_azure_native/sql/get_sql_vulnerability_assessments_setting.py +2 -2
- pulumi_azure_native/sql/get_start_stop_managed_instance_schedule.py +2 -2
- pulumi_azure_native/sql/get_sync_agent.py +2 -2
- pulumi_azure_native/sql/get_sync_group.py +2 -2
- pulumi_azure_native/sql/get_sync_member.py +2 -2
- pulumi_azure_native/sql/get_transparent_data_encryption.py +2 -2
- pulumi_azure_native/sql/get_virtual_network_rule.py +2 -2
- pulumi_azure_native/sql/get_workload_classifier.py +2 -2
- pulumi_azure_native/sql/get_workload_group.py +2 -2
- pulumi_azure_native/sql/i_pv6_firewall_rule.py +3 -3
- pulumi_azure_native/sql/instance_failover_group.py +3 -3
- pulumi_azure_native/sql/instance_pool.py +3 -3
- pulumi_azure_native/sql/job.py +3 -3
- pulumi_azure_native/sql/job_agent.py +3 -3
- pulumi_azure_native/sql/job_credential.py +3 -3
- pulumi_azure_native/sql/job_private_endpoint.py +3 -3
- pulumi_azure_native/sql/job_step.py +3 -3
- pulumi_azure_native/sql/job_target_group.py +3 -3
- pulumi_azure_native/sql/long_term_retention_policy.py +3 -3
- pulumi_azure_native/sql/managed_database.py +3 -3
- pulumi_azure_native/sql/managed_database_sensitivity_label.py +3 -3
- pulumi_azure_native/sql/managed_database_vulnerability_assessment.py +3 -3
- pulumi_azure_native/sql/managed_database_vulnerability_assessment_rule_baseline.py +3 -3
- pulumi_azure_native/sql/managed_instance.py +3 -3
- pulumi_azure_native/sql/managed_instance_administrator.py +3 -3
- pulumi_azure_native/sql/managed_instance_azure_ad_only_authentication.py +3 -3
- pulumi_azure_native/sql/managed_instance_key.py +3 -3
- pulumi_azure_native/sql/managed_instance_long_term_retention_policy.py +3 -3
- pulumi_azure_native/sql/managed_instance_private_endpoint_connection.py +3 -3
- pulumi_azure_native/sql/managed_instance_vulnerability_assessment.py +3 -3
- pulumi_azure_native/sql/managed_server_dns_alias.py +3 -3
- pulumi_azure_native/sql/outbound_firewall_rule.py +3 -3
- pulumi_azure_native/sql/private_endpoint_connection.py +3 -3
- pulumi_azure_native/sql/replication_link.py +3 -3
- pulumi_azure_native/sql/sensitivity_label.py +3 -3
- pulumi_azure_native/sql/server.py +3 -3
- pulumi_azure_native/sql/server_advisor.py +3 -3
- pulumi_azure_native/sql/server_azure_ad_administrator.py +3 -3
- pulumi_azure_native/sql/server_azure_ad_only_authentication.py +3 -3
- pulumi_azure_native/sql/server_blob_auditing_policy.py +3 -3
- pulumi_azure_native/sql/server_dns_alias.py +3 -3
- pulumi_azure_native/sql/server_key.py +3 -3
- pulumi_azure_native/sql/server_security_alert_policy.py +3 -3
- pulumi_azure_native/sql/server_trust_certificate.py +3 -3
- pulumi_azure_native/sql/server_trust_group.py +3 -3
- pulumi_azure_native/sql/server_vulnerability_assessment.py +3 -3
- pulumi_azure_native/sql/sql_vulnerability_assessment_rule_baseline.py +3 -3
- pulumi_azure_native/sql/sql_vulnerability_assessments_setting.py +3 -3
- pulumi_azure_native/sql/start_stop_managed_instance_schedule.py +3 -3
- pulumi_azure_native/sql/sync_agent.py +3 -3
- pulumi_azure_native/sql/sync_group.py +3 -3
- pulumi_azure_native/sql/sync_member.py +3 -3
- pulumi_azure_native/sql/transparent_data_encryption.py +3 -3
- pulumi_azure_native/sql/v20140401/database.py +1 -1
- pulumi_azure_native/sql/v20140401/database_advisor.py +1 -1
- pulumi_azure_native/sql/v20140401/database_threat_detection_policy.py +1 -1
- pulumi_azure_native/sql/v20140401/elastic_pool.py +1 -1
- pulumi_azure_native/sql/v20140401/firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20140401/server.py +1 -1
- pulumi_azure_native/sql/v20140401/server_advisor.py +1 -1
- pulumi_azure_native/sql/v20140401/server_azure_ad_administrator.py +1 -1
- pulumi_azure_native/sql/v20140401/transparent_data_encryption.py +1 -1
- pulumi_azure_native/sql/v20150501preview/server_key.py +1 -1
- pulumi_azure_native/sql/v20170301preview/backup_long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20170301preview/server_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20180601preview/database_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20190601preview/database.py +1 -1
- pulumi_azure_native/sql/v20200202preview/database.py +1 -1
- pulumi_azure_native/sql/v20200801preview/database.py +1 -1
- pulumi_azure_native/sql/v20210201preview/managed_instance.py +1 -1
- pulumi_azure_native/sql/v20211101/backup_short_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20211101/data_masking_policy.py +1 -1
- pulumi_azure_native/sql/v20211101/database.py +1 -1
- pulumi_azure_native/sql/v20211101/database_advisor.py +1 -1
- pulumi_azure_native/sql/v20211101/database_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20211101/database_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20211101/database_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20211101/database_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20211101/distributed_availability_group.py +1 -1
- pulumi_azure_native/sql/v20211101/elastic_pool.py +1 -1
- pulumi_azure_native/sql/v20211101/encryption_protector.py +1 -1
- pulumi_azure_native/sql/v20211101/extended_database_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20211101/extended_server_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20211101/failover_group.py +1 -1
- pulumi_azure_native/sql/v20211101/firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20211101/geo_backup_policy.py +1 -1
- pulumi_azure_native/sql/v20211101/i_pv6_firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20211101/instance_failover_group.py +1 -1
- pulumi_azure_native/sql/v20211101/instance_pool.py +1 -1
- pulumi_azure_native/sql/v20211101/job.py +1 -1
- pulumi_azure_native/sql/v20211101/job_agent.py +1 -1
- pulumi_azure_native/sql/v20211101/job_credential.py +1 -1
- pulumi_azure_native/sql/v20211101/job_step.py +1 -1
- pulumi_azure_native/sql/v20211101/job_target_group.py +1 -1
- pulumi_azure_native/sql/v20211101/long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_database.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_database_sensitivity_label.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_database_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_database_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_instance.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_instance_administrator.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_instance_azure_ad_only_authentication.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_instance_key.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_instance_private_endpoint_connection.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_instance_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20211101/managed_server_dns_alias.py +1 -1
- pulumi_azure_native/sql/v20211101/outbound_firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20211101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/sql/v20211101/sensitivity_label.py +1 -1
- pulumi_azure_native/sql/v20211101/server.py +1 -1
- pulumi_azure_native/sql/v20211101/server_advisor.py +1 -1
- pulumi_azure_native/sql/v20211101/server_azure_ad_administrator.py +1 -1
- pulumi_azure_native/sql/v20211101/server_azure_ad_only_authentication.py +1 -1
- pulumi_azure_native/sql/v20211101/server_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20211101/server_dns_alias.py +1 -1
- pulumi_azure_native/sql/v20211101/server_key.py +1 -1
- pulumi_azure_native/sql/v20211101/server_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20211101/server_trust_certificate.py +1 -1
- pulumi_azure_native/sql/v20211101/server_trust_group.py +1 -1
- pulumi_azure_native/sql/v20211101/server_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20211101/sync_agent.py +1 -1
- pulumi_azure_native/sql/v20211101/sync_group.py +1 -1
- pulumi_azure_native/sql/v20211101/sync_member.py +1 -1
- pulumi_azure_native/sql/v20211101/transparent_data_encryption.py +1 -1
- pulumi_azure_native/sql/v20211101/virtual_network_rule.py +1 -1
- pulumi_azure_native/sql/v20211101/workload_classifier.py +1 -1
- pulumi_azure_native/sql/v20211101/workload_group.py +1 -1
- pulumi_azure_native/sql/v20221101preview/backup_short_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/data_masking_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/database.py +1 -1
- pulumi_azure_native/sql/v20221101preview/database_advisor.py +1 -1
- pulumi_azure_native/sql/v20221101preview/database_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/database_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/database_sql_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20221101preview/database_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20221101preview/database_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20221101preview/distributed_availability_group.py +1 -1
- pulumi_azure_native/sql/v20221101preview/elastic_pool.py +1 -1
- pulumi_azure_native/sql/v20221101preview/encryption_protector.py +1 -1
- pulumi_azure_native/sql/v20221101preview/extended_database_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/extended_server_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/failover_group.py +1 -1
- pulumi_azure_native/sql/v20221101preview/firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20221101preview/geo_backup_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/i_pv6_firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20221101preview/instance_failover_group.py +1 -1
- pulumi_azure_native/sql/v20221101preview/instance_pool.py +1 -1
- pulumi_azure_native/sql/v20221101preview/job.py +1 -1
- pulumi_azure_native/sql/v20221101preview/job_agent.py +1 -1
- pulumi_azure_native/sql/v20221101preview/job_credential.py +1 -1
- pulumi_azure_native/sql/v20221101preview/job_step.py +1 -1
- pulumi_azure_native/sql/v20221101preview/job_target_group.py +1 -1
- pulumi_azure_native/sql/v20221101preview/long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_database.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_database_sensitivity_label.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_database_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_database_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_instance.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_instance_administrator.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_instance_azure_ad_only_authentication.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_instance_key.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_instance_long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_instance_private_endpoint_connection.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_instance_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20221101preview/managed_server_dns_alias.py +1 -1
- pulumi_azure_native/sql/v20221101preview/outbound_firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20221101preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/sql/v20221101preview/sensitivity_label.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server_advisor.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server_azure_ad_administrator.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server_azure_ad_only_authentication.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server_dns_alias.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server_key.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server_trust_certificate.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server_trust_group.py +1 -1
- pulumi_azure_native/sql/v20221101preview/server_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20221101preview/sql_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20221101preview/sql_vulnerability_assessments_setting.py +1 -1
- pulumi_azure_native/sql/v20221101preview/start_stop_managed_instance_schedule.py +1 -1
- pulumi_azure_native/sql/v20221101preview/sync_agent.py +1 -1
- pulumi_azure_native/sql/v20221101preview/sync_group.py +1 -1
- pulumi_azure_native/sql/v20221101preview/sync_member.py +1 -1
- pulumi_azure_native/sql/v20221101preview/transparent_data_encryption.py +1 -1
- pulumi_azure_native/sql/v20221101preview/virtual_network_rule.py +1 -1
- pulumi_azure_native/sql/v20221101preview/workload_classifier.py +1 -1
- pulumi_azure_native/sql/v20221101preview/workload_group.py +1 -1
- pulumi_azure_native/sql/v20230201preview/backup_short_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/data_masking_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/database.py +1 -1
- pulumi_azure_native/sql/v20230201preview/database_advisor.py +1 -1
- pulumi_azure_native/sql/v20230201preview/database_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/database_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/database_sql_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230201preview/database_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230201preview/database_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230201preview/distributed_availability_group.py +1 -1
- pulumi_azure_native/sql/v20230201preview/elastic_pool.py +1 -1
- pulumi_azure_native/sql/v20230201preview/encryption_protector.py +1 -1
- pulumi_azure_native/sql/v20230201preview/extended_database_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/extended_server_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/failover_group.py +1 -1
- pulumi_azure_native/sql/v20230201preview/firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20230201preview/geo_backup_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/i_pv6_firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20230201preview/instance_failover_group.py +1 -1
- pulumi_azure_native/sql/v20230201preview/instance_pool.py +1 -1
- pulumi_azure_native/sql/v20230201preview/job.py +1 -1
- pulumi_azure_native/sql/v20230201preview/job_agent.py +1 -1
- pulumi_azure_native/sql/v20230201preview/job_credential.py +1 -1
- pulumi_azure_native/sql/v20230201preview/job_step.py +1 -1
- pulumi_azure_native/sql/v20230201preview/job_target_group.py +1 -1
- pulumi_azure_native/sql/v20230201preview/long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_database.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_database_sensitivity_label.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_database_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_database_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_instance.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_instance_administrator.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_instance_azure_ad_only_authentication.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_instance_key.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_instance_long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_instance_private_endpoint_connection.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_instance_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230201preview/managed_server_dns_alias.py +1 -1
- pulumi_azure_native/sql/v20230201preview/outbound_firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20230201preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/sql/v20230201preview/sensitivity_label.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server_advisor.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server_azure_ad_administrator.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server_azure_ad_only_authentication.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server_dns_alias.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server_key.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server_trust_certificate.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server_trust_group.py +1 -1
- pulumi_azure_native/sql/v20230201preview/server_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230201preview/sql_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230201preview/sql_vulnerability_assessments_setting.py +1 -1
- pulumi_azure_native/sql/v20230201preview/start_stop_managed_instance_schedule.py +1 -1
- pulumi_azure_native/sql/v20230201preview/sync_agent.py +1 -1
- pulumi_azure_native/sql/v20230201preview/sync_group.py +1 -1
- pulumi_azure_native/sql/v20230201preview/sync_member.py +1 -1
- pulumi_azure_native/sql/v20230201preview/transparent_data_encryption.py +1 -1
- pulumi_azure_native/sql/v20230201preview/virtual_network_rule.py +1 -1
- pulumi_azure_native/sql/v20230201preview/workload_classifier.py +1 -1
- pulumi_azure_native/sql/v20230201preview/workload_group.py +1 -1
- pulumi_azure_native/sql/v20230501preview/backup_short_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/data_masking_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/database.py +1 -1
- pulumi_azure_native/sql/v20230501preview/database_advisor.py +1 -1
- pulumi_azure_native/sql/v20230501preview/database_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/database_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/database_sql_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230501preview/database_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230501preview/database_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230501preview/distributed_availability_group.py +1 -1
- pulumi_azure_native/sql/v20230501preview/elastic_pool.py +1 -1
- pulumi_azure_native/sql/v20230501preview/encryption_protector.py +1 -1
- pulumi_azure_native/sql/v20230501preview/extended_database_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/extended_server_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/failover_group.py +1 -1
- pulumi_azure_native/sql/v20230501preview/firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20230501preview/geo_backup_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/i_pv6_firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20230501preview/instance_failover_group.py +1 -1
- pulumi_azure_native/sql/v20230501preview/instance_pool.py +1 -1
- pulumi_azure_native/sql/v20230501preview/job.py +1 -1
- pulumi_azure_native/sql/v20230501preview/job_agent.py +1 -1
- pulumi_azure_native/sql/v20230501preview/job_credential.py +1 -1
- pulumi_azure_native/sql/v20230501preview/job_private_endpoint.py +1 -1
- pulumi_azure_native/sql/v20230501preview/job_step.py +1 -1
- pulumi_azure_native/sql/v20230501preview/job_target_group.py +1 -1
- pulumi_azure_native/sql/v20230501preview/long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_database.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_database_sensitivity_label.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_database_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_database_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_instance.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_instance_administrator.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_instance_azure_ad_only_authentication.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_instance_key.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_instance_long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_instance_private_endpoint_connection.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_instance_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230501preview/managed_server_dns_alias.py +1 -1
- pulumi_azure_native/sql/v20230501preview/outbound_firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20230501preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/sql/v20230501preview/replication_link.py +1 -1
- pulumi_azure_native/sql/v20230501preview/sensitivity_label.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server_advisor.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server_azure_ad_administrator.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server_azure_ad_only_authentication.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server_dns_alias.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server_key.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server_trust_certificate.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server_trust_group.py +1 -1
- pulumi_azure_native/sql/v20230501preview/server_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230501preview/sql_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230501preview/sql_vulnerability_assessments_setting.py +1 -1
- pulumi_azure_native/sql/v20230501preview/start_stop_managed_instance_schedule.py +1 -1
- pulumi_azure_native/sql/v20230501preview/sync_agent.py +1 -1
- pulumi_azure_native/sql/v20230501preview/sync_group.py +1 -1
- pulumi_azure_native/sql/v20230501preview/sync_member.py +1 -1
- pulumi_azure_native/sql/v20230501preview/transparent_data_encryption.py +1 -1
- pulumi_azure_native/sql/v20230501preview/virtual_network_rule.py +1 -1
- pulumi_azure_native/sql/v20230501preview/workload_classifier.py +1 -1
- pulumi_azure_native/sql/v20230501preview/workload_group.py +1 -1
- pulumi_azure_native/sql/v20230801preview/backup_short_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/data_masking_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/database.py +1 -1
- pulumi_azure_native/sql/v20230801preview/database_advisor.py +1 -1
- pulumi_azure_native/sql/v20230801preview/database_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/database_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/database_sql_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230801preview/database_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230801preview/database_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230801preview/distributed_availability_group.py +1 -1
- pulumi_azure_native/sql/v20230801preview/elastic_pool.py +1 -1
- pulumi_azure_native/sql/v20230801preview/encryption_protector.py +1 -1
- pulumi_azure_native/sql/v20230801preview/extended_database_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/extended_server_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/failover_group.py +1 -1
- pulumi_azure_native/sql/v20230801preview/firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20230801preview/geo_backup_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/i_pv6_firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20230801preview/instance_failover_group.py +1 -1
- pulumi_azure_native/sql/v20230801preview/instance_pool.py +1 -1
- pulumi_azure_native/sql/v20230801preview/job.py +1 -1
- pulumi_azure_native/sql/v20230801preview/job_agent.py +1 -1
- pulumi_azure_native/sql/v20230801preview/job_credential.py +1 -1
- pulumi_azure_native/sql/v20230801preview/job_private_endpoint.py +1 -1
- pulumi_azure_native/sql/v20230801preview/job_step.py +1 -1
- pulumi_azure_native/sql/v20230801preview/job_target_group.py +1 -1
- pulumi_azure_native/sql/v20230801preview/long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_database.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_database_sensitivity_label.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_database_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_database_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_instance.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_instance_administrator.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_instance_azure_ad_only_authentication.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_instance_key.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_instance_long_term_retention_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_instance_private_endpoint_connection.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_instance_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230801preview/managed_server_dns_alias.py +1 -1
- pulumi_azure_native/sql/v20230801preview/outbound_firewall_rule.py +1 -1
- pulumi_azure_native/sql/v20230801preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/sql/v20230801preview/replication_link.py +1 -1
- pulumi_azure_native/sql/v20230801preview/sensitivity_label.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server_advisor.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server_azure_ad_administrator.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server_azure_ad_only_authentication.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server_blob_auditing_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server_dns_alias.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server_key.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server_security_alert_policy.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server_trust_certificate.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server_trust_group.py +1 -1
- pulumi_azure_native/sql/v20230801preview/server_vulnerability_assessment.py +1 -1
- pulumi_azure_native/sql/v20230801preview/sql_vulnerability_assessment_rule_baseline.py +1 -1
- pulumi_azure_native/sql/v20230801preview/sql_vulnerability_assessments_setting.py +1 -1
- pulumi_azure_native/sql/v20230801preview/start_stop_managed_instance_schedule.py +1 -1
- pulumi_azure_native/sql/v20230801preview/sync_agent.py +1 -1
- pulumi_azure_native/sql/v20230801preview/sync_group.py +1 -1
- pulumi_azure_native/sql/v20230801preview/sync_member.py +1 -1
- pulumi_azure_native/sql/v20230801preview/transparent_data_encryption.py +1 -1
- pulumi_azure_native/sql/v20230801preview/virtual_network_rule.py +1 -1
- pulumi_azure_native/sql/v20230801preview/workload_classifier.py +1 -1
- pulumi_azure_native/sql/v20230801preview/workload_group.py +1 -1
- pulumi_azure_native/sql/v20240501preview/__init__.py +138 -0
- pulumi_azure_native/sql/v20240501preview/_enums.py +616 -0
- pulumi_azure_native/sql/v20240501preview/_inputs.py +2390 -0
- pulumi_azure_native/sql/v20240501preview/backup_short_term_retention_policy.py +258 -0
- pulumi_azure_native/sql/v20240501preview/data_masking_policy.py +300 -0
- pulumi_azure_native/sql/v20240501preview/database.py +1542 -0
- pulumi_azure_native/sql/v20240501preview/database_advisor.py +302 -0
- pulumi_azure_native/sql/v20240501preview/database_blob_auditing_policy.py +792 -0
- pulumi_azure_native/sql/v20240501preview/database_security_alert_policy.py +426 -0
- pulumi_azure_native/sql/v20240501preview/database_sql_vulnerability_assessment_rule_baseline.py +299 -0
- pulumi_azure_native/sql/v20240501preview/database_vulnerability_assessment.py +291 -0
- pulumi_azure_native/sql/v20240501preview/database_vulnerability_assessment_rule_baseline.py +274 -0
- pulumi_azure_native/sql/v20240501preview/distributed_availability_group.py +443 -0
- pulumi_azure_native/sql/v20240501preview/elastic_pool.py +613 -0
- pulumi_azure_native/sql/v20240501preview/encryption_protector.py +318 -0
- pulumi_azure_native/sql/v20240501preview/extended_database_blob_auditing_policy.py +811 -0
- pulumi_azure_native/sql/v20240501preview/extended_server_blob_auditing_policy.py +855 -0
- pulumi_azure_native/sql/v20240501preview/failover_group.py +379 -0
- pulumi_azure_native/sql/v20240501preview/firewall_rule.py +256 -0
- pulumi_azure_native/sql/v20240501preview/geo_backup_policy.py +261 -0
- pulumi_azure_native/sql/v20240501preview/get_backup_short_term_retention_policy.py +145 -0
- pulumi_azure_native/sql/v20240501preview/get_data_masking_policy.py +197 -0
- pulumi_azure_native/sql/v20240501preview/get_database.py +723 -0
- pulumi_azure_native/sql/v20240501preview/get_database_advisor.py +224 -0
- pulumi_azure_native/sql/v20240501preview/get_database_blob_auditing_policy.py +320 -0
- pulumi_azure_native/sql/v20240501preview/get_database_security_alert_policy.py +237 -0
- pulumi_azure_native/sql/v20240501preview/get_database_sql_vulnerability_assessment_rule_baseline.py +154 -0
- pulumi_azure_native/sql/v20240501preview/get_database_vulnerability_assessment.py +133 -0
- pulumi_azure_native/sql/v20240501preview/get_database_vulnerability_assessment_rule_baseline.py +143 -0
- pulumi_azure_native/sql/v20240501preview/get_distributed_availability_group.py +258 -0
- pulumi_azure_native/sql/v20240501preview/get_elastic_pool.py +329 -0
- pulumi_azure_native/sql/v20240501preview/get_encryption_protector.py +218 -0
- pulumi_azure_native/sql/v20240501preview/get_extended_database_blob_auditing_policy.py +320 -0
- pulumi_azure_native/sql/v20240501preview/get_extended_server_blob_auditing_policy.py +337 -0
- pulumi_azure_native/sql/v20240501preview/get_failover_group.py +219 -0
- pulumi_azure_native/sql/v20240501preview/get_firewall_rule.py +140 -0
- pulumi_azure_native/sql/v20240501preview/get_geo_backup_policy.py +171 -0
- pulumi_azure_native/sql/v20240501preview/get_i_pv6_firewall_rule.py +140 -0
- pulumi_azure_native/sql/v20240501preview/get_instance_failover_group.py +206 -0
- pulumi_azure_native/sql/v20240501preview/get_instance_pool.py +214 -0
- pulumi_azure_native/sql/v20240501preview/get_job.py +159 -0
- pulumi_azure_native/sql/v20240501preview/get_job_agent.py +193 -0
- pulumi_azure_native/sql/v20240501preview/get_job_credential.py +132 -0
- pulumi_azure_native/sql/v20240501preview/get_job_private_endpoint.py +145 -0
- pulumi_azure_native/sql/v20240501preview/get_job_step.py +203 -0
- pulumi_azure_native/sql/v20240501preview/get_job_target_group.py +133 -0
- pulumi_azure_native/sql/v20240501preview/get_long_term_retention_policy.py +171 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_database.py +244 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_database_sensitivity_label.py +271 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_database_vulnerability_assessment.py +133 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_database_vulnerability_assessment_rule_baseline.py +143 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_instance.py +640 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_instance_administrator.py +164 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_instance_azure_ad_only_authentication.py +127 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_instance_key.py +166 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_instance_long_term_retention_policy.py +184 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_instance_private_endpoint_connection.py +154 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_instance_vulnerability_assessment.py +128 -0
- pulumi_azure_native/sql/v20240501preview/get_managed_server_dns_alias.py +138 -0
- pulumi_azure_native/sql/v20240501preview/get_outbound_firewall_rule.py +125 -0
- pulumi_azure_native/sql/v20240501preview/get_private_endpoint_connection.py +167 -0
- pulumi_azure_native/sql/v20240501preview/get_replication_link.py +275 -0
- pulumi_azure_native/sql/v20240501preview/get_sensitivity_label.py +271 -0
- pulumi_azure_native/sql/v20240501preview/get_server.py +362 -0
- pulumi_azure_native/sql/v20240501preview/get_server_advisor.py +219 -0
- pulumi_azure_native/sql/v20240501preview/get_server_azure_ad_administrator.py +179 -0
- pulumi_azure_native/sql/v20240501preview/get_server_azure_ad_only_authentication.py +127 -0
- pulumi_azure_native/sql/v20240501preview/get_server_blob_auditing_policy.py +324 -0
- pulumi_azure_native/sql/v20240501preview/get_server_dns_alias.py +127 -0
- pulumi_azure_native/sql/v20240501preview/get_server_key.py +192 -0
- pulumi_azure_native/sql/v20240501preview/get_server_security_alert_policy.py +232 -0
- pulumi_azure_native/sql/v20240501preview/get_server_trust_certificate.py +153 -0
- pulumi_azure_native/sql/v20240501preview/get_server_trust_group.py +141 -0
- pulumi_azure_native/sql/v20240501preview/get_server_vulnerability_assessment.py +128 -0
- pulumi_azure_native/sql/v20240501preview/get_sql_vulnerability_assessment_rule_baseline.py +154 -0
- pulumi_azure_native/sql/v20240501preview/get_sql_vulnerability_assessments_setting.py +141 -0
- pulumi_azure_native/sql/v20240501preview/get_start_stop_managed_instance_schedule.py +193 -0
- pulumi_azure_native/sql/v20240501preview/get_sync_agent.py +192 -0
- pulumi_azure_native/sql/v20240501preview/get_sync_group.py +276 -0
- pulumi_azure_native/sql/v20240501preview/get_sync_member.py +267 -0
- pulumi_azure_native/sql/v20240501preview/get_transparent_data_encryption.py +132 -0
- pulumi_azure_native/sql/v20240501preview/get_virtual_network_rule.py +153 -0
- pulumi_azure_native/sql/v20240501preview/get_workload_classifier.py +202 -0
- pulumi_azure_native/sql/v20240501preview/get_workload_group.py +197 -0
- pulumi_azure_native/sql/v20240501preview/i_pv6_firewall_rule.py +256 -0
- pulumi_azure_native/sql/v20240501preview/instance_failover_group.py +350 -0
- pulumi_azure_native/sql/v20240501preview/instance_pool.py +377 -0
- pulumi_azure_native/sql/v20240501preview/job.py +275 -0
- pulumi_azure_native/sql/v20240501preview/job_agent.py +338 -0
- pulumi_azure_native/sql/v20240501preview/job_credential.py +251 -0
- pulumi_azure_native/sql/v20240501preview/job_private_endpoint.py +240 -0
- pulumi_azure_native/sql/v20240501preview/job_step.py +400 -0
- pulumi_azure_native/sql/v20240501preview/job_target_group.py +233 -0
- pulumi_azure_native/sql/v20240501preview/long_term_retention_policy.py +316 -0
- pulumi_azure_native/sql/v20240501preview/managed_database.py +655 -0
- pulumi_azure_native/sql/v20240501preview/managed_database_sensitivity_label.py +469 -0
- pulumi_azure_native/sql/v20240501preview/managed_database_vulnerability_assessment.py +291 -0
- pulumi_azure_native/sql/v20240501preview/managed_database_vulnerability_assessment_rule_baseline.py +274 -0
- pulumi_azure_native/sql/v20240501preview/managed_instance.py +1263 -0
- pulumi_azure_native/sql/v20240501preview/managed_instance_administrator.py +294 -0
- pulumi_azure_native/sql/v20240501preview/managed_instance_azure_ad_only_authentication.py +209 -0
- pulumi_azure_native/sql/v20240501preview/managed_instance_key.py +261 -0
- pulumi_azure_native/sql/v20240501preview/managed_instance_long_term_retention_policy.py +346 -0
- pulumi_azure_native/sql/v20240501preview/managed_instance_private_endpoint_connection.py +244 -0
- pulumi_azure_native/sql/v20240501preview/managed_instance_vulnerability_assessment.py +271 -0
- pulumi_azure_native/sql/v20240501preview/managed_server_dns_alias.py +218 -0
- pulumi_azure_native/sql/v20240501preview/outbound_firewall_rule.py +184 -0
- pulumi_azure_native/sql/v20240501preview/outputs.py +3714 -0
- pulumi_azure_native/sql/v20240501preview/private_endpoint_connection.py +255 -0
- pulumi_azure_native/sql/v20240501preview/replication_link.py +335 -0
- pulumi_azure_native/sql/v20240501preview/sensitivity_label.py +469 -0
- pulumi_azure_native/sql/v20240501preview/server.py +618 -0
- pulumi_azure_native/sql/v20240501preview/server_advisor.py +281 -0
- pulumi_azure_native/sql/v20240501preview/server_azure_ad_administrator.py +308 -0
- pulumi_azure_native/sql/v20240501preview/server_azure_ad_only_authentication.py +209 -0
- pulumi_azure_native/sql/v20240501preview/server_blob_auditing_policy.py +826 -0
- pulumi_azure_native/sql/v20240501preview/server_dns_alias.py +189 -0
- pulumi_azure_native/sql/v20240501preview/server_key.py +281 -0
- pulumi_azure_native/sql/v20240501preview/server_security_alert_policy.py +405 -0
- pulumi_azure_native/sql/v20240501preview/server_trust_certificate.py +227 -0
- pulumi_azure_native/sql/v20240501preview/server_trust_group.py +241 -0
- pulumi_azure_native/sql/v20240501preview/server_vulnerability_assessment.py +271 -0
- pulumi_azure_native/sql/v20240501preview/sql_vulnerability_assessment_rule_baseline.py +299 -0
- pulumi_azure_native/sql/v20240501preview/sql_vulnerability_assessments_setting.py +220 -0
- pulumi_azure_native/sql/v20240501preview/start_stop_managed_instance_schedule.py +308 -0
- pulumi_azure_native/sql/v20240501preview/sync_agent.py +258 -0
- pulumi_azure_native/sql/v20240501preview/sync_group.py +514 -0
- pulumi_azure_native/sql/v20240501preview/sync_member.py +483 -0
- pulumi_azure_native/sql/v20240501preview/transparent_data_encryption.py +231 -0
- pulumi_azure_native/sql/v20240501preview/virtual_network_rule.py +248 -0
- pulumi_azure_native/sql/v20240501preview/workload_classifier.py +396 -0
- pulumi_azure_native/sql/v20240501preview/workload_group.py +377 -0
- pulumi_azure_native/sql/virtual_network_rule.py +3 -3
- pulumi_azure_native/sql/workload_classifier.py +3 -3
- pulumi_azure_native/sql/workload_group.py +3 -3
- pulumi_azure_native/webpubsub/__init__.py +3 -0
- pulumi_azure_native/webpubsub/get_web_pub_sub.py +2 -2
- pulumi_azure_native/webpubsub/get_web_pub_sub_custom_certificate.py +2 -2
- pulumi_azure_native/webpubsub/get_web_pub_sub_custom_domain.py +2 -2
- pulumi_azure_native/webpubsub/get_web_pub_sub_hub.py +2 -2
- pulumi_azure_native/webpubsub/get_web_pub_sub_private_endpoint_connection.py +2 -2
- pulumi_azure_native/webpubsub/get_web_pub_sub_replica.py +2 -2
- pulumi_azure_native/webpubsub/get_web_pub_sub_shared_private_link_resource.py +2 -2
- pulumi_azure_native/webpubsub/list_web_pub_sub_keys.py +2 -2
- pulumi_azure_native/webpubsub/v20210401preview/web_pub_sub.py +1 -1
- pulumi_azure_native/webpubsub/v20210601preview/web_pub_sub.py +1 -1
- pulumi_azure_native/webpubsub/v20210901preview/web_pub_sub.py +1 -1
- pulumi_azure_native/webpubsub/v20230201/web_pub_sub.py +1 -1
- pulumi_azure_native/webpubsub/v20230201/web_pub_sub_custom_certificate.py +1 -1
- pulumi_azure_native/webpubsub/v20230201/web_pub_sub_custom_domain.py +1 -1
- pulumi_azure_native/webpubsub/v20230201/web_pub_sub_hub.py +1 -1
- pulumi_azure_native/webpubsub/v20230201/web_pub_sub_private_endpoint_connection.py +1 -1
- pulumi_azure_native/webpubsub/v20230201/web_pub_sub_shared_private_link_resource.py +1 -1
- pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub.py +1 -1
- pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub_custom_certificate.py +1 -1
- pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub_custom_domain.py +1 -1
- pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub_hub.py +1 -1
- pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub_private_endpoint_connection.py +1 -1
- pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub_replica.py +1 -1
- pulumi_azure_native/webpubsub/v20230301preview/web_pub_sub_shared_private_link_resource.py +1 -1
- pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub.py +1 -1
- pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub_custom_certificate.py +1 -1
- pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub_custom_domain.py +1 -1
- pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub_hub.py +1 -1
- pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub_private_endpoint_connection.py +1 -1
- pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub_replica.py +1 -1
- pulumi_azure_native/webpubsub/v20230601preview/web_pub_sub_shared_private_link_resource.py +1 -1
- pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub.py +1 -1
- pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub_custom_certificate.py +1 -1
- pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub_custom_domain.py +1 -1
- pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub_hub.py +1 -1
- pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub_private_endpoint_connection.py +1 -1
- pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub_replica.py +1 -1
- pulumi_azure_native/webpubsub/v20230801preview/web_pub_sub_shared_private_link_resource.py +1 -1
- pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub.py +1 -1
- pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub_custom_certificate.py +1 -1
- pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub_custom_domain.py +1 -1
- pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub_hub.py +1 -1
- pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub_private_endpoint_connection.py +1 -1
- pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub_replica.py +1 -1
- pulumi_azure_native/webpubsub/v20240101preview/web_pub_sub_shared_private_link_resource.py +1 -1
- pulumi_azure_native/webpubsub/v20240301/web_pub_sub.py +1 -1
- pulumi_azure_native/webpubsub/v20240301/web_pub_sub_custom_certificate.py +1 -1
- pulumi_azure_native/webpubsub/v20240301/web_pub_sub_custom_domain.py +1 -1
- pulumi_azure_native/webpubsub/v20240301/web_pub_sub_hub.py +1 -1
- pulumi_azure_native/webpubsub/v20240301/web_pub_sub_private_endpoint_connection.py +1 -1
- pulumi_azure_native/webpubsub/v20240301/web_pub_sub_replica.py +1 -1
- pulumi_azure_native/webpubsub/v20240301/web_pub_sub_shared_private_link_resource.py +1 -1
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub.py +1 -1
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_custom_certificate.py +1 -1
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_custom_domain.py +1 -1
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_hub.py +1 -1
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_private_endpoint_connection.py +1 -1
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_replica.py +1 -1
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_shared_private_link_resource.py +1 -1
- pulumi_azure_native/webpubsub/v20240801preview/__init__.py +25 -0
- pulumi_azure_native/webpubsub/v20240801preview/_enums.py +97 -0
- pulumi_azure_native/webpubsub/v20240801preview/_inputs.py +1768 -0
- pulumi_azure_native/webpubsub/v20240801preview/get_web_pub_sub.py +458 -0
- pulumi_azure_native/webpubsub/v20240801preview/get_web_pub_sub_custom_certificate.py +180 -0
- pulumi_azure_native/webpubsub/v20240801preview/get_web_pub_sub_custom_domain.py +167 -0
- pulumi_azure_native/webpubsub/v20240801preview/get_web_pub_sub_hub.py +141 -0
- pulumi_azure_native/webpubsub/v20240801preview/get_web_pub_sub_private_endpoint_connection.py +180 -0
- pulumi_azure_native/webpubsub/v20240801preview/get_web_pub_sub_replica.py +209 -0
- pulumi_azure_native/webpubsub/v20240801preview/get_web_pub_sub_shared_private_link_resource.py +206 -0
- pulumi_azure_native/webpubsub/v20240801preview/list_web_pub_sub_keys.py +122 -0
- pulumi_azure_native/webpubsub/v20240801preview/outputs.py +1862 -0
- pulumi_azure_native/webpubsub/v20240801preview/web_pub_sub.py +785 -0
- pulumi_azure_native/webpubsub/v20240801preview/web_pub_sub_custom_certificate.py +289 -0
- pulumi_azure_native/webpubsub/v20240801preview/web_pub_sub_custom_domain.py +260 -0
- pulumi_azure_native/webpubsub/v20240801preview/web_pub_sub_hub.py +222 -0
- pulumi_azure_native/webpubsub/v20240801preview/web_pub_sub_private_endpoint_connection.py +270 -0
- pulumi_azure_native/webpubsub/v20240801preview/web_pub_sub_replica.py +367 -0
- pulumi_azure_native/webpubsub/v20240801preview/web_pub_sub_shared_private_link_resource.py +328 -0
- pulumi_azure_native/webpubsub/web_pub_sub.py +3 -3
- pulumi_azure_native/webpubsub/web_pub_sub_custom_certificate.py +3 -3
- pulumi_azure_native/webpubsub/web_pub_sub_custom_domain.py +3 -3
- pulumi_azure_native/webpubsub/web_pub_sub_hub.py +3 -3
- pulumi_azure_native/webpubsub/web_pub_sub_private_endpoint_connection.py +3 -3
- pulumi_azure_native/webpubsub/web_pub_sub_replica.py +3 -3
- pulumi_azure_native/webpubsub/web_pub_sub_shared_private_link_resource.py +3 -3
- pulumi_azure_native/workloads/__init__.py +4 -0
- pulumi_azure_native/workloads/_enums.py +37 -1
- pulumi_azure_native/workloads/get_sap_virtual_instance_invoke_availability_zone_details.py +97 -0
- pulumi_azure_native/workloads/get_sap_virtual_instance_invoke_disk_configurations.py +112 -0
- pulumi_azure_native/workloads/get_sap_virtual_instance_invoke_sap_supported_sku.py +112 -0
- pulumi_azure_native/workloads/get_sap_virtual_instance_invoke_sizing_recommendations.py +126 -0
- pulumi_azure_native/workloads/v20240901/__init__.py +4 -4
- pulumi_azure_native/workloads/v20240901/{get_sap_virtual_instance_availability_zone_details.py → get_sap_virtual_instance_invoke_availability_zone_details.py} +20 -20
- pulumi_azure_native/workloads/v20240901/{get_sap_virtual_instance_disk_configurations.py → get_sap_virtual_instance_invoke_disk_configurations.py} +26 -26
- pulumi_azure_native/workloads/v20240901/{get_sap_virtual_instance_sap_supported_sku.py → get_sap_virtual_instance_invoke_sap_supported_sku.py} +26 -26
- pulumi_azure_native/workloads/v20240901/{get_sap_virtual_instance_sizing_recommendations.py → get_sap_virtual_instance_invoke_sizing_recommendations.py} +32 -32
- {pulumi_azure_native-2.61.0a1726045166.dist-info → pulumi_azure_native-2.62.0.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.61.0a1726045166.dist-info → pulumi_azure_native-2.62.0.dist-info}/RECORD +3008 -2273
- {pulumi_azure_native-2.61.0a1726045166.dist-info → pulumi_azure_native-2.62.0.dist-info}/WHEEL +1 -1
- {pulumi_azure_native-2.61.0a1726045166.dist-info → pulumi_azure_native-2.62.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,1527 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
from ._enums import *
|
|
18
|
+
|
|
19
|
+
__all__ = [
|
|
20
|
+
'ACRResponse',
|
|
21
|
+
'ADORepositoryResponse',
|
|
22
|
+
'ArtifactGenerationPropertiesResponse',
|
|
23
|
+
'AzurePipelineProfileResponse',
|
|
24
|
+
'BuildResponse',
|
|
25
|
+
'DeploymentResponse',
|
|
26
|
+
'GitHubWorkflowProfileResponse',
|
|
27
|
+
'GitHubWorkflowProfileResponseOidcCredentials',
|
|
28
|
+
'IacTemplateDetailsResponse',
|
|
29
|
+
'IacTemplatePropertiesResponse',
|
|
30
|
+
'PullRequestResponse',
|
|
31
|
+
'StagePropertiesResponse',
|
|
32
|
+
'SystemDataResponse',
|
|
33
|
+
'WorkflowPropertiesResponse',
|
|
34
|
+
'WorkflowRunResponse',
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
@pulumi.output_type
|
|
38
|
+
class ACRResponse(dict):
|
|
39
|
+
"""
|
|
40
|
+
Information on the azure container registry
|
|
41
|
+
"""
|
|
42
|
+
@staticmethod
|
|
43
|
+
def __key_warning(key: str):
|
|
44
|
+
suggest = None
|
|
45
|
+
if key == "acrRegistryName":
|
|
46
|
+
suggest = "acr_registry_name"
|
|
47
|
+
elif key == "acrRepositoryName":
|
|
48
|
+
suggest = "acr_repository_name"
|
|
49
|
+
elif key == "acrResourceGroup":
|
|
50
|
+
suggest = "acr_resource_group"
|
|
51
|
+
elif key == "acrSubscriptionId":
|
|
52
|
+
suggest = "acr_subscription_id"
|
|
53
|
+
|
|
54
|
+
if suggest:
|
|
55
|
+
pulumi.log.warn(f"Key '{key}' not found in ACRResponse. Access the value via the '{suggest}' property getter instead.")
|
|
56
|
+
|
|
57
|
+
def __getitem__(self, key: str) -> Any:
|
|
58
|
+
ACRResponse.__key_warning(key)
|
|
59
|
+
return super().__getitem__(key)
|
|
60
|
+
|
|
61
|
+
def get(self, key: str, default = None) -> Any:
|
|
62
|
+
ACRResponse.__key_warning(key)
|
|
63
|
+
return super().get(key, default)
|
|
64
|
+
|
|
65
|
+
def __init__(__self__, *,
|
|
66
|
+
acr_registry_name: Optional[str] = None,
|
|
67
|
+
acr_repository_name: Optional[str] = None,
|
|
68
|
+
acr_resource_group: Optional[str] = None,
|
|
69
|
+
acr_subscription_id: Optional[str] = None):
|
|
70
|
+
"""
|
|
71
|
+
Information on the azure container registry
|
|
72
|
+
:param str acr_registry_name: ACR registry
|
|
73
|
+
:param str acr_repository_name: ACR repository
|
|
74
|
+
:param str acr_resource_group: ACR resource group
|
|
75
|
+
:param str acr_subscription_id: ACR subscription id
|
|
76
|
+
"""
|
|
77
|
+
if acr_registry_name is not None:
|
|
78
|
+
pulumi.set(__self__, "acr_registry_name", acr_registry_name)
|
|
79
|
+
if acr_repository_name is not None:
|
|
80
|
+
pulumi.set(__self__, "acr_repository_name", acr_repository_name)
|
|
81
|
+
if acr_resource_group is not None:
|
|
82
|
+
pulumi.set(__self__, "acr_resource_group", acr_resource_group)
|
|
83
|
+
if acr_subscription_id is not None:
|
|
84
|
+
pulumi.set(__self__, "acr_subscription_id", acr_subscription_id)
|
|
85
|
+
|
|
86
|
+
@property
|
|
87
|
+
@pulumi.getter(name="acrRegistryName")
|
|
88
|
+
def acr_registry_name(self) -> Optional[str]:
|
|
89
|
+
"""
|
|
90
|
+
ACR registry
|
|
91
|
+
"""
|
|
92
|
+
return pulumi.get(self, "acr_registry_name")
|
|
93
|
+
|
|
94
|
+
@property
|
|
95
|
+
@pulumi.getter(name="acrRepositoryName")
|
|
96
|
+
def acr_repository_name(self) -> Optional[str]:
|
|
97
|
+
"""
|
|
98
|
+
ACR repository
|
|
99
|
+
"""
|
|
100
|
+
return pulumi.get(self, "acr_repository_name")
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
@pulumi.getter(name="acrResourceGroup")
|
|
104
|
+
def acr_resource_group(self) -> Optional[str]:
|
|
105
|
+
"""
|
|
106
|
+
ACR resource group
|
|
107
|
+
"""
|
|
108
|
+
return pulumi.get(self, "acr_resource_group")
|
|
109
|
+
|
|
110
|
+
@property
|
|
111
|
+
@pulumi.getter(name="acrSubscriptionId")
|
|
112
|
+
def acr_subscription_id(self) -> Optional[str]:
|
|
113
|
+
"""
|
|
114
|
+
ACR subscription id
|
|
115
|
+
"""
|
|
116
|
+
return pulumi.get(self, "acr_subscription_id")
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
@pulumi.output_type
|
|
120
|
+
class ADORepositoryResponse(dict):
|
|
121
|
+
"""
|
|
122
|
+
Details of the ADO repository associated with the workflow.
|
|
123
|
+
"""
|
|
124
|
+
@staticmethod
|
|
125
|
+
def __key_warning(key: str):
|
|
126
|
+
suggest = None
|
|
127
|
+
if key == "adoOrganization":
|
|
128
|
+
suggest = "ado_organization"
|
|
129
|
+
elif key == "branchName":
|
|
130
|
+
suggest = "branch_name"
|
|
131
|
+
elif key == "projectName":
|
|
132
|
+
suggest = "project_name"
|
|
133
|
+
elif key == "repositoryName":
|
|
134
|
+
suggest = "repository_name"
|
|
135
|
+
elif key == "repositoryOwner":
|
|
136
|
+
suggest = "repository_owner"
|
|
137
|
+
|
|
138
|
+
if suggest:
|
|
139
|
+
pulumi.log.warn(f"Key '{key}' not found in ADORepositoryResponse. Access the value via the '{suggest}' property getter instead.")
|
|
140
|
+
|
|
141
|
+
def __getitem__(self, key: str) -> Any:
|
|
142
|
+
ADORepositoryResponse.__key_warning(key)
|
|
143
|
+
return super().__getitem__(key)
|
|
144
|
+
|
|
145
|
+
def get(self, key: str, default = None) -> Any:
|
|
146
|
+
ADORepositoryResponse.__key_warning(key)
|
|
147
|
+
return super().get(key, default)
|
|
148
|
+
|
|
149
|
+
def __init__(__self__, *,
|
|
150
|
+
ado_organization: Optional[str] = None,
|
|
151
|
+
branch_name: Optional[str] = None,
|
|
152
|
+
project_name: Optional[str] = None,
|
|
153
|
+
repository_name: Optional[str] = None,
|
|
154
|
+
repository_owner: Optional[str] = None):
|
|
155
|
+
"""
|
|
156
|
+
Details of the ADO repository associated with the workflow.
|
|
157
|
+
:param str ado_organization: The name of the Azure DevOps organization the pipeline is associated with.
|
|
158
|
+
:param str branch_name: The name of the branch the workflow is associated with.
|
|
159
|
+
:param str project_name: The name of the project the pipeline is associated with.
|
|
160
|
+
:param str repository_name: The name of the repository the workflow is associated with.
|
|
161
|
+
:param str repository_owner: The owner of the repository the workflow is associated with.
|
|
162
|
+
"""
|
|
163
|
+
if ado_organization is not None:
|
|
164
|
+
pulumi.set(__self__, "ado_organization", ado_organization)
|
|
165
|
+
if branch_name is not None:
|
|
166
|
+
pulumi.set(__self__, "branch_name", branch_name)
|
|
167
|
+
if project_name is not None:
|
|
168
|
+
pulumi.set(__self__, "project_name", project_name)
|
|
169
|
+
if repository_name is not None:
|
|
170
|
+
pulumi.set(__self__, "repository_name", repository_name)
|
|
171
|
+
if repository_owner is not None:
|
|
172
|
+
pulumi.set(__self__, "repository_owner", repository_owner)
|
|
173
|
+
|
|
174
|
+
@property
|
|
175
|
+
@pulumi.getter(name="adoOrganization")
|
|
176
|
+
def ado_organization(self) -> Optional[str]:
|
|
177
|
+
"""
|
|
178
|
+
The name of the Azure DevOps organization the pipeline is associated with.
|
|
179
|
+
"""
|
|
180
|
+
return pulumi.get(self, "ado_organization")
|
|
181
|
+
|
|
182
|
+
@property
|
|
183
|
+
@pulumi.getter(name="branchName")
|
|
184
|
+
def branch_name(self) -> Optional[str]:
|
|
185
|
+
"""
|
|
186
|
+
The name of the branch the workflow is associated with.
|
|
187
|
+
"""
|
|
188
|
+
return pulumi.get(self, "branch_name")
|
|
189
|
+
|
|
190
|
+
@property
|
|
191
|
+
@pulumi.getter(name="projectName")
|
|
192
|
+
def project_name(self) -> Optional[str]:
|
|
193
|
+
"""
|
|
194
|
+
The name of the project the pipeline is associated with.
|
|
195
|
+
"""
|
|
196
|
+
return pulumi.get(self, "project_name")
|
|
197
|
+
|
|
198
|
+
@property
|
|
199
|
+
@pulumi.getter(name="repositoryName")
|
|
200
|
+
def repository_name(self) -> Optional[str]:
|
|
201
|
+
"""
|
|
202
|
+
The name of the repository the workflow is associated with.
|
|
203
|
+
"""
|
|
204
|
+
return pulumi.get(self, "repository_name")
|
|
205
|
+
|
|
206
|
+
@property
|
|
207
|
+
@pulumi.getter(name="repositoryOwner")
|
|
208
|
+
def repository_owner(self) -> Optional[str]:
|
|
209
|
+
"""
|
|
210
|
+
The owner of the repository the workflow is associated with.
|
|
211
|
+
"""
|
|
212
|
+
return pulumi.get(self, "repository_owner")
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
@pulumi.output_type
|
|
216
|
+
class ArtifactGenerationPropertiesResponse(dict):
|
|
217
|
+
"""
|
|
218
|
+
Properties used for generating artifacts such as Dockerfiles and manifests.
|
|
219
|
+
"""
|
|
220
|
+
@staticmethod
|
|
221
|
+
def __key_warning(key: str):
|
|
222
|
+
suggest = None
|
|
223
|
+
if key == "appName":
|
|
224
|
+
suggest = "app_name"
|
|
225
|
+
elif key == "builderVersion":
|
|
226
|
+
suggest = "builder_version"
|
|
227
|
+
elif key == "dockerfileGenerationMode":
|
|
228
|
+
suggest = "dockerfile_generation_mode"
|
|
229
|
+
elif key == "dockerfileOutputDirectory":
|
|
230
|
+
suggest = "dockerfile_output_directory"
|
|
231
|
+
elif key == "generationLanguage":
|
|
232
|
+
suggest = "generation_language"
|
|
233
|
+
elif key == "imageName":
|
|
234
|
+
suggest = "image_name"
|
|
235
|
+
elif key == "imageTag":
|
|
236
|
+
suggest = "image_tag"
|
|
237
|
+
elif key == "languageVersion":
|
|
238
|
+
suggest = "language_version"
|
|
239
|
+
elif key == "manifestGenerationMode":
|
|
240
|
+
suggest = "manifest_generation_mode"
|
|
241
|
+
elif key == "manifestOutputDirectory":
|
|
242
|
+
suggest = "manifest_output_directory"
|
|
243
|
+
elif key == "manifestType":
|
|
244
|
+
suggest = "manifest_type"
|
|
245
|
+
|
|
246
|
+
if suggest:
|
|
247
|
+
pulumi.log.warn(f"Key '{key}' not found in ArtifactGenerationPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
248
|
+
|
|
249
|
+
def __getitem__(self, key: str) -> Any:
|
|
250
|
+
ArtifactGenerationPropertiesResponse.__key_warning(key)
|
|
251
|
+
return super().__getitem__(key)
|
|
252
|
+
|
|
253
|
+
def get(self, key: str, default = None) -> Any:
|
|
254
|
+
ArtifactGenerationPropertiesResponse.__key_warning(key)
|
|
255
|
+
return super().get(key, default)
|
|
256
|
+
|
|
257
|
+
def __init__(__self__, *,
|
|
258
|
+
app_name: Optional[str] = None,
|
|
259
|
+
builder_version: Optional[str] = None,
|
|
260
|
+
dockerfile_generation_mode: Optional[str] = None,
|
|
261
|
+
dockerfile_output_directory: Optional[str] = None,
|
|
262
|
+
generation_language: Optional[str] = None,
|
|
263
|
+
image_name: Optional[str] = None,
|
|
264
|
+
image_tag: Optional[str] = None,
|
|
265
|
+
language_version: Optional[str] = None,
|
|
266
|
+
manifest_generation_mode: Optional[str] = None,
|
|
267
|
+
manifest_output_directory: Optional[str] = None,
|
|
268
|
+
manifest_type: Optional[str] = None,
|
|
269
|
+
namespace: Optional[str] = None,
|
|
270
|
+
port: Optional[str] = None):
|
|
271
|
+
"""
|
|
272
|
+
Properties used for generating artifacts such as Dockerfiles and manifests.
|
|
273
|
+
:param str app_name: The name of the app.
|
|
274
|
+
:param str builder_version: The version of the language image used for building the code in the generated dockerfile.
|
|
275
|
+
:param str dockerfile_generation_mode: The mode of generation to be used for generating Dockerfiles.
|
|
276
|
+
:param str dockerfile_output_directory: The directory to output the generated Dockerfile to.
|
|
277
|
+
:param str generation_language: The programming language used.
|
|
278
|
+
:param str image_name: The name of the image to be generated.
|
|
279
|
+
:param str image_tag: The tag to apply to the generated image.
|
|
280
|
+
:param str language_version: The version of the language image used for execution in the generated dockerfile.
|
|
281
|
+
:param str manifest_generation_mode: The mode of generation to be used for generating Manifest.
|
|
282
|
+
:param str manifest_output_directory: The directory to output the generated manifests to.
|
|
283
|
+
:param str manifest_type: Determines the type of manifests to be generated.
|
|
284
|
+
:param str namespace: The namespace to deploy the application to.
|
|
285
|
+
:param str port: The port the application is exposed on.
|
|
286
|
+
"""
|
|
287
|
+
if app_name is not None:
|
|
288
|
+
pulumi.set(__self__, "app_name", app_name)
|
|
289
|
+
if builder_version is not None:
|
|
290
|
+
pulumi.set(__self__, "builder_version", builder_version)
|
|
291
|
+
if dockerfile_generation_mode is not None:
|
|
292
|
+
pulumi.set(__self__, "dockerfile_generation_mode", dockerfile_generation_mode)
|
|
293
|
+
if dockerfile_output_directory is not None:
|
|
294
|
+
pulumi.set(__self__, "dockerfile_output_directory", dockerfile_output_directory)
|
|
295
|
+
if generation_language is not None:
|
|
296
|
+
pulumi.set(__self__, "generation_language", generation_language)
|
|
297
|
+
if image_name is not None:
|
|
298
|
+
pulumi.set(__self__, "image_name", image_name)
|
|
299
|
+
if image_tag is not None:
|
|
300
|
+
pulumi.set(__self__, "image_tag", image_tag)
|
|
301
|
+
if language_version is not None:
|
|
302
|
+
pulumi.set(__self__, "language_version", language_version)
|
|
303
|
+
if manifest_generation_mode is not None:
|
|
304
|
+
pulumi.set(__self__, "manifest_generation_mode", manifest_generation_mode)
|
|
305
|
+
if manifest_output_directory is not None:
|
|
306
|
+
pulumi.set(__self__, "manifest_output_directory", manifest_output_directory)
|
|
307
|
+
if manifest_type is not None:
|
|
308
|
+
pulumi.set(__self__, "manifest_type", manifest_type)
|
|
309
|
+
if namespace is not None:
|
|
310
|
+
pulumi.set(__self__, "namespace", namespace)
|
|
311
|
+
if port is not None:
|
|
312
|
+
pulumi.set(__self__, "port", port)
|
|
313
|
+
|
|
314
|
+
@property
|
|
315
|
+
@pulumi.getter(name="appName")
|
|
316
|
+
def app_name(self) -> Optional[str]:
|
|
317
|
+
"""
|
|
318
|
+
The name of the app.
|
|
319
|
+
"""
|
|
320
|
+
return pulumi.get(self, "app_name")
|
|
321
|
+
|
|
322
|
+
@property
|
|
323
|
+
@pulumi.getter(name="builderVersion")
|
|
324
|
+
def builder_version(self) -> Optional[str]:
|
|
325
|
+
"""
|
|
326
|
+
The version of the language image used for building the code in the generated dockerfile.
|
|
327
|
+
"""
|
|
328
|
+
return pulumi.get(self, "builder_version")
|
|
329
|
+
|
|
330
|
+
@property
|
|
331
|
+
@pulumi.getter(name="dockerfileGenerationMode")
|
|
332
|
+
def dockerfile_generation_mode(self) -> Optional[str]:
|
|
333
|
+
"""
|
|
334
|
+
The mode of generation to be used for generating Dockerfiles.
|
|
335
|
+
"""
|
|
336
|
+
return pulumi.get(self, "dockerfile_generation_mode")
|
|
337
|
+
|
|
338
|
+
@property
|
|
339
|
+
@pulumi.getter(name="dockerfileOutputDirectory")
|
|
340
|
+
def dockerfile_output_directory(self) -> Optional[str]:
|
|
341
|
+
"""
|
|
342
|
+
The directory to output the generated Dockerfile to.
|
|
343
|
+
"""
|
|
344
|
+
return pulumi.get(self, "dockerfile_output_directory")
|
|
345
|
+
|
|
346
|
+
@property
|
|
347
|
+
@pulumi.getter(name="generationLanguage")
|
|
348
|
+
def generation_language(self) -> Optional[str]:
|
|
349
|
+
"""
|
|
350
|
+
The programming language used.
|
|
351
|
+
"""
|
|
352
|
+
return pulumi.get(self, "generation_language")
|
|
353
|
+
|
|
354
|
+
@property
|
|
355
|
+
@pulumi.getter(name="imageName")
|
|
356
|
+
def image_name(self) -> Optional[str]:
|
|
357
|
+
"""
|
|
358
|
+
The name of the image to be generated.
|
|
359
|
+
"""
|
|
360
|
+
return pulumi.get(self, "image_name")
|
|
361
|
+
|
|
362
|
+
@property
|
|
363
|
+
@pulumi.getter(name="imageTag")
|
|
364
|
+
def image_tag(self) -> Optional[str]:
|
|
365
|
+
"""
|
|
366
|
+
The tag to apply to the generated image.
|
|
367
|
+
"""
|
|
368
|
+
return pulumi.get(self, "image_tag")
|
|
369
|
+
|
|
370
|
+
@property
|
|
371
|
+
@pulumi.getter(name="languageVersion")
|
|
372
|
+
def language_version(self) -> Optional[str]:
|
|
373
|
+
"""
|
|
374
|
+
The version of the language image used for execution in the generated dockerfile.
|
|
375
|
+
"""
|
|
376
|
+
return pulumi.get(self, "language_version")
|
|
377
|
+
|
|
378
|
+
@property
|
|
379
|
+
@pulumi.getter(name="manifestGenerationMode")
|
|
380
|
+
def manifest_generation_mode(self) -> Optional[str]:
|
|
381
|
+
"""
|
|
382
|
+
The mode of generation to be used for generating Manifest.
|
|
383
|
+
"""
|
|
384
|
+
return pulumi.get(self, "manifest_generation_mode")
|
|
385
|
+
|
|
386
|
+
@property
|
|
387
|
+
@pulumi.getter(name="manifestOutputDirectory")
|
|
388
|
+
def manifest_output_directory(self) -> Optional[str]:
|
|
389
|
+
"""
|
|
390
|
+
The directory to output the generated manifests to.
|
|
391
|
+
"""
|
|
392
|
+
return pulumi.get(self, "manifest_output_directory")
|
|
393
|
+
|
|
394
|
+
@property
|
|
395
|
+
@pulumi.getter(name="manifestType")
|
|
396
|
+
def manifest_type(self) -> Optional[str]:
|
|
397
|
+
"""
|
|
398
|
+
Determines the type of manifests to be generated.
|
|
399
|
+
"""
|
|
400
|
+
return pulumi.get(self, "manifest_type")
|
|
401
|
+
|
|
402
|
+
@property
|
|
403
|
+
@pulumi.getter
|
|
404
|
+
def namespace(self) -> Optional[str]:
|
|
405
|
+
"""
|
|
406
|
+
The namespace to deploy the application to.
|
|
407
|
+
"""
|
|
408
|
+
return pulumi.get(self, "namespace")
|
|
409
|
+
|
|
410
|
+
@property
|
|
411
|
+
@pulumi.getter
|
|
412
|
+
def port(self) -> Optional[str]:
|
|
413
|
+
"""
|
|
414
|
+
The port the application is exposed on.
|
|
415
|
+
"""
|
|
416
|
+
return pulumi.get(self, "port")
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
@pulumi.output_type
|
|
420
|
+
class AzurePipelineProfileResponse(dict):
|
|
421
|
+
"""
|
|
422
|
+
Azure Pipeline Profile
|
|
423
|
+
"""
|
|
424
|
+
@staticmethod
|
|
425
|
+
def __key_warning(key: str):
|
|
426
|
+
suggest = None
|
|
427
|
+
if key == "authStatus":
|
|
428
|
+
suggest = "auth_status"
|
|
429
|
+
elif key == "armServiceConnection":
|
|
430
|
+
suggest = "arm_service_connection"
|
|
431
|
+
elif key == "clusterId":
|
|
432
|
+
suggest = "cluster_id"
|
|
433
|
+
elif key == "lastWorkflowRun":
|
|
434
|
+
suggest = "last_workflow_run"
|
|
435
|
+
elif key == "pullRequest":
|
|
436
|
+
suggest = "pull_request"
|
|
437
|
+
|
|
438
|
+
if suggest:
|
|
439
|
+
pulumi.log.warn(f"Key '{key}' not found in AzurePipelineProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
440
|
+
|
|
441
|
+
def __getitem__(self, key: str) -> Any:
|
|
442
|
+
AzurePipelineProfileResponse.__key_warning(key)
|
|
443
|
+
return super().__getitem__(key)
|
|
444
|
+
|
|
445
|
+
def get(self, key: str, default = None) -> Any:
|
|
446
|
+
AzurePipelineProfileResponse.__key_warning(key)
|
|
447
|
+
return super().get(key, default)
|
|
448
|
+
|
|
449
|
+
def __init__(__self__, *,
|
|
450
|
+
auth_status: str,
|
|
451
|
+
acr: Optional[str] = None,
|
|
452
|
+
arm_service_connection: Optional[str] = None,
|
|
453
|
+
build: Optional['outputs.BuildResponse'] = None,
|
|
454
|
+
cluster_id: Optional[str] = None,
|
|
455
|
+
deployment: Optional['outputs.DeploymentResponse'] = None,
|
|
456
|
+
last_workflow_run: Optional['outputs.WorkflowRunResponse'] = None,
|
|
457
|
+
namespace: Optional[str] = None,
|
|
458
|
+
pull_request: Optional['outputs.PullRequestResponse'] = None,
|
|
459
|
+
repository: Optional['outputs.ADORepositoryResponse'] = None):
|
|
460
|
+
"""
|
|
461
|
+
Azure Pipeline Profile
|
|
462
|
+
:param str auth_status: Determines the authorization status of requests.
|
|
463
|
+
:param str acr: Resource identifier for azure container registry repository associated with the workflow.
|
|
464
|
+
:param str arm_service_connection: The name of the ARM Service Connection the pipeline is associated with.
|
|
465
|
+
:param 'BuildResponse' build: Build details of the repository associated with the workflow.
|
|
466
|
+
:param str cluster_id: The Azure Kubernetes Cluster Resource the application will be deployed to.
|
|
467
|
+
:param 'DeploymentResponse' deployment: Deployment details of the repository associated with the workflow.
|
|
468
|
+
:param str namespace: Kubernetes namespace the application is deployed to.
|
|
469
|
+
:param 'PullRequestResponse' pull_request: Details of the pull request containing the workflow.
|
|
470
|
+
:param 'ADORepositoryResponse' repository: Details of the ADO repository associated with the workflow.
|
|
471
|
+
"""
|
|
472
|
+
pulumi.set(__self__, "auth_status", auth_status)
|
|
473
|
+
if acr is not None:
|
|
474
|
+
pulumi.set(__self__, "acr", acr)
|
|
475
|
+
if arm_service_connection is not None:
|
|
476
|
+
pulumi.set(__self__, "arm_service_connection", arm_service_connection)
|
|
477
|
+
if build is not None:
|
|
478
|
+
pulumi.set(__self__, "build", build)
|
|
479
|
+
if cluster_id is not None:
|
|
480
|
+
pulumi.set(__self__, "cluster_id", cluster_id)
|
|
481
|
+
if deployment is not None:
|
|
482
|
+
pulumi.set(__self__, "deployment", deployment)
|
|
483
|
+
if last_workflow_run is not None:
|
|
484
|
+
pulumi.set(__self__, "last_workflow_run", last_workflow_run)
|
|
485
|
+
if namespace is not None:
|
|
486
|
+
pulumi.set(__self__, "namespace", namespace)
|
|
487
|
+
if pull_request is not None:
|
|
488
|
+
pulumi.set(__self__, "pull_request", pull_request)
|
|
489
|
+
if repository is not None:
|
|
490
|
+
pulumi.set(__self__, "repository", repository)
|
|
491
|
+
|
|
492
|
+
@property
|
|
493
|
+
@pulumi.getter(name="authStatus")
|
|
494
|
+
def auth_status(self) -> str:
|
|
495
|
+
"""
|
|
496
|
+
Determines the authorization status of requests.
|
|
497
|
+
"""
|
|
498
|
+
return pulumi.get(self, "auth_status")
|
|
499
|
+
|
|
500
|
+
@property
|
|
501
|
+
@pulumi.getter
|
|
502
|
+
def acr(self) -> Optional[str]:
|
|
503
|
+
"""
|
|
504
|
+
Resource identifier for azure container registry repository associated with the workflow.
|
|
505
|
+
"""
|
|
506
|
+
return pulumi.get(self, "acr")
|
|
507
|
+
|
|
508
|
+
@property
|
|
509
|
+
@pulumi.getter(name="armServiceConnection")
|
|
510
|
+
def arm_service_connection(self) -> Optional[str]:
|
|
511
|
+
"""
|
|
512
|
+
The name of the ARM Service Connection the pipeline is associated with.
|
|
513
|
+
"""
|
|
514
|
+
return pulumi.get(self, "arm_service_connection")
|
|
515
|
+
|
|
516
|
+
@property
|
|
517
|
+
@pulumi.getter
|
|
518
|
+
def build(self) -> Optional['outputs.BuildResponse']:
|
|
519
|
+
"""
|
|
520
|
+
Build details of the repository associated with the workflow.
|
|
521
|
+
"""
|
|
522
|
+
return pulumi.get(self, "build")
|
|
523
|
+
|
|
524
|
+
@property
|
|
525
|
+
@pulumi.getter(name="clusterId")
|
|
526
|
+
def cluster_id(self) -> Optional[str]:
|
|
527
|
+
"""
|
|
528
|
+
The Azure Kubernetes Cluster Resource the application will be deployed to.
|
|
529
|
+
"""
|
|
530
|
+
return pulumi.get(self, "cluster_id")
|
|
531
|
+
|
|
532
|
+
@property
|
|
533
|
+
@pulumi.getter
|
|
534
|
+
def deployment(self) -> Optional['outputs.DeploymentResponse']:
|
|
535
|
+
"""
|
|
536
|
+
Deployment details of the repository associated with the workflow.
|
|
537
|
+
"""
|
|
538
|
+
return pulumi.get(self, "deployment")
|
|
539
|
+
|
|
540
|
+
@property
|
|
541
|
+
@pulumi.getter(name="lastWorkflowRun")
|
|
542
|
+
def last_workflow_run(self) -> Optional['outputs.WorkflowRunResponse']:
|
|
543
|
+
return pulumi.get(self, "last_workflow_run")
|
|
544
|
+
|
|
545
|
+
@property
|
|
546
|
+
@pulumi.getter
|
|
547
|
+
def namespace(self) -> Optional[str]:
|
|
548
|
+
"""
|
|
549
|
+
Kubernetes namespace the application is deployed to.
|
|
550
|
+
"""
|
|
551
|
+
return pulumi.get(self, "namespace")
|
|
552
|
+
|
|
553
|
+
@property
|
|
554
|
+
@pulumi.getter(name="pullRequest")
|
|
555
|
+
def pull_request(self) -> Optional['outputs.PullRequestResponse']:
|
|
556
|
+
"""
|
|
557
|
+
Details of the pull request containing the workflow.
|
|
558
|
+
"""
|
|
559
|
+
return pulumi.get(self, "pull_request")
|
|
560
|
+
|
|
561
|
+
@property
|
|
562
|
+
@pulumi.getter
|
|
563
|
+
def repository(self) -> Optional['outputs.ADORepositoryResponse']:
|
|
564
|
+
"""
|
|
565
|
+
Details of the ADO repository associated with the workflow.
|
|
566
|
+
"""
|
|
567
|
+
return pulumi.get(self, "repository")
|
|
568
|
+
|
|
569
|
+
|
|
570
|
+
@pulumi.output_type
|
|
571
|
+
class BuildResponse(dict):
|
|
572
|
+
"""
|
|
573
|
+
Build details of the repository associated with the workflow.
|
|
574
|
+
"""
|
|
575
|
+
@staticmethod
|
|
576
|
+
def __key_warning(key: str):
|
|
577
|
+
suggest = None
|
|
578
|
+
if key == "dockerBuildContext":
|
|
579
|
+
suggest = "docker_build_context"
|
|
580
|
+
|
|
581
|
+
if suggest:
|
|
582
|
+
pulumi.log.warn(f"Key '{key}' not found in BuildResponse. Access the value via the '{suggest}' property getter instead.")
|
|
583
|
+
|
|
584
|
+
def __getitem__(self, key: str) -> Any:
|
|
585
|
+
BuildResponse.__key_warning(key)
|
|
586
|
+
return super().__getitem__(key)
|
|
587
|
+
|
|
588
|
+
def get(self, key: str, default = None) -> Any:
|
|
589
|
+
BuildResponse.__key_warning(key)
|
|
590
|
+
return super().get(key, default)
|
|
591
|
+
|
|
592
|
+
def __init__(__self__, *,
|
|
593
|
+
docker_build_context: Optional[str] = None,
|
|
594
|
+
dockerfile: Optional[str] = None):
|
|
595
|
+
"""
|
|
596
|
+
Build details of the repository associated with the workflow.
|
|
597
|
+
:param str docker_build_context: Path to Dockerfile Build Context within the repository.
|
|
598
|
+
:param str dockerfile: Path to the Dockerfile within the repository.
|
|
599
|
+
"""
|
|
600
|
+
if docker_build_context is not None:
|
|
601
|
+
pulumi.set(__self__, "docker_build_context", docker_build_context)
|
|
602
|
+
if dockerfile is not None:
|
|
603
|
+
pulumi.set(__self__, "dockerfile", dockerfile)
|
|
604
|
+
|
|
605
|
+
@property
|
|
606
|
+
@pulumi.getter(name="dockerBuildContext")
|
|
607
|
+
def docker_build_context(self) -> Optional[str]:
|
|
608
|
+
"""
|
|
609
|
+
Path to Dockerfile Build Context within the repository.
|
|
610
|
+
"""
|
|
611
|
+
return pulumi.get(self, "docker_build_context")
|
|
612
|
+
|
|
613
|
+
@property
|
|
614
|
+
@pulumi.getter
|
|
615
|
+
def dockerfile(self) -> Optional[str]:
|
|
616
|
+
"""
|
|
617
|
+
Path to the Dockerfile within the repository.
|
|
618
|
+
"""
|
|
619
|
+
return pulumi.get(self, "dockerfile")
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
@pulumi.output_type
|
|
623
|
+
class DeploymentResponse(dict):
|
|
624
|
+
"""
|
|
625
|
+
Deployment details of the repository associated with the workflow.
|
|
626
|
+
"""
|
|
627
|
+
@staticmethod
|
|
628
|
+
def __key_warning(key: str):
|
|
629
|
+
suggest = None
|
|
630
|
+
if key == "helmChartPath":
|
|
631
|
+
suggest = "helm_chart_path"
|
|
632
|
+
elif key == "helmValues":
|
|
633
|
+
suggest = "helm_values"
|
|
634
|
+
elif key == "kubeManifestLocations":
|
|
635
|
+
suggest = "kube_manifest_locations"
|
|
636
|
+
elif key == "manifestType":
|
|
637
|
+
suggest = "manifest_type"
|
|
638
|
+
|
|
639
|
+
if suggest:
|
|
640
|
+
pulumi.log.warn(f"Key '{key}' not found in DeploymentResponse. Access the value via the '{suggest}' property getter instead.")
|
|
641
|
+
|
|
642
|
+
def __getitem__(self, key: str) -> Any:
|
|
643
|
+
DeploymentResponse.__key_warning(key)
|
|
644
|
+
return super().__getitem__(key)
|
|
645
|
+
|
|
646
|
+
def get(self, key: str, default = None) -> Any:
|
|
647
|
+
DeploymentResponse.__key_warning(key)
|
|
648
|
+
return super().get(key, default)
|
|
649
|
+
|
|
650
|
+
def __init__(__self__, *,
|
|
651
|
+
helm_chart_path: Optional[str] = None,
|
|
652
|
+
helm_values: Optional[str] = None,
|
|
653
|
+
kube_manifest_locations: Optional[Sequence[str]] = None,
|
|
654
|
+
manifest_type: Optional[str] = None,
|
|
655
|
+
overrides: Optional[Mapping[str, str]] = None):
|
|
656
|
+
"""
|
|
657
|
+
Deployment details of the repository associated with the workflow.
|
|
658
|
+
:param str helm_chart_path: Helm chart directory path in repository.
|
|
659
|
+
:param str helm_values: Helm Values.yaml file location in repository.
|
|
660
|
+
:param str manifest_type: Determines the type of manifests within the repository.
|
|
661
|
+
:param Mapping[str, str] overrides: Manifest override values.
|
|
662
|
+
"""
|
|
663
|
+
if helm_chart_path is not None:
|
|
664
|
+
pulumi.set(__self__, "helm_chart_path", helm_chart_path)
|
|
665
|
+
if helm_values is not None:
|
|
666
|
+
pulumi.set(__self__, "helm_values", helm_values)
|
|
667
|
+
if kube_manifest_locations is not None:
|
|
668
|
+
pulumi.set(__self__, "kube_manifest_locations", kube_manifest_locations)
|
|
669
|
+
if manifest_type is not None:
|
|
670
|
+
pulumi.set(__self__, "manifest_type", manifest_type)
|
|
671
|
+
if overrides is not None:
|
|
672
|
+
pulumi.set(__self__, "overrides", overrides)
|
|
673
|
+
|
|
674
|
+
@property
|
|
675
|
+
@pulumi.getter(name="helmChartPath")
|
|
676
|
+
def helm_chart_path(self) -> Optional[str]:
|
|
677
|
+
"""
|
|
678
|
+
Helm chart directory path in repository.
|
|
679
|
+
"""
|
|
680
|
+
return pulumi.get(self, "helm_chart_path")
|
|
681
|
+
|
|
682
|
+
@property
|
|
683
|
+
@pulumi.getter(name="helmValues")
|
|
684
|
+
def helm_values(self) -> Optional[str]:
|
|
685
|
+
"""
|
|
686
|
+
Helm Values.yaml file location in repository.
|
|
687
|
+
"""
|
|
688
|
+
return pulumi.get(self, "helm_values")
|
|
689
|
+
|
|
690
|
+
@property
|
|
691
|
+
@pulumi.getter(name="kubeManifestLocations")
|
|
692
|
+
def kube_manifest_locations(self) -> Optional[Sequence[str]]:
|
|
693
|
+
return pulumi.get(self, "kube_manifest_locations")
|
|
694
|
+
|
|
695
|
+
@property
|
|
696
|
+
@pulumi.getter(name="manifestType")
|
|
697
|
+
def manifest_type(self) -> Optional[str]:
|
|
698
|
+
"""
|
|
699
|
+
Determines the type of manifests within the repository.
|
|
700
|
+
"""
|
|
701
|
+
return pulumi.get(self, "manifest_type")
|
|
702
|
+
|
|
703
|
+
@property
|
|
704
|
+
@pulumi.getter
|
|
705
|
+
def overrides(self) -> Optional[Mapping[str, str]]:
|
|
706
|
+
"""
|
|
707
|
+
Manifest override values.
|
|
708
|
+
"""
|
|
709
|
+
return pulumi.get(self, "overrides")
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
@pulumi.output_type
|
|
713
|
+
class GitHubWorkflowProfileResponse(dict):
|
|
714
|
+
"""
|
|
715
|
+
GitHub Workflow Profile
|
|
716
|
+
"""
|
|
717
|
+
@staticmethod
|
|
718
|
+
def __key_warning(key: str):
|
|
719
|
+
suggest = None
|
|
720
|
+
if key == "authStatus":
|
|
721
|
+
suggest = "auth_status"
|
|
722
|
+
elif key == "prStatus":
|
|
723
|
+
suggest = "pr_status"
|
|
724
|
+
elif key == "prURL":
|
|
725
|
+
suggest = "pr_url"
|
|
726
|
+
elif key == "pullNumber":
|
|
727
|
+
suggest = "pull_number"
|
|
728
|
+
elif key == "aksResourceId":
|
|
729
|
+
suggest = "aks_resource_id"
|
|
730
|
+
elif key == "branchName":
|
|
731
|
+
suggest = "branch_name"
|
|
732
|
+
elif key == "deploymentProperties":
|
|
733
|
+
suggest = "deployment_properties"
|
|
734
|
+
elif key == "dockerBuildContext":
|
|
735
|
+
suggest = "docker_build_context"
|
|
736
|
+
elif key == "lastWorkflowRun":
|
|
737
|
+
suggest = "last_workflow_run"
|
|
738
|
+
elif key == "oidcCredentials":
|
|
739
|
+
suggest = "oidc_credentials"
|
|
740
|
+
elif key == "repositoryName":
|
|
741
|
+
suggest = "repository_name"
|
|
742
|
+
elif key == "repositoryOwner":
|
|
743
|
+
suggest = "repository_owner"
|
|
744
|
+
|
|
745
|
+
if suggest:
|
|
746
|
+
pulumi.log.warn(f"Key '{key}' not found in GitHubWorkflowProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
747
|
+
|
|
748
|
+
def __getitem__(self, key: str) -> Any:
|
|
749
|
+
GitHubWorkflowProfileResponse.__key_warning(key)
|
|
750
|
+
return super().__getitem__(key)
|
|
751
|
+
|
|
752
|
+
def get(self, key: str, default = None) -> Any:
|
|
753
|
+
GitHubWorkflowProfileResponse.__key_warning(key)
|
|
754
|
+
return super().get(key, default)
|
|
755
|
+
|
|
756
|
+
def __init__(__self__, *,
|
|
757
|
+
auth_status: str,
|
|
758
|
+
pr_status: str,
|
|
759
|
+
pr_url: str,
|
|
760
|
+
pull_number: int,
|
|
761
|
+
acr: Optional['outputs.ACRResponse'] = None,
|
|
762
|
+
aks_resource_id: Optional[str] = None,
|
|
763
|
+
branch_name: Optional[str] = None,
|
|
764
|
+
deployment_properties: Optional['outputs.DeploymentResponse'] = None,
|
|
765
|
+
docker_build_context: Optional[str] = None,
|
|
766
|
+
dockerfile: Optional[str] = None,
|
|
767
|
+
last_workflow_run: Optional['outputs.WorkflowRunResponse'] = None,
|
|
768
|
+
namespace: Optional[str] = None,
|
|
769
|
+
oidc_credentials: Optional['outputs.GitHubWorkflowProfileResponseOidcCredentials'] = None,
|
|
770
|
+
repository_name: Optional[str] = None,
|
|
771
|
+
repository_owner: Optional[str] = None):
|
|
772
|
+
"""
|
|
773
|
+
GitHub Workflow Profile
|
|
774
|
+
:param str auth_status: Determines the authorization status of requests.
|
|
775
|
+
:param str pr_status: The status of the Pull Request submitted against the users repository.
|
|
776
|
+
:param str pr_url: The URL to the Pull Request submitted against the users repository.
|
|
777
|
+
:param int pull_number: The number associated with the submitted pull request.
|
|
778
|
+
:param 'ACRResponse' acr: Information on the azure container registry
|
|
779
|
+
:param str aks_resource_id: The Azure Kubernetes Cluster Resource the application will be deployed to.
|
|
780
|
+
:param str branch_name: Repository Branch Name
|
|
781
|
+
:param 'DeploymentResponse' deployment_properties: Deployment details of the repository associated with the workflow.
|
|
782
|
+
:param str docker_build_context: Path to Dockerfile Build Context within the repository.
|
|
783
|
+
:param str dockerfile: Path to the Dockerfile within the repository.
|
|
784
|
+
:param str namespace: Kubernetes namespace the application is deployed to.
|
|
785
|
+
:param 'GitHubWorkflowProfileResponseOidcCredentials' oidc_credentials: The fields needed for OIDC with GitHub.
|
|
786
|
+
:param str repository_name: Repository Name
|
|
787
|
+
:param str repository_owner: Repository Owner
|
|
788
|
+
"""
|
|
789
|
+
pulumi.set(__self__, "auth_status", auth_status)
|
|
790
|
+
pulumi.set(__self__, "pr_status", pr_status)
|
|
791
|
+
pulumi.set(__self__, "pr_url", pr_url)
|
|
792
|
+
pulumi.set(__self__, "pull_number", pull_number)
|
|
793
|
+
if acr is not None:
|
|
794
|
+
pulumi.set(__self__, "acr", acr)
|
|
795
|
+
if aks_resource_id is not None:
|
|
796
|
+
pulumi.set(__self__, "aks_resource_id", aks_resource_id)
|
|
797
|
+
if branch_name is not None:
|
|
798
|
+
pulumi.set(__self__, "branch_name", branch_name)
|
|
799
|
+
if deployment_properties is not None:
|
|
800
|
+
pulumi.set(__self__, "deployment_properties", deployment_properties)
|
|
801
|
+
if docker_build_context is not None:
|
|
802
|
+
pulumi.set(__self__, "docker_build_context", docker_build_context)
|
|
803
|
+
if dockerfile is not None:
|
|
804
|
+
pulumi.set(__self__, "dockerfile", dockerfile)
|
|
805
|
+
if last_workflow_run is not None:
|
|
806
|
+
pulumi.set(__self__, "last_workflow_run", last_workflow_run)
|
|
807
|
+
if namespace is not None:
|
|
808
|
+
pulumi.set(__self__, "namespace", namespace)
|
|
809
|
+
if oidc_credentials is not None:
|
|
810
|
+
pulumi.set(__self__, "oidc_credentials", oidc_credentials)
|
|
811
|
+
if repository_name is not None:
|
|
812
|
+
pulumi.set(__self__, "repository_name", repository_name)
|
|
813
|
+
if repository_owner is not None:
|
|
814
|
+
pulumi.set(__self__, "repository_owner", repository_owner)
|
|
815
|
+
|
|
816
|
+
@property
|
|
817
|
+
@pulumi.getter(name="authStatus")
|
|
818
|
+
def auth_status(self) -> str:
|
|
819
|
+
"""
|
|
820
|
+
Determines the authorization status of requests.
|
|
821
|
+
"""
|
|
822
|
+
return pulumi.get(self, "auth_status")
|
|
823
|
+
|
|
824
|
+
@property
|
|
825
|
+
@pulumi.getter(name="prStatus")
|
|
826
|
+
def pr_status(self) -> str:
|
|
827
|
+
"""
|
|
828
|
+
The status of the Pull Request submitted against the users repository.
|
|
829
|
+
"""
|
|
830
|
+
return pulumi.get(self, "pr_status")
|
|
831
|
+
|
|
832
|
+
@property
|
|
833
|
+
@pulumi.getter(name="prURL")
|
|
834
|
+
def pr_url(self) -> str:
|
|
835
|
+
"""
|
|
836
|
+
The URL to the Pull Request submitted against the users repository.
|
|
837
|
+
"""
|
|
838
|
+
return pulumi.get(self, "pr_url")
|
|
839
|
+
|
|
840
|
+
@property
|
|
841
|
+
@pulumi.getter(name="pullNumber")
|
|
842
|
+
def pull_number(self) -> int:
|
|
843
|
+
"""
|
|
844
|
+
The number associated with the submitted pull request.
|
|
845
|
+
"""
|
|
846
|
+
return pulumi.get(self, "pull_number")
|
|
847
|
+
|
|
848
|
+
@property
|
|
849
|
+
@pulumi.getter
|
|
850
|
+
def acr(self) -> Optional['outputs.ACRResponse']:
|
|
851
|
+
"""
|
|
852
|
+
Information on the azure container registry
|
|
853
|
+
"""
|
|
854
|
+
return pulumi.get(self, "acr")
|
|
855
|
+
|
|
856
|
+
@property
|
|
857
|
+
@pulumi.getter(name="aksResourceId")
|
|
858
|
+
def aks_resource_id(self) -> Optional[str]:
|
|
859
|
+
"""
|
|
860
|
+
The Azure Kubernetes Cluster Resource the application will be deployed to.
|
|
861
|
+
"""
|
|
862
|
+
return pulumi.get(self, "aks_resource_id")
|
|
863
|
+
|
|
864
|
+
@property
|
|
865
|
+
@pulumi.getter(name="branchName")
|
|
866
|
+
def branch_name(self) -> Optional[str]:
|
|
867
|
+
"""
|
|
868
|
+
Repository Branch Name
|
|
869
|
+
"""
|
|
870
|
+
return pulumi.get(self, "branch_name")
|
|
871
|
+
|
|
872
|
+
@property
|
|
873
|
+
@pulumi.getter(name="deploymentProperties")
|
|
874
|
+
def deployment_properties(self) -> Optional['outputs.DeploymentResponse']:
|
|
875
|
+
"""
|
|
876
|
+
Deployment details of the repository associated with the workflow.
|
|
877
|
+
"""
|
|
878
|
+
return pulumi.get(self, "deployment_properties")
|
|
879
|
+
|
|
880
|
+
@property
|
|
881
|
+
@pulumi.getter(name="dockerBuildContext")
|
|
882
|
+
def docker_build_context(self) -> Optional[str]:
|
|
883
|
+
"""
|
|
884
|
+
Path to Dockerfile Build Context within the repository.
|
|
885
|
+
"""
|
|
886
|
+
return pulumi.get(self, "docker_build_context")
|
|
887
|
+
|
|
888
|
+
@property
|
|
889
|
+
@pulumi.getter
|
|
890
|
+
def dockerfile(self) -> Optional[str]:
|
|
891
|
+
"""
|
|
892
|
+
Path to the Dockerfile within the repository.
|
|
893
|
+
"""
|
|
894
|
+
return pulumi.get(self, "dockerfile")
|
|
895
|
+
|
|
896
|
+
@property
|
|
897
|
+
@pulumi.getter(name="lastWorkflowRun")
|
|
898
|
+
def last_workflow_run(self) -> Optional['outputs.WorkflowRunResponse']:
|
|
899
|
+
return pulumi.get(self, "last_workflow_run")
|
|
900
|
+
|
|
901
|
+
@property
|
|
902
|
+
@pulumi.getter
|
|
903
|
+
def namespace(self) -> Optional[str]:
|
|
904
|
+
"""
|
|
905
|
+
Kubernetes namespace the application is deployed to.
|
|
906
|
+
"""
|
|
907
|
+
return pulumi.get(self, "namespace")
|
|
908
|
+
|
|
909
|
+
@property
|
|
910
|
+
@pulumi.getter(name="oidcCredentials")
|
|
911
|
+
def oidc_credentials(self) -> Optional['outputs.GitHubWorkflowProfileResponseOidcCredentials']:
|
|
912
|
+
"""
|
|
913
|
+
The fields needed for OIDC with GitHub.
|
|
914
|
+
"""
|
|
915
|
+
return pulumi.get(self, "oidc_credentials")
|
|
916
|
+
|
|
917
|
+
@property
|
|
918
|
+
@pulumi.getter(name="repositoryName")
|
|
919
|
+
def repository_name(self) -> Optional[str]:
|
|
920
|
+
"""
|
|
921
|
+
Repository Name
|
|
922
|
+
"""
|
|
923
|
+
return pulumi.get(self, "repository_name")
|
|
924
|
+
|
|
925
|
+
@property
|
|
926
|
+
@pulumi.getter(name="repositoryOwner")
|
|
927
|
+
def repository_owner(self) -> Optional[str]:
|
|
928
|
+
"""
|
|
929
|
+
Repository Owner
|
|
930
|
+
"""
|
|
931
|
+
return pulumi.get(self, "repository_owner")
|
|
932
|
+
|
|
933
|
+
|
|
934
|
+
@pulumi.output_type
|
|
935
|
+
class GitHubWorkflowProfileResponseOidcCredentials(dict):
|
|
936
|
+
"""
|
|
937
|
+
The fields needed for OIDC with GitHub.
|
|
938
|
+
"""
|
|
939
|
+
@staticmethod
|
|
940
|
+
def __key_warning(key: str):
|
|
941
|
+
suggest = None
|
|
942
|
+
if key == "azureClientId":
|
|
943
|
+
suggest = "azure_client_id"
|
|
944
|
+
elif key == "azureTenantId":
|
|
945
|
+
suggest = "azure_tenant_id"
|
|
946
|
+
|
|
947
|
+
if suggest:
|
|
948
|
+
pulumi.log.warn(f"Key '{key}' not found in GitHubWorkflowProfileResponseOidcCredentials. Access the value via the '{suggest}' property getter instead.")
|
|
949
|
+
|
|
950
|
+
def __getitem__(self, key: str) -> Any:
|
|
951
|
+
GitHubWorkflowProfileResponseOidcCredentials.__key_warning(key)
|
|
952
|
+
return super().__getitem__(key)
|
|
953
|
+
|
|
954
|
+
def get(self, key: str, default = None) -> Any:
|
|
955
|
+
GitHubWorkflowProfileResponseOidcCredentials.__key_warning(key)
|
|
956
|
+
return super().get(key, default)
|
|
957
|
+
|
|
958
|
+
def __init__(__self__, *,
|
|
959
|
+
azure_client_id: Optional[str] = None,
|
|
960
|
+
azure_tenant_id: Optional[str] = None):
|
|
961
|
+
"""
|
|
962
|
+
The fields needed for OIDC with GitHub.
|
|
963
|
+
:param str azure_client_id: Azure Application Client ID
|
|
964
|
+
:param str azure_tenant_id: Azure Directory (tenant) ID
|
|
965
|
+
"""
|
|
966
|
+
if azure_client_id is not None:
|
|
967
|
+
pulumi.set(__self__, "azure_client_id", azure_client_id)
|
|
968
|
+
if azure_tenant_id is not None:
|
|
969
|
+
pulumi.set(__self__, "azure_tenant_id", azure_tenant_id)
|
|
970
|
+
|
|
971
|
+
@property
|
|
972
|
+
@pulumi.getter(name="azureClientId")
|
|
973
|
+
def azure_client_id(self) -> Optional[str]:
|
|
974
|
+
"""
|
|
975
|
+
Azure Application Client ID
|
|
976
|
+
"""
|
|
977
|
+
return pulumi.get(self, "azure_client_id")
|
|
978
|
+
|
|
979
|
+
@property
|
|
980
|
+
@pulumi.getter(name="azureTenantId")
|
|
981
|
+
def azure_tenant_id(self) -> Optional[str]:
|
|
982
|
+
"""
|
|
983
|
+
Azure Directory (tenant) ID
|
|
984
|
+
"""
|
|
985
|
+
return pulumi.get(self, "azure_tenant_id")
|
|
986
|
+
|
|
987
|
+
|
|
988
|
+
@pulumi.output_type
|
|
989
|
+
class IacTemplateDetailsResponse(dict):
|
|
990
|
+
@staticmethod
|
|
991
|
+
def __key_warning(key: str):
|
|
992
|
+
suggest = None
|
|
993
|
+
if key == "namingConvention":
|
|
994
|
+
suggest = "naming_convention"
|
|
995
|
+
elif key == "productName":
|
|
996
|
+
suggest = "product_name"
|
|
997
|
+
|
|
998
|
+
if suggest:
|
|
999
|
+
pulumi.log.warn(f"Key '{key}' not found in IacTemplateDetailsResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1000
|
+
|
|
1001
|
+
def __getitem__(self, key: str) -> Any:
|
|
1002
|
+
IacTemplateDetailsResponse.__key_warning(key)
|
|
1003
|
+
return super().__getitem__(key)
|
|
1004
|
+
|
|
1005
|
+
def get(self, key: str, default = None) -> Any:
|
|
1006
|
+
IacTemplateDetailsResponse.__key_warning(key)
|
|
1007
|
+
return super().get(key, default)
|
|
1008
|
+
|
|
1009
|
+
def __init__(__self__, *,
|
|
1010
|
+
count: Optional[int] = None,
|
|
1011
|
+
naming_convention: Optional[str] = None,
|
|
1012
|
+
product_name: Optional[str] = None):
|
|
1013
|
+
"""
|
|
1014
|
+
:param int count: Count of the product
|
|
1015
|
+
:param str naming_convention: Naming convention of this product
|
|
1016
|
+
:param str product_name: The name of the products.
|
|
1017
|
+
"""
|
|
1018
|
+
if count is not None:
|
|
1019
|
+
pulumi.set(__self__, "count", count)
|
|
1020
|
+
if naming_convention is not None:
|
|
1021
|
+
pulumi.set(__self__, "naming_convention", naming_convention)
|
|
1022
|
+
if product_name is not None:
|
|
1023
|
+
pulumi.set(__self__, "product_name", product_name)
|
|
1024
|
+
|
|
1025
|
+
@property
|
|
1026
|
+
@pulumi.getter
|
|
1027
|
+
def count(self) -> Optional[int]:
|
|
1028
|
+
"""
|
|
1029
|
+
Count of the product
|
|
1030
|
+
"""
|
|
1031
|
+
return pulumi.get(self, "count")
|
|
1032
|
+
|
|
1033
|
+
@property
|
|
1034
|
+
@pulumi.getter(name="namingConvention")
|
|
1035
|
+
def naming_convention(self) -> Optional[str]:
|
|
1036
|
+
"""
|
|
1037
|
+
Naming convention of this product
|
|
1038
|
+
"""
|
|
1039
|
+
return pulumi.get(self, "naming_convention")
|
|
1040
|
+
|
|
1041
|
+
@property
|
|
1042
|
+
@pulumi.getter(name="productName")
|
|
1043
|
+
def product_name(self) -> Optional[str]:
|
|
1044
|
+
"""
|
|
1045
|
+
The name of the products.
|
|
1046
|
+
"""
|
|
1047
|
+
return pulumi.get(self, "product_name")
|
|
1048
|
+
|
|
1049
|
+
|
|
1050
|
+
@pulumi.output_type
|
|
1051
|
+
class IacTemplatePropertiesResponse(dict):
|
|
1052
|
+
"""
|
|
1053
|
+
Properties of a IacTemplate.
|
|
1054
|
+
"""
|
|
1055
|
+
@staticmethod
|
|
1056
|
+
def __key_warning(key: str):
|
|
1057
|
+
suggest = None
|
|
1058
|
+
if key == "quickStartTemplateType":
|
|
1059
|
+
suggest = "quick_start_template_type"
|
|
1060
|
+
elif key == "instanceName":
|
|
1061
|
+
suggest = "instance_name"
|
|
1062
|
+
elif key == "instanceStage":
|
|
1063
|
+
suggest = "instance_stage"
|
|
1064
|
+
elif key == "sourceResourceId":
|
|
1065
|
+
suggest = "source_resource_id"
|
|
1066
|
+
elif key == "templateDetails":
|
|
1067
|
+
suggest = "template_details"
|
|
1068
|
+
elif key == "templateName":
|
|
1069
|
+
suggest = "template_name"
|
|
1070
|
+
|
|
1071
|
+
if suggest:
|
|
1072
|
+
pulumi.log.warn(f"Key '{key}' not found in IacTemplatePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1073
|
+
|
|
1074
|
+
def __getitem__(self, key: str) -> Any:
|
|
1075
|
+
IacTemplatePropertiesResponse.__key_warning(key)
|
|
1076
|
+
return super().__getitem__(key)
|
|
1077
|
+
|
|
1078
|
+
def get(self, key: str, default = None) -> Any:
|
|
1079
|
+
IacTemplatePropertiesResponse.__key_warning(key)
|
|
1080
|
+
return super().get(key, default)
|
|
1081
|
+
|
|
1082
|
+
def __init__(__self__, *,
|
|
1083
|
+
quick_start_template_type: str,
|
|
1084
|
+
instance_name: Optional[str] = None,
|
|
1085
|
+
instance_stage: Optional[str] = None,
|
|
1086
|
+
source_resource_id: Optional[str] = None,
|
|
1087
|
+
template_details: Optional[Sequence['outputs.IacTemplateDetailsResponse']] = None,
|
|
1088
|
+
template_name: Optional[str] = None):
|
|
1089
|
+
"""
|
|
1090
|
+
Properties of a IacTemplate.
|
|
1091
|
+
:param str quick_start_template_type: Determines the authorization status of requests.
|
|
1092
|
+
:param str instance_name: the sample instance name of the template
|
|
1093
|
+
:param str instance_stage: the source stage of the template
|
|
1094
|
+
:param str source_resource_id: the source store of the template
|
|
1095
|
+
:param str template_name: Template Name
|
|
1096
|
+
"""
|
|
1097
|
+
pulumi.set(__self__, "quick_start_template_type", quick_start_template_type)
|
|
1098
|
+
if instance_name is not None:
|
|
1099
|
+
pulumi.set(__self__, "instance_name", instance_name)
|
|
1100
|
+
if instance_stage is not None:
|
|
1101
|
+
pulumi.set(__self__, "instance_stage", instance_stage)
|
|
1102
|
+
if source_resource_id is not None:
|
|
1103
|
+
pulumi.set(__self__, "source_resource_id", source_resource_id)
|
|
1104
|
+
if template_details is not None:
|
|
1105
|
+
pulumi.set(__self__, "template_details", template_details)
|
|
1106
|
+
if template_name is not None:
|
|
1107
|
+
pulumi.set(__self__, "template_name", template_name)
|
|
1108
|
+
|
|
1109
|
+
@property
|
|
1110
|
+
@pulumi.getter(name="quickStartTemplateType")
|
|
1111
|
+
def quick_start_template_type(self) -> str:
|
|
1112
|
+
"""
|
|
1113
|
+
Determines the authorization status of requests.
|
|
1114
|
+
"""
|
|
1115
|
+
return pulumi.get(self, "quick_start_template_type")
|
|
1116
|
+
|
|
1117
|
+
@property
|
|
1118
|
+
@pulumi.getter(name="instanceName")
|
|
1119
|
+
def instance_name(self) -> Optional[str]:
|
|
1120
|
+
"""
|
|
1121
|
+
the sample instance name of the template
|
|
1122
|
+
"""
|
|
1123
|
+
return pulumi.get(self, "instance_name")
|
|
1124
|
+
|
|
1125
|
+
@property
|
|
1126
|
+
@pulumi.getter(name="instanceStage")
|
|
1127
|
+
def instance_stage(self) -> Optional[str]:
|
|
1128
|
+
"""
|
|
1129
|
+
the source stage of the template
|
|
1130
|
+
"""
|
|
1131
|
+
return pulumi.get(self, "instance_stage")
|
|
1132
|
+
|
|
1133
|
+
@property
|
|
1134
|
+
@pulumi.getter(name="sourceResourceId")
|
|
1135
|
+
def source_resource_id(self) -> Optional[str]:
|
|
1136
|
+
"""
|
|
1137
|
+
the source store of the template
|
|
1138
|
+
"""
|
|
1139
|
+
return pulumi.get(self, "source_resource_id")
|
|
1140
|
+
|
|
1141
|
+
@property
|
|
1142
|
+
@pulumi.getter(name="templateDetails")
|
|
1143
|
+
def template_details(self) -> Optional[Sequence['outputs.IacTemplateDetailsResponse']]:
|
|
1144
|
+
return pulumi.get(self, "template_details")
|
|
1145
|
+
|
|
1146
|
+
@property
|
|
1147
|
+
@pulumi.getter(name="templateName")
|
|
1148
|
+
def template_name(self) -> Optional[str]:
|
|
1149
|
+
"""
|
|
1150
|
+
Template Name
|
|
1151
|
+
"""
|
|
1152
|
+
return pulumi.get(self, "template_name")
|
|
1153
|
+
|
|
1154
|
+
|
|
1155
|
+
@pulumi.output_type
|
|
1156
|
+
class PullRequestResponse(dict):
|
|
1157
|
+
"""
|
|
1158
|
+
Details of the pull request containing the workflow.
|
|
1159
|
+
"""
|
|
1160
|
+
@staticmethod
|
|
1161
|
+
def __key_warning(key: str):
|
|
1162
|
+
suggest = None
|
|
1163
|
+
if key == "prStatus":
|
|
1164
|
+
suggest = "pr_status"
|
|
1165
|
+
elif key == "prURL":
|
|
1166
|
+
suggest = "pr_url"
|
|
1167
|
+
elif key == "pullNumber":
|
|
1168
|
+
suggest = "pull_number"
|
|
1169
|
+
|
|
1170
|
+
if suggest:
|
|
1171
|
+
pulumi.log.warn(f"Key '{key}' not found in PullRequestResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1172
|
+
|
|
1173
|
+
def __getitem__(self, key: str) -> Any:
|
|
1174
|
+
PullRequestResponse.__key_warning(key)
|
|
1175
|
+
return super().__getitem__(key)
|
|
1176
|
+
|
|
1177
|
+
def get(self, key: str, default = None) -> Any:
|
|
1178
|
+
PullRequestResponse.__key_warning(key)
|
|
1179
|
+
return super().get(key, default)
|
|
1180
|
+
|
|
1181
|
+
def __init__(__self__, *,
|
|
1182
|
+
pr_status: str,
|
|
1183
|
+
pr_url: str,
|
|
1184
|
+
pull_number: int):
|
|
1185
|
+
"""
|
|
1186
|
+
Details of the pull request containing the workflow.
|
|
1187
|
+
:param str pr_status: The status of the Pull Request submitted against the users repository.
|
|
1188
|
+
:param str pr_url: The URL to the Pull Request submitted against the users repository.
|
|
1189
|
+
:param int pull_number: The number associated with the submitted pull request.
|
|
1190
|
+
"""
|
|
1191
|
+
pulumi.set(__self__, "pr_status", pr_status)
|
|
1192
|
+
pulumi.set(__self__, "pr_url", pr_url)
|
|
1193
|
+
pulumi.set(__self__, "pull_number", pull_number)
|
|
1194
|
+
|
|
1195
|
+
@property
|
|
1196
|
+
@pulumi.getter(name="prStatus")
|
|
1197
|
+
def pr_status(self) -> str:
|
|
1198
|
+
"""
|
|
1199
|
+
The status of the Pull Request submitted against the users repository.
|
|
1200
|
+
"""
|
|
1201
|
+
return pulumi.get(self, "pr_status")
|
|
1202
|
+
|
|
1203
|
+
@property
|
|
1204
|
+
@pulumi.getter(name="prURL")
|
|
1205
|
+
def pr_url(self) -> str:
|
|
1206
|
+
"""
|
|
1207
|
+
The URL to the Pull Request submitted against the users repository.
|
|
1208
|
+
"""
|
|
1209
|
+
return pulumi.get(self, "pr_url")
|
|
1210
|
+
|
|
1211
|
+
@property
|
|
1212
|
+
@pulumi.getter(name="pullNumber")
|
|
1213
|
+
def pull_number(self) -> int:
|
|
1214
|
+
"""
|
|
1215
|
+
The number associated with the submitted pull request.
|
|
1216
|
+
"""
|
|
1217
|
+
return pulumi.get(self, "pull_number")
|
|
1218
|
+
|
|
1219
|
+
|
|
1220
|
+
@pulumi.output_type
|
|
1221
|
+
class StagePropertiesResponse(dict):
|
|
1222
|
+
"""
|
|
1223
|
+
Properties of a Stage.
|
|
1224
|
+
"""
|
|
1225
|
+
@staticmethod
|
|
1226
|
+
def __key_warning(key: str):
|
|
1227
|
+
suggest = None
|
|
1228
|
+
if key == "gitEnvironment":
|
|
1229
|
+
suggest = "git_environment"
|
|
1230
|
+
elif key == "stageName":
|
|
1231
|
+
suggest = "stage_name"
|
|
1232
|
+
|
|
1233
|
+
if suggest:
|
|
1234
|
+
pulumi.log.warn(f"Key '{key}' not found in StagePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1235
|
+
|
|
1236
|
+
def __getitem__(self, key: str) -> Any:
|
|
1237
|
+
StagePropertiesResponse.__key_warning(key)
|
|
1238
|
+
return super().__getitem__(key)
|
|
1239
|
+
|
|
1240
|
+
def get(self, key: str, default = None) -> Any:
|
|
1241
|
+
StagePropertiesResponse.__key_warning(key)
|
|
1242
|
+
return super().get(key, default)
|
|
1243
|
+
|
|
1244
|
+
def __init__(__self__, *,
|
|
1245
|
+
dependencies: Optional[Sequence[str]] = None,
|
|
1246
|
+
git_environment: Optional[str] = None,
|
|
1247
|
+
stage_name: Optional[str] = None):
|
|
1248
|
+
"""
|
|
1249
|
+
Properties of a Stage.
|
|
1250
|
+
:param str stage_name: Stage Name
|
|
1251
|
+
"""
|
|
1252
|
+
if dependencies is not None:
|
|
1253
|
+
pulumi.set(__self__, "dependencies", dependencies)
|
|
1254
|
+
if git_environment is not None:
|
|
1255
|
+
pulumi.set(__self__, "git_environment", git_environment)
|
|
1256
|
+
if stage_name is not None:
|
|
1257
|
+
pulumi.set(__self__, "stage_name", stage_name)
|
|
1258
|
+
|
|
1259
|
+
@property
|
|
1260
|
+
@pulumi.getter
|
|
1261
|
+
def dependencies(self) -> Optional[Sequence[str]]:
|
|
1262
|
+
return pulumi.get(self, "dependencies")
|
|
1263
|
+
|
|
1264
|
+
@property
|
|
1265
|
+
@pulumi.getter(name="gitEnvironment")
|
|
1266
|
+
def git_environment(self) -> Optional[str]:
|
|
1267
|
+
return pulumi.get(self, "git_environment")
|
|
1268
|
+
|
|
1269
|
+
@property
|
|
1270
|
+
@pulumi.getter(name="stageName")
|
|
1271
|
+
def stage_name(self) -> Optional[str]:
|
|
1272
|
+
"""
|
|
1273
|
+
Stage Name
|
|
1274
|
+
"""
|
|
1275
|
+
return pulumi.get(self, "stage_name")
|
|
1276
|
+
|
|
1277
|
+
|
|
1278
|
+
@pulumi.output_type
|
|
1279
|
+
class SystemDataResponse(dict):
|
|
1280
|
+
"""
|
|
1281
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
1282
|
+
"""
|
|
1283
|
+
@staticmethod
|
|
1284
|
+
def __key_warning(key: str):
|
|
1285
|
+
suggest = None
|
|
1286
|
+
if key == "createdAt":
|
|
1287
|
+
suggest = "created_at"
|
|
1288
|
+
elif key == "createdBy":
|
|
1289
|
+
suggest = "created_by"
|
|
1290
|
+
elif key == "createdByType":
|
|
1291
|
+
suggest = "created_by_type"
|
|
1292
|
+
elif key == "lastModifiedAt":
|
|
1293
|
+
suggest = "last_modified_at"
|
|
1294
|
+
elif key == "lastModifiedBy":
|
|
1295
|
+
suggest = "last_modified_by"
|
|
1296
|
+
elif key == "lastModifiedByType":
|
|
1297
|
+
suggest = "last_modified_by_type"
|
|
1298
|
+
|
|
1299
|
+
if suggest:
|
|
1300
|
+
pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1301
|
+
|
|
1302
|
+
def __getitem__(self, key: str) -> Any:
|
|
1303
|
+
SystemDataResponse.__key_warning(key)
|
|
1304
|
+
return super().__getitem__(key)
|
|
1305
|
+
|
|
1306
|
+
def get(self, key: str, default = None) -> Any:
|
|
1307
|
+
SystemDataResponse.__key_warning(key)
|
|
1308
|
+
return super().get(key, default)
|
|
1309
|
+
|
|
1310
|
+
def __init__(__self__, *,
|
|
1311
|
+
created_at: Optional[str] = None,
|
|
1312
|
+
created_by: Optional[str] = None,
|
|
1313
|
+
created_by_type: Optional[str] = None,
|
|
1314
|
+
last_modified_at: Optional[str] = None,
|
|
1315
|
+
last_modified_by: Optional[str] = None,
|
|
1316
|
+
last_modified_by_type: Optional[str] = None):
|
|
1317
|
+
"""
|
|
1318
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
1319
|
+
:param str created_at: The timestamp of resource creation (UTC).
|
|
1320
|
+
:param str created_by: The identity that created the resource.
|
|
1321
|
+
:param str created_by_type: The type of identity that created the resource.
|
|
1322
|
+
:param str last_modified_at: The timestamp of resource last modification (UTC)
|
|
1323
|
+
:param str last_modified_by: The identity that last modified the resource.
|
|
1324
|
+
:param str last_modified_by_type: The type of identity that last modified the resource.
|
|
1325
|
+
"""
|
|
1326
|
+
if created_at is not None:
|
|
1327
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
1328
|
+
if created_by is not None:
|
|
1329
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
1330
|
+
if created_by_type is not None:
|
|
1331
|
+
pulumi.set(__self__, "created_by_type", created_by_type)
|
|
1332
|
+
if last_modified_at is not None:
|
|
1333
|
+
pulumi.set(__self__, "last_modified_at", last_modified_at)
|
|
1334
|
+
if last_modified_by is not None:
|
|
1335
|
+
pulumi.set(__self__, "last_modified_by", last_modified_by)
|
|
1336
|
+
if last_modified_by_type is not None:
|
|
1337
|
+
pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
|
|
1338
|
+
|
|
1339
|
+
@property
|
|
1340
|
+
@pulumi.getter(name="createdAt")
|
|
1341
|
+
def created_at(self) -> Optional[str]:
|
|
1342
|
+
"""
|
|
1343
|
+
The timestamp of resource creation (UTC).
|
|
1344
|
+
"""
|
|
1345
|
+
return pulumi.get(self, "created_at")
|
|
1346
|
+
|
|
1347
|
+
@property
|
|
1348
|
+
@pulumi.getter(name="createdBy")
|
|
1349
|
+
def created_by(self) -> Optional[str]:
|
|
1350
|
+
"""
|
|
1351
|
+
The identity that created the resource.
|
|
1352
|
+
"""
|
|
1353
|
+
return pulumi.get(self, "created_by")
|
|
1354
|
+
|
|
1355
|
+
@property
|
|
1356
|
+
@pulumi.getter(name="createdByType")
|
|
1357
|
+
def created_by_type(self) -> Optional[str]:
|
|
1358
|
+
"""
|
|
1359
|
+
The type of identity that created the resource.
|
|
1360
|
+
"""
|
|
1361
|
+
return pulumi.get(self, "created_by_type")
|
|
1362
|
+
|
|
1363
|
+
@property
|
|
1364
|
+
@pulumi.getter(name="lastModifiedAt")
|
|
1365
|
+
def last_modified_at(self) -> Optional[str]:
|
|
1366
|
+
"""
|
|
1367
|
+
The timestamp of resource last modification (UTC)
|
|
1368
|
+
"""
|
|
1369
|
+
return pulumi.get(self, "last_modified_at")
|
|
1370
|
+
|
|
1371
|
+
@property
|
|
1372
|
+
@pulumi.getter(name="lastModifiedBy")
|
|
1373
|
+
def last_modified_by(self) -> Optional[str]:
|
|
1374
|
+
"""
|
|
1375
|
+
The identity that last modified the resource.
|
|
1376
|
+
"""
|
|
1377
|
+
return pulumi.get(self, "last_modified_by")
|
|
1378
|
+
|
|
1379
|
+
@property
|
|
1380
|
+
@pulumi.getter(name="lastModifiedByType")
|
|
1381
|
+
def last_modified_by_type(self) -> Optional[str]:
|
|
1382
|
+
"""
|
|
1383
|
+
The type of identity that last modified the resource.
|
|
1384
|
+
"""
|
|
1385
|
+
return pulumi.get(self, "last_modified_by_type")
|
|
1386
|
+
|
|
1387
|
+
|
|
1388
|
+
@pulumi.output_type
|
|
1389
|
+
class WorkflowPropertiesResponse(dict):
|
|
1390
|
+
"""
|
|
1391
|
+
Workflow properties
|
|
1392
|
+
"""
|
|
1393
|
+
@staticmethod
|
|
1394
|
+
def __key_warning(key: str):
|
|
1395
|
+
suggest = None
|
|
1396
|
+
if key == "artifactGenerationProperties":
|
|
1397
|
+
suggest = "artifact_generation_properties"
|
|
1398
|
+
elif key == "azurePipelineProfile":
|
|
1399
|
+
suggest = "azure_pipeline_profile"
|
|
1400
|
+
elif key == "githubWorkflowProfile":
|
|
1401
|
+
suggest = "github_workflow_profile"
|
|
1402
|
+
|
|
1403
|
+
if suggest:
|
|
1404
|
+
pulumi.log.warn(f"Key '{key}' not found in WorkflowPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1405
|
+
|
|
1406
|
+
def __getitem__(self, key: str) -> Any:
|
|
1407
|
+
WorkflowPropertiesResponse.__key_warning(key)
|
|
1408
|
+
return super().__getitem__(key)
|
|
1409
|
+
|
|
1410
|
+
def get(self, key: str, default = None) -> Any:
|
|
1411
|
+
WorkflowPropertiesResponse.__key_warning(key)
|
|
1412
|
+
return super().get(key, default)
|
|
1413
|
+
|
|
1414
|
+
def __init__(__self__, *,
|
|
1415
|
+
artifact_generation_properties: Optional['outputs.ArtifactGenerationPropertiesResponse'] = None,
|
|
1416
|
+
azure_pipeline_profile: Optional['outputs.AzurePipelineProfileResponse'] = None,
|
|
1417
|
+
github_workflow_profile: Optional['outputs.GitHubWorkflowProfileResponse'] = None):
|
|
1418
|
+
"""
|
|
1419
|
+
Workflow properties
|
|
1420
|
+
:param 'ArtifactGenerationPropertiesResponse' artifact_generation_properties: Properties for generating artifacts like dockerfile and manifests.
|
|
1421
|
+
:param 'AzurePipelineProfileResponse' azure_pipeline_profile: Profile of an azure pipeline.
|
|
1422
|
+
:param 'GitHubWorkflowProfileResponse' github_workflow_profile: Profile of a github workflow.
|
|
1423
|
+
"""
|
|
1424
|
+
if artifact_generation_properties is not None:
|
|
1425
|
+
pulumi.set(__self__, "artifact_generation_properties", artifact_generation_properties)
|
|
1426
|
+
if azure_pipeline_profile is not None:
|
|
1427
|
+
pulumi.set(__self__, "azure_pipeline_profile", azure_pipeline_profile)
|
|
1428
|
+
if github_workflow_profile is not None:
|
|
1429
|
+
pulumi.set(__self__, "github_workflow_profile", github_workflow_profile)
|
|
1430
|
+
|
|
1431
|
+
@property
|
|
1432
|
+
@pulumi.getter(name="artifactGenerationProperties")
|
|
1433
|
+
def artifact_generation_properties(self) -> Optional['outputs.ArtifactGenerationPropertiesResponse']:
|
|
1434
|
+
"""
|
|
1435
|
+
Properties for generating artifacts like dockerfile and manifests.
|
|
1436
|
+
"""
|
|
1437
|
+
return pulumi.get(self, "artifact_generation_properties")
|
|
1438
|
+
|
|
1439
|
+
@property
|
|
1440
|
+
@pulumi.getter(name="azurePipelineProfile")
|
|
1441
|
+
def azure_pipeline_profile(self) -> Optional['outputs.AzurePipelineProfileResponse']:
|
|
1442
|
+
"""
|
|
1443
|
+
Profile of an azure pipeline.
|
|
1444
|
+
"""
|
|
1445
|
+
return pulumi.get(self, "azure_pipeline_profile")
|
|
1446
|
+
|
|
1447
|
+
@property
|
|
1448
|
+
@pulumi.getter(name="githubWorkflowProfile")
|
|
1449
|
+
def github_workflow_profile(self) -> Optional['outputs.GitHubWorkflowProfileResponse']:
|
|
1450
|
+
"""
|
|
1451
|
+
Profile of a github workflow.
|
|
1452
|
+
"""
|
|
1453
|
+
return pulumi.get(self, "github_workflow_profile")
|
|
1454
|
+
|
|
1455
|
+
|
|
1456
|
+
@pulumi.output_type
|
|
1457
|
+
class WorkflowRunResponse(dict):
|
|
1458
|
+
@staticmethod
|
|
1459
|
+
def __key_warning(key: str):
|
|
1460
|
+
suggest = None
|
|
1461
|
+
if key == "lastRunAt":
|
|
1462
|
+
suggest = "last_run_at"
|
|
1463
|
+
elif key == "workflowRunStatus":
|
|
1464
|
+
suggest = "workflow_run_status"
|
|
1465
|
+
elif key == "workflowRunURL":
|
|
1466
|
+
suggest = "workflow_run_url"
|
|
1467
|
+
|
|
1468
|
+
if suggest:
|
|
1469
|
+
pulumi.log.warn(f"Key '{key}' not found in WorkflowRunResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1470
|
+
|
|
1471
|
+
def __getitem__(self, key: str) -> Any:
|
|
1472
|
+
WorkflowRunResponse.__key_warning(key)
|
|
1473
|
+
return super().__getitem__(key)
|
|
1474
|
+
|
|
1475
|
+
def get(self, key: str, default = None) -> Any:
|
|
1476
|
+
WorkflowRunResponse.__key_warning(key)
|
|
1477
|
+
return super().get(key, default)
|
|
1478
|
+
|
|
1479
|
+
def __init__(__self__, *,
|
|
1480
|
+
last_run_at: str,
|
|
1481
|
+
succeeded: bool,
|
|
1482
|
+
workflow_run_status: str,
|
|
1483
|
+
workflow_run_url: str):
|
|
1484
|
+
"""
|
|
1485
|
+
:param str last_run_at: The timestamp of the last workflow run.
|
|
1486
|
+
:param bool succeeded: Describes if the workflow run succeeded.
|
|
1487
|
+
:param str workflow_run_status: Describes the status of the workflow run
|
|
1488
|
+
:param str workflow_run_url: URL to the run of the workflow.
|
|
1489
|
+
"""
|
|
1490
|
+
pulumi.set(__self__, "last_run_at", last_run_at)
|
|
1491
|
+
pulumi.set(__self__, "succeeded", succeeded)
|
|
1492
|
+
pulumi.set(__self__, "workflow_run_status", workflow_run_status)
|
|
1493
|
+
pulumi.set(__self__, "workflow_run_url", workflow_run_url)
|
|
1494
|
+
|
|
1495
|
+
@property
|
|
1496
|
+
@pulumi.getter(name="lastRunAt")
|
|
1497
|
+
def last_run_at(self) -> str:
|
|
1498
|
+
"""
|
|
1499
|
+
The timestamp of the last workflow run.
|
|
1500
|
+
"""
|
|
1501
|
+
return pulumi.get(self, "last_run_at")
|
|
1502
|
+
|
|
1503
|
+
@property
|
|
1504
|
+
@pulumi.getter
|
|
1505
|
+
def succeeded(self) -> bool:
|
|
1506
|
+
"""
|
|
1507
|
+
Describes if the workflow run succeeded.
|
|
1508
|
+
"""
|
|
1509
|
+
return pulumi.get(self, "succeeded")
|
|
1510
|
+
|
|
1511
|
+
@property
|
|
1512
|
+
@pulumi.getter(name="workflowRunStatus")
|
|
1513
|
+
def workflow_run_status(self) -> str:
|
|
1514
|
+
"""
|
|
1515
|
+
Describes the status of the workflow run
|
|
1516
|
+
"""
|
|
1517
|
+
return pulumi.get(self, "workflow_run_status")
|
|
1518
|
+
|
|
1519
|
+
@property
|
|
1520
|
+
@pulumi.getter(name="workflowRunURL")
|
|
1521
|
+
def workflow_run_url(self) -> str:
|
|
1522
|
+
"""
|
|
1523
|
+
URL to the run of the workflow.
|
|
1524
|
+
"""
|
|
1525
|
+
return pulumi.get(self, "workflow_run_url")
|
|
1526
|
+
|
|
1527
|
+
|