pulumi-azure-native 2.47.0a1719213276__py3-none-any.whl → 2.47.0a1719232402__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 +239 -4
- pulumi_azure_native/_utilities.py +35 -0
- pulumi_azure_native/app/__init__.py +10 -0
- pulumi_azure_native/app/_enums.py +46 -0
- pulumi_azure_native/app/_inputs.py +490 -0
- pulumi_azure_native/app/app_resiliency.py +3 -3
- pulumi_azure_native/app/build.py +3 -3
- pulumi_azure_native/app/builder.py +3 -3
- pulumi_azure_native/app/certificate.py +3 -3
- pulumi_azure_native/app/connected_environment.py +3 -3
- pulumi_azure_native/app/connected_environments_certificate.py +3 -3
- pulumi_azure_native/app/connected_environments_dapr_component.py +3 -3
- pulumi_azure_native/app/connected_environments_storage.py +3 -3
- pulumi_azure_native/app/container_app.py +3 -3
- pulumi_azure_native/app/container_apps_auth_config.py +3 -3
- pulumi_azure_native/app/container_apps_session_pool.py +488 -0
- pulumi_azure_native/app/container_apps_source_control.py +3 -3
- pulumi_azure_native/app/dapr_component.py +3 -3
- pulumi_azure_native/app/dapr_component_resiliency_policy.py +3 -3
- pulumi_azure_native/app/dapr_subscription.py +3 -3
- pulumi_azure_native/app/dot_net_component.py +5 -1
- pulumi_azure_native/app/get_app_resiliency.py +2 -2
- pulumi_azure_native/app/get_build.py +2 -2
- pulumi_azure_native/app/get_builder.py +2 -2
- pulumi_azure_native/app/get_certificate.py +2 -2
- pulumi_azure_native/app/get_connected_environment.py +2 -2
- pulumi_azure_native/app/get_connected_environments_certificate.py +2 -2
- pulumi_azure_native/app/get_connected_environments_dapr_component.py +2 -2
- pulumi_azure_native/app/get_connected_environments_storage.py +2 -2
- pulumi_azure_native/app/get_container_app.py +2 -2
- pulumi_azure_native/app/get_container_app_auth_token.py +2 -2
- pulumi_azure_native/app/get_container_apps_auth_config.py +2 -2
- pulumi_azure_native/app/get_container_apps_session_pool.py +289 -0
- pulumi_azure_native/app/get_container_apps_source_control.py +2 -2
- pulumi_azure_native/app/get_custom_domain_verification_id.py +2 -2
- pulumi_azure_native/app/get_dapr_component.py +2 -2
- pulumi_azure_native/app/get_dapr_component_resiliency_policy.py +2 -2
- pulumi_azure_native/app/get_dapr_subscription.py +2 -2
- pulumi_azure_native/app/get_dot_net_component.py +4 -0
- pulumi_azure_native/app/get_java_component.py +4 -0
- pulumi_azure_native/app/get_job.py +2 -2
- pulumi_azure_native/app/get_logic_app.py +125 -0
- pulumi_azure_native/app/get_managed_certificate.py +2 -2
- pulumi_azure_native/app/get_managed_environment.py +2 -2
- pulumi_azure_native/app/get_managed_environment_auth_token.py +2 -2
- pulumi_azure_native/app/get_managed_environment_private_endpoint_connection.py +177 -0
- pulumi_azure_native/app/get_managed_environments_storage.py +2 -2
- pulumi_azure_native/app/java_component.py +5 -1
- pulumi_azure_native/app/job.py +3 -3
- pulumi_azure_native/app/list_build_auth_token.py +2 -2
- pulumi_azure_native/app/list_connected_environments_dapr_component_secrets.py +2 -2
- pulumi_azure_native/app/list_container_app_custom_host_name_analysis.py +2 -2
- pulumi_azure_native/app/list_container_app_secrets.py +2 -2
- pulumi_azure_native/app/list_dapr_component_secrets.py +2 -2
- pulumi_azure_native/app/list_job_secrets.py +2 -2
- pulumi_azure_native/app/list_logic_app_workflows_connections.py +151 -0
- pulumi_azure_native/app/logic_app.py +187 -0
- pulumi_azure_native/app/managed_certificate.py +3 -3
- pulumi_azure_native/app/managed_environment.py +3 -3
- pulumi_azure_native/app/managed_environment_private_endpoint_connection.py +249 -0
- pulumi_azure_native/app/managed_environments_storage.py +3 -3
- pulumi_azure_native/app/outputs.py +730 -0
- pulumi_azure_native/app/v20220101preview/certificate.py +1 -1
- pulumi_azure_native/app/v20220101preview/container_app.py +1 -1
- pulumi_azure_native/app/v20220101preview/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20220101preview/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20220101preview/dapr_component.py +1 -1
- pulumi_azure_native/app/v20220101preview/managed_environment.py +1 -1
- pulumi_azure_native/app/v20220101preview/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20221001/certificate.py +1 -1
- pulumi_azure_native/app/v20221001/connected_environment.py +1 -1
- pulumi_azure_native/app/v20221001/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20221001/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20221001/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20221001/container_app.py +1 -1
- pulumi_azure_native/app/v20221001/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20221001/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20221001/dapr_component.py +1 -1
- pulumi_azure_native/app/v20221001/managed_environment.py +1 -1
- pulumi_azure_native/app/v20221001/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230401preview/certificate.py +1 -1
- pulumi_azure_native/app/v20230401preview/connected_environment.py +1 -1
- pulumi_azure_native/app/v20230401preview/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20230401preview/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20230401preview/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230401preview/container_app.py +1 -1
- pulumi_azure_native/app/v20230401preview/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20230401preview/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20230401preview/dapr_component.py +1 -1
- pulumi_azure_native/app/v20230401preview/job.py +1 -1
- pulumi_azure_native/app/v20230401preview/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20230401preview/managed_environment.py +1 -1
- pulumi_azure_native/app/v20230401preview/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230501/certificate.py +1 -1
- pulumi_azure_native/app/v20230501/connected_environment.py +1 -1
- pulumi_azure_native/app/v20230501/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20230501/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20230501/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230501/container_app.py +1 -1
- pulumi_azure_native/app/v20230501/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20230501/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20230501/dapr_component.py +1 -1
- pulumi_azure_native/app/v20230501/job.py +1 -1
- pulumi_azure_native/app/v20230501/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20230501/managed_environment.py +1 -1
- pulumi_azure_native/app/v20230501/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230502preview/certificate.py +1 -1
- pulumi_azure_native/app/v20230502preview/connected_environment.py +1 -1
- pulumi_azure_native/app/v20230502preview/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20230502preview/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20230502preview/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230502preview/container_app.py +1 -1
- pulumi_azure_native/app/v20230502preview/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20230502preview/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20230502preview/dapr_component.py +1 -1
- pulumi_azure_native/app/v20230502preview/job.py +1 -1
- pulumi_azure_native/app/v20230502preview/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20230502preview/managed_environment.py +1 -1
- pulumi_azure_native/app/v20230502preview/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230801preview/app_resiliency.py +1 -1
- pulumi_azure_native/app/v20230801preview/build.py +1 -1
- pulumi_azure_native/app/v20230801preview/builder.py +1 -1
- pulumi_azure_native/app/v20230801preview/certificate.py +1 -1
- pulumi_azure_native/app/v20230801preview/connected_environment.py +1 -1
- pulumi_azure_native/app/v20230801preview/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20230801preview/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20230801preview/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230801preview/container_app.py +1 -1
- pulumi_azure_native/app/v20230801preview/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20230801preview/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20230801preview/dapr_component.py +1 -1
- pulumi_azure_native/app/v20230801preview/dapr_component_resiliency_policy.py +1 -1
- pulumi_azure_native/app/v20230801preview/dapr_subscription.py +1 -1
- pulumi_azure_native/app/v20230801preview/job.py +1 -1
- pulumi_azure_native/app/v20230801preview/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20230801preview/managed_environment.py +1 -1
- pulumi_azure_native/app/v20230801preview/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20231102preview/app_resiliency.py +1 -1
- pulumi_azure_native/app/v20231102preview/build.py +1 -1
- pulumi_azure_native/app/v20231102preview/builder.py +1 -1
- pulumi_azure_native/app/v20231102preview/certificate.py +1 -1
- pulumi_azure_native/app/v20231102preview/connected_environment.py +1 -1
- pulumi_azure_native/app/v20231102preview/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20231102preview/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20231102preview/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20231102preview/container_app.py +1 -1
- pulumi_azure_native/app/v20231102preview/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20231102preview/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20231102preview/dapr_component.py +1 -1
- pulumi_azure_native/app/v20231102preview/dapr_component_resiliency_policy.py +1 -1
- pulumi_azure_native/app/v20231102preview/dapr_subscription.py +1 -1
- pulumi_azure_native/app/v20231102preview/dot_net_component.py +1 -1
- pulumi_azure_native/app/v20231102preview/java_component.py +1 -1
- pulumi_azure_native/app/v20231102preview/job.py +1 -1
- pulumi_azure_native/app/v20231102preview/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20231102preview/managed_environment.py +1 -1
- pulumi_azure_native/app/v20231102preview/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20240202preview/__init__.py +66 -0
- pulumi_azure_native/app/v20240202preview/_enums.py +346 -0
- pulumi_azure_native/app/v20240202preview/_inputs.py +9269 -0
- pulumi_azure_native/app/v20240202preview/app_resiliency.py +359 -0
- pulumi_azure_native/app/v20240202preview/build.py +294 -0
- pulumi_azure_native/app/v20240202preview/builder.py +322 -0
- pulumi_azure_native/app/v20240202preview/certificate.py +274 -0
- pulumi_azure_native/app/v20240202preview/connected_environment.py +370 -0
- pulumi_azure_native/app/v20240202preview/connected_environments_certificate.py +274 -0
- pulumi_azure_native/app/v20240202preview/connected_environments_dapr_component.py +451 -0
- pulumi_azure_native/app/v20240202preview/connected_environments_storage.py +216 -0
- pulumi_azure_native/app/v20240202preview/container_app.py +584 -0
- pulumi_azure_native/app/v20240202preview/container_apps_auth_config.py +361 -0
- pulumi_azure_native/app/v20240202preview/container_apps_session_pool.py +486 -0
- pulumi_azure_native/app/v20240202preview/container_apps_source_control.py +291 -0
- pulumi_azure_native/app/v20240202preview/dapr_component.py +451 -0
- pulumi_azure_native/app/v20240202preview/dapr_component_resiliency_policy.py +264 -0
- pulumi_azure_native/app/v20240202preview/dapr_subscription.py +388 -0
- pulumi_azure_native/app/v20240202preview/dot_net_component.py +283 -0
- pulumi_azure_native/app/v20240202preview/get_app_resiliency.py +201 -0
- pulumi_azure_native/app/v20240202preview/get_build.py +214 -0
- pulumi_azure_native/app/v20240202preview/get_builder.py +196 -0
- pulumi_azure_native/app/v20240202preview/get_certificate.py +162 -0
- pulumi_azure_native/app/v20240202preview/get_connected_environment.py +235 -0
- pulumi_azure_native/app/v20240202preview/get_connected_environments_certificate.py +162 -0
- pulumi_azure_native/app/v20240202preview/get_connected_environments_dapr_component.py +240 -0
- pulumi_azure_native/app/v20240202preview/get_connected_environments_storage.py +136 -0
- pulumi_azure_native/app/v20240202preview/get_container_app.py +365 -0
- pulumi_azure_native/app/v20240202preview/get_container_app_auth_token.py +170 -0
- pulumi_azure_native/app/v20240202preview/get_container_apps_auth_config.py +201 -0
- pulumi_azure_native/app/v20240202preview/get_container_apps_session_pool.py +287 -0
- pulumi_azure_native/app/v20240202preview/get_container_apps_source_control.py +177 -0
- pulumi_azure_native/app/v20240202preview/get_custom_domain_verification_id.py +61 -0
- pulumi_azure_native/app/v20240202preview/get_dapr_component.py +240 -0
- pulumi_azure_native/app/v20240202preview/get_dapr_component_resiliency_policy.py +154 -0
- pulumi_azure_native/app/v20240202preview/get_dapr_subscription.py +214 -0
- pulumi_azure_native/app/v20240202preview/get_dot_net_component.py +175 -0
- pulumi_azure_native/app/v20240202preview/get_java_component.py +136 -0
- pulumi_azure_native/app/v20240202preview/get_job.py +261 -0
- pulumi_azure_native/app/v20240202preview/get_logic_app.py +123 -0
- pulumi_azure_native/app/v20240202preview/get_managed_certificate.py +162 -0
- pulumi_azure_native/app/v20240202preview/get_managed_environment.py +445 -0
- pulumi_azure_native/app/v20240202preview/get_managed_environment_auth_token.py +170 -0
- pulumi_azure_native/app/v20240202preview/get_managed_environment_private_endpoint_connection.py +175 -0
- pulumi_azure_native/app/v20240202preview/get_managed_environments_storage.py +136 -0
- pulumi_azure_native/app/v20240202preview/java_component.py +214 -0
- pulumi_azure_native/app/v20240202preview/job.py +428 -0
- pulumi_azure_native/app/v20240202preview/list_build_auth_token.py +96 -0
- pulumi_azure_native/app/v20240202preview/list_connected_environments_dapr_component_secrets.py +84 -0
- pulumi_azure_native/app/v20240202preview/list_container_app_custom_host_name_analysis.py +227 -0
- pulumi_azure_native/app/v20240202preview/list_container_app_secrets.py +79 -0
- pulumi_azure_native/app/v20240202preview/list_dapr_component_secrets.py +84 -0
- pulumi_azure_native/app/v20240202preview/list_job_secrets.py +79 -0
- pulumi_azure_native/app/v20240202preview/list_logic_app_workflows_connections.py +149 -0
- pulumi_azure_native/app/v20240202preview/logic_app.py +185 -0
- pulumi_azure_native/app/v20240202preview/managed_certificate.py +274 -0
- pulumi_azure_native/app/v20240202preview/managed_environment.py +747 -0
- pulumi_azure_native/app/v20240202preview/managed_environment_private_endpoint_connection.py +247 -0
- pulumi_azure_native/app/v20240202preview/managed_environments_storage.py +216 -0
- pulumi_azure_native/app/v20240202preview/outputs.py +11065 -0
- pulumi_azure_native/app/v20240301/certificate.py +1 -1
- pulumi_azure_native/app/v20240301/connected_environment.py +1 -1
- pulumi_azure_native/app/v20240301/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20240301/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20240301/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20240301/container_app.py +1 -1
- pulumi_azure_native/app/v20240301/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20240301/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20240301/dapr_component.py +1 -1
- pulumi_azure_native/app/v20240301/job.py +1 -1
- pulumi_azure_native/app/v20240301/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20240301/managed_environment.py +1 -1
- pulumi_azure_native/app/v20240301/managed_environments_storage.py +1 -1
- pulumi_azure_native/cdn/__init__.py +3 -0
- pulumi_azure_native/cdn/afd_custom_domain.py +3 -3
- pulumi_azure_native/cdn/afd_endpoint.py +3 -3
- pulumi_azure_native/cdn/afd_origin.py +3 -3
- pulumi_azure_native/cdn/afd_origin_group.py +3 -3
- pulumi_azure_native/cdn/custom_domain.py +3 -3
- pulumi_azure_native/cdn/endpoint.py +3 -3
- pulumi_azure_native/cdn/get_afd_custom_domain.py +2 -2
- pulumi_azure_native/cdn/get_afd_endpoint.py +2 -2
- pulumi_azure_native/cdn/get_afd_origin.py +2 -2
- pulumi_azure_native/cdn/get_afd_origin_group.py +2 -2
- pulumi_azure_native/cdn/get_custom_domain.py +2 -2
- pulumi_azure_native/cdn/get_endpoint.py +2 -2
- pulumi_azure_native/cdn/get_key_group.py +4 -0
- pulumi_azure_native/cdn/get_origin.py +2 -2
- pulumi_azure_native/cdn/get_origin_group.py +2 -2
- pulumi_azure_native/cdn/get_policy.py +2 -2
- pulumi_azure_native/cdn/get_profile.py +2 -2
- pulumi_azure_native/cdn/get_profile_supported_optimization_types.py +2 -2
- pulumi_azure_native/cdn/get_route.py +2 -2
- pulumi_azure_native/cdn/get_rule.py +2 -2
- pulumi_azure_native/cdn/get_rule_set.py +2 -2
- pulumi_azure_native/cdn/get_secret.py +2 -2
- pulumi_azure_native/cdn/get_security_policy.py +2 -2
- pulumi_azure_native/cdn/key_group.py +5 -1
- pulumi_azure_native/cdn/origin.py +3 -3
- pulumi_azure_native/cdn/origin_group.py +3 -3
- pulumi_azure_native/cdn/policy.py +3 -3
- pulumi_azure_native/cdn/profile.py +3 -3
- pulumi_azure_native/cdn/route.py +3 -3
- pulumi_azure_native/cdn/rule.py +3 -3
- pulumi_azure_native/cdn/rule_set.py +3 -3
- pulumi_azure_native/cdn/secret.py +3 -3
- pulumi_azure_native/cdn/security_policy.py +3 -3
- pulumi_azure_native/cdn/v20200901/afd_endpoint.py +1 -1
- pulumi_azure_native/cdn/v20200901/afd_origin_group.py +1 -1
- pulumi_azure_native/cdn/v20200901/profile.py +1 -1
- pulumi_azure_native/cdn/v20200901/route.py +1 -1
- pulumi_azure_native/cdn/v20230501/afd_custom_domain.py +1 -1
- pulumi_azure_native/cdn/v20230501/afd_endpoint.py +1 -1
- pulumi_azure_native/cdn/v20230501/afd_origin.py +1 -1
- pulumi_azure_native/cdn/v20230501/afd_origin_group.py +1 -1
- pulumi_azure_native/cdn/v20230501/custom_domain.py +1 -1
- pulumi_azure_native/cdn/v20230501/endpoint.py +1 -1
- pulumi_azure_native/cdn/v20230501/origin.py +1 -1
- pulumi_azure_native/cdn/v20230501/origin_group.py +1 -1
- pulumi_azure_native/cdn/v20230501/policy.py +1 -1
- pulumi_azure_native/cdn/v20230501/profile.py +1 -1
- pulumi_azure_native/cdn/v20230501/route.py +1 -1
- pulumi_azure_native/cdn/v20230501/rule.py +1 -1
- pulumi_azure_native/cdn/v20230501/rule_set.py +1 -1
- pulumi_azure_native/cdn/v20230501/secret.py +1 -1
- pulumi_azure_native/cdn/v20230501/security_policy.py +1 -1
- pulumi_azure_native/cdn/v20230701preview/afd_custom_domain.py +1 -1
- pulumi_azure_native/cdn/v20230701preview/afd_endpoint.py +1 -1
- pulumi_azure_native/cdn/v20230701preview/afd_origin.py +1 -1
- pulumi_azure_native/cdn/v20230701preview/afd_origin_group.py +1 -1
- pulumi_azure_native/cdn/v20230701preview/custom_domain.py +1 -1
- pulumi_azure_native/cdn/v20230701preview/endpoint.py +1 -1
- pulumi_azure_native/cdn/v20230701preview/key_group.py +1 -1
- pulumi_azure_native/cdn/v20230701preview/origin.py +1 -1
- pulumi_azure_native/cdn/v20230701preview/origin_group.py +1 -1
- pulumi_azure_native/cdn/v20230701preview/policy.py +1 -1
- pulumi_azure_native/cdn/v20230701preview/profile.py +1 -1
- pulumi_azure_native/cdn/v20230701preview/route.py +1 -1
- pulumi_azure_native/cdn/v20230701preview/rule.py +1 -1
- pulumi_azure_native/cdn/v20230701preview/rule_set.py +1 -1
- pulumi_azure_native/cdn/v20230701preview/secret.py +1 -1
- pulumi_azure_native/cdn/v20230701preview/security_policy.py +1 -1
- pulumi_azure_native/cdn/v20240201/afd_custom_domain.py +1 -1
- pulumi_azure_native/cdn/v20240201/afd_endpoint.py +1 -1
- pulumi_azure_native/cdn/v20240201/afd_origin.py +1 -1
- pulumi_azure_native/cdn/v20240201/afd_origin_group.py +1 -1
- pulumi_azure_native/cdn/v20240201/custom_domain.py +1 -1
- pulumi_azure_native/cdn/v20240201/endpoint.py +1 -1
- pulumi_azure_native/cdn/v20240201/origin.py +1 -1
- pulumi_azure_native/cdn/v20240201/origin_group.py +1 -1
- pulumi_azure_native/cdn/v20240201/policy.py +1 -1
- pulumi_azure_native/cdn/v20240201/profile.py +1 -1
- pulumi_azure_native/cdn/v20240201/route.py +1 -1
- pulumi_azure_native/cdn/v20240201/rule.py +1 -1
- pulumi_azure_native/cdn/v20240201/rule_set.py +1 -1
- pulumi_azure_native/cdn/v20240201/secret.py +1 -1
- pulumi_azure_native/cdn/v20240201/security_policy.py +1 -1
- pulumi_azure_native/cdn/v20240501preview/__init__.py +43 -0
- pulumi_azure_native/cdn/v20240501preview/_enums.py +839 -0
- pulumi_azure_native/cdn/v20240501preview/_inputs.py +6013 -0
- pulumi_azure_native/cdn/v20240501preview/afd_custom_domain.py +418 -0
- pulumi_azure_native/cdn/v20240501preview/afd_endpoint.py +338 -0
- pulumi_azure_native/cdn/v20240501preview/afd_origin.py +537 -0
- pulumi_azure_native/cdn/v20240501preview/afd_origin_group.py +329 -0
- pulumi_azure_native/cdn/v20240501preview/custom_domain.py +296 -0
- pulumi_azure_native/cdn/v20240501preview/endpoint.py +762 -0
- pulumi_azure_native/cdn/v20240501preview/get_afd_custom_domain.py +276 -0
- pulumi_azure_native/cdn/v20240501preview/get_afd_endpoint.py +224 -0
- pulumi_azure_native/cdn/v20240501preview/get_afd_origin.py +294 -0
- pulumi_azure_native/cdn/v20240501preview/get_afd_origin_group.py +211 -0
- pulumi_azure_native/cdn/v20240501preview/get_custom_domain.py +219 -0
- pulumi_azure_native/cdn/v20240501preview/get_endpoint.py +409 -0
- pulumi_azure_native/cdn/v20240501preview/get_key_group.py +159 -0
- pulumi_azure_native/cdn/v20240501preview/get_origin.py +310 -0
- pulumi_azure_native/cdn/v20240501preview/get_origin_group.py +206 -0
- pulumi_azure_native/cdn/v20240501preview/get_policy.py +271 -0
- pulumi_azure_native/cdn/v20240501preview/get_profile.py +261 -0
- pulumi_azure_native/cdn/v20240501preview/get_profile_supported_optimization_types.py +78 -0
- pulumi_azure_native/cdn/v20240501preview/get_route.py +320 -0
- pulumi_azure_native/cdn/v20240501preview/get_rule.py +216 -0
- pulumi_azure_native/cdn/v20240501preview/get_rule_set.py +159 -0
- pulumi_azure_native/cdn/v20240501preview/get_secret.py +172 -0
- pulumi_azure_native/cdn/v20240501preview/get_security_policy.py +172 -0
- pulumi_azure_native/cdn/v20240501preview/key_group.py +232 -0
- pulumi_azure_native/cdn/v20240501preview/origin.py +556 -0
- pulumi_azure_native/cdn/v20240501preview/origin_group.py +345 -0
- pulumi_azure_native/cdn/v20240501preview/outputs.py +7210 -0
- pulumi_azure_native/cdn/v20240501preview/policy.py +436 -0
- pulumi_azure_native/cdn/v20240501preview/profile.py +391 -0
- pulumi_azure_native/cdn/v20240501preview/route.py +595 -0
- pulumi_azure_native/cdn/v20240501preview/rule.py +356 -0
- pulumi_azure_native/cdn/v20240501preview/rule_set.py +211 -0
- pulumi_azure_native/cdn/v20240501preview/secret.py +241 -0
- pulumi_azure_native/cdn/v20240501preview/security_policy.py +241 -0
- pulumi_azure_native/config/__init__.pyi +6 -1
- pulumi_azure_native/config/vars.py +8 -1
- pulumi_azure_native/devcenter/__init__.py +4 -0
- pulumi_azure_native/devcenter/attached_network_by_dev_center.py +3 -3
- pulumi_azure_native/devcenter/catalog.py +3 -3
- pulumi_azure_native/devcenter/dev_box_definition.py +3 -3
- pulumi_azure_native/devcenter/dev_center.py +3 -3
- pulumi_azure_native/devcenter/encryption_set.py +5 -1
- pulumi_azure_native/devcenter/environment_type.py +3 -3
- pulumi_azure_native/devcenter/gallery.py +3 -3
- pulumi_azure_native/devcenter/get_attached_network_by_dev_center.py +2 -2
- pulumi_azure_native/devcenter/get_catalog.py +2 -2
- pulumi_azure_native/devcenter/get_catalog_sync_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_customization_task_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_dev_box_definition.py +2 -2
- pulumi_azure_native/devcenter/get_dev_center.py +2 -2
- pulumi_azure_native/devcenter/get_encryption_set.py +4 -0
- pulumi_azure_native/devcenter/get_environment_definition_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_environment_type.py +2 -2
- pulumi_azure_native/devcenter/get_gallery.py +2 -2
- pulumi_azure_native/devcenter/get_network_connection.py +2 -2
- pulumi_azure_native/devcenter/get_plan.py +4 -0
- pulumi_azure_native/devcenter/get_plan_member.py +4 -0
- pulumi_azure_native/devcenter/get_pool.py +2 -2
- pulumi_azure_native/devcenter/get_project.py +2 -2
- pulumi_azure_native/devcenter/get_project_catalog.py +2 -2
- pulumi_azure_native/devcenter/get_project_catalog_environment_definition_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_project_catalog_sync_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_project_environment_type.py +2 -2
- pulumi_azure_native/devcenter/get_project_inherited_settings.py +4 -0
- pulumi_azure_native/devcenter/get_schedule.py +2 -2
- pulumi_azure_native/devcenter/list_skus_by_project.py +94 -0
- pulumi_azure_native/devcenter/network_connection.py +3 -3
- pulumi_azure_native/devcenter/outputs.py +138 -0
- pulumi_azure_native/devcenter/plan.py +5 -1
- pulumi_azure_native/devcenter/plan_member.py +5 -1
- pulumi_azure_native/devcenter/pool.py +3 -3
- pulumi_azure_native/devcenter/project.py +3 -3
- pulumi_azure_native/devcenter/project_catalog.py +3 -3
- pulumi_azure_native/devcenter/project_environment_type.py +3 -3
- pulumi_azure_native/devcenter/schedule.py +3 -3
- pulumi_azure_native/devcenter/v20221111preview/dev_box_definition.py +1 -1
- pulumi_azure_native/devcenter/v20230401/attached_network_by_dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20230401/catalog.py +1 -1
- pulumi_azure_native/devcenter/v20230401/dev_box_definition.py +1 -1
- pulumi_azure_native/devcenter/v20230401/dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20230401/environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20230401/gallery.py +1 -1
- pulumi_azure_native/devcenter/v20230401/network_connection.py +1 -1
- pulumi_azure_native/devcenter/v20230401/pool.py +1 -1
- pulumi_azure_native/devcenter/v20230401/project.py +1 -1
- pulumi_azure_native/devcenter/v20230401/project_environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20230401/schedule.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/attached_network_by_dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/catalog.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/dev_box_definition.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/gallery.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/network_connection.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/pool.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/project.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/project_environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/schedule.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/attached_network_by_dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/catalog.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/dev_box_definition.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/gallery.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/network_connection.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/pool.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/project.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/project_environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/schedule.py +1 -1
- pulumi_azure_native/devcenter/v20240201/attached_network_by_dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20240201/catalog.py +1 -1
- pulumi_azure_native/devcenter/v20240201/dev_box_definition.py +1 -1
- pulumi_azure_native/devcenter/v20240201/dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20240201/environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20240201/gallery.py +1 -1
- pulumi_azure_native/devcenter/v20240201/network_connection.py +1 -1
- pulumi_azure_native/devcenter/v20240201/pool.py +1 -1
- pulumi_azure_native/devcenter/v20240201/project.py +1 -1
- pulumi_azure_native/devcenter/v20240201/project_catalog.py +1 -1
- pulumi_azure_native/devcenter/v20240201/project_environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20240201/schedule.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/attached_network_by_dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/catalog.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/dev_box_definition.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/encryption_set.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/gallery.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/network_connection.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/plan.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/plan_member.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/pool.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/project.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/project_catalog.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/project_environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/schedule.py +1 -1
- pulumi_azure_native/devcenter/v20240601preview/__init__.py +47 -0
- pulumi_azure_native/devcenter/v20240601preview/_enums.py +209 -0
- pulumi_azure_native/devcenter/v20240601preview/_inputs.py +595 -0
- pulumi_azure_native/devcenter/v20240601preview/attached_network_by_dev_center.py +255 -0
- pulumi_azure_native/devcenter/v20240601preview/catalog.py +363 -0
- pulumi_azure_native/devcenter/v20240601preview/dev_box_definition.py +413 -0
- pulumi_azure_native/devcenter/v20240601preview/dev_center.py +447 -0
- pulumi_azure_native/devcenter/v20240601preview/encryption_set.py +342 -0
- pulumi_azure_native/devcenter/v20240601preview/environment_type.py +253 -0
- pulumi_azure_native/devcenter/v20240601preview/gallery.py +225 -0
- pulumi_azure_native/devcenter/v20240601preview/get_attached_network_by_dev_center.py +188 -0
- pulumi_azure_native/devcenter/v20240601preview/get_catalog.py +253 -0
- pulumi_azure_native/devcenter/v20240601preview/get_catalog_sync_error_details.py +110 -0
- pulumi_azure_native/devcenter/v20240601preview/get_customization_task_error_details.py +89 -0
- pulumi_azure_native/devcenter/v20240601preview/get_dev_box_definition.py +266 -0
- pulumi_azure_native/devcenter/v20240601preview/get_dev_center.py +261 -0
- pulumi_azure_native/devcenter/v20240601preview/get_encryption_set.py +201 -0
- pulumi_azure_native/devcenter/v20240601preview/get_environment_definition_error_details.py +89 -0
- pulumi_azure_native/devcenter/v20240601preview/get_environment_type.py +162 -0
- pulumi_azure_native/devcenter/v20240601preview/get_gallery.py +149 -0
- pulumi_azure_native/devcenter/v20240601preview/get_network_connection.py +261 -0
- pulumi_azure_native/devcenter/v20240601preview/get_plan.py +170 -0
- pulumi_azure_native/devcenter/v20240601preview/get_plan_member.py +175 -0
- pulumi_azure_native/devcenter/v20240601preview/get_pool.py +344 -0
- pulumi_azure_native/devcenter/v20240601preview/get_project.py +248 -0
- pulumi_azure_native/devcenter/v20240601preview/get_project_catalog.py +253 -0
- pulumi_azure_native/devcenter/v20240601preview/get_project_catalog_environment_definition_error_details.py +89 -0
- pulumi_azure_native/devcenter/v20240601preview/get_project_catalog_sync_error_details.py +110 -0
- pulumi_azure_native/devcenter/v20240601preview/get_project_environment_type.py +253 -0
- pulumi_azure_native/devcenter/v20240601preview/get_project_inherited_settings.py +92 -0
- pulumi_azure_native/devcenter/v20240601preview/get_schedule.py +224 -0
- pulumi_azure_native/devcenter/v20240601preview/list_skus_by_project.py +92 -0
- pulumi_azure_native/devcenter/v20240601preview/network_connection.py +448 -0
- pulumi_azure_native/devcenter/v20240601preview/outputs.py +1447 -0
- pulumi_azure_native/devcenter/v20240601preview/plan.py +263 -0
- pulumi_azure_native/devcenter/v20240601preview/plan_member.py +283 -0
- pulumi_azure_native/devcenter/v20240601preview/pool.py +608 -0
- pulumi_azure_native/devcenter/v20240601preview/project.py +418 -0
- pulumi_azure_native/devcenter/v20240601preview/project_catalog.py +363 -0
- pulumi_azure_native/devcenter/v20240601preview/project_environment_type.py +439 -0
- pulumi_azure_native/devcenter/v20240601preview/schedule.py +434 -0
- pulumi_azure_native/elastic/__init__.py +3 -0
- pulumi_azure_native/elastic/get_billing_info.py +2 -2
- pulumi_azure_native/elastic/get_monitor.py +2 -2
- pulumi_azure_native/elastic/get_monitored_subscription.py +4 -0
- pulumi_azure_native/elastic/get_open_ai.py +2 -2
- pulumi_azure_native/elastic/get_open_ai_status.py +2 -2
- pulumi_azure_native/elastic/get_organization_api_key.py +2 -2
- pulumi_azure_native/elastic/get_organization_elastic_to_azure_subscription_mapping.py +2 -2
- pulumi_azure_native/elastic/get_tag_rule.py +2 -2
- pulumi_azure_native/elastic/list_all_traffic_filter.py +2 -2
- pulumi_azure_native/elastic/list_connected_partner_resource.py +2 -2
- pulumi_azure_native/elastic/list_deployment_info.py +2 -2
- pulumi_azure_native/elastic/list_monitored_resource.py +2 -2
- pulumi_azure_native/elastic/list_upgradable_version_details.py +2 -2
- pulumi_azure_native/elastic/list_vm_host.py +2 -2
- pulumi_azure_native/elastic/listlist_associated_traffic_filter.py +2 -2
- pulumi_azure_native/elastic/monitor.py +3 -3
- pulumi_azure_native/elastic/monitored_subscription.py +5 -1
- pulumi_azure_native/elastic/open_ai.py +3 -3
- pulumi_azure_native/elastic/tag_rule.py +3 -3
- pulumi_azure_native/elastic/v20230601/monitor.py +1 -1
- pulumi_azure_native/elastic/v20230601/tag_rule.py +1 -1
- pulumi_azure_native/elastic/v20230615preview/monitor.py +1 -1
- pulumi_azure_native/elastic/v20230615preview/tag_rule.py +1 -1
- pulumi_azure_native/elastic/v20230701preview/monitor.py +1 -1
- pulumi_azure_native/elastic/v20230701preview/tag_rule.py +1 -1
- pulumi_azure_native/elastic/v20231001preview/monitor.py +1 -1
- pulumi_azure_native/elastic/v20231001preview/tag_rule.py +1 -1
- pulumi_azure_native/elastic/v20231101preview/monitor.py +1 -1
- pulumi_azure_native/elastic/v20231101preview/tag_rule.py +1 -1
- pulumi_azure_native/elastic/v20240101preview/monitor.py +1 -1
- pulumi_azure_native/elastic/v20240101preview/open_ai.py +1 -1
- pulumi_azure_native/elastic/v20240101preview/tag_rule.py +1 -1
- pulumi_azure_native/elastic/v20240301/monitor.py +1 -1
- pulumi_azure_native/elastic/v20240301/open_ai.py +1 -1
- pulumi_azure_native/elastic/v20240301/tag_rule.py +1 -1
- pulumi_azure_native/elastic/v20240501preview/monitor.py +1 -1
- pulumi_azure_native/elastic/v20240501preview/monitored_subscription.py +1 -1
- pulumi_azure_native/elastic/v20240501preview/open_ai.py +1 -1
- pulumi_azure_native/elastic/v20240501preview/tag_rule.py +1 -1
- pulumi_azure_native/elastic/v20240615preview/__init__.py +29 -0
- pulumi_azure_native/elastic/v20240615preview/_enums.py +57 -0
- pulumi_azure_native/elastic/v20240615preview/_inputs.py +826 -0
- pulumi_azure_native/elastic/v20240615preview/get_billing_info.py +92 -0
- pulumi_azure_native/elastic/v20240615preview/get_monitor.py +183 -0
- pulumi_azure_native/elastic/v20240615preview/get_monitored_subscription.py +123 -0
- pulumi_azure_native/elastic/v20240615preview/get_open_ai.py +123 -0
- pulumi_azure_native/elastic/v20240615preview/get_open_ai_status.py +84 -0
- pulumi_azure_native/elastic/v20240615preview/get_organization_api_key.py +71 -0
- pulumi_azure_native/elastic/v20240615preview/get_organization_elastic_to_azure_subscription_mapping.py +65 -0
- pulumi_azure_native/elastic/v20240615preview/get_tag_rule.py +136 -0
- pulumi_azure_native/elastic/v20240615preview/list_all_traffic_filter.py +79 -0
- pulumi_azure_native/elastic/v20240615preview/list_connected_partner_resource.py +92 -0
- pulumi_azure_native/elastic/v20240615preview/list_deployment_info.py +157 -0
- pulumi_azure_native/elastic/v20240615preview/list_monitored_resource.py +92 -0
- pulumi_azure_native/elastic/v20240615preview/list_upgradable_version_details.py +91 -0
- pulumi_azure_native/elastic/v20240615preview/list_vm_host.py +92 -0
- pulumi_azure_native/elastic/v20240615preview/listlist_associated_traffic_filter.py +79 -0
- pulumi_azure_native/elastic/v20240615preview/monitor.py +311 -0
- pulumi_azure_native/elastic/v20240615preview/monitored_subscription.py +206 -0
- pulumi_azure_native/elastic/v20240615preview/open_ai.py +205 -0
- pulumi_azure_native/elastic/v20240615preview/outputs.py +1752 -0
- pulumi_azure_native/elastic/v20240615preview/tag_rule.py +216 -0
- pulumi_azure_native/hdinsight/__init__.py +3 -3
- pulumi_azure_native/hdinsight/cluster.py +2 -2
- pulumi_azure_native/hdinsight/cluster_pool.py +3 -3
- pulumi_azure_native/hdinsight/get_cluster.py +2 -2
- pulumi_azure_native/hdinsight/get_cluster_pool.py +2 -2
- pulumi_azure_native/hdinsight/v20230601preview/cluster.py +1 -1
- pulumi_azure_native/hdinsight/v20230601preview/cluster_pool.py +1 -1
- pulumi_azure_native/hdinsight/v20231101preview/cluster.py +1 -1
- pulumi_azure_native/hdinsight/v20231101preview/cluster_pool.py +1 -1
- pulumi_azure_native/hdinsight/{v20240501 → v20240501preview}/_inputs.py +56 -1
- pulumi_azure_native/hdinsight/{v20240501 → v20240501preview}/cluster.py +1 -1
- pulumi_azure_native/hdinsight/{v20240501 → v20240501preview}/cluster_pool.py +1 -1
- pulumi_azure_native/hdinsight/{v20240501 → v20240501preview}/get_cluster.py +1 -1
- pulumi_azure_native/hdinsight/{v20240501 → v20240501preview}/get_cluster_pool.py +1 -1
- pulumi_azure_native/hdinsight/{v20240501 → v20240501preview}/outputs.py +66 -1
- pulumi_azure_native/keyvault/__init__.py +3 -0
- pulumi_azure_native/keyvault/get_key.py +2 -2
- pulumi_azure_native/keyvault/get_managed_hsm.py +2 -2
- pulumi_azure_native/keyvault/get_mhsm_private_endpoint_connection.py +2 -2
- pulumi_azure_native/keyvault/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/keyvault/get_secret.py +2 -2
- pulumi_azure_native/keyvault/get_vault.py +2 -2
- pulumi_azure_native/keyvault/key.py +3 -3
- pulumi_azure_native/keyvault/managed_hsm.py +3 -3
- pulumi_azure_native/keyvault/mhsm_private_endpoint_connection.py +3 -3
- pulumi_azure_native/keyvault/private_endpoint_connection.py +3 -3
- pulumi_azure_native/keyvault/secret.py +3 -3
- pulumi_azure_native/keyvault/v20230201/key.py +1 -1
- pulumi_azure_native/keyvault/v20230201/managed_hsm.py +1 -1
- pulumi_azure_native/keyvault/v20230201/mhsm_private_endpoint_connection.py +1 -1
- pulumi_azure_native/keyvault/v20230201/private_endpoint_connection.py +1 -1
- pulumi_azure_native/keyvault/v20230201/secret.py +1 -1
- pulumi_azure_native/keyvault/v20230201/vault.py +1 -1
- pulumi_azure_native/keyvault/v20230701/key.py +1 -1
- pulumi_azure_native/keyvault/v20230701/managed_hsm.py +1 -1
- pulumi_azure_native/keyvault/v20230701/mhsm_private_endpoint_connection.py +1 -1
- pulumi_azure_native/keyvault/v20230701/private_endpoint_connection.py +1 -1
- pulumi_azure_native/keyvault/v20230701/secret.py +1 -1
- pulumi_azure_native/keyvault/v20230701/vault.py +1 -1
- pulumi_azure_native/keyvault/v20240401preview/__init__.py +22 -0
- pulumi_azure_native/keyvault/v20240401preview/_enums.py +242 -0
- pulumi_azure_native/keyvault/v20240401preview/_inputs.py +1623 -0
- pulumi_azure_native/keyvault/v20240401preview/get_key.py +250 -0
- pulumi_azure_native/keyvault/v20240401preview/get_managed_hsm.py +183 -0
- pulumi_azure_native/keyvault/v20240401preview/get_mhsm_private_endpoint_connection.py +227 -0
- pulumi_azure_native/keyvault/v20240401preview/get_private_endpoint_connection.py +188 -0
- pulumi_azure_native/keyvault/v20240401preview/get_secret.py +149 -0
- pulumi_azure_native/keyvault/v20240401preview/get_vault.py +157 -0
- pulumi_azure_native/keyvault/v20240401preview/key.py +324 -0
- pulumi_azure_native/keyvault/v20240401preview/managed_hsm.py +310 -0
- pulumi_azure_native/keyvault/v20240401preview/mhsm_private_endpoint_connection.py +361 -0
- pulumi_azure_native/keyvault/v20240401preview/outputs.py +2258 -0
- pulumi_azure_native/keyvault/v20240401preview/private_endpoint_connection.py +256 -0
- pulumi_azure_native/keyvault/v20240401preview/secret.py +245 -0
- pulumi_azure_native/keyvault/v20240401preview/vault.py +254 -0
- pulumi_azure_native/keyvault/vault.py +3 -3
- pulumi_azure_native/kubernetes/__init__.py +3 -0
- pulumi_azure_native/kubernetes/connected_cluster.py +3 -3
- pulumi_azure_native/kubernetes/get_connected_cluster.py +2 -2
- pulumi_azure_native/kubernetes/list_connected_cluster_user_credential.py +2 -2
- pulumi_azure_native/kubernetes/v20220501preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20221001preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20231101preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20240101/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20240201preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20240601preview/__init__.py +13 -0
- pulumi_azure_native/kubernetes/v20240601preview/_enums.py +76 -0
- pulumi_azure_native/kubernetes/v20240601preview/_inputs.py +305 -0
- pulumi_azure_native/kubernetes/v20240601preview/connected_cluster.py +730 -0
- pulumi_azure_native/kubernetes/v20240601preview/get_connected_cluster.py +443 -0
- pulumi_azure_native/kubernetes/v20240601preview/list_connected_cluster_user_credential.py +103 -0
- pulumi_azure_native/kubernetes/v20240601preview/outputs.py +717 -0
- pulumi_azure_native/network/__init__.py +3 -0
- 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/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 +5 -1
- pulumi_azure_native/network/firewall_policy_rule_collection_group.py +3 -3
- pulumi_azure_native/network/firewall_policy_rule_collection_group_draft.py +5 -1
- 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 +4 -0
- 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 +4 -0
- 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_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 +2 -2
- 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_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_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/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_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/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 +3 -3
- 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/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/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/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/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/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/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/v20210801/firewall_policy.py +1 -1
- pulumi_azure_native/network/v20220101/ddos_custom_policy.py +1 -1
- pulumi_azure_native/network/v20220401preview/network_group.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/security_rule.py +1 -1
- pulumi_azure_native/network/v20220701/subnet.py +1 -1
- 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/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/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 +1 -1
- 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/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/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/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 +1 -1
- 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/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/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/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 +1 -1
- 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/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/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/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 +1 -1
- 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/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/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/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 +1 -1
- 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/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/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/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 +1 -1
- 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/__init__.py +212 -0
- pulumi_azure_native/network/v20240101/_enums.py +1771 -0
- pulumi_azure_native/network/v20240101/_inputs.py +20903 -0
- pulumi_azure_native/network/v20240101/admin_rule.py +558 -0
- pulumi_azure_native/network/v20240101/admin_rule_collection.py +296 -0
- pulumi_azure_native/network/v20240101/application_gateway.py +1251 -0
- pulumi_azure_native/network/v20240101/application_gateway_private_endpoint_connection.py +284 -0
- pulumi_azure_native/network/v20240101/application_security_group.py +261 -0
- pulumi_azure_native/network/v20240101/azure_firewall.py +612 -0
- pulumi_azure_native/network/v20240101/bastion_host.py +680 -0
- pulumi_azure_native/network/v20240101/configuration_policy_group.py +333 -0
- pulumi_azure_native/network/v20240101/connection_monitor.py +574 -0
- pulumi_azure_native/network/v20240101/connectivity_configuration.py +393 -0
- pulumi_azure_native/network/v20240101/custom_ip_prefix.py +642 -0
- pulumi_azure_native/network/v20240101/ddos_custom_policy.py +261 -0
- pulumi_azure_native/network/v20240101/ddos_protection_plan.py +262 -0
- pulumi_azure_native/network/v20240101/default_admin_rule.py +410 -0
- pulumi_azure_native/network/v20240101/dscp_configuration.py +487 -0
- pulumi_azure_native/network/v20240101/express_route_circuit.py +715 -0
- pulumi_azure_native/network/v20240101/express_route_circuit_authorization.py +302 -0
- pulumi_azure_native/network/v20240101/express_route_circuit_connection.py +411 -0
- pulumi_azure_native/network/v20240101/express_route_circuit_peering.py +733 -0
- pulumi_azure_native/network/v20240101/express_route_connection.py +421 -0
- pulumi_azure_native/network/v20240101/express_route_cross_connection_peering.py +556 -0
- pulumi_azure_native/network/v20240101/express_route_gateway.py +374 -0
- pulumi_azure_native/network/v20240101/express_route_port.py +488 -0
- pulumi_azure_native/network/v20240101/express_route_port_authorization.py +263 -0
- pulumi_azure_native/network/v20240101/firewall_policy.py +642 -0
- pulumi_azure_native/network/v20240101/firewall_policy_draft.py +496 -0
- pulumi_azure_native/network/v20240101/firewall_policy_rule_collection_group.py +304 -0
- pulumi_azure_native/network/v20240101/firewall_policy_rule_collection_group_draft.py +285 -0
- pulumi_azure_native/network/v20240101/flow_log.py +490 -0
- pulumi_azure_native/network/v20240101/get_active_sessions.py +92 -0
- pulumi_azure_native/network/v20240101/get_admin_rule.py +303 -0
- pulumi_azure_native/network/v20240101/get_admin_rule_collection.py +193 -0
- pulumi_azure_native/network/v20240101/get_application_gateway.py +638 -0
- pulumi_azure_native/network/v20240101/get_application_gateway_backend_health_on_demand.py +139 -0
- pulumi_azure_native/network/v20240101/get_application_gateway_private_endpoint_connection.py +175 -0
- pulumi_azure_native/network/v20240101/get_application_security_group.py +169 -0
- pulumi_azure_native/network/v20240101/get_azure_firewall.py +326 -0
- pulumi_azure_native/network/v20240101/get_bastion_host.py +336 -0
- pulumi_azure_native/network/v20240101/get_bastion_shareable_link.py +98 -0
- pulumi_azure_native/network/v20240101/get_configuration_policy_group.py +188 -0
- pulumi_azure_native/network/v20240101/get_connection_monitor.py +318 -0
- pulumi_azure_native/network/v20240101/get_connectivity_configuration.py +240 -0
- pulumi_azure_native/network/v20240101/get_custom_ip_prefix.py +370 -0
- pulumi_azure_native/network/v20240101/get_ddos_custom_policy.py +169 -0
- pulumi_azure_native/network/v20240101/get_ddos_protection_plan.py +196 -0
- pulumi_azure_native/network/v20240101/get_default_admin_rule.py +316 -0
- pulumi_azure_native/network/v20240101/get_dscp_configuration.py +287 -0
- pulumi_azure_native/network/v20240101/get_express_route_circuit.py +378 -0
- pulumi_azure_native/network/v20240101/get_express_route_circuit_authorization.py +174 -0
- pulumi_azure_native/network/v20240101/get_express_route_circuit_connection.py +219 -0
- pulumi_azure_native/network/v20240101/get_express_route_circuit_peering.py +383 -0
- pulumi_azure_native/network/v20240101/get_express_route_connection.py +201 -0
- pulumi_azure_native/network/v20240101/get_express_route_cross_connection_peering.py +305 -0
- pulumi_azure_native/network/v20240101/get_express_route_gateway.py +209 -0
- pulumi_azure_native/network/v20240101/get_express_route_port.py +313 -0
- pulumi_azure_native/network/v20240101/get_express_route_port_authorization.py +174 -0
- pulumi_azure_native/network/v20240101/get_firewall_policy.py +370 -0
- pulumi_azure_native/network/v20240101/get_firewall_policy_draft.py +248 -0
- pulumi_azure_native/network/v20240101/get_firewall_policy_rule_collection_group.py +175 -0
- pulumi_azure_native/network/v20240101/get_firewall_policy_rule_collection_group_draft.py +149 -0
- pulumi_azure_native/network/v20240101/get_flow_log.py +266 -0
- pulumi_azure_native/network/v20240101/get_hub_route_table.py +188 -0
- pulumi_azure_native/network/v20240101/get_hub_virtual_network_connection.py +188 -0
- pulumi_azure_native/network/v20240101/get_inbound_nat_rule.py +284 -0
- pulumi_azure_native/network/v20240101/get_ip_allocation.py +240 -0
- pulumi_azure_native/network/v20240101/get_ip_group.py +201 -0
- pulumi_azure_native/network/v20240101/get_load_balancer.py +292 -0
- pulumi_azure_native/network/v20240101/get_load_balancer_backend_address_pool.py +279 -0
- pulumi_azure_native/network/v20240101/get_local_network_gateway.py +222 -0
- pulumi_azure_native/network/v20240101/get_management_group_network_manager_connection.py +157 -0
- pulumi_azure_native/network/v20240101/get_nat_gateway.py +253 -0
- pulumi_azure_native/network/v20240101/get_nat_rule.py +214 -0
- pulumi_azure_native/network/v20240101/get_network_group.py +175 -0
- pulumi_azure_native/network/v20240101/get_network_interface.py +448 -0
- pulumi_azure_native/network/v20240101/get_network_interface_tap_configuration.py +149 -0
- pulumi_azure_native/network/v20240101/get_network_manager.py +222 -0
- pulumi_azure_native/network/v20240101/get_network_profile.py +201 -0
- pulumi_azure_native/network/v20240101/get_network_security_group.py +253 -0
- pulumi_azure_native/network/v20240101/get_network_virtual_appliance.py +409 -0
- pulumi_azure_native/network/v20240101/get_network_virtual_appliance_connection.py +175 -0
- pulumi_azure_native/network/v20240101/get_network_watcher.py +156 -0
- pulumi_azure_native/network/v20240101/get_p2s_vpn_gateway.py +248 -0
- pulumi_azure_native/network/v20240101/get_p2s_vpn_gateway_p2s_vpn_connection_health.py +248 -0
- pulumi_azure_native/network/v20240101/get_p2s_vpn_gateway_p2s_vpn_connection_health_detailed.py +88 -0
- pulumi_azure_native/network/v20240101/get_packet_capture.py +253 -0
- pulumi_azure_native/network/v20240101/get_private_dns_zone_group.py +136 -0
- pulumi_azure_native/network/v20240101/get_private_endpoint.py +279 -0
- pulumi_azure_native/network/v20240101/get_private_link_service.py +292 -0
- pulumi_azure_native/network/v20240101/get_private_link_service_private_endpoint_connection.py +193 -0
- pulumi_azure_native/network/v20240101/get_public_ip_address.py +396 -0
- pulumi_azure_native/network/v20240101/get_public_ip_prefix.py +318 -0
- pulumi_azure_native/network/v20240101/get_route.py +187 -0
- pulumi_azure_native/network/v20240101/get_route_filter.py +201 -0
- pulumi_azure_native/network/v20240101/get_route_filter_rule.py +174 -0
- pulumi_azure_native/network/v20240101/get_route_map.py +175 -0
- pulumi_azure_native/network/v20240101/get_route_table.py +214 -0
- pulumi_azure_native/network/v20240101/get_routing_intent.py +149 -0
- pulumi_azure_native/network/v20240101/get_scope_connection.py +175 -0
- pulumi_azure_native/network/v20240101/get_security_admin_configuration.py +188 -0
- pulumi_azure_native/network/v20240101/get_security_partner_provider.py +196 -0
- pulumi_azure_native/network/v20240101/get_security_rule.py +331 -0
- pulumi_azure_native/network/v20240101/get_service_endpoint_policy.py +240 -0
- pulumi_azure_native/network/v20240101/get_service_endpoint_policy_definition.py +174 -0
- pulumi_azure_native/network/v20240101/get_static_member.py +180 -0
- pulumi_azure_native/network/v20240101/get_subnet.py +401 -0
- pulumi_azure_native/network/v20240101/get_subscription_network_manager_connection.py +152 -0
- pulumi_azure_native/network/v20240101/get_virtual_appliance_site.py +162 -0
- pulumi_azure_native/network/v20240101/get_virtual_hub.py +443 -0
- pulumi_azure_native/network/v20240101/get_virtual_hub_bgp_connection.py +188 -0
- pulumi_azure_native/network/v20240101/get_virtual_hub_ip_configuration.py +188 -0
- pulumi_azure_native/network/v20240101/get_virtual_hub_route_table_v2.py +149 -0
- pulumi_azure_native/network/v20240101/get_virtual_network.py +344 -0
- pulumi_azure_native/network/v20240101/get_virtual_network_gateway.py +495 -0
- pulumi_azure_native/network/v20240101/get_virtual_network_gateway_advertised_routes.py +84 -0
- pulumi_azure_native/network/v20240101/get_virtual_network_gateway_bgp_peer_status.py +84 -0
- pulumi_azure_native/network/v20240101/get_virtual_network_gateway_connection.py +495 -0
- pulumi_azure_native/network/v20240101/get_virtual_network_gateway_connection_ike_sas.py +72 -0
- pulumi_azure_native/network/v20240101/get_virtual_network_gateway_learned_routes.py +79 -0
- pulumi_azure_native/network/v20240101/get_virtual_network_gateway_nat_rule.py +188 -0
- pulumi_azure_native/network/v20240101/get_virtual_network_gateway_vpn_profile_package_url.py +72 -0
- pulumi_azure_native/network/v20240101/get_virtual_network_gateway_vpnclient_connection_health.py +79 -0
- pulumi_azure_native/network/v20240101/get_virtual_network_gateway_vpnclient_ipsec_parameters.py +169 -0
- pulumi_azure_native/network/v20240101/get_virtual_network_peering.py +383 -0
- pulumi_azure_native/network/v20240101/get_virtual_network_tap.py +222 -0
- pulumi_azure_native/network/v20240101/get_virtual_router.py +227 -0
- pulumi_azure_native/network/v20240101/get_virtual_router_peering.py +161 -0
- pulumi_azure_native/network/v20240101/get_virtual_wan.py +235 -0
- pulumi_azure_native/network/v20240101/get_vpn_connection.py +357 -0
- pulumi_azure_native/network/v20240101/get_vpn_gateway.py +261 -0
- pulumi_azure_native/network/v20240101/get_vpn_link_connection_ike_sas.py +82 -0
- pulumi_azure_native/network/v20240101/get_vpn_server_configuration.py +326 -0
- pulumi_azure_native/network/v20240101/get_vpn_site.py +274 -0
- pulumi_azure_native/network/v20240101/get_web_application_firewall_policy.py +248 -0
- pulumi_azure_native/network/v20240101/hub_route_table.py +313 -0
- pulumi_azure_native/network/v20240101/hub_virtual_network_connection.py +371 -0
- pulumi_azure_native/network/v20240101/inbound_nat_rule.py +536 -0
- pulumi_azure_native/network/v20240101/ip_allocation.py +431 -0
- pulumi_azure_native/network/v20240101/ip_group.py +301 -0
- pulumi_azure_native/network/v20240101/list_active_connectivity_configurations.py +107 -0
- pulumi_azure_native/network/v20240101/list_active_security_admin_rules.py +107 -0
- pulumi_azure_native/network/v20240101/list_firewall_policy_idps_signature.py +119 -0
- pulumi_azure_native/network/v20240101/list_firewall_policy_idps_signatures_filter_value.py +83 -0
- pulumi_azure_native/network/v20240101/list_network_manager_deployment_status.py +113 -0
- pulumi_azure_native/network/v20240101/list_network_manager_effective_connectivity_configurations.py +102 -0
- pulumi_azure_native/network/v20240101/list_network_manager_effective_security_admin_rules.py +102 -0
- pulumi_azure_native/network/v20240101/load_balancer.py +531 -0
- pulumi_azure_native/network/v20240101/load_balancer_backend_address_pool.py +460 -0
- pulumi_azure_native/network/v20240101/local_network_gateway.py +379 -0
- pulumi_azure_native/network/v20240101/management_group_network_manager_connection.py +232 -0
- pulumi_azure_native/network/v20240101/nat_gateway.py +419 -0
- pulumi_azure_native/network/v20240101/nat_rule.py +391 -0
- pulumi_azure_native/network/v20240101/network_group.py +244 -0
- pulumi_azure_native/network/v20240101/network_interface.py +721 -0
- pulumi_azure_native/network/v20240101/network_interface_tap_configuration.py +265 -0
- pulumi_azure_native/network/v20240101/network_manager.py +363 -0
- pulumi_azure_native/network/v20240101/network_profile.py +303 -0
- pulumi_azure_native/network/v20240101/network_security_group.py +365 -0
- pulumi_azure_native/network/v20240101/network_virtual_appliance.py +672 -0
- pulumi_azure_native/network/v20240101/network_virtual_appliance_connection.py +361 -0
- pulumi_azure_native/network/v20240101/network_watcher.py +251 -0
- pulumi_azure_native/network/v20240101/outputs.py +31010 -0
- pulumi_azure_native/network/v20240101/p2s_vpn_gateway.py +438 -0
- pulumi_azure_native/network/v20240101/packet_capture.py +491 -0
- pulumi_azure_native/network/v20240101/private_dns_zone_group.py +254 -0
- pulumi_azure_native/network/v20240101/private_endpoint.py +496 -0
- pulumi_azure_native/network/v20240101/private_link_service.py +487 -0
- pulumi_azure_native/network/v20240101/private_link_service_private_endpoint_connection.py +294 -0
- pulumi_azure_native/network/v20240101/public_ip_address.py +738 -0
- pulumi_azure_native/network/v20240101/public_ip_prefix.py +526 -0
- pulumi_azure_native/network/v20240101/route.py +370 -0
- pulumi_azure_native/network/v20240101/route_filter.py +306 -0
- pulumi_azure_native/network/v20240101/route_filter_rule.py +343 -0
- pulumi_azure_native/network/v20240101/route_map.py +304 -0
- pulumi_azure_native/network/v20240101/route_table.py +335 -0
- pulumi_azure_native/network/v20240101/routing_intent.py +264 -0
- pulumi_azure_native/network/v20240101/scope_connection.py +282 -0
- pulumi_azure_native/network/v20240101/security_admin_configuration.py +274 -0
- pulumi_azure_native/network/v20240101/security_partner_provider.py +322 -0
- pulumi_azure_native/network/v20240101/security_rule.py +694 -0
- pulumi_azure_native/network/v20240101/service_endpoint_policy.py +373 -0
- pulumi_azure_native/network/v20240101/service_endpoint_policy_definition.py +339 -0
- pulumi_azure_native/network/v20240101/static_member.py +265 -0
- pulumi_azure_native/network/v20240101/subnet.py +729 -0
- pulumi_azure_native/network/v20240101/subscription_network_manager_connection.py +211 -0
- pulumi_azure_native/network/v20240101/virtual_appliance_site.py +293 -0
- pulumi_azure_native/network/v20240101/virtual_hub.py +800 -0
- pulumi_azure_native/network/v20240101/virtual_hub_bgp_connection.py +332 -0
- pulumi_azure_native/network/v20240101/virtual_hub_ip_configuration.py +352 -0
- pulumi_azure_native/network/v20240101/virtual_hub_route_table_v2.py +283 -0
- pulumi_azure_native/network/v20240101/virtual_network.py +636 -0
- pulumi_azure_native/network/v20240101/virtual_network_gateway.py +973 -0
- pulumi_azure_native/network/v20240101/virtual_network_gateway_connection.py +915 -0
- pulumi_azure_native/network/v20240101/virtual_network_gateway_nat_rule.py +371 -0
- pulumi_azure_native/network/v20240101/virtual_network_peering.py +788 -0
- pulumi_azure_native/network/v20240101/virtual_network_tap.py +361 -0
- pulumi_azure_native/network/v20240101/virtual_router.py +379 -0
- pulumi_azure_native/network/v20240101/virtual_router_peering.py +291 -0
- pulumi_azure_native/network/v20240101/virtual_wan.py +388 -0
- pulumi_azure_native/network/v20240101/vpn_connection.py +691 -0
- pulumi_azure_native/network/v20240101/vpn_gateway.py +473 -0
- pulumi_azure_native/network/v20240101/vpn_server_configuration.py +634 -0
- pulumi_azure_native/network/v20240101/vpn_site.py +514 -0
- pulumi_azure_native/network/v20240101/web_application_firewall_policy.py +382 -0
- pulumi_azure_native/network/virtual_appliance_site.py +3 -3
- pulumi_azure_native/network/virtual_hub.py +3 -3
- pulumi_azure_native/network/virtual_hub_bgp_connection.py +3 -3
- pulumi_azure_native/network/virtual_hub_ip_configuration.py +3 -3
- pulumi_azure_native/network/virtual_hub_route_table_v2.py +3 -3
- pulumi_azure_native/network/virtual_network.py +3 -3
- pulumi_azure_native/network/virtual_network_gateway.py +3 -3
- pulumi_azure_native/network/virtual_network_gateway_connection.py +3 -3
- pulumi_azure_native/network/virtual_network_gateway_nat_rule.py +3 -3
- pulumi_azure_native/network/virtual_network_peering.py +3 -3
- pulumi_azure_native/network/virtual_network_tap.py +3 -3
- pulumi_azure_native/network/virtual_router.py +3 -3
- pulumi_azure_native/network/virtual_router_peering.py +3 -3
- pulumi_azure_native/network/virtual_wan.py +3 -3
- pulumi_azure_native/network/vpn_connection.py +3 -3
- pulumi_azure_native/network/vpn_gateway.py +3 -3
- pulumi_azure_native/network/vpn_server_configuration.py +3 -3
- pulumi_azure_native/network/vpn_site.py +3 -3
- pulumi_azure_native/network/web_application_firewall_policy.py +3 -3
- pulumi_azure_native/pulumi-plugin.json +1 -1
- pulumi_azure_native/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/__init__.py +23 -0
- pulumi_azure_native/signalrservice/v20240401preview/_enums.py +102 -0
- pulumi_azure_native/signalrservice/v20240401preview/_inputs.py +1162 -0
- pulumi_azure_native/signalrservice/v20240401preview/get_signal_r.py +497 -0
- pulumi_azure_native/signalrservice/v20240401preview/get_signal_r_custom_certificate.py +175 -0
- pulumi_azure_native/signalrservice/v20240401preview/get_signal_r_custom_domain.py +162 -0
- pulumi_azure_native/signalrservice/v20240401preview/get_signal_r_private_endpoint_connection.py +175 -0
- pulumi_azure_native/signalrservice/v20240401preview/get_signal_r_replica.py +204 -0
- pulumi_azure_native/signalrservice/v20240401preview/get_signal_r_shared_private_link_resource.py +188 -0
- pulumi_azure_native/signalrservice/v20240401preview/list_signal_r_keys.py +117 -0
- pulumi_azure_native/signalrservice/v20240401preview/outputs.py +1733 -0
- pulumi_azure_native/signalrservice/v20240401preview/signal_r.py +887 -0
- pulumi_azure_native/signalrservice/v20240401preview/signal_r_custom_certificate.py +284 -0
- pulumi_azure_native/signalrservice/v20240401preview/signal_r_custom_domain.py +255 -0
- pulumi_azure_native/signalrservice/v20240401preview/signal_r_private_endpoint_connection.py +265 -0
- pulumi_azure_native/signalrservice/v20240401preview/signal_r_replica.py +362 -0
- pulumi_azure_native/signalrservice/v20240401preview/signal_r_shared_private_link_resource.py +294 -0
- 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/__init__.py +25 -0
- pulumi_azure_native/webpubsub/v20240401preview/_enums.py +97 -0
- pulumi_azure_native/webpubsub/v20240401preview/_inputs.py +1249 -0
- pulumi_azure_native/webpubsub/v20240401preview/get_web_pub_sub.py +453 -0
- pulumi_azure_native/webpubsub/v20240401preview/get_web_pub_sub_custom_certificate.py +175 -0
- pulumi_azure_native/webpubsub/v20240401preview/get_web_pub_sub_custom_domain.py +162 -0
- pulumi_azure_native/webpubsub/v20240401preview/get_web_pub_sub_hub.py +136 -0
- pulumi_azure_native/webpubsub/v20240401preview/get_web_pub_sub_private_endpoint_connection.py +175 -0
- pulumi_azure_native/webpubsub/v20240401preview/get_web_pub_sub_replica.py +204 -0
- pulumi_azure_native/webpubsub/v20240401preview/get_web_pub_sub_shared_private_link_resource.py +188 -0
- pulumi_azure_native/webpubsub/v20240401preview/list_web_pub_sub_keys.py +117 -0
- pulumi_azure_native/webpubsub/v20240401preview/outputs.py +1841 -0
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub.py +780 -0
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_custom_certificate.py +284 -0
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_custom_domain.py +255 -0
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_hub.py +217 -0
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_private_endpoint_connection.py +265 -0
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_replica.py +362 -0
- pulumi_azure_native/webpubsub/v20240401preview/web_pub_sub_shared_private_link_resource.py +294 -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-2.47.0a1719213276.dist-info → pulumi_azure_native-2.47.0a1719232402.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.47.0a1719213276.dist-info → pulumi_azure_native-2.47.0a1719232402.dist-info}/RECORD +1805 -1371
- /pulumi_azure_native/hdinsight/{v20240501 → v20240501preview}/__init__.py +0 -0
- /pulumi_azure_native/hdinsight/{v20240501 → v20240501preview}/_enums.py +0 -0
- {pulumi_azure_native-2.47.0a1719213276.dist-info → pulumi_azure_native-2.47.0a1719232402.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.47.0a1719213276.dist-info → pulumi_azure_native-2.47.0a1719232402.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,287 @@
|
|
|
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 pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetDscpConfigurationResult',
|
|
15
|
+
'AwaitableGetDscpConfigurationResult',
|
|
16
|
+
'get_dscp_configuration',
|
|
17
|
+
'get_dscp_configuration_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetDscpConfigurationResult:
|
|
22
|
+
"""
|
|
23
|
+
Differentiated Services Code Point configuration for any given network interface
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, associated_network_interfaces=None, destination_ip_ranges=None, destination_port_ranges=None, etag=None, id=None, location=None, markings=None, name=None, protocol=None, provisioning_state=None, qos_collection_id=None, qos_definition_collection=None, resource_guid=None, source_ip_ranges=None, source_port_ranges=None, tags=None, type=None):
|
|
26
|
+
if associated_network_interfaces and not isinstance(associated_network_interfaces, list):
|
|
27
|
+
raise TypeError("Expected argument 'associated_network_interfaces' to be a list")
|
|
28
|
+
pulumi.set(__self__, "associated_network_interfaces", associated_network_interfaces)
|
|
29
|
+
if destination_ip_ranges and not isinstance(destination_ip_ranges, list):
|
|
30
|
+
raise TypeError("Expected argument 'destination_ip_ranges' to be a list")
|
|
31
|
+
pulumi.set(__self__, "destination_ip_ranges", destination_ip_ranges)
|
|
32
|
+
if destination_port_ranges and not isinstance(destination_port_ranges, list):
|
|
33
|
+
raise TypeError("Expected argument 'destination_port_ranges' to be a list")
|
|
34
|
+
pulumi.set(__self__, "destination_port_ranges", destination_port_ranges)
|
|
35
|
+
if etag and not isinstance(etag, str):
|
|
36
|
+
raise TypeError("Expected argument 'etag' to be a str")
|
|
37
|
+
pulumi.set(__self__, "etag", etag)
|
|
38
|
+
if id and not isinstance(id, str):
|
|
39
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
40
|
+
pulumi.set(__self__, "id", id)
|
|
41
|
+
if location and not isinstance(location, str):
|
|
42
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
43
|
+
pulumi.set(__self__, "location", location)
|
|
44
|
+
if markings and not isinstance(markings, list):
|
|
45
|
+
raise TypeError("Expected argument 'markings' to be a list")
|
|
46
|
+
pulumi.set(__self__, "markings", markings)
|
|
47
|
+
if name and not isinstance(name, str):
|
|
48
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
49
|
+
pulumi.set(__self__, "name", name)
|
|
50
|
+
if protocol and not isinstance(protocol, str):
|
|
51
|
+
raise TypeError("Expected argument 'protocol' to be a str")
|
|
52
|
+
pulumi.set(__self__, "protocol", protocol)
|
|
53
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
54
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
55
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
56
|
+
if qos_collection_id and not isinstance(qos_collection_id, str):
|
|
57
|
+
raise TypeError("Expected argument 'qos_collection_id' to be a str")
|
|
58
|
+
pulumi.set(__self__, "qos_collection_id", qos_collection_id)
|
|
59
|
+
if qos_definition_collection and not isinstance(qos_definition_collection, list):
|
|
60
|
+
raise TypeError("Expected argument 'qos_definition_collection' to be a list")
|
|
61
|
+
pulumi.set(__self__, "qos_definition_collection", qos_definition_collection)
|
|
62
|
+
if resource_guid and not isinstance(resource_guid, str):
|
|
63
|
+
raise TypeError("Expected argument 'resource_guid' to be a str")
|
|
64
|
+
pulumi.set(__self__, "resource_guid", resource_guid)
|
|
65
|
+
if source_ip_ranges and not isinstance(source_ip_ranges, list):
|
|
66
|
+
raise TypeError("Expected argument 'source_ip_ranges' to be a list")
|
|
67
|
+
pulumi.set(__self__, "source_ip_ranges", source_ip_ranges)
|
|
68
|
+
if source_port_ranges and not isinstance(source_port_ranges, list):
|
|
69
|
+
raise TypeError("Expected argument 'source_port_ranges' to be a list")
|
|
70
|
+
pulumi.set(__self__, "source_port_ranges", source_port_ranges)
|
|
71
|
+
if tags and not isinstance(tags, dict):
|
|
72
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
73
|
+
pulumi.set(__self__, "tags", tags)
|
|
74
|
+
if type and not isinstance(type, str):
|
|
75
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
76
|
+
pulumi.set(__self__, "type", type)
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
@pulumi.getter(name="associatedNetworkInterfaces")
|
|
80
|
+
def associated_network_interfaces(self) -> Sequence['outputs.NetworkInterfaceResponse']:
|
|
81
|
+
"""
|
|
82
|
+
Associated Network Interfaces to the DSCP Configuration.
|
|
83
|
+
"""
|
|
84
|
+
return pulumi.get(self, "associated_network_interfaces")
|
|
85
|
+
|
|
86
|
+
@property
|
|
87
|
+
@pulumi.getter(name="destinationIpRanges")
|
|
88
|
+
def destination_ip_ranges(self) -> Optional[Sequence['outputs.QosIpRangeResponse']]:
|
|
89
|
+
"""
|
|
90
|
+
Destination IP ranges.
|
|
91
|
+
"""
|
|
92
|
+
return pulumi.get(self, "destination_ip_ranges")
|
|
93
|
+
|
|
94
|
+
@property
|
|
95
|
+
@pulumi.getter(name="destinationPortRanges")
|
|
96
|
+
def destination_port_ranges(self) -> Optional[Sequence['outputs.QosPortRangeResponse']]:
|
|
97
|
+
"""
|
|
98
|
+
Destination port ranges.
|
|
99
|
+
"""
|
|
100
|
+
return pulumi.get(self, "destination_port_ranges")
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
@pulumi.getter
|
|
104
|
+
def etag(self) -> str:
|
|
105
|
+
"""
|
|
106
|
+
A unique read-only string that changes whenever the resource is updated.
|
|
107
|
+
"""
|
|
108
|
+
return pulumi.get(self, "etag")
|
|
109
|
+
|
|
110
|
+
@property
|
|
111
|
+
@pulumi.getter
|
|
112
|
+
def id(self) -> Optional[str]:
|
|
113
|
+
"""
|
|
114
|
+
Resource ID.
|
|
115
|
+
"""
|
|
116
|
+
return pulumi.get(self, "id")
|
|
117
|
+
|
|
118
|
+
@property
|
|
119
|
+
@pulumi.getter
|
|
120
|
+
def location(self) -> Optional[str]:
|
|
121
|
+
"""
|
|
122
|
+
Resource location.
|
|
123
|
+
"""
|
|
124
|
+
return pulumi.get(self, "location")
|
|
125
|
+
|
|
126
|
+
@property
|
|
127
|
+
@pulumi.getter
|
|
128
|
+
def markings(self) -> Optional[Sequence[int]]:
|
|
129
|
+
"""
|
|
130
|
+
List of markings to be used in the configuration.
|
|
131
|
+
"""
|
|
132
|
+
return pulumi.get(self, "markings")
|
|
133
|
+
|
|
134
|
+
@property
|
|
135
|
+
@pulumi.getter
|
|
136
|
+
def name(self) -> str:
|
|
137
|
+
"""
|
|
138
|
+
Resource name.
|
|
139
|
+
"""
|
|
140
|
+
return pulumi.get(self, "name")
|
|
141
|
+
|
|
142
|
+
@property
|
|
143
|
+
@pulumi.getter
|
|
144
|
+
def protocol(self) -> Optional[str]:
|
|
145
|
+
"""
|
|
146
|
+
RNM supported protocol types.
|
|
147
|
+
"""
|
|
148
|
+
return pulumi.get(self, "protocol")
|
|
149
|
+
|
|
150
|
+
@property
|
|
151
|
+
@pulumi.getter(name="provisioningState")
|
|
152
|
+
def provisioning_state(self) -> str:
|
|
153
|
+
"""
|
|
154
|
+
The provisioning state of the DSCP Configuration resource.
|
|
155
|
+
"""
|
|
156
|
+
return pulumi.get(self, "provisioning_state")
|
|
157
|
+
|
|
158
|
+
@property
|
|
159
|
+
@pulumi.getter(name="qosCollectionId")
|
|
160
|
+
def qos_collection_id(self) -> str:
|
|
161
|
+
"""
|
|
162
|
+
Qos Collection ID generated by RNM.
|
|
163
|
+
"""
|
|
164
|
+
return pulumi.get(self, "qos_collection_id")
|
|
165
|
+
|
|
166
|
+
@property
|
|
167
|
+
@pulumi.getter(name="qosDefinitionCollection")
|
|
168
|
+
def qos_definition_collection(self) -> Optional[Sequence['outputs.QosDefinitionResponse']]:
|
|
169
|
+
"""
|
|
170
|
+
QoS object definitions
|
|
171
|
+
"""
|
|
172
|
+
return pulumi.get(self, "qos_definition_collection")
|
|
173
|
+
|
|
174
|
+
@property
|
|
175
|
+
@pulumi.getter(name="resourceGuid")
|
|
176
|
+
def resource_guid(self) -> str:
|
|
177
|
+
"""
|
|
178
|
+
The resource GUID property of the DSCP Configuration resource.
|
|
179
|
+
"""
|
|
180
|
+
return pulumi.get(self, "resource_guid")
|
|
181
|
+
|
|
182
|
+
@property
|
|
183
|
+
@pulumi.getter(name="sourceIpRanges")
|
|
184
|
+
def source_ip_ranges(self) -> Optional[Sequence['outputs.QosIpRangeResponse']]:
|
|
185
|
+
"""
|
|
186
|
+
Source IP ranges.
|
|
187
|
+
"""
|
|
188
|
+
return pulumi.get(self, "source_ip_ranges")
|
|
189
|
+
|
|
190
|
+
@property
|
|
191
|
+
@pulumi.getter(name="sourcePortRanges")
|
|
192
|
+
def source_port_ranges(self) -> Optional[Sequence['outputs.QosPortRangeResponse']]:
|
|
193
|
+
"""
|
|
194
|
+
Sources port ranges.
|
|
195
|
+
"""
|
|
196
|
+
return pulumi.get(self, "source_port_ranges")
|
|
197
|
+
|
|
198
|
+
@property
|
|
199
|
+
@pulumi.getter
|
|
200
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
201
|
+
"""
|
|
202
|
+
Resource tags.
|
|
203
|
+
"""
|
|
204
|
+
return pulumi.get(self, "tags")
|
|
205
|
+
|
|
206
|
+
@property
|
|
207
|
+
@pulumi.getter
|
|
208
|
+
def type(self) -> str:
|
|
209
|
+
"""
|
|
210
|
+
Resource type.
|
|
211
|
+
"""
|
|
212
|
+
return pulumi.get(self, "type")
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
class AwaitableGetDscpConfigurationResult(GetDscpConfigurationResult):
|
|
216
|
+
# pylint: disable=using-constant-test
|
|
217
|
+
def __await__(self):
|
|
218
|
+
if False:
|
|
219
|
+
yield self
|
|
220
|
+
return GetDscpConfigurationResult(
|
|
221
|
+
associated_network_interfaces=self.associated_network_interfaces,
|
|
222
|
+
destination_ip_ranges=self.destination_ip_ranges,
|
|
223
|
+
destination_port_ranges=self.destination_port_ranges,
|
|
224
|
+
etag=self.etag,
|
|
225
|
+
id=self.id,
|
|
226
|
+
location=self.location,
|
|
227
|
+
markings=self.markings,
|
|
228
|
+
name=self.name,
|
|
229
|
+
protocol=self.protocol,
|
|
230
|
+
provisioning_state=self.provisioning_state,
|
|
231
|
+
qos_collection_id=self.qos_collection_id,
|
|
232
|
+
qos_definition_collection=self.qos_definition_collection,
|
|
233
|
+
resource_guid=self.resource_guid,
|
|
234
|
+
source_ip_ranges=self.source_ip_ranges,
|
|
235
|
+
source_port_ranges=self.source_port_ranges,
|
|
236
|
+
tags=self.tags,
|
|
237
|
+
type=self.type)
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
def get_dscp_configuration(dscp_configuration_name: Optional[str] = None,
|
|
241
|
+
resource_group_name: Optional[str] = None,
|
|
242
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDscpConfigurationResult:
|
|
243
|
+
"""
|
|
244
|
+
Gets a DSCP Configuration.
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
:param str dscp_configuration_name: The name of the resource.
|
|
248
|
+
:param str resource_group_name: The name of the resource group.
|
|
249
|
+
"""
|
|
250
|
+
__args__ = dict()
|
|
251
|
+
__args__['dscpConfigurationName'] = dscp_configuration_name
|
|
252
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
253
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
254
|
+
__ret__ = pulumi.runtime.invoke('azure-native:network/v20240101:getDscpConfiguration', __args__, opts=opts, typ=GetDscpConfigurationResult).value
|
|
255
|
+
|
|
256
|
+
return AwaitableGetDscpConfigurationResult(
|
|
257
|
+
associated_network_interfaces=pulumi.get(__ret__, 'associated_network_interfaces'),
|
|
258
|
+
destination_ip_ranges=pulumi.get(__ret__, 'destination_ip_ranges'),
|
|
259
|
+
destination_port_ranges=pulumi.get(__ret__, 'destination_port_ranges'),
|
|
260
|
+
etag=pulumi.get(__ret__, 'etag'),
|
|
261
|
+
id=pulumi.get(__ret__, 'id'),
|
|
262
|
+
location=pulumi.get(__ret__, 'location'),
|
|
263
|
+
markings=pulumi.get(__ret__, 'markings'),
|
|
264
|
+
name=pulumi.get(__ret__, 'name'),
|
|
265
|
+
protocol=pulumi.get(__ret__, 'protocol'),
|
|
266
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
267
|
+
qos_collection_id=pulumi.get(__ret__, 'qos_collection_id'),
|
|
268
|
+
qos_definition_collection=pulumi.get(__ret__, 'qos_definition_collection'),
|
|
269
|
+
resource_guid=pulumi.get(__ret__, 'resource_guid'),
|
|
270
|
+
source_ip_ranges=pulumi.get(__ret__, 'source_ip_ranges'),
|
|
271
|
+
source_port_ranges=pulumi.get(__ret__, 'source_port_ranges'),
|
|
272
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
273
|
+
type=pulumi.get(__ret__, 'type'))
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
@_utilities.lift_output_func(get_dscp_configuration)
|
|
277
|
+
def get_dscp_configuration_output(dscp_configuration_name: Optional[pulumi.Input[str]] = None,
|
|
278
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
279
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDscpConfigurationResult]:
|
|
280
|
+
"""
|
|
281
|
+
Gets a DSCP Configuration.
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
:param str dscp_configuration_name: The name of the resource.
|
|
285
|
+
:param str resource_group_name: The name of the resource group.
|
|
286
|
+
"""
|
|
287
|
+
...
|
|
@@ -0,0 +1,378 @@
|
|
|
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 pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetExpressRouteCircuitResult',
|
|
15
|
+
'AwaitableGetExpressRouteCircuitResult',
|
|
16
|
+
'get_express_route_circuit',
|
|
17
|
+
'get_express_route_circuit_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetExpressRouteCircuitResult:
|
|
22
|
+
"""
|
|
23
|
+
ExpressRouteCircuit resource.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, allow_classic_operations=None, authorization_key=None, authorization_status=None, authorizations=None, bandwidth_in_gbps=None, circuit_provisioning_state=None, enable_direct_port_rate_limit=None, etag=None, express_route_port=None, gateway_manager_etag=None, global_reach_enabled=None, id=None, location=None, name=None, peerings=None, provisioning_state=None, service_key=None, service_provider_notes=None, service_provider_properties=None, service_provider_provisioning_state=None, sku=None, stag=None, tags=None, type=None):
|
|
26
|
+
if allow_classic_operations and not isinstance(allow_classic_operations, bool):
|
|
27
|
+
raise TypeError("Expected argument 'allow_classic_operations' to be a bool")
|
|
28
|
+
pulumi.set(__self__, "allow_classic_operations", allow_classic_operations)
|
|
29
|
+
if authorization_key and not isinstance(authorization_key, str):
|
|
30
|
+
raise TypeError("Expected argument 'authorization_key' to be a str")
|
|
31
|
+
pulumi.set(__self__, "authorization_key", authorization_key)
|
|
32
|
+
if authorization_status and not isinstance(authorization_status, str):
|
|
33
|
+
raise TypeError("Expected argument 'authorization_status' to be a str")
|
|
34
|
+
pulumi.set(__self__, "authorization_status", authorization_status)
|
|
35
|
+
if authorizations and not isinstance(authorizations, list):
|
|
36
|
+
raise TypeError("Expected argument 'authorizations' to be a list")
|
|
37
|
+
pulumi.set(__self__, "authorizations", authorizations)
|
|
38
|
+
if bandwidth_in_gbps and not isinstance(bandwidth_in_gbps, float):
|
|
39
|
+
raise TypeError("Expected argument 'bandwidth_in_gbps' to be a float")
|
|
40
|
+
pulumi.set(__self__, "bandwidth_in_gbps", bandwidth_in_gbps)
|
|
41
|
+
if circuit_provisioning_state and not isinstance(circuit_provisioning_state, str):
|
|
42
|
+
raise TypeError("Expected argument 'circuit_provisioning_state' to be a str")
|
|
43
|
+
pulumi.set(__self__, "circuit_provisioning_state", circuit_provisioning_state)
|
|
44
|
+
if enable_direct_port_rate_limit and not isinstance(enable_direct_port_rate_limit, bool):
|
|
45
|
+
raise TypeError("Expected argument 'enable_direct_port_rate_limit' to be a bool")
|
|
46
|
+
pulumi.set(__self__, "enable_direct_port_rate_limit", enable_direct_port_rate_limit)
|
|
47
|
+
if etag and not isinstance(etag, str):
|
|
48
|
+
raise TypeError("Expected argument 'etag' to be a str")
|
|
49
|
+
pulumi.set(__self__, "etag", etag)
|
|
50
|
+
if express_route_port and not isinstance(express_route_port, dict):
|
|
51
|
+
raise TypeError("Expected argument 'express_route_port' to be a dict")
|
|
52
|
+
pulumi.set(__self__, "express_route_port", express_route_port)
|
|
53
|
+
if gateway_manager_etag and not isinstance(gateway_manager_etag, str):
|
|
54
|
+
raise TypeError("Expected argument 'gateway_manager_etag' to be a str")
|
|
55
|
+
pulumi.set(__self__, "gateway_manager_etag", gateway_manager_etag)
|
|
56
|
+
if global_reach_enabled and not isinstance(global_reach_enabled, bool):
|
|
57
|
+
raise TypeError("Expected argument 'global_reach_enabled' to be a bool")
|
|
58
|
+
pulumi.set(__self__, "global_reach_enabled", global_reach_enabled)
|
|
59
|
+
if id and not isinstance(id, str):
|
|
60
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
61
|
+
pulumi.set(__self__, "id", id)
|
|
62
|
+
if location and not isinstance(location, str):
|
|
63
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
64
|
+
pulumi.set(__self__, "location", location)
|
|
65
|
+
if name and not isinstance(name, str):
|
|
66
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
67
|
+
pulumi.set(__self__, "name", name)
|
|
68
|
+
if peerings and not isinstance(peerings, list):
|
|
69
|
+
raise TypeError("Expected argument 'peerings' to be a list")
|
|
70
|
+
pulumi.set(__self__, "peerings", peerings)
|
|
71
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
72
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
73
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
74
|
+
if service_key and not isinstance(service_key, str):
|
|
75
|
+
raise TypeError("Expected argument 'service_key' to be a str")
|
|
76
|
+
pulumi.set(__self__, "service_key", service_key)
|
|
77
|
+
if service_provider_notes and not isinstance(service_provider_notes, str):
|
|
78
|
+
raise TypeError("Expected argument 'service_provider_notes' to be a str")
|
|
79
|
+
pulumi.set(__self__, "service_provider_notes", service_provider_notes)
|
|
80
|
+
if service_provider_properties and not isinstance(service_provider_properties, dict):
|
|
81
|
+
raise TypeError("Expected argument 'service_provider_properties' to be a dict")
|
|
82
|
+
pulumi.set(__self__, "service_provider_properties", service_provider_properties)
|
|
83
|
+
if service_provider_provisioning_state and not isinstance(service_provider_provisioning_state, str):
|
|
84
|
+
raise TypeError("Expected argument 'service_provider_provisioning_state' to be a str")
|
|
85
|
+
pulumi.set(__self__, "service_provider_provisioning_state", service_provider_provisioning_state)
|
|
86
|
+
if sku and not isinstance(sku, dict):
|
|
87
|
+
raise TypeError("Expected argument 'sku' to be a dict")
|
|
88
|
+
pulumi.set(__self__, "sku", sku)
|
|
89
|
+
if stag and not isinstance(stag, int):
|
|
90
|
+
raise TypeError("Expected argument 'stag' to be a int")
|
|
91
|
+
pulumi.set(__self__, "stag", stag)
|
|
92
|
+
if tags and not isinstance(tags, dict):
|
|
93
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
94
|
+
pulumi.set(__self__, "tags", tags)
|
|
95
|
+
if type and not isinstance(type, str):
|
|
96
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
97
|
+
pulumi.set(__self__, "type", type)
|
|
98
|
+
|
|
99
|
+
@property
|
|
100
|
+
@pulumi.getter(name="allowClassicOperations")
|
|
101
|
+
def allow_classic_operations(self) -> Optional[bool]:
|
|
102
|
+
"""
|
|
103
|
+
Allow classic operations.
|
|
104
|
+
"""
|
|
105
|
+
return pulumi.get(self, "allow_classic_operations")
|
|
106
|
+
|
|
107
|
+
@property
|
|
108
|
+
@pulumi.getter(name="authorizationKey")
|
|
109
|
+
def authorization_key(self) -> Optional[str]:
|
|
110
|
+
"""
|
|
111
|
+
The authorizationKey.
|
|
112
|
+
"""
|
|
113
|
+
return pulumi.get(self, "authorization_key")
|
|
114
|
+
|
|
115
|
+
@property
|
|
116
|
+
@pulumi.getter(name="authorizationStatus")
|
|
117
|
+
def authorization_status(self) -> str:
|
|
118
|
+
"""
|
|
119
|
+
The authorization status of the Circuit.
|
|
120
|
+
"""
|
|
121
|
+
return pulumi.get(self, "authorization_status")
|
|
122
|
+
|
|
123
|
+
@property
|
|
124
|
+
@pulumi.getter
|
|
125
|
+
def authorizations(self) -> Optional[Sequence['outputs.ExpressRouteCircuitAuthorizationResponse']]:
|
|
126
|
+
"""
|
|
127
|
+
The list of authorizations.
|
|
128
|
+
"""
|
|
129
|
+
return pulumi.get(self, "authorizations")
|
|
130
|
+
|
|
131
|
+
@property
|
|
132
|
+
@pulumi.getter(name="bandwidthInGbps")
|
|
133
|
+
def bandwidth_in_gbps(self) -> Optional[float]:
|
|
134
|
+
"""
|
|
135
|
+
The bandwidth of the circuit when the circuit is provisioned on an ExpressRoutePort resource.
|
|
136
|
+
"""
|
|
137
|
+
return pulumi.get(self, "bandwidth_in_gbps")
|
|
138
|
+
|
|
139
|
+
@property
|
|
140
|
+
@pulumi.getter(name="circuitProvisioningState")
|
|
141
|
+
def circuit_provisioning_state(self) -> Optional[str]:
|
|
142
|
+
"""
|
|
143
|
+
The CircuitProvisioningState state of the resource.
|
|
144
|
+
"""
|
|
145
|
+
return pulumi.get(self, "circuit_provisioning_state")
|
|
146
|
+
|
|
147
|
+
@property
|
|
148
|
+
@pulumi.getter(name="enableDirectPortRateLimit")
|
|
149
|
+
def enable_direct_port_rate_limit(self) -> Optional[bool]:
|
|
150
|
+
"""
|
|
151
|
+
Flag denoting rate-limiting status of the ExpressRoute direct-port circuit.
|
|
152
|
+
"""
|
|
153
|
+
return pulumi.get(self, "enable_direct_port_rate_limit")
|
|
154
|
+
|
|
155
|
+
@property
|
|
156
|
+
@pulumi.getter
|
|
157
|
+
def etag(self) -> str:
|
|
158
|
+
"""
|
|
159
|
+
A unique read-only string that changes whenever the resource is updated.
|
|
160
|
+
"""
|
|
161
|
+
return pulumi.get(self, "etag")
|
|
162
|
+
|
|
163
|
+
@property
|
|
164
|
+
@pulumi.getter(name="expressRoutePort")
|
|
165
|
+
def express_route_port(self) -> Optional['outputs.SubResourceResponse']:
|
|
166
|
+
"""
|
|
167
|
+
The reference to the ExpressRoutePort resource when the circuit is provisioned on an ExpressRoutePort resource.
|
|
168
|
+
"""
|
|
169
|
+
return pulumi.get(self, "express_route_port")
|
|
170
|
+
|
|
171
|
+
@property
|
|
172
|
+
@pulumi.getter(name="gatewayManagerEtag")
|
|
173
|
+
def gateway_manager_etag(self) -> Optional[str]:
|
|
174
|
+
"""
|
|
175
|
+
The GatewayManager Etag.
|
|
176
|
+
"""
|
|
177
|
+
return pulumi.get(self, "gateway_manager_etag")
|
|
178
|
+
|
|
179
|
+
@property
|
|
180
|
+
@pulumi.getter(name="globalReachEnabled")
|
|
181
|
+
def global_reach_enabled(self) -> Optional[bool]:
|
|
182
|
+
"""
|
|
183
|
+
Flag denoting global reach status.
|
|
184
|
+
"""
|
|
185
|
+
return pulumi.get(self, "global_reach_enabled")
|
|
186
|
+
|
|
187
|
+
@property
|
|
188
|
+
@pulumi.getter
|
|
189
|
+
def id(self) -> Optional[str]:
|
|
190
|
+
"""
|
|
191
|
+
Resource ID.
|
|
192
|
+
"""
|
|
193
|
+
return pulumi.get(self, "id")
|
|
194
|
+
|
|
195
|
+
@property
|
|
196
|
+
@pulumi.getter
|
|
197
|
+
def location(self) -> Optional[str]:
|
|
198
|
+
"""
|
|
199
|
+
Resource location.
|
|
200
|
+
"""
|
|
201
|
+
return pulumi.get(self, "location")
|
|
202
|
+
|
|
203
|
+
@property
|
|
204
|
+
@pulumi.getter
|
|
205
|
+
def name(self) -> str:
|
|
206
|
+
"""
|
|
207
|
+
Resource name.
|
|
208
|
+
"""
|
|
209
|
+
return pulumi.get(self, "name")
|
|
210
|
+
|
|
211
|
+
@property
|
|
212
|
+
@pulumi.getter
|
|
213
|
+
def peerings(self) -> Optional[Sequence['outputs.ExpressRouteCircuitPeeringResponse']]:
|
|
214
|
+
"""
|
|
215
|
+
The list of peerings.
|
|
216
|
+
"""
|
|
217
|
+
return pulumi.get(self, "peerings")
|
|
218
|
+
|
|
219
|
+
@property
|
|
220
|
+
@pulumi.getter(name="provisioningState")
|
|
221
|
+
def provisioning_state(self) -> str:
|
|
222
|
+
"""
|
|
223
|
+
The provisioning state of the express route circuit resource.
|
|
224
|
+
"""
|
|
225
|
+
return pulumi.get(self, "provisioning_state")
|
|
226
|
+
|
|
227
|
+
@property
|
|
228
|
+
@pulumi.getter(name="serviceKey")
|
|
229
|
+
def service_key(self) -> Optional[str]:
|
|
230
|
+
"""
|
|
231
|
+
The ServiceKey.
|
|
232
|
+
"""
|
|
233
|
+
return pulumi.get(self, "service_key")
|
|
234
|
+
|
|
235
|
+
@property
|
|
236
|
+
@pulumi.getter(name="serviceProviderNotes")
|
|
237
|
+
def service_provider_notes(self) -> Optional[str]:
|
|
238
|
+
"""
|
|
239
|
+
The ServiceProviderNotes.
|
|
240
|
+
"""
|
|
241
|
+
return pulumi.get(self, "service_provider_notes")
|
|
242
|
+
|
|
243
|
+
@property
|
|
244
|
+
@pulumi.getter(name="serviceProviderProperties")
|
|
245
|
+
def service_provider_properties(self) -> Optional['outputs.ExpressRouteCircuitServiceProviderPropertiesResponse']:
|
|
246
|
+
"""
|
|
247
|
+
The ServiceProviderProperties.
|
|
248
|
+
"""
|
|
249
|
+
return pulumi.get(self, "service_provider_properties")
|
|
250
|
+
|
|
251
|
+
@property
|
|
252
|
+
@pulumi.getter(name="serviceProviderProvisioningState")
|
|
253
|
+
def service_provider_provisioning_state(self) -> Optional[str]:
|
|
254
|
+
"""
|
|
255
|
+
The ServiceProviderProvisioningState state of the resource.
|
|
256
|
+
"""
|
|
257
|
+
return pulumi.get(self, "service_provider_provisioning_state")
|
|
258
|
+
|
|
259
|
+
@property
|
|
260
|
+
@pulumi.getter
|
|
261
|
+
def sku(self) -> Optional['outputs.ExpressRouteCircuitSkuResponse']:
|
|
262
|
+
"""
|
|
263
|
+
The SKU.
|
|
264
|
+
"""
|
|
265
|
+
return pulumi.get(self, "sku")
|
|
266
|
+
|
|
267
|
+
@property
|
|
268
|
+
@pulumi.getter
|
|
269
|
+
def stag(self) -> int:
|
|
270
|
+
"""
|
|
271
|
+
The identifier of the circuit traffic. Outer tag for QinQ encapsulation.
|
|
272
|
+
"""
|
|
273
|
+
return pulumi.get(self, "stag")
|
|
274
|
+
|
|
275
|
+
@property
|
|
276
|
+
@pulumi.getter
|
|
277
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
278
|
+
"""
|
|
279
|
+
Resource tags.
|
|
280
|
+
"""
|
|
281
|
+
return pulumi.get(self, "tags")
|
|
282
|
+
|
|
283
|
+
@property
|
|
284
|
+
@pulumi.getter
|
|
285
|
+
def type(self) -> str:
|
|
286
|
+
"""
|
|
287
|
+
Resource type.
|
|
288
|
+
"""
|
|
289
|
+
return pulumi.get(self, "type")
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
class AwaitableGetExpressRouteCircuitResult(GetExpressRouteCircuitResult):
|
|
293
|
+
# pylint: disable=using-constant-test
|
|
294
|
+
def __await__(self):
|
|
295
|
+
if False:
|
|
296
|
+
yield self
|
|
297
|
+
return GetExpressRouteCircuitResult(
|
|
298
|
+
allow_classic_operations=self.allow_classic_operations,
|
|
299
|
+
authorization_key=self.authorization_key,
|
|
300
|
+
authorization_status=self.authorization_status,
|
|
301
|
+
authorizations=self.authorizations,
|
|
302
|
+
bandwidth_in_gbps=self.bandwidth_in_gbps,
|
|
303
|
+
circuit_provisioning_state=self.circuit_provisioning_state,
|
|
304
|
+
enable_direct_port_rate_limit=self.enable_direct_port_rate_limit,
|
|
305
|
+
etag=self.etag,
|
|
306
|
+
express_route_port=self.express_route_port,
|
|
307
|
+
gateway_manager_etag=self.gateway_manager_etag,
|
|
308
|
+
global_reach_enabled=self.global_reach_enabled,
|
|
309
|
+
id=self.id,
|
|
310
|
+
location=self.location,
|
|
311
|
+
name=self.name,
|
|
312
|
+
peerings=self.peerings,
|
|
313
|
+
provisioning_state=self.provisioning_state,
|
|
314
|
+
service_key=self.service_key,
|
|
315
|
+
service_provider_notes=self.service_provider_notes,
|
|
316
|
+
service_provider_properties=self.service_provider_properties,
|
|
317
|
+
service_provider_provisioning_state=self.service_provider_provisioning_state,
|
|
318
|
+
sku=self.sku,
|
|
319
|
+
stag=self.stag,
|
|
320
|
+
tags=self.tags,
|
|
321
|
+
type=self.type)
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
def get_express_route_circuit(circuit_name: Optional[str] = None,
|
|
325
|
+
resource_group_name: Optional[str] = None,
|
|
326
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetExpressRouteCircuitResult:
|
|
327
|
+
"""
|
|
328
|
+
Gets information about the specified express route circuit.
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
:param str circuit_name: The name of express route circuit.
|
|
332
|
+
:param str resource_group_name: The name of the resource group.
|
|
333
|
+
"""
|
|
334
|
+
__args__ = dict()
|
|
335
|
+
__args__['circuitName'] = circuit_name
|
|
336
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
337
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
338
|
+
__ret__ = pulumi.runtime.invoke('azure-native:network/v20240101:getExpressRouteCircuit', __args__, opts=opts, typ=GetExpressRouteCircuitResult).value
|
|
339
|
+
|
|
340
|
+
return AwaitableGetExpressRouteCircuitResult(
|
|
341
|
+
allow_classic_operations=pulumi.get(__ret__, 'allow_classic_operations'),
|
|
342
|
+
authorization_key=pulumi.get(__ret__, 'authorization_key'),
|
|
343
|
+
authorization_status=pulumi.get(__ret__, 'authorization_status'),
|
|
344
|
+
authorizations=pulumi.get(__ret__, 'authorizations'),
|
|
345
|
+
bandwidth_in_gbps=pulumi.get(__ret__, 'bandwidth_in_gbps'),
|
|
346
|
+
circuit_provisioning_state=pulumi.get(__ret__, 'circuit_provisioning_state'),
|
|
347
|
+
enable_direct_port_rate_limit=pulumi.get(__ret__, 'enable_direct_port_rate_limit'),
|
|
348
|
+
etag=pulumi.get(__ret__, 'etag'),
|
|
349
|
+
express_route_port=pulumi.get(__ret__, 'express_route_port'),
|
|
350
|
+
gateway_manager_etag=pulumi.get(__ret__, 'gateway_manager_etag'),
|
|
351
|
+
global_reach_enabled=pulumi.get(__ret__, 'global_reach_enabled'),
|
|
352
|
+
id=pulumi.get(__ret__, 'id'),
|
|
353
|
+
location=pulumi.get(__ret__, 'location'),
|
|
354
|
+
name=pulumi.get(__ret__, 'name'),
|
|
355
|
+
peerings=pulumi.get(__ret__, 'peerings'),
|
|
356
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
357
|
+
service_key=pulumi.get(__ret__, 'service_key'),
|
|
358
|
+
service_provider_notes=pulumi.get(__ret__, 'service_provider_notes'),
|
|
359
|
+
service_provider_properties=pulumi.get(__ret__, 'service_provider_properties'),
|
|
360
|
+
service_provider_provisioning_state=pulumi.get(__ret__, 'service_provider_provisioning_state'),
|
|
361
|
+
sku=pulumi.get(__ret__, 'sku'),
|
|
362
|
+
stag=pulumi.get(__ret__, 'stag'),
|
|
363
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
364
|
+
type=pulumi.get(__ret__, 'type'))
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
@_utilities.lift_output_func(get_express_route_circuit)
|
|
368
|
+
def get_express_route_circuit_output(circuit_name: Optional[pulumi.Input[str]] = None,
|
|
369
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
370
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetExpressRouteCircuitResult]:
|
|
371
|
+
"""
|
|
372
|
+
Gets information about the specified express route circuit.
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
:param str circuit_name: The name of express route circuit.
|
|
376
|
+
:param str resource_group_name: The name of the resource group.
|
|
377
|
+
"""
|
|
378
|
+
...
|