pulumi-azure-native 2.29.1a1708510433__py3-none-any.whl → 2.29.1a1708705299__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +184 -0
- pulumi_azure_native/_utilities.py +2 -6
- pulumi_azure_native/app/__init__.py +7 -0
- pulumi_azure_native/app/_enums.py +19 -0
- pulumi_azure_native/app/_inputs.py +164 -0
- pulumi_azure_native/app/app_resiliency.py +5 -1
- pulumi_azure_native/app/build.py +5 -1
- pulumi_azure_native/app/builder.py +5 -1
- pulumi_azure_native/app/certificate.py +3 -3
- pulumi_azure_native/app/connected_environment.py +3 -3
- pulumi_azure_native/app/connected_environments_certificate.py +3 -3
- pulumi_azure_native/app/connected_environments_dapr_component.py +3 -3
- pulumi_azure_native/app/connected_environments_storage.py +3 -3
- pulumi_azure_native/app/container_app.py +3 -3
- pulumi_azure_native/app/container_apps_auth_config.py +3 -3
- pulumi_azure_native/app/container_apps_source_control.py +3 -3
- pulumi_azure_native/app/dapr_component.py +3 -3
- pulumi_azure_native/app/dapr_component_resiliency_policy.py +5 -1
- pulumi_azure_native/app/dapr_subscription.py +5 -1
- pulumi_azure_native/app/dot_net_component.py +285 -0
- pulumi_azure_native/app/get_app_resiliency.py +4 -0
- pulumi_azure_native/app/get_build.py +4 -0
- pulumi_azure_native/app/get_builder.py +4 -0
- pulumi_azure_native/app/get_certificate.py +2 -2
- pulumi_azure_native/app/get_connected_environment.py +2 -2
- pulumi_azure_native/app/get_connected_environments_certificate.py +2 -2
- pulumi_azure_native/app/get_connected_environments_dapr_component.py +2 -2
- pulumi_azure_native/app/get_connected_environments_storage.py +2 -2
- pulumi_azure_native/app/get_container_app.py +2 -2
- pulumi_azure_native/app/get_container_app_auth_token.py +2 -2
- pulumi_azure_native/app/get_container_apps_auth_config.py +2 -2
- pulumi_azure_native/app/get_container_apps_source_control.py +2 -2
- pulumi_azure_native/app/get_dapr_component.py +2 -2
- pulumi_azure_native/app/get_dapr_component_resiliency_policy.py +4 -0
- pulumi_azure_native/app/get_dapr_subscription.py +4 -0
- pulumi_azure_native/app/get_dot_net_component.py +177 -0
- pulumi_azure_native/app/get_java_component.py +177 -0
- pulumi_azure_native/app/get_job.py +2 -2
- pulumi_azure_native/app/get_managed_certificate.py +2 -2
- pulumi_azure_native/app/get_managed_environment.py +2 -2
- pulumi_azure_native/app/get_managed_environment_auth_token.py +2 -2
- pulumi_azure_native/app/get_managed_environments_storage.py +2 -2
- pulumi_azure_native/app/java_component.py +285 -0
- pulumi_azure_native/app/job.py +3 -3
- pulumi_azure_native/app/list_build_auth_token.py +4 -0
- pulumi_azure_native/app/list_connected_environments_dapr_component_secrets.py +2 -2
- pulumi_azure_native/app/list_container_app_custom_host_name_analysis.py +2 -2
- pulumi_azure_native/app/list_container_app_secrets.py +2 -2
- pulumi_azure_native/app/list_dapr_component_secrets.py +2 -2
- pulumi_azure_native/app/list_job_secrets.py +2 -2
- pulumi_azure_native/app/managed_certificate.py +3 -3
- pulumi_azure_native/app/managed_environment.py +3 -3
- pulumi_azure_native/app/managed_environments_storage.py +3 -3
- pulumi_azure_native/app/outputs.py +212 -0
- pulumi_azure_native/app/v20220101preview/certificate.py +1 -1
- pulumi_azure_native/app/v20220101preview/container_app.py +1 -1
- pulumi_azure_native/app/v20220101preview/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20220101preview/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20220101preview/dapr_component.py +1 -1
- pulumi_azure_native/app/v20220101preview/managed_environment.py +1 -1
- pulumi_azure_native/app/v20220101preview/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20221001/certificate.py +1 -1
- pulumi_azure_native/app/v20221001/connected_environment.py +1 -1
- pulumi_azure_native/app/v20221001/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20221001/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20221001/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20221001/container_app.py +1 -1
- pulumi_azure_native/app/v20221001/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20221001/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20221001/dapr_component.py +1 -1
- pulumi_azure_native/app/v20221001/managed_environment.py +1 -1
- pulumi_azure_native/app/v20221001/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230401preview/certificate.py +1 -1
- pulumi_azure_native/app/v20230401preview/connected_environment.py +1 -1
- pulumi_azure_native/app/v20230401preview/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20230401preview/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20230401preview/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230401preview/container_app.py +1 -1
- pulumi_azure_native/app/v20230401preview/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20230401preview/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20230401preview/dapr_component.py +1 -1
- pulumi_azure_native/app/v20230401preview/job.py +1 -1
- pulumi_azure_native/app/v20230401preview/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20230401preview/managed_environment.py +1 -1
- pulumi_azure_native/app/v20230401preview/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230501/certificate.py +1 -1
- pulumi_azure_native/app/v20230501/connected_environment.py +1 -1
- pulumi_azure_native/app/v20230501/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20230501/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20230501/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230501/container_app.py +1 -1
- pulumi_azure_native/app/v20230501/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20230501/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20230501/dapr_component.py +1 -1
- pulumi_azure_native/app/v20230501/job.py +1 -1
- pulumi_azure_native/app/v20230501/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20230501/managed_environment.py +1 -1
- pulumi_azure_native/app/v20230501/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230502preview/certificate.py +1 -1
- pulumi_azure_native/app/v20230502preview/connected_environment.py +1 -1
- pulumi_azure_native/app/v20230502preview/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20230502preview/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20230502preview/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230502preview/container_app.py +1 -1
- pulumi_azure_native/app/v20230502preview/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20230502preview/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20230502preview/dapr_component.py +1 -1
- pulumi_azure_native/app/v20230502preview/job.py +1 -1
- pulumi_azure_native/app/v20230502preview/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20230502preview/managed_environment.py +1 -1
- pulumi_azure_native/app/v20230502preview/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230801preview/app_resiliency.py +1 -1
- pulumi_azure_native/app/v20230801preview/build.py +1 -1
- pulumi_azure_native/app/v20230801preview/builder.py +1 -1
- pulumi_azure_native/app/v20230801preview/certificate.py +1 -1
- pulumi_azure_native/app/v20230801preview/connected_environment.py +1 -1
- pulumi_azure_native/app/v20230801preview/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20230801preview/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20230801preview/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230801preview/container_app.py +1 -1
- pulumi_azure_native/app/v20230801preview/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20230801preview/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20230801preview/dapr_component.py +1 -1
- pulumi_azure_native/app/v20230801preview/dapr_component_resiliency_policy.py +1 -1
- pulumi_azure_native/app/v20230801preview/dapr_subscription.py +1 -1
- pulumi_azure_native/app/v20230801preview/job.py +1 -1
- pulumi_azure_native/app/v20230801preview/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20230801preview/managed_environment.py +1 -1
- pulumi_azure_native/app/v20230801preview/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20231102preview/__init__.py +58 -0
- pulumi_azure_native/app/v20231102preview/_enums.py +239 -0
- pulumi_azure_native/app/v20231102preview/_inputs.py +7921 -0
- pulumi_azure_native/app/v20231102preview/app_resiliency.py +359 -0
- pulumi_azure_native/app/v20231102preview/build.py +294 -0
- pulumi_azure_native/app/v20231102preview/builder.py +322 -0
- pulumi_azure_native/app/v20231102preview/certificate.py +274 -0
- pulumi_azure_native/app/v20231102preview/connected_environment.py +370 -0
- pulumi_azure_native/app/v20231102preview/connected_environments_certificate.py +274 -0
- pulumi_azure_native/app/v20231102preview/connected_environments_dapr_component.py +451 -0
- pulumi_azure_native/app/v20231102preview/connected_environments_storage.py +216 -0
- pulumi_azure_native/app/v20231102preview/container_app.py +526 -0
- pulumi_azure_native/app/v20231102preview/container_apps_auth_config.py +361 -0
- pulumi_azure_native/app/v20231102preview/container_apps_source_control.py +291 -0
- pulumi_azure_native/app/v20231102preview/dapr_component.py +451 -0
- pulumi_azure_native/app/v20231102preview/dapr_component_resiliency_policy.py +264 -0
- pulumi_azure_native/app/v20231102preview/dapr_subscription.py +388 -0
- pulumi_azure_native/app/v20231102preview/dot_net_component.py +283 -0
- pulumi_azure_native/app/v20231102preview/get_app_resiliency.py +201 -0
- pulumi_azure_native/app/v20231102preview/get_build.py +214 -0
- pulumi_azure_native/app/v20231102preview/get_builder.py +196 -0
- pulumi_azure_native/app/v20231102preview/get_certificate.py +162 -0
- pulumi_azure_native/app/v20231102preview/get_connected_environment.py +235 -0
- pulumi_azure_native/app/v20231102preview/get_connected_environments_certificate.py +162 -0
- pulumi_azure_native/app/v20231102preview/get_connected_environments_dapr_component.py +240 -0
- pulumi_azure_native/app/v20231102preview/get_connected_environments_storage.py +136 -0
- pulumi_azure_native/app/v20231102preview/get_container_app.py +339 -0
- pulumi_azure_native/app/v20231102preview/get_container_app_auth_token.py +170 -0
- pulumi_azure_native/app/v20231102preview/get_container_apps_auth_config.py +201 -0
- pulumi_azure_native/app/v20231102preview/get_container_apps_source_control.py +177 -0
- pulumi_azure_native/app/v20231102preview/get_dapr_component.py +240 -0
- pulumi_azure_native/app/v20231102preview/get_dapr_component_resiliency_policy.py +154 -0
- pulumi_azure_native/app/v20231102preview/get_dapr_subscription.py +214 -0
- pulumi_azure_native/app/v20231102preview/get_dot_net_component.py +175 -0
- pulumi_azure_native/app/v20231102preview/get_java_component.py +175 -0
- pulumi_azure_native/app/v20231102preview/get_job.py +261 -0
- pulumi_azure_native/app/v20231102preview/get_managed_certificate.py +162 -0
- pulumi_azure_native/app/v20231102preview/get_managed_environment.py +406 -0
- pulumi_azure_native/app/v20231102preview/get_managed_environment_auth_token.py +170 -0
- pulumi_azure_native/app/v20231102preview/get_managed_environments_storage.py +136 -0
- pulumi_azure_native/app/v20231102preview/java_component.py +283 -0
- pulumi_azure_native/app/v20231102preview/job.py +428 -0
- pulumi_azure_native/app/v20231102preview/list_build_auth_token.py +96 -0
- pulumi_azure_native/app/v20231102preview/list_connected_environments_dapr_component_secrets.py +84 -0
- pulumi_azure_native/app/v20231102preview/list_container_app_custom_host_name_analysis.py +227 -0
- pulumi_azure_native/app/v20231102preview/list_container_app_secrets.py +79 -0
- pulumi_azure_native/app/v20231102preview/list_dapr_component_secrets.py +84 -0
- pulumi_azure_native/app/v20231102preview/list_job_secrets.py +79 -0
- pulumi_azure_native/app/v20231102preview/managed_certificate.py +274 -0
- pulumi_azure_native/app/v20231102preview/managed_environment.py +679 -0
- pulumi_azure_native/app/v20231102preview/managed_environments_storage.py +216 -0
- pulumi_azure_native/app/v20231102preview/outputs.py +9200 -0
- pulumi_azure_native/containerservice/__init__.py +6 -0
- pulumi_azure_native/containerservice/agent_pool.py +3 -3
- pulumi_azure_native/containerservice/get_agent_pool.py +2 -2
- pulumi_azure_native/containerservice/get_maintenance_configuration.py +2 -2
- pulumi_azure_native/containerservice/get_managed_cluster.py +2 -2
- pulumi_azure_native/containerservice/get_managed_cluster_snapshot.py +2 -2
- pulumi_azure_native/containerservice/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/containerservice/get_snapshot.py +2 -2
- pulumi_azure_native/containerservice/get_trusted_access_role_binding.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_admin_credentials.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_monitoring_user_credentials.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_user_credentials.py +2 -2
- pulumi_azure_native/containerservice/maintenance_configuration.py +3 -3
- pulumi_azure_native/containerservice/managed_cluster.py +3 -3
- pulumi_azure_native/containerservice/managed_cluster_snapshot.py +3 -3
- pulumi_azure_native/containerservice/private_endpoint_connection.py +3 -3
- pulumi_azure_native/containerservice/snapshot.py +3 -3
- pulumi_azure_native/containerservice/trusted_access_role_binding.py +3 -3
- pulumi_azure_native/containerservice/v20190601/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20200601/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20210201/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20210501/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20210801/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20220402preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230401/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230401/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230401/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230401/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230401/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230601/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230601/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230601/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230601/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230601/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230701/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230701/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230701/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230701/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230701/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230801/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230801/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230801/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230801/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230801/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230901/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230901/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230901/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230901/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230901/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230901/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20231001/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20231001/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20231001/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20231001/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20231001/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231001/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20231101/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20231101/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20231101/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20231101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20231101/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231101/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240101/__init__.py +25 -0
- pulumi_azure_native/containerservice/v20240101/_enums.py +620 -0
- pulumi_azure_native/containerservice/v20240101/_inputs.py +5394 -0
- pulumi_azure_native/containerservice/v20240101/agent_pool.py +1357 -0
- pulumi_azure_native/containerservice/v20240101/get_agent_pool.py +656 -0
- pulumi_azure_native/containerservice/v20240101/get_maintenance_configuration.py +162 -0
- pulumi_azure_native/containerservice/v20240101/get_managed_cluster.py +703 -0
- pulumi_azure_native/containerservice/v20240101/get_private_endpoint_connection.py +149 -0
- pulumi_azure_native/containerservice/v20240101/get_snapshot.py +248 -0
- pulumi_azure_native/containerservice/v20240101/get_trusted_access_role_binding.py +162 -0
- pulumi_azure_native/containerservice/v20240101/list_managed_cluster_admin_credentials.py +84 -0
- pulumi_azure_native/containerservice/v20240101/list_managed_cluster_monitoring_user_credentials.py +84 -0
- pulumi_azure_native/containerservice/v20240101/list_managed_cluster_user_credentials.py +89 -0
- pulumi_azure_native/containerservice/v20240101/maintenance_configuration.py +274 -0
- pulumi_azure_native/containerservice/v20240101/managed_cluster.py +1319 -0
- pulumi_azure_native/containerservice/v20240101/outputs.py +6265 -0
- pulumi_azure_native/containerservice/v20240101/private_endpoint_connection.py +246 -0
- pulumi_azure_native/containerservice/v20240101/snapshot.py +342 -0
- pulumi_azure_native/containerservice/v20240101/trusted_access_role_binding.py +255 -0
- pulumi_azure_native/containerservice/v20240102preview/__init__.py +27 -0
- pulumi_azure_native/containerservice/v20240102preview/_enums.py +794 -0
- pulumi_azure_native/containerservice/v20240102preview/_inputs.py +6636 -0
- pulumi_azure_native/containerservice/v20240102preview/agent_pool.py +1647 -0
- pulumi_azure_native/containerservice/v20240102preview/get_agent_pool.py +786 -0
- pulumi_azure_native/containerservice/v20240102preview/get_maintenance_configuration.py +162 -0
- pulumi_azure_native/containerservice/v20240102preview/get_managed_cluster.py +807 -0
- pulumi_azure_native/containerservice/v20240102preview/get_managed_cluster_snapshot.py +183 -0
- pulumi_azure_native/containerservice/v20240102preview/get_private_endpoint_connection.py +149 -0
- pulumi_azure_native/containerservice/v20240102preview/get_snapshot.py +248 -0
- pulumi_azure_native/containerservice/v20240102preview/get_trusted_access_role_binding.py +162 -0
- pulumi_azure_native/containerservice/v20240102preview/list_managed_cluster_admin_credentials.py +84 -0
- pulumi_azure_native/containerservice/v20240102preview/list_managed_cluster_monitoring_user_credentials.py +84 -0
- pulumi_azure_native/containerservice/v20240102preview/list_managed_cluster_user_credentials.py +89 -0
- pulumi_azure_native/containerservice/v20240102preview/maintenance_configuration.py +274 -0
- pulumi_azure_native/containerservice/v20240102preview/managed_cluster.py +1551 -0
- pulumi_azure_native/containerservice/v20240102preview/managed_cluster_snapshot.py +292 -0
- pulumi_azure_native/containerservice/v20240102preview/outputs.py +7775 -0
- pulumi_azure_native/containerservice/v20240102preview/private_endpoint_connection.py +246 -0
- pulumi_azure_native/containerservice/v20240102preview/snapshot.py +342 -0
- pulumi_azure_native/containerservice/v20240102preview/trusted_access_role_binding.py +255 -0
- pulumi_azure_native/databasewatcher/__init__.py +24 -0
- pulumi_azure_native/databasewatcher/_enums.py +68 -0
- pulumi_azure_native/databasewatcher/_inputs.py +228 -0
- pulumi_azure_native/databasewatcher/get_shared_private_link_resource.py +203 -0
- pulumi_azure_native/databasewatcher/get_target.py +203 -0
- pulumi_azure_native/databasewatcher/get_watcher.py +198 -0
- pulumi_azure_native/databasewatcher/outputs.py +447 -0
- pulumi_azure_native/databasewatcher/shared_private_link_resource.py +326 -0
- pulumi_azure_native/databasewatcher/target.py +347 -0
- pulumi_azure_native/databasewatcher/v20230901preview/__init__.py +16 -0
- pulumi_azure_native/databasewatcher/v20230901preview/_enums.py +68 -0
- pulumi_azure_native/databasewatcher/v20230901preview/_inputs.py +228 -0
- pulumi_azure_native/databasewatcher/v20230901preview/get_shared_private_link_resource.py +201 -0
- pulumi_azure_native/databasewatcher/v20230901preview/get_target.py +201 -0
- pulumi_azure_native/databasewatcher/v20230901preview/get_watcher.py +196 -0
- pulumi_azure_native/databasewatcher/v20230901preview/outputs.py +447 -0
- pulumi_azure_native/databasewatcher/v20230901preview/shared_private_link_resource.py +324 -0
- pulumi_azure_native/databasewatcher/v20230901preview/target.py +345 -0
- pulumi_azure_native/databasewatcher/v20230901preview/watcher.py +302 -0
- pulumi_azure_native/databasewatcher/watcher.py +304 -0
- pulumi_azure_native/databox/__init__.py +3 -0
- pulumi_azure_native/databox/get_job.py +2 -2
- pulumi_azure_native/databox/job.py +3 -3
- pulumi_azure_native/databox/list_job_credentials.py +2 -2
- pulumi_azure_native/databox/v20221201/job.py +1 -1
- pulumi_azure_native/databox/v20230301/job.py +1 -1
- pulumi_azure_native/databox/v20231201/job.py +1 -1
- pulumi_azure_native/databox/v20240201preview/job.py +1 -1
- pulumi_azure_native/databox/v20240301preview/__init__.py +13 -0
- pulumi_azure_native/databox/v20240301preview/_enums.py +301 -0
- pulumi_azure_native/databox/v20240301preview/_inputs.py +2366 -0
- pulumi_azure_native/databox/v20240301preview/get_job.py +396 -0
- pulumi_azure_native/databox/v20240301preview/job.py +534 -0
- pulumi_azure_native/databox/v20240301preview/list_job_credentials.py +92 -0
- pulumi_azure_native/databox/v20240301preview/outputs.py +6392 -0
- pulumi_azure_native/datafactory/_enums.py +29 -0
- pulumi_azure_native/datafactory/_inputs.py +1095 -8
- pulumi_azure_native/datafactory/dataset.py +7 -7
- pulumi_azure_native/datafactory/linked_service.py +7 -7
- pulumi_azure_native/datafactory/outputs.py +1002 -2
- pulumi_azure_native/datafactory/v20180601/_enums.py +29 -0
- pulumi_azure_native/datafactory/v20180601/_inputs.py +1095 -8
- pulumi_azure_native/datafactory/v20180601/dataset.py +7 -7
- pulumi_azure_native/datafactory/v20180601/linked_service.py +7 -7
- pulumi_azure_native/datafactory/v20180601/outputs.py +1002 -2
- pulumi_azure_native/dbforpostgresql/__init__.py +3 -0
- pulumi_azure_native/dbforpostgresql/cluster.py +5 -1
- pulumi_azure_native/dbforpostgresql/firewall_rule.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_cluster.py +4 -0
- pulumi_azure_native/dbforpostgresql/get_firewall_rule.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_role.py +4 -0
- pulumi_azure_native/dbforpostgresql/private_endpoint_connection.py +3 -3
- pulumi_azure_native/dbforpostgresql/role.py +5 -1
- pulumi_azure_native/dbforpostgresql/v20201005privatepreview/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20201005privatepreview/server_group.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221108/cluster.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221108/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221108/private_endpoint_connection.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221108/role.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230302preview/__init__.py +18 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/_enums.py +43 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/_inputs.py +178 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/cluster.py +923 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/firewall_rule.py +255 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/get_cluster.py +508 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/get_firewall_rule.py +162 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/get_private_endpoint_connection.py +175 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/get_role.py +176 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/outputs.py +536 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/private_endpoint_connection.py +247 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/role.py +306 -0
- pulumi_azure_native/healthcareapis/__init__.py +3 -0
- pulumi_azure_native/healthcareapis/dicom_service.py +3 -3
- pulumi_azure_native/healthcareapis/fhir_service.py +3 -3
- pulumi_azure_native/healthcareapis/get_dicom_service.py +2 -2
- pulumi_azure_native/healthcareapis/get_fhir_service.py +2 -2
- pulumi_azure_native/healthcareapis/get_iot_connector.py +2 -2
- pulumi_azure_native/healthcareapis/get_iot_connector_fhir_destination.py +2 -2
- pulumi_azure_native/healthcareapis/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/healthcareapis/get_service.py +2 -2
- pulumi_azure_native/healthcareapis/get_workspace.py +2 -2
- pulumi_azure_native/healthcareapis/get_workspace_private_endpoint_connection.py +2 -2
- pulumi_azure_native/healthcareapis/iot_connector.py +3 -3
- pulumi_azure_native/healthcareapis/iot_connector_fhir_destination.py +3 -3
- pulumi_azure_native/healthcareapis/private_endpoint_connection.py +3 -3
- pulumi_azure_native/healthcareapis/service.py +3 -3
- pulumi_azure_native/healthcareapis/v20230228/dicom_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/fhir_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/iot_connector.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/iot_connector_fhir_destination.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/workspace.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/workspace_private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/dicom_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/fhir_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/iot_connector.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/iot_connector_fhir_destination.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/workspace.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/workspace_private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/dicom_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/fhir_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/iot_connector.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/iot_connector_fhir_destination.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/service.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/workspace.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/workspace_private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/dicom_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/fhir_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/iot_connector.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/iot_connector_fhir_destination.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/service.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/workspace.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/workspace_private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20240301/__init__.py +26 -0
- pulumi_azure_native/healthcareapis/v20240301/_enums.py +93 -0
- pulumi_azure_native/healthcareapis/v20240301/_inputs.py +1432 -0
- pulumi_azure_native/healthcareapis/v20240301/dicom_service.py +431 -0
- pulumi_azure_native/healthcareapis/v20240301/fhir_service.py +585 -0
- pulumi_azure_native/healthcareapis/v20240301/get_dicom_service.py +292 -0
- pulumi_azure_native/healthcareapis/v20240301/get_fhir_service.py +344 -0
- pulumi_azure_native/healthcareapis/v20240301/get_iot_connector.py +214 -0
- pulumi_azure_native/healthcareapis/v20240301/get_iot_connector_fhir_destination.py +193 -0
- pulumi_azure_native/healthcareapis/v20240301/get_private_endpoint_connection.py +162 -0
- pulumi_azure_native/healthcareapis/v20240301/get_service.py +196 -0
- pulumi_azure_native/healthcareapis/v20240301/get_workspace.py +170 -0
- pulumi_azure_native/healthcareapis/v20240301/get_workspace_private_endpoint_connection.py +162 -0
- pulumi_azure_native/healthcareapis/v20240301/iot_connector.py +352 -0
- pulumi_azure_native/healthcareapis/v20240301/iot_connector_fhir_destination.py +337 -0
- pulumi_azure_native/healthcareapis/v20240301/outputs.py +2123 -0
- pulumi_azure_native/healthcareapis/v20240301/private_endpoint_connection.py +237 -0
- pulumi_azure_native/healthcareapis/v20240301/service.py +322 -0
- pulumi_azure_native/healthcareapis/v20240301/workspace.py +242 -0
- pulumi_azure_native/healthcareapis/v20240301/workspace_private_endpoint_connection.py +237 -0
- pulumi_azure_native/healthcareapis/workspace.py +3 -3
- pulumi_azure_native/healthcareapis/workspace_private_endpoint_connection.py +3 -3
- pulumi_azure_native/maps/__init__.py +3 -0
- pulumi_azure_native/maps/account.py +3 -3
- pulumi_azure_native/maps/creator.py +3 -3
- pulumi_azure_native/maps/get_account.py +2 -2
- pulumi_azure_native/maps/get_creator.py +2 -2
- pulumi_azure_native/maps/get_private_endpoint_connection.py +4 -0
- pulumi_azure_native/maps/list_account_keys.py +2 -2
- pulumi_azure_native/maps/list_account_sas.py +2 -2
- pulumi_azure_native/maps/private_endpoint_connection.py +5 -1
- pulumi_azure_native/maps/v20180501/account.py +1 -1
- pulumi_azure_native/maps/v20200201preview/creator.py +1 -1
- pulumi_azure_native/maps/v20210201/account.py +1 -1
- pulumi_azure_native/maps/v20210201/creator.py +1 -1
- pulumi_azure_native/maps/v20211201preview/account.py +1 -1
- pulumi_azure_native/maps/v20211201preview/creator.py +1 -1
- pulumi_azure_native/maps/v20230601/account.py +1 -1
- pulumi_azure_native/maps/v20230601/creator.py +1 -1
- pulumi_azure_native/maps/v20230801preview/account.py +1 -1
- pulumi_azure_native/maps/v20230801preview/creator.py +1 -1
- pulumi_azure_native/maps/v20231201preview/account.py +1 -1
- pulumi_azure_native/maps/v20231201preview/creator.py +1 -1
- pulumi_azure_native/maps/v20231201preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/maps/v20240101preview/__init__.py +18 -0
- pulumi_azure_native/maps/v20240101preview/_enums.py +73 -0
- pulumi_azure_native/maps/v20240101preview/_inputs.py +568 -0
- pulumi_azure_native/maps/v20240101preview/account.py +341 -0
- pulumi_azure_native/maps/v20240101preview/creator.py +274 -0
- pulumi_azure_native/maps/v20240101preview/get_account.py +196 -0
- pulumi_azure_native/maps/v20240101preview/get_creator.py +162 -0
- pulumi_azure_native/maps/v20240101preview/get_private_endpoint_connection.py +175 -0
- pulumi_azure_native/maps/v20240101preview/list_account_keys.py +117 -0
- pulumi_azure_native/maps/v20240101preview/list_account_sas.py +117 -0
- pulumi_azure_native/maps/v20240101preview/outputs.py +1100 -0
- pulumi_azure_native/maps/v20240101preview/private_endpoint_connection.py +247 -0
- pulumi_azure_native/mobilenetwork/__init__.py +3 -0
- pulumi_azure_native/mobilenetwork/attached_data_network.py +3 -3
- pulumi_azure_native/mobilenetwork/data_network.py +3 -3
- pulumi_azure_native/mobilenetwork/diagnostics_package.py +3 -3
- pulumi_azure_native/mobilenetwork/get_attached_data_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_data_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_diagnostics_package.py +2 -2
- pulumi_azure_native/mobilenetwork/get_mobile_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_capture.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_core_control_plane.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_core_data_plane.py +2 -2
- pulumi_azure_native/mobilenetwork/get_service.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim_group.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim_policy.py +2 -2
- pulumi_azure_native/mobilenetwork/get_site.py +2 -2
- pulumi_azure_native/mobilenetwork/get_slice.py +2 -2
- pulumi_azure_native/mobilenetwork/mobile_network.py +3 -3
- pulumi_azure_native/mobilenetwork/packet_capture.py +3 -3
- pulumi_azure_native/mobilenetwork/packet_core_control_plane.py +3 -3
- pulumi_azure_native/mobilenetwork/packet_core_data_plane.py +3 -3
- pulumi_azure_native/mobilenetwork/service.py +3 -3
- pulumi_azure_native/mobilenetwork/sim.py +3 -3
- pulumi_azure_native/mobilenetwork/sim_group.py +3 -3
- pulumi_azure_native/mobilenetwork/sim_policy.py +3 -3
- pulumi_azure_native/mobilenetwork/site.py +3 -3
- pulumi_azure_native/mobilenetwork/slice.py +3 -3
- pulumi_azure_native/mobilenetwork/v20220301preview/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/diagnostics_package.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_capture.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/diagnostics_package.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_capture.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/__init__.py +36 -0
- pulumi_azure_native/mobilenetwork/v20240201/_enums.py +196 -0
- pulumi_azure_native/mobilenetwork/v20240201/_inputs.py +1910 -0
- pulumi_azure_native/mobilenetwork/v20240201/attached_data_network.py +443 -0
- pulumi_azure_native/mobilenetwork/v20240201/data_network.py +282 -0
- pulumi_azure_native/mobilenetwork/v20240201/diagnostics_package.py +215 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_attached_data_network.py +237 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_data_network.py +175 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_diagnostics_package.py +162 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_mobile_network.py +209 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_packet_capture.py +240 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_packet_core_control_plane.py +391 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_packet_core_data_plane.py +188 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_service.py +201 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_sim.py +253 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_sim_group.py +196 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_sim_policy.py +240 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_site.py +175 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_slice.py +188 -0
- pulumi_azure_native/mobilenetwork/v20240201/mobile_network.py +332 -0
- pulumi_azure_native/mobilenetwork/v20240201/outputs.py +2449 -0
- pulumi_azure_native/mobilenetwork/v20240201/packet_capture.py +363 -0
- pulumi_azure_native/mobilenetwork/v20240201/packet_core_control_plane.py +708 -0
- pulumi_azure_native/mobilenetwork/v20240201/packet_core_data_plane.py +313 -0
- pulumi_azure_native/mobilenetwork/v20240201/service.py +344 -0
- pulumi_azure_native/mobilenetwork/v20240201/sim.py +422 -0
- pulumi_azure_native/mobilenetwork/v20240201/sim_group.py +321 -0
- pulumi_azure_native/mobilenetwork/v20240201/sim_policy.py +417 -0
- pulumi_azure_native/mobilenetwork/v20240201/site.py +263 -0
- pulumi_azure_native/mobilenetwork/v20240201/slice.py +313 -0
- pulumi_azure_native/recoveryservices/__init__.py +3 -0
- pulumi_azure_native/recoveryservices/get_vault.py +2 -2
- pulumi_azure_native/recoveryservices/v20200202/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/__init__.py +12 -0
- pulumi_azure_native/recoveryservices/v20240101/_enums.py +102 -0
- pulumi_azure_native/recoveryservices/v20240101/_inputs.py +652 -0
- pulumi_azure_native/recoveryservices/v20240101/get_vault.py +196 -0
- pulumi_azure_native/recoveryservices/v20240101/outputs.py +1597 -0
- pulumi_azure_native/recoveryservices/v20240101/vault.py +321 -0
- pulumi_azure_native/recoveryservices/vault.py +3 -3
- pulumi_azure_native/redhatopenshift/__init__.py +3 -0
- pulumi_azure_native/redhatopenshift/get_machine_pool.py +2 -2
- pulumi_azure_native/redhatopenshift/get_open_shift_cluster.py +2 -2
- pulumi_azure_native/redhatopenshift/get_secret.py +2 -2
- pulumi_azure_native/redhatopenshift/get_sync_identity_provider.py +2 -2
- pulumi_azure_native/redhatopenshift/get_sync_set.py +2 -2
- pulumi_azure_native/redhatopenshift/list_open_shift_cluster_admin_credentials.py +2 -2
- pulumi_azure_native/redhatopenshift/list_open_shift_cluster_credentials.py +2 -2
- pulumi_azure_native/redhatopenshift/machine_pool.py +3 -3
- pulumi_azure_native/redhatopenshift/open_shift_cluster.py +3 -3
- pulumi_azure_native/redhatopenshift/secret.py +3 -3
- pulumi_azure_native/redhatopenshift/sync_identity_provider.py +3 -3
- pulumi_azure_native/redhatopenshift/sync_set.py +3 -3
- pulumi_azure_native/redhatopenshift/v20220904/machine_pool.py +1 -1
- pulumi_azure_native/redhatopenshift/v20220904/open_shift_cluster.py +1 -1
- pulumi_azure_native/redhatopenshift/v20220904/secret.py +1 -1
- pulumi_azure_native/redhatopenshift/v20220904/sync_identity_provider.py +1 -1
- pulumi_azure_native/redhatopenshift/v20220904/sync_set.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230401/machine_pool.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230401/open_shift_cluster.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230401/secret.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230401/sync_identity_provider.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230401/sync_set.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230701preview/machine_pool.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230701preview/open_shift_cluster.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230701preview/secret.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230701preview/sync_identity_provider.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230701preview/sync_set.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230904/machine_pool.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230904/open_shift_cluster.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230904/secret.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230904/sync_identity_provider.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230904/sync_set.py +1 -1
- pulumi_azure_native/redhatopenshift/v20231122/__init__.py +22 -0
- pulumi_azure_native/redhatopenshift/v20231122/_enums.py +67 -0
- pulumi_azure_native/redhatopenshift/v20231122/_inputs.py +544 -0
- pulumi_azure_native/redhatopenshift/v20231122/get_machine_pool.py +133 -0
- pulumi_azure_native/redhatopenshift/v20231122/get_open_shift_cluster.py +274 -0
- pulumi_azure_native/redhatopenshift/v20231122/get_secret.py +136 -0
- pulumi_azure_native/redhatopenshift/v20231122/get_sync_identity_provider.py +133 -0
- pulumi_azure_native/redhatopenshift/v20231122/get_sync_set.py +136 -0
- pulumi_azure_native/redhatopenshift/v20231122/list_open_shift_cluster_admin_credentials.py +78 -0
- pulumi_azure_native/redhatopenshift/v20231122/list_open_shift_cluster_credentials.py +91 -0
- pulumi_azure_native/redhatopenshift/v20231122/machine_pool.py +206 -0
- pulumi_azure_native/redhatopenshift/v20231122/open_shift_cluster.py +476 -0
- pulumi_azure_native/redhatopenshift/v20231122/outputs.py +794 -0
- pulumi_azure_native/redhatopenshift/v20231122/secret.py +214 -0
- pulumi_azure_native/redhatopenshift/v20231122/sync_identity_provider.py +206 -0
- pulumi_azure_native/redhatopenshift/v20231122/sync_set.py +214 -0
- pulumi_azure_native/standbypool/__init__.py +22 -0
- pulumi_azure_native/standbypool/_enums.py +34 -0
- pulumi_azure_native/standbypool/_inputs.py +183 -0
- pulumi_azure_native/standbypool/get_standby_container_group_pool.py +185 -0
- pulumi_azure_native/standbypool/get_standby_virtual_machine_pool.py +198 -0
- pulumi_azure_native/standbypool/outputs.py +333 -0
- pulumi_azure_native/standbypool/standby_container_group_pool.py +296 -0
- pulumi_azure_native/standbypool/standby_virtual_machine_pool.py +324 -0
- pulumi_azure_native/standbypool/v20231201preview/__init__.py +14 -0
- pulumi_azure_native/standbypool/v20231201preview/_enums.py +34 -0
- pulumi_azure_native/standbypool/v20231201preview/_inputs.py +183 -0
- pulumi_azure_native/standbypool/v20231201preview/get_standby_container_group_pool.py +183 -0
- pulumi_azure_native/standbypool/v20231201preview/get_standby_virtual_machine_pool.py +196 -0
- pulumi_azure_native/standbypool/v20231201preview/outputs.py +333 -0
- pulumi_azure_native/standbypool/v20231201preview/standby_container_group_pool.py +294 -0
- pulumi_azure_native/standbypool/v20231201preview/standby_virtual_machine_pool.py +322 -0
- {pulumi_azure_native-2.29.1a1708510433.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/METADATA +2 -3
- {pulumi_azure_native-2.29.1a1708510433.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/RECORD +695 -460
- {pulumi_azure_native-2.29.1a1708510433.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.29.1a1708510433.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/top_level.txt +0 -0
|
@@ -131,7 +131,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
131
131
|
Certificate used for Custom Domain bindings of Container Apps in a Managed Environment
|
|
132
132
|
Azure REST API version: 2022-10-01. Prior API version in Azure Native 1.x: 2022-03-01.
|
|
133
133
|
|
|
134
|
-
Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview.
|
|
134
|
+
Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview.
|
|
135
135
|
|
|
136
136
|
:param str resource_name: The name of the resource.
|
|
137
137
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -152,7 +152,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
152
152
|
Certificate used for Custom Domain bindings of Container Apps in a Managed Environment
|
|
153
153
|
Azure REST API version: 2022-10-01. Prior API version in Azure Native 1.x: 2022-03-01.
|
|
154
154
|
|
|
155
|
-
Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview.
|
|
155
|
+
Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview.
|
|
156
156
|
|
|
157
157
|
:param str resource_name: The name of the resource.
|
|
158
158
|
:param CertificateArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -197,7 +197,7 @@ class Certificate(pulumi.CustomResource):
|
|
|
197
197
|
__props__.__dict__["name"] = None
|
|
198
198
|
__props__.__dict__["system_data"] = None
|
|
199
199
|
__props__.__dict__["type"] = None
|
|
200
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20220101preview:Certificate"), pulumi.Alias(type_="azure-native:app/v20220301:Certificate"), pulumi.Alias(type_="azure-native:app/v20220601preview:Certificate"), pulumi.Alias(type_="azure-native:app/v20221001:Certificate"), pulumi.Alias(type_="azure-native:app/v20221101preview:Certificate"), pulumi.Alias(type_="azure-native:app/v20230401preview:Certificate"), pulumi.Alias(type_="azure-native:app/v20230501:Certificate"), pulumi.Alias(type_="azure-native:app/v20230502preview:Certificate"), pulumi.Alias(type_="azure-native:app/v20230801preview:Certificate")])
|
|
200
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20220101preview:Certificate"), pulumi.Alias(type_="azure-native:app/v20220301:Certificate"), pulumi.Alias(type_="azure-native:app/v20220601preview:Certificate"), pulumi.Alias(type_="azure-native:app/v20221001:Certificate"), pulumi.Alias(type_="azure-native:app/v20221101preview:Certificate"), pulumi.Alias(type_="azure-native:app/v20230401preview:Certificate"), pulumi.Alias(type_="azure-native:app/v20230501:Certificate"), pulumi.Alias(type_="azure-native:app/v20230502preview:Certificate"), pulumi.Alias(type_="azure-native:app/v20230801preview:Certificate"), pulumi.Alias(type_="azure-native:app/v20231102preview:Certificate")])
|
|
201
201
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
202
202
|
super(Certificate, __self__).__init__(
|
|
203
203
|
'azure-native:app:Certificate',
|
|
@@ -167,7 +167,7 @@ class ConnectedEnvironment(pulumi.CustomResource):
|
|
|
167
167
|
An environment for Kubernetes cluster specialized for web workloads by Azure App Service
|
|
168
168
|
Azure REST API version: 2022-10-01.
|
|
169
169
|
|
|
170
|
-
Other available API versions: 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview.
|
|
170
|
+
Other available API versions: 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview.
|
|
171
171
|
|
|
172
172
|
:param str resource_name: The name of the resource.
|
|
173
173
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -190,7 +190,7 @@ class ConnectedEnvironment(pulumi.CustomResource):
|
|
|
190
190
|
An environment for Kubernetes cluster specialized for web workloads by Azure App Service
|
|
191
191
|
Azure REST API version: 2022-10-01.
|
|
192
192
|
|
|
193
|
-
Other available API versions: 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview.
|
|
193
|
+
Other available API versions: 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview.
|
|
194
194
|
|
|
195
195
|
:param str resource_name: The name of the resource.
|
|
196
196
|
:param ConnectedEnvironmentArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -240,7 +240,7 @@ class ConnectedEnvironment(pulumi.CustomResource):
|
|
|
240
240
|
__props__.__dict__["provisioning_state"] = None
|
|
241
241
|
__props__.__dict__["system_data"] = None
|
|
242
242
|
__props__.__dict__["type"] = None
|
|
243
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20220601preview:ConnectedEnvironment"), pulumi.Alias(type_="azure-native:app/v20221001:ConnectedEnvironment"), pulumi.Alias(type_="azure-native:app/v20221101preview:ConnectedEnvironment"), pulumi.Alias(type_="azure-native:app/v20230401preview:ConnectedEnvironment"), pulumi.Alias(type_="azure-native:app/v20230501:ConnectedEnvironment"), pulumi.Alias(type_="azure-native:app/v20230502preview:ConnectedEnvironment"), pulumi.Alias(type_="azure-native:app/v20230801preview:ConnectedEnvironment")])
|
|
243
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20220601preview:ConnectedEnvironment"), pulumi.Alias(type_="azure-native:app/v20221001:ConnectedEnvironment"), pulumi.Alias(type_="azure-native:app/v20221101preview:ConnectedEnvironment"), pulumi.Alias(type_="azure-native:app/v20230401preview:ConnectedEnvironment"), pulumi.Alias(type_="azure-native:app/v20230501:ConnectedEnvironment"), pulumi.Alias(type_="azure-native:app/v20230502preview:ConnectedEnvironment"), pulumi.Alias(type_="azure-native:app/v20230801preview:ConnectedEnvironment"), pulumi.Alias(type_="azure-native:app/v20231102preview:ConnectedEnvironment")])
|
|
244
244
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
245
245
|
super(ConnectedEnvironment, __self__).__init__(
|
|
246
246
|
'azure-native:app:ConnectedEnvironment',
|
|
@@ -131,7 +131,7 @@ class ConnectedEnvironmentsCertificate(pulumi.CustomResource):
|
|
|
131
131
|
Certificate used for Custom Domain bindings of Container Apps in a Managed Environment
|
|
132
132
|
Azure REST API version: 2022-10-01.
|
|
133
133
|
|
|
134
|
-
Other available API versions: 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview.
|
|
134
|
+
Other available API versions: 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview.
|
|
135
135
|
|
|
136
136
|
:param str resource_name: The name of the resource.
|
|
137
137
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -152,7 +152,7 @@ class ConnectedEnvironmentsCertificate(pulumi.CustomResource):
|
|
|
152
152
|
Certificate used for Custom Domain bindings of Container Apps in a Managed Environment
|
|
153
153
|
Azure REST API version: 2022-10-01.
|
|
154
154
|
|
|
155
|
-
Other available API versions: 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview.
|
|
155
|
+
Other available API versions: 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview.
|
|
156
156
|
|
|
157
157
|
:param str resource_name: The name of the resource.
|
|
158
158
|
:param ConnectedEnvironmentsCertificateArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -197,7 +197,7 @@ class ConnectedEnvironmentsCertificate(pulumi.CustomResource):
|
|
|
197
197
|
__props__.__dict__["name"] = None
|
|
198
198
|
__props__.__dict__["system_data"] = None
|
|
199
199
|
__props__.__dict__["type"] = None
|
|
200
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20220601preview:ConnectedEnvironmentsCertificate"), pulumi.Alias(type_="azure-native:app/v20221001:ConnectedEnvironmentsCertificate"), pulumi.Alias(type_="azure-native:app/v20221101preview:ConnectedEnvironmentsCertificate"), pulumi.Alias(type_="azure-native:app/v20230401preview:ConnectedEnvironmentsCertificate"), pulumi.Alias(type_="azure-native:app/v20230501:ConnectedEnvironmentsCertificate"), pulumi.Alias(type_="azure-native:app/v20230502preview:ConnectedEnvironmentsCertificate"), pulumi.Alias(type_="azure-native:app/v20230801preview:ConnectedEnvironmentsCertificate")])
|
|
200
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20220601preview:ConnectedEnvironmentsCertificate"), pulumi.Alias(type_="azure-native:app/v20221001:ConnectedEnvironmentsCertificate"), pulumi.Alias(type_="azure-native:app/v20221101preview:ConnectedEnvironmentsCertificate"), pulumi.Alias(type_="azure-native:app/v20230401preview:ConnectedEnvironmentsCertificate"), pulumi.Alias(type_="azure-native:app/v20230501:ConnectedEnvironmentsCertificate"), pulumi.Alias(type_="azure-native:app/v20230502preview:ConnectedEnvironmentsCertificate"), pulumi.Alias(type_="azure-native:app/v20230801preview:ConnectedEnvironmentsCertificate"), pulumi.Alias(type_="azure-native:app/v20231102preview:ConnectedEnvironmentsCertificate")])
|
|
201
201
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
202
202
|
super(ConnectedEnvironmentsCertificate, __self__).__init__(
|
|
203
203
|
'azure-native:app:ConnectedEnvironmentsCertificate',
|
|
@@ -218,7 +218,7 @@ class ConnectedEnvironmentsDaprComponent(pulumi.CustomResource):
|
|
|
218
218
|
Dapr Component.
|
|
219
219
|
Azure REST API version: 2022-10-01.
|
|
220
220
|
|
|
221
|
-
Other available API versions: 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview.
|
|
221
|
+
Other available API versions: 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview.
|
|
222
222
|
|
|
223
223
|
:param str resource_name: The name of the resource.
|
|
224
224
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -244,7 +244,7 @@ class ConnectedEnvironmentsDaprComponent(pulumi.CustomResource):
|
|
|
244
244
|
Dapr Component.
|
|
245
245
|
Azure REST API version: 2022-10-01.
|
|
246
246
|
|
|
247
|
-
Other available API versions: 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview.
|
|
247
|
+
Other available API versions: 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview.
|
|
248
248
|
|
|
249
249
|
:param str resource_name: The name of the resource.
|
|
250
250
|
:param ConnectedEnvironmentsDaprComponentArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -301,7 +301,7 @@ class ConnectedEnvironmentsDaprComponent(pulumi.CustomResource):
|
|
|
301
301
|
__props__.__dict__["name"] = None
|
|
302
302
|
__props__.__dict__["system_data"] = None
|
|
303
303
|
__props__.__dict__["type"] = None
|
|
304
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20220601preview:ConnectedEnvironmentsDaprComponent"), pulumi.Alias(type_="azure-native:app/v20221001:ConnectedEnvironmentsDaprComponent"), pulumi.Alias(type_="azure-native:app/v20221101preview:ConnectedEnvironmentsDaprComponent"), pulumi.Alias(type_="azure-native:app/v20230401preview:ConnectedEnvironmentsDaprComponent"), pulumi.Alias(type_="azure-native:app/v20230501:ConnectedEnvironmentsDaprComponent"), pulumi.Alias(type_="azure-native:app/v20230502preview:ConnectedEnvironmentsDaprComponent"), pulumi.Alias(type_="azure-native:app/v20230801preview:ConnectedEnvironmentsDaprComponent")])
|
|
304
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20220601preview:ConnectedEnvironmentsDaprComponent"), pulumi.Alias(type_="azure-native:app/v20221001:ConnectedEnvironmentsDaprComponent"), pulumi.Alias(type_="azure-native:app/v20221101preview:ConnectedEnvironmentsDaprComponent"), pulumi.Alias(type_="azure-native:app/v20230401preview:ConnectedEnvironmentsDaprComponent"), pulumi.Alias(type_="azure-native:app/v20230501:ConnectedEnvironmentsDaprComponent"), pulumi.Alias(type_="azure-native:app/v20230502preview:ConnectedEnvironmentsDaprComponent"), pulumi.Alias(type_="azure-native:app/v20230801preview:ConnectedEnvironmentsDaprComponent"), pulumi.Alias(type_="azure-native:app/v20231102preview:ConnectedEnvironmentsDaprComponent")])
|
|
305
305
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
306
306
|
super(ConnectedEnvironmentsDaprComponent, __self__).__init__(
|
|
307
307
|
'azure-native:app:ConnectedEnvironmentsDaprComponent',
|
|
@@ -98,7 +98,7 @@ class ConnectedEnvironmentsStorage(pulumi.CustomResource):
|
|
|
98
98
|
Storage resource for connectedEnvironment.
|
|
99
99
|
Azure REST API version: 2022-10-01.
|
|
100
100
|
|
|
101
|
-
Other available API versions: 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview.
|
|
101
|
+
Other available API versions: 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview.
|
|
102
102
|
|
|
103
103
|
:param str resource_name: The name of the resource.
|
|
104
104
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -117,7 +117,7 @@ class ConnectedEnvironmentsStorage(pulumi.CustomResource):
|
|
|
117
117
|
Storage resource for connectedEnvironment.
|
|
118
118
|
Azure REST API version: 2022-10-01.
|
|
119
119
|
|
|
120
|
-
Other available API versions: 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview.
|
|
120
|
+
Other available API versions: 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview.
|
|
121
121
|
|
|
122
122
|
:param str resource_name: The name of the resource.
|
|
123
123
|
:param ConnectedEnvironmentsStorageArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -158,7 +158,7 @@ class ConnectedEnvironmentsStorage(pulumi.CustomResource):
|
|
|
158
158
|
__props__.__dict__["name"] = None
|
|
159
159
|
__props__.__dict__["system_data"] = None
|
|
160
160
|
__props__.__dict__["type"] = None
|
|
161
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20220601preview:ConnectedEnvironmentsStorage"), pulumi.Alias(type_="azure-native:app/v20221001:ConnectedEnvironmentsStorage"), pulumi.Alias(type_="azure-native:app/v20221101preview:ConnectedEnvironmentsStorage"), pulumi.Alias(type_="azure-native:app/v20230401preview:ConnectedEnvironmentsStorage"), pulumi.Alias(type_="azure-native:app/v20230501:ConnectedEnvironmentsStorage"), pulumi.Alias(type_="azure-native:app/v20230502preview:ConnectedEnvironmentsStorage"), pulumi.Alias(type_="azure-native:app/v20230801preview:ConnectedEnvironmentsStorage")])
|
|
161
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20220601preview:ConnectedEnvironmentsStorage"), pulumi.Alias(type_="azure-native:app/v20221001:ConnectedEnvironmentsStorage"), pulumi.Alias(type_="azure-native:app/v20221101preview:ConnectedEnvironmentsStorage"), pulumi.Alias(type_="azure-native:app/v20230401preview:ConnectedEnvironmentsStorage"), pulumi.Alias(type_="azure-native:app/v20230501:ConnectedEnvironmentsStorage"), pulumi.Alias(type_="azure-native:app/v20230502preview:ConnectedEnvironmentsStorage"), pulumi.Alias(type_="azure-native:app/v20230801preview:ConnectedEnvironmentsStorage"), pulumi.Alias(type_="azure-native:app/v20231102preview:ConnectedEnvironmentsStorage")])
|
|
162
162
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
163
163
|
super(ConnectedEnvironmentsStorage, __self__).__init__(
|
|
164
164
|
'azure-native:app:ConnectedEnvironmentsStorage',
|
|
@@ -218,7 +218,7 @@ class ContainerApp(pulumi.CustomResource):
|
|
|
218
218
|
Container App.
|
|
219
219
|
Azure REST API version: 2022-10-01. Prior API version in Azure Native 1.x: 2022-03-01.
|
|
220
220
|
|
|
221
|
-
Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview.
|
|
221
|
+
Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview.
|
|
222
222
|
|
|
223
223
|
:param str resource_name: The name of the resource.
|
|
224
224
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -244,7 +244,7 @@ class ContainerApp(pulumi.CustomResource):
|
|
|
244
244
|
Container App.
|
|
245
245
|
Azure REST API version: 2022-10-01. Prior API version in Azure Native 1.x: 2022-03-01.
|
|
246
246
|
|
|
247
|
-
Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview.
|
|
247
|
+
Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview.
|
|
248
248
|
|
|
249
249
|
:param str resource_name: The name of the resource.
|
|
250
250
|
:param ContainerAppArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -304,7 +304,7 @@ class ContainerApp(pulumi.CustomResource):
|
|
|
304
304
|
__props__.__dict__["provisioning_state"] = None
|
|
305
305
|
__props__.__dict__["system_data"] = None
|
|
306
306
|
__props__.__dict__["type"] = None
|
|
307
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20220101preview:ContainerApp"), pulumi.Alias(type_="azure-native:app/v20220301:ContainerApp"), pulumi.Alias(type_="azure-native:app/v20220601preview:ContainerApp"), pulumi.Alias(type_="azure-native:app/v20221001:ContainerApp"), pulumi.Alias(type_="azure-native:app/v20221101preview:ContainerApp"), pulumi.Alias(type_="azure-native:app/v20230401preview:ContainerApp"), pulumi.Alias(type_="azure-native:app/v20230501:ContainerApp"), pulumi.Alias(type_="azure-native:app/v20230502preview:ContainerApp"), pulumi.Alias(type_="azure-native:app/v20230801preview:ContainerApp")])
|
|
307
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20220101preview:ContainerApp"), pulumi.Alias(type_="azure-native:app/v20220301:ContainerApp"), pulumi.Alias(type_="azure-native:app/v20220601preview:ContainerApp"), pulumi.Alias(type_="azure-native:app/v20221001:ContainerApp"), pulumi.Alias(type_="azure-native:app/v20221101preview:ContainerApp"), pulumi.Alias(type_="azure-native:app/v20230401preview:ContainerApp"), pulumi.Alias(type_="azure-native:app/v20230501:ContainerApp"), pulumi.Alias(type_="azure-native:app/v20230502preview:ContainerApp"), pulumi.Alias(type_="azure-native:app/v20230801preview:ContainerApp"), pulumi.Alias(type_="azure-native:app/v20231102preview:ContainerApp")])
|
|
308
308
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
309
309
|
super(ContainerApp, __self__).__init__(
|
|
310
310
|
'azure-native:app:ContainerApp',
|
|
@@ -166,7 +166,7 @@ class ContainerAppsAuthConfig(pulumi.CustomResource):
|
|
|
166
166
|
Configuration settings for the Azure ContainerApp Service Authentication / Authorization feature.
|
|
167
167
|
Azure REST API version: 2022-10-01. Prior API version in Azure Native 1.x: 2022-03-01.
|
|
168
168
|
|
|
169
|
-
Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview.
|
|
169
|
+
Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview.
|
|
170
170
|
|
|
171
171
|
:param str resource_name: The name of the resource.
|
|
172
172
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -189,7 +189,7 @@ class ContainerAppsAuthConfig(pulumi.CustomResource):
|
|
|
189
189
|
Configuration settings for the Azure ContainerApp Service Authentication / Authorization feature.
|
|
190
190
|
Azure REST API version: 2022-10-01. Prior API version in Azure Native 1.x: 2022-03-01.
|
|
191
191
|
|
|
192
|
-
Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview.
|
|
192
|
+
Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview.
|
|
193
193
|
|
|
194
194
|
:param str resource_name: The name of the resource.
|
|
195
195
|
:param ContainerAppsAuthConfigArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -238,7 +238,7 @@ class ContainerAppsAuthConfig(pulumi.CustomResource):
|
|
|
238
238
|
__props__.__dict__["name"] = None
|
|
239
239
|
__props__.__dict__["system_data"] = None
|
|
240
240
|
__props__.__dict__["type"] = None
|
|
241
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20220101preview:ContainerAppsAuthConfig"), pulumi.Alias(type_="azure-native:app/v20220301:ContainerAppsAuthConfig"), pulumi.Alias(type_="azure-native:app/v20220601preview:ContainerAppsAuthConfig"), pulumi.Alias(type_="azure-native:app/v20221001:ContainerAppsAuthConfig"), pulumi.Alias(type_="azure-native:app/v20221101preview:ContainerAppsAuthConfig"), pulumi.Alias(type_="azure-native:app/v20230401preview:ContainerAppsAuthConfig"), pulumi.Alias(type_="azure-native:app/v20230501:ContainerAppsAuthConfig"), pulumi.Alias(type_="azure-native:app/v20230502preview:ContainerAppsAuthConfig"), pulumi.Alias(type_="azure-native:app/v20230801preview:ContainerAppsAuthConfig")])
|
|
241
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20220101preview:ContainerAppsAuthConfig"), pulumi.Alias(type_="azure-native:app/v20220301:ContainerAppsAuthConfig"), pulumi.Alias(type_="azure-native:app/v20220601preview:ContainerAppsAuthConfig"), pulumi.Alias(type_="azure-native:app/v20221001:ContainerAppsAuthConfig"), pulumi.Alias(type_="azure-native:app/v20221101preview:ContainerAppsAuthConfig"), pulumi.Alias(type_="azure-native:app/v20230401preview:ContainerAppsAuthConfig"), pulumi.Alias(type_="azure-native:app/v20230501:ContainerAppsAuthConfig"), pulumi.Alias(type_="azure-native:app/v20230502preview:ContainerAppsAuthConfig"), pulumi.Alias(type_="azure-native:app/v20230801preview:ContainerAppsAuthConfig"), pulumi.Alias(type_="azure-native:app/v20231102preview:ContainerAppsAuthConfig")])
|
|
242
242
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
243
243
|
super(ContainerAppsAuthConfig, __self__).__init__(
|
|
244
244
|
'azure-native:app:ContainerAppsAuthConfig',
|
|
@@ -135,7 +135,7 @@ class ContainerAppsSourceControl(pulumi.CustomResource):
|
|
|
135
135
|
Container App SourceControl.
|
|
136
136
|
Azure REST API version: 2022-10-01. Prior API version in Azure Native 1.x: 2022-03-01.
|
|
137
137
|
|
|
138
|
-
Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview.
|
|
138
|
+
Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview.
|
|
139
139
|
|
|
140
140
|
:param str resource_name: The name of the resource.
|
|
141
141
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -158,7 +158,7 @@ class ContainerAppsSourceControl(pulumi.CustomResource):
|
|
|
158
158
|
Container App SourceControl.
|
|
159
159
|
Azure REST API version: 2022-10-01. Prior API version in Azure Native 1.x: 2022-03-01.
|
|
160
160
|
|
|
161
|
-
Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview.
|
|
161
|
+
Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview.
|
|
162
162
|
|
|
163
163
|
:param str resource_name: The name of the resource.
|
|
164
164
|
:param ContainerAppsSourceControlArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -204,7 +204,7 @@ class ContainerAppsSourceControl(pulumi.CustomResource):
|
|
|
204
204
|
__props__.__dict__["operation_state"] = None
|
|
205
205
|
__props__.__dict__["system_data"] = None
|
|
206
206
|
__props__.__dict__["type"] = None
|
|
207
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20220101preview:ContainerAppsSourceControl"), pulumi.Alias(type_="azure-native:app/v20220301:ContainerAppsSourceControl"), pulumi.Alias(type_="azure-native:app/v20220601preview:ContainerAppsSourceControl"), pulumi.Alias(type_="azure-native:app/v20221001:ContainerAppsSourceControl"), pulumi.Alias(type_="azure-native:app/v20221101preview:ContainerAppsSourceControl"), pulumi.Alias(type_="azure-native:app/v20230401preview:ContainerAppsSourceControl"), pulumi.Alias(type_="azure-native:app/v20230501:ContainerAppsSourceControl"), pulumi.Alias(type_="azure-native:app/v20230502preview:ContainerAppsSourceControl"), pulumi.Alias(type_="azure-native:app/v20230801preview:ContainerAppsSourceControl")])
|
|
207
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20220101preview:ContainerAppsSourceControl"), pulumi.Alias(type_="azure-native:app/v20220301:ContainerAppsSourceControl"), pulumi.Alias(type_="azure-native:app/v20220601preview:ContainerAppsSourceControl"), pulumi.Alias(type_="azure-native:app/v20221001:ContainerAppsSourceControl"), pulumi.Alias(type_="azure-native:app/v20221101preview:ContainerAppsSourceControl"), pulumi.Alias(type_="azure-native:app/v20230401preview:ContainerAppsSourceControl"), pulumi.Alias(type_="azure-native:app/v20230501:ContainerAppsSourceControl"), pulumi.Alias(type_="azure-native:app/v20230502preview:ContainerAppsSourceControl"), pulumi.Alias(type_="azure-native:app/v20230801preview:ContainerAppsSourceControl"), pulumi.Alias(type_="azure-native:app/v20231102preview:ContainerAppsSourceControl")])
|
|
208
208
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
209
209
|
super(ContainerAppsSourceControl, __self__).__init__(
|
|
210
210
|
'azure-native:app:ContainerAppsSourceControl',
|
|
@@ -218,7 +218,7 @@ class DaprComponent(pulumi.CustomResource):
|
|
|
218
218
|
Dapr Component.
|
|
219
219
|
Azure REST API version: 2022-10-01. Prior API version in Azure Native 1.x: 2022-03-01.
|
|
220
220
|
|
|
221
|
-
Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview.
|
|
221
|
+
Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview.
|
|
222
222
|
|
|
223
223
|
:param str resource_name: The name of the resource.
|
|
224
224
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -244,7 +244,7 @@ class DaprComponent(pulumi.CustomResource):
|
|
|
244
244
|
Dapr Component.
|
|
245
245
|
Azure REST API version: 2022-10-01. Prior API version in Azure Native 1.x: 2022-03-01.
|
|
246
246
|
|
|
247
|
-
Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview.
|
|
247
|
+
Other available API versions: 2022-01-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview.
|
|
248
248
|
|
|
249
249
|
:param str resource_name: The name of the resource.
|
|
250
250
|
:param DaprComponentArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -301,7 +301,7 @@ class DaprComponent(pulumi.CustomResource):
|
|
|
301
301
|
__props__.__dict__["name"] = None
|
|
302
302
|
__props__.__dict__["system_data"] = None
|
|
303
303
|
__props__.__dict__["type"] = None
|
|
304
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20220101preview:DaprComponent"), pulumi.Alias(type_="azure-native:app/v20220301:DaprComponent"), pulumi.Alias(type_="azure-native:app/v20220601preview:DaprComponent"), pulumi.Alias(type_="azure-native:app/v20221001:DaprComponent"), pulumi.Alias(type_="azure-native:app/v20221101preview:DaprComponent"), pulumi.Alias(type_="azure-native:app/v20230401preview:DaprComponent"), pulumi.Alias(type_="azure-native:app/v20230501:DaprComponent"), pulumi.Alias(type_="azure-native:app/v20230502preview:DaprComponent"), pulumi.Alias(type_="azure-native:app/v20230801preview:DaprComponent")])
|
|
304
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20220101preview:DaprComponent"), pulumi.Alias(type_="azure-native:app/v20220301:DaprComponent"), pulumi.Alias(type_="azure-native:app/v20220601preview:DaprComponent"), pulumi.Alias(type_="azure-native:app/v20221001:DaprComponent"), pulumi.Alias(type_="azure-native:app/v20221101preview:DaprComponent"), pulumi.Alias(type_="azure-native:app/v20230401preview:DaprComponent"), pulumi.Alias(type_="azure-native:app/v20230501:DaprComponent"), pulumi.Alias(type_="azure-native:app/v20230502preview:DaprComponent"), pulumi.Alias(type_="azure-native:app/v20230801preview:DaprComponent"), pulumi.Alias(type_="azure-native:app/v20231102preview:DaprComponent")])
|
|
305
305
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
306
306
|
super(DaprComponent, __self__).__init__(
|
|
307
307
|
'azure-native:app:DaprComponent',
|
|
@@ -130,6 +130,8 @@ class DaprComponentResiliencyPolicy(pulumi.CustomResource):
|
|
|
130
130
|
Dapr Component Resiliency Policy.
|
|
131
131
|
Azure REST API version: 2023-08-01-preview.
|
|
132
132
|
|
|
133
|
+
Other available API versions: 2023-11-02-preview.
|
|
134
|
+
|
|
133
135
|
:param str resource_name: The name of the resource.
|
|
134
136
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
135
137
|
:param pulumi.Input[str] component_name: Name of the Dapr Component.
|
|
@@ -149,6 +151,8 @@ class DaprComponentResiliencyPolicy(pulumi.CustomResource):
|
|
|
149
151
|
Dapr Component Resiliency Policy.
|
|
150
152
|
Azure REST API version: 2023-08-01-preview.
|
|
151
153
|
|
|
154
|
+
Other available API versions: 2023-11-02-preview.
|
|
155
|
+
|
|
152
156
|
:param str resource_name: The name of the resource.
|
|
153
157
|
:param DaprComponentResiliencyPolicyArgs args: The arguments to use to populate this resource's properties.
|
|
154
158
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -193,7 +197,7 @@ class DaprComponentResiliencyPolicy(pulumi.CustomResource):
|
|
|
193
197
|
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
194
198
|
__props__.__dict__["system_data"] = None
|
|
195
199
|
__props__.__dict__["type"] = None
|
|
196
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20230801preview:DaprComponentResiliencyPolicy")])
|
|
200
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20230801preview:DaprComponentResiliencyPolicy"), pulumi.Alias(type_="azure-native:app/v20231102preview:DaprComponentResiliencyPolicy")])
|
|
197
201
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
198
202
|
super(DaprComponentResiliencyPolicy, __self__).__init__(
|
|
199
203
|
'azure-native:app:DaprComponentResiliencyPolicy',
|
|
@@ -199,6 +199,8 @@ class DaprSubscription(pulumi.CustomResource):
|
|
|
199
199
|
Dapr PubSub Event Subscription.
|
|
200
200
|
Azure REST API version: 2023-08-01-preview.
|
|
201
201
|
|
|
202
|
+
Other available API versions: 2023-11-02-preview.
|
|
203
|
+
|
|
202
204
|
:param str resource_name: The name of the resource.
|
|
203
205
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
204
206
|
:param pulumi.Input[pulumi.InputType['DaprSubscriptionBulkSubscribeOptionsArgs']] bulk_subscribe: Bulk subscription options
|
|
@@ -222,6 +224,8 @@ class DaprSubscription(pulumi.CustomResource):
|
|
|
222
224
|
Dapr PubSub Event Subscription.
|
|
223
225
|
Azure REST API version: 2023-08-01-preview.
|
|
224
226
|
|
|
227
|
+
Other available API versions: 2023-11-02-preview.
|
|
228
|
+
|
|
225
229
|
:param str resource_name: The name of the resource.
|
|
226
230
|
:param DaprSubscriptionArgs args: The arguments to use to populate this resource's properties.
|
|
227
231
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -272,7 +276,7 @@ class DaprSubscription(pulumi.CustomResource):
|
|
|
272
276
|
__props__.__dict__["topic"] = topic
|
|
273
277
|
__props__.__dict__["system_data"] = None
|
|
274
278
|
__props__.__dict__["type"] = None
|
|
275
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20230801preview:DaprSubscription")])
|
|
279
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20230801preview:DaprSubscription"), pulumi.Alias(type_="azure-native:app/v20231102preview:DaprSubscription")])
|
|
276
280
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
277
281
|
super(DaprSubscription, __self__).__init__(
|
|
278
282
|
'azure-native:app:DaprSubscription',
|
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from .. import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
from ._enums import *
|
|
13
|
+
from ._inputs import *
|
|
14
|
+
|
|
15
|
+
__all__ = ['DotNetComponentArgs', 'DotNetComponent']
|
|
16
|
+
|
|
17
|
+
@pulumi.input_type
|
|
18
|
+
class DotNetComponentArgs:
|
|
19
|
+
def __init__(__self__, *,
|
|
20
|
+
environment_name: pulumi.Input[str],
|
|
21
|
+
resource_group_name: pulumi.Input[str],
|
|
22
|
+
component_type: Optional[pulumi.Input[Union[str, 'DotNetComponentType']]] = None,
|
|
23
|
+
configurations: Optional[pulumi.Input[Sequence[pulumi.Input['DotNetComponentConfigurationPropertyArgs']]]] = None,
|
|
24
|
+
name: Optional[pulumi.Input[str]] = None,
|
|
25
|
+
service_binds: Optional[pulumi.Input[Sequence[pulumi.Input['DotNetComponentServiceBindArgs']]]] = None):
|
|
26
|
+
"""
|
|
27
|
+
The set of arguments for constructing a DotNetComponent resource.
|
|
28
|
+
:param pulumi.Input[str] environment_name: Name of the Managed Environment.
|
|
29
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
30
|
+
:param pulumi.Input[Union[str, 'DotNetComponentType']] component_type: Type of the .NET Component.
|
|
31
|
+
:param pulumi.Input[Sequence[pulumi.Input['DotNetComponentConfigurationPropertyArgs']]] configurations: List of .NET Components configuration properties
|
|
32
|
+
:param pulumi.Input[str] name: Name of the .NET Component.
|
|
33
|
+
:param pulumi.Input[Sequence[pulumi.Input['DotNetComponentServiceBindArgs']]] service_binds: List of .NET Components that are bound to the .NET component
|
|
34
|
+
"""
|
|
35
|
+
pulumi.set(__self__, "environment_name", environment_name)
|
|
36
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
37
|
+
if component_type is not None:
|
|
38
|
+
pulumi.set(__self__, "component_type", component_type)
|
|
39
|
+
if configurations is not None:
|
|
40
|
+
pulumi.set(__self__, "configurations", configurations)
|
|
41
|
+
if name is not None:
|
|
42
|
+
pulumi.set(__self__, "name", name)
|
|
43
|
+
if service_binds is not None:
|
|
44
|
+
pulumi.set(__self__, "service_binds", service_binds)
|
|
45
|
+
|
|
46
|
+
@property
|
|
47
|
+
@pulumi.getter(name="environmentName")
|
|
48
|
+
def environment_name(self) -> pulumi.Input[str]:
|
|
49
|
+
"""
|
|
50
|
+
Name of the Managed Environment.
|
|
51
|
+
"""
|
|
52
|
+
return pulumi.get(self, "environment_name")
|
|
53
|
+
|
|
54
|
+
@environment_name.setter
|
|
55
|
+
def environment_name(self, value: pulumi.Input[str]):
|
|
56
|
+
pulumi.set(self, "environment_name", value)
|
|
57
|
+
|
|
58
|
+
@property
|
|
59
|
+
@pulumi.getter(name="resourceGroupName")
|
|
60
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
61
|
+
"""
|
|
62
|
+
The name of the resource group. The name is case insensitive.
|
|
63
|
+
"""
|
|
64
|
+
return pulumi.get(self, "resource_group_name")
|
|
65
|
+
|
|
66
|
+
@resource_group_name.setter
|
|
67
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
68
|
+
pulumi.set(self, "resource_group_name", value)
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
@pulumi.getter(name="componentType")
|
|
72
|
+
def component_type(self) -> Optional[pulumi.Input[Union[str, 'DotNetComponentType']]]:
|
|
73
|
+
"""
|
|
74
|
+
Type of the .NET Component.
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "component_type")
|
|
77
|
+
|
|
78
|
+
@component_type.setter
|
|
79
|
+
def component_type(self, value: Optional[pulumi.Input[Union[str, 'DotNetComponentType']]]):
|
|
80
|
+
pulumi.set(self, "component_type", value)
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
@pulumi.getter
|
|
84
|
+
def configurations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DotNetComponentConfigurationPropertyArgs']]]]:
|
|
85
|
+
"""
|
|
86
|
+
List of .NET Components configuration properties
|
|
87
|
+
"""
|
|
88
|
+
return pulumi.get(self, "configurations")
|
|
89
|
+
|
|
90
|
+
@configurations.setter
|
|
91
|
+
def configurations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DotNetComponentConfigurationPropertyArgs']]]]):
|
|
92
|
+
pulumi.set(self, "configurations", value)
|
|
93
|
+
|
|
94
|
+
@property
|
|
95
|
+
@pulumi.getter
|
|
96
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
|
97
|
+
"""
|
|
98
|
+
Name of the .NET Component.
|
|
99
|
+
"""
|
|
100
|
+
return pulumi.get(self, "name")
|
|
101
|
+
|
|
102
|
+
@name.setter
|
|
103
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
|
104
|
+
pulumi.set(self, "name", value)
|
|
105
|
+
|
|
106
|
+
@property
|
|
107
|
+
@pulumi.getter(name="serviceBinds")
|
|
108
|
+
def service_binds(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DotNetComponentServiceBindArgs']]]]:
|
|
109
|
+
"""
|
|
110
|
+
List of .NET Components that are bound to the .NET component
|
|
111
|
+
"""
|
|
112
|
+
return pulumi.get(self, "service_binds")
|
|
113
|
+
|
|
114
|
+
@service_binds.setter
|
|
115
|
+
def service_binds(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DotNetComponentServiceBindArgs']]]]):
|
|
116
|
+
pulumi.set(self, "service_binds", value)
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
class DotNetComponent(pulumi.CustomResource):
|
|
120
|
+
@overload
|
|
121
|
+
def __init__(__self__,
|
|
122
|
+
resource_name: str,
|
|
123
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
124
|
+
component_type: Optional[pulumi.Input[Union[str, 'DotNetComponentType']]] = None,
|
|
125
|
+
configurations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DotNetComponentConfigurationPropertyArgs']]]]] = None,
|
|
126
|
+
environment_name: Optional[pulumi.Input[str]] = None,
|
|
127
|
+
name: Optional[pulumi.Input[str]] = None,
|
|
128
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
129
|
+
service_binds: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DotNetComponentServiceBindArgs']]]]] = None,
|
|
130
|
+
__props__=None):
|
|
131
|
+
"""
|
|
132
|
+
.NET Component.
|
|
133
|
+
Azure REST API version: 2023-11-02-preview.
|
|
134
|
+
|
|
135
|
+
:param str resource_name: The name of the resource.
|
|
136
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
137
|
+
:param pulumi.Input[Union[str, 'DotNetComponentType']] component_type: Type of the .NET Component.
|
|
138
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DotNetComponentConfigurationPropertyArgs']]]] configurations: List of .NET Components configuration properties
|
|
139
|
+
:param pulumi.Input[str] environment_name: Name of the Managed Environment.
|
|
140
|
+
:param pulumi.Input[str] name: Name of the .NET Component.
|
|
141
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
142
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DotNetComponentServiceBindArgs']]]] service_binds: List of .NET Components that are bound to the .NET component
|
|
143
|
+
"""
|
|
144
|
+
...
|
|
145
|
+
@overload
|
|
146
|
+
def __init__(__self__,
|
|
147
|
+
resource_name: str,
|
|
148
|
+
args: DotNetComponentArgs,
|
|
149
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
150
|
+
"""
|
|
151
|
+
.NET Component.
|
|
152
|
+
Azure REST API version: 2023-11-02-preview.
|
|
153
|
+
|
|
154
|
+
:param str resource_name: The name of the resource.
|
|
155
|
+
:param DotNetComponentArgs args: The arguments to use to populate this resource's properties.
|
|
156
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
157
|
+
"""
|
|
158
|
+
...
|
|
159
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
160
|
+
resource_args, opts = _utilities.get_resource_args_opts(DotNetComponentArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
161
|
+
if resource_args is not None:
|
|
162
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
163
|
+
else:
|
|
164
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
165
|
+
|
|
166
|
+
def _internal_init(__self__,
|
|
167
|
+
resource_name: str,
|
|
168
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
169
|
+
component_type: Optional[pulumi.Input[Union[str, 'DotNetComponentType']]] = None,
|
|
170
|
+
configurations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DotNetComponentConfigurationPropertyArgs']]]]] = None,
|
|
171
|
+
environment_name: Optional[pulumi.Input[str]] = None,
|
|
172
|
+
name: Optional[pulumi.Input[str]] = None,
|
|
173
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
174
|
+
service_binds: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DotNetComponentServiceBindArgs']]]]] = None,
|
|
175
|
+
__props__=None):
|
|
176
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
177
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
178
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
179
|
+
if opts.id is None:
|
|
180
|
+
if __props__ is not None:
|
|
181
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
182
|
+
__props__ = DotNetComponentArgs.__new__(DotNetComponentArgs)
|
|
183
|
+
|
|
184
|
+
__props__.__dict__["component_type"] = component_type
|
|
185
|
+
__props__.__dict__["configurations"] = configurations
|
|
186
|
+
if environment_name is None and not opts.urn:
|
|
187
|
+
raise TypeError("Missing required property 'environment_name'")
|
|
188
|
+
__props__.__dict__["environment_name"] = environment_name
|
|
189
|
+
__props__.__dict__["name"] = name
|
|
190
|
+
if resource_group_name is None and not opts.urn:
|
|
191
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
192
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
193
|
+
__props__.__dict__["service_binds"] = service_binds
|
|
194
|
+
__props__.__dict__["provisioning_state"] = None
|
|
195
|
+
__props__.__dict__["system_data"] = None
|
|
196
|
+
__props__.__dict__["type"] = None
|
|
197
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:app/v20231102preview:DotNetComponent")])
|
|
198
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
199
|
+
super(DotNetComponent, __self__).__init__(
|
|
200
|
+
'azure-native:app:DotNetComponent',
|
|
201
|
+
resource_name,
|
|
202
|
+
__props__,
|
|
203
|
+
opts)
|
|
204
|
+
|
|
205
|
+
@staticmethod
|
|
206
|
+
def get(resource_name: str,
|
|
207
|
+
id: pulumi.Input[str],
|
|
208
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'DotNetComponent':
|
|
209
|
+
"""
|
|
210
|
+
Get an existing DotNetComponent resource's state with the given name, id, and optional extra
|
|
211
|
+
properties used to qualify the lookup.
|
|
212
|
+
|
|
213
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
214
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
215
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
216
|
+
"""
|
|
217
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
218
|
+
|
|
219
|
+
__props__ = DotNetComponentArgs.__new__(DotNetComponentArgs)
|
|
220
|
+
|
|
221
|
+
__props__.__dict__["component_type"] = None
|
|
222
|
+
__props__.__dict__["configurations"] = None
|
|
223
|
+
__props__.__dict__["name"] = None
|
|
224
|
+
__props__.__dict__["provisioning_state"] = None
|
|
225
|
+
__props__.__dict__["service_binds"] = None
|
|
226
|
+
__props__.__dict__["system_data"] = None
|
|
227
|
+
__props__.__dict__["type"] = None
|
|
228
|
+
return DotNetComponent(resource_name, opts=opts, __props__=__props__)
|
|
229
|
+
|
|
230
|
+
@property
|
|
231
|
+
@pulumi.getter(name="componentType")
|
|
232
|
+
def component_type(self) -> pulumi.Output[Optional[str]]:
|
|
233
|
+
"""
|
|
234
|
+
Type of the .NET Component.
|
|
235
|
+
"""
|
|
236
|
+
return pulumi.get(self, "component_type")
|
|
237
|
+
|
|
238
|
+
@property
|
|
239
|
+
@pulumi.getter
|
|
240
|
+
def configurations(self) -> pulumi.Output[Optional[Sequence['outputs.DotNetComponentConfigurationPropertyResponse']]]:
|
|
241
|
+
"""
|
|
242
|
+
List of .NET Components configuration properties
|
|
243
|
+
"""
|
|
244
|
+
return pulumi.get(self, "configurations")
|
|
245
|
+
|
|
246
|
+
@property
|
|
247
|
+
@pulumi.getter
|
|
248
|
+
def name(self) -> pulumi.Output[str]:
|
|
249
|
+
"""
|
|
250
|
+
The name of the resource
|
|
251
|
+
"""
|
|
252
|
+
return pulumi.get(self, "name")
|
|
253
|
+
|
|
254
|
+
@property
|
|
255
|
+
@pulumi.getter(name="provisioningState")
|
|
256
|
+
def provisioning_state(self) -> pulumi.Output[str]:
|
|
257
|
+
"""
|
|
258
|
+
Provisioning state of the .NET Component.
|
|
259
|
+
"""
|
|
260
|
+
return pulumi.get(self, "provisioning_state")
|
|
261
|
+
|
|
262
|
+
@property
|
|
263
|
+
@pulumi.getter(name="serviceBinds")
|
|
264
|
+
def service_binds(self) -> pulumi.Output[Optional[Sequence['outputs.DotNetComponentServiceBindResponse']]]:
|
|
265
|
+
"""
|
|
266
|
+
List of .NET Components that are bound to the .NET component
|
|
267
|
+
"""
|
|
268
|
+
return pulumi.get(self, "service_binds")
|
|
269
|
+
|
|
270
|
+
@property
|
|
271
|
+
@pulumi.getter(name="systemData")
|
|
272
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
273
|
+
"""
|
|
274
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
275
|
+
"""
|
|
276
|
+
return pulumi.get(self, "system_data")
|
|
277
|
+
|
|
278
|
+
@property
|
|
279
|
+
@pulumi.getter
|
|
280
|
+
def type(self) -> pulumi.Output[str]:
|
|
281
|
+
"""
|
|
282
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
283
|
+
"""
|
|
284
|
+
return pulumi.get(self, "type")
|
|
285
|
+
|
|
@@ -161,6 +161,8 @@ def get_app_resiliency(app_name: Optional[str] = None,
|
|
|
161
161
|
Get container app resiliency policy.
|
|
162
162
|
Azure REST API version: 2023-08-01-preview.
|
|
163
163
|
|
|
164
|
+
Other available API versions: 2023-11-02-preview.
|
|
165
|
+
|
|
164
166
|
|
|
165
167
|
:param str app_name: Name of the Container App.
|
|
166
168
|
:param str name: Name of the resiliency policy.
|
|
@@ -195,6 +197,8 @@ def get_app_resiliency_output(app_name: Optional[pulumi.Input[str]] = None,
|
|
|
195
197
|
Get container app resiliency policy.
|
|
196
198
|
Azure REST API version: 2023-08-01-preview.
|
|
197
199
|
|
|
200
|
+
Other available API versions: 2023-11-02-preview.
|
|
201
|
+
|
|
198
202
|
|
|
199
203
|
:param str app_name: Name of the Container App.
|
|
200
204
|
:param str name: Name of the resiliency policy.
|