pulumi-azure-native 2.29.1a1708510433__py3-none-any.whl → 2.29.1a1708705299__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +184 -0
- pulumi_azure_native/_utilities.py +2 -6
- pulumi_azure_native/app/__init__.py +7 -0
- pulumi_azure_native/app/_enums.py +19 -0
- pulumi_azure_native/app/_inputs.py +164 -0
- pulumi_azure_native/app/app_resiliency.py +5 -1
- pulumi_azure_native/app/build.py +5 -1
- pulumi_azure_native/app/builder.py +5 -1
- pulumi_azure_native/app/certificate.py +3 -3
- pulumi_azure_native/app/connected_environment.py +3 -3
- pulumi_azure_native/app/connected_environments_certificate.py +3 -3
- pulumi_azure_native/app/connected_environments_dapr_component.py +3 -3
- pulumi_azure_native/app/connected_environments_storage.py +3 -3
- pulumi_azure_native/app/container_app.py +3 -3
- pulumi_azure_native/app/container_apps_auth_config.py +3 -3
- pulumi_azure_native/app/container_apps_source_control.py +3 -3
- pulumi_azure_native/app/dapr_component.py +3 -3
- pulumi_azure_native/app/dapr_component_resiliency_policy.py +5 -1
- pulumi_azure_native/app/dapr_subscription.py +5 -1
- pulumi_azure_native/app/dot_net_component.py +285 -0
- pulumi_azure_native/app/get_app_resiliency.py +4 -0
- pulumi_azure_native/app/get_build.py +4 -0
- pulumi_azure_native/app/get_builder.py +4 -0
- pulumi_azure_native/app/get_certificate.py +2 -2
- pulumi_azure_native/app/get_connected_environment.py +2 -2
- pulumi_azure_native/app/get_connected_environments_certificate.py +2 -2
- pulumi_azure_native/app/get_connected_environments_dapr_component.py +2 -2
- pulumi_azure_native/app/get_connected_environments_storage.py +2 -2
- pulumi_azure_native/app/get_container_app.py +2 -2
- pulumi_azure_native/app/get_container_app_auth_token.py +2 -2
- pulumi_azure_native/app/get_container_apps_auth_config.py +2 -2
- pulumi_azure_native/app/get_container_apps_source_control.py +2 -2
- pulumi_azure_native/app/get_dapr_component.py +2 -2
- pulumi_azure_native/app/get_dapr_component_resiliency_policy.py +4 -0
- pulumi_azure_native/app/get_dapr_subscription.py +4 -0
- pulumi_azure_native/app/get_dot_net_component.py +177 -0
- pulumi_azure_native/app/get_java_component.py +177 -0
- pulumi_azure_native/app/get_job.py +2 -2
- pulumi_azure_native/app/get_managed_certificate.py +2 -2
- pulumi_azure_native/app/get_managed_environment.py +2 -2
- pulumi_azure_native/app/get_managed_environment_auth_token.py +2 -2
- pulumi_azure_native/app/get_managed_environments_storage.py +2 -2
- pulumi_azure_native/app/java_component.py +285 -0
- pulumi_azure_native/app/job.py +3 -3
- pulumi_azure_native/app/list_build_auth_token.py +4 -0
- pulumi_azure_native/app/list_connected_environments_dapr_component_secrets.py +2 -2
- pulumi_azure_native/app/list_container_app_custom_host_name_analysis.py +2 -2
- pulumi_azure_native/app/list_container_app_secrets.py +2 -2
- pulumi_azure_native/app/list_dapr_component_secrets.py +2 -2
- pulumi_azure_native/app/list_job_secrets.py +2 -2
- pulumi_azure_native/app/managed_certificate.py +3 -3
- pulumi_azure_native/app/managed_environment.py +3 -3
- pulumi_azure_native/app/managed_environments_storage.py +3 -3
- pulumi_azure_native/app/outputs.py +212 -0
- pulumi_azure_native/app/v20220101preview/certificate.py +1 -1
- pulumi_azure_native/app/v20220101preview/container_app.py +1 -1
- pulumi_azure_native/app/v20220101preview/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20220101preview/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20220101preview/dapr_component.py +1 -1
- pulumi_azure_native/app/v20220101preview/managed_environment.py +1 -1
- pulumi_azure_native/app/v20220101preview/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20221001/certificate.py +1 -1
- pulumi_azure_native/app/v20221001/connected_environment.py +1 -1
- pulumi_azure_native/app/v20221001/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20221001/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20221001/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20221001/container_app.py +1 -1
- pulumi_azure_native/app/v20221001/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20221001/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20221001/dapr_component.py +1 -1
- pulumi_azure_native/app/v20221001/managed_environment.py +1 -1
- pulumi_azure_native/app/v20221001/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230401preview/certificate.py +1 -1
- pulumi_azure_native/app/v20230401preview/connected_environment.py +1 -1
- pulumi_azure_native/app/v20230401preview/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20230401preview/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20230401preview/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230401preview/container_app.py +1 -1
- pulumi_azure_native/app/v20230401preview/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20230401preview/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20230401preview/dapr_component.py +1 -1
- pulumi_azure_native/app/v20230401preview/job.py +1 -1
- pulumi_azure_native/app/v20230401preview/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20230401preview/managed_environment.py +1 -1
- pulumi_azure_native/app/v20230401preview/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230501/certificate.py +1 -1
- pulumi_azure_native/app/v20230501/connected_environment.py +1 -1
- pulumi_azure_native/app/v20230501/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20230501/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20230501/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230501/container_app.py +1 -1
- pulumi_azure_native/app/v20230501/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20230501/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20230501/dapr_component.py +1 -1
- pulumi_azure_native/app/v20230501/job.py +1 -1
- pulumi_azure_native/app/v20230501/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20230501/managed_environment.py +1 -1
- pulumi_azure_native/app/v20230501/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230502preview/certificate.py +1 -1
- pulumi_azure_native/app/v20230502preview/connected_environment.py +1 -1
- pulumi_azure_native/app/v20230502preview/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20230502preview/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20230502preview/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230502preview/container_app.py +1 -1
- pulumi_azure_native/app/v20230502preview/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20230502preview/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20230502preview/dapr_component.py +1 -1
- pulumi_azure_native/app/v20230502preview/job.py +1 -1
- pulumi_azure_native/app/v20230502preview/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20230502preview/managed_environment.py +1 -1
- pulumi_azure_native/app/v20230502preview/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230801preview/app_resiliency.py +1 -1
- pulumi_azure_native/app/v20230801preview/build.py +1 -1
- pulumi_azure_native/app/v20230801preview/builder.py +1 -1
- pulumi_azure_native/app/v20230801preview/certificate.py +1 -1
- pulumi_azure_native/app/v20230801preview/connected_environment.py +1 -1
- pulumi_azure_native/app/v20230801preview/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20230801preview/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20230801preview/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230801preview/container_app.py +1 -1
- pulumi_azure_native/app/v20230801preview/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20230801preview/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20230801preview/dapr_component.py +1 -1
- pulumi_azure_native/app/v20230801preview/dapr_component_resiliency_policy.py +1 -1
- pulumi_azure_native/app/v20230801preview/dapr_subscription.py +1 -1
- pulumi_azure_native/app/v20230801preview/job.py +1 -1
- pulumi_azure_native/app/v20230801preview/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20230801preview/managed_environment.py +1 -1
- pulumi_azure_native/app/v20230801preview/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20231102preview/__init__.py +58 -0
- pulumi_azure_native/app/v20231102preview/_enums.py +239 -0
- pulumi_azure_native/app/v20231102preview/_inputs.py +7921 -0
- pulumi_azure_native/app/v20231102preview/app_resiliency.py +359 -0
- pulumi_azure_native/app/v20231102preview/build.py +294 -0
- pulumi_azure_native/app/v20231102preview/builder.py +322 -0
- pulumi_azure_native/app/v20231102preview/certificate.py +274 -0
- pulumi_azure_native/app/v20231102preview/connected_environment.py +370 -0
- pulumi_azure_native/app/v20231102preview/connected_environments_certificate.py +274 -0
- pulumi_azure_native/app/v20231102preview/connected_environments_dapr_component.py +451 -0
- pulumi_azure_native/app/v20231102preview/connected_environments_storage.py +216 -0
- pulumi_azure_native/app/v20231102preview/container_app.py +526 -0
- pulumi_azure_native/app/v20231102preview/container_apps_auth_config.py +361 -0
- pulumi_azure_native/app/v20231102preview/container_apps_source_control.py +291 -0
- pulumi_azure_native/app/v20231102preview/dapr_component.py +451 -0
- pulumi_azure_native/app/v20231102preview/dapr_component_resiliency_policy.py +264 -0
- pulumi_azure_native/app/v20231102preview/dapr_subscription.py +388 -0
- pulumi_azure_native/app/v20231102preview/dot_net_component.py +283 -0
- pulumi_azure_native/app/v20231102preview/get_app_resiliency.py +201 -0
- pulumi_azure_native/app/v20231102preview/get_build.py +214 -0
- pulumi_azure_native/app/v20231102preview/get_builder.py +196 -0
- pulumi_azure_native/app/v20231102preview/get_certificate.py +162 -0
- pulumi_azure_native/app/v20231102preview/get_connected_environment.py +235 -0
- pulumi_azure_native/app/v20231102preview/get_connected_environments_certificate.py +162 -0
- pulumi_azure_native/app/v20231102preview/get_connected_environments_dapr_component.py +240 -0
- pulumi_azure_native/app/v20231102preview/get_connected_environments_storage.py +136 -0
- pulumi_azure_native/app/v20231102preview/get_container_app.py +339 -0
- pulumi_azure_native/app/v20231102preview/get_container_app_auth_token.py +170 -0
- pulumi_azure_native/app/v20231102preview/get_container_apps_auth_config.py +201 -0
- pulumi_azure_native/app/v20231102preview/get_container_apps_source_control.py +177 -0
- pulumi_azure_native/app/v20231102preview/get_dapr_component.py +240 -0
- pulumi_azure_native/app/v20231102preview/get_dapr_component_resiliency_policy.py +154 -0
- pulumi_azure_native/app/v20231102preview/get_dapr_subscription.py +214 -0
- pulumi_azure_native/app/v20231102preview/get_dot_net_component.py +175 -0
- pulumi_azure_native/app/v20231102preview/get_java_component.py +175 -0
- pulumi_azure_native/app/v20231102preview/get_job.py +261 -0
- pulumi_azure_native/app/v20231102preview/get_managed_certificate.py +162 -0
- pulumi_azure_native/app/v20231102preview/get_managed_environment.py +406 -0
- pulumi_azure_native/app/v20231102preview/get_managed_environment_auth_token.py +170 -0
- pulumi_azure_native/app/v20231102preview/get_managed_environments_storage.py +136 -0
- pulumi_azure_native/app/v20231102preview/java_component.py +283 -0
- pulumi_azure_native/app/v20231102preview/job.py +428 -0
- pulumi_azure_native/app/v20231102preview/list_build_auth_token.py +96 -0
- pulumi_azure_native/app/v20231102preview/list_connected_environments_dapr_component_secrets.py +84 -0
- pulumi_azure_native/app/v20231102preview/list_container_app_custom_host_name_analysis.py +227 -0
- pulumi_azure_native/app/v20231102preview/list_container_app_secrets.py +79 -0
- pulumi_azure_native/app/v20231102preview/list_dapr_component_secrets.py +84 -0
- pulumi_azure_native/app/v20231102preview/list_job_secrets.py +79 -0
- pulumi_azure_native/app/v20231102preview/managed_certificate.py +274 -0
- pulumi_azure_native/app/v20231102preview/managed_environment.py +679 -0
- pulumi_azure_native/app/v20231102preview/managed_environments_storage.py +216 -0
- pulumi_azure_native/app/v20231102preview/outputs.py +9200 -0
- pulumi_azure_native/containerservice/__init__.py +6 -0
- pulumi_azure_native/containerservice/agent_pool.py +3 -3
- pulumi_azure_native/containerservice/get_agent_pool.py +2 -2
- pulumi_azure_native/containerservice/get_maintenance_configuration.py +2 -2
- pulumi_azure_native/containerservice/get_managed_cluster.py +2 -2
- pulumi_azure_native/containerservice/get_managed_cluster_snapshot.py +2 -2
- pulumi_azure_native/containerservice/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/containerservice/get_snapshot.py +2 -2
- pulumi_azure_native/containerservice/get_trusted_access_role_binding.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_admin_credentials.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_monitoring_user_credentials.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_user_credentials.py +2 -2
- pulumi_azure_native/containerservice/maintenance_configuration.py +3 -3
- pulumi_azure_native/containerservice/managed_cluster.py +3 -3
- pulumi_azure_native/containerservice/managed_cluster_snapshot.py +3 -3
- pulumi_azure_native/containerservice/private_endpoint_connection.py +3 -3
- pulumi_azure_native/containerservice/snapshot.py +3 -3
- pulumi_azure_native/containerservice/trusted_access_role_binding.py +3 -3
- pulumi_azure_native/containerservice/v20190601/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20200601/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20210201/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20210501/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20210801/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20220402preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230401/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230401/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230401/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230401/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230401/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230502preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230601/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230601/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230601/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230601/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230601/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230602preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230701/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230701/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230701/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230701/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230701/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230702preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230801/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230801/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230801/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230801/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230801/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230802preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230901/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230901/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230901/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230901/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230901/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230901/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20230902preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20231001/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20231001/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20231001/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20231001/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20231001/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231001/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231002preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20231101/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20231101/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20231101/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20231101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20231101/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231101/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/agent_pool.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/managed_cluster.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/managed_cluster_snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/snapshot.py +1 -1
- pulumi_azure_native/containerservice/v20231102preview/trusted_access_role_binding.py +1 -1
- pulumi_azure_native/containerservice/v20240101/__init__.py +25 -0
- pulumi_azure_native/containerservice/v20240101/_enums.py +620 -0
- pulumi_azure_native/containerservice/v20240101/_inputs.py +5394 -0
- pulumi_azure_native/containerservice/v20240101/agent_pool.py +1357 -0
- pulumi_azure_native/containerservice/v20240101/get_agent_pool.py +656 -0
- pulumi_azure_native/containerservice/v20240101/get_maintenance_configuration.py +162 -0
- pulumi_azure_native/containerservice/v20240101/get_managed_cluster.py +703 -0
- pulumi_azure_native/containerservice/v20240101/get_private_endpoint_connection.py +149 -0
- pulumi_azure_native/containerservice/v20240101/get_snapshot.py +248 -0
- pulumi_azure_native/containerservice/v20240101/get_trusted_access_role_binding.py +162 -0
- pulumi_azure_native/containerservice/v20240101/list_managed_cluster_admin_credentials.py +84 -0
- pulumi_azure_native/containerservice/v20240101/list_managed_cluster_monitoring_user_credentials.py +84 -0
- pulumi_azure_native/containerservice/v20240101/list_managed_cluster_user_credentials.py +89 -0
- pulumi_azure_native/containerservice/v20240101/maintenance_configuration.py +274 -0
- pulumi_azure_native/containerservice/v20240101/managed_cluster.py +1319 -0
- pulumi_azure_native/containerservice/v20240101/outputs.py +6265 -0
- pulumi_azure_native/containerservice/v20240101/private_endpoint_connection.py +246 -0
- pulumi_azure_native/containerservice/v20240101/snapshot.py +342 -0
- pulumi_azure_native/containerservice/v20240101/trusted_access_role_binding.py +255 -0
- pulumi_azure_native/containerservice/v20240102preview/__init__.py +27 -0
- pulumi_azure_native/containerservice/v20240102preview/_enums.py +794 -0
- pulumi_azure_native/containerservice/v20240102preview/_inputs.py +6636 -0
- pulumi_azure_native/containerservice/v20240102preview/agent_pool.py +1647 -0
- pulumi_azure_native/containerservice/v20240102preview/get_agent_pool.py +786 -0
- pulumi_azure_native/containerservice/v20240102preview/get_maintenance_configuration.py +162 -0
- pulumi_azure_native/containerservice/v20240102preview/get_managed_cluster.py +807 -0
- pulumi_azure_native/containerservice/v20240102preview/get_managed_cluster_snapshot.py +183 -0
- pulumi_azure_native/containerservice/v20240102preview/get_private_endpoint_connection.py +149 -0
- pulumi_azure_native/containerservice/v20240102preview/get_snapshot.py +248 -0
- pulumi_azure_native/containerservice/v20240102preview/get_trusted_access_role_binding.py +162 -0
- pulumi_azure_native/containerservice/v20240102preview/list_managed_cluster_admin_credentials.py +84 -0
- pulumi_azure_native/containerservice/v20240102preview/list_managed_cluster_monitoring_user_credentials.py +84 -0
- pulumi_azure_native/containerservice/v20240102preview/list_managed_cluster_user_credentials.py +89 -0
- pulumi_azure_native/containerservice/v20240102preview/maintenance_configuration.py +274 -0
- pulumi_azure_native/containerservice/v20240102preview/managed_cluster.py +1551 -0
- pulumi_azure_native/containerservice/v20240102preview/managed_cluster_snapshot.py +292 -0
- pulumi_azure_native/containerservice/v20240102preview/outputs.py +7775 -0
- pulumi_azure_native/containerservice/v20240102preview/private_endpoint_connection.py +246 -0
- pulumi_azure_native/containerservice/v20240102preview/snapshot.py +342 -0
- pulumi_azure_native/containerservice/v20240102preview/trusted_access_role_binding.py +255 -0
- pulumi_azure_native/databasewatcher/__init__.py +24 -0
- pulumi_azure_native/databasewatcher/_enums.py +68 -0
- pulumi_azure_native/databasewatcher/_inputs.py +228 -0
- pulumi_azure_native/databasewatcher/get_shared_private_link_resource.py +203 -0
- pulumi_azure_native/databasewatcher/get_target.py +203 -0
- pulumi_azure_native/databasewatcher/get_watcher.py +198 -0
- pulumi_azure_native/databasewatcher/outputs.py +447 -0
- pulumi_azure_native/databasewatcher/shared_private_link_resource.py +326 -0
- pulumi_azure_native/databasewatcher/target.py +347 -0
- pulumi_azure_native/databasewatcher/v20230901preview/__init__.py +16 -0
- pulumi_azure_native/databasewatcher/v20230901preview/_enums.py +68 -0
- pulumi_azure_native/databasewatcher/v20230901preview/_inputs.py +228 -0
- pulumi_azure_native/databasewatcher/v20230901preview/get_shared_private_link_resource.py +201 -0
- pulumi_azure_native/databasewatcher/v20230901preview/get_target.py +201 -0
- pulumi_azure_native/databasewatcher/v20230901preview/get_watcher.py +196 -0
- pulumi_azure_native/databasewatcher/v20230901preview/outputs.py +447 -0
- pulumi_azure_native/databasewatcher/v20230901preview/shared_private_link_resource.py +324 -0
- pulumi_azure_native/databasewatcher/v20230901preview/target.py +345 -0
- pulumi_azure_native/databasewatcher/v20230901preview/watcher.py +302 -0
- pulumi_azure_native/databasewatcher/watcher.py +304 -0
- pulumi_azure_native/databox/__init__.py +3 -0
- pulumi_azure_native/databox/get_job.py +2 -2
- pulumi_azure_native/databox/job.py +3 -3
- pulumi_azure_native/databox/list_job_credentials.py +2 -2
- pulumi_azure_native/databox/v20221201/job.py +1 -1
- pulumi_azure_native/databox/v20230301/job.py +1 -1
- pulumi_azure_native/databox/v20231201/job.py +1 -1
- pulumi_azure_native/databox/v20240201preview/job.py +1 -1
- pulumi_azure_native/databox/v20240301preview/__init__.py +13 -0
- pulumi_azure_native/databox/v20240301preview/_enums.py +301 -0
- pulumi_azure_native/databox/v20240301preview/_inputs.py +2366 -0
- pulumi_azure_native/databox/v20240301preview/get_job.py +396 -0
- pulumi_azure_native/databox/v20240301preview/job.py +534 -0
- pulumi_azure_native/databox/v20240301preview/list_job_credentials.py +92 -0
- pulumi_azure_native/databox/v20240301preview/outputs.py +6392 -0
- pulumi_azure_native/datafactory/_enums.py +29 -0
- pulumi_azure_native/datafactory/_inputs.py +1095 -8
- pulumi_azure_native/datafactory/dataset.py +7 -7
- pulumi_azure_native/datafactory/linked_service.py +7 -7
- pulumi_azure_native/datafactory/outputs.py +1002 -2
- pulumi_azure_native/datafactory/v20180601/_enums.py +29 -0
- pulumi_azure_native/datafactory/v20180601/_inputs.py +1095 -8
- pulumi_azure_native/datafactory/v20180601/dataset.py +7 -7
- pulumi_azure_native/datafactory/v20180601/linked_service.py +7 -7
- pulumi_azure_native/datafactory/v20180601/outputs.py +1002 -2
- pulumi_azure_native/dbforpostgresql/__init__.py +3 -0
- pulumi_azure_native/dbforpostgresql/cluster.py +5 -1
- pulumi_azure_native/dbforpostgresql/firewall_rule.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_cluster.py +4 -0
- pulumi_azure_native/dbforpostgresql/get_firewall_rule.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_role.py +4 -0
- pulumi_azure_native/dbforpostgresql/private_endpoint_connection.py +3 -3
- pulumi_azure_native/dbforpostgresql/role.py +5 -1
- pulumi_azure_native/dbforpostgresql/v20201005privatepreview/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20201005privatepreview/server_group.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221108/cluster.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221108/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221108/private_endpoint_connection.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221108/role.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230302preview/__init__.py +18 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/_enums.py +43 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/_inputs.py +178 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/cluster.py +923 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/firewall_rule.py +255 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/get_cluster.py +508 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/get_firewall_rule.py +162 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/get_private_endpoint_connection.py +175 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/get_role.py +176 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/outputs.py +536 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/private_endpoint_connection.py +247 -0
- pulumi_azure_native/dbforpostgresql/v20230302preview/role.py +306 -0
- pulumi_azure_native/healthcareapis/__init__.py +3 -0
- pulumi_azure_native/healthcareapis/dicom_service.py +3 -3
- pulumi_azure_native/healthcareapis/fhir_service.py +3 -3
- pulumi_azure_native/healthcareapis/get_dicom_service.py +2 -2
- pulumi_azure_native/healthcareapis/get_fhir_service.py +2 -2
- pulumi_azure_native/healthcareapis/get_iot_connector.py +2 -2
- pulumi_azure_native/healthcareapis/get_iot_connector_fhir_destination.py +2 -2
- pulumi_azure_native/healthcareapis/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/healthcareapis/get_service.py +2 -2
- pulumi_azure_native/healthcareapis/get_workspace.py +2 -2
- pulumi_azure_native/healthcareapis/get_workspace_private_endpoint_connection.py +2 -2
- pulumi_azure_native/healthcareapis/iot_connector.py +3 -3
- pulumi_azure_native/healthcareapis/iot_connector_fhir_destination.py +3 -3
- pulumi_azure_native/healthcareapis/private_endpoint_connection.py +3 -3
- pulumi_azure_native/healthcareapis/service.py +3 -3
- pulumi_azure_native/healthcareapis/v20230228/dicom_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/fhir_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/iot_connector.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/iot_connector_fhir_destination.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/workspace.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/workspace_private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/dicom_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/fhir_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/iot_connector.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/iot_connector_fhir_destination.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/workspace.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/workspace_private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/dicom_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/fhir_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/iot_connector.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/iot_connector_fhir_destination.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/service.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/workspace.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/workspace_private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/dicom_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/fhir_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/iot_connector.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/iot_connector_fhir_destination.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/service.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/workspace.py +1 -1
- pulumi_azure_native/healthcareapis/v20231201/workspace_private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20240301/__init__.py +26 -0
- pulumi_azure_native/healthcareapis/v20240301/_enums.py +93 -0
- pulumi_azure_native/healthcareapis/v20240301/_inputs.py +1432 -0
- pulumi_azure_native/healthcareapis/v20240301/dicom_service.py +431 -0
- pulumi_azure_native/healthcareapis/v20240301/fhir_service.py +585 -0
- pulumi_azure_native/healthcareapis/v20240301/get_dicom_service.py +292 -0
- pulumi_azure_native/healthcareapis/v20240301/get_fhir_service.py +344 -0
- pulumi_azure_native/healthcareapis/v20240301/get_iot_connector.py +214 -0
- pulumi_azure_native/healthcareapis/v20240301/get_iot_connector_fhir_destination.py +193 -0
- pulumi_azure_native/healthcareapis/v20240301/get_private_endpoint_connection.py +162 -0
- pulumi_azure_native/healthcareapis/v20240301/get_service.py +196 -0
- pulumi_azure_native/healthcareapis/v20240301/get_workspace.py +170 -0
- pulumi_azure_native/healthcareapis/v20240301/get_workspace_private_endpoint_connection.py +162 -0
- pulumi_azure_native/healthcareapis/v20240301/iot_connector.py +352 -0
- pulumi_azure_native/healthcareapis/v20240301/iot_connector_fhir_destination.py +337 -0
- pulumi_azure_native/healthcareapis/v20240301/outputs.py +2123 -0
- pulumi_azure_native/healthcareapis/v20240301/private_endpoint_connection.py +237 -0
- pulumi_azure_native/healthcareapis/v20240301/service.py +322 -0
- pulumi_azure_native/healthcareapis/v20240301/workspace.py +242 -0
- pulumi_azure_native/healthcareapis/v20240301/workspace_private_endpoint_connection.py +237 -0
- pulumi_azure_native/healthcareapis/workspace.py +3 -3
- pulumi_azure_native/healthcareapis/workspace_private_endpoint_connection.py +3 -3
- pulumi_azure_native/maps/__init__.py +3 -0
- pulumi_azure_native/maps/account.py +3 -3
- pulumi_azure_native/maps/creator.py +3 -3
- pulumi_azure_native/maps/get_account.py +2 -2
- pulumi_azure_native/maps/get_creator.py +2 -2
- pulumi_azure_native/maps/get_private_endpoint_connection.py +4 -0
- pulumi_azure_native/maps/list_account_keys.py +2 -2
- pulumi_azure_native/maps/list_account_sas.py +2 -2
- pulumi_azure_native/maps/private_endpoint_connection.py +5 -1
- pulumi_azure_native/maps/v20180501/account.py +1 -1
- pulumi_azure_native/maps/v20200201preview/creator.py +1 -1
- pulumi_azure_native/maps/v20210201/account.py +1 -1
- pulumi_azure_native/maps/v20210201/creator.py +1 -1
- pulumi_azure_native/maps/v20211201preview/account.py +1 -1
- pulumi_azure_native/maps/v20211201preview/creator.py +1 -1
- pulumi_azure_native/maps/v20230601/account.py +1 -1
- pulumi_azure_native/maps/v20230601/creator.py +1 -1
- pulumi_azure_native/maps/v20230801preview/account.py +1 -1
- pulumi_azure_native/maps/v20230801preview/creator.py +1 -1
- pulumi_azure_native/maps/v20231201preview/account.py +1 -1
- pulumi_azure_native/maps/v20231201preview/creator.py +1 -1
- pulumi_azure_native/maps/v20231201preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/maps/v20240101preview/__init__.py +18 -0
- pulumi_azure_native/maps/v20240101preview/_enums.py +73 -0
- pulumi_azure_native/maps/v20240101preview/_inputs.py +568 -0
- pulumi_azure_native/maps/v20240101preview/account.py +341 -0
- pulumi_azure_native/maps/v20240101preview/creator.py +274 -0
- pulumi_azure_native/maps/v20240101preview/get_account.py +196 -0
- pulumi_azure_native/maps/v20240101preview/get_creator.py +162 -0
- pulumi_azure_native/maps/v20240101preview/get_private_endpoint_connection.py +175 -0
- pulumi_azure_native/maps/v20240101preview/list_account_keys.py +117 -0
- pulumi_azure_native/maps/v20240101preview/list_account_sas.py +117 -0
- pulumi_azure_native/maps/v20240101preview/outputs.py +1100 -0
- pulumi_azure_native/maps/v20240101preview/private_endpoint_connection.py +247 -0
- pulumi_azure_native/mobilenetwork/__init__.py +3 -0
- pulumi_azure_native/mobilenetwork/attached_data_network.py +3 -3
- pulumi_azure_native/mobilenetwork/data_network.py +3 -3
- pulumi_azure_native/mobilenetwork/diagnostics_package.py +3 -3
- pulumi_azure_native/mobilenetwork/get_attached_data_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_data_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_diagnostics_package.py +2 -2
- pulumi_azure_native/mobilenetwork/get_mobile_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_capture.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_core_control_plane.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_core_data_plane.py +2 -2
- pulumi_azure_native/mobilenetwork/get_service.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim_group.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim_policy.py +2 -2
- pulumi_azure_native/mobilenetwork/get_site.py +2 -2
- pulumi_azure_native/mobilenetwork/get_slice.py +2 -2
- pulumi_azure_native/mobilenetwork/mobile_network.py +3 -3
- pulumi_azure_native/mobilenetwork/packet_capture.py +3 -3
- pulumi_azure_native/mobilenetwork/packet_core_control_plane.py +3 -3
- pulumi_azure_native/mobilenetwork/packet_core_data_plane.py +3 -3
- pulumi_azure_native/mobilenetwork/service.py +3 -3
- pulumi_azure_native/mobilenetwork/sim.py +3 -3
- pulumi_azure_native/mobilenetwork/sim_group.py +3 -3
- pulumi_azure_native/mobilenetwork/sim_policy.py +3 -3
- pulumi_azure_native/mobilenetwork/site.py +3 -3
- pulumi_azure_native/mobilenetwork/slice.py +3 -3
- pulumi_azure_native/mobilenetwork/v20220301preview/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/diagnostics_package.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_capture.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/diagnostics_package.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_capture.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/__init__.py +36 -0
- pulumi_azure_native/mobilenetwork/v20240201/_enums.py +196 -0
- pulumi_azure_native/mobilenetwork/v20240201/_inputs.py +1910 -0
- pulumi_azure_native/mobilenetwork/v20240201/attached_data_network.py +443 -0
- pulumi_azure_native/mobilenetwork/v20240201/data_network.py +282 -0
- pulumi_azure_native/mobilenetwork/v20240201/diagnostics_package.py +215 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_attached_data_network.py +237 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_data_network.py +175 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_diagnostics_package.py +162 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_mobile_network.py +209 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_packet_capture.py +240 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_packet_core_control_plane.py +391 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_packet_core_data_plane.py +188 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_service.py +201 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_sim.py +253 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_sim_group.py +196 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_sim_policy.py +240 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_site.py +175 -0
- pulumi_azure_native/mobilenetwork/v20240201/get_slice.py +188 -0
- pulumi_azure_native/mobilenetwork/v20240201/mobile_network.py +332 -0
- pulumi_azure_native/mobilenetwork/v20240201/outputs.py +2449 -0
- pulumi_azure_native/mobilenetwork/v20240201/packet_capture.py +363 -0
- pulumi_azure_native/mobilenetwork/v20240201/packet_core_control_plane.py +708 -0
- pulumi_azure_native/mobilenetwork/v20240201/packet_core_data_plane.py +313 -0
- pulumi_azure_native/mobilenetwork/v20240201/service.py +344 -0
- pulumi_azure_native/mobilenetwork/v20240201/sim.py +422 -0
- pulumi_azure_native/mobilenetwork/v20240201/sim_group.py +321 -0
- pulumi_azure_native/mobilenetwork/v20240201/sim_policy.py +417 -0
- pulumi_azure_native/mobilenetwork/v20240201/site.py +263 -0
- pulumi_azure_native/mobilenetwork/v20240201/slice.py +313 -0
- pulumi_azure_native/recoveryservices/__init__.py +3 -0
- pulumi_azure_native/recoveryservices/get_vault.py +2 -2
- pulumi_azure_native/recoveryservices/v20200202/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/__init__.py +12 -0
- pulumi_azure_native/recoveryservices/v20240101/_enums.py +102 -0
- pulumi_azure_native/recoveryservices/v20240101/_inputs.py +652 -0
- pulumi_azure_native/recoveryservices/v20240101/get_vault.py +196 -0
- pulumi_azure_native/recoveryservices/v20240101/outputs.py +1597 -0
- pulumi_azure_native/recoveryservices/v20240101/vault.py +321 -0
- pulumi_azure_native/recoveryservices/vault.py +3 -3
- pulumi_azure_native/redhatopenshift/__init__.py +3 -0
- pulumi_azure_native/redhatopenshift/get_machine_pool.py +2 -2
- pulumi_azure_native/redhatopenshift/get_open_shift_cluster.py +2 -2
- pulumi_azure_native/redhatopenshift/get_secret.py +2 -2
- pulumi_azure_native/redhatopenshift/get_sync_identity_provider.py +2 -2
- pulumi_azure_native/redhatopenshift/get_sync_set.py +2 -2
- pulumi_azure_native/redhatopenshift/list_open_shift_cluster_admin_credentials.py +2 -2
- pulumi_azure_native/redhatopenshift/list_open_shift_cluster_credentials.py +2 -2
- pulumi_azure_native/redhatopenshift/machine_pool.py +3 -3
- pulumi_azure_native/redhatopenshift/open_shift_cluster.py +3 -3
- pulumi_azure_native/redhatopenshift/secret.py +3 -3
- pulumi_azure_native/redhatopenshift/sync_identity_provider.py +3 -3
- pulumi_azure_native/redhatopenshift/sync_set.py +3 -3
- pulumi_azure_native/redhatopenshift/v20220904/machine_pool.py +1 -1
- pulumi_azure_native/redhatopenshift/v20220904/open_shift_cluster.py +1 -1
- pulumi_azure_native/redhatopenshift/v20220904/secret.py +1 -1
- pulumi_azure_native/redhatopenshift/v20220904/sync_identity_provider.py +1 -1
- pulumi_azure_native/redhatopenshift/v20220904/sync_set.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230401/machine_pool.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230401/open_shift_cluster.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230401/secret.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230401/sync_identity_provider.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230401/sync_set.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230701preview/machine_pool.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230701preview/open_shift_cluster.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230701preview/secret.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230701preview/sync_identity_provider.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230701preview/sync_set.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230904/machine_pool.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230904/open_shift_cluster.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230904/secret.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230904/sync_identity_provider.py +1 -1
- pulumi_azure_native/redhatopenshift/v20230904/sync_set.py +1 -1
- pulumi_azure_native/redhatopenshift/v20231122/__init__.py +22 -0
- pulumi_azure_native/redhatopenshift/v20231122/_enums.py +67 -0
- pulumi_azure_native/redhatopenshift/v20231122/_inputs.py +544 -0
- pulumi_azure_native/redhatopenshift/v20231122/get_machine_pool.py +133 -0
- pulumi_azure_native/redhatopenshift/v20231122/get_open_shift_cluster.py +274 -0
- pulumi_azure_native/redhatopenshift/v20231122/get_secret.py +136 -0
- pulumi_azure_native/redhatopenshift/v20231122/get_sync_identity_provider.py +133 -0
- pulumi_azure_native/redhatopenshift/v20231122/get_sync_set.py +136 -0
- pulumi_azure_native/redhatopenshift/v20231122/list_open_shift_cluster_admin_credentials.py +78 -0
- pulumi_azure_native/redhatopenshift/v20231122/list_open_shift_cluster_credentials.py +91 -0
- pulumi_azure_native/redhatopenshift/v20231122/machine_pool.py +206 -0
- pulumi_azure_native/redhatopenshift/v20231122/open_shift_cluster.py +476 -0
- pulumi_azure_native/redhatopenshift/v20231122/outputs.py +794 -0
- pulumi_azure_native/redhatopenshift/v20231122/secret.py +214 -0
- pulumi_azure_native/redhatopenshift/v20231122/sync_identity_provider.py +206 -0
- pulumi_azure_native/redhatopenshift/v20231122/sync_set.py +214 -0
- pulumi_azure_native/standbypool/__init__.py +22 -0
- pulumi_azure_native/standbypool/_enums.py +34 -0
- pulumi_azure_native/standbypool/_inputs.py +183 -0
- pulumi_azure_native/standbypool/get_standby_container_group_pool.py +185 -0
- pulumi_azure_native/standbypool/get_standby_virtual_machine_pool.py +198 -0
- pulumi_azure_native/standbypool/outputs.py +333 -0
- pulumi_azure_native/standbypool/standby_container_group_pool.py +296 -0
- pulumi_azure_native/standbypool/standby_virtual_machine_pool.py +324 -0
- pulumi_azure_native/standbypool/v20231201preview/__init__.py +14 -0
- pulumi_azure_native/standbypool/v20231201preview/_enums.py +34 -0
- pulumi_azure_native/standbypool/v20231201preview/_inputs.py +183 -0
- pulumi_azure_native/standbypool/v20231201preview/get_standby_container_group_pool.py +183 -0
- pulumi_azure_native/standbypool/v20231201preview/get_standby_virtual_machine_pool.py +196 -0
- pulumi_azure_native/standbypool/v20231201preview/outputs.py +333 -0
- pulumi_azure_native/standbypool/v20231201preview/standby_container_group_pool.py +294 -0
- pulumi_azure_native/standbypool/v20231201preview/standby_virtual_machine_pool.py +322 -0
- {pulumi_azure_native-2.29.1a1708510433.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/METADATA +2 -3
- {pulumi_azure_native-2.29.1a1708510433.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/RECORD +695 -460
- {pulumi_azure_native-2.29.1a1708510433.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.29.1a1708510433.dist-info → pulumi_azure_native-2.29.1a1708705299.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetAccountResult',
|
|
15
|
+
'AwaitableGetAccountResult',
|
|
16
|
+
'get_account',
|
|
17
|
+
'get_account_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetAccountResult:
|
|
22
|
+
"""
|
|
23
|
+
An Azure resource which represents access to a suite of Maps REST APIs.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, id=None, identity=None, kind=None, location=None, name=None, properties=None, sku=None, system_data=None, tags=None, type=None):
|
|
26
|
+
if id and not isinstance(id, str):
|
|
27
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
28
|
+
pulumi.set(__self__, "id", id)
|
|
29
|
+
if identity and not isinstance(identity, dict):
|
|
30
|
+
raise TypeError("Expected argument 'identity' to be a dict")
|
|
31
|
+
pulumi.set(__self__, "identity", identity)
|
|
32
|
+
if kind and not isinstance(kind, str):
|
|
33
|
+
raise TypeError("Expected argument 'kind' to be a str")
|
|
34
|
+
pulumi.set(__self__, "kind", kind)
|
|
35
|
+
if location and not isinstance(location, str):
|
|
36
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
37
|
+
pulumi.set(__self__, "location", location)
|
|
38
|
+
if name and not isinstance(name, str):
|
|
39
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
40
|
+
pulumi.set(__self__, "name", name)
|
|
41
|
+
if properties and not isinstance(properties, dict):
|
|
42
|
+
raise TypeError("Expected argument 'properties' to be a dict")
|
|
43
|
+
pulumi.set(__self__, "properties", properties)
|
|
44
|
+
if sku and not isinstance(sku, dict):
|
|
45
|
+
raise TypeError("Expected argument 'sku' to be a dict")
|
|
46
|
+
pulumi.set(__self__, "sku", sku)
|
|
47
|
+
if system_data and not isinstance(system_data, dict):
|
|
48
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
49
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
50
|
+
if tags and not isinstance(tags, dict):
|
|
51
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
52
|
+
pulumi.set(__self__, "tags", tags)
|
|
53
|
+
if type and not isinstance(type, str):
|
|
54
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
55
|
+
pulumi.set(__self__, "type", type)
|
|
56
|
+
|
|
57
|
+
@property
|
|
58
|
+
@pulumi.getter
|
|
59
|
+
def id(self) -> str:
|
|
60
|
+
"""
|
|
61
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
62
|
+
"""
|
|
63
|
+
return pulumi.get(self, "id")
|
|
64
|
+
|
|
65
|
+
@property
|
|
66
|
+
@pulumi.getter
|
|
67
|
+
def identity(self) -> Optional['outputs.ManagedServiceIdentityResponse']:
|
|
68
|
+
"""
|
|
69
|
+
Managed service identity (system assigned and/or user assigned identities)
|
|
70
|
+
"""
|
|
71
|
+
return pulumi.get(self, "identity")
|
|
72
|
+
|
|
73
|
+
@property
|
|
74
|
+
@pulumi.getter
|
|
75
|
+
def kind(self) -> Optional[str]:
|
|
76
|
+
"""
|
|
77
|
+
Get or Set Kind property.
|
|
78
|
+
"""
|
|
79
|
+
return pulumi.get(self, "kind")
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
@pulumi.getter
|
|
83
|
+
def location(self) -> str:
|
|
84
|
+
"""
|
|
85
|
+
The geo-location where the resource lives
|
|
86
|
+
"""
|
|
87
|
+
return pulumi.get(self, "location")
|
|
88
|
+
|
|
89
|
+
@property
|
|
90
|
+
@pulumi.getter
|
|
91
|
+
def name(self) -> str:
|
|
92
|
+
"""
|
|
93
|
+
The name of the resource
|
|
94
|
+
"""
|
|
95
|
+
return pulumi.get(self, "name")
|
|
96
|
+
|
|
97
|
+
@property
|
|
98
|
+
@pulumi.getter
|
|
99
|
+
def properties(self) -> 'outputs.MapsAccountPropertiesResponse':
|
|
100
|
+
"""
|
|
101
|
+
The map account properties.
|
|
102
|
+
"""
|
|
103
|
+
return pulumi.get(self, "properties")
|
|
104
|
+
|
|
105
|
+
@property
|
|
106
|
+
@pulumi.getter
|
|
107
|
+
def sku(self) -> 'outputs.SkuResponse':
|
|
108
|
+
"""
|
|
109
|
+
The SKU of this account.
|
|
110
|
+
"""
|
|
111
|
+
return pulumi.get(self, "sku")
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
@pulumi.getter(name="systemData")
|
|
115
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
116
|
+
"""
|
|
117
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
118
|
+
"""
|
|
119
|
+
return pulumi.get(self, "system_data")
|
|
120
|
+
|
|
121
|
+
@property
|
|
122
|
+
@pulumi.getter
|
|
123
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
124
|
+
"""
|
|
125
|
+
Resource tags.
|
|
126
|
+
"""
|
|
127
|
+
return pulumi.get(self, "tags")
|
|
128
|
+
|
|
129
|
+
@property
|
|
130
|
+
@pulumi.getter
|
|
131
|
+
def type(self) -> str:
|
|
132
|
+
"""
|
|
133
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
134
|
+
"""
|
|
135
|
+
return pulumi.get(self, "type")
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
class AwaitableGetAccountResult(GetAccountResult):
|
|
139
|
+
# pylint: disable=using-constant-test
|
|
140
|
+
def __await__(self):
|
|
141
|
+
if False:
|
|
142
|
+
yield self
|
|
143
|
+
return GetAccountResult(
|
|
144
|
+
id=self.id,
|
|
145
|
+
identity=self.identity,
|
|
146
|
+
kind=self.kind,
|
|
147
|
+
location=self.location,
|
|
148
|
+
name=self.name,
|
|
149
|
+
properties=self.properties,
|
|
150
|
+
sku=self.sku,
|
|
151
|
+
system_data=self.system_data,
|
|
152
|
+
tags=self.tags,
|
|
153
|
+
type=self.type)
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
def get_account(account_name: Optional[str] = None,
|
|
157
|
+
resource_group_name: Optional[str] = None,
|
|
158
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAccountResult:
|
|
159
|
+
"""
|
|
160
|
+
Get a Maps Account.
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
:param str account_name: The name of the Maps Account.
|
|
164
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
165
|
+
"""
|
|
166
|
+
__args__ = dict()
|
|
167
|
+
__args__['accountName'] = account_name
|
|
168
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
169
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
170
|
+
__ret__ = pulumi.runtime.invoke('azure-native:maps/v20240101preview:getAccount', __args__, opts=opts, typ=GetAccountResult).value
|
|
171
|
+
|
|
172
|
+
return AwaitableGetAccountResult(
|
|
173
|
+
id=pulumi.get(__ret__, 'id'),
|
|
174
|
+
identity=pulumi.get(__ret__, 'identity'),
|
|
175
|
+
kind=pulumi.get(__ret__, 'kind'),
|
|
176
|
+
location=pulumi.get(__ret__, 'location'),
|
|
177
|
+
name=pulumi.get(__ret__, 'name'),
|
|
178
|
+
properties=pulumi.get(__ret__, 'properties'),
|
|
179
|
+
sku=pulumi.get(__ret__, 'sku'),
|
|
180
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
181
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
182
|
+
type=pulumi.get(__ret__, 'type'))
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
@_utilities.lift_output_func(get_account)
|
|
186
|
+
def get_account_output(account_name: Optional[pulumi.Input[str]] = None,
|
|
187
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
188
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAccountResult]:
|
|
189
|
+
"""
|
|
190
|
+
Get a Maps Account.
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
:param str account_name: The name of the Maps Account.
|
|
194
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
195
|
+
"""
|
|
196
|
+
...
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetCreatorResult',
|
|
15
|
+
'AwaitableGetCreatorResult',
|
|
16
|
+
'get_creator',
|
|
17
|
+
'get_creator_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetCreatorResult:
|
|
22
|
+
"""
|
|
23
|
+
An Azure resource which represents Maps Creator product and provides ability to manage private location data.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, id=None, location=None, name=None, properties=None, system_data=None, tags=None, type=None):
|
|
26
|
+
if id and not isinstance(id, str):
|
|
27
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
28
|
+
pulumi.set(__self__, "id", id)
|
|
29
|
+
if location and not isinstance(location, str):
|
|
30
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
31
|
+
pulumi.set(__self__, "location", location)
|
|
32
|
+
if name and not isinstance(name, str):
|
|
33
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
34
|
+
pulumi.set(__self__, "name", name)
|
|
35
|
+
if properties and not isinstance(properties, dict):
|
|
36
|
+
raise TypeError("Expected argument 'properties' to be a dict")
|
|
37
|
+
pulumi.set(__self__, "properties", properties)
|
|
38
|
+
if system_data and not isinstance(system_data, dict):
|
|
39
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
40
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
41
|
+
if tags and not isinstance(tags, dict):
|
|
42
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
43
|
+
pulumi.set(__self__, "tags", tags)
|
|
44
|
+
if type and not isinstance(type, str):
|
|
45
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
46
|
+
pulumi.set(__self__, "type", type)
|
|
47
|
+
|
|
48
|
+
@property
|
|
49
|
+
@pulumi.getter
|
|
50
|
+
def id(self) -> str:
|
|
51
|
+
"""
|
|
52
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
53
|
+
"""
|
|
54
|
+
return pulumi.get(self, "id")
|
|
55
|
+
|
|
56
|
+
@property
|
|
57
|
+
@pulumi.getter
|
|
58
|
+
def location(self) -> str:
|
|
59
|
+
"""
|
|
60
|
+
The geo-location where the resource lives
|
|
61
|
+
"""
|
|
62
|
+
return pulumi.get(self, "location")
|
|
63
|
+
|
|
64
|
+
@property
|
|
65
|
+
@pulumi.getter
|
|
66
|
+
def name(self) -> str:
|
|
67
|
+
"""
|
|
68
|
+
The name of the resource
|
|
69
|
+
"""
|
|
70
|
+
return pulumi.get(self, "name")
|
|
71
|
+
|
|
72
|
+
@property
|
|
73
|
+
@pulumi.getter
|
|
74
|
+
def properties(self) -> 'outputs.CreatorPropertiesResponse':
|
|
75
|
+
"""
|
|
76
|
+
The Creator resource properties.
|
|
77
|
+
"""
|
|
78
|
+
return pulumi.get(self, "properties")
|
|
79
|
+
|
|
80
|
+
@property
|
|
81
|
+
@pulumi.getter(name="systemData")
|
|
82
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
83
|
+
"""
|
|
84
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
85
|
+
"""
|
|
86
|
+
return pulumi.get(self, "system_data")
|
|
87
|
+
|
|
88
|
+
@property
|
|
89
|
+
@pulumi.getter
|
|
90
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
91
|
+
"""
|
|
92
|
+
Resource tags.
|
|
93
|
+
"""
|
|
94
|
+
return pulumi.get(self, "tags")
|
|
95
|
+
|
|
96
|
+
@property
|
|
97
|
+
@pulumi.getter
|
|
98
|
+
def type(self) -> str:
|
|
99
|
+
"""
|
|
100
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
101
|
+
"""
|
|
102
|
+
return pulumi.get(self, "type")
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
class AwaitableGetCreatorResult(GetCreatorResult):
|
|
106
|
+
# pylint: disable=using-constant-test
|
|
107
|
+
def __await__(self):
|
|
108
|
+
if False:
|
|
109
|
+
yield self
|
|
110
|
+
return GetCreatorResult(
|
|
111
|
+
id=self.id,
|
|
112
|
+
location=self.location,
|
|
113
|
+
name=self.name,
|
|
114
|
+
properties=self.properties,
|
|
115
|
+
system_data=self.system_data,
|
|
116
|
+
tags=self.tags,
|
|
117
|
+
type=self.type)
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
def get_creator(account_name: Optional[str] = None,
|
|
121
|
+
creator_name: Optional[str] = None,
|
|
122
|
+
resource_group_name: Optional[str] = None,
|
|
123
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCreatorResult:
|
|
124
|
+
"""
|
|
125
|
+
Get a Maps Creator resource.
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
:param str account_name: The name of the Maps Account.
|
|
129
|
+
:param str creator_name: The name of the Maps Creator instance.
|
|
130
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
131
|
+
"""
|
|
132
|
+
__args__ = dict()
|
|
133
|
+
__args__['accountName'] = account_name
|
|
134
|
+
__args__['creatorName'] = creator_name
|
|
135
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
136
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
137
|
+
__ret__ = pulumi.runtime.invoke('azure-native:maps/v20240101preview:getCreator', __args__, opts=opts, typ=GetCreatorResult).value
|
|
138
|
+
|
|
139
|
+
return AwaitableGetCreatorResult(
|
|
140
|
+
id=pulumi.get(__ret__, 'id'),
|
|
141
|
+
location=pulumi.get(__ret__, 'location'),
|
|
142
|
+
name=pulumi.get(__ret__, 'name'),
|
|
143
|
+
properties=pulumi.get(__ret__, 'properties'),
|
|
144
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
145
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
146
|
+
type=pulumi.get(__ret__, 'type'))
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
@_utilities.lift_output_func(get_creator)
|
|
150
|
+
def get_creator_output(account_name: Optional[pulumi.Input[str]] = None,
|
|
151
|
+
creator_name: Optional[pulumi.Input[str]] = None,
|
|
152
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
153
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetCreatorResult]:
|
|
154
|
+
"""
|
|
155
|
+
Get a Maps Creator resource.
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
:param str account_name: The name of the Maps Account.
|
|
159
|
+
:param str creator_name: The name of the Maps Creator instance.
|
|
160
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
161
|
+
"""
|
|
162
|
+
...
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetPrivateEndpointConnectionResult',
|
|
15
|
+
'AwaitableGetPrivateEndpointConnectionResult',
|
|
16
|
+
'get_private_endpoint_connection',
|
|
17
|
+
'get_private_endpoint_connection_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetPrivateEndpointConnectionResult:
|
|
22
|
+
"""
|
|
23
|
+
The private endpoint connection resource.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, group_ids=None, id=None, name=None, private_endpoint=None, private_link_service_connection_state=None, provisioning_state=None, system_data=None, type=None):
|
|
26
|
+
if group_ids and not isinstance(group_ids, list):
|
|
27
|
+
raise TypeError("Expected argument 'group_ids' to be a list")
|
|
28
|
+
pulumi.set(__self__, "group_ids", group_ids)
|
|
29
|
+
if id and not isinstance(id, str):
|
|
30
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
31
|
+
pulumi.set(__self__, "id", id)
|
|
32
|
+
if name and not isinstance(name, str):
|
|
33
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
34
|
+
pulumi.set(__self__, "name", name)
|
|
35
|
+
if private_endpoint and not isinstance(private_endpoint, dict):
|
|
36
|
+
raise TypeError("Expected argument 'private_endpoint' to be a dict")
|
|
37
|
+
pulumi.set(__self__, "private_endpoint", private_endpoint)
|
|
38
|
+
if private_link_service_connection_state and not isinstance(private_link_service_connection_state, dict):
|
|
39
|
+
raise TypeError("Expected argument 'private_link_service_connection_state' to be a dict")
|
|
40
|
+
pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
|
|
41
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
42
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
43
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
44
|
+
if system_data and not isinstance(system_data, dict):
|
|
45
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
46
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
47
|
+
if type and not isinstance(type, str):
|
|
48
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
49
|
+
pulumi.set(__self__, "type", type)
|
|
50
|
+
|
|
51
|
+
@property
|
|
52
|
+
@pulumi.getter(name="groupIds")
|
|
53
|
+
def group_ids(self) -> Sequence[str]:
|
|
54
|
+
"""
|
|
55
|
+
The group ids for the private endpoint resource.
|
|
56
|
+
"""
|
|
57
|
+
return pulumi.get(self, "group_ids")
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
@pulumi.getter
|
|
61
|
+
def id(self) -> str:
|
|
62
|
+
"""
|
|
63
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
64
|
+
"""
|
|
65
|
+
return pulumi.get(self, "id")
|
|
66
|
+
|
|
67
|
+
@property
|
|
68
|
+
@pulumi.getter
|
|
69
|
+
def name(self) -> str:
|
|
70
|
+
"""
|
|
71
|
+
The name of the resource
|
|
72
|
+
"""
|
|
73
|
+
return pulumi.get(self, "name")
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
@pulumi.getter(name="privateEndpoint")
|
|
77
|
+
def private_endpoint(self) -> Optional['outputs.PrivateEndpointResponse']:
|
|
78
|
+
"""
|
|
79
|
+
The private endpoint resource.
|
|
80
|
+
"""
|
|
81
|
+
return pulumi.get(self, "private_endpoint")
|
|
82
|
+
|
|
83
|
+
@property
|
|
84
|
+
@pulumi.getter(name="privateLinkServiceConnectionState")
|
|
85
|
+
def private_link_service_connection_state(self) -> 'outputs.PrivateLinkServiceConnectionStateResponse':
|
|
86
|
+
"""
|
|
87
|
+
A collection of information about the state of the connection between service consumer and provider.
|
|
88
|
+
"""
|
|
89
|
+
return pulumi.get(self, "private_link_service_connection_state")
|
|
90
|
+
|
|
91
|
+
@property
|
|
92
|
+
@pulumi.getter(name="provisioningState")
|
|
93
|
+
def provisioning_state(self) -> str:
|
|
94
|
+
"""
|
|
95
|
+
The provisioning state of the private endpoint connection resource.
|
|
96
|
+
"""
|
|
97
|
+
return pulumi.get(self, "provisioning_state")
|
|
98
|
+
|
|
99
|
+
@property
|
|
100
|
+
@pulumi.getter(name="systemData")
|
|
101
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
102
|
+
"""
|
|
103
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
104
|
+
"""
|
|
105
|
+
return pulumi.get(self, "system_data")
|
|
106
|
+
|
|
107
|
+
@property
|
|
108
|
+
@pulumi.getter
|
|
109
|
+
def type(self) -> str:
|
|
110
|
+
"""
|
|
111
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
112
|
+
"""
|
|
113
|
+
return pulumi.get(self, "type")
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
class AwaitableGetPrivateEndpointConnectionResult(GetPrivateEndpointConnectionResult):
|
|
117
|
+
# pylint: disable=using-constant-test
|
|
118
|
+
def __await__(self):
|
|
119
|
+
if False:
|
|
120
|
+
yield self
|
|
121
|
+
return GetPrivateEndpointConnectionResult(
|
|
122
|
+
group_ids=self.group_ids,
|
|
123
|
+
id=self.id,
|
|
124
|
+
name=self.name,
|
|
125
|
+
private_endpoint=self.private_endpoint,
|
|
126
|
+
private_link_service_connection_state=self.private_link_service_connection_state,
|
|
127
|
+
provisioning_state=self.provisioning_state,
|
|
128
|
+
system_data=self.system_data,
|
|
129
|
+
type=self.type)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
def get_private_endpoint_connection(account_name: Optional[str] = None,
|
|
133
|
+
private_endpoint_connection_name: Optional[str] = None,
|
|
134
|
+
resource_group_name: Optional[str] = None,
|
|
135
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPrivateEndpointConnectionResult:
|
|
136
|
+
"""
|
|
137
|
+
Gets the specified private endpoint connection associated with the Maps Account.
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
:param str account_name: The name of the Maps Account.
|
|
141
|
+
:param str private_endpoint_connection_name: The name of the Private Endpoint Connection.
|
|
142
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
143
|
+
"""
|
|
144
|
+
__args__ = dict()
|
|
145
|
+
__args__['accountName'] = account_name
|
|
146
|
+
__args__['privateEndpointConnectionName'] = private_endpoint_connection_name
|
|
147
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
148
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
149
|
+
__ret__ = pulumi.runtime.invoke('azure-native:maps/v20240101preview:getPrivateEndpointConnection', __args__, opts=opts, typ=GetPrivateEndpointConnectionResult).value
|
|
150
|
+
|
|
151
|
+
return AwaitableGetPrivateEndpointConnectionResult(
|
|
152
|
+
group_ids=pulumi.get(__ret__, 'group_ids'),
|
|
153
|
+
id=pulumi.get(__ret__, 'id'),
|
|
154
|
+
name=pulumi.get(__ret__, 'name'),
|
|
155
|
+
private_endpoint=pulumi.get(__ret__, 'private_endpoint'),
|
|
156
|
+
private_link_service_connection_state=pulumi.get(__ret__, 'private_link_service_connection_state'),
|
|
157
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
158
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
159
|
+
type=pulumi.get(__ret__, 'type'))
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
@_utilities.lift_output_func(get_private_endpoint_connection)
|
|
163
|
+
def get_private_endpoint_connection_output(account_name: Optional[pulumi.Input[str]] = None,
|
|
164
|
+
private_endpoint_connection_name: Optional[pulumi.Input[str]] = None,
|
|
165
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
166
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetPrivateEndpointConnectionResult]:
|
|
167
|
+
"""
|
|
168
|
+
Gets the specified private endpoint connection associated with the Maps Account.
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
:param str account_name: The name of the Maps Account.
|
|
172
|
+
:param str private_endpoint_connection_name: The name of the Private Endpoint Connection.
|
|
173
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
174
|
+
"""
|
|
175
|
+
...
|
|
@@ -0,0 +1,117 @@
|
|
|
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
|
+
|
|
12
|
+
__all__ = [
|
|
13
|
+
'ListAccountKeysResult',
|
|
14
|
+
'AwaitableListAccountKeysResult',
|
|
15
|
+
'list_account_keys',
|
|
16
|
+
'list_account_keys_output',
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
@pulumi.output_type
|
|
20
|
+
class ListAccountKeysResult:
|
|
21
|
+
"""
|
|
22
|
+
The set of keys which can be used to access the Maps REST APIs. Two keys are provided for key rotation without interruption.
|
|
23
|
+
"""
|
|
24
|
+
def __init__(__self__, primary_key=None, primary_key_last_updated=None, secondary_key=None, secondary_key_last_updated=None):
|
|
25
|
+
if primary_key and not isinstance(primary_key, str):
|
|
26
|
+
raise TypeError("Expected argument 'primary_key' to be a str")
|
|
27
|
+
pulumi.set(__self__, "primary_key", primary_key)
|
|
28
|
+
if primary_key_last_updated and not isinstance(primary_key_last_updated, str):
|
|
29
|
+
raise TypeError("Expected argument 'primary_key_last_updated' to be a str")
|
|
30
|
+
pulumi.set(__self__, "primary_key_last_updated", primary_key_last_updated)
|
|
31
|
+
if secondary_key and not isinstance(secondary_key, str):
|
|
32
|
+
raise TypeError("Expected argument 'secondary_key' to be a str")
|
|
33
|
+
pulumi.set(__self__, "secondary_key", secondary_key)
|
|
34
|
+
if secondary_key_last_updated and not isinstance(secondary_key_last_updated, str):
|
|
35
|
+
raise TypeError("Expected argument 'secondary_key_last_updated' to be a str")
|
|
36
|
+
pulumi.set(__self__, "secondary_key_last_updated", secondary_key_last_updated)
|
|
37
|
+
|
|
38
|
+
@property
|
|
39
|
+
@pulumi.getter(name="primaryKey")
|
|
40
|
+
def primary_key(self) -> str:
|
|
41
|
+
"""
|
|
42
|
+
The primary key for accessing the Maps REST APIs.
|
|
43
|
+
"""
|
|
44
|
+
return pulumi.get(self, "primary_key")
|
|
45
|
+
|
|
46
|
+
@property
|
|
47
|
+
@pulumi.getter(name="primaryKeyLastUpdated")
|
|
48
|
+
def primary_key_last_updated(self) -> str:
|
|
49
|
+
"""
|
|
50
|
+
The last updated date and time of the primary key.
|
|
51
|
+
"""
|
|
52
|
+
return pulumi.get(self, "primary_key_last_updated")
|
|
53
|
+
|
|
54
|
+
@property
|
|
55
|
+
@pulumi.getter(name="secondaryKey")
|
|
56
|
+
def secondary_key(self) -> str:
|
|
57
|
+
"""
|
|
58
|
+
The secondary key for accessing the Maps REST APIs.
|
|
59
|
+
"""
|
|
60
|
+
return pulumi.get(self, "secondary_key")
|
|
61
|
+
|
|
62
|
+
@property
|
|
63
|
+
@pulumi.getter(name="secondaryKeyLastUpdated")
|
|
64
|
+
def secondary_key_last_updated(self) -> str:
|
|
65
|
+
"""
|
|
66
|
+
The last updated date and time of the secondary key.
|
|
67
|
+
"""
|
|
68
|
+
return pulumi.get(self, "secondary_key_last_updated")
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
class AwaitableListAccountKeysResult(ListAccountKeysResult):
|
|
72
|
+
# pylint: disable=using-constant-test
|
|
73
|
+
def __await__(self):
|
|
74
|
+
if False:
|
|
75
|
+
yield self
|
|
76
|
+
return ListAccountKeysResult(
|
|
77
|
+
primary_key=self.primary_key,
|
|
78
|
+
primary_key_last_updated=self.primary_key_last_updated,
|
|
79
|
+
secondary_key=self.secondary_key,
|
|
80
|
+
secondary_key_last_updated=self.secondary_key_last_updated)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
def list_account_keys(account_name: Optional[str] = None,
|
|
84
|
+
resource_group_name: Optional[str] = None,
|
|
85
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableListAccountKeysResult:
|
|
86
|
+
"""
|
|
87
|
+
Get the keys to use with the Maps APIs. A key is used to authenticate and authorize access to the Maps REST APIs. Only one key is needed at a time; two are given to provide seamless key regeneration.
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
:param str account_name: The name of the Maps Account.
|
|
91
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
92
|
+
"""
|
|
93
|
+
__args__ = dict()
|
|
94
|
+
__args__['accountName'] = account_name
|
|
95
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
96
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
97
|
+
__ret__ = pulumi.runtime.invoke('azure-native:maps/v20240101preview:listAccountKeys', __args__, opts=opts, typ=ListAccountKeysResult).value
|
|
98
|
+
|
|
99
|
+
return AwaitableListAccountKeysResult(
|
|
100
|
+
primary_key=pulumi.get(__ret__, 'primary_key'),
|
|
101
|
+
primary_key_last_updated=pulumi.get(__ret__, 'primary_key_last_updated'),
|
|
102
|
+
secondary_key=pulumi.get(__ret__, 'secondary_key'),
|
|
103
|
+
secondary_key_last_updated=pulumi.get(__ret__, 'secondary_key_last_updated'))
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
@_utilities.lift_output_func(list_account_keys)
|
|
107
|
+
def list_account_keys_output(account_name: Optional[pulumi.Input[str]] = None,
|
|
108
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
109
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[ListAccountKeysResult]:
|
|
110
|
+
"""
|
|
111
|
+
Get the keys to use with the Maps APIs. A key is used to authenticate and authorize access to the Maps REST APIs. Only one key is needed at a time; two are given to provide seamless key regeneration.
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
:param str account_name: The name of the Maps Account.
|
|
115
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
116
|
+
"""
|
|
117
|
+
...
|