pulumi-azure-native 2.29.1a1708510433__py3-none-any.whl → 2.29.1a1708705299__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 +184 -0
- pulumi_azure_native/_utilities.py +2 -6
- pulumi_azure_native/app/__init__.py +7 -0
- pulumi_azure_native/app/_enums.py +19 -0
- pulumi_azure_native/app/_inputs.py +164 -0
- pulumi_azure_native/app/app_resiliency.py +5 -1
- pulumi_azure_native/app/build.py +5 -1
- pulumi_azure_native/app/builder.py +5 -1
- 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_source_control.py +3 -3
- pulumi_azure_native/app/dapr_component.py +3 -3
- pulumi_azure_native/app/dapr_component_resiliency_policy.py +5 -1
- pulumi_azure_native/app/dapr_subscription.py +5 -1
- pulumi_azure_native/app/dot_net_component.py +285 -0
- pulumi_azure_native/app/get_app_resiliency.py +4 -0
- pulumi_azure_native/app/get_build.py +4 -0
- pulumi_azure_native/app/get_builder.py +4 -0
- 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_source_control.py +2 -2
- pulumi_azure_native/app/get_dapr_component.py +2 -2
- pulumi_azure_native/app/get_dapr_component_resiliency_policy.py +4 -0
- pulumi_azure_native/app/get_dapr_subscription.py +4 -0
- pulumi_azure_native/app/get_dot_net_component.py +177 -0
- pulumi_azure_native/app/get_java_component.py +177 -0
- pulumi_azure_native/app/get_job.py +2 -2
- 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_environments_storage.py +2 -2
- pulumi_azure_native/app/java_component.py +285 -0
- pulumi_azure_native/app/job.py +3 -3
- pulumi_azure_native/app/list_build_auth_token.py +4 -0
- 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/managed_certificate.py +3 -3
- pulumi_azure_native/app/managed_environment.py +3 -3
- pulumi_azure_native/app/managed_environments_storage.py +3 -3
- pulumi_azure_native/app/outputs.py +212 -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/__init__.py +58 -0
- pulumi_azure_native/app/v20231102preview/_enums.py +239 -0
- pulumi_azure_native/app/v20231102preview/_inputs.py +7921 -0
- pulumi_azure_native/app/v20231102preview/app_resiliency.py +359 -0
- pulumi_azure_native/app/v20231102preview/build.py +294 -0
- pulumi_azure_native/app/v20231102preview/builder.py +322 -0
- pulumi_azure_native/app/v20231102preview/certificate.py +274 -0
- pulumi_azure_native/app/v20231102preview/connected_environment.py +370 -0
- pulumi_azure_native/app/v20231102preview/connected_environments_certificate.py +274 -0
- pulumi_azure_native/app/v20231102preview/connected_environments_dapr_component.py +451 -0
- pulumi_azure_native/app/v20231102preview/connected_environments_storage.py +216 -0
- pulumi_azure_native/app/v20231102preview/container_app.py +526 -0
- pulumi_azure_native/app/v20231102preview/container_apps_auth_config.py +361 -0
- pulumi_azure_native/app/v20231102preview/container_apps_source_control.py +291 -0
- pulumi_azure_native/app/v20231102preview/dapr_component.py +451 -0
- pulumi_azure_native/app/v20231102preview/dapr_component_resiliency_policy.py +264 -0
- pulumi_azure_native/app/v20231102preview/dapr_subscription.py +388 -0
- pulumi_azure_native/app/v20231102preview/dot_net_component.py +283 -0
- pulumi_azure_native/app/v20231102preview/get_app_resiliency.py +201 -0
- pulumi_azure_native/app/v20231102preview/get_build.py +214 -0
- pulumi_azure_native/app/v20231102preview/get_builder.py +196 -0
- pulumi_azure_native/app/v20231102preview/get_certificate.py +162 -0
- pulumi_azure_native/app/v20231102preview/get_connected_environment.py +235 -0
- pulumi_azure_native/app/v20231102preview/get_connected_environments_certificate.py +162 -0
- pulumi_azure_native/app/v20231102preview/get_connected_environments_dapr_component.py +240 -0
- pulumi_azure_native/app/v20231102preview/get_connected_environments_storage.py +136 -0
- pulumi_azure_native/app/v20231102preview/get_container_app.py +339 -0
- pulumi_azure_native/app/v20231102preview/get_container_app_auth_token.py +170 -0
- pulumi_azure_native/app/v20231102preview/get_container_apps_auth_config.py +201 -0
- pulumi_azure_native/app/v20231102preview/get_container_apps_source_control.py +177 -0
- pulumi_azure_native/app/v20231102preview/get_dapr_component.py +240 -0
- pulumi_azure_native/app/v20231102preview/get_dapr_component_resiliency_policy.py +154 -0
- pulumi_azure_native/app/v20231102preview/get_dapr_subscription.py +214 -0
- pulumi_azure_native/app/v20231102preview/get_dot_net_component.py +175 -0
- pulumi_azure_native/app/v20231102preview/get_java_component.py +175 -0
- pulumi_azure_native/app/v20231102preview/get_job.py +261 -0
- pulumi_azure_native/app/v20231102preview/get_managed_certificate.py +162 -0
- pulumi_azure_native/app/v20231102preview/get_managed_environment.py +406 -0
- pulumi_azure_native/app/v20231102preview/get_managed_environment_auth_token.py +170 -0
- pulumi_azure_native/app/v20231102preview/get_managed_environments_storage.py +136 -0
- pulumi_azure_native/app/v20231102preview/java_component.py +283 -0
- pulumi_azure_native/app/v20231102preview/job.py +428 -0
- pulumi_azure_native/app/v20231102preview/list_build_auth_token.py +96 -0
- pulumi_azure_native/app/v20231102preview/list_connected_environments_dapr_component_secrets.py +84 -0
- pulumi_azure_native/app/v20231102preview/list_container_app_custom_host_name_analysis.py +227 -0
- pulumi_azure_native/app/v20231102preview/list_container_app_secrets.py +79 -0
- pulumi_azure_native/app/v20231102preview/list_dapr_component_secrets.py +84 -0
- pulumi_azure_native/app/v20231102preview/list_job_secrets.py +79 -0
- pulumi_azure_native/app/v20231102preview/managed_certificate.py +274 -0
- pulumi_azure_native/app/v20231102preview/managed_environment.py +679 -0
- pulumi_azure_native/app/v20231102preview/managed_environments_storage.py +216 -0
- pulumi_azure_native/app/v20231102preview/outputs.py +9200 -0
- pulumi_azure_native/containerservice/__init__.py +6 -0
- pulumi_azure_native/containerservice/agent_pool.py +3 -3
- pulumi_azure_native/containerservice/get_agent_pool.py +2 -2
- pulumi_azure_native/containerservice/get_maintenance_configuration.py +2 -2
- pulumi_azure_native/containerservice/get_managed_cluster.py +2 -2
- pulumi_azure_native/containerservice/get_managed_cluster_snapshot.py +2 -2
- pulumi_azure_native/containerservice/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/containerservice/get_snapshot.py +2 -2
- pulumi_azure_native/containerservice/get_trusted_access_role_binding.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_admin_credentials.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_monitoring_user_credentials.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_user_credentials.py +2 -2
- pulumi_azure_native/containerservice/maintenance_configuration.py +3 -3
- pulumi_azure_native/containerservice/managed_cluster.py +3 -3
- pulumi_azure_native/containerservice/managed_cluster_snapshot.py +3 -3
- pulumi_azure_native/containerservice/private_endpoint_connection.py +3 -3
- pulumi_azure_native/containerservice/snapshot.py +3 -3
- pulumi_azure_native/containerservice/trusted_access_role_binding.py +3 -3
- pulumi_azure_native/containerservice/v20190601/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20200601/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20210201/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20210501/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20210801/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20220402preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230401/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230401/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230401/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230401/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230401/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230601/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230601/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230601/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230601/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230601/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230701/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230701/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230701/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230701/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230701/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230801/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230801/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230801/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230801/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230801/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230901/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230901/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230901/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230901/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230901/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230901/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20231001/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20231001/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20231001/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20231001/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20231001/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231001/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20231101/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20231101/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20231101/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20231101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20231101/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231101/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240101/__init__.py +25 -0
- pulumi_azure_native/containerservice/v20240101/_enums.py +620 -0
- pulumi_azure_native/containerservice/v20240101/_inputs.py +5394 -0
- pulumi_azure_native/containerservice/v20240101/agent_pool.py +1357 -0
- pulumi_azure_native/containerservice/v20240101/get_agent_pool.py +656 -0
- pulumi_azure_native/containerservice/v20240101/get_maintenance_configuration.py +162 -0
- pulumi_azure_native/containerservice/v20240101/get_managed_cluster.py +703 -0
- pulumi_azure_native/containerservice/v20240101/get_private_endpoint_connection.py +149 -0
- pulumi_azure_native/containerservice/v20240101/get_snapshot.py +248 -0
- pulumi_azure_native/containerservice/v20240101/get_trusted_access_role_binding.py +162 -0
- pulumi_azure_native/containerservice/v20240101/list_managed_cluster_admin_credentials.py +84 -0
- pulumi_azure_native/containerservice/v20240101/list_managed_cluster_monitoring_user_credentials.py +84 -0
- pulumi_azure_native/containerservice/v20240101/list_managed_cluster_user_credentials.py +89 -0
- pulumi_azure_native/containerservice/v20240101/maintenance_configuration.py +274 -0
- pulumi_azure_native/containerservice/v20240101/managed_cluster.py +1319 -0
- pulumi_azure_native/containerservice/v20240101/outputs.py +6265 -0
- pulumi_azure_native/containerservice/v20240101/private_endpoint_connection.py +246 -0
- pulumi_azure_native/containerservice/v20240101/snapshot.py +342 -0
- pulumi_azure_native/containerservice/v20240101/trusted_access_role_binding.py +255 -0
- pulumi_azure_native/containerservice/v20240102preview/__init__.py +27 -0
- pulumi_azure_native/containerservice/v20240102preview/_enums.py +794 -0
- pulumi_azure_native/containerservice/v20240102preview/_inputs.py +6636 -0
- pulumi_azure_native/containerservice/v20240102preview/agent_pool.py +1647 -0
- pulumi_azure_native/containerservice/v20240102preview/get_agent_pool.py +786 -0
- pulumi_azure_native/containerservice/v20240102preview/get_maintenance_configuration.py +162 -0
- pulumi_azure_native/containerservice/v20240102preview/get_managed_cluster.py +807 -0
- pulumi_azure_native/containerservice/v20240102preview/get_managed_cluster_snapshot.py +183 -0
- pulumi_azure_native/containerservice/v20240102preview/get_private_endpoint_connection.py +149 -0
- pulumi_azure_native/containerservice/v20240102preview/get_snapshot.py +248 -0
- pulumi_azure_native/containerservice/v20240102preview/get_trusted_access_role_binding.py +162 -0
- pulumi_azure_native/containerservice/v20240102preview/list_managed_cluster_admin_credentials.py +84 -0
- pulumi_azure_native/containerservice/v20240102preview/list_managed_cluster_monitoring_user_credentials.py +84 -0
- pulumi_azure_native/containerservice/v20240102preview/list_managed_cluster_user_credentials.py +89 -0
- pulumi_azure_native/containerservice/v20240102preview/maintenance_configuration.py +274 -0
- pulumi_azure_native/containerservice/v20240102preview/managed_cluster.py +1551 -0
- pulumi_azure_native/containerservice/v20240102preview/managed_cluster_snapshot.py +292 -0
- pulumi_azure_native/containerservice/v20240102preview/outputs.py +7775 -0
- pulumi_azure_native/containerservice/v20240102preview/private_endpoint_connection.py +246 -0
- pulumi_azure_native/containerservice/v20240102preview/snapshot.py +342 -0
- pulumi_azure_native/containerservice/v20240102preview/trusted_access_role_binding.py +255 -0
- pulumi_azure_native/databasewatcher/__init__.py +24 -0
- pulumi_azure_native/databasewatcher/_enums.py +68 -0
- pulumi_azure_native/databasewatcher/_inputs.py +228 -0
- pulumi_azure_native/databasewatcher/get_shared_private_link_resource.py +203 -0
- pulumi_azure_native/databasewatcher/get_target.py +203 -0
- pulumi_azure_native/databasewatcher/get_watcher.py +198 -0
- pulumi_azure_native/databasewatcher/outputs.py +447 -0
- pulumi_azure_native/databasewatcher/shared_private_link_resource.py +326 -0
- pulumi_azure_native/databasewatcher/target.py +347 -0
- pulumi_azure_native/databasewatcher/v20230901preview/__init__.py +16 -0
- pulumi_azure_native/databasewatcher/v20230901preview/_enums.py +68 -0
- pulumi_azure_native/databasewatcher/v20230901preview/_inputs.py +228 -0
- pulumi_azure_native/databasewatcher/v20230901preview/get_shared_private_link_resource.py +201 -0
- pulumi_azure_native/databasewatcher/v20230901preview/get_target.py +201 -0
- pulumi_azure_native/databasewatcher/v20230901preview/get_watcher.py +196 -0
- pulumi_azure_native/databasewatcher/v20230901preview/outputs.py +447 -0
- pulumi_azure_native/databasewatcher/v20230901preview/shared_private_link_resource.py +324 -0
- pulumi_azure_native/databasewatcher/v20230901preview/target.py +345 -0
- pulumi_azure_native/databasewatcher/v20230901preview/watcher.py +302 -0
- pulumi_azure_native/databasewatcher/watcher.py +304 -0
- pulumi_azure_native/databox/__init__.py +3 -0
- pulumi_azure_native/databox/get_job.py +2 -2
- pulumi_azure_native/databox/job.py +3 -3
- pulumi_azure_native/databox/list_job_credentials.py +2 -2
- pulumi_azure_native/databox/v20221201/job.py +1 -1
- pulumi_azure_native/databox/v20230301/job.py +1 -1
- pulumi_azure_native/databox/v20231201/job.py +1 -1
- pulumi_azure_native/databox/v20240201preview/job.py +1 -1
- pulumi_azure_native/databox/v20240301preview/__init__.py +13 -0
- pulumi_azure_native/databox/v20240301preview/_enums.py +301 -0
- pulumi_azure_native/databox/v20240301preview/_inputs.py +2366 -0
- pulumi_azure_native/databox/v20240301preview/get_job.py +396 -0
- pulumi_azure_native/databox/v20240301preview/job.py +534 -0
- pulumi_azure_native/databox/v20240301preview/list_job_credentials.py +92 -0
- pulumi_azure_native/databox/v20240301preview/outputs.py +6392 -0
- pulumi_azure_native/datafactory/_enums.py +29 -0
- pulumi_azure_native/datafactory/_inputs.py +1095 -8
- pulumi_azure_native/datafactory/dataset.py +7 -7
- pulumi_azure_native/datafactory/linked_service.py +7 -7
- pulumi_azure_native/datafactory/outputs.py +1002 -2
- pulumi_azure_native/datafactory/v20180601/_enums.py +29 -0
- pulumi_azure_native/datafactory/v20180601/_inputs.py +1095 -8
- pulumi_azure_native/datafactory/v20180601/dataset.py +7 -7
- pulumi_azure_native/datafactory/v20180601/linked_service.py +7 -7
- pulumi_azure_native/datafactory/v20180601/outputs.py +1002 -2
- pulumi_azure_native/dbforpostgresql/__init__.py +3 -0
- pulumi_azure_native/dbforpostgresql/cluster.py +5 -1
- pulumi_azure_native/dbforpostgresql/firewall_rule.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_cluster.py +4 -0
- pulumi_azure_native/dbforpostgresql/get_firewall_rule.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_role.py +4 -0
- pulumi_azure_native/dbforpostgresql/private_endpoint_connection.py +3 -3
- pulumi_azure_native/dbforpostgresql/role.py +5 -1
- pulumi_azure_native/dbforpostgresql/v20201005privatepreview/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20201005privatepreview/server_group.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221108/cluster.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221108/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221108/private_endpoint_connection.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221108/role.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230302preview/__init__.py +18 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/_enums.py +43 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/_inputs.py +178 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/cluster.py +923 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/firewall_rule.py +255 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/get_cluster.py +508 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/get_firewall_rule.py +162 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/get_private_endpoint_connection.py +175 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/get_role.py +176 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/outputs.py +536 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/private_endpoint_connection.py +247 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/role.py +306 -0
- pulumi_azure_native/healthcareapis/__init__.py +3 -0
- pulumi_azure_native/healthcareapis/dicom_service.py +3 -3
- pulumi_azure_native/healthcareapis/fhir_service.py +3 -3
- pulumi_azure_native/healthcareapis/get_dicom_service.py +2 -2
- pulumi_azure_native/healthcareapis/get_fhir_service.py +2 -2
- pulumi_azure_native/healthcareapis/get_iot_connector.py +2 -2
- pulumi_azure_native/healthcareapis/get_iot_connector_fhir_destination.py +2 -2
- pulumi_azure_native/healthcareapis/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/healthcareapis/get_service.py +2 -2
- pulumi_azure_native/healthcareapis/get_workspace.py +2 -2
- pulumi_azure_native/healthcareapis/get_workspace_private_endpoint_connection.py +2 -2
- pulumi_azure_native/healthcareapis/iot_connector.py +3 -3
- pulumi_azure_native/healthcareapis/iot_connector_fhir_destination.py +3 -3
- pulumi_azure_native/healthcareapis/private_endpoint_connection.py +3 -3
- pulumi_azure_native/healthcareapis/service.py +3 -3
- pulumi_azure_native/healthcareapis/v20230228/dicom_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/fhir_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/iot_connector.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/iot_connector_fhir_destination.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/workspace.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/workspace_private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/dicom_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/fhir_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/iot_connector.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/iot_connector_fhir_destination.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/workspace.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/workspace_private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/dicom_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/fhir_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/iot_connector.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/iot_connector_fhir_destination.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/service.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/workspace.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/workspace_private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/dicom_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/fhir_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/iot_connector.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/iot_connector_fhir_destination.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/service.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/workspace.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/workspace_private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20240301/__init__.py +26 -0
- pulumi_azure_native/healthcareapis/v20240301/_enums.py +93 -0
- pulumi_azure_native/healthcareapis/v20240301/_inputs.py +1432 -0
- pulumi_azure_native/healthcareapis/v20240301/dicom_service.py +431 -0
- pulumi_azure_native/healthcareapis/v20240301/fhir_service.py +585 -0
- pulumi_azure_native/healthcareapis/v20240301/get_dicom_service.py +292 -0
- pulumi_azure_native/healthcareapis/v20240301/get_fhir_service.py +344 -0
- pulumi_azure_native/healthcareapis/v20240301/get_iot_connector.py +214 -0
- pulumi_azure_native/healthcareapis/v20240301/get_iot_connector_fhir_destination.py +193 -0
- pulumi_azure_native/healthcareapis/v20240301/get_private_endpoint_connection.py +162 -0
- pulumi_azure_native/healthcareapis/v20240301/get_service.py +196 -0
- pulumi_azure_native/healthcareapis/v20240301/get_workspace.py +170 -0
- pulumi_azure_native/healthcareapis/v20240301/get_workspace_private_endpoint_connection.py +162 -0
- pulumi_azure_native/healthcareapis/v20240301/iot_connector.py +352 -0
- pulumi_azure_native/healthcareapis/v20240301/iot_connector_fhir_destination.py +337 -0
- pulumi_azure_native/healthcareapis/v20240301/outputs.py +2123 -0
- pulumi_azure_native/healthcareapis/v20240301/private_endpoint_connection.py +237 -0
- pulumi_azure_native/healthcareapis/v20240301/service.py +322 -0
- pulumi_azure_native/healthcareapis/v20240301/workspace.py +242 -0
- pulumi_azure_native/healthcareapis/v20240301/workspace_private_endpoint_connection.py +237 -0
- pulumi_azure_native/healthcareapis/workspace.py +3 -3
- pulumi_azure_native/healthcareapis/workspace_private_endpoint_connection.py +3 -3
- pulumi_azure_native/maps/__init__.py +3 -0
- pulumi_azure_native/maps/account.py +3 -3
- pulumi_azure_native/maps/creator.py +3 -3
- pulumi_azure_native/maps/get_account.py +2 -2
- pulumi_azure_native/maps/get_creator.py +2 -2
- pulumi_azure_native/maps/get_private_endpoint_connection.py +4 -0
- pulumi_azure_native/maps/list_account_keys.py +2 -2
- pulumi_azure_native/maps/list_account_sas.py +2 -2
- pulumi_azure_native/maps/private_endpoint_connection.py +5 -1
- pulumi_azure_native/maps/v20180501/account.py +1 -1
- pulumi_azure_native/maps/v20200201preview/creator.py +1 -1
- pulumi_azure_native/maps/v20210201/account.py +1 -1
- pulumi_azure_native/maps/v20210201/creator.py +1 -1
- pulumi_azure_native/maps/v20211201preview/account.py +1 -1
- pulumi_azure_native/maps/v20211201preview/creator.py +1 -1
- pulumi_azure_native/maps/v20230601/account.py +1 -1
- pulumi_azure_native/maps/v20230601/creator.py +1 -1
- pulumi_azure_native/maps/v20230801preview/account.py +1 -1
- pulumi_azure_native/maps/v20230801preview/creator.py +1 -1
- pulumi_azure_native/maps/v20231201preview/account.py +1 -1
- pulumi_azure_native/maps/v20231201preview/creator.py +1 -1
- pulumi_azure_native/maps/v20231201preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/maps/v20240101preview/__init__.py +18 -0
- pulumi_azure_native/maps/v20240101preview/_enums.py +73 -0
- pulumi_azure_native/maps/v20240101preview/_inputs.py +568 -0
- pulumi_azure_native/maps/v20240101preview/account.py +341 -0
- pulumi_azure_native/maps/v20240101preview/creator.py +274 -0
- pulumi_azure_native/maps/v20240101preview/get_account.py +196 -0
- pulumi_azure_native/maps/v20240101preview/get_creator.py +162 -0
- pulumi_azure_native/maps/v20240101preview/get_private_endpoint_connection.py +175 -0
- pulumi_azure_native/maps/v20240101preview/list_account_keys.py +117 -0
- pulumi_azure_native/maps/v20240101preview/list_account_sas.py +117 -0
- pulumi_azure_native/maps/v20240101preview/outputs.py +1100 -0
- pulumi_azure_native/maps/v20240101preview/private_endpoint_connection.py +247 -0
- pulumi_azure_native/mobilenetwork/__init__.py +3 -0
- pulumi_azure_native/mobilenetwork/attached_data_network.py +3 -3
- pulumi_azure_native/mobilenetwork/data_network.py +3 -3
- pulumi_azure_native/mobilenetwork/diagnostics_package.py +3 -3
- pulumi_azure_native/mobilenetwork/get_attached_data_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_data_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_diagnostics_package.py +2 -2
- pulumi_azure_native/mobilenetwork/get_mobile_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_capture.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_core_control_plane.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_core_data_plane.py +2 -2
- pulumi_azure_native/mobilenetwork/get_service.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim_group.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim_policy.py +2 -2
- pulumi_azure_native/mobilenetwork/get_site.py +2 -2
- pulumi_azure_native/mobilenetwork/get_slice.py +2 -2
- pulumi_azure_native/mobilenetwork/mobile_network.py +3 -3
- pulumi_azure_native/mobilenetwork/packet_capture.py +3 -3
- pulumi_azure_native/mobilenetwork/packet_core_control_plane.py +3 -3
- pulumi_azure_native/mobilenetwork/packet_core_data_plane.py +3 -3
- pulumi_azure_native/mobilenetwork/service.py +3 -3
- pulumi_azure_native/mobilenetwork/sim.py +3 -3
- pulumi_azure_native/mobilenetwork/sim_group.py +3 -3
- pulumi_azure_native/mobilenetwork/sim_policy.py +3 -3
- pulumi_azure_native/mobilenetwork/site.py +3 -3
- pulumi_azure_native/mobilenetwork/slice.py +3 -3
- pulumi_azure_native/mobilenetwork/v20220301preview/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/diagnostics_package.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_capture.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/diagnostics_package.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_capture.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/__init__.py +36 -0
- pulumi_azure_native/mobilenetwork/v20240201/_enums.py +196 -0
- pulumi_azure_native/mobilenetwork/v20240201/_inputs.py +1910 -0
- pulumi_azure_native/mobilenetwork/v20240201/attached_data_network.py +443 -0
- pulumi_azure_native/mobilenetwork/v20240201/data_network.py +282 -0
- pulumi_azure_native/mobilenetwork/v20240201/diagnostics_package.py +215 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_attached_data_network.py +237 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_data_network.py +175 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_diagnostics_package.py +162 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_mobile_network.py +209 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_packet_capture.py +240 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_packet_core_control_plane.py +391 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_packet_core_data_plane.py +188 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_service.py +201 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_sim.py +253 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_sim_group.py +196 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_sim_policy.py +240 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_site.py +175 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_slice.py +188 -0
- pulumi_azure_native/mobilenetwork/v20240201/mobile_network.py +332 -0
- pulumi_azure_native/mobilenetwork/v20240201/outputs.py +2449 -0
- pulumi_azure_native/mobilenetwork/v20240201/packet_capture.py +363 -0
- pulumi_azure_native/mobilenetwork/v20240201/packet_core_control_plane.py +708 -0
- pulumi_azure_native/mobilenetwork/v20240201/packet_core_data_plane.py +313 -0
- pulumi_azure_native/mobilenetwork/v20240201/service.py +344 -0
- pulumi_azure_native/mobilenetwork/v20240201/sim.py +422 -0
- pulumi_azure_native/mobilenetwork/v20240201/sim_group.py +321 -0
- pulumi_azure_native/mobilenetwork/v20240201/sim_policy.py +417 -0
- pulumi_azure_native/mobilenetwork/v20240201/site.py +263 -0
- pulumi_azure_native/mobilenetwork/v20240201/slice.py +313 -0
- pulumi_azure_native/recoveryservices/__init__.py +3 -0
- pulumi_azure_native/recoveryservices/get_vault.py +2 -2
- pulumi_azure_native/recoveryservices/v20200202/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/__init__.py +12 -0
- pulumi_azure_native/recoveryservices/v20240101/_enums.py +102 -0
- pulumi_azure_native/recoveryservices/v20240101/_inputs.py +652 -0
- pulumi_azure_native/recoveryservices/v20240101/get_vault.py +196 -0
- pulumi_azure_native/recoveryservices/v20240101/outputs.py +1597 -0
- pulumi_azure_native/recoveryservices/v20240101/vault.py +321 -0
- pulumi_azure_native/recoveryservices/vault.py +3 -3
- pulumi_azure_native/redhatopenshift/__init__.py +3 -0
- pulumi_azure_native/redhatopenshift/get_machine_pool.py +2 -2
- pulumi_azure_native/redhatopenshift/get_open_shift_cluster.py +2 -2
- pulumi_azure_native/redhatopenshift/get_secret.py +2 -2
- pulumi_azure_native/redhatopenshift/get_sync_identity_provider.py +2 -2
- pulumi_azure_native/redhatopenshift/get_sync_set.py +2 -2
- pulumi_azure_native/redhatopenshift/list_open_shift_cluster_admin_credentials.py +2 -2
- pulumi_azure_native/redhatopenshift/list_open_shift_cluster_credentials.py +2 -2
- pulumi_azure_native/redhatopenshift/machine_pool.py +3 -3
- pulumi_azure_native/redhatopenshift/open_shift_cluster.py +3 -3
- pulumi_azure_native/redhatopenshift/secret.py +3 -3
- pulumi_azure_native/redhatopenshift/sync_identity_provider.py +3 -3
- pulumi_azure_native/redhatopenshift/sync_set.py +3 -3
- pulumi_azure_native/redhatopenshift/v20220904/machine_pool.py +1 -1
- pulumi_azure_native/redhatopenshift/v20220904/open_shift_cluster.py +1 -1
- pulumi_azure_native/redhatopenshift/v20220904/secret.py +1 -1
- pulumi_azure_native/redhatopenshift/v20220904/sync_identity_provider.py +1 -1
- pulumi_azure_native/redhatopenshift/v20220904/sync_set.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230401/machine_pool.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230401/open_shift_cluster.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230401/secret.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230401/sync_identity_provider.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230401/sync_set.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230701preview/machine_pool.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230701preview/open_shift_cluster.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230701preview/secret.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230701preview/sync_identity_provider.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230701preview/sync_set.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230904/machine_pool.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230904/open_shift_cluster.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230904/secret.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230904/sync_identity_provider.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230904/sync_set.py +1 -1
- pulumi_azure_native/redhatopenshift/v20231122/__init__.py +22 -0
- pulumi_azure_native/redhatopenshift/v20231122/_enums.py +67 -0
- pulumi_azure_native/redhatopenshift/v20231122/_inputs.py +544 -0
- pulumi_azure_native/redhatopenshift/v20231122/get_machine_pool.py +133 -0
- pulumi_azure_native/redhatopenshift/v20231122/get_open_shift_cluster.py +274 -0
- pulumi_azure_native/redhatopenshift/v20231122/get_secret.py +136 -0
- pulumi_azure_native/redhatopenshift/v20231122/get_sync_identity_provider.py +133 -0
- pulumi_azure_native/redhatopenshift/v20231122/get_sync_set.py +136 -0
- pulumi_azure_native/redhatopenshift/v20231122/list_open_shift_cluster_admin_credentials.py +78 -0
- pulumi_azure_native/redhatopenshift/v20231122/list_open_shift_cluster_credentials.py +91 -0
- pulumi_azure_native/redhatopenshift/v20231122/machine_pool.py +206 -0
- pulumi_azure_native/redhatopenshift/v20231122/open_shift_cluster.py +476 -0
- pulumi_azure_native/redhatopenshift/v20231122/outputs.py +794 -0
- pulumi_azure_native/redhatopenshift/v20231122/secret.py +214 -0
- pulumi_azure_native/redhatopenshift/v20231122/sync_identity_provider.py +206 -0
- pulumi_azure_native/redhatopenshift/v20231122/sync_set.py +214 -0
- pulumi_azure_native/standbypool/__init__.py +22 -0
- pulumi_azure_native/standbypool/_enums.py +34 -0
- pulumi_azure_native/standbypool/_inputs.py +183 -0
- pulumi_azure_native/standbypool/get_standby_container_group_pool.py +185 -0
- pulumi_azure_native/standbypool/get_standby_virtual_machine_pool.py +198 -0
- pulumi_azure_native/standbypool/outputs.py +333 -0
- pulumi_azure_native/standbypool/standby_container_group_pool.py +296 -0
- pulumi_azure_native/standbypool/standby_virtual_machine_pool.py +324 -0
- pulumi_azure_native/standbypool/v20231201preview/__init__.py +14 -0
- pulumi_azure_native/standbypool/v20231201preview/_enums.py +34 -0
- pulumi_azure_native/standbypool/v20231201preview/_inputs.py +183 -0
- pulumi_azure_native/standbypool/v20231201preview/get_standby_container_group_pool.py +183 -0
- pulumi_azure_native/standbypool/v20231201preview/get_standby_virtual_machine_pool.py +196 -0
- pulumi_azure_native/standbypool/v20231201preview/outputs.py +333 -0
- pulumi_azure_native/standbypool/v20231201preview/standby_container_group_pool.py +294 -0
- pulumi_azure_native/standbypool/v20231201preview/standby_virtual_machine_pool.py +322 -0
- {pulumi_azure_native-2.29.1a1708510433.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/METADATA +2 -3
- {pulumi_azure_native-2.29.1a1708510433.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/RECORD +695 -460
- {pulumi_azure_native-2.29.1a1708510433.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.29.1a1708510433.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,652 @@
|
|
|
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 ._enums import *
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'AzureMonitorAlertSettingsArgs',
|
|
15
|
+
'ClassicAlertSettingsArgs',
|
|
16
|
+
'CmkKekIdentityArgs',
|
|
17
|
+
'CmkKeyVaultPropertiesArgs',
|
|
18
|
+
'CrossSubscriptionRestoreSettingsArgs',
|
|
19
|
+
'IdentityDataArgs',
|
|
20
|
+
'ImmutabilitySettingsArgs',
|
|
21
|
+
'MonitoringSettingsArgs',
|
|
22
|
+
'RestoreSettingsArgs',
|
|
23
|
+
'SecuritySettingsArgs',
|
|
24
|
+
'SkuArgs',
|
|
25
|
+
'SoftDeleteSettingsArgs',
|
|
26
|
+
'VaultPropertiesEncryptionArgs',
|
|
27
|
+
'VaultPropertiesRedundancySettingsArgs',
|
|
28
|
+
'VaultPropertiesArgs',
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
@pulumi.input_type
|
|
32
|
+
class AzureMonitorAlertSettingsArgs:
|
|
33
|
+
def __init__(__self__, *,
|
|
34
|
+
alerts_for_all_job_failures: Optional[pulumi.Input[Union[str, 'AlertsState']]] = None):
|
|
35
|
+
"""
|
|
36
|
+
Settings for Azure Monitor based alerts
|
|
37
|
+
"""
|
|
38
|
+
if alerts_for_all_job_failures is not None:
|
|
39
|
+
pulumi.set(__self__, "alerts_for_all_job_failures", alerts_for_all_job_failures)
|
|
40
|
+
|
|
41
|
+
@property
|
|
42
|
+
@pulumi.getter(name="alertsForAllJobFailures")
|
|
43
|
+
def alerts_for_all_job_failures(self) -> Optional[pulumi.Input[Union[str, 'AlertsState']]]:
|
|
44
|
+
return pulumi.get(self, "alerts_for_all_job_failures")
|
|
45
|
+
|
|
46
|
+
@alerts_for_all_job_failures.setter
|
|
47
|
+
def alerts_for_all_job_failures(self, value: Optional[pulumi.Input[Union[str, 'AlertsState']]]):
|
|
48
|
+
pulumi.set(self, "alerts_for_all_job_failures", value)
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
@pulumi.input_type
|
|
52
|
+
class ClassicAlertSettingsArgs:
|
|
53
|
+
def __init__(__self__, *,
|
|
54
|
+
alerts_for_critical_operations: Optional[pulumi.Input[Union[str, 'AlertsState']]] = None):
|
|
55
|
+
"""
|
|
56
|
+
Settings for classic alerts
|
|
57
|
+
"""
|
|
58
|
+
if alerts_for_critical_operations is not None:
|
|
59
|
+
pulumi.set(__self__, "alerts_for_critical_operations", alerts_for_critical_operations)
|
|
60
|
+
|
|
61
|
+
@property
|
|
62
|
+
@pulumi.getter(name="alertsForCriticalOperations")
|
|
63
|
+
def alerts_for_critical_operations(self) -> Optional[pulumi.Input[Union[str, 'AlertsState']]]:
|
|
64
|
+
return pulumi.get(self, "alerts_for_critical_operations")
|
|
65
|
+
|
|
66
|
+
@alerts_for_critical_operations.setter
|
|
67
|
+
def alerts_for_critical_operations(self, value: Optional[pulumi.Input[Union[str, 'AlertsState']]]):
|
|
68
|
+
pulumi.set(self, "alerts_for_critical_operations", value)
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
@pulumi.input_type
|
|
72
|
+
class CmkKekIdentityArgs:
|
|
73
|
+
def __init__(__self__, *,
|
|
74
|
+
use_system_assigned_identity: Optional[pulumi.Input[bool]] = None,
|
|
75
|
+
user_assigned_identity: Optional[pulumi.Input[str]] = None):
|
|
76
|
+
"""
|
|
77
|
+
The details of the identity used for CMK
|
|
78
|
+
:param pulumi.Input[bool] use_system_assigned_identity: Indicate that system assigned identity should be used. Mutually exclusive with 'userAssignedIdentity' field
|
|
79
|
+
:param pulumi.Input[str] user_assigned_identity: The user assigned identity to be used to grant permissions in case the type of identity used is UserAssigned
|
|
80
|
+
"""
|
|
81
|
+
if use_system_assigned_identity is not None:
|
|
82
|
+
pulumi.set(__self__, "use_system_assigned_identity", use_system_assigned_identity)
|
|
83
|
+
if user_assigned_identity is not None:
|
|
84
|
+
pulumi.set(__self__, "user_assigned_identity", user_assigned_identity)
|
|
85
|
+
|
|
86
|
+
@property
|
|
87
|
+
@pulumi.getter(name="useSystemAssignedIdentity")
|
|
88
|
+
def use_system_assigned_identity(self) -> Optional[pulumi.Input[bool]]:
|
|
89
|
+
"""
|
|
90
|
+
Indicate that system assigned identity should be used. Mutually exclusive with 'userAssignedIdentity' field
|
|
91
|
+
"""
|
|
92
|
+
return pulumi.get(self, "use_system_assigned_identity")
|
|
93
|
+
|
|
94
|
+
@use_system_assigned_identity.setter
|
|
95
|
+
def use_system_assigned_identity(self, value: Optional[pulumi.Input[bool]]):
|
|
96
|
+
pulumi.set(self, "use_system_assigned_identity", value)
|
|
97
|
+
|
|
98
|
+
@property
|
|
99
|
+
@pulumi.getter(name="userAssignedIdentity")
|
|
100
|
+
def user_assigned_identity(self) -> Optional[pulumi.Input[str]]:
|
|
101
|
+
"""
|
|
102
|
+
The user assigned identity to be used to grant permissions in case the type of identity used is UserAssigned
|
|
103
|
+
"""
|
|
104
|
+
return pulumi.get(self, "user_assigned_identity")
|
|
105
|
+
|
|
106
|
+
@user_assigned_identity.setter
|
|
107
|
+
def user_assigned_identity(self, value: Optional[pulumi.Input[str]]):
|
|
108
|
+
pulumi.set(self, "user_assigned_identity", value)
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
@pulumi.input_type
|
|
112
|
+
class CmkKeyVaultPropertiesArgs:
|
|
113
|
+
def __init__(__self__, *,
|
|
114
|
+
key_uri: Optional[pulumi.Input[str]] = None):
|
|
115
|
+
"""
|
|
116
|
+
The properties of the Key Vault which hosts CMK
|
|
117
|
+
:param pulumi.Input[str] key_uri: The key uri of the Customer Managed Key
|
|
118
|
+
"""
|
|
119
|
+
if key_uri is not None:
|
|
120
|
+
pulumi.set(__self__, "key_uri", key_uri)
|
|
121
|
+
|
|
122
|
+
@property
|
|
123
|
+
@pulumi.getter(name="keyUri")
|
|
124
|
+
def key_uri(self) -> Optional[pulumi.Input[str]]:
|
|
125
|
+
"""
|
|
126
|
+
The key uri of the Customer Managed Key
|
|
127
|
+
"""
|
|
128
|
+
return pulumi.get(self, "key_uri")
|
|
129
|
+
|
|
130
|
+
@key_uri.setter
|
|
131
|
+
def key_uri(self, value: Optional[pulumi.Input[str]]):
|
|
132
|
+
pulumi.set(self, "key_uri", value)
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
@pulumi.input_type
|
|
136
|
+
class CrossSubscriptionRestoreSettingsArgs:
|
|
137
|
+
def __init__(__self__, *,
|
|
138
|
+
cross_subscription_restore_state: Optional[pulumi.Input[Union[str, 'CrossSubscriptionRestoreState']]] = None):
|
|
139
|
+
"""
|
|
140
|
+
Settings for Cross Subscription Restore Settings
|
|
141
|
+
"""
|
|
142
|
+
if cross_subscription_restore_state is not None:
|
|
143
|
+
pulumi.set(__self__, "cross_subscription_restore_state", cross_subscription_restore_state)
|
|
144
|
+
|
|
145
|
+
@property
|
|
146
|
+
@pulumi.getter(name="crossSubscriptionRestoreState")
|
|
147
|
+
def cross_subscription_restore_state(self) -> Optional[pulumi.Input[Union[str, 'CrossSubscriptionRestoreState']]]:
|
|
148
|
+
return pulumi.get(self, "cross_subscription_restore_state")
|
|
149
|
+
|
|
150
|
+
@cross_subscription_restore_state.setter
|
|
151
|
+
def cross_subscription_restore_state(self, value: Optional[pulumi.Input[Union[str, 'CrossSubscriptionRestoreState']]]):
|
|
152
|
+
pulumi.set(self, "cross_subscription_restore_state", value)
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
@pulumi.input_type
|
|
156
|
+
class IdentityDataArgs:
|
|
157
|
+
def __init__(__self__, *,
|
|
158
|
+
type: pulumi.Input[Union[str, 'ResourceIdentityType']],
|
|
159
|
+
user_assigned_identities: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
160
|
+
"""
|
|
161
|
+
Identity for the resource.
|
|
162
|
+
:param pulumi.Input[Union[str, 'ResourceIdentityType']] type: The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
|
|
163
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] user_assigned_identities: The list of user-assigned identities associated with the resource. The user-assigned identity dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
|
|
164
|
+
"""
|
|
165
|
+
pulumi.set(__self__, "type", type)
|
|
166
|
+
if user_assigned_identities is not None:
|
|
167
|
+
pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
|
|
168
|
+
|
|
169
|
+
@property
|
|
170
|
+
@pulumi.getter
|
|
171
|
+
def type(self) -> pulumi.Input[Union[str, 'ResourceIdentityType']]:
|
|
172
|
+
"""
|
|
173
|
+
The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
|
|
174
|
+
"""
|
|
175
|
+
return pulumi.get(self, "type")
|
|
176
|
+
|
|
177
|
+
@type.setter
|
|
178
|
+
def type(self, value: pulumi.Input[Union[str, 'ResourceIdentityType']]):
|
|
179
|
+
pulumi.set(self, "type", value)
|
|
180
|
+
|
|
181
|
+
@property
|
|
182
|
+
@pulumi.getter(name="userAssignedIdentities")
|
|
183
|
+
def user_assigned_identities(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
184
|
+
"""
|
|
185
|
+
The list of user-assigned identities associated with the resource. The user-assigned identity dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
|
|
186
|
+
"""
|
|
187
|
+
return pulumi.get(self, "user_assigned_identities")
|
|
188
|
+
|
|
189
|
+
@user_assigned_identities.setter
|
|
190
|
+
def user_assigned_identities(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
191
|
+
pulumi.set(self, "user_assigned_identities", value)
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
@pulumi.input_type
|
|
195
|
+
class ImmutabilitySettingsArgs:
|
|
196
|
+
def __init__(__self__, *,
|
|
197
|
+
state: Optional[pulumi.Input[Union[str, 'ImmutabilityState']]] = None):
|
|
198
|
+
"""
|
|
199
|
+
Immutability Settings of vault
|
|
200
|
+
"""
|
|
201
|
+
if state is not None:
|
|
202
|
+
pulumi.set(__self__, "state", state)
|
|
203
|
+
|
|
204
|
+
@property
|
|
205
|
+
@pulumi.getter
|
|
206
|
+
def state(self) -> Optional[pulumi.Input[Union[str, 'ImmutabilityState']]]:
|
|
207
|
+
return pulumi.get(self, "state")
|
|
208
|
+
|
|
209
|
+
@state.setter
|
|
210
|
+
def state(self, value: Optional[pulumi.Input[Union[str, 'ImmutabilityState']]]):
|
|
211
|
+
pulumi.set(self, "state", value)
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
@pulumi.input_type
|
|
215
|
+
class MonitoringSettingsArgs:
|
|
216
|
+
def __init__(__self__, *,
|
|
217
|
+
azure_monitor_alert_settings: Optional[pulumi.Input['AzureMonitorAlertSettingsArgs']] = None,
|
|
218
|
+
classic_alert_settings: Optional[pulumi.Input['ClassicAlertSettingsArgs']] = None):
|
|
219
|
+
"""
|
|
220
|
+
Monitoring Settings of the vault
|
|
221
|
+
:param pulumi.Input['AzureMonitorAlertSettingsArgs'] azure_monitor_alert_settings: Settings for Azure Monitor based alerts
|
|
222
|
+
:param pulumi.Input['ClassicAlertSettingsArgs'] classic_alert_settings: Settings for classic alerts
|
|
223
|
+
"""
|
|
224
|
+
if azure_monitor_alert_settings is not None:
|
|
225
|
+
pulumi.set(__self__, "azure_monitor_alert_settings", azure_monitor_alert_settings)
|
|
226
|
+
if classic_alert_settings is not None:
|
|
227
|
+
pulumi.set(__self__, "classic_alert_settings", classic_alert_settings)
|
|
228
|
+
|
|
229
|
+
@property
|
|
230
|
+
@pulumi.getter(name="azureMonitorAlertSettings")
|
|
231
|
+
def azure_monitor_alert_settings(self) -> Optional[pulumi.Input['AzureMonitorAlertSettingsArgs']]:
|
|
232
|
+
"""
|
|
233
|
+
Settings for Azure Monitor based alerts
|
|
234
|
+
"""
|
|
235
|
+
return pulumi.get(self, "azure_monitor_alert_settings")
|
|
236
|
+
|
|
237
|
+
@azure_monitor_alert_settings.setter
|
|
238
|
+
def azure_monitor_alert_settings(self, value: Optional[pulumi.Input['AzureMonitorAlertSettingsArgs']]):
|
|
239
|
+
pulumi.set(self, "azure_monitor_alert_settings", value)
|
|
240
|
+
|
|
241
|
+
@property
|
|
242
|
+
@pulumi.getter(name="classicAlertSettings")
|
|
243
|
+
def classic_alert_settings(self) -> Optional[pulumi.Input['ClassicAlertSettingsArgs']]:
|
|
244
|
+
"""
|
|
245
|
+
Settings for classic alerts
|
|
246
|
+
"""
|
|
247
|
+
return pulumi.get(self, "classic_alert_settings")
|
|
248
|
+
|
|
249
|
+
@classic_alert_settings.setter
|
|
250
|
+
def classic_alert_settings(self, value: Optional[pulumi.Input['ClassicAlertSettingsArgs']]):
|
|
251
|
+
pulumi.set(self, "classic_alert_settings", value)
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
@pulumi.input_type
|
|
255
|
+
class RestoreSettingsArgs:
|
|
256
|
+
def __init__(__self__, *,
|
|
257
|
+
cross_subscription_restore_settings: Optional[pulumi.Input['CrossSubscriptionRestoreSettingsArgs']] = None):
|
|
258
|
+
"""
|
|
259
|
+
Restore Settings of the vault
|
|
260
|
+
:param pulumi.Input['CrossSubscriptionRestoreSettingsArgs'] cross_subscription_restore_settings: Settings for CrossSubscriptionRestore
|
|
261
|
+
"""
|
|
262
|
+
if cross_subscription_restore_settings is not None:
|
|
263
|
+
pulumi.set(__self__, "cross_subscription_restore_settings", cross_subscription_restore_settings)
|
|
264
|
+
|
|
265
|
+
@property
|
|
266
|
+
@pulumi.getter(name="crossSubscriptionRestoreSettings")
|
|
267
|
+
def cross_subscription_restore_settings(self) -> Optional[pulumi.Input['CrossSubscriptionRestoreSettingsArgs']]:
|
|
268
|
+
"""
|
|
269
|
+
Settings for CrossSubscriptionRestore
|
|
270
|
+
"""
|
|
271
|
+
return pulumi.get(self, "cross_subscription_restore_settings")
|
|
272
|
+
|
|
273
|
+
@cross_subscription_restore_settings.setter
|
|
274
|
+
def cross_subscription_restore_settings(self, value: Optional[pulumi.Input['CrossSubscriptionRestoreSettingsArgs']]):
|
|
275
|
+
pulumi.set(self, "cross_subscription_restore_settings", value)
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
@pulumi.input_type
|
|
279
|
+
class SecuritySettingsArgs:
|
|
280
|
+
def __init__(__self__, *,
|
|
281
|
+
immutability_settings: Optional[pulumi.Input['ImmutabilitySettingsArgs']] = None,
|
|
282
|
+
soft_delete_settings: Optional[pulumi.Input['SoftDeleteSettingsArgs']] = None):
|
|
283
|
+
"""
|
|
284
|
+
Security Settings of the vault
|
|
285
|
+
:param pulumi.Input['ImmutabilitySettingsArgs'] immutability_settings: Immutability Settings of a vault
|
|
286
|
+
:param pulumi.Input['SoftDeleteSettingsArgs'] soft_delete_settings: Soft delete Settings of a vault
|
|
287
|
+
"""
|
|
288
|
+
if immutability_settings is not None:
|
|
289
|
+
pulumi.set(__self__, "immutability_settings", immutability_settings)
|
|
290
|
+
if soft_delete_settings is not None:
|
|
291
|
+
pulumi.set(__self__, "soft_delete_settings", soft_delete_settings)
|
|
292
|
+
|
|
293
|
+
@property
|
|
294
|
+
@pulumi.getter(name="immutabilitySettings")
|
|
295
|
+
def immutability_settings(self) -> Optional[pulumi.Input['ImmutabilitySettingsArgs']]:
|
|
296
|
+
"""
|
|
297
|
+
Immutability Settings of a vault
|
|
298
|
+
"""
|
|
299
|
+
return pulumi.get(self, "immutability_settings")
|
|
300
|
+
|
|
301
|
+
@immutability_settings.setter
|
|
302
|
+
def immutability_settings(self, value: Optional[pulumi.Input['ImmutabilitySettingsArgs']]):
|
|
303
|
+
pulumi.set(self, "immutability_settings", value)
|
|
304
|
+
|
|
305
|
+
@property
|
|
306
|
+
@pulumi.getter(name="softDeleteSettings")
|
|
307
|
+
def soft_delete_settings(self) -> Optional[pulumi.Input['SoftDeleteSettingsArgs']]:
|
|
308
|
+
"""
|
|
309
|
+
Soft delete Settings of a vault
|
|
310
|
+
"""
|
|
311
|
+
return pulumi.get(self, "soft_delete_settings")
|
|
312
|
+
|
|
313
|
+
@soft_delete_settings.setter
|
|
314
|
+
def soft_delete_settings(self, value: Optional[pulumi.Input['SoftDeleteSettingsArgs']]):
|
|
315
|
+
pulumi.set(self, "soft_delete_settings", value)
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
@pulumi.input_type
|
|
319
|
+
class SkuArgs:
|
|
320
|
+
def __init__(__self__, *,
|
|
321
|
+
name: pulumi.Input[Union[str, 'SkuName']],
|
|
322
|
+
capacity: Optional[pulumi.Input[str]] = None,
|
|
323
|
+
family: Optional[pulumi.Input[str]] = None,
|
|
324
|
+
size: Optional[pulumi.Input[str]] = None,
|
|
325
|
+
tier: Optional[pulumi.Input[str]] = None):
|
|
326
|
+
"""
|
|
327
|
+
Identifies the unique system identifier for each Azure resource.
|
|
328
|
+
:param pulumi.Input[Union[str, 'SkuName']] name: Name of SKU is RS0 (Recovery Services 0th version) and the tier is standard tier. They do not have affect on backend storage redundancy or any other vault settings. To manage storage redundancy, use the backupstorageconfig
|
|
329
|
+
:param pulumi.Input[str] capacity: The sku capacity
|
|
330
|
+
:param pulumi.Input[str] family: The sku family
|
|
331
|
+
:param pulumi.Input[str] size: The sku size
|
|
332
|
+
:param pulumi.Input[str] tier: The Sku tier.
|
|
333
|
+
"""
|
|
334
|
+
pulumi.set(__self__, "name", name)
|
|
335
|
+
if capacity is not None:
|
|
336
|
+
pulumi.set(__self__, "capacity", capacity)
|
|
337
|
+
if family is not None:
|
|
338
|
+
pulumi.set(__self__, "family", family)
|
|
339
|
+
if size is not None:
|
|
340
|
+
pulumi.set(__self__, "size", size)
|
|
341
|
+
if tier is not None:
|
|
342
|
+
pulumi.set(__self__, "tier", tier)
|
|
343
|
+
|
|
344
|
+
@property
|
|
345
|
+
@pulumi.getter
|
|
346
|
+
def name(self) -> pulumi.Input[Union[str, 'SkuName']]:
|
|
347
|
+
"""
|
|
348
|
+
Name of SKU is RS0 (Recovery Services 0th version) and the tier is standard tier. They do not have affect on backend storage redundancy or any other vault settings. To manage storage redundancy, use the backupstorageconfig
|
|
349
|
+
"""
|
|
350
|
+
return pulumi.get(self, "name")
|
|
351
|
+
|
|
352
|
+
@name.setter
|
|
353
|
+
def name(self, value: pulumi.Input[Union[str, 'SkuName']]):
|
|
354
|
+
pulumi.set(self, "name", value)
|
|
355
|
+
|
|
356
|
+
@property
|
|
357
|
+
@pulumi.getter
|
|
358
|
+
def capacity(self) -> Optional[pulumi.Input[str]]:
|
|
359
|
+
"""
|
|
360
|
+
The sku capacity
|
|
361
|
+
"""
|
|
362
|
+
return pulumi.get(self, "capacity")
|
|
363
|
+
|
|
364
|
+
@capacity.setter
|
|
365
|
+
def capacity(self, value: Optional[pulumi.Input[str]]):
|
|
366
|
+
pulumi.set(self, "capacity", value)
|
|
367
|
+
|
|
368
|
+
@property
|
|
369
|
+
@pulumi.getter
|
|
370
|
+
def family(self) -> Optional[pulumi.Input[str]]:
|
|
371
|
+
"""
|
|
372
|
+
The sku family
|
|
373
|
+
"""
|
|
374
|
+
return pulumi.get(self, "family")
|
|
375
|
+
|
|
376
|
+
@family.setter
|
|
377
|
+
def family(self, value: Optional[pulumi.Input[str]]):
|
|
378
|
+
pulumi.set(self, "family", value)
|
|
379
|
+
|
|
380
|
+
@property
|
|
381
|
+
@pulumi.getter
|
|
382
|
+
def size(self) -> Optional[pulumi.Input[str]]:
|
|
383
|
+
"""
|
|
384
|
+
The sku size
|
|
385
|
+
"""
|
|
386
|
+
return pulumi.get(self, "size")
|
|
387
|
+
|
|
388
|
+
@size.setter
|
|
389
|
+
def size(self, value: Optional[pulumi.Input[str]]):
|
|
390
|
+
pulumi.set(self, "size", value)
|
|
391
|
+
|
|
392
|
+
@property
|
|
393
|
+
@pulumi.getter
|
|
394
|
+
def tier(self) -> Optional[pulumi.Input[str]]:
|
|
395
|
+
"""
|
|
396
|
+
The Sku tier.
|
|
397
|
+
"""
|
|
398
|
+
return pulumi.get(self, "tier")
|
|
399
|
+
|
|
400
|
+
@tier.setter
|
|
401
|
+
def tier(self, value: Optional[pulumi.Input[str]]):
|
|
402
|
+
pulumi.set(self, "tier", value)
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
@pulumi.input_type
|
|
406
|
+
class SoftDeleteSettingsArgs:
|
|
407
|
+
def __init__(__self__, *,
|
|
408
|
+
enhanced_security_state: Optional[pulumi.Input[Union[str, 'EnhancedSecurityState']]] = None,
|
|
409
|
+
soft_delete_retention_period_in_days: Optional[pulumi.Input[int]] = None,
|
|
410
|
+
soft_delete_state: Optional[pulumi.Input[Union[str, 'SoftDeleteState']]] = None):
|
|
411
|
+
"""
|
|
412
|
+
Soft delete Settings of vault
|
|
413
|
+
:param pulumi.Input[int] soft_delete_retention_period_in_days: Soft delete retention period in days
|
|
414
|
+
"""
|
|
415
|
+
if enhanced_security_state is not None:
|
|
416
|
+
pulumi.set(__self__, "enhanced_security_state", enhanced_security_state)
|
|
417
|
+
if soft_delete_retention_period_in_days is not None:
|
|
418
|
+
pulumi.set(__self__, "soft_delete_retention_period_in_days", soft_delete_retention_period_in_days)
|
|
419
|
+
if soft_delete_state is not None:
|
|
420
|
+
pulumi.set(__self__, "soft_delete_state", soft_delete_state)
|
|
421
|
+
|
|
422
|
+
@property
|
|
423
|
+
@pulumi.getter(name="enhancedSecurityState")
|
|
424
|
+
def enhanced_security_state(self) -> Optional[pulumi.Input[Union[str, 'EnhancedSecurityState']]]:
|
|
425
|
+
return pulumi.get(self, "enhanced_security_state")
|
|
426
|
+
|
|
427
|
+
@enhanced_security_state.setter
|
|
428
|
+
def enhanced_security_state(self, value: Optional[pulumi.Input[Union[str, 'EnhancedSecurityState']]]):
|
|
429
|
+
pulumi.set(self, "enhanced_security_state", value)
|
|
430
|
+
|
|
431
|
+
@property
|
|
432
|
+
@pulumi.getter(name="softDeleteRetentionPeriodInDays")
|
|
433
|
+
def soft_delete_retention_period_in_days(self) -> Optional[pulumi.Input[int]]:
|
|
434
|
+
"""
|
|
435
|
+
Soft delete retention period in days
|
|
436
|
+
"""
|
|
437
|
+
return pulumi.get(self, "soft_delete_retention_period_in_days")
|
|
438
|
+
|
|
439
|
+
@soft_delete_retention_period_in_days.setter
|
|
440
|
+
def soft_delete_retention_period_in_days(self, value: Optional[pulumi.Input[int]]):
|
|
441
|
+
pulumi.set(self, "soft_delete_retention_period_in_days", value)
|
|
442
|
+
|
|
443
|
+
@property
|
|
444
|
+
@pulumi.getter(name="softDeleteState")
|
|
445
|
+
def soft_delete_state(self) -> Optional[pulumi.Input[Union[str, 'SoftDeleteState']]]:
|
|
446
|
+
return pulumi.get(self, "soft_delete_state")
|
|
447
|
+
|
|
448
|
+
@soft_delete_state.setter
|
|
449
|
+
def soft_delete_state(self, value: Optional[pulumi.Input[Union[str, 'SoftDeleteState']]]):
|
|
450
|
+
pulumi.set(self, "soft_delete_state", value)
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
@pulumi.input_type
|
|
454
|
+
class VaultPropertiesEncryptionArgs:
|
|
455
|
+
def __init__(__self__, *,
|
|
456
|
+
infrastructure_encryption: Optional[pulumi.Input[Union[str, 'InfrastructureEncryptionState']]] = None,
|
|
457
|
+
kek_identity: Optional[pulumi.Input['CmkKekIdentityArgs']] = None,
|
|
458
|
+
key_vault_properties: Optional[pulumi.Input['CmkKeyVaultPropertiesArgs']] = None):
|
|
459
|
+
"""
|
|
460
|
+
Customer Managed Key details of the resource.
|
|
461
|
+
:param pulumi.Input[Union[str, 'InfrastructureEncryptionState']] infrastructure_encryption: Enabling/Disabling the Double Encryption state
|
|
462
|
+
:param pulumi.Input['CmkKekIdentityArgs'] kek_identity: The details of the identity used for CMK
|
|
463
|
+
:param pulumi.Input['CmkKeyVaultPropertiesArgs'] key_vault_properties: The properties of the Key Vault which hosts CMK
|
|
464
|
+
"""
|
|
465
|
+
if infrastructure_encryption is not None:
|
|
466
|
+
pulumi.set(__self__, "infrastructure_encryption", infrastructure_encryption)
|
|
467
|
+
if kek_identity is not None:
|
|
468
|
+
pulumi.set(__self__, "kek_identity", kek_identity)
|
|
469
|
+
if key_vault_properties is not None:
|
|
470
|
+
pulumi.set(__self__, "key_vault_properties", key_vault_properties)
|
|
471
|
+
|
|
472
|
+
@property
|
|
473
|
+
@pulumi.getter(name="infrastructureEncryption")
|
|
474
|
+
def infrastructure_encryption(self) -> Optional[pulumi.Input[Union[str, 'InfrastructureEncryptionState']]]:
|
|
475
|
+
"""
|
|
476
|
+
Enabling/Disabling the Double Encryption state
|
|
477
|
+
"""
|
|
478
|
+
return pulumi.get(self, "infrastructure_encryption")
|
|
479
|
+
|
|
480
|
+
@infrastructure_encryption.setter
|
|
481
|
+
def infrastructure_encryption(self, value: Optional[pulumi.Input[Union[str, 'InfrastructureEncryptionState']]]):
|
|
482
|
+
pulumi.set(self, "infrastructure_encryption", value)
|
|
483
|
+
|
|
484
|
+
@property
|
|
485
|
+
@pulumi.getter(name="kekIdentity")
|
|
486
|
+
def kek_identity(self) -> Optional[pulumi.Input['CmkKekIdentityArgs']]:
|
|
487
|
+
"""
|
|
488
|
+
The details of the identity used for CMK
|
|
489
|
+
"""
|
|
490
|
+
return pulumi.get(self, "kek_identity")
|
|
491
|
+
|
|
492
|
+
@kek_identity.setter
|
|
493
|
+
def kek_identity(self, value: Optional[pulumi.Input['CmkKekIdentityArgs']]):
|
|
494
|
+
pulumi.set(self, "kek_identity", value)
|
|
495
|
+
|
|
496
|
+
@property
|
|
497
|
+
@pulumi.getter(name="keyVaultProperties")
|
|
498
|
+
def key_vault_properties(self) -> Optional[pulumi.Input['CmkKeyVaultPropertiesArgs']]:
|
|
499
|
+
"""
|
|
500
|
+
The properties of the Key Vault which hosts CMK
|
|
501
|
+
"""
|
|
502
|
+
return pulumi.get(self, "key_vault_properties")
|
|
503
|
+
|
|
504
|
+
@key_vault_properties.setter
|
|
505
|
+
def key_vault_properties(self, value: Optional[pulumi.Input['CmkKeyVaultPropertiesArgs']]):
|
|
506
|
+
pulumi.set(self, "key_vault_properties", value)
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
@pulumi.input_type
|
|
510
|
+
class VaultPropertiesRedundancySettingsArgs:
|
|
511
|
+
def __init__(__self__, *,
|
|
512
|
+
cross_region_restore: Optional[pulumi.Input[Union[str, 'CrossRegionRestore']]] = None,
|
|
513
|
+
standard_tier_storage_redundancy: Optional[pulumi.Input[Union[str, 'StandardTierStorageRedundancy']]] = None):
|
|
514
|
+
"""
|
|
515
|
+
The redundancy Settings of a Vault
|
|
516
|
+
:param pulumi.Input[Union[str, 'CrossRegionRestore']] cross_region_restore: Flag to show if Cross Region Restore is enabled on the Vault or not
|
|
517
|
+
:param pulumi.Input[Union[str, 'StandardTierStorageRedundancy']] standard_tier_storage_redundancy: The storage redundancy setting of a vault
|
|
518
|
+
"""
|
|
519
|
+
if cross_region_restore is not None:
|
|
520
|
+
pulumi.set(__self__, "cross_region_restore", cross_region_restore)
|
|
521
|
+
if standard_tier_storage_redundancy is not None:
|
|
522
|
+
pulumi.set(__self__, "standard_tier_storage_redundancy", standard_tier_storage_redundancy)
|
|
523
|
+
|
|
524
|
+
@property
|
|
525
|
+
@pulumi.getter(name="crossRegionRestore")
|
|
526
|
+
def cross_region_restore(self) -> Optional[pulumi.Input[Union[str, 'CrossRegionRestore']]]:
|
|
527
|
+
"""
|
|
528
|
+
Flag to show if Cross Region Restore is enabled on the Vault or not
|
|
529
|
+
"""
|
|
530
|
+
return pulumi.get(self, "cross_region_restore")
|
|
531
|
+
|
|
532
|
+
@cross_region_restore.setter
|
|
533
|
+
def cross_region_restore(self, value: Optional[pulumi.Input[Union[str, 'CrossRegionRestore']]]):
|
|
534
|
+
pulumi.set(self, "cross_region_restore", value)
|
|
535
|
+
|
|
536
|
+
@property
|
|
537
|
+
@pulumi.getter(name="standardTierStorageRedundancy")
|
|
538
|
+
def standard_tier_storage_redundancy(self) -> Optional[pulumi.Input[Union[str, 'StandardTierStorageRedundancy']]]:
|
|
539
|
+
"""
|
|
540
|
+
The storage redundancy setting of a vault
|
|
541
|
+
"""
|
|
542
|
+
return pulumi.get(self, "standard_tier_storage_redundancy")
|
|
543
|
+
|
|
544
|
+
@standard_tier_storage_redundancy.setter
|
|
545
|
+
def standard_tier_storage_redundancy(self, value: Optional[pulumi.Input[Union[str, 'StandardTierStorageRedundancy']]]):
|
|
546
|
+
pulumi.set(self, "standard_tier_storage_redundancy", value)
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
@pulumi.input_type
|
|
550
|
+
class VaultPropertiesArgs:
|
|
551
|
+
def __init__(__self__, *,
|
|
552
|
+
encryption: Optional[pulumi.Input['VaultPropertiesEncryptionArgs']] = None,
|
|
553
|
+
monitoring_settings: Optional[pulumi.Input['MonitoringSettingsArgs']] = None,
|
|
554
|
+
public_network_access: Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]] = None,
|
|
555
|
+
redundancy_settings: Optional[pulumi.Input['VaultPropertiesRedundancySettingsArgs']] = None,
|
|
556
|
+
restore_settings: Optional[pulumi.Input['RestoreSettingsArgs']] = None,
|
|
557
|
+
security_settings: Optional[pulumi.Input['SecuritySettingsArgs']] = None):
|
|
558
|
+
"""
|
|
559
|
+
Properties of the vault.
|
|
560
|
+
:param pulumi.Input['VaultPropertiesEncryptionArgs'] encryption: Customer Managed Key details of the resource.
|
|
561
|
+
:param pulumi.Input['MonitoringSettingsArgs'] monitoring_settings: Monitoring Settings of the vault
|
|
562
|
+
:param pulumi.Input[Union[str, 'PublicNetworkAccess']] public_network_access: property to enable or disable resource provider inbound network traffic from public clients
|
|
563
|
+
:param pulumi.Input['VaultPropertiesRedundancySettingsArgs'] redundancy_settings: The redundancy Settings of a Vault
|
|
564
|
+
:param pulumi.Input['RestoreSettingsArgs'] restore_settings: Restore Settings of the vault
|
|
565
|
+
:param pulumi.Input['SecuritySettingsArgs'] security_settings: Security Settings of the vault
|
|
566
|
+
"""
|
|
567
|
+
if encryption is not None:
|
|
568
|
+
pulumi.set(__self__, "encryption", encryption)
|
|
569
|
+
if monitoring_settings is not None:
|
|
570
|
+
pulumi.set(__self__, "monitoring_settings", monitoring_settings)
|
|
571
|
+
if public_network_access is not None:
|
|
572
|
+
pulumi.set(__self__, "public_network_access", public_network_access)
|
|
573
|
+
if redundancy_settings is not None:
|
|
574
|
+
pulumi.set(__self__, "redundancy_settings", redundancy_settings)
|
|
575
|
+
if restore_settings is not None:
|
|
576
|
+
pulumi.set(__self__, "restore_settings", restore_settings)
|
|
577
|
+
if security_settings is not None:
|
|
578
|
+
pulumi.set(__self__, "security_settings", security_settings)
|
|
579
|
+
|
|
580
|
+
@property
|
|
581
|
+
@pulumi.getter
|
|
582
|
+
def encryption(self) -> Optional[pulumi.Input['VaultPropertiesEncryptionArgs']]:
|
|
583
|
+
"""
|
|
584
|
+
Customer Managed Key details of the resource.
|
|
585
|
+
"""
|
|
586
|
+
return pulumi.get(self, "encryption")
|
|
587
|
+
|
|
588
|
+
@encryption.setter
|
|
589
|
+
def encryption(self, value: Optional[pulumi.Input['VaultPropertiesEncryptionArgs']]):
|
|
590
|
+
pulumi.set(self, "encryption", value)
|
|
591
|
+
|
|
592
|
+
@property
|
|
593
|
+
@pulumi.getter(name="monitoringSettings")
|
|
594
|
+
def monitoring_settings(self) -> Optional[pulumi.Input['MonitoringSettingsArgs']]:
|
|
595
|
+
"""
|
|
596
|
+
Monitoring Settings of the vault
|
|
597
|
+
"""
|
|
598
|
+
return pulumi.get(self, "monitoring_settings")
|
|
599
|
+
|
|
600
|
+
@monitoring_settings.setter
|
|
601
|
+
def monitoring_settings(self, value: Optional[pulumi.Input['MonitoringSettingsArgs']]):
|
|
602
|
+
pulumi.set(self, "monitoring_settings", value)
|
|
603
|
+
|
|
604
|
+
@property
|
|
605
|
+
@pulumi.getter(name="publicNetworkAccess")
|
|
606
|
+
def public_network_access(self) -> Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]]:
|
|
607
|
+
"""
|
|
608
|
+
property to enable or disable resource provider inbound network traffic from public clients
|
|
609
|
+
"""
|
|
610
|
+
return pulumi.get(self, "public_network_access")
|
|
611
|
+
|
|
612
|
+
@public_network_access.setter
|
|
613
|
+
def public_network_access(self, value: Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]]):
|
|
614
|
+
pulumi.set(self, "public_network_access", value)
|
|
615
|
+
|
|
616
|
+
@property
|
|
617
|
+
@pulumi.getter(name="redundancySettings")
|
|
618
|
+
def redundancy_settings(self) -> Optional[pulumi.Input['VaultPropertiesRedundancySettingsArgs']]:
|
|
619
|
+
"""
|
|
620
|
+
The redundancy Settings of a Vault
|
|
621
|
+
"""
|
|
622
|
+
return pulumi.get(self, "redundancy_settings")
|
|
623
|
+
|
|
624
|
+
@redundancy_settings.setter
|
|
625
|
+
def redundancy_settings(self, value: Optional[pulumi.Input['VaultPropertiesRedundancySettingsArgs']]):
|
|
626
|
+
pulumi.set(self, "redundancy_settings", value)
|
|
627
|
+
|
|
628
|
+
@property
|
|
629
|
+
@pulumi.getter(name="restoreSettings")
|
|
630
|
+
def restore_settings(self) -> Optional[pulumi.Input['RestoreSettingsArgs']]:
|
|
631
|
+
"""
|
|
632
|
+
Restore Settings of the vault
|
|
633
|
+
"""
|
|
634
|
+
return pulumi.get(self, "restore_settings")
|
|
635
|
+
|
|
636
|
+
@restore_settings.setter
|
|
637
|
+
def restore_settings(self, value: Optional[pulumi.Input['RestoreSettingsArgs']]):
|
|
638
|
+
pulumi.set(self, "restore_settings", value)
|
|
639
|
+
|
|
640
|
+
@property
|
|
641
|
+
@pulumi.getter(name="securitySettings")
|
|
642
|
+
def security_settings(self) -> Optional[pulumi.Input['SecuritySettingsArgs']]:
|
|
643
|
+
"""
|
|
644
|
+
Security Settings of the vault
|
|
645
|
+
"""
|
|
646
|
+
return pulumi.get(self, "security_settings")
|
|
647
|
+
|
|
648
|
+
@security_settings.setter
|
|
649
|
+
def security_settings(self, value: Optional[pulumi.Input['SecuritySettingsArgs']]):
|
|
650
|
+
pulumi.set(self, "security_settings", value)
|
|
651
|
+
|
|
652
|
+
|