pulumi-azure-native 2.29.1a1708613115__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.1a1708613115.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/METADATA +2 -3
- {pulumi_azure_native-2.29.1a1708613115.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/RECORD +695 -460
- {pulumi_azure_native-2.29.1a1708613115.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.29.1a1708613115.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,1432 @@
|
|
|
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
|
+
'CorsConfigurationArgs',
|
|
15
|
+
'EncryptionCustomerManagedKeyEncryptionArgs',
|
|
16
|
+
'EncryptionArgs',
|
|
17
|
+
'FhirServiceAcrConfigurationArgs',
|
|
18
|
+
'FhirServiceAuthenticationConfigurationArgs',
|
|
19
|
+
'FhirServiceCorsConfigurationArgs',
|
|
20
|
+
'FhirServiceExportConfigurationArgs',
|
|
21
|
+
'FhirServiceImportConfigurationArgs',
|
|
22
|
+
'ImplementationGuidesConfigurationArgs',
|
|
23
|
+
'IotEventHubIngestionEndpointConfigurationArgs',
|
|
24
|
+
'IotMappingPropertiesArgs',
|
|
25
|
+
'PrivateEndpointConnectionArgs',
|
|
26
|
+
'PrivateLinkServiceConnectionStateArgs',
|
|
27
|
+
'ResourceVersionPolicyConfigurationArgs',
|
|
28
|
+
'ServiceAccessPolicyEntryArgs',
|
|
29
|
+
'ServiceAcrConfigurationInfoArgs',
|
|
30
|
+
'ServiceAuthenticationConfigurationInfoArgs',
|
|
31
|
+
'ServiceCorsConfigurationInfoArgs',
|
|
32
|
+
'ServiceCosmosDbConfigurationInfoArgs',
|
|
33
|
+
'ServiceExportConfigurationInfoArgs',
|
|
34
|
+
'ServiceImportConfigurationInfoArgs',
|
|
35
|
+
'ServiceManagedIdentityIdentityArgs',
|
|
36
|
+
'ServiceOciArtifactEntryArgs',
|
|
37
|
+
'ServicesPropertiesArgs',
|
|
38
|
+
'ServicesResourceIdentityArgs',
|
|
39
|
+
'SmartIdentityProviderApplicationArgs',
|
|
40
|
+
'SmartIdentityProviderConfigurationArgs',
|
|
41
|
+
'StorageConfigurationArgs',
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
@pulumi.input_type
|
|
45
|
+
class CorsConfigurationArgs:
|
|
46
|
+
def __init__(__self__, *,
|
|
47
|
+
allow_credentials: Optional[pulumi.Input[bool]] = None,
|
|
48
|
+
headers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
49
|
+
max_age: Optional[pulumi.Input[int]] = None,
|
|
50
|
+
methods: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
51
|
+
origins: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
52
|
+
"""
|
|
53
|
+
The settings for the CORS configuration of the service instance.
|
|
54
|
+
:param pulumi.Input[bool] allow_credentials: If credentials are allowed via CORS.
|
|
55
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] headers: The headers to be allowed via CORS.
|
|
56
|
+
:param pulumi.Input[int] max_age: The max age to be allowed via CORS.
|
|
57
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] methods: The methods to be allowed via CORS.
|
|
58
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] origins: The origins to be allowed via CORS.
|
|
59
|
+
"""
|
|
60
|
+
if allow_credentials is not None:
|
|
61
|
+
pulumi.set(__self__, "allow_credentials", allow_credentials)
|
|
62
|
+
if headers is not None:
|
|
63
|
+
pulumi.set(__self__, "headers", headers)
|
|
64
|
+
if max_age is not None:
|
|
65
|
+
pulumi.set(__self__, "max_age", max_age)
|
|
66
|
+
if methods is not None:
|
|
67
|
+
pulumi.set(__self__, "methods", methods)
|
|
68
|
+
if origins is not None:
|
|
69
|
+
pulumi.set(__self__, "origins", origins)
|
|
70
|
+
|
|
71
|
+
@property
|
|
72
|
+
@pulumi.getter(name="allowCredentials")
|
|
73
|
+
def allow_credentials(self) -> Optional[pulumi.Input[bool]]:
|
|
74
|
+
"""
|
|
75
|
+
If credentials are allowed via CORS.
|
|
76
|
+
"""
|
|
77
|
+
return pulumi.get(self, "allow_credentials")
|
|
78
|
+
|
|
79
|
+
@allow_credentials.setter
|
|
80
|
+
def allow_credentials(self, value: Optional[pulumi.Input[bool]]):
|
|
81
|
+
pulumi.set(self, "allow_credentials", value)
|
|
82
|
+
|
|
83
|
+
@property
|
|
84
|
+
@pulumi.getter
|
|
85
|
+
def headers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
86
|
+
"""
|
|
87
|
+
The headers to be allowed via CORS.
|
|
88
|
+
"""
|
|
89
|
+
return pulumi.get(self, "headers")
|
|
90
|
+
|
|
91
|
+
@headers.setter
|
|
92
|
+
def headers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
93
|
+
pulumi.set(self, "headers", value)
|
|
94
|
+
|
|
95
|
+
@property
|
|
96
|
+
@pulumi.getter(name="maxAge")
|
|
97
|
+
def max_age(self) -> Optional[pulumi.Input[int]]:
|
|
98
|
+
"""
|
|
99
|
+
The max age to be allowed via CORS.
|
|
100
|
+
"""
|
|
101
|
+
return pulumi.get(self, "max_age")
|
|
102
|
+
|
|
103
|
+
@max_age.setter
|
|
104
|
+
def max_age(self, value: Optional[pulumi.Input[int]]):
|
|
105
|
+
pulumi.set(self, "max_age", value)
|
|
106
|
+
|
|
107
|
+
@property
|
|
108
|
+
@pulumi.getter
|
|
109
|
+
def methods(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
110
|
+
"""
|
|
111
|
+
The methods to be allowed via CORS.
|
|
112
|
+
"""
|
|
113
|
+
return pulumi.get(self, "methods")
|
|
114
|
+
|
|
115
|
+
@methods.setter
|
|
116
|
+
def methods(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
117
|
+
pulumi.set(self, "methods", value)
|
|
118
|
+
|
|
119
|
+
@property
|
|
120
|
+
@pulumi.getter
|
|
121
|
+
def origins(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
122
|
+
"""
|
|
123
|
+
The origins to be allowed via CORS.
|
|
124
|
+
"""
|
|
125
|
+
return pulumi.get(self, "origins")
|
|
126
|
+
|
|
127
|
+
@origins.setter
|
|
128
|
+
def origins(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
129
|
+
pulumi.set(self, "origins", value)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
@pulumi.input_type
|
|
133
|
+
class EncryptionCustomerManagedKeyEncryptionArgs:
|
|
134
|
+
def __init__(__self__, *,
|
|
135
|
+
key_encryption_key_url: Optional[pulumi.Input[str]] = None):
|
|
136
|
+
"""
|
|
137
|
+
The encryption settings for the customer-managed key
|
|
138
|
+
:param pulumi.Input[str] key_encryption_key_url: The URL of the key to use for encryption
|
|
139
|
+
"""
|
|
140
|
+
if key_encryption_key_url is not None:
|
|
141
|
+
pulumi.set(__self__, "key_encryption_key_url", key_encryption_key_url)
|
|
142
|
+
|
|
143
|
+
@property
|
|
144
|
+
@pulumi.getter(name="keyEncryptionKeyUrl")
|
|
145
|
+
def key_encryption_key_url(self) -> Optional[pulumi.Input[str]]:
|
|
146
|
+
"""
|
|
147
|
+
The URL of the key to use for encryption
|
|
148
|
+
"""
|
|
149
|
+
return pulumi.get(self, "key_encryption_key_url")
|
|
150
|
+
|
|
151
|
+
@key_encryption_key_url.setter
|
|
152
|
+
def key_encryption_key_url(self, value: Optional[pulumi.Input[str]]):
|
|
153
|
+
pulumi.set(self, "key_encryption_key_url", value)
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
@pulumi.input_type
|
|
157
|
+
class EncryptionArgs:
|
|
158
|
+
def __init__(__self__, *,
|
|
159
|
+
customer_managed_key_encryption: Optional[pulumi.Input['EncryptionCustomerManagedKeyEncryptionArgs']] = None):
|
|
160
|
+
"""
|
|
161
|
+
Settings to encrypt a service
|
|
162
|
+
:param pulumi.Input['EncryptionCustomerManagedKeyEncryptionArgs'] customer_managed_key_encryption: The encryption settings for the customer-managed key
|
|
163
|
+
"""
|
|
164
|
+
if customer_managed_key_encryption is not None:
|
|
165
|
+
pulumi.set(__self__, "customer_managed_key_encryption", customer_managed_key_encryption)
|
|
166
|
+
|
|
167
|
+
@property
|
|
168
|
+
@pulumi.getter(name="customerManagedKeyEncryption")
|
|
169
|
+
def customer_managed_key_encryption(self) -> Optional[pulumi.Input['EncryptionCustomerManagedKeyEncryptionArgs']]:
|
|
170
|
+
"""
|
|
171
|
+
The encryption settings for the customer-managed key
|
|
172
|
+
"""
|
|
173
|
+
return pulumi.get(self, "customer_managed_key_encryption")
|
|
174
|
+
|
|
175
|
+
@customer_managed_key_encryption.setter
|
|
176
|
+
def customer_managed_key_encryption(self, value: Optional[pulumi.Input['EncryptionCustomerManagedKeyEncryptionArgs']]):
|
|
177
|
+
pulumi.set(self, "customer_managed_key_encryption", value)
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
@pulumi.input_type
|
|
181
|
+
class FhirServiceAcrConfigurationArgs:
|
|
182
|
+
def __init__(__self__, *,
|
|
183
|
+
login_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
184
|
+
oci_artifacts: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceOciArtifactEntryArgs']]]] = None):
|
|
185
|
+
"""
|
|
186
|
+
Azure container registry configuration information
|
|
187
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] login_servers: The list of the Azure container registry login servers.
|
|
188
|
+
:param pulumi.Input[Sequence[pulumi.Input['ServiceOciArtifactEntryArgs']]] oci_artifacts: The list of Open Container Initiative (OCI) artifacts.
|
|
189
|
+
"""
|
|
190
|
+
if login_servers is not None:
|
|
191
|
+
pulumi.set(__self__, "login_servers", login_servers)
|
|
192
|
+
if oci_artifacts is not None:
|
|
193
|
+
pulumi.set(__self__, "oci_artifacts", oci_artifacts)
|
|
194
|
+
|
|
195
|
+
@property
|
|
196
|
+
@pulumi.getter(name="loginServers")
|
|
197
|
+
def login_servers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
198
|
+
"""
|
|
199
|
+
The list of the Azure container registry login servers.
|
|
200
|
+
"""
|
|
201
|
+
return pulumi.get(self, "login_servers")
|
|
202
|
+
|
|
203
|
+
@login_servers.setter
|
|
204
|
+
def login_servers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
205
|
+
pulumi.set(self, "login_servers", value)
|
|
206
|
+
|
|
207
|
+
@property
|
|
208
|
+
@pulumi.getter(name="ociArtifacts")
|
|
209
|
+
def oci_artifacts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ServiceOciArtifactEntryArgs']]]]:
|
|
210
|
+
"""
|
|
211
|
+
The list of Open Container Initiative (OCI) artifacts.
|
|
212
|
+
"""
|
|
213
|
+
return pulumi.get(self, "oci_artifacts")
|
|
214
|
+
|
|
215
|
+
@oci_artifacts.setter
|
|
216
|
+
def oci_artifacts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceOciArtifactEntryArgs']]]]):
|
|
217
|
+
pulumi.set(self, "oci_artifacts", value)
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
@pulumi.input_type
|
|
221
|
+
class FhirServiceAuthenticationConfigurationArgs:
|
|
222
|
+
def __init__(__self__, *,
|
|
223
|
+
audience: Optional[pulumi.Input[str]] = None,
|
|
224
|
+
authority: Optional[pulumi.Input[str]] = None,
|
|
225
|
+
smart_identity_providers: Optional[pulumi.Input[Sequence[pulumi.Input['SmartIdentityProviderConfigurationArgs']]]] = None,
|
|
226
|
+
smart_proxy_enabled: Optional[pulumi.Input[bool]] = None):
|
|
227
|
+
"""
|
|
228
|
+
Authentication configuration information
|
|
229
|
+
:param pulumi.Input[str] audience: The audience url for the service
|
|
230
|
+
:param pulumi.Input[str] authority: The authority url for the service
|
|
231
|
+
:param pulumi.Input[Sequence[pulumi.Input['SmartIdentityProviderConfigurationArgs']]] smart_identity_providers: The array of identity provider configurations for SMART on FHIR authentication.
|
|
232
|
+
:param pulumi.Input[bool] smart_proxy_enabled: If the SMART on FHIR proxy is enabled
|
|
233
|
+
"""
|
|
234
|
+
if audience is not None:
|
|
235
|
+
pulumi.set(__self__, "audience", audience)
|
|
236
|
+
if authority is not None:
|
|
237
|
+
pulumi.set(__self__, "authority", authority)
|
|
238
|
+
if smart_identity_providers is not None:
|
|
239
|
+
pulumi.set(__self__, "smart_identity_providers", smart_identity_providers)
|
|
240
|
+
if smart_proxy_enabled is not None:
|
|
241
|
+
pulumi.set(__self__, "smart_proxy_enabled", smart_proxy_enabled)
|
|
242
|
+
|
|
243
|
+
@property
|
|
244
|
+
@pulumi.getter
|
|
245
|
+
def audience(self) -> Optional[pulumi.Input[str]]:
|
|
246
|
+
"""
|
|
247
|
+
The audience url for the service
|
|
248
|
+
"""
|
|
249
|
+
return pulumi.get(self, "audience")
|
|
250
|
+
|
|
251
|
+
@audience.setter
|
|
252
|
+
def audience(self, value: Optional[pulumi.Input[str]]):
|
|
253
|
+
pulumi.set(self, "audience", value)
|
|
254
|
+
|
|
255
|
+
@property
|
|
256
|
+
@pulumi.getter
|
|
257
|
+
def authority(self) -> Optional[pulumi.Input[str]]:
|
|
258
|
+
"""
|
|
259
|
+
The authority url for the service
|
|
260
|
+
"""
|
|
261
|
+
return pulumi.get(self, "authority")
|
|
262
|
+
|
|
263
|
+
@authority.setter
|
|
264
|
+
def authority(self, value: Optional[pulumi.Input[str]]):
|
|
265
|
+
pulumi.set(self, "authority", value)
|
|
266
|
+
|
|
267
|
+
@property
|
|
268
|
+
@pulumi.getter(name="smartIdentityProviders")
|
|
269
|
+
def smart_identity_providers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SmartIdentityProviderConfigurationArgs']]]]:
|
|
270
|
+
"""
|
|
271
|
+
The array of identity provider configurations for SMART on FHIR authentication.
|
|
272
|
+
"""
|
|
273
|
+
return pulumi.get(self, "smart_identity_providers")
|
|
274
|
+
|
|
275
|
+
@smart_identity_providers.setter
|
|
276
|
+
def smart_identity_providers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SmartIdentityProviderConfigurationArgs']]]]):
|
|
277
|
+
pulumi.set(self, "smart_identity_providers", value)
|
|
278
|
+
|
|
279
|
+
@property
|
|
280
|
+
@pulumi.getter(name="smartProxyEnabled")
|
|
281
|
+
def smart_proxy_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
282
|
+
"""
|
|
283
|
+
If the SMART on FHIR proxy is enabled
|
|
284
|
+
"""
|
|
285
|
+
return pulumi.get(self, "smart_proxy_enabled")
|
|
286
|
+
|
|
287
|
+
@smart_proxy_enabled.setter
|
|
288
|
+
def smart_proxy_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
289
|
+
pulumi.set(self, "smart_proxy_enabled", value)
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
@pulumi.input_type
|
|
293
|
+
class FhirServiceCorsConfigurationArgs:
|
|
294
|
+
def __init__(__self__, *,
|
|
295
|
+
allow_credentials: Optional[pulumi.Input[bool]] = None,
|
|
296
|
+
headers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
297
|
+
max_age: Optional[pulumi.Input[int]] = None,
|
|
298
|
+
methods: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
299
|
+
origins: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
300
|
+
"""
|
|
301
|
+
The settings for the CORS configuration of the service instance.
|
|
302
|
+
:param pulumi.Input[bool] allow_credentials: If credentials are allowed via CORS.
|
|
303
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] headers: The headers to be allowed via CORS.
|
|
304
|
+
:param pulumi.Input[int] max_age: The max age to be allowed via CORS.
|
|
305
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] methods: The methods to be allowed via CORS.
|
|
306
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] origins: The origins to be allowed via CORS.
|
|
307
|
+
"""
|
|
308
|
+
if allow_credentials is not None:
|
|
309
|
+
pulumi.set(__self__, "allow_credentials", allow_credentials)
|
|
310
|
+
if headers is not None:
|
|
311
|
+
pulumi.set(__self__, "headers", headers)
|
|
312
|
+
if max_age is not None:
|
|
313
|
+
pulumi.set(__self__, "max_age", max_age)
|
|
314
|
+
if methods is not None:
|
|
315
|
+
pulumi.set(__self__, "methods", methods)
|
|
316
|
+
if origins is not None:
|
|
317
|
+
pulumi.set(__self__, "origins", origins)
|
|
318
|
+
|
|
319
|
+
@property
|
|
320
|
+
@pulumi.getter(name="allowCredentials")
|
|
321
|
+
def allow_credentials(self) -> Optional[pulumi.Input[bool]]:
|
|
322
|
+
"""
|
|
323
|
+
If credentials are allowed via CORS.
|
|
324
|
+
"""
|
|
325
|
+
return pulumi.get(self, "allow_credentials")
|
|
326
|
+
|
|
327
|
+
@allow_credentials.setter
|
|
328
|
+
def allow_credentials(self, value: Optional[pulumi.Input[bool]]):
|
|
329
|
+
pulumi.set(self, "allow_credentials", value)
|
|
330
|
+
|
|
331
|
+
@property
|
|
332
|
+
@pulumi.getter
|
|
333
|
+
def headers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
334
|
+
"""
|
|
335
|
+
The headers to be allowed via CORS.
|
|
336
|
+
"""
|
|
337
|
+
return pulumi.get(self, "headers")
|
|
338
|
+
|
|
339
|
+
@headers.setter
|
|
340
|
+
def headers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
341
|
+
pulumi.set(self, "headers", value)
|
|
342
|
+
|
|
343
|
+
@property
|
|
344
|
+
@pulumi.getter(name="maxAge")
|
|
345
|
+
def max_age(self) -> Optional[pulumi.Input[int]]:
|
|
346
|
+
"""
|
|
347
|
+
The max age to be allowed via CORS.
|
|
348
|
+
"""
|
|
349
|
+
return pulumi.get(self, "max_age")
|
|
350
|
+
|
|
351
|
+
@max_age.setter
|
|
352
|
+
def max_age(self, value: Optional[pulumi.Input[int]]):
|
|
353
|
+
pulumi.set(self, "max_age", value)
|
|
354
|
+
|
|
355
|
+
@property
|
|
356
|
+
@pulumi.getter
|
|
357
|
+
def methods(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
358
|
+
"""
|
|
359
|
+
The methods to be allowed via CORS.
|
|
360
|
+
"""
|
|
361
|
+
return pulumi.get(self, "methods")
|
|
362
|
+
|
|
363
|
+
@methods.setter
|
|
364
|
+
def methods(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
365
|
+
pulumi.set(self, "methods", value)
|
|
366
|
+
|
|
367
|
+
@property
|
|
368
|
+
@pulumi.getter
|
|
369
|
+
def origins(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
370
|
+
"""
|
|
371
|
+
The origins to be allowed via CORS.
|
|
372
|
+
"""
|
|
373
|
+
return pulumi.get(self, "origins")
|
|
374
|
+
|
|
375
|
+
@origins.setter
|
|
376
|
+
def origins(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
377
|
+
pulumi.set(self, "origins", value)
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
@pulumi.input_type
|
|
381
|
+
class FhirServiceExportConfigurationArgs:
|
|
382
|
+
def __init__(__self__, *,
|
|
383
|
+
storage_account_name: Optional[pulumi.Input[str]] = None):
|
|
384
|
+
"""
|
|
385
|
+
Export operation configuration information
|
|
386
|
+
:param pulumi.Input[str] storage_account_name: The name of the default export storage account.
|
|
387
|
+
"""
|
|
388
|
+
if storage_account_name is not None:
|
|
389
|
+
pulumi.set(__self__, "storage_account_name", storage_account_name)
|
|
390
|
+
|
|
391
|
+
@property
|
|
392
|
+
@pulumi.getter(name="storageAccountName")
|
|
393
|
+
def storage_account_name(self) -> Optional[pulumi.Input[str]]:
|
|
394
|
+
"""
|
|
395
|
+
The name of the default export storage account.
|
|
396
|
+
"""
|
|
397
|
+
return pulumi.get(self, "storage_account_name")
|
|
398
|
+
|
|
399
|
+
@storage_account_name.setter
|
|
400
|
+
def storage_account_name(self, value: Optional[pulumi.Input[str]]):
|
|
401
|
+
pulumi.set(self, "storage_account_name", value)
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
@pulumi.input_type
|
|
405
|
+
class FhirServiceImportConfigurationArgs:
|
|
406
|
+
def __init__(__self__, *,
|
|
407
|
+
enabled: Optional[pulumi.Input[bool]] = None,
|
|
408
|
+
initial_import_mode: Optional[pulumi.Input[bool]] = None,
|
|
409
|
+
integration_data_store: Optional[pulumi.Input[str]] = None):
|
|
410
|
+
"""
|
|
411
|
+
Import operation configuration information
|
|
412
|
+
:param pulumi.Input[bool] enabled: If the import operation is enabled.
|
|
413
|
+
:param pulumi.Input[bool] initial_import_mode: If the FHIR service is in InitialImportMode.
|
|
414
|
+
:param pulumi.Input[str] integration_data_store: The name of the default integration storage account.
|
|
415
|
+
"""
|
|
416
|
+
if enabled is not None:
|
|
417
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
418
|
+
if initial_import_mode is not None:
|
|
419
|
+
pulumi.set(__self__, "initial_import_mode", initial_import_mode)
|
|
420
|
+
if integration_data_store is not None:
|
|
421
|
+
pulumi.set(__self__, "integration_data_store", integration_data_store)
|
|
422
|
+
|
|
423
|
+
@property
|
|
424
|
+
@pulumi.getter
|
|
425
|
+
def enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
426
|
+
"""
|
|
427
|
+
If the import operation is enabled.
|
|
428
|
+
"""
|
|
429
|
+
return pulumi.get(self, "enabled")
|
|
430
|
+
|
|
431
|
+
@enabled.setter
|
|
432
|
+
def enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
433
|
+
pulumi.set(self, "enabled", value)
|
|
434
|
+
|
|
435
|
+
@property
|
|
436
|
+
@pulumi.getter(name="initialImportMode")
|
|
437
|
+
def initial_import_mode(self) -> Optional[pulumi.Input[bool]]:
|
|
438
|
+
"""
|
|
439
|
+
If the FHIR service is in InitialImportMode.
|
|
440
|
+
"""
|
|
441
|
+
return pulumi.get(self, "initial_import_mode")
|
|
442
|
+
|
|
443
|
+
@initial_import_mode.setter
|
|
444
|
+
def initial_import_mode(self, value: Optional[pulumi.Input[bool]]):
|
|
445
|
+
pulumi.set(self, "initial_import_mode", value)
|
|
446
|
+
|
|
447
|
+
@property
|
|
448
|
+
@pulumi.getter(name="integrationDataStore")
|
|
449
|
+
def integration_data_store(self) -> Optional[pulumi.Input[str]]:
|
|
450
|
+
"""
|
|
451
|
+
The name of the default integration storage account.
|
|
452
|
+
"""
|
|
453
|
+
return pulumi.get(self, "integration_data_store")
|
|
454
|
+
|
|
455
|
+
@integration_data_store.setter
|
|
456
|
+
def integration_data_store(self, value: Optional[pulumi.Input[str]]):
|
|
457
|
+
pulumi.set(self, "integration_data_store", value)
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
@pulumi.input_type
|
|
461
|
+
class ImplementationGuidesConfigurationArgs:
|
|
462
|
+
def __init__(__self__, *,
|
|
463
|
+
us_core_missing_data: Optional[pulumi.Input[bool]] = None):
|
|
464
|
+
"""
|
|
465
|
+
The settings for Implementation Guides - defining capabilities for national standards, vendor consortiums, clinical societies, etc.
|
|
466
|
+
:param pulumi.Input[bool] us_core_missing_data: If US Core Missing Data requirement is enabled.
|
|
467
|
+
"""
|
|
468
|
+
if us_core_missing_data is not None:
|
|
469
|
+
pulumi.set(__self__, "us_core_missing_data", us_core_missing_data)
|
|
470
|
+
|
|
471
|
+
@property
|
|
472
|
+
@pulumi.getter(name="usCoreMissingData")
|
|
473
|
+
def us_core_missing_data(self) -> Optional[pulumi.Input[bool]]:
|
|
474
|
+
"""
|
|
475
|
+
If US Core Missing Data requirement is enabled.
|
|
476
|
+
"""
|
|
477
|
+
return pulumi.get(self, "us_core_missing_data")
|
|
478
|
+
|
|
479
|
+
@us_core_missing_data.setter
|
|
480
|
+
def us_core_missing_data(self, value: Optional[pulumi.Input[bool]]):
|
|
481
|
+
pulumi.set(self, "us_core_missing_data", value)
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
@pulumi.input_type
|
|
485
|
+
class IotEventHubIngestionEndpointConfigurationArgs:
|
|
486
|
+
def __init__(__self__, *,
|
|
487
|
+
consumer_group: Optional[pulumi.Input[str]] = None,
|
|
488
|
+
event_hub_name: Optional[pulumi.Input[str]] = None,
|
|
489
|
+
fully_qualified_event_hub_namespace: Optional[pulumi.Input[str]] = None):
|
|
490
|
+
"""
|
|
491
|
+
Event Hub ingestion endpoint configuration
|
|
492
|
+
:param pulumi.Input[str] consumer_group: Consumer group of the event hub to connected to.
|
|
493
|
+
:param pulumi.Input[str] event_hub_name: Event Hub name to connect to.
|
|
494
|
+
:param pulumi.Input[str] fully_qualified_event_hub_namespace: Fully qualified namespace of the Event Hub to connect to.
|
|
495
|
+
"""
|
|
496
|
+
if consumer_group is not None:
|
|
497
|
+
pulumi.set(__self__, "consumer_group", consumer_group)
|
|
498
|
+
if event_hub_name is not None:
|
|
499
|
+
pulumi.set(__self__, "event_hub_name", event_hub_name)
|
|
500
|
+
if fully_qualified_event_hub_namespace is not None:
|
|
501
|
+
pulumi.set(__self__, "fully_qualified_event_hub_namespace", fully_qualified_event_hub_namespace)
|
|
502
|
+
|
|
503
|
+
@property
|
|
504
|
+
@pulumi.getter(name="consumerGroup")
|
|
505
|
+
def consumer_group(self) -> Optional[pulumi.Input[str]]:
|
|
506
|
+
"""
|
|
507
|
+
Consumer group of the event hub to connected to.
|
|
508
|
+
"""
|
|
509
|
+
return pulumi.get(self, "consumer_group")
|
|
510
|
+
|
|
511
|
+
@consumer_group.setter
|
|
512
|
+
def consumer_group(self, value: Optional[pulumi.Input[str]]):
|
|
513
|
+
pulumi.set(self, "consumer_group", value)
|
|
514
|
+
|
|
515
|
+
@property
|
|
516
|
+
@pulumi.getter(name="eventHubName")
|
|
517
|
+
def event_hub_name(self) -> Optional[pulumi.Input[str]]:
|
|
518
|
+
"""
|
|
519
|
+
Event Hub name to connect to.
|
|
520
|
+
"""
|
|
521
|
+
return pulumi.get(self, "event_hub_name")
|
|
522
|
+
|
|
523
|
+
@event_hub_name.setter
|
|
524
|
+
def event_hub_name(self, value: Optional[pulumi.Input[str]]):
|
|
525
|
+
pulumi.set(self, "event_hub_name", value)
|
|
526
|
+
|
|
527
|
+
@property
|
|
528
|
+
@pulumi.getter(name="fullyQualifiedEventHubNamespace")
|
|
529
|
+
def fully_qualified_event_hub_namespace(self) -> Optional[pulumi.Input[str]]:
|
|
530
|
+
"""
|
|
531
|
+
Fully qualified namespace of the Event Hub to connect to.
|
|
532
|
+
"""
|
|
533
|
+
return pulumi.get(self, "fully_qualified_event_hub_namespace")
|
|
534
|
+
|
|
535
|
+
@fully_qualified_event_hub_namespace.setter
|
|
536
|
+
def fully_qualified_event_hub_namespace(self, value: Optional[pulumi.Input[str]]):
|
|
537
|
+
pulumi.set(self, "fully_qualified_event_hub_namespace", value)
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
@pulumi.input_type
|
|
541
|
+
class IotMappingPropertiesArgs:
|
|
542
|
+
def __init__(__self__, *,
|
|
543
|
+
content: Optional[Any] = None):
|
|
544
|
+
"""
|
|
545
|
+
The mapping content.
|
|
546
|
+
:param Any content: The mapping.
|
|
547
|
+
"""
|
|
548
|
+
if content is not None:
|
|
549
|
+
pulumi.set(__self__, "content", content)
|
|
550
|
+
|
|
551
|
+
@property
|
|
552
|
+
@pulumi.getter
|
|
553
|
+
def content(self) -> Optional[Any]:
|
|
554
|
+
"""
|
|
555
|
+
The mapping.
|
|
556
|
+
"""
|
|
557
|
+
return pulumi.get(self, "content")
|
|
558
|
+
|
|
559
|
+
@content.setter
|
|
560
|
+
def content(self, value: Optional[Any]):
|
|
561
|
+
pulumi.set(self, "content", value)
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
@pulumi.input_type
|
|
565
|
+
class PrivateEndpointConnectionArgs:
|
|
566
|
+
def __init__(__self__, *,
|
|
567
|
+
private_link_service_connection_state: pulumi.Input['PrivateLinkServiceConnectionStateArgs']):
|
|
568
|
+
"""
|
|
569
|
+
The Private Endpoint Connection resource.
|
|
570
|
+
:param pulumi.Input['PrivateLinkServiceConnectionStateArgs'] private_link_service_connection_state: A collection of information about the state of the connection between service consumer and provider.
|
|
571
|
+
"""
|
|
572
|
+
pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
|
|
573
|
+
|
|
574
|
+
@property
|
|
575
|
+
@pulumi.getter(name="privateLinkServiceConnectionState")
|
|
576
|
+
def private_link_service_connection_state(self) -> pulumi.Input['PrivateLinkServiceConnectionStateArgs']:
|
|
577
|
+
"""
|
|
578
|
+
A collection of information about the state of the connection between service consumer and provider.
|
|
579
|
+
"""
|
|
580
|
+
return pulumi.get(self, "private_link_service_connection_state")
|
|
581
|
+
|
|
582
|
+
@private_link_service_connection_state.setter
|
|
583
|
+
def private_link_service_connection_state(self, value: pulumi.Input['PrivateLinkServiceConnectionStateArgs']):
|
|
584
|
+
pulumi.set(self, "private_link_service_connection_state", value)
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
@pulumi.input_type
|
|
588
|
+
class PrivateLinkServiceConnectionStateArgs:
|
|
589
|
+
def __init__(__self__, *,
|
|
590
|
+
actions_required: Optional[pulumi.Input[str]] = None,
|
|
591
|
+
description: Optional[pulumi.Input[str]] = None,
|
|
592
|
+
status: Optional[pulumi.Input[Union[str, 'PrivateEndpointServiceConnectionStatus']]] = None):
|
|
593
|
+
"""
|
|
594
|
+
A collection of information about the state of the connection between service consumer and provider.
|
|
595
|
+
:param pulumi.Input[str] actions_required: A message indicating if changes on the service provider require any updates on the consumer.
|
|
596
|
+
:param pulumi.Input[str] description: The reason for approval/rejection of the connection.
|
|
597
|
+
:param pulumi.Input[Union[str, 'PrivateEndpointServiceConnectionStatus']] status: Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
|
|
598
|
+
"""
|
|
599
|
+
if actions_required is not None:
|
|
600
|
+
pulumi.set(__self__, "actions_required", actions_required)
|
|
601
|
+
if description is not None:
|
|
602
|
+
pulumi.set(__self__, "description", description)
|
|
603
|
+
if status is not None:
|
|
604
|
+
pulumi.set(__self__, "status", status)
|
|
605
|
+
|
|
606
|
+
@property
|
|
607
|
+
@pulumi.getter(name="actionsRequired")
|
|
608
|
+
def actions_required(self) -> Optional[pulumi.Input[str]]:
|
|
609
|
+
"""
|
|
610
|
+
A message indicating if changes on the service provider require any updates on the consumer.
|
|
611
|
+
"""
|
|
612
|
+
return pulumi.get(self, "actions_required")
|
|
613
|
+
|
|
614
|
+
@actions_required.setter
|
|
615
|
+
def actions_required(self, value: Optional[pulumi.Input[str]]):
|
|
616
|
+
pulumi.set(self, "actions_required", value)
|
|
617
|
+
|
|
618
|
+
@property
|
|
619
|
+
@pulumi.getter
|
|
620
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
|
621
|
+
"""
|
|
622
|
+
The reason for approval/rejection of the connection.
|
|
623
|
+
"""
|
|
624
|
+
return pulumi.get(self, "description")
|
|
625
|
+
|
|
626
|
+
@description.setter
|
|
627
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
|
628
|
+
pulumi.set(self, "description", value)
|
|
629
|
+
|
|
630
|
+
@property
|
|
631
|
+
@pulumi.getter
|
|
632
|
+
def status(self) -> Optional[pulumi.Input[Union[str, 'PrivateEndpointServiceConnectionStatus']]]:
|
|
633
|
+
"""
|
|
634
|
+
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
|
|
635
|
+
"""
|
|
636
|
+
return pulumi.get(self, "status")
|
|
637
|
+
|
|
638
|
+
@status.setter
|
|
639
|
+
def status(self, value: Optional[pulumi.Input[Union[str, 'PrivateEndpointServiceConnectionStatus']]]):
|
|
640
|
+
pulumi.set(self, "status", value)
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
@pulumi.input_type
|
|
644
|
+
class ResourceVersionPolicyConfigurationArgs:
|
|
645
|
+
def __init__(__self__, *,
|
|
646
|
+
default: Optional[pulumi.Input[Union[str, 'FhirResourceVersionPolicy']]] = None,
|
|
647
|
+
resource_type_overrides: Optional[pulumi.Input[Mapping[str, pulumi.Input[Union[str, 'FhirResourceVersionPolicy']]]]] = None):
|
|
648
|
+
"""
|
|
649
|
+
The settings for history tracking for FHIR resources.
|
|
650
|
+
:param pulumi.Input[Union[str, 'FhirResourceVersionPolicy']] default: The default value for tracking history across all resources.
|
|
651
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[Union[str, 'FhirResourceVersionPolicy']]]] resource_type_overrides: A list of FHIR Resources and their version policy overrides.
|
|
652
|
+
"""
|
|
653
|
+
if default is not None:
|
|
654
|
+
pulumi.set(__self__, "default", default)
|
|
655
|
+
if resource_type_overrides is not None:
|
|
656
|
+
pulumi.set(__self__, "resource_type_overrides", resource_type_overrides)
|
|
657
|
+
|
|
658
|
+
@property
|
|
659
|
+
@pulumi.getter
|
|
660
|
+
def default(self) -> Optional[pulumi.Input[Union[str, 'FhirResourceVersionPolicy']]]:
|
|
661
|
+
"""
|
|
662
|
+
The default value for tracking history across all resources.
|
|
663
|
+
"""
|
|
664
|
+
return pulumi.get(self, "default")
|
|
665
|
+
|
|
666
|
+
@default.setter
|
|
667
|
+
def default(self, value: Optional[pulumi.Input[Union[str, 'FhirResourceVersionPolicy']]]):
|
|
668
|
+
pulumi.set(self, "default", value)
|
|
669
|
+
|
|
670
|
+
@property
|
|
671
|
+
@pulumi.getter(name="resourceTypeOverrides")
|
|
672
|
+
def resource_type_overrides(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[Union[str, 'FhirResourceVersionPolicy']]]]]:
|
|
673
|
+
"""
|
|
674
|
+
A list of FHIR Resources and their version policy overrides.
|
|
675
|
+
"""
|
|
676
|
+
return pulumi.get(self, "resource_type_overrides")
|
|
677
|
+
|
|
678
|
+
@resource_type_overrides.setter
|
|
679
|
+
def resource_type_overrides(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[Union[str, 'FhirResourceVersionPolicy']]]]]):
|
|
680
|
+
pulumi.set(self, "resource_type_overrides", value)
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
@pulumi.input_type
|
|
684
|
+
class ServiceAccessPolicyEntryArgs:
|
|
685
|
+
def __init__(__self__, *,
|
|
686
|
+
object_id: pulumi.Input[str]):
|
|
687
|
+
"""
|
|
688
|
+
An access policy entry.
|
|
689
|
+
:param pulumi.Input[str] object_id: An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
|
|
690
|
+
"""
|
|
691
|
+
pulumi.set(__self__, "object_id", object_id)
|
|
692
|
+
|
|
693
|
+
@property
|
|
694
|
+
@pulumi.getter(name="objectId")
|
|
695
|
+
def object_id(self) -> pulumi.Input[str]:
|
|
696
|
+
"""
|
|
697
|
+
An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
|
|
698
|
+
"""
|
|
699
|
+
return pulumi.get(self, "object_id")
|
|
700
|
+
|
|
701
|
+
@object_id.setter
|
|
702
|
+
def object_id(self, value: pulumi.Input[str]):
|
|
703
|
+
pulumi.set(self, "object_id", value)
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
@pulumi.input_type
|
|
707
|
+
class ServiceAcrConfigurationInfoArgs:
|
|
708
|
+
def __init__(__self__, *,
|
|
709
|
+
login_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
710
|
+
oci_artifacts: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceOciArtifactEntryArgs']]]] = None):
|
|
711
|
+
"""
|
|
712
|
+
Azure container registry configuration information
|
|
713
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] login_servers: The list of the ACR login servers.
|
|
714
|
+
:param pulumi.Input[Sequence[pulumi.Input['ServiceOciArtifactEntryArgs']]] oci_artifacts: The list of Open Container Initiative (OCI) artifacts.
|
|
715
|
+
"""
|
|
716
|
+
if login_servers is not None:
|
|
717
|
+
pulumi.set(__self__, "login_servers", login_servers)
|
|
718
|
+
if oci_artifacts is not None:
|
|
719
|
+
pulumi.set(__self__, "oci_artifacts", oci_artifacts)
|
|
720
|
+
|
|
721
|
+
@property
|
|
722
|
+
@pulumi.getter(name="loginServers")
|
|
723
|
+
def login_servers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
724
|
+
"""
|
|
725
|
+
The list of the ACR login servers.
|
|
726
|
+
"""
|
|
727
|
+
return pulumi.get(self, "login_servers")
|
|
728
|
+
|
|
729
|
+
@login_servers.setter
|
|
730
|
+
def login_servers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
731
|
+
pulumi.set(self, "login_servers", value)
|
|
732
|
+
|
|
733
|
+
@property
|
|
734
|
+
@pulumi.getter(name="ociArtifacts")
|
|
735
|
+
def oci_artifacts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ServiceOciArtifactEntryArgs']]]]:
|
|
736
|
+
"""
|
|
737
|
+
The list of Open Container Initiative (OCI) artifacts.
|
|
738
|
+
"""
|
|
739
|
+
return pulumi.get(self, "oci_artifacts")
|
|
740
|
+
|
|
741
|
+
@oci_artifacts.setter
|
|
742
|
+
def oci_artifacts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceOciArtifactEntryArgs']]]]):
|
|
743
|
+
pulumi.set(self, "oci_artifacts", value)
|
|
744
|
+
|
|
745
|
+
|
|
746
|
+
@pulumi.input_type
|
|
747
|
+
class ServiceAuthenticationConfigurationInfoArgs:
|
|
748
|
+
def __init__(__self__, *,
|
|
749
|
+
audience: Optional[pulumi.Input[str]] = None,
|
|
750
|
+
authority: Optional[pulumi.Input[str]] = None,
|
|
751
|
+
smart_proxy_enabled: Optional[pulumi.Input[bool]] = None):
|
|
752
|
+
"""
|
|
753
|
+
Authentication configuration information
|
|
754
|
+
:param pulumi.Input[str] audience: The audience url for the service
|
|
755
|
+
:param pulumi.Input[str] authority: The authority url for the service
|
|
756
|
+
:param pulumi.Input[bool] smart_proxy_enabled: If the SMART on FHIR proxy is enabled
|
|
757
|
+
"""
|
|
758
|
+
if audience is not None:
|
|
759
|
+
pulumi.set(__self__, "audience", audience)
|
|
760
|
+
if authority is not None:
|
|
761
|
+
pulumi.set(__self__, "authority", authority)
|
|
762
|
+
if smart_proxy_enabled is not None:
|
|
763
|
+
pulumi.set(__self__, "smart_proxy_enabled", smart_proxy_enabled)
|
|
764
|
+
|
|
765
|
+
@property
|
|
766
|
+
@pulumi.getter
|
|
767
|
+
def audience(self) -> Optional[pulumi.Input[str]]:
|
|
768
|
+
"""
|
|
769
|
+
The audience url for the service
|
|
770
|
+
"""
|
|
771
|
+
return pulumi.get(self, "audience")
|
|
772
|
+
|
|
773
|
+
@audience.setter
|
|
774
|
+
def audience(self, value: Optional[pulumi.Input[str]]):
|
|
775
|
+
pulumi.set(self, "audience", value)
|
|
776
|
+
|
|
777
|
+
@property
|
|
778
|
+
@pulumi.getter
|
|
779
|
+
def authority(self) -> Optional[pulumi.Input[str]]:
|
|
780
|
+
"""
|
|
781
|
+
The authority url for the service
|
|
782
|
+
"""
|
|
783
|
+
return pulumi.get(self, "authority")
|
|
784
|
+
|
|
785
|
+
@authority.setter
|
|
786
|
+
def authority(self, value: Optional[pulumi.Input[str]]):
|
|
787
|
+
pulumi.set(self, "authority", value)
|
|
788
|
+
|
|
789
|
+
@property
|
|
790
|
+
@pulumi.getter(name="smartProxyEnabled")
|
|
791
|
+
def smart_proxy_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
792
|
+
"""
|
|
793
|
+
If the SMART on FHIR proxy is enabled
|
|
794
|
+
"""
|
|
795
|
+
return pulumi.get(self, "smart_proxy_enabled")
|
|
796
|
+
|
|
797
|
+
@smart_proxy_enabled.setter
|
|
798
|
+
def smart_proxy_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
799
|
+
pulumi.set(self, "smart_proxy_enabled", value)
|
|
800
|
+
|
|
801
|
+
|
|
802
|
+
@pulumi.input_type
|
|
803
|
+
class ServiceCorsConfigurationInfoArgs:
|
|
804
|
+
def __init__(__self__, *,
|
|
805
|
+
allow_credentials: Optional[pulumi.Input[bool]] = None,
|
|
806
|
+
headers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
807
|
+
max_age: Optional[pulumi.Input[int]] = None,
|
|
808
|
+
methods: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
809
|
+
origins: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
810
|
+
"""
|
|
811
|
+
The settings for the CORS configuration of the service instance.
|
|
812
|
+
:param pulumi.Input[bool] allow_credentials: If credentials are allowed via CORS.
|
|
813
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] headers: The headers to be allowed via CORS.
|
|
814
|
+
:param pulumi.Input[int] max_age: The max age to be allowed via CORS.
|
|
815
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] methods: The methods to be allowed via CORS.
|
|
816
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] origins: The origins to be allowed via CORS.
|
|
817
|
+
"""
|
|
818
|
+
if allow_credentials is not None:
|
|
819
|
+
pulumi.set(__self__, "allow_credentials", allow_credentials)
|
|
820
|
+
if headers is not None:
|
|
821
|
+
pulumi.set(__self__, "headers", headers)
|
|
822
|
+
if max_age is not None:
|
|
823
|
+
pulumi.set(__self__, "max_age", max_age)
|
|
824
|
+
if methods is not None:
|
|
825
|
+
pulumi.set(__self__, "methods", methods)
|
|
826
|
+
if origins is not None:
|
|
827
|
+
pulumi.set(__self__, "origins", origins)
|
|
828
|
+
|
|
829
|
+
@property
|
|
830
|
+
@pulumi.getter(name="allowCredentials")
|
|
831
|
+
def allow_credentials(self) -> Optional[pulumi.Input[bool]]:
|
|
832
|
+
"""
|
|
833
|
+
If credentials are allowed via CORS.
|
|
834
|
+
"""
|
|
835
|
+
return pulumi.get(self, "allow_credentials")
|
|
836
|
+
|
|
837
|
+
@allow_credentials.setter
|
|
838
|
+
def allow_credentials(self, value: Optional[pulumi.Input[bool]]):
|
|
839
|
+
pulumi.set(self, "allow_credentials", value)
|
|
840
|
+
|
|
841
|
+
@property
|
|
842
|
+
@pulumi.getter
|
|
843
|
+
def headers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
844
|
+
"""
|
|
845
|
+
The headers to be allowed via CORS.
|
|
846
|
+
"""
|
|
847
|
+
return pulumi.get(self, "headers")
|
|
848
|
+
|
|
849
|
+
@headers.setter
|
|
850
|
+
def headers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
851
|
+
pulumi.set(self, "headers", value)
|
|
852
|
+
|
|
853
|
+
@property
|
|
854
|
+
@pulumi.getter(name="maxAge")
|
|
855
|
+
def max_age(self) -> Optional[pulumi.Input[int]]:
|
|
856
|
+
"""
|
|
857
|
+
The max age to be allowed via CORS.
|
|
858
|
+
"""
|
|
859
|
+
return pulumi.get(self, "max_age")
|
|
860
|
+
|
|
861
|
+
@max_age.setter
|
|
862
|
+
def max_age(self, value: Optional[pulumi.Input[int]]):
|
|
863
|
+
pulumi.set(self, "max_age", value)
|
|
864
|
+
|
|
865
|
+
@property
|
|
866
|
+
@pulumi.getter
|
|
867
|
+
def methods(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
868
|
+
"""
|
|
869
|
+
The methods to be allowed via CORS.
|
|
870
|
+
"""
|
|
871
|
+
return pulumi.get(self, "methods")
|
|
872
|
+
|
|
873
|
+
@methods.setter
|
|
874
|
+
def methods(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
875
|
+
pulumi.set(self, "methods", value)
|
|
876
|
+
|
|
877
|
+
@property
|
|
878
|
+
@pulumi.getter
|
|
879
|
+
def origins(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
880
|
+
"""
|
|
881
|
+
The origins to be allowed via CORS.
|
|
882
|
+
"""
|
|
883
|
+
return pulumi.get(self, "origins")
|
|
884
|
+
|
|
885
|
+
@origins.setter
|
|
886
|
+
def origins(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
887
|
+
pulumi.set(self, "origins", value)
|
|
888
|
+
|
|
889
|
+
|
|
890
|
+
@pulumi.input_type
|
|
891
|
+
class ServiceCosmosDbConfigurationInfoArgs:
|
|
892
|
+
def __init__(__self__, *,
|
|
893
|
+
cross_tenant_cmk_application_id: Optional[pulumi.Input[str]] = None,
|
|
894
|
+
key_vault_key_uri: Optional[pulumi.Input[str]] = None,
|
|
895
|
+
offer_throughput: Optional[pulumi.Input[int]] = None):
|
|
896
|
+
"""
|
|
897
|
+
The settings for the Cosmos DB database backing the service.
|
|
898
|
+
:param pulumi.Input[str] cross_tenant_cmk_application_id: The multi-tenant application id used to enable CMK access for services in a data sovereign region.
|
|
899
|
+
:param pulumi.Input[str] key_vault_key_uri: The URI of the customer-managed key for the backing database.
|
|
900
|
+
:param pulumi.Input[int] offer_throughput: The provisioned throughput for the backing database.
|
|
901
|
+
"""
|
|
902
|
+
if cross_tenant_cmk_application_id is not None:
|
|
903
|
+
pulumi.set(__self__, "cross_tenant_cmk_application_id", cross_tenant_cmk_application_id)
|
|
904
|
+
if key_vault_key_uri is not None:
|
|
905
|
+
pulumi.set(__self__, "key_vault_key_uri", key_vault_key_uri)
|
|
906
|
+
if offer_throughput is not None:
|
|
907
|
+
pulumi.set(__self__, "offer_throughput", offer_throughput)
|
|
908
|
+
|
|
909
|
+
@property
|
|
910
|
+
@pulumi.getter(name="crossTenantCmkApplicationId")
|
|
911
|
+
def cross_tenant_cmk_application_id(self) -> Optional[pulumi.Input[str]]:
|
|
912
|
+
"""
|
|
913
|
+
The multi-tenant application id used to enable CMK access for services in a data sovereign region.
|
|
914
|
+
"""
|
|
915
|
+
return pulumi.get(self, "cross_tenant_cmk_application_id")
|
|
916
|
+
|
|
917
|
+
@cross_tenant_cmk_application_id.setter
|
|
918
|
+
def cross_tenant_cmk_application_id(self, value: Optional[pulumi.Input[str]]):
|
|
919
|
+
pulumi.set(self, "cross_tenant_cmk_application_id", value)
|
|
920
|
+
|
|
921
|
+
@property
|
|
922
|
+
@pulumi.getter(name="keyVaultKeyUri")
|
|
923
|
+
def key_vault_key_uri(self) -> Optional[pulumi.Input[str]]:
|
|
924
|
+
"""
|
|
925
|
+
The URI of the customer-managed key for the backing database.
|
|
926
|
+
"""
|
|
927
|
+
return pulumi.get(self, "key_vault_key_uri")
|
|
928
|
+
|
|
929
|
+
@key_vault_key_uri.setter
|
|
930
|
+
def key_vault_key_uri(self, value: Optional[pulumi.Input[str]]):
|
|
931
|
+
pulumi.set(self, "key_vault_key_uri", value)
|
|
932
|
+
|
|
933
|
+
@property
|
|
934
|
+
@pulumi.getter(name="offerThroughput")
|
|
935
|
+
def offer_throughput(self) -> Optional[pulumi.Input[int]]:
|
|
936
|
+
"""
|
|
937
|
+
The provisioned throughput for the backing database.
|
|
938
|
+
"""
|
|
939
|
+
return pulumi.get(self, "offer_throughput")
|
|
940
|
+
|
|
941
|
+
@offer_throughput.setter
|
|
942
|
+
def offer_throughput(self, value: Optional[pulumi.Input[int]]):
|
|
943
|
+
pulumi.set(self, "offer_throughput", value)
|
|
944
|
+
|
|
945
|
+
|
|
946
|
+
@pulumi.input_type
|
|
947
|
+
class ServiceExportConfigurationInfoArgs:
|
|
948
|
+
def __init__(__self__, *,
|
|
949
|
+
storage_account_name: Optional[pulumi.Input[str]] = None):
|
|
950
|
+
"""
|
|
951
|
+
Export operation configuration information
|
|
952
|
+
:param pulumi.Input[str] storage_account_name: The name of the default export storage account.
|
|
953
|
+
"""
|
|
954
|
+
if storage_account_name is not None:
|
|
955
|
+
pulumi.set(__self__, "storage_account_name", storage_account_name)
|
|
956
|
+
|
|
957
|
+
@property
|
|
958
|
+
@pulumi.getter(name="storageAccountName")
|
|
959
|
+
def storage_account_name(self) -> Optional[pulumi.Input[str]]:
|
|
960
|
+
"""
|
|
961
|
+
The name of the default export storage account.
|
|
962
|
+
"""
|
|
963
|
+
return pulumi.get(self, "storage_account_name")
|
|
964
|
+
|
|
965
|
+
@storage_account_name.setter
|
|
966
|
+
def storage_account_name(self, value: Optional[pulumi.Input[str]]):
|
|
967
|
+
pulumi.set(self, "storage_account_name", value)
|
|
968
|
+
|
|
969
|
+
|
|
970
|
+
@pulumi.input_type
|
|
971
|
+
class ServiceImportConfigurationInfoArgs:
|
|
972
|
+
def __init__(__self__, *,
|
|
973
|
+
enabled: Optional[pulumi.Input[bool]] = None,
|
|
974
|
+
initial_import_mode: Optional[pulumi.Input[bool]] = None,
|
|
975
|
+
integration_data_store: Optional[pulumi.Input[str]] = None):
|
|
976
|
+
"""
|
|
977
|
+
Import operation configuration information
|
|
978
|
+
:param pulumi.Input[bool] enabled: If the import operation is enabled.
|
|
979
|
+
:param pulumi.Input[bool] initial_import_mode: If the FHIR service is in InitialImportMode.
|
|
980
|
+
:param pulumi.Input[str] integration_data_store: The name of the default integration storage account.
|
|
981
|
+
"""
|
|
982
|
+
if enabled is not None:
|
|
983
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
984
|
+
if initial_import_mode is not None:
|
|
985
|
+
pulumi.set(__self__, "initial_import_mode", initial_import_mode)
|
|
986
|
+
if integration_data_store is not None:
|
|
987
|
+
pulumi.set(__self__, "integration_data_store", integration_data_store)
|
|
988
|
+
|
|
989
|
+
@property
|
|
990
|
+
@pulumi.getter
|
|
991
|
+
def enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
992
|
+
"""
|
|
993
|
+
If the import operation is enabled.
|
|
994
|
+
"""
|
|
995
|
+
return pulumi.get(self, "enabled")
|
|
996
|
+
|
|
997
|
+
@enabled.setter
|
|
998
|
+
def enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
999
|
+
pulumi.set(self, "enabled", value)
|
|
1000
|
+
|
|
1001
|
+
@property
|
|
1002
|
+
@pulumi.getter(name="initialImportMode")
|
|
1003
|
+
def initial_import_mode(self) -> Optional[pulumi.Input[bool]]:
|
|
1004
|
+
"""
|
|
1005
|
+
If the FHIR service is in InitialImportMode.
|
|
1006
|
+
"""
|
|
1007
|
+
return pulumi.get(self, "initial_import_mode")
|
|
1008
|
+
|
|
1009
|
+
@initial_import_mode.setter
|
|
1010
|
+
def initial_import_mode(self, value: Optional[pulumi.Input[bool]]):
|
|
1011
|
+
pulumi.set(self, "initial_import_mode", value)
|
|
1012
|
+
|
|
1013
|
+
@property
|
|
1014
|
+
@pulumi.getter(name="integrationDataStore")
|
|
1015
|
+
def integration_data_store(self) -> Optional[pulumi.Input[str]]:
|
|
1016
|
+
"""
|
|
1017
|
+
The name of the default integration storage account.
|
|
1018
|
+
"""
|
|
1019
|
+
return pulumi.get(self, "integration_data_store")
|
|
1020
|
+
|
|
1021
|
+
@integration_data_store.setter
|
|
1022
|
+
def integration_data_store(self, value: Optional[pulumi.Input[str]]):
|
|
1023
|
+
pulumi.set(self, "integration_data_store", value)
|
|
1024
|
+
|
|
1025
|
+
|
|
1026
|
+
@pulumi.input_type
|
|
1027
|
+
class ServiceManagedIdentityIdentityArgs:
|
|
1028
|
+
def __init__(__self__, *,
|
|
1029
|
+
type: pulumi.Input[Union[str, 'ServiceManagedIdentityType']],
|
|
1030
|
+
user_assigned_identities: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
1031
|
+
"""
|
|
1032
|
+
Setting indicating whether the service has a managed identity associated with it.
|
|
1033
|
+
:param pulumi.Input[Union[str, 'ServiceManagedIdentityType']] type: Type of identity being specified, currently SystemAssigned and None are allowed.
|
|
1034
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] user_assigned_identities: The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
|
|
1035
|
+
"""
|
|
1036
|
+
pulumi.set(__self__, "type", type)
|
|
1037
|
+
if user_assigned_identities is not None:
|
|
1038
|
+
pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
|
|
1039
|
+
|
|
1040
|
+
@property
|
|
1041
|
+
@pulumi.getter
|
|
1042
|
+
def type(self) -> pulumi.Input[Union[str, 'ServiceManagedIdentityType']]:
|
|
1043
|
+
"""
|
|
1044
|
+
Type of identity being specified, currently SystemAssigned and None are allowed.
|
|
1045
|
+
"""
|
|
1046
|
+
return pulumi.get(self, "type")
|
|
1047
|
+
|
|
1048
|
+
@type.setter
|
|
1049
|
+
def type(self, value: pulumi.Input[Union[str, 'ServiceManagedIdentityType']]):
|
|
1050
|
+
pulumi.set(self, "type", value)
|
|
1051
|
+
|
|
1052
|
+
@property
|
|
1053
|
+
@pulumi.getter(name="userAssignedIdentities")
|
|
1054
|
+
def user_assigned_identities(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
1055
|
+
"""
|
|
1056
|
+
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
|
|
1057
|
+
"""
|
|
1058
|
+
return pulumi.get(self, "user_assigned_identities")
|
|
1059
|
+
|
|
1060
|
+
@user_assigned_identities.setter
|
|
1061
|
+
def user_assigned_identities(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
1062
|
+
pulumi.set(self, "user_assigned_identities", value)
|
|
1063
|
+
|
|
1064
|
+
|
|
1065
|
+
@pulumi.input_type
|
|
1066
|
+
class ServiceOciArtifactEntryArgs:
|
|
1067
|
+
def __init__(__self__, *,
|
|
1068
|
+
digest: Optional[pulumi.Input[str]] = None,
|
|
1069
|
+
image_name: Optional[pulumi.Input[str]] = None,
|
|
1070
|
+
login_server: Optional[pulumi.Input[str]] = None):
|
|
1071
|
+
"""
|
|
1072
|
+
An Open Container Initiative (OCI) artifact.
|
|
1073
|
+
:param pulumi.Input[str] digest: The artifact digest.
|
|
1074
|
+
:param pulumi.Input[str] image_name: The artifact name.
|
|
1075
|
+
:param pulumi.Input[str] login_server: The Azure Container Registry login server.
|
|
1076
|
+
"""
|
|
1077
|
+
if digest is not None:
|
|
1078
|
+
pulumi.set(__self__, "digest", digest)
|
|
1079
|
+
if image_name is not None:
|
|
1080
|
+
pulumi.set(__self__, "image_name", image_name)
|
|
1081
|
+
if login_server is not None:
|
|
1082
|
+
pulumi.set(__self__, "login_server", login_server)
|
|
1083
|
+
|
|
1084
|
+
@property
|
|
1085
|
+
@pulumi.getter
|
|
1086
|
+
def digest(self) -> Optional[pulumi.Input[str]]:
|
|
1087
|
+
"""
|
|
1088
|
+
The artifact digest.
|
|
1089
|
+
"""
|
|
1090
|
+
return pulumi.get(self, "digest")
|
|
1091
|
+
|
|
1092
|
+
@digest.setter
|
|
1093
|
+
def digest(self, value: Optional[pulumi.Input[str]]):
|
|
1094
|
+
pulumi.set(self, "digest", value)
|
|
1095
|
+
|
|
1096
|
+
@property
|
|
1097
|
+
@pulumi.getter(name="imageName")
|
|
1098
|
+
def image_name(self) -> Optional[pulumi.Input[str]]:
|
|
1099
|
+
"""
|
|
1100
|
+
The artifact name.
|
|
1101
|
+
"""
|
|
1102
|
+
return pulumi.get(self, "image_name")
|
|
1103
|
+
|
|
1104
|
+
@image_name.setter
|
|
1105
|
+
def image_name(self, value: Optional[pulumi.Input[str]]):
|
|
1106
|
+
pulumi.set(self, "image_name", value)
|
|
1107
|
+
|
|
1108
|
+
@property
|
|
1109
|
+
@pulumi.getter(name="loginServer")
|
|
1110
|
+
def login_server(self) -> Optional[pulumi.Input[str]]:
|
|
1111
|
+
"""
|
|
1112
|
+
The Azure Container Registry login server.
|
|
1113
|
+
"""
|
|
1114
|
+
return pulumi.get(self, "login_server")
|
|
1115
|
+
|
|
1116
|
+
@login_server.setter
|
|
1117
|
+
def login_server(self, value: Optional[pulumi.Input[str]]):
|
|
1118
|
+
pulumi.set(self, "login_server", value)
|
|
1119
|
+
|
|
1120
|
+
|
|
1121
|
+
@pulumi.input_type
|
|
1122
|
+
class ServicesPropertiesArgs:
|
|
1123
|
+
def __init__(__self__, *,
|
|
1124
|
+
access_policies: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceAccessPolicyEntryArgs']]]] = None,
|
|
1125
|
+
acr_configuration: Optional[pulumi.Input['ServiceAcrConfigurationInfoArgs']] = None,
|
|
1126
|
+
authentication_configuration: Optional[pulumi.Input['ServiceAuthenticationConfigurationInfoArgs']] = None,
|
|
1127
|
+
cors_configuration: Optional[pulumi.Input['ServiceCorsConfigurationInfoArgs']] = None,
|
|
1128
|
+
cosmos_db_configuration: Optional[pulumi.Input['ServiceCosmosDbConfigurationInfoArgs']] = None,
|
|
1129
|
+
export_configuration: Optional[pulumi.Input['ServiceExportConfigurationInfoArgs']] = None,
|
|
1130
|
+
import_configuration: Optional[pulumi.Input['ServiceImportConfigurationInfoArgs']] = None,
|
|
1131
|
+
private_endpoint_connections: Optional[pulumi.Input[Sequence[pulumi.Input['PrivateEndpointConnectionArgs']]]] = None,
|
|
1132
|
+
public_network_access: Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]] = None):
|
|
1133
|
+
"""
|
|
1134
|
+
The properties of a service instance.
|
|
1135
|
+
:param pulumi.Input[Sequence[pulumi.Input['ServiceAccessPolicyEntryArgs']]] access_policies: The access policies of the service instance.
|
|
1136
|
+
:param pulumi.Input['ServiceAcrConfigurationInfoArgs'] acr_configuration: The azure container registry settings used for convert data operation of the service instance.
|
|
1137
|
+
:param pulumi.Input['ServiceAuthenticationConfigurationInfoArgs'] authentication_configuration: The authentication configuration for the service instance.
|
|
1138
|
+
:param pulumi.Input['ServiceCorsConfigurationInfoArgs'] cors_configuration: The settings for the CORS configuration of the service instance.
|
|
1139
|
+
:param pulumi.Input['ServiceCosmosDbConfigurationInfoArgs'] cosmos_db_configuration: The settings for the Cosmos DB database backing the service.
|
|
1140
|
+
:param pulumi.Input['ServiceExportConfigurationInfoArgs'] export_configuration: The settings for the export operation of the service instance.
|
|
1141
|
+
:param pulumi.Input['ServiceImportConfigurationInfoArgs'] import_configuration: The settings for the import operation of the service instance.
|
|
1142
|
+
:param pulumi.Input[Sequence[pulumi.Input['PrivateEndpointConnectionArgs']]] private_endpoint_connections: The list of private endpoint connections that are set up for this resource.
|
|
1143
|
+
:param pulumi.Input[Union[str, 'PublicNetworkAccess']] public_network_access: Control permission for data plane traffic coming from public networks while private endpoint is enabled.
|
|
1144
|
+
"""
|
|
1145
|
+
if access_policies is not None:
|
|
1146
|
+
pulumi.set(__self__, "access_policies", access_policies)
|
|
1147
|
+
if acr_configuration is not None:
|
|
1148
|
+
pulumi.set(__self__, "acr_configuration", acr_configuration)
|
|
1149
|
+
if authentication_configuration is not None:
|
|
1150
|
+
pulumi.set(__self__, "authentication_configuration", authentication_configuration)
|
|
1151
|
+
if cors_configuration is not None:
|
|
1152
|
+
pulumi.set(__self__, "cors_configuration", cors_configuration)
|
|
1153
|
+
if cosmos_db_configuration is not None:
|
|
1154
|
+
pulumi.set(__self__, "cosmos_db_configuration", cosmos_db_configuration)
|
|
1155
|
+
if export_configuration is not None:
|
|
1156
|
+
pulumi.set(__self__, "export_configuration", export_configuration)
|
|
1157
|
+
if import_configuration is not None:
|
|
1158
|
+
pulumi.set(__self__, "import_configuration", import_configuration)
|
|
1159
|
+
if private_endpoint_connections is not None:
|
|
1160
|
+
pulumi.set(__self__, "private_endpoint_connections", private_endpoint_connections)
|
|
1161
|
+
if public_network_access is not None:
|
|
1162
|
+
pulumi.set(__self__, "public_network_access", public_network_access)
|
|
1163
|
+
|
|
1164
|
+
@property
|
|
1165
|
+
@pulumi.getter(name="accessPolicies")
|
|
1166
|
+
def access_policies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ServiceAccessPolicyEntryArgs']]]]:
|
|
1167
|
+
"""
|
|
1168
|
+
The access policies of the service instance.
|
|
1169
|
+
"""
|
|
1170
|
+
return pulumi.get(self, "access_policies")
|
|
1171
|
+
|
|
1172
|
+
@access_policies.setter
|
|
1173
|
+
def access_policies(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceAccessPolicyEntryArgs']]]]):
|
|
1174
|
+
pulumi.set(self, "access_policies", value)
|
|
1175
|
+
|
|
1176
|
+
@property
|
|
1177
|
+
@pulumi.getter(name="acrConfiguration")
|
|
1178
|
+
def acr_configuration(self) -> Optional[pulumi.Input['ServiceAcrConfigurationInfoArgs']]:
|
|
1179
|
+
"""
|
|
1180
|
+
The azure container registry settings used for convert data operation of the service instance.
|
|
1181
|
+
"""
|
|
1182
|
+
return pulumi.get(self, "acr_configuration")
|
|
1183
|
+
|
|
1184
|
+
@acr_configuration.setter
|
|
1185
|
+
def acr_configuration(self, value: Optional[pulumi.Input['ServiceAcrConfigurationInfoArgs']]):
|
|
1186
|
+
pulumi.set(self, "acr_configuration", value)
|
|
1187
|
+
|
|
1188
|
+
@property
|
|
1189
|
+
@pulumi.getter(name="authenticationConfiguration")
|
|
1190
|
+
def authentication_configuration(self) -> Optional[pulumi.Input['ServiceAuthenticationConfigurationInfoArgs']]:
|
|
1191
|
+
"""
|
|
1192
|
+
The authentication configuration for the service instance.
|
|
1193
|
+
"""
|
|
1194
|
+
return pulumi.get(self, "authentication_configuration")
|
|
1195
|
+
|
|
1196
|
+
@authentication_configuration.setter
|
|
1197
|
+
def authentication_configuration(self, value: Optional[pulumi.Input['ServiceAuthenticationConfigurationInfoArgs']]):
|
|
1198
|
+
pulumi.set(self, "authentication_configuration", value)
|
|
1199
|
+
|
|
1200
|
+
@property
|
|
1201
|
+
@pulumi.getter(name="corsConfiguration")
|
|
1202
|
+
def cors_configuration(self) -> Optional[pulumi.Input['ServiceCorsConfigurationInfoArgs']]:
|
|
1203
|
+
"""
|
|
1204
|
+
The settings for the CORS configuration of the service instance.
|
|
1205
|
+
"""
|
|
1206
|
+
return pulumi.get(self, "cors_configuration")
|
|
1207
|
+
|
|
1208
|
+
@cors_configuration.setter
|
|
1209
|
+
def cors_configuration(self, value: Optional[pulumi.Input['ServiceCorsConfigurationInfoArgs']]):
|
|
1210
|
+
pulumi.set(self, "cors_configuration", value)
|
|
1211
|
+
|
|
1212
|
+
@property
|
|
1213
|
+
@pulumi.getter(name="cosmosDbConfiguration")
|
|
1214
|
+
def cosmos_db_configuration(self) -> Optional[pulumi.Input['ServiceCosmosDbConfigurationInfoArgs']]:
|
|
1215
|
+
"""
|
|
1216
|
+
The settings for the Cosmos DB database backing the service.
|
|
1217
|
+
"""
|
|
1218
|
+
return pulumi.get(self, "cosmos_db_configuration")
|
|
1219
|
+
|
|
1220
|
+
@cosmos_db_configuration.setter
|
|
1221
|
+
def cosmos_db_configuration(self, value: Optional[pulumi.Input['ServiceCosmosDbConfigurationInfoArgs']]):
|
|
1222
|
+
pulumi.set(self, "cosmos_db_configuration", value)
|
|
1223
|
+
|
|
1224
|
+
@property
|
|
1225
|
+
@pulumi.getter(name="exportConfiguration")
|
|
1226
|
+
def export_configuration(self) -> Optional[pulumi.Input['ServiceExportConfigurationInfoArgs']]:
|
|
1227
|
+
"""
|
|
1228
|
+
The settings for the export operation of the service instance.
|
|
1229
|
+
"""
|
|
1230
|
+
return pulumi.get(self, "export_configuration")
|
|
1231
|
+
|
|
1232
|
+
@export_configuration.setter
|
|
1233
|
+
def export_configuration(self, value: Optional[pulumi.Input['ServiceExportConfigurationInfoArgs']]):
|
|
1234
|
+
pulumi.set(self, "export_configuration", value)
|
|
1235
|
+
|
|
1236
|
+
@property
|
|
1237
|
+
@pulumi.getter(name="importConfiguration")
|
|
1238
|
+
def import_configuration(self) -> Optional[pulumi.Input['ServiceImportConfigurationInfoArgs']]:
|
|
1239
|
+
"""
|
|
1240
|
+
The settings for the import operation of the service instance.
|
|
1241
|
+
"""
|
|
1242
|
+
return pulumi.get(self, "import_configuration")
|
|
1243
|
+
|
|
1244
|
+
@import_configuration.setter
|
|
1245
|
+
def import_configuration(self, value: Optional[pulumi.Input['ServiceImportConfigurationInfoArgs']]):
|
|
1246
|
+
pulumi.set(self, "import_configuration", value)
|
|
1247
|
+
|
|
1248
|
+
@property
|
|
1249
|
+
@pulumi.getter(name="privateEndpointConnections")
|
|
1250
|
+
def private_endpoint_connections(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PrivateEndpointConnectionArgs']]]]:
|
|
1251
|
+
"""
|
|
1252
|
+
The list of private endpoint connections that are set up for this resource.
|
|
1253
|
+
"""
|
|
1254
|
+
return pulumi.get(self, "private_endpoint_connections")
|
|
1255
|
+
|
|
1256
|
+
@private_endpoint_connections.setter
|
|
1257
|
+
def private_endpoint_connections(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PrivateEndpointConnectionArgs']]]]):
|
|
1258
|
+
pulumi.set(self, "private_endpoint_connections", value)
|
|
1259
|
+
|
|
1260
|
+
@property
|
|
1261
|
+
@pulumi.getter(name="publicNetworkAccess")
|
|
1262
|
+
def public_network_access(self) -> Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]]:
|
|
1263
|
+
"""
|
|
1264
|
+
Control permission for data plane traffic coming from public networks while private endpoint is enabled.
|
|
1265
|
+
"""
|
|
1266
|
+
return pulumi.get(self, "public_network_access")
|
|
1267
|
+
|
|
1268
|
+
@public_network_access.setter
|
|
1269
|
+
def public_network_access(self, value: Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]]):
|
|
1270
|
+
pulumi.set(self, "public_network_access", value)
|
|
1271
|
+
|
|
1272
|
+
|
|
1273
|
+
@pulumi.input_type
|
|
1274
|
+
class ServicesResourceIdentityArgs:
|
|
1275
|
+
def __init__(__self__, *,
|
|
1276
|
+
type: Optional[pulumi.Input[Union[str, 'ManagedServiceIdentityType']]] = None):
|
|
1277
|
+
"""
|
|
1278
|
+
Setting indicating whether the service has a managed identity associated with it.
|
|
1279
|
+
:param pulumi.Input[Union[str, 'ManagedServiceIdentityType']] type: Type of identity being specified, currently SystemAssigned and None are allowed.
|
|
1280
|
+
"""
|
|
1281
|
+
if type is not None:
|
|
1282
|
+
pulumi.set(__self__, "type", type)
|
|
1283
|
+
|
|
1284
|
+
@property
|
|
1285
|
+
@pulumi.getter
|
|
1286
|
+
def type(self) -> Optional[pulumi.Input[Union[str, 'ManagedServiceIdentityType']]]:
|
|
1287
|
+
"""
|
|
1288
|
+
Type of identity being specified, currently SystemAssigned and None are allowed.
|
|
1289
|
+
"""
|
|
1290
|
+
return pulumi.get(self, "type")
|
|
1291
|
+
|
|
1292
|
+
@type.setter
|
|
1293
|
+
def type(self, value: Optional[pulumi.Input[Union[str, 'ManagedServiceIdentityType']]]):
|
|
1294
|
+
pulumi.set(self, "type", value)
|
|
1295
|
+
|
|
1296
|
+
|
|
1297
|
+
@pulumi.input_type
|
|
1298
|
+
class SmartIdentityProviderApplicationArgs:
|
|
1299
|
+
def __init__(__self__, *,
|
|
1300
|
+
allowed_data_actions: Optional[pulumi.Input[Sequence[pulumi.Input[Union[str, 'SmartDataActions']]]]] = None,
|
|
1301
|
+
audience: Optional[pulumi.Input[str]] = None,
|
|
1302
|
+
client_id: Optional[pulumi.Input[str]] = None):
|
|
1303
|
+
"""
|
|
1304
|
+
An Application configured in the Identity Provider used to access FHIR resources.
|
|
1305
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union[str, 'SmartDataActions']]]] allowed_data_actions: The actions that are permitted to be performed on FHIR resources for the application.
|
|
1306
|
+
:param pulumi.Input[str] audience: The audience that will be used to validate bearer tokens against the given authority.
|
|
1307
|
+
:param pulumi.Input[str] client_id: The application client id defined in the identity provider. This value will be used to validate bearer tokens against the given authority.
|
|
1308
|
+
"""
|
|
1309
|
+
if allowed_data_actions is not None:
|
|
1310
|
+
pulumi.set(__self__, "allowed_data_actions", allowed_data_actions)
|
|
1311
|
+
if audience is not None:
|
|
1312
|
+
pulumi.set(__self__, "audience", audience)
|
|
1313
|
+
if client_id is not None:
|
|
1314
|
+
pulumi.set(__self__, "client_id", client_id)
|
|
1315
|
+
|
|
1316
|
+
@property
|
|
1317
|
+
@pulumi.getter(name="allowedDataActions")
|
|
1318
|
+
def allowed_data_actions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[Union[str, 'SmartDataActions']]]]]:
|
|
1319
|
+
"""
|
|
1320
|
+
The actions that are permitted to be performed on FHIR resources for the application.
|
|
1321
|
+
"""
|
|
1322
|
+
return pulumi.get(self, "allowed_data_actions")
|
|
1323
|
+
|
|
1324
|
+
@allowed_data_actions.setter
|
|
1325
|
+
def allowed_data_actions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[Union[str, 'SmartDataActions']]]]]):
|
|
1326
|
+
pulumi.set(self, "allowed_data_actions", value)
|
|
1327
|
+
|
|
1328
|
+
@property
|
|
1329
|
+
@pulumi.getter
|
|
1330
|
+
def audience(self) -> Optional[pulumi.Input[str]]:
|
|
1331
|
+
"""
|
|
1332
|
+
The audience that will be used to validate bearer tokens against the given authority.
|
|
1333
|
+
"""
|
|
1334
|
+
return pulumi.get(self, "audience")
|
|
1335
|
+
|
|
1336
|
+
@audience.setter
|
|
1337
|
+
def audience(self, value: Optional[pulumi.Input[str]]):
|
|
1338
|
+
pulumi.set(self, "audience", value)
|
|
1339
|
+
|
|
1340
|
+
@property
|
|
1341
|
+
@pulumi.getter(name="clientId")
|
|
1342
|
+
def client_id(self) -> Optional[pulumi.Input[str]]:
|
|
1343
|
+
"""
|
|
1344
|
+
The application client id defined in the identity provider. This value will be used to validate bearer tokens against the given authority.
|
|
1345
|
+
"""
|
|
1346
|
+
return pulumi.get(self, "client_id")
|
|
1347
|
+
|
|
1348
|
+
@client_id.setter
|
|
1349
|
+
def client_id(self, value: Optional[pulumi.Input[str]]):
|
|
1350
|
+
pulumi.set(self, "client_id", value)
|
|
1351
|
+
|
|
1352
|
+
|
|
1353
|
+
@pulumi.input_type
|
|
1354
|
+
class SmartIdentityProviderConfigurationArgs:
|
|
1355
|
+
def __init__(__self__, *,
|
|
1356
|
+
applications: Optional[pulumi.Input[Sequence[pulumi.Input['SmartIdentityProviderApplicationArgs']]]] = None,
|
|
1357
|
+
authority: Optional[pulumi.Input[str]] = None):
|
|
1358
|
+
"""
|
|
1359
|
+
An object to configure an identity provider for use with SMART on FHIR authentication.
|
|
1360
|
+
:param pulumi.Input[Sequence[pulumi.Input['SmartIdentityProviderApplicationArgs']]] applications: The array of identity provider applications for SMART on FHIR authentication.
|
|
1361
|
+
:param pulumi.Input[str] authority: The identity provider token authority also known as the token issuing authority.
|
|
1362
|
+
"""
|
|
1363
|
+
if applications is not None:
|
|
1364
|
+
pulumi.set(__self__, "applications", applications)
|
|
1365
|
+
if authority is not None:
|
|
1366
|
+
pulumi.set(__self__, "authority", authority)
|
|
1367
|
+
|
|
1368
|
+
@property
|
|
1369
|
+
@pulumi.getter
|
|
1370
|
+
def applications(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SmartIdentityProviderApplicationArgs']]]]:
|
|
1371
|
+
"""
|
|
1372
|
+
The array of identity provider applications for SMART on FHIR authentication.
|
|
1373
|
+
"""
|
|
1374
|
+
return pulumi.get(self, "applications")
|
|
1375
|
+
|
|
1376
|
+
@applications.setter
|
|
1377
|
+
def applications(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SmartIdentityProviderApplicationArgs']]]]):
|
|
1378
|
+
pulumi.set(self, "applications", value)
|
|
1379
|
+
|
|
1380
|
+
@property
|
|
1381
|
+
@pulumi.getter
|
|
1382
|
+
def authority(self) -> Optional[pulumi.Input[str]]:
|
|
1383
|
+
"""
|
|
1384
|
+
The identity provider token authority also known as the token issuing authority.
|
|
1385
|
+
"""
|
|
1386
|
+
return pulumi.get(self, "authority")
|
|
1387
|
+
|
|
1388
|
+
@authority.setter
|
|
1389
|
+
def authority(self, value: Optional[pulumi.Input[str]]):
|
|
1390
|
+
pulumi.set(self, "authority", value)
|
|
1391
|
+
|
|
1392
|
+
|
|
1393
|
+
@pulumi.input_type
|
|
1394
|
+
class StorageConfigurationArgs:
|
|
1395
|
+
def __init__(__self__, *,
|
|
1396
|
+
file_system_name: Optional[pulumi.Input[str]] = None,
|
|
1397
|
+
storage_resource_id: Optional[pulumi.Input[str]] = None):
|
|
1398
|
+
"""
|
|
1399
|
+
The configuration of connected storage
|
|
1400
|
+
:param pulumi.Input[str] file_system_name: The filesystem name of connected storage account.
|
|
1401
|
+
:param pulumi.Input[str] storage_resource_id: The resource id of connected storage account.
|
|
1402
|
+
"""
|
|
1403
|
+
if file_system_name is not None:
|
|
1404
|
+
pulumi.set(__self__, "file_system_name", file_system_name)
|
|
1405
|
+
if storage_resource_id is not None:
|
|
1406
|
+
pulumi.set(__self__, "storage_resource_id", storage_resource_id)
|
|
1407
|
+
|
|
1408
|
+
@property
|
|
1409
|
+
@pulumi.getter(name="fileSystemName")
|
|
1410
|
+
def file_system_name(self) -> Optional[pulumi.Input[str]]:
|
|
1411
|
+
"""
|
|
1412
|
+
The filesystem name of connected storage account.
|
|
1413
|
+
"""
|
|
1414
|
+
return pulumi.get(self, "file_system_name")
|
|
1415
|
+
|
|
1416
|
+
@file_system_name.setter
|
|
1417
|
+
def file_system_name(self, value: Optional[pulumi.Input[str]]):
|
|
1418
|
+
pulumi.set(self, "file_system_name", value)
|
|
1419
|
+
|
|
1420
|
+
@property
|
|
1421
|
+
@pulumi.getter(name="storageResourceId")
|
|
1422
|
+
def storage_resource_id(self) -> Optional[pulumi.Input[str]]:
|
|
1423
|
+
"""
|
|
1424
|
+
The resource id of connected storage account.
|
|
1425
|
+
"""
|
|
1426
|
+
return pulumi.get(self, "storage_resource_id")
|
|
1427
|
+
|
|
1428
|
+
@storage_resource_id.setter
|
|
1429
|
+
def storage_resource_id(self, value: Optional[pulumi.Input[str]]):
|
|
1430
|
+
pulumi.set(self, "storage_resource_id", value)
|
|
1431
|
+
|
|
1432
|
+
|