pulumi-azure-native 2.72.0a1731506636__py3-none-any.whl → 2.73.0a1732101729__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 +94 -0
- pulumi_azure_native/app/__init__.py +7 -0
- pulumi_azure_native/app/_enums.py +17 -0
- pulumi_azure_native/app/_inputs.py +505 -3
- pulumi_azure_native/app/app_resiliency.py +3 -3
- pulumi_azure_native/app/build.py +3 -3
- pulumi_azure_native/app/builder.py +3 -3
- pulumi_azure_native/app/certificate.py +3 -3
- pulumi_azure_native/app/connected_environment.py +3 -3
- pulumi_azure_native/app/connected_environments_certificate.py +3 -3
- pulumi_azure_native/app/connected_environments_dapr_component.py +3 -3
- pulumi_azure_native/app/connected_environments_storage.py +3 -3
- pulumi_azure_native/app/container_app.py +3 -3
- pulumi_azure_native/app/container_apps_auth_config.py +3 -3
- pulumi_azure_native/app/container_apps_session_pool.py +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 +3 -3
- pulumi_azure_native/app/dapr_subscription.py +3 -3
- pulumi_azure_native/app/dot_net_component.py +3 -3
- pulumi_azure_native/app/get_app_resiliency.py +2 -2
- pulumi_azure_native/app/get_build.py +2 -2
- pulumi_azure_native/app/get_builder.py +2 -2
- pulumi_azure_native/app/get_certificate.py +2 -2
- pulumi_azure_native/app/get_connected_environment.py +2 -2
- pulumi_azure_native/app/get_connected_environments_certificate.py +2 -2
- pulumi_azure_native/app/get_connected_environments_dapr_component.py +2 -2
- pulumi_azure_native/app/get_connected_environments_storage.py +2 -2
- pulumi_azure_native/app/get_container_app.py +2 -2
- pulumi_azure_native/app/get_container_app_auth_token.py +2 -2
- pulumi_azure_native/app/get_container_apps_auth_config.py +2 -2
- pulumi_azure_native/app/get_container_apps_session_pool.py +2 -2
- pulumi_azure_native/app/get_container_apps_source_control.py +2 -2
- pulumi_azure_native/app/get_custom_domain_verification_id.py +2 -2
- pulumi_azure_native/app/get_dapr_component.py +2 -2
- pulumi_azure_native/app/get_dapr_component_resiliency_policy.py +2 -2
- pulumi_azure_native/app/get_dapr_subscription.py +2 -2
- pulumi_azure_native/app/get_dot_net_component.py +2 -2
- pulumi_azure_native/app/get_http_route_config.py +151 -0
- pulumi_azure_native/app/get_java_component.py +2 -2
- pulumi_azure_native/app/get_job.py +2 -2
- pulumi_azure_native/app/get_logic_app.py +2 -2
- pulumi_azure_native/app/get_maintenance_configuration.py +151 -0
- pulumi_azure_native/app/get_managed_certificate.py +2 -2
- pulumi_azure_native/app/get_managed_environment.py +2 -2
- pulumi_azure_native/app/get_managed_environment_auth_token.py +2 -2
- pulumi_azure_native/app/get_managed_environment_private_endpoint_connection.py +2 -2
- pulumi_azure_native/app/get_managed_environments_storage.py +2 -2
- pulumi_azure_native/app/http_route_config.py +223 -0
- pulumi_azure_native/app/java_component.py +3 -3
- pulumi_azure_native/app/job.py +3 -3
- pulumi_azure_native/app/list_build_auth_token.py +2 -2
- pulumi_azure_native/app/list_connected_environments_dapr_component_secrets.py +2 -2
- pulumi_azure_native/app/list_container_app_custom_host_name_analysis.py +2 -2
- pulumi_azure_native/app/list_container_app_secrets.py +2 -2
- pulumi_azure_native/app/list_dapr_component_secrets.py +2 -2
- pulumi_azure_native/app/list_job_secrets.py +2 -2
- pulumi_azure_native/app/list_logic_app_workflows_connections.py +2 -2
- pulumi_azure_native/app/logic_app.py +3 -3
- pulumi_azure_native/app/maintenance_configuration.py +224 -0
- pulumi_azure_native/app/managed_certificate.py +3 -3
- pulumi_azure_native/app/managed_environment.py +3 -3
- pulumi_azure_native/app/managed_environment_private_endpoint_connection.py +3 -3
- pulumi_azure_native/app/managed_environments_storage.py +3 -3
- pulumi_azure_native/app/outputs.py +472 -2
- pulumi_azure_native/app/v20220101preview/certificate.py +1 -1
- pulumi_azure_native/app/v20220101preview/container_app.py +1 -1
- pulumi_azure_native/app/v20220101preview/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20220101preview/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20220101preview/dapr_component.py +1 -1
- pulumi_azure_native/app/v20220101preview/managed_environment.py +1 -1
- pulumi_azure_native/app/v20220101preview/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20221001/certificate.py +1 -1
- pulumi_azure_native/app/v20221001/connected_environment.py +1 -1
- pulumi_azure_native/app/v20221001/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20221001/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20221001/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20221001/container_app.py +1 -1
- pulumi_azure_native/app/v20221001/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20221001/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20221001/dapr_component.py +1 -1
- pulumi_azure_native/app/v20221001/managed_environment.py +1 -1
- pulumi_azure_native/app/v20221001/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230401preview/certificate.py +1 -1
- pulumi_azure_native/app/v20230401preview/connected_environment.py +1 -1
- pulumi_azure_native/app/v20230401preview/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20230401preview/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20230401preview/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230401preview/container_app.py +1 -1
- pulumi_azure_native/app/v20230401preview/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20230401preview/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20230401preview/dapr_component.py +1 -1
- pulumi_azure_native/app/v20230401preview/job.py +1 -1
- pulumi_azure_native/app/v20230401preview/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20230401preview/managed_environment.py +1 -1
- pulumi_azure_native/app/v20230401preview/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230501/certificate.py +1 -1
- pulumi_azure_native/app/v20230501/connected_environment.py +1 -1
- pulumi_azure_native/app/v20230501/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20230501/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20230501/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230501/container_app.py +1 -1
- pulumi_azure_native/app/v20230501/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20230501/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20230501/dapr_component.py +1 -1
- pulumi_azure_native/app/v20230501/job.py +1 -1
- pulumi_azure_native/app/v20230501/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20230501/managed_environment.py +1 -1
- pulumi_azure_native/app/v20230501/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230502preview/certificate.py +1 -1
- pulumi_azure_native/app/v20230502preview/connected_environment.py +1 -1
- pulumi_azure_native/app/v20230502preview/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20230502preview/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20230502preview/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230502preview/container_app.py +1 -1
- pulumi_azure_native/app/v20230502preview/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20230502preview/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20230502preview/dapr_component.py +1 -1
- pulumi_azure_native/app/v20230502preview/job.py +1 -1
- pulumi_azure_native/app/v20230502preview/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20230502preview/managed_environment.py +1 -1
- pulumi_azure_native/app/v20230502preview/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230801preview/app_resiliency.py +1 -1
- pulumi_azure_native/app/v20230801preview/build.py +1 -1
- pulumi_azure_native/app/v20230801preview/builder.py +1 -1
- pulumi_azure_native/app/v20230801preview/certificate.py +1 -1
- pulumi_azure_native/app/v20230801preview/connected_environment.py +1 -1
- pulumi_azure_native/app/v20230801preview/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20230801preview/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20230801preview/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20230801preview/container_app.py +1 -1
- pulumi_azure_native/app/v20230801preview/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20230801preview/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20230801preview/dapr_component.py +1 -1
- pulumi_azure_native/app/v20230801preview/dapr_component_resiliency_policy.py +1 -1
- pulumi_azure_native/app/v20230801preview/dapr_subscription.py +1 -1
- pulumi_azure_native/app/v20230801preview/job.py +1 -1
- pulumi_azure_native/app/v20230801preview/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20230801preview/managed_environment.py +1 -1
- pulumi_azure_native/app/v20230801preview/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20231102preview/app_resiliency.py +1 -1
- pulumi_azure_native/app/v20231102preview/build.py +1 -1
- pulumi_azure_native/app/v20231102preview/builder.py +1 -1
- pulumi_azure_native/app/v20231102preview/certificate.py +1 -1
- pulumi_azure_native/app/v20231102preview/connected_environment.py +1 -1
- pulumi_azure_native/app/v20231102preview/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20231102preview/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20231102preview/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20231102preview/container_app.py +1 -1
- pulumi_azure_native/app/v20231102preview/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20231102preview/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20231102preview/dapr_component.py +1 -1
- pulumi_azure_native/app/v20231102preview/dapr_component_resiliency_policy.py +1 -1
- pulumi_azure_native/app/v20231102preview/dapr_subscription.py +1 -1
- pulumi_azure_native/app/v20231102preview/dot_net_component.py +1 -1
- pulumi_azure_native/app/v20231102preview/java_component.py +1 -1
- pulumi_azure_native/app/v20231102preview/job.py +1 -1
- pulumi_azure_native/app/v20231102preview/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20231102preview/managed_environment.py +1 -1
- pulumi_azure_native/app/v20231102preview/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20240202preview/app_resiliency.py +1 -1
- pulumi_azure_native/app/v20240202preview/build.py +1 -1
- pulumi_azure_native/app/v20240202preview/builder.py +1 -1
- pulumi_azure_native/app/v20240202preview/certificate.py +1 -1
- pulumi_azure_native/app/v20240202preview/connected_environment.py +1 -1
- pulumi_azure_native/app/v20240202preview/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20240202preview/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20240202preview/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20240202preview/container_app.py +1 -1
- pulumi_azure_native/app/v20240202preview/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20240202preview/container_apps_session_pool.py +1 -1
- pulumi_azure_native/app/v20240202preview/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20240202preview/dapr_component.py +1 -1
- pulumi_azure_native/app/v20240202preview/dapr_component_resiliency_policy.py +1 -1
- pulumi_azure_native/app/v20240202preview/dapr_subscription.py +1 -1
- pulumi_azure_native/app/v20240202preview/dot_net_component.py +1 -1
- pulumi_azure_native/app/v20240202preview/java_component.py +1 -1
- pulumi_azure_native/app/v20240202preview/job.py +1 -1
- pulumi_azure_native/app/v20240202preview/logic_app.py +1 -1
- pulumi_azure_native/app/v20240202preview/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20240202preview/managed_environment.py +1 -1
- pulumi_azure_native/app/v20240202preview/managed_environment_private_endpoint_connection.py +1 -1
- pulumi_azure_native/app/v20240202preview/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20240301/certificate.py +1 -1
- pulumi_azure_native/app/v20240301/connected_environment.py +1 -1
- pulumi_azure_native/app/v20240301/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20240301/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20240301/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20240301/container_app.py +1 -1
- pulumi_azure_native/app/v20240301/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20240301/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20240301/dapr_component.py +1 -1
- pulumi_azure_native/app/v20240301/job.py +1 -1
- pulumi_azure_native/app/v20240301/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20240301/managed_environment.py +1 -1
- pulumi_azure_native/app/v20240301/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20240802preview/app_resiliency.py +1 -1
- pulumi_azure_native/app/v20240802preview/build.py +1 -1
- pulumi_azure_native/app/v20240802preview/builder.py +1 -1
- pulumi_azure_native/app/v20240802preview/certificate.py +1 -1
- pulumi_azure_native/app/v20240802preview/connected_environment.py +1 -1
- pulumi_azure_native/app/v20240802preview/connected_environments_certificate.py +1 -1
- pulumi_azure_native/app/v20240802preview/connected_environments_dapr_component.py +1 -1
- pulumi_azure_native/app/v20240802preview/connected_environments_storage.py +1 -1
- pulumi_azure_native/app/v20240802preview/container_app.py +1 -1
- pulumi_azure_native/app/v20240802preview/container_apps_auth_config.py +1 -1
- pulumi_azure_native/app/v20240802preview/container_apps_session_pool.py +1 -1
- pulumi_azure_native/app/v20240802preview/container_apps_source_control.py +1 -1
- pulumi_azure_native/app/v20240802preview/dapr_component.py +1 -1
- pulumi_azure_native/app/v20240802preview/dapr_component_resiliency_policy.py +1 -1
- pulumi_azure_native/app/v20240802preview/dapr_subscription.py +1 -1
- pulumi_azure_native/app/v20240802preview/dot_net_component.py +1 -1
- pulumi_azure_native/app/v20240802preview/java_component.py +1 -1
- pulumi_azure_native/app/v20240802preview/job.py +1 -1
- pulumi_azure_native/app/v20240802preview/logic_app.py +1 -1
- pulumi_azure_native/app/v20240802preview/managed_certificate.py +1 -1
- pulumi_azure_native/app/v20240802preview/managed_environment.py +1 -1
- pulumi_azure_native/app/v20240802preview/managed_environment_private_endpoint_connection.py +1 -1
- pulumi_azure_native/app/v20240802preview/managed_environments_storage.py +1 -1
- pulumi_azure_native/app/v20241002preview/__init__.py +70 -0
- pulumi_azure_native/app/v20241002preview/_enums.py +365 -0
- pulumi_azure_native/app/v20241002preview/_inputs.py +13872 -0
- pulumi_azure_native/app/v20241002preview/app_resiliency.py +364 -0
- pulumi_azure_native/app/v20241002preview/build.py +299 -0
- pulumi_azure_native/app/v20241002preview/builder.py +327 -0
- pulumi_azure_native/app/v20241002preview/certificate.py +279 -0
- pulumi_azure_native/app/v20241002preview/connected_environment.py +375 -0
- pulumi_azure_native/app/v20241002preview/connected_environments_certificate.py +279 -0
- pulumi_azure_native/app/v20241002preview/connected_environments_dapr_component.py +476 -0
- pulumi_azure_native/app/v20241002preview/connected_environments_storage.py +221 -0
- pulumi_azure_native/app/v20241002preview/container_app.py +609 -0
- pulumi_azure_native/app/v20241002preview/container_apps_auth_config.py +366 -0
- pulumi_azure_native/app/v20241002preview/container_apps_session_pool.py +549 -0
- pulumi_azure_native/app/v20241002preview/container_apps_source_control.py +296 -0
- pulumi_azure_native/app/v20241002preview/dapr_component.py +456 -0
- pulumi_azure_native/app/v20241002preview/dapr_component_resiliency_policy.py +269 -0
- pulumi_azure_native/app/v20241002preview/dapr_subscription.py +393 -0
- pulumi_azure_native/app/v20241002preview/dot_net_component.py +288 -0
- pulumi_azure_native/app/v20241002preview/get_app_resiliency.py +219 -0
- pulumi_azure_native/app/v20241002preview/get_build.py +233 -0
- pulumi_azure_native/app/v20241002preview/get_builder.py +213 -0
- pulumi_azure_native/app/v20241002preview/get_certificate.py +177 -0
- pulumi_azure_native/app/v20241002preview/get_connected_environment.py +255 -0
- pulumi_azure_native/app/v20241002preview/get_connected_environments_certificate.py +177 -0
- pulumi_azure_native/app/v20241002preview/get_connected_environments_dapr_component.py +289 -0
- pulumi_azure_native/app/v20241002preview/get_connected_environments_storage.py +149 -0
- pulumi_azure_native/app/v20241002preview/get_container_app.py +423 -0
- pulumi_azure_native/app/v20241002preview/get_container_app_auth_token.py +185 -0
- pulumi_azure_native/app/v20241002preview/get_container_apps_auth_config.py +219 -0
- pulumi_azure_native/app/v20241002preview/get_container_apps_session_pool.py +339 -0
- pulumi_azure_native/app/v20241002preview/get_container_apps_source_control.py +193 -0
- pulumi_azure_native/app/v20241002preview/get_custom_domain_verification_id.py +67 -0
- pulumi_azure_native/app/v20241002preview/get_dapr_component.py +261 -0
- pulumi_azure_native/app/v20241002preview/get_dapr_component_resiliency_policy.py +169 -0
- pulumi_azure_native/app/v20241002preview/get_dapr_subscription.py +233 -0
- pulumi_azure_native/app/v20241002preview/get_dot_net_component.py +191 -0
- pulumi_azure_native/app/v20241002preview/get_http_route_config.py +149 -0
- pulumi_azure_native/app/v20241002preview/get_java_component.py +149 -0
- pulumi_azure_native/app/v20241002preview/get_job.py +297 -0
- pulumi_azure_native/app/v20241002preview/get_logic_app.py +135 -0
- pulumi_azure_native/app/v20241002preview/get_maintenance_configuration.py +149 -0
- pulumi_azure_native/app/v20241002preview/get_managed_certificate.py +177 -0
- pulumi_azure_native/app/v20241002preview/get_managed_environment.py +507 -0
- pulumi_azure_native/app/v20241002preview/get_managed_environment_auth_token.py +185 -0
- pulumi_azure_native/app/v20241002preview/get_managed_environment_private_endpoint_connection.py +191 -0
- pulumi_azure_native/app/v20241002preview/get_managed_environments_storage.py +149 -0
- pulumi_azure_native/app/v20241002preview/http_route_config.py +221 -0
- pulumi_azure_native/app/v20241002preview/java_component.py +219 -0
- pulumi_azure_native/app/v20241002preview/job.py +443 -0
- pulumi_azure_native/app/v20241002preview/list_build_auth_token.py +106 -0
- pulumi_azure_native/app/v20241002preview/list_connected_environments_dapr_component_secrets.py +93 -0
- pulumi_azure_native/app/v20241002preview/list_container_app_custom_host_name_analysis.py +247 -0
- pulumi_azure_native/app/v20241002preview/list_container_app_secrets.py +87 -0
- pulumi_azure_native/app/v20241002preview/list_dapr_component_secrets.py +93 -0
- pulumi_azure_native/app/v20241002preview/list_job_secrets.py +87 -0
- pulumi_azure_native/app/v20241002preview/list_logic_app_workflows_connections.py +163 -0
- pulumi_azure_native/app/v20241002preview/logic_app.py +190 -0
- pulumi_azure_native/app/v20241002preview/maintenance_configuration.py +222 -0
- pulumi_azure_native/app/v20241002preview/managed_certificate.py +279 -0
- pulumi_azure_native/app/v20241002preview/managed_environment.py +783 -0
- pulumi_azure_native/app/v20241002preview/managed_environment_private_endpoint_connection.py +252 -0
- pulumi_azure_native/app/v20241002preview/managed_environments_storage.py +221 -0
- pulumi_azure_native/app/v20241002preview/outputs.py +12117 -0
- pulumi_azure_native/authorization/get_policy_set_definition_version.py +8 -2
- pulumi_azure_native/authorization/get_policy_set_definition_version_at_management_group.py +8 -2
- pulumi_azure_native/authorization/outputs.py +27 -1
- pulumi_azure_native/authorization/v20230401/get_policy_assignment.py +37 -3
- pulumi_azure_native/authorization/v20230401/get_policy_set_definition.py +8 -2
- pulumi_azure_native/authorization/v20230401/get_policy_set_definition_at_management_group.py +8 -2
- pulumi_azure_native/authorization/v20230401/get_policy_set_definition_version.py +8 -2
- pulumi_azure_native/authorization/v20230401/get_policy_set_definition_version_at_management_group.py +8 -2
- pulumi_azure_native/authorization/v20230401/outputs.py +27 -1
- pulumi_azure_native/authorization/v20230401/policy_assignment.py +20 -0
- pulumi_azure_native/authorization/v20240401/get_policy_assignment.py +37 -3
- pulumi_azure_native/authorization/v20240401/policy_assignment.py +20 -0
- pulumi_azure_native/authorization/v20240501/get_policy_assignment.py +37 -3
- pulumi_azure_native/authorization/v20240501/get_policy_set_definition.py +8 -2
- pulumi_azure_native/authorization/v20240501/get_policy_set_definition_at_management_group.py +8 -2
- pulumi_azure_native/authorization/v20240501/get_policy_set_definition_version.py +8 -2
- pulumi_azure_native/authorization/v20240501/get_policy_set_definition_version_at_management_group.py +8 -2
- pulumi_azure_native/authorization/v20240501/outputs.py +27 -1
- pulumi_azure_native/authorization/v20240501/policy_assignment.py +20 -0
- pulumi_azure_native/batch/v20240701/_inputs.py +6 -6
- pulumi_azure_native/batch/v20240701/outputs.py +4 -4
- pulumi_azure_native/cdn/v20240901/_inputs.py +20 -21
- pulumi_azure_native/cdn/v20240901/outputs.py +12 -13
- pulumi_azure_native/containerinstance/__init__.py +5 -0
- pulumi_azure_native/containerinstance/_inputs.py +82 -2
- pulumi_azure_native/containerinstance/cg_profile.py +823 -0
- pulumi_azure_native/containerinstance/container_group.py +3 -3
- pulumi_azure_native/containerinstance/container_group_profile.py +1 -1
- pulumi_azure_native/containerinstance/get_cg_profile.py +442 -0
- pulumi_azure_native/containerinstance/get_container_group.py +2 -2
- pulumi_azure_native/containerinstance/get_n_group.py +4 -0
- pulumi_azure_native/containerinstance/n_group.py +5 -1
- pulumi_azure_native/containerinstance/outputs.py +58 -2
- pulumi_azure_native/containerinstance/v20210301/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20210701/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20230201preview/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20230501/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20240501preview/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20240501preview/container_group_profile.py +1 -1
- pulumi_azure_native/containerinstance/v20240901preview/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20240901preview/n_group.py +1 -1
- pulumi_azure_native/containerinstance/v20241001preview/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20241101preview/__init__.py +16 -0
- pulumi_azure_native/containerinstance/v20241101preview/_enums.py +173 -0
- pulumi_azure_native/containerinstance/v20241101preview/_inputs.py +3993 -0
- pulumi_azure_native/containerinstance/v20241101preview/cg_profile.py +821 -0
- pulumi_azure_native/containerinstance/v20241101preview/container_group.py +804 -0
- pulumi_azure_native/containerinstance/v20241101preview/get_cg_profile.py +440 -0
- pulumi_azure_native/containerinstance/v20241101preview/get_container_group.py +440 -0
- pulumi_azure_native/containerinstance/v20241101preview/get_n_group.py +255 -0
- pulumi_azure_native/containerinstance/v20241101preview/n_group.py +413 -0
- pulumi_azure_native/containerinstance/v20241101preview/outputs.py +3815 -0
- pulumi_azure_native/documentdb/__init__.py +7 -0
- pulumi_azure_native/documentdb/_inputs.py +20 -0
- pulumi_azure_native/documentdb/cassandra_cluster.py +3 -3
- pulumi_azure_native/documentdb/cassandra_data_center.py +3 -3
- pulumi_azure_native/documentdb/cassandra_resource_cassandra_keyspace.py +3 -3
- pulumi_azure_native/documentdb/cassandra_resource_cassandra_table.py +3 -3
- pulumi_azure_native/documentdb/cassandra_resource_cassandra_view.py +3 -3
- pulumi_azure_native/documentdb/database_account.py +3 -3
- pulumi_azure_native/documentdb/get_cassandra_cluster.py +2 -2
- pulumi_azure_native/documentdb/get_cassandra_data_center.py +2 -2
- pulumi_azure_native/documentdb/get_cassandra_resource_cassandra_keyspace.py +2 -2
- pulumi_azure_native/documentdb/get_cassandra_resource_cassandra_table.py +2 -2
- pulumi_azure_native/documentdb/get_cassandra_resource_cassandra_view.py +2 -2
- pulumi_azure_native/documentdb/get_database_account.py +2 -2
- pulumi_azure_native/documentdb/get_graph_resource_graph.py +2 -2
- pulumi_azure_native/documentdb/get_gremlin_resource_gremlin_database.py +2 -2
- pulumi_azure_native/documentdb/get_gremlin_resource_gremlin_graph.py +2 -2
- pulumi_azure_native/documentdb/get_mongo_db_resource_mongo_db_collection.py +2 -2
- pulumi_azure_native/documentdb/get_mongo_db_resource_mongo_db_database.py +2 -2
- pulumi_azure_native/documentdb/get_mongo_db_resource_mongo_role_definition.py +2 -2
- pulumi_azure_native/documentdb/get_mongo_db_resource_mongo_user_definition.py +2 -2
- pulumi_azure_native/documentdb/get_notebook_workspace.py +2 -2
- pulumi_azure_native/documentdb/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/documentdb/get_service.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_container.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_database.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_role_assignment.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_role_definition.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_stored_procedure.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_trigger.py +2 -2
- pulumi_azure_native/documentdb/get_sql_resource_sql_user_defined_function.py +2 -2
- pulumi_azure_native/documentdb/get_table_resource_table.py +2 -2
- pulumi_azure_native/documentdb/get_table_resource_table_role_assignment.py +193 -0
- pulumi_azure_native/documentdb/get_table_resource_table_role_definition.py +179 -0
- pulumi_azure_native/documentdb/get_throughput_pool.py +2 -2
- pulumi_azure_native/documentdb/get_throughput_pool_account.py +2 -2
- pulumi_azure_native/documentdb/graph_resource_graph.py +3 -3
- pulumi_azure_native/documentdb/gremlin_resource_gremlin_database.py +3 -3
- pulumi_azure_native/documentdb/gremlin_resource_gremlin_graph.py +3 -3
- pulumi_azure_native/documentdb/list_database_account_connection_strings.py +2 -2
- pulumi_azure_native/documentdb/list_database_account_keys.py +2 -2
- pulumi_azure_native/documentdb/list_notebook_workspace_connection_info.py +2 -2
- pulumi_azure_native/documentdb/mongo_db_resource_mongo_db_collection.py +3 -3
- pulumi_azure_native/documentdb/mongo_db_resource_mongo_db_database.py +3 -3
- pulumi_azure_native/documentdb/mongo_db_resource_mongo_role_definition.py +3 -3
- pulumi_azure_native/documentdb/mongo_db_resource_mongo_user_definition.py +3 -3
- pulumi_azure_native/documentdb/notebook_workspace.py +3 -3
- pulumi_azure_native/documentdb/outputs.py +12 -0
- pulumi_azure_native/documentdb/private_endpoint_connection.py +3 -3
- pulumi_azure_native/documentdb/service.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_container.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_database.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_role_assignment.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_role_definition.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_stored_procedure.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_trigger.py +3 -3
- pulumi_azure_native/documentdb/sql_resource_sql_user_defined_function.py +3 -3
- pulumi_azure_native/documentdb/table_resource_table.py +3 -3
- pulumi_azure_native/documentdb/table_resource_table_role_assignment.py +289 -0
- pulumi_azure_native/documentdb/table_resource_table_role_definition.py +320 -0
- pulumi_azure_native/documentdb/throughput_pool.py +3 -3
- pulumi_azure_native/documentdb/throughput_pool_account.py +3 -3
- pulumi_azure_native/documentdb/v20210401preview/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20210701preview/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20230301preview/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/cassandra_resource_cassandra_view.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/graph_resource_graph.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20230415/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20230415/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20230415/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20230415/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20230415/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20230415/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20230415/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20230415/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20230415/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20230415/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230415/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230415/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20230415/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20230415/service.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20230415/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20230415/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20230915/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20230915/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20230915/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20230915/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20230915/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20230915/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20230915/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20230915/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20230915/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20230915/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230915/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230915/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20230915/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20230915/service.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20230915/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20230915/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/cassandra_resource_cassandra_view.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/graph_resource_graph.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/service.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20231115/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20231115/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20231115/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20231115/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20231115/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20231115/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20231115/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20231115/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20231115/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20231115/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20231115/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20231115/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20231115/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20231115/service.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20231115/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20231115/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/cassandra_resource_cassandra_view.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/graph_resource_graph.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/service.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/throughput_pool.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/throughput_pool_account.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/cassandra_resource_cassandra_view.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/graph_resource_graph.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/service.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/throughput_pool.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/throughput_pool_account.py +1 -1
- pulumi_azure_native/documentdb/v20240515/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20240515/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20240515/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20240515/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20240515/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20240515/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20240515/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20240515/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20240515/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20240515/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240515/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240515/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20240515/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20240515/service.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20240515/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20240515/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/cassandra_resource_cassandra_view.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/graph_resource_graph.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/service.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/throughput_pool.py +1 -1
- pulumi_azure_native/documentdb/v20240515preview/throughput_pool_account.py +1 -1
- pulumi_azure_native/documentdb/v20240815/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20240815/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20240815/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20240815/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20240815/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20240815/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20240815/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20240815/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20240815/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20240815/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240815/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240815/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20240815/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20240815/service.py +1 -1
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20240815/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20240815/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/cassandra_resource_cassandra_view.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/graph_resource_graph.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/service.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/throughput_pool.py +1 -1
- pulumi_azure_native/documentdb/v20240901preview/throughput_pool_account.py +1 -1
- pulumi_azure_native/documentdb/v20241115/cassandra_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20241115/cassandra_data_center.py +1 -1
- pulumi_azure_native/documentdb/v20241115/cassandra_resource_cassandra_keyspace.py +1 -1
- pulumi_azure_native/documentdb/v20241115/cassandra_resource_cassandra_table.py +1 -1
- pulumi_azure_native/documentdb/v20241115/database_account.py +1 -1
- pulumi_azure_native/documentdb/v20241115/gremlin_resource_gremlin_database.py +1 -1
- pulumi_azure_native/documentdb/v20241115/gremlin_resource_gremlin_graph.py +1 -1
- pulumi_azure_native/documentdb/v20241115/mongo_db_resource_mongo_db_collection.py +1 -1
- pulumi_azure_native/documentdb/v20241115/mongo_db_resource_mongo_db_database.py +1 -1
- pulumi_azure_native/documentdb/v20241115/mongo_db_resource_mongo_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20241115/mongo_db_resource_mongo_user_definition.py +1 -1
- pulumi_azure_native/documentdb/v20241115/notebook_workspace.py +1 -1
- pulumi_azure_native/documentdb/v20241115/private_endpoint_connection.py +1 -1
- pulumi_azure_native/documentdb/v20241115/service.py +1 -1
- pulumi_azure_native/documentdb/v20241115/sql_resource_sql_container.py +1 -1
- pulumi_azure_native/documentdb/v20241115/sql_resource_sql_database.py +1 -1
- pulumi_azure_native/documentdb/v20241115/sql_resource_sql_role_assignment.py +1 -1
- pulumi_azure_native/documentdb/v20241115/sql_resource_sql_role_definition.py +1 -1
- pulumi_azure_native/documentdb/v20241115/sql_resource_sql_stored_procedure.py +1 -1
- pulumi_azure_native/documentdb/v20241115/sql_resource_sql_trigger.py +1 -1
- pulumi_azure_native/documentdb/v20241115/sql_resource_sql_user_defined_function.py +1 -1
- pulumi_azure_native/documentdb/v20241115/table_resource_table.py +1 -1
- pulumi_azure_native/documentdb/v20241201preview/__init__.py +69 -0
- pulumi_azure_native/documentdb/v20241201preview/_enums.py +435 -0
- pulumi_azure_native/documentdb/v20241201preview/_inputs.py +6250 -0
- pulumi_azure_native/documentdb/v20241201preview/cassandra_cluster.py +277 -0
- pulumi_azure_native/documentdb/v20241201preview/cassandra_data_center.py +211 -0
- pulumi_azure_native/documentdb/v20241201preview/cassandra_resource_cassandra_keyspace.py +322 -0
- pulumi_azure_native/documentdb/v20241201preview/cassandra_resource_cassandra_table.py +343 -0
- pulumi_azure_native/documentdb/v20241201preview/cassandra_resource_cassandra_view.py +343 -0
- pulumi_azure_native/documentdb/v20241201preview/database_account.py +1460 -0
- pulumi_azure_native/documentdb/v20241201preview/get_cassandra_cluster.py +171 -0
- pulumi_azure_native/documentdb/v20241201preview/get_cassandra_data_center.py +135 -0
- pulumi_azure_native/documentdb/v20241201preview/get_cassandra_resource_cassandra_keyspace.py +185 -0
- pulumi_azure_native/documentdb/v20241201preview/get_cassandra_resource_cassandra_table.py +191 -0
- pulumi_azure_native/documentdb/v20241201preview/get_cassandra_resource_cassandra_view.py +191 -0
- pulumi_azure_native/documentdb/v20241201preview/get_database_account.py +829 -0
- pulumi_azure_native/documentdb/v20241201preview/get_graph_resource_graph.py +185 -0
- pulumi_azure_native/documentdb/v20241201preview/get_gremlin_resource_gremlin_database.py +185 -0
- pulumi_azure_native/documentdb/v20241201preview/get_gremlin_resource_gremlin_graph.py +191 -0
- pulumi_azure_native/documentdb/v20241201preview/get_mongo_db_resource_mongo_db_collection.py +191 -0
- pulumi_azure_native/documentdb/v20241201preview/get_mongo_db_resource_mongo_db_database.py +185 -0
- pulumi_azure_native/documentdb/v20241201preview/get_mongo_db_resource_mongo_role_definition.py +177 -0
- pulumi_azure_native/documentdb/v20241201preview/get_mongo_db_resource_mongo_user_definition.py +205 -0
- pulumi_azure_native/documentdb/v20241201preview/get_notebook_workspace.py +148 -0
- pulumi_azure_native/documentdb/v20241201preview/get_private_endpoint_connection.py +191 -0
- pulumi_azure_native/documentdb/v20241201preview/get_service.py +135 -0
- pulumi_azure_native/documentdb/v20241201preview/get_sql_resource_sql_container.py +191 -0
- pulumi_azure_native/documentdb/v20241201preview/get_sql_resource_sql_database.py +185 -0
- pulumi_azure_native/documentdb/v20241201preview/get_sql_resource_sql_role_assignment.py +162 -0
- pulumi_azure_native/documentdb/v20241201preview/get_sql_resource_sql_role_definition.py +163 -0
- pulumi_azure_native/documentdb/v20241201preview/get_sql_resource_sql_stored_procedure.py +186 -0
- pulumi_azure_native/documentdb/v20241201preview/get_sql_resource_sql_trigger.py +186 -0
- pulumi_azure_native/documentdb/v20241201preview/get_sql_resource_sql_user_defined_function.py +186 -0
- pulumi_azure_native/documentdb/v20241201preview/get_table_resource_table.py +185 -0
- pulumi_azure_native/documentdb/v20241201preview/get_table_resource_table_role_assignment.py +191 -0
- pulumi_azure_native/documentdb/v20241201preview/get_table_resource_table_role_definition.py +177 -0
- pulumi_azure_native/documentdb/v20241201preview/get_throughput_pool.py +185 -0
- pulumi_azure_native/documentdb/v20241201preview/get_throughput_pool_account.py +191 -0
- pulumi_azure_native/documentdb/v20241201preview/graph_resource_graph.py +322 -0
- pulumi_azure_native/documentdb/v20241201preview/gremlin_resource_gremlin_database.py +322 -0
- pulumi_azure_native/documentdb/v20241201preview/gremlin_resource_gremlin_graph.py +343 -0
- pulumi_azure_native/documentdb/v20241201preview/list_database_account_connection_strings.py +87 -0
- pulumi_azure_native/documentdb/v20241201preview/list_database_account_keys.py +128 -0
- pulumi_azure_native/documentdb/v20241201preview/list_notebook_workspace_connection_info.py +106 -0
- pulumi_azure_native/documentdb/v20241201preview/mongo_db_resource_mongo_db_collection.py +343 -0
- pulumi_azure_native/documentdb/v20241201preview/mongo_db_resource_mongo_db_database.py +322 -0
- pulumi_azure_native/documentdb/v20241201preview/mongo_db_resource_mongo_role_definition.py +317 -0
- pulumi_azure_native/documentdb/v20241201preview/mongo_db_resource_mongo_user_definition.py +355 -0
- pulumi_azure_native/documentdb/v20241201preview/notebook_workspace.py +199 -0
- pulumi_azure_native/documentdb/v20241201preview/outputs.py +7075 -0
- pulumi_azure_native/documentdb/v20241201preview/private_endpoint_connection.py +307 -0
- pulumi_azure_native/documentdb/v20241201preview/service.py +211 -0
- pulumi_azure_native/documentdb/v20241201preview/sql_resource_sql_container.py +343 -0
- pulumi_azure_native/documentdb/v20241201preview/sql_resource_sql_database.py +322 -0
- pulumi_azure_native/documentdb/v20241201preview/sql_resource_sql_role_assignment.py +266 -0
- pulumi_azure_native/documentdb/v20241201preview/sql_resource_sql_role_definition.py +288 -0
- pulumi_azure_native/documentdb/v20241201preview/sql_resource_sql_stored_procedure.py +358 -0
- pulumi_azure_native/documentdb/v20241201preview/sql_resource_sql_trigger.py +358 -0
- pulumi_azure_native/documentdb/v20241201preview/sql_resource_sql_user_defined_function.py +358 -0
- pulumi_azure_native/documentdb/v20241201preview/table_resource_table.py +322 -0
- pulumi_azure_native/documentdb/v20241201preview/table_resource_table_role_assignment.py +287 -0
- pulumi_azure_native/documentdb/v20241201preview/table_resource_table_role_definition.py +318 -0
- pulumi_azure_native/documentdb/v20241201preview/throughput_pool.py +266 -0
- pulumi_azure_native/documentdb/v20241201preview/throughput_pool_account.py +268 -0
- pulumi_azure_native/pulumi-plugin.json +1 -1
- pulumi_azure_native/storage/blob.py +3 -3
- pulumi_azure_native/workloads/__init__.py +5 -0
- pulumi_azure_native/workloads/_enums.py +57 -0
- pulumi_azure_native/workloads/_inputs.py +336 -0
- pulumi_azure_native/workloads/alert.py +340 -0
- pulumi_azure_native/workloads/get_alert.py +235 -0
- pulumi_azure_native/workloads/get_monitor.py +2 -2
- pulumi_azure_native/workloads/get_provider_instance.py +2 -2
- pulumi_azure_native/workloads/get_sap_landscape_monitor.py +2 -2
- pulumi_azure_native/workloads/monitor.py +3 -3
- pulumi_azure_native/workloads/outputs.py +355 -0
- pulumi_azure_native/workloads/provider_instance.py +3 -3
- pulumi_azure_native/workloads/sap_landscape_monitor.py +3 -3
- pulumi_azure_native/workloads/v20230401/monitor.py +1 -1
- pulumi_azure_native/workloads/v20230401/provider_instance.py +1 -1
- pulumi_azure_native/workloads/v20230401/sap_landscape_monitor.py +1 -1
- pulumi_azure_native/workloads/v20231001preview/monitor.py +1 -1
- pulumi_azure_native/workloads/v20231001preview/provider_instance.py +1 -1
- pulumi_azure_native/workloads/v20231001preview/sap_landscape_monitor.py +1 -1
- pulumi_azure_native/workloads/v20231201preview/monitor.py +1 -1
- pulumi_azure_native/workloads/v20231201preview/provider_instance.py +1 -1
- pulumi_azure_native/workloads/v20231201preview/sap_landscape_monitor.py +1 -1
- pulumi_azure_native/workloads/v20240201preview/__init__.py +18 -0
- pulumi_azure_native/workloads/v20240201preview/_enums.py +125 -0
- pulumi_azure_native/workloads/v20240201preview/_inputs.py +2165 -0
- pulumi_azure_native/workloads/v20240201preview/alert.py +338 -0
- pulumi_azure_native/workloads/v20240201preview/get_alert.py +233 -0
- pulumi_azure_native/workloads/v20240201preview/get_monitor.py +325 -0
- pulumi_azure_native/workloads/v20240201preview/get_provider_instance.py +191 -0
- pulumi_azure_native/workloads/v20240201preview/get_sap_landscape_monitor.py +171 -0
- pulumi_azure_native/workloads/v20240201preview/monitor.py +501 -0
- pulumi_azure_native/workloads/v20240201preview/outputs.py +1991 -0
- pulumi_azure_native/workloads/v20240201preview/provider_instance.py +251 -0
- pulumi_azure_native/workloads/v20240201preview/sap_landscape_monitor.py +239 -0
- pulumi_azure_native/workloads/v20240901/_enums.py +15 -11
- pulumi_azure_native/workloads/v20240901/_inputs.py +57 -57
- pulumi_azure_native/workloads/v20240901/get_sap_virtual_instance.py +1 -1
- pulumi_azure_native/workloads/v20240901/outputs.py +101 -131
- pulumi_azure_native/workloads/v20240901/sap_virtual_instance.py +8 -8
- {pulumi_azure_native-2.72.0a1731506636.dist-info → pulumi_azure_native-2.73.0a1732101729.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.72.0a1731506636.dist-info → pulumi_azure_native-2.73.0a1732101729.dist-info}/RECORD +782 -621
- {pulumi_azure_native-2.72.0a1731506636.dist-info → pulumi_azure_native-2.73.0a1732101729.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.72.0a1731506636.dist-info → pulumi_azure_native-2.73.0a1732101729.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,3815 @@
|
|
|
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 sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
from ._enums import *
|
|
18
|
+
|
|
19
|
+
__all__ = [
|
|
20
|
+
'ApiEntityReferenceResponse',
|
|
21
|
+
'ApplicationGatewayBackendAddressPoolResponse',
|
|
22
|
+
'ApplicationGatewayResponse',
|
|
23
|
+
'AzureFileVolumeResponse',
|
|
24
|
+
'ConfidentialComputePropertiesResponse',
|
|
25
|
+
'ContainerExecResponse',
|
|
26
|
+
'ContainerGroupDiagnosticsResponse',
|
|
27
|
+
'ContainerGroupIdentityResponse',
|
|
28
|
+
'ContainerGroupProfileStubResponse',
|
|
29
|
+
'ContainerGroupPropertiesResponseInstanceView',
|
|
30
|
+
'ContainerGroupSubnetIdResponse',
|
|
31
|
+
'ContainerHttpGetResponse',
|
|
32
|
+
'ContainerPortResponse',
|
|
33
|
+
'ContainerProbeResponse',
|
|
34
|
+
'ContainerPropertiesResponseInstanceView',
|
|
35
|
+
'ContainerResponse',
|
|
36
|
+
'ContainerStateResponse',
|
|
37
|
+
'DeploymentExtensionSpecResponse',
|
|
38
|
+
'DnsConfigurationResponse',
|
|
39
|
+
'ElasticProfileResponse',
|
|
40
|
+
'ElasticProfileResponseContainerGroupNamingPolicy',
|
|
41
|
+
'ElasticProfileResponseGuidNamingPolicy',
|
|
42
|
+
'EncryptionPropertiesResponse',
|
|
43
|
+
'EnvironmentVariableResponse',
|
|
44
|
+
'EventResponse',
|
|
45
|
+
'FileShareResponse',
|
|
46
|
+
'FileShareResponseProperties',
|
|
47
|
+
'GitRepoVolumeResponse',
|
|
48
|
+
'GpuResourceResponse',
|
|
49
|
+
'HttpHeaderResponse',
|
|
50
|
+
'IdentityAccessControlResponse',
|
|
51
|
+
'IdentityAclsResponse',
|
|
52
|
+
'ImageRegistryCredentialResponse',
|
|
53
|
+
'InitContainerDefinitionResponse',
|
|
54
|
+
'InitContainerPropertiesDefinitionResponseInstanceView',
|
|
55
|
+
'IpAddressResponse',
|
|
56
|
+
'LoadBalancerBackendAddressPoolResponse',
|
|
57
|
+
'LoadBalancerResponse',
|
|
58
|
+
'LogAnalyticsResponse',
|
|
59
|
+
'NGroupCGPropertyContainerResponse',
|
|
60
|
+
'NGroupCGPropertyContainerResponseProperties',
|
|
61
|
+
'NGroupCGPropertyVolumeResponse',
|
|
62
|
+
'NGroupContainerGroupPropertiesResponse',
|
|
63
|
+
'NGroupIdentityResponse',
|
|
64
|
+
'NetworkProfileResponse',
|
|
65
|
+
'PlacementProfileResponse',
|
|
66
|
+
'PortResponse',
|
|
67
|
+
'ResourceLimitsResponse',
|
|
68
|
+
'ResourceRequestsResponse',
|
|
69
|
+
'ResourceRequirementsResponse',
|
|
70
|
+
'SecretReferenceResponse',
|
|
71
|
+
'SecurityContextCapabilitiesDefinitionResponse',
|
|
72
|
+
'SecurityContextDefinitionResponse',
|
|
73
|
+
'StorageProfileResponse',
|
|
74
|
+
'SystemDataResponse',
|
|
75
|
+
'UpdateProfileResponse',
|
|
76
|
+
'UpdateProfileResponseRollingUpdateProfile',
|
|
77
|
+
'UserAssignedIdentitiesResponse',
|
|
78
|
+
'VolumeMountResponse',
|
|
79
|
+
'VolumeResponse',
|
|
80
|
+
]
|
|
81
|
+
|
|
82
|
+
@pulumi.output_type
|
|
83
|
+
class ApiEntityReferenceResponse(dict):
|
|
84
|
+
"""
|
|
85
|
+
The API entity reference.
|
|
86
|
+
"""
|
|
87
|
+
def __init__(__self__, *,
|
|
88
|
+
id: Optional[str] = None):
|
|
89
|
+
"""
|
|
90
|
+
The API entity reference.
|
|
91
|
+
:param str id: The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
|
|
92
|
+
"""
|
|
93
|
+
if id is not None:
|
|
94
|
+
pulumi.set(__self__, "id", id)
|
|
95
|
+
|
|
96
|
+
@property
|
|
97
|
+
@pulumi.getter
|
|
98
|
+
def id(self) -> Optional[str]:
|
|
99
|
+
"""
|
|
100
|
+
The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
|
|
101
|
+
"""
|
|
102
|
+
return pulumi.get(self, "id")
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
@pulumi.output_type
|
|
106
|
+
class ApplicationGatewayBackendAddressPoolResponse(dict):
|
|
107
|
+
"""
|
|
108
|
+
NGroups application gateway backend address pool
|
|
109
|
+
"""
|
|
110
|
+
def __init__(__self__, *,
|
|
111
|
+
resource: Optional[str] = None):
|
|
112
|
+
"""
|
|
113
|
+
NGroups application gateway backend address pool
|
|
114
|
+
:param str resource: The application gateway backend address pool ARM resource Id.
|
|
115
|
+
"""
|
|
116
|
+
if resource is not None:
|
|
117
|
+
pulumi.set(__self__, "resource", resource)
|
|
118
|
+
|
|
119
|
+
@property
|
|
120
|
+
@pulumi.getter
|
|
121
|
+
def resource(self) -> Optional[str]:
|
|
122
|
+
"""
|
|
123
|
+
The application gateway backend address pool ARM resource Id.
|
|
124
|
+
"""
|
|
125
|
+
return pulumi.get(self, "resource")
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
@pulumi.output_type
|
|
129
|
+
class ApplicationGatewayResponse(dict):
|
|
130
|
+
"""
|
|
131
|
+
Application Gateway the CG profile will use to interact with CGs in a backend pool
|
|
132
|
+
"""
|
|
133
|
+
@staticmethod
|
|
134
|
+
def __key_warning(key: str):
|
|
135
|
+
suggest = None
|
|
136
|
+
if key == "backendAddressPools":
|
|
137
|
+
suggest = "backend_address_pools"
|
|
138
|
+
|
|
139
|
+
if suggest:
|
|
140
|
+
pulumi.log.warn(f"Key '{key}' not found in ApplicationGatewayResponse. Access the value via the '{suggest}' property getter instead.")
|
|
141
|
+
|
|
142
|
+
def __getitem__(self, key: str) -> Any:
|
|
143
|
+
ApplicationGatewayResponse.__key_warning(key)
|
|
144
|
+
return super().__getitem__(key)
|
|
145
|
+
|
|
146
|
+
def get(self, key: str, default = None) -> Any:
|
|
147
|
+
ApplicationGatewayResponse.__key_warning(key)
|
|
148
|
+
return super().get(key, default)
|
|
149
|
+
|
|
150
|
+
def __init__(__self__, *,
|
|
151
|
+
backend_address_pools: Optional[Sequence['outputs.ApplicationGatewayBackendAddressPoolResponse']] = None,
|
|
152
|
+
resource: Optional[str] = None):
|
|
153
|
+
"""
|
|
154
|
+
Application Gateway the CG profile will use to interact with CGs in a backend pool
|
|
155
|
+
:param Sequence['ApplicationGatewayBackendAddressPoolResponse'] backend_address_pools: List of Application Gateway Backend Address Pools.
|
|
156
|
+
:param str resource: The Application Gateway ARM resource Id.
|
|
157
|
+
"""
|
|
158
|
+
if backend_address_pools is not None:
|
|
159
|
+
pulumi.set(__self__, "backend_address_pools", backend_address_pools)
|
|
160
|
+
if resource is not None:
|
|
161
|
+
pulumi.set(__self__, "resource", resource)
|
|
162
|
+
|
|
163
|
+
@property
|
|
164
|
+
@pulumi.getter(name="backendAddressPools")
|
|
165
|
+
def backend_address_pools(self) -> Optional[Sequence['outputs.ApplicationGatewayBackendAddressPoolResponse']]:
|
|
166
|
+
"""
|
|
167
|
+
List of Application Gateway Backend Address Pools.
|
|
168
|
+
"""
|
|
169
|
+
return pulumi.get(self, "backend_address_pools")
|
|
170
|
+
|
|
171
|
+
@property
|
|
172
|
+
@pulumi.getter
|
|
173
|
+
def resource(self) -> Optional[str]:
|
|
174
|
+
"""
|
|
175
|
+
The Application Gateway ARM resource Id.
|
|
176
|
+
"""
|
|
177
|
+
return pulumi.get(self, "resource")
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
@pulumi.output_type
|
|
181
|
+
class AzureFileVolumeResponse(dict):
|
|
182
|
+
"""
|
|
183
|
+
The properties of the Azure File volume. Azure File shares are mounted as volumes.
|
|
184
|
+
"""
|
|
185
|
+
@staticmethod
|
|
186
|
+
def __key_warning(key: str):
|
|
187
|
+
suggest = None
|
|
188
|
+
if key == "shareName":
|
|
189
|
+
suggest = "share_name"
|
|
190
|
+
elif key == "storageAccountName":
|
|
191
|
+
suggest = "storage_account_name"
|
|
192
|
+
elif key == "readOnly":
|
|
193
|
+
suggest = "read_only"
|
|
194
|
+
elif key == "storageAccountKey":
|
|
195
|
+
suggest = "storage_account_key"
|
|
196
|
+
elif key == "storageAccountKeyReference":
|
|
197
|
+
suggest = "storage_account_key_reference"
|
|
198
|
+
|
|
199
|
+
if suggest:
|
|
200
|
+
pulumi.log.warn(f"Key '{key}' not found in AzureFileVolumeResponse. Access the value via the '{suggest}' property getter instead.")
|
|
201
|
+
|
|
202
|
+
def __getitem__(self, key: str) -> Any:
|
|
203
|
+
AzureFileVolumeResponse.__key_warning(key)
|
|
204
|
+
return super().__getitem__(key)
|
|
205
|
+
|
|
206
|
+
def get(self, key: str, default = None) -> Any:
|
|
207
|
+
AzureFileVolumeResponse.__key_warning(key)
|
|
208
|
+
return super().get(key, default)
|
|
209
|
+
|
|
210
|
+
def __init__(__self__, *,
|
|
211
|
+
share_name: str,
|
|
212
|
+
storage_account_name: str,
|
|
213
|
+
read_only: Optional[bool] = None,
|
|
214
|
+
storage_account_key: Optional[str] = None,
|
|
215
|
+
storage_account_key_reference: Optional[str] = None):
|
|
216
|
+
"""
|
|
217
|
+
The properties of the Azure File volume. Azure File shares are mounted as volumes.
|
|
218
|
+
:param str share_name: The name of the Azure File share to be mounted as a volume.
|
|
219
|
+
:param str storage_account_name: The name of the storage account that contains the Azure File share.
|
|
220
|
+
:param bool read_only: The flag indicating whether the Azure File shared mounted as a volume is read-only.
|
|
221
|
+
:param str storage_account_key: The storage account access key used to access the Azure File share.
|
|
222
|
+
:param str storage_account_key_reference: The reference to the storage account access key used to access the Azure File share.
|
|
223
|
+
"""
|
|
224
|
+
pulumi.set(__self__, "share_name", share_name)
|
|
225
|
+
pulumi.set(__self__, "storage_account_name", storage_account_name)
|
|
226
|
+
if read_only is not None:
|
|
227
|
+
pulumi.set(__self__, "read_only", read_only)
|
|
228
|
+
if storage_account_key is not None:
|
|
229
|
+
pulumi.set(__self__, "storage_account_key", storage_account_key)
|
|
230
|
+
if storage_account_key_reference is not None:
|
|
231
|
+
pulumi.set(__self__, "storage_account_key_reference", storage_account_key_reference)
|
|
232
|
+
|
|
233
|
+
@property
|
|
234
|
+
@pulumi.getter(name="shareName")
|
|
235
|
+
def share_name(self) -> str:
|
|
236
|
+
"""
|
|
237
|
+
The name of the Azure File share to be mounted as a volume.
|
|
238
|
+
"""
|
|
239
|
+
return pulumi.get(self, "share_name")
|
|
240
|
+
|
|
241
|
+
@property
|
|
242
|
+
@pulumi.getter(name="storageAccountName")
|
|
243
|
+
def storage_account_name(self) -> str:
|
|
244
|
+
"""
|
|
245
|
+
The name of the storage account that contains the Azure File share.
|
|
246
|
+
"""
|
|
247
|
+
return pulumi.get(self, "storage_account_name")
|
|
248
|
+
|
|
249
|
+
@property
|
|
250
|
+
@pulumi.getter(name="readOnly")
|
|
251
|
+
def read_only(self) -> Optional[bool]:
|
|
252
|
+
"""
|
|
253
|
+
The flag indicating whether the Azure File shared mounted as a volume is read-only.
|
|
254
|
+
"""
|
|
255
|
+
return pulumi.get(self, "read_only")
|
|
256
|
+
|
|
257
|
+
@property
|
|
258
|
+
@pulumi.getter(name="storageAccountKey")
|
|
259
|
+
def storage_account_key(self) -> Optional[str]:
|
|
260
|
+
"""
|
|
261
|
+
The storage account access key used to access the Azure File share.
|
|
262
|
+
"""
|
|
263
|
+
return pulumi.get(self, "storage_account_key")
|
|
264
|
+
|
|
265
|
+
@property
|
|
266
|
+
@pulumi.getter(name="storageAccountKeyReference")
|
|
267
|
+
def storage_account_key_reference(self) -> Optional[str]:
|
|
268
|
+
"""
|
|
269
|
+
The reference to the storage account access key used to access the Azure File share.
|
|
270
|
+
"""
|
|
271
|
+
return pulumi.get(self, "storage_account_key_reference")
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
@pulumi.output_type
|
|
275
|
+
class ConfidentialComputePropertiesResponse(dict):
|
|
276
|
+
"""
|
|
277
|
+
The properties for confidential container group
|
|
278
|
+
"""
|
|
279
|
+
@staticmethod
|
|
280
|
+
def __key_warning(key: str):
|
|
281
|
+
suggest = None
|
|
282
|
+
if key == "ccePolicy":
|
|
283
|
+
suggest = "cce_policy"
|
|
284
|
+
|
|
285
|
+
if suggest:
|
|
286
|
+
pulumi.log.warn(f"Key '{key}' not found in ConfidentialComputePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
287
|
+
|
|
288
|
+
def __getitem__(self, key: str) -> Any:
|
|
289
|
+
ConfidentialComputePropertiesResponse.__key_warning(key)
|
|
290
|
+
return super().__getitem__(key)
|
|
291
|
+
|
|
292
|
+
def get(self, key: str, default = None) -> Any:
|
|
293
|
+
ConfidentialComputePropertiesResponse.__key_warning(key)
|
|
294
|
+
return super().get(key, default)
|
|
295
|
+
|
|
296
|
+
def __init__(__self__, *,
|
|
297
|
+
cce_policy: Optional[str] = None):
|
|
298
|
+
"""
|
|
299
|
+
The properties for confidential container group
|
|
300
|
+
:param str cce_policy: The base64 encoded confidential compute enforcement policy
|
|
301
|
+
"""
|
|
302
|
+
if cce_policy is not None:
|
|
303
|
+
pulumi.set(__self__, "cce_policy", cce_policy)
|
|
304
|
+
|
|
305
|
+
@property
|
|
306
|
+
@pulumi.getter(name="ccePolicy")
|
|
307
|
+
def cce_policy(self) -> Optional[str]:
|
|
308
|
+
"""
|
|
309
|
+
The base64 encoded confidential compute enforcement policy
|
|
310
|
+
"""
|
|
311
|
+
return pulumi.get(self, "cce_policy")
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
@pulumi.output_type
|
|
315
|
+
class ContainerExecResponse(dict):
|
|
316
|
+
"""
|
|
317
|
+
The container execution command, for liveness or readiness probe
|
|
318
|
+
"""
|
|
319
|
+
def __init__(__self__, *,
|
|
320
|
+
command: Optional[Sequence[str]] = None):
|
|
321
|
+
"""
|
|
322
|
+
The container execution command, for liveness or readiness probe
|
|
323
|
+
:param Sequence[str] command: The commands to execute within the container.
|
|
324
|
+
"""
|
|
325
|
+
if command is not None:
|
|
326
|
+
pulumi.set(__self__, "command", command)
|
|
327
|
+
|
|
328
|
+
@property
|
|
329
|
+
@pulumi.getter
|
|
330
|
+
def command(self) -> Optional[Sequence[str]]:
|
|
331
|
+
"""
|
|
332
|
+
The commands to execute within the container.
|
|
333
|
+
"""
|
|
334
|
+
return pulumi.get(self, "command")
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
@pulumi.output_type
|
|
338
|
+
class ContainerGroupDiagnosticsResponse(dict):
|
|
339
|
+
"""
|
|
340
|
+
Container group diagnostic information.
|
|
341
|
+
"""
|
|
342
|
+
@staticmethod
|
|
343
|
+
def __key_warning(key: str):
|
|
344
|
+
suggest = None
|
|
345
|
+
if key == "logAnalytics":
|
|
346
|
+
suggest = "log_analytics"
|
|
347
|
+
|
|
348
|
+
if suggest:
|
|
349
|
+
pulumi.log.warn(f"Key '{key}' not found in ContainerGroupDiagnosticsResponse. Access the value via the '{suggest}' property getter instead.")
|
|
350
|
+
|
|
351
|
+
def __getitem__(self, key: str) -> Any:
|
|
352
|
+
ContainerGroupDiagnosticsResponse.__key_warning(key)
|
|
353
|
+
return super().__getitem__(key)
|
|
354
|
+
|
|
355
|
+
def get(self, key: str, default = None) -> Any:
|
|
356
|
+
ContainerGroupDiagnosticsResponse.__key_warning(key)
|
|
357
|
+
return super().get(key, default)
|
|
358
|
+
|
|
359
|
+
def __init__(__self__, *,
|
|
360
|
+
log_analytics: Optional['outputs.LogAnalyticsResponse'] = None):
|
|
361
|
+
"""
|
|
362
|
+
Container group diagnostic information.
|
|
363
|
+
:param 'LogAnalyticsResponse' log_analytics: Container group log analytics information.
|
|
364
|
+
"""
|
|
365
|
+
if log_analytics is not None:
|
|
366
|
+
pulumi.set(__self__, "log_analytics", log_analytics)
|
|
367
|
+
|
|
368
|
+
@property
|
|
369
|
+
@pulumi.getter(name="logAnalytics")
|
|
370
|
+
def log_analytics(self) -> Optional['outputs.LogAnalyticsResponse']:
|
|
371
|
+
"""
|
|
372
|
+
Container group log analytics information.
|
|
373
|
+
"""
|
|
374
|
+
return pulumi.get(self, "log_analytics")
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
@pulumi.output_type
|
|
378
|
+
class ContainerGroupIdentityResponse(dict):
|
|
379
|
+
"""
|
|
380
|
+
Identity for the container group.
|
|
381
|
+
"""
|
|
382
|
+
@staticmethod
|
|
383
|
+
def __key_warning(key: str):
|
|
384
|
+
suggest = None
|
|
385
|
+
if key == "principalId":
|
|
386
|
+
suggest = "principal_id"
|
|
387
|
+
elif key == "tenantId":
|
|
388
|
+
suggest = "tenant_id"
|
|
389
|
+
elif key == "userAssignedIdentities":
|
|
390
|
+
suggest = "user_assigned_identities"
|
|
391
|
+
|
|
392
|
+
if suggest:
|
|
393
|
+
pulumi.log.warn(f"Key '{key}' not found in ContainerGroupIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
394
|
+
|
|
395
|
+
def __getitem__(self, key: str) -> Any:
|
|
396
|
+
ContainerGroupIdentityResponse.__key_warning(key)
|
|
397
|
+
return super().__getitem__(key)
|
|
398
|
+
|
|
399
|
+
def get(self, key: str, default = None) -> Any:
|
|
400
|
+
ContainerGroupIdentityResponse.__key_warning(key)
|
|
401
|
+
return super().get(key, default)
|
|
402
|
+
|
|
403
|
+
def __init__(__self__, *,
|
|
404
|
+
principal_id: str,
|
|
405
|
+
tenant_id: str,
|
|
406
|
+
type: Optional[str] = None,
|
|
407
|
+
user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentitiesResponse']] = None):
|
|
408
|
+
"""
|
|
409
|
+
Identity for the container group.
|
|
410
|
+
:param str principal_id: The principal id of the container group identity. This property will only be provided for a system assigned identity.
|
|
411
|
+
:param str tenant_id: The tenant id associated with the container group. This property will only be provided for a system assigned identity.
|
|
412
|
+
:param str type: The type of identity used for the container group. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the container group.
|
|
413
|
+
:param Mapping[str, 'UserAssignedIdentitiesResponse'] user_assigned_identities: The list of user identities associated with the container group.
|
|
414
|
+
"""
|
|
415
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
416
|
+
pulumi.set(__self__, "tenant_id", tenant_id)
|
|
417
|
+
if type is not None:
|
|
418
|
+
pulumi.set(__self__, "type", type)
|
|
419
|
+
if user_assigned_identities is not None:
|
|
420
|
+
pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
|
|
421
|
+
|
|
422
|
+
@property
|
|
423
|
+
@pulumi.getter(name="principalId")
|
|
424
|
+
def principal_id(self) -> str:
|
|
425
|
+
"""
|
|
426
|
+
The principal id of the container group identity. This property will only be provided for a system assigned identity.
|
|
427
|
+
"""
|
|
428
|
+
return pulumi.get(self, "principal_id")
|
|
429
|
+
|
|
430
|
+
@property
|
|
431
|
+
@pulumi.getter(name="tenantId")
|
|
432
|
+
def tenant_id(self) -> str:
|
|
433
|
+
"""
|
|
434
|
+
The tenant id associated with the container group. This property will only be provided for a system assigned identity.
|
|
435
|
+
"""
|
|
436
|
+
return pulumi.get(self, "tenant_id")
|
|
437
|
+
|
|
438
|
+
@property
|
|
439
|
+
@pulumi.getter
|
|
440
|
+
def type(self) -> Optional[str]:
|
|
441
|
+
"""
|
|
442
|
+
The type of identity used for the container group. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the container group.
|
|
443
|
+
"""
|
|
444
|
+
return pulumi.get(self, "type")
|
|
445
|
+
|
|
446
|
+
@property
|
|
447
|
+
@pulumi.getter(name="userAssignedIdentities")
|
|
448
|
+
def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentitiesResponse']]:
|
|
449
|
+
"""
|
|
450
|
+
The list of user identities associated with the container group.
|
|
451
|
+
"""
|
|
452
|
+
return pulumi.get(self, "user_assigned_identities")
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
@pulumi.output_type
|
|
456
|
+
class ContainerGroupProfileStubResponse(dict):
|
|
457
|
+
"""
|
|
458
|
+
The object that contains a reference to a Container Group Profile and it's other related properties.
|
|
459
|
+
"""
|
|
460
|
+
@staticmethod
|
|
461
|
+
def __key_warning(key: str):
|
|
462
|
+
suggest = None
|
|
463
|
+
if key == "containerGroupProperties":
|
|
464
|
+
suggest = "container_group_properties"
|
|
465
|
+
elif key == "networkProfile":
|
|
466
|
+
suggest = "network_profile"
|
|
467
|
+
elif key == "storageProfile":
|
|
468
|
+
suggest = "storage_profile"
|
|
469
|
+
|
|
470
|
+
if suggest:
|
|
471
|
+
pulumi.log.warn(f"Key '{key}' not found in ContainerGroupProfileStubResponse. Access the value via the '{suggest}' property getter instead.")
|
|
472
|
+
|
|
473
|
+
def __getitem__(self, key: str) -> Any:
|
|
474
|
+
ContainerGroupProfileStubResponse.__key_warning(key)
|
|
475
|
+
return super().__getitem__(key)
|
|
476
|
+
|
|
477
|
+
def get(self, key: str, default = None) -> Any:
|
|
478
|
+
ContainerGroupProfileStubResponse.__key_warning(key)
|
|
479
|
+
return super().get(key, default)
|
|
480
|
+
|
|
481
|
+
def __init__(__self__, *,
|
|
482
|
+
container_group_properties: Optional['outputs.NGroupContainerGroupPropertiesResponse'] = None,
|
|
483
|
+
network_profile: Optional['outputs.NetworkProfileResponse'] = None,
|
|
484
|
+
resource: Optional['outputs.ApiEntityReferenceResponse'] = None,
|
|
485
|
+
revision: Optional[int] = None,
|
|
486
|
+
storage_profile: Optional['outputs.StorageProfileResponse'] = None):
|
|
487
|
+
"""
|
|
488
|
+
The object that contains a reference to a Container Group Profile and it's other related properties.
|
|
489
|
+
:param 'NGroupContainerGroupPropertiesResponse' container_group_properties: Container Group properties which can be set while creating or updating the NGroups.
|
|
490
|
+
:param 'NetworkProfileResponse' network_profile: A network profile for network settings of a ContainerGroupProfile.
|
|
491
|
+
:param 'ApiEntityReferenceResponse' resource: A reference to the container group profile ARM resource hosted in ACI RP.
|
|
492
|
+
:param int revision: The revision of the CG profile is an optional property. If customer does not to provide a revision then NGroups will pickup the latest revision of CGProfile.
|
|
493
|
+
:param 'StorageProfileResponse' storage_profile: Storage profile for storage related settings of a container group profile.
|
|
494
|
+
"""
|
|
495
|
+
if container_group_properties is not None:
|
|
496
|
+
pulumi.set(__self__, "container_group_properties", container_group_properties)
|
|
497
|
+
if network_profile is not None:
|
|
498
|
+
pulumi.set(__self__, "network_profile", network_profile)
|
|
499
|
+
if resource is not None:
|
|
500
|
+
pulumi.set(__self__, "resource", resource)
|
|
501
|
+
if revision is not None:
|
|
502
|
+
pulumi.set(__self__, "revision", revision)
|
|
503
|
+
if storage_profile is not None:
|
|
504
|
+
pulumi.set(__self__, "storage_profile", storage_profile)
|
|
505
|
+
|
|
506
|
+
@property
|
|
507
|
+
@pulumi.getter(name="containerGroupProperties")
|
|
508
|
+
def container_group_properties(self) -> Optional['outputs.NGroupContainerGroupPropertiesResponse']:
|
|
509
|
+
"""
|
|
510
|
+
Container Group properties which can be set while creating or updating the NGroups.
|
|
511
|
+
"""
|
|
512
|
+
return pulumi.get(self, "container_group_properties")
|
|
513
|
+
|
|
514
|
+
@property
|
|
515
|
+
@pulumi.getter(name="networkProfile")
|
|
516
|
+
def network_profile(self) -> Optional['outputs.NetworkProfileResponse']:
|
|
517
|
+
"""
|
|
518
|
+
A network profile for network settings of a ContainerGroupProfile.
|
|
519
|
+
"""
|
|
520
|
+
return pulumi.get(self, "network_profile")
|
|
521
|
+
|
|
522
|
+
@property
|
|
523
|
+
@pulumi.getter
|
|
524
|
+
def resource(self) -> Optional['outputs.ApiEntityReferenceResponse']:
|
|
525
|
+
"""
|
|
526
|
+
A reference to the container group profile ARM resource hosted in ACI RP.
|
|
527
|
+
"""
|
|
528
|
+
return pulumi.get(self, "resource")
|
|
529
|
+
|
|
530
|
+
@property
|
|
531
|
+
@pulumi.getter
|
|
532
|
+
def revision(self) -> Optional[int]:
|
|
533
|
+
"""
|
|
534
|
+
The revision of the CG profile is an optional property. If customer does not to provide a revision then NGroups will pickup the latest revision of CGProfile.
|
|
535
|
+
"""
|
|
536
|
+
return pulumi.get(self, "revision")
|
|
537
|
+
|
|
538
|
+
@property
|
|
539
|
+
@pulumi.getter(name="storageProfile")
|
|
540
|
+
def storage_profile(self) -> Optional['outputs.StorageProfileResponse']:
|
|
541
|
+
"""
|
|
542
|
+
Storage profile for storage related settings of a container group profile.
|
|
543
|
+
"""
|
|
544
|
+
return pulumi.get(self, "storage_profile")
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
@pulumi.output_type
|
|
548
|
+
class ContainerGroupPropertiesResponseInstanceView(dict):
|
|
549
|
+
"""
|
|
550
|
+
The instance view of the container group. Only valid in response.
|
|
551
|
+
"""
|
|
552
|
+
def __init__(__self__, *,
|
|
553
|
+
events: Sequence['outputs.EventResponse'],
|
|
554
|
+
state: str):
|
|
555
|
+
"""
|
|
556
|
+
The instance view of the container group. Only valid in response.
|
|
557
|
+
:param Sequence['EventResponse'] events: The events of this container group.
|
|
558
|
+
:param str state: The state of the container group. Only valid in response.
|
|
559
|
+
"""
|
|
560
|
+
pulumi.set(__self__, "events", events)
|
|
561
|
+
pulumi.set(__self__, "state", state)
|
|
562
|
+
|
|
563
|
+
@property
|
|
564
|
+
@pulumi.getter
|
|
565
|
+
def events(self) -> Sequence['outputs.EventResponse']:
|
|
566
|
+
"""
|
|
567
|
+
The events of this container group.
|
|
568
|
+
"""
|
|
569
|
+
return pulumi.get(self, "events")
|
|
570
|
+
|
|
571
|
+
@property
|
|
572
|
+
@pulumi.getter
|
|
573
|
+
def state(self) -> str:
|
|
574
|
+
"""
|
|
575
|
+
The state of the container group. Only valid in response.
|
|
576
|
+
"""
|
|
577
|
+
return pulumi.get(self, "state")
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
@pulumi.output_type
|
|
581
|
+
class ContainerGroupSubnetIdResponse(dict):
|
|
582
|
+
"""
|
|
583
|
+
Container group subnet information.
|
|
584
|
+
"""
|
|
585
|
+
def __init__(__self__, *,
|
|
586
|
+
id: str,
|
|
587
|
+
name: Optional[str] = None):
|
|
588
|
+
"""
|
|
589
|
+
Container group subnet information.
|
|
590
|
+
:param str id: Resource ID of virtual network and subnet.
|
|
591
|
+
:param str name: Friendly name for the subnet.
|
|
592
|
+
"""
|
|
593
|
+
pulumi.set(__self__, "id", id)
|
|
594
|
+
if name is not None:
|
|
595
|
+
pulumi.set(__self__, "name", name)
|
|
596
|
+
|
|
597
|
+
@property
|
|
598
|
+
@pulumi.getter
|
|
599
|
+
def id(self) -> str:
|
|
600
|
+
"""
|
|
601
|
+
Resource ID of virtual network and subnet.
|
|
602
|
+
"""
|
|
603
|
+
return pulumi.get(self, "id")
|
|
604
|
+
|
|
605
|
+
@property
|
|
606
|
+
@pulumi.getter
|
|
607
|
+
def name(self) -> Optional[str]:
|
|
608
|
+
"""
|
|
609
|
+
Friendly name for the subnet.
|
|
610
|
+
"""
|
|
611
|
+
return pulumi.get(self, "name")
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
@pulumi.output_type
|
|
615
|
+
class ContainerHttpGetResponse(dict):
|
|
616
|
+
"""
|
|
617
|
+
The container Http Get settings, for liveness or readiness probe
|
|
618
|
+
"""
|
|
619
|
+
@staticmethod
|
|
620
|
+
def __key_warning(key: str):
|
|
621
|
+
suggest = None
|
|
622
|
+
if key == "httpHeaders":
|
|
623
|
+
suggest = "http_headers"
|
|
624
|
+
|
|
625
|
+
if suggest:
|
|
626
|
+
pulumi.log.warn(f"Key '{key}' not found in ContainerHttpGetResponse. Access the value via the '{suggest}' property getter instead.")
|
|
627
|
+
|
|
628
|
+
def __getitem__(self, key: str) -> Any:
|
|
629
|
+
ContainerHttpGetResponse.__key_warning(key)
|
|
630
|
+
return super().__getitem__(key)
|
|
631
|
+
|
|
632
|
+
def get(self, key: str, default = None) -> Any:
|
|
633
|
+
ContainerHttpGetResponse.__key_warning(key)
|
|
634
|
+
return super().get(key, default)
|
|
635
|
+
|
|
636
|
+
def __init__(__self__, *,
|
|
637
|
+
port: int,
|
|
638
|
+
http_headers: Optional[Sequence['outputs.HttpHeaderResponse']] = None,
|
|
639
|
+
path: Optional[str] = None,
|
|
640
|
+
scheme: Optional[str] = None):
|
|
641
|
+
"""
|
|
642
|
+
The container Http Get settings, for liveness or readiness probe
|
|
643
|
+
:param int port: The port number to probe.
|
|
644
|
+
:param Sequence['HttpHeaderResponse'] http_headers: The HTTP headers.
|
|
645
|
+
:param str path: The path to probe.
|
|
646
|
+
:param str scheme: The scheme.
|
|
647
|
+
"""
|
|
648
|
+
pulumi.set(__self__, "port", port)
|
|
649
|
+
if http_headers is not None:
|
|
650
|
+
pulumi.set(__self__, "http_headers", http_headers)
|
|
651
|
+
if path is not None:
|
|
652
|
+
pulumi.set(__self__, "path", path)
|
|
653
|
+
if scheme is not None:
|
|
654
|
+
pulumi.set(__self__, "scheme", scheme)
|
|
655
|
+
|
|
656
|
+
@property
|
|
657
|
+
@pulumi.getter
|
|
658
|
+
def port(self) -> int:
|
|
659
|
+
"""
|
|
660
|
+
The port number to probe.
|
|
661
|
+
"""
|
|
662
|
+
return pulumi.get(self, "port")
|
|
663
|
+
|
|
664
|
+
@property
|
|
665
|
+
@pulumi.getter(name="httpHeaders")
|
|
666
|
+
def http_headers(self) -> Optional[Sequence['outputs.HttpHeaderResponse']]:
|
|
667
|
+
"""
|
|
668
|
+
The HTTP headers.
|
|
669
|
+
"""
|
|
670
|
+
return pulumi.get(self, "http_headers")
|
|
671
|
+
|
|
672
|
+
@property
|
|
673
|
+
@pulumi.getter
|
|
674
|
+
def path(self) -> Optional[str]:
|
|
675
|
+
"""
|
|
676
|
+
The path to probe.
|
|
677
|
+
"""
|
|
678
|
+
return pulumi.get(self, "path")
|
|
679
|
+
|
|
680
|
+
@property
|
|
681
|
+
@pulumi.getter
|
|
682
|
+
def scheme(self) -> Optional[str]:
|
|
683
|
+
"""
|
|
684
|
+
The scheme.
|
|
685
|
+
"""
|
|
686
|
+
return pulumi.get(self, "scheme")
|
|
687
|
+
|
|
688
|
+
|
|
689
|
+
@pulumi.output_type
|
|
690
|
+
class ContainerPortResponse(dict):
|
|
691
|
+
"""
|
|
692
|
+
The port exposed on the container instance.
|
|
693
|
+
"""
|
|
694
|
+
def __init__(__self__, *,
|
|
695
|
+
port: int,
|
|
696
|
+
protocol: Optional[str] = None):
|
|
697
|
+
"""
|
|
698
|
+
The port exposed on the container instance.
|
|
699
|
+
:param int port: The port number exposed within the container group.
|
|
700
|
+
:param str protocol: The protocol associated with the port.
|
|
701
|
+
"""
|
|
702
|
+
pulumi.set(__self__, "port", port)
|
|
703
|
+
if protocol is not None:
|
|
704
|
+
pulumi.set(__self__, "protocol", protocol)
|
|
705
|
+
|
|
706
|
+
@property
|
|
707
|
+
@pulumi.getter
|
|
708
|
+
def port(self) -> int:
|
|
709
|
+
"""
|
|
710
|
+
The port number exposed within the container group.
|
|
711
|
+
"""
|
|
712
|
+
return pulumi.get(self, "port")
|
|
713
|
+
|
|
714
|
+
@property
|
|
715
|
+
@pulumi.getter
|
|
716
|
+
def protocol(self) -> Optional[str]:
|
|
717
|
+
"""
|
|
718
|
+
The protocol associated with the port.
|
|
719
|
+
"""
|
|
720
|
+
return pulumi.get(self, "protocol")
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
@pulumi.output_type
|
|
724
|
+
class ContainerProbeResponse(dict):
|
|
725
|
+
"""
|
|
726
|
+
The container probe, for liveness or readiness
|
|
727
|
+
"""
|
|
728
|
+
@staticmethod
|
|
729
|
+
def __key_warning(key: str):
|
|
730
|
+
suggest = None
|
|
731
|
+
if key == "exec":
|
|
732
|
+
suggest = "exec_"
|
|
733
|
+
elif key == "failureThreshold":
|
|
734
|
+
suggest = "failure_threshold"
|
|
735
|
+
elif key == "httpGet":
|
|
736
|
+
suggest = "http_get"
|
|
737
|
+
elif key == "initialDelaySeconds":
|
|
738
|
+
suggest = "initial_delay_seconds"
|
|
739
|
+
elif key == "periodSeconds":
|
|
740
|
+
suggest = "period_seconds"
|
|
741
|
+
elif key == "successThreshold":
|
|
742
|
+
suggest = "success_threshold"
|
|
743
|
+
elif key == "timeoutSeconds":
|
|
744
|
+
suggest = "timeout_seconds"
|
|
745
|
+
|
|
746
|
+
if suggest:
|
|
747
|
+
pulumi.log.warn(f"Key '{key}' not found in ContainerProbeResponse. Access the value via the '{suggest}' property getter instead.")
|
|
748
|
+
|
|
749
|
+
def __getitem__(self, key: str) -> Any:
|
|
750
|
+
ContainerProbeResponse.__key_warning(key)
|
|
751
|
+
return super().__getitem__(key)
|
|
752
|
+
|
|
753
|
+
def get(self, key: str, default = None) -> Any:
|
|
754
|
+
ContainerProbeResponse.__key_warning(key)
|
|
755
|
+
return super().get(key, default)
|
|
756
|
+
|
|
757
|
+
def __init__(__self__, *,
|
|
758
|
+
exec_: Optional['outputs.ContainerExecResponse'] = None,
|
|
759
|
+
failure_threshold: Optional[int] = None,
|
|
760
|
+
http_get: Optional['outputs.ContainerHttpGetResponse'] = None,
|
|
761
|
+
initial_delay_seconds: Optional[int] = None,
|
|
762
|
+
period_seconds: Optional[int] = None,
|
|
763
|
+
success_threshold: Optional[int] = None,
|
|
764
|
+
timeout_seconds: Optional[int] = None):
|
|
765
|
+
"""
|
|
766
|
+
The container probe, for liveness or readiness
|
|
767
|
+
:param 'ContainerExecResponse' exec_: The execution command to probe
|
|
768
|
+
:param int failure_threshold: The failure threshold.
|
|
769
|
+
:param 'ContainerHttpGetResponse' http_get: The Http Get settings to probe
|
|
770
|
+
:param int initial_delay_seconds: The initial delay seconds.
|
|
771
|
+
:param int period_seconds: The period seconds.
|
|
772
|
+
:param int success_threshold: The success threshold.
|
|
773
|
+
:param int timeout_seconds: The timeout seconds.
|
|
774
|
+
"""
|
|
775
|
+
if exec_ is not None:
|
|
776
|
+
pulumi.set(__self__, "exec_", exec_)
|
|
777
|
+
if failure_threshold is not None:
|
|
778
|
+
pulumi.set(__self__, "failure_threshold", failure_threshold)
|
|
779
|
+
if http_get is not None:
|
|
780
|
+
pulumi.set(__self__, "http_get", http_get)
|
|
781
|
+
if initial_delay_seconds is not None:
|
|
782
|
+
pulumi.set(__self__, "initial_delay_seconds", initial_delay_seconds)
|
|
783
|
+
if period_seconds is not None:
|
|
784
|
+
pulumi.set(__self__, "period_seconds", period_seconds)
|
|
785
|
+
if success_threshold is not None:
|
|
786
|
+
pulumi.set(__self__, "success_threshold", success_threshold)
|
|
787
|
+
if timeout_seconds is not None:
|
|
788
|
+
pulumi.set(__self__, "timeout_seconds", timeout_seconds)
|
|
789
|
+
|
|
790
|
+
@property
|
|
791
|
+
@pulumi.getter(name="exec")
|
|
792
|
+
def exec_(self) -> Optional['outputs.ContainerExecResponse']:
|
|
793
|
+
"""
|
|
794
|
+
The execution command to probe
|
|
795
|
+
"""
|
|
796
|
+
return pulumi.get(self, "exec_")
|
|
797
|
+
|
|
798
|
+
@property
|
|
799
|
+
@pulumi.getter(name="failureThreshold")
|
|
800
|
+
def failure_threshold(self) -> Optional[int]:
|
|
801
|
+
"""
|
|
802
|
+
The failure threshold.
|
|
803
|
+
"""
|
|
804
|
+
return pulumi.get(self, "failure_threshold")
|
|
805
|
+
|
|
806
|
+
@property
|
|
807
|
+
@pulumi.getter(name="httpGet")
|
|
808
|
+
def http_get(self) -> Optional['outputs.ContainerHttpGetResponse']:
|
|
809
|
+
"""
|
|
810
|
+
The Http Get settings to probe
|
|
811
|
+
"""
|
|
812
|
+
return pulumi.get(self, "http_get")
|
|
813
|
+
|
|
814
|
+
@property
|
|
815
|
+
@pulumi.getter(name="initialDelaySeconds")
|
|
816
|
+
def initial_delay_seconds(self) -> Optional[int]:
|
|
817
|
+
"""
|
|
818
|
+
The initial delay seconds.
|
|
819
|
+
"""
|
|
820
|
+
return pulumi.get(self, "initial_delay_seconds")
|
|
821
|
+
|
|
822
|
+
@property
|
|
823
|
+
@pulumi.getter(name="periodSeconds")
|
|
824
|
+
def period_seconds(self) -> Optional[int]:
|
|
825
|
+
"""
|
|
826
|
+
The period seconds.
|
|
827
|
+
"""
|
|
828
|
+
return pulumi.get(self, "period_seconds")
|
|
829
|
+
|
|
830
|
+
@property
|
|
831
|
+
@pulumi.getter(name="successThreshold")
|
|
832
|
+
def success_threshold(self) -> Optional[int]:
|
|
833
|
+
"""
|
|
834
|
+
The success threshold.
|
|
835
|
+
"""
|
|
836
|
+
return pulumi.get(self, "success_threshold")
|
|
837
|
+
|
|
838
|
+
@property
|
|
839
|
+
@pulumi.getter(name="timeoutSeconds")
|
|
840
|
+
def timeout_seconds(self) -> Optional[int]:
|
|
841
|
+
"""
|
|
842
|
+
The timeout seconds.
|
|
843
|
+
"""
|
|
844
|
+
return pulumi.get(self, "timeout_seconds")
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
@pulumi.output_type
|
|
848
|
+
class ContainerPropertiesResponseInstanceView(dict):
|
|
849
|
+
"""
|
|
850
|
+
The instance view of the container instance. Only valid in response.
|
|
851
|
+
"""
|
|
852
|
+
@staticmethod
|
|
853
|
+
def __key_warning(key: str):
|
|
854
|
+
suggest = None
|
|
855
|
+
if key == "currentState":
|
|
856
|
+
suggest = "current_state"
|
|
857
|
+
elif key == "previousState":
|
|
858
|
+
suggest = "previous_state"
|
|
859
|
+
elif key == "restartCount":
|
|
860
|
+
suggest = "restart_count"
|
|
861
|
+
|
|
862
|
+
if suggest:
|
|
863
|
+
pulumi.log.warn(f"Key '{key}' not found in ContainerPropertiesResponseInstanceView. Access the value via the '{suggest}' property getter instead.")
|
|
864
|
+
|
|
865
|
+
def __getitem__(self, key: str) -> Any:
|
|
866
|
+
ContainerPropertiesResponseInstanceView.__key_warning(key)
|
|
867
|
+
return super().__getitem__(key)
|
|
868
|
+
|
|
869
|
+
def get(self, key: str, default = None) -> Any:
|
|
870
|
+
ContainerPropertiesResponseInstanceView.__key_warning(key)
|
|
871
|
+
return super().get(key, default)
|
|
872
|
+
|
|
873
|
+
def __init__(__self__, *,
|
|
874
|
+
current_state: 'outputs.ContainerStateResponse',
|
|
875
|
+
events: Sequence['outputs.EventResponse'],
|
|
876
|
+
previous_state: 'outputs.ContainerStateResponse',
|
|
877
|
+
restart_count: int):
|
|
878
|
+
"""
|
|
879
|
+
The instance view of the container instance. Only valid in response.
|
|
880
|
+
:param 'ContainerStateResponse' current_state: Current container instance state.
|
|
881
|
+
:param Sequence['EventResponse'] events: The events of the container instance.
|
|
882
|
+
:param 'ContainerStateResponse' previous_state: Previous container instance state.
|
|
883
|
+
:param int restart_count: The number of times that the container instance has been restarted.
|
|
884
|
+
"""
|
|
885
|
+
pulumi.set(__self__, "current_state", current_state)
|
|
886
|
+
pulumi.set(__self__, "events", events)
|
|
887
|
+
pulumi.set(__self__, "previous_state", previous_state)
|
|
888
|
+
pulumi.set(__self__, "restart_count", restart_count)
|
|
889
|
+
|
|
890
|
+
@property
|
|
891
|
+
@pulumi.getter(name="currentState")
|
|
892
|
+
def current_state(self) -> 'outputs.ContainerStateResponse':
|
|
893
|
+
"""
|
|
894
|
+
Current container instance state.
|
|
895
|
+
"""
|
|
896
|
+
return pulumi.get(self, "current_state")
|
|
897
|
+
|
|
898
|
+
@property
|
|
899
|
+
@pulumi.getter
|
|
900
|
+
def events(self) -> Sequence['outputs.EventResponse']:
|
|
901
|
+
"""
|
|
902
|
+
The events of the container instance.
|
|
903
|
+
"""
|
|
904
|
+
return pulumi.get(self, "events")
|
|
905
|
+
|
|
906
|
+
@property
|
|
907
|
+
@pulumi.getter(name="previousState")
|
|
908
|
+
def previous_state(self) -> 'outputs.ContainerStateResponse':
|
|
909
|
+
"""
|
|
910
|
+
Previous container instance state.
|
|
911
|
+
"""
|
|
912
|
+
return pulumi.get(self, "previous_state")
|
|
913
|
+
|
|
914
|
+
@property
|
|
915
|
+
@pulumi.getter(name="restartCount")
|
|
916
|
+
def restart_count(self) -> int:
|
|
917
|
+
"""
|
|
918
|
+
The number of times that the container instance has been restarted.
|
|
919
|
+
"""
|
|
920
|
+
return pulumi.get(self, "restart_count")
|
|
921
|
+
|
|
922
|
+
|
|
923
|
+
@pulumi.output_type
|
|
924
|
+
class ContainerResponse(dict):
|
|
925
|
+
"""
|
|
926
|
+
A container instance.
|
|
927
|
+
"""
|
|
928
|
+
@staticmethod
|
|
929
|
+
def __key_warning(key: str):
|
|
930
|
+
suggest = None
|
|
931
|
+
if key == "instanceView":
|
|
932
|
+
suggest = "instance_view"
|
|
933
|
+
elif key == "environmentVariables":
|
|
934
|
+
suggest = "environment_variables"
|
|
935
|
+
elif key == "livenessProbe":
|
|
936
|
+
suggest = "liveness_probe"
|
|
937
|
+
elif key == "readinessProbe":
|
|
938
|
+
suggest = "readiness_probe"
|
|
939
|
+
elif key == "securityContext":
|
|
940
|
+
suggest = "security_context"
|
|
941
|
+
elif key == "volumeMounts":
|
|
942
|
+
suggest = "volume_mounts"
|
|
943
|
+
|
|
944
|
+
if suggest:
|
|
945
|
+
pulumi.log.warn(f"Key '{key}' not found in ContainerResponse. Access the value via the '{suggest}' property getter instead.")
|
|
946
|
+
|
|
947
|
+
def __getitem__(self, key: str) -> Any:
|
|
948
|
+
ContainerResponse.__key_warning(key)
|
|
949
|
+
return super().__getitem__(key)
|
|
950
|
+
|
|
951
|
+
def get(self, key: str, default = None) -> Any:
|
|
952
|
+
ContainerResponse.__key_warning(key)
|
|
953
|
+
return super().get(key, default)
|
|
954
|
+
|
|
955
|
+
def __init__(__self__, *,
|
|
956
|
+
image: str,
|
|
957
|
+
instance_view: 'outputs.ContainerPropertiesResponseInstanceView',
|
|
958
|
+
name: str,
|
|
959
|
+
resources: 'outputs.ResourceRequirementsResponse',
|
|
960
|
+
command: Optional[Sequence[str]] = None,
|
|
961
|
+
environment_variables: Optional[Sequence['outputs.EnvironmentVariableResponse']] = None,
|
|
962
|
+
liveness_probe: Optional['outputs.ContainerProbeResponse'] = None,
|
|
963
|
+
ports: Optional[Sequence['outputs.ContainerPortResponse']] = None,
|
|
964
|
+
readiness_probe: Optional['outputs.ContainerProbeResponse'] = None,
|
|
965
|
+
security_context: Optional['outputs.SecurityContextDefinitionResponse'] = None,
|
|
966
|
+
volume_mounts: Optional[Sequence['outputs.VolumeMountResponse']] = None):
|
|
967
|
+
"""
|
|
968
|
+
A container instance.
|
|
969
|
+
:param str image: The name of the image used to create the container instance.
|
|
970
|
+
:param 'ContainerPropertiesResponseInstanceView' instance_view: The instance view of the container instance. Only valid in response.
|
|
971
|
+
:param str name: The user-provided name of the container instance.
|
|
972
|
+
:param 'ResourceRequirementsResponse' resources: The resource requirements of the container instance.
|
|
973
|
+
:param Sequence[str] command: The commands to execute within the container instance in exec form.
|
|
974
|
+
:param Sequence['EnvironmentVariableResponse'] environment_variables: The environment variables to set in the container instance.
|
|
975
|
+
:param 'ContainerProbeResponse' liveness_probe: The liveness probe.
|
|
976
|
+
:param Sequence['ContainerPortResponse'] ports: The exposed ports on the container instance.
|
|
977
|
+
:param 'ContainerProbeResponse' readiness_probe: The readiness probe.
|
|
978
|
+
:param 'SecurityContextDefinitionResponse' security_context: The container security properties.
|
|
979
|
+
:param Sequence['VolumeMountResponse'] volume_mounts: The volume mounts available to the container instance.
|
|
980
|
+
"""
|
|
981
|
+
pulumi.set(__self__, "image", image)
|
|
982
|
+
pulumi.set(__self__, "instance_view", instance_view)
|
|
983
|
+
pulumi.set(__self__, "name", name)
|
|
984
|
+
pulumi.set(__self__, "resources", resources)
|
|
985
|
+
if command is not None:
|
|
986
|
+
pulumi.set(__self__, "command", command)
|
|
987
|
+
if environment_variables is not None:
|
|
988
|
+
pulumi.set(__self__, "environment_variables", environment_variables)
|
|
989
|
+
if liveness_probe is not None:
|
|
990
|
+
pulumi.set(__self__, "liveness_probe", liveness_probe)
|
|
991
|
+
if ports is not None:
|
|
992
|
+
pulumi.set(__self__, "ports", ports)
|
|
993
|
+
if readiness_probe is not None:
|
|
994
|
+
pulumi.set(__self__, "readiness_probe", readiness_probe)
|
|
995
|
+
if security_context is not None:
|
|
996
|
+
pulumi.set(__self__, "security_context", security_context)
|
|
997
|
+
if volume_mounts is not None:
|
|
998
|
+
pulumi.set(__self__, "volume_mounts", volume_mounts)
|
|
999
|
+
|
|
1000
|
+
@property
|
|
1001
|
+
@pulumi.getter
|
|
1002
|
+
def image(self) -> str:
|
|
1003
|
+
"""
|
|
1004
|
+
The name of the image used to create the container instance.
|
|
1005
|
+
"""
|
|
1006
|
+
return pulumi.get(self, "image")
|
|
1007
|
+
|
|
1008
|
+
@property
|
|
1009
|
+
@pulumi.getter(name="instanceView")
|
|
1010
|
+
def instance_view(self) -> 'outputs.ContainerPropertiesResponseInstanceView':
|
|
1011
|
+
"""
|
|
1012
|
+
The instance view of the container instance. Only valid in response.
|
|
1013
|
+
"""
|
|
1014
|
+
return pulumi.get(self, "instance_view")
|
|
1015
|
+
|
|
1016
|
+
@property
|
|
1017
|
+
@pulumi.getter
|
|
1018
|
+
def name(self) -> str:
|
|
1019
|
+
"""
|
|
1020
|
+
The user-provided name of the container instance.
|
|
1021
|
+
"""
|
|
1022
|
+
return pulumi.get(self, "name")
|
|
1023
|
+
|
|
1024
|
+
@property
|
|
1025
|
+
@pulumi.getter
|
|
1026
|
+
def resources(self) -> 'outputs.ResourceRequirementsResponse':
|
|
1027
|
+
"""
|
|
1028
|
+
The resource requirements of the container instance.
|
|
1029
|
+
"""
|
|
1030
|
+
return pulumi.get(self, "resources")
|
|
1031
|
+
|
|
1032
|
+
@property
|
|
1033
|
+
@pulumi.getter
|
|
1034
|
+
def command(self) -> Optional[Sequence[str]]:
|
|
1035
|
+
"""
|
|
1036
|
+
The commands to execute within the container instance in exec form.
|
|
1037
|
+
"""
|
|
1038
|
+
return pulumi.get(self, "command")
|
|
1039
|
+
|
|
1040
|
+
@property
|
|
1041
|
+
@pulumi.getter(name="environmentVariables")
|
|
1042
|
+
def environment_variables(self) -> Optional[Sequence['outputs.EnvironmentVariableResponse']]:
|
|
1043
|
+
"""
|
|
1044
|
+
The environment variables to set in the container instance.
|
|
1045
|
+
"""
|
|
1046
|
+
return pulumi.get(self, "environment_variables")
|
|
1047
|
+
|
|
1048
|
+
@property
|
|
1049
|
+
@pulumi.getter(name="livenessProbe")
|
|
1050
|
+
def liveness_probe(self) -> Optional['outputs.ContainerProbeResponse']:
|
|
1051
|
+
"""
|
|
1052
|
+
The liveness probe.
|
|
1053
|
+
"""
|
|
1054
|
+
return pulumi.get(self, "liveness_probe")
|
|
1055
|
+
|
|
1056
|
+
@property
|
|
1057
|
+
@pulumi.getter
|
|
1058
|
+
def ports(self) -> Optional[Sequence['outputs.ContainerPortResponse']]:
|
|
1059
|
+
"""
|
|
1060
|
+
The exposed ports on the container instance.
|
|
1061
|
+
"""
|
|
1062
|
+
return pulumi.get(self, "ports")
|
|
1063
|
+
|
|
1064
|
+
@property
|
|
1065
|
+
@pulumi.getter(name="readinessProbe")
|
|
1066
|
+
def readiness_probe(self) -> Optional['outputs.ContainerProbeResponse']:
|
|
1067
|
+
"""
|
|
1068
|
+
The readiness probe.
|
|
1069
|
+
"""
|
|
1070
|
+
return pulumi.get(self, "readiness_probe")
|
|
1071
|
+
|
|
1072
|
+
@property
|
|
1073
|
+
@pulumi.getter(name="securityContext")
|
|
1074
|
+
def security_context(self) -> Optional['outputs.SecurityContextDefinitionResponse']:
|
|
1075
|
+
"""
|
|
1076
|
+
The container security properties.
|
|
1077
|
+
"""
|
|
1078
|
+
return pulumi.get(self, "security_context")
|
|
1079
|
+
|
|
1080
|
+
@property
|
|
1081
|
+
@pulumi.getter(name="volumeMounts")
|
|
1082
|
+
def volume_mounts(self) -> Optional[Sequence['outputs.VolumeMountResponse']]:
|
|
1083
|
+
"""
|
|
1084
|
+
The volume mounts available to the container instance.
|
|
1085
|
+
"""
|
|
1086
|
+
return pulumi.get(self, "volume_mounts")
|
|
1087
|
+
|
|
1088
|
+
|
|
1089
|
+
@pulumi.output_type
|
|
1090
|
+
class ContainerStateResponse(dict):
|
|
1091
|
+
"""
|
|
1092
|
+
The container instance state.
|
|
1093
|
+
"""
|
|
1094
|
+
@staticmethod
|
|
1095
|
+
def __key_warning(key: str):
|
|
1096
|
+
suggest = None
|
|
1097
|
+
if key == "detailStatus":
|
|
1098
|
+
suggest = "detail_status"
|
|
1099
|
+
elif key == "exitCode":
|
|
1100
|
+
suggest = "exit_code"
|
|
1101
|
+
elif key == "finishTime":
|
|
1102
|
+
suggest = "finish_time"
|
|
1103
|
+
elif key == "startTime":
|
|
1104
|
+
suggest = "start_time"
|
|
1105
|
+
|
|
1106
|
+
if suggest:
|
|
1107
|
+
pulumi.log.warn(f"Key '{key}' not found in ContainerStateResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1108
|
+
|
|
1109
|
+
def __getitem__(self, key: str) -> Any:
|
|
1110
|
+
ContainerStateResponse.__key_warning(key)
|
|
1111
|
+
return super().__getitem__(key)
|
|
1112
|
+
|
|
1113
|
+
def get(self, key: str, default = None) -> Any:
|
|
1114
|
+
ContainerStateResponse.__key_warning(key)
|
|
1115
|
+
return super().get(key, default)
|
|
1116
|
+
|
|
1117
|
+
def __init__(__self__, *,
|
|
1118
|
+
detail_status: str,
|
|
1119
|
+
exit_code: int,
|
|
1120
|
+
finish_time: str,
|
|
1121
|
+
start_time: str,
|
|
1122
|
+
state: str):
|
|
1123
|
+
"""
|
|
1124
|
+
The container instance state.
|
|
1125
|
+
:param str detail_status: The human-readable status of the container instance state.
|
|
1126
|
+
:param int exit_code: The container instance exit codes correspond to those from the `docker run` command.
|
|
1127
|
+
:param str finish_time: The date-time when the container instance state finished.
|
|
1128
|
+
:param str start_time: The date-time when the container instance state started.
|
|
1129
|
+
:param str state: The state of the container instance.
|
|
1130
|
+
"""
|
|
1131
|
+
pulumi.set(__self__, "detail_status", detail_status)
|
|
1132
|
+
pulumi.set(__self__, "exit_code", exit_code)
|
|
1133
|
+
pulumi.set(__self__, "finish_time", finish_time)
|
|
1134
|
+
pulumi.set(__self__, "start_time", start_time)
|
|
1135
|
+
pulumi.set(__self__, "state", state)
|
|
1136
|
+
|
|
1137
|
+
@property
|
|
1138
|
+
@pulumi.getter(name="detailStatus")
|
|
1139
|
+
def detail_status(self) -> str:
|
|
1140
|
+
"""
|
|
1141
|
+
The human-readable status of the container instance state.
|
|
1142
|
+
"""
|
|
1143
|
+
return pulumi.get(self, "detail_status")
|
|
1144
|
+
|
|
1145
|
+
@property
|
|
1146
|
+
@pulumi.getter(name="exitCode")
|
|
1147
|
+
def exit_code(self) -> int:
|
|
1148
|
+
"""
|
|
1149
|
+
The container instance exit codes correspond to those from the `docker run` command.
|
|
1150
|
+
"""
|
|
1151
|
+
return pulumi.get(self, "exit_code")
|
|
1152
|
+
|
|
1153
|
+
@property
|
|
1154
|
+
@pulumi.getter(name="finishTime")
|
|
1155
|
+
def finish_time(self) -> str:
|
|
1156
|
+
"""
|
|
1157
|
+
The date-time when the container instance state finished.
|
|
1158
|
+
"""
|
|
1159
|
+
return pulumi.get(self, "finish_time")
|
|
1160
|
+
|
|
1161
|
+
@property
|
|
1162
|
+
@pulumi.getter(name="startTime")
|
|
1163
|
+
def start_time(self) -> str:
|
|
1164
|
+
"""
|
|
1165
|
+
The date-time when the container instance state started.
|
|
1166
|
+
"""
|
|
1167
|
+
return pulumi.get(self, "start_time")
|
|
1168
|
+
|
|
1169
|
+
@property
|
|
1170
|
+
@pulumi.getter
|
|
1171
|
+
def state(self) -> str:
|
|
1172
|
+
"""
|
|
1173
|
+
The state of the container instance.
|
|
1174
|
+
"""
|
|
1175
|
+
return pulumi.get(self, "state")
|
|
1176
|
+
|
|
1177
|
+
|
|
1178
|
+
@pulumi.output_type
|
|
1179
|
+
class DeploymentExtensionSpecResponse(dict):
|
|
1180
|
+
"""
|
|
1181
|
+
Extension sidecars to be added to the deployment.
|
|
1182
|
+
"""
|
|
1183
|
+
@staticmethod
|
|
1184
|
+
def __key_warning(key: str):
|
|
1185
|
+
suggest = None
|
|
1186
|
+
if key == "extensionType":
|
|
1187
|
+
suggest = "extension_type"
|
|
1188
|
+
elif key == "protectedSettings":
|
|
1189
|
+
suggest = "protected_settings"
|
|
1190
|
+
|
|
1191
|
+
if suggest:
|
|
1192
|
+
pulumi.log.warn(f"Key '{key}' not found in DeploymentExtensionSpecResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1193
|
+
|
|
1194
|
+
def __getitem__(self, key: str) -> Any:
|
|
1195
|
+
DeploymentExtensionSpecResponse.__key_warning(key)
|
|
1196
|
+
return super().__getitem__(key)
|
|
1197
|
+
|
|
1198
|
+
def get(self, key: str, default = None) -> Any:
|
|
1199
|
+
DeploymentExtensionSpecResponse.__key_warning(key)
|
|
1200
|
+
return super().get(key, default)
|
|
1201
|
+
|
|
1202
|
+
def __init__(__self__, *,
|
|
1203
|
+
extension_type: str,
|
|
1204
|
+
name: str,
|
|
1205
|
+
version: str,
|
|
1206
|
+
protected_settings: Optional[Any] = None,
|
|
1207
|
+
settings: Optional[Any] = None):
|
|
1208
|
+
"""
|
|
1209
|
+
Extension sidecars to be added to the deployment.
|
|
1210
|
+
:param str extension_type: Type of extension to be added.
|
|
1211
|
+
:param str name: Name of the extension.
|
|
1212
|
+
:param str version: Version of the extension being used.
|
|
1213
|
+
:param Any protected_settings: Protected settings for the extension.
|
|
1214
|
+
:param Any settings: Settings for the extension.
|
|
1215
|
+
"""
|
|
1216
|
+
pulumi.set(__self__, "extension_type", extension_type)
|
|
1217
|
+
pulumi.set(__self__, "name", name)
|
|
1218
|
+
pulumi.set(__self__, "version", version)
|
|
1219
|
+
if protected_settings is not None:
|
|
1220
|
+
pulumi.set(__self__, "protected_settings", protected_settings)
|
|
1221
|
+
if settings is not None:
|
|
1222
|
+
pulumi.set(__self__, "settings", settings)
|
|
1223
|
+
|
|
1224
|
+
@property
|
|
1225
|
+
@pulumi.getter(name="extensionType")
|
|
1226
|
+
def extension_type(self) -> str:
|
|
1227
|
+
"""
|
|
1228
|
+
Type of extension to be added.
|
|
1229
|
+
"""
|
|
1230
|
+
return pulumi.get(self, "extension_type")
|
|
1231
|
+
|
|
1232
|
+
@property
|
|
1233
|
+
@pulumi.getter
|
|
1234
|
+
def name(self) -> str:
|
|
1235
|
+
"""
|
|
1236
|
+
Name of the extension.
|
|
1237
|
+
"""
|
|
1238
|
+
return pulumi.get(self, "name")
|
|
1239
|
+
|
|
1240
|
+
@property
|
|
1241
|
+
@pulumi.getter
|
|
1242
|
+
def version(self) -> str:
|
|
1243
|
+
"""
|
|
1244
|
+
Version of the extension being used.
|
|
1245
|
+
"""
|
|
1246
|
+
return pulumi.get(self, "version")
|
|
1247
|
+
|
|
1248
|
+
@property
|
|
1249
|
+
@pulumi.getter(name="protectedSettings")
|
|
1250
|
+
def protected_settings(self) -> Optional[Any]:
|
|
1251
|
+
"""
|
|
1252
|
+
Protected settings for the extension.
|
|
1253
|
+
"""
|
|
1254
|
+
return pulumi.get(self, "protected_settings")
|
|
1255
|
+
|
|
1256
|
+
@property
|
|
1257
|
+
@pulumi.getter
|
|
1258
|
+
def settings(self) -> Optional[Any]:
|
|
1259
|
+
"""
|
|
1260
|
+
Settings for the extension.
|
|
1261
|
+
"""
|
|
1262
|
+
return pulumi.get(self, "settings")
|
|
1263
|
+
|
|
1264
|
+
|
|
1265
|
+
@pulumi.output_type
|
|
1266
|
+
class DnsConfigurationResponse(dict):
|
|
1267
|
+
"""
|
|
1268
|
+
DNS configuration for the container group.
|
|
1269
|
+
"""
|
|
1270
|
+
@staticmethod
|
|
1271
|
+
def __key_warning(key: str):
|
|
1272
|
+
suggest = None
|
|
1273
|
+
if key == "nameServers":
|
|
1274
|
+
suggest = "name_servers"
|
|
1275
|
+
elif key == "searchDomains":
|
|
1276
|
+
suggest = "search_domains"
|
|
1277
|
+
|
|
1278
|
+
if suggest:
|
|
1279
|
+
pulumi.log.warn(f"Key '{key}' not found in DnsConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1280
|
+
|
|
1281
|
+
def __getitem__(self, key: str) -> Any:
|
|
1282
|
+
DnsConfigurationResponse.__key_warning(key)
|
|
1283
|
+
return super().__getitem__(key)
|
|
1284
|
+
|
|
1285
|
+
def get(self, key: str, default = None) -> Any:
|
|
1286
|
+
DnsConfigurationResponse.__key_warning(key)
|
|
1287
|
+
return super().get(key, default)
|
|
1288
|
+
|
|
1289
|
+
def __init__(__self__, *,
|
|
1290
|
+
name_servers: Sequence[str],
|
|
1291
|
+
options: Optional[str] = None,
|
|
1292
|
+
search_domains: Optional[str] = None):
|
|
1293
|
+
"""
|
|
1294
|
+
DNS configuration for the container group.
|
|
1295
|
+
:param Sequence[str] name_servers: The DNS servers for the container group.
|
|
1296
|
+
:param str options: The DNS options for the container group.
|
|
1297
|
+
:param str search_domains: The DNS search domains for hostname lookup in the container group.
|
|
1298
|
+
"""
|
|
1299
|
+
pulumi.set(__self__, "name_servers", name_servers)
|
|
1300
|
+
if options is not None:
|
|
1301
|
+
pulumi.set(__self__, "options", options)
|
|
1302
|
+
if search_domains is not None:
|
|
1303
|
+
pulumi.set(__self__, "search_domains", search_domains)
|
|
1304
|
+
|
|
1305
|
+
@property
|
|
1306
|
+
@pulumi.getter(name="nameServers")
|
|
1307
|
+
def name_servers(self) -> Sequence[str]:
|
|
1308
|
+
"""
|
|
1309
|
+
The DNS servers for the container group.
|
|
1310
|
+
"""
|
|
1311
|
+
return pulumi.get(self, "name_servers")
|
|
1312
|
+
|
|
1313
|
+
@property
|
|
1314
|
+
@pulumi.getter
|
|
1315
|
+
def options(self) -> Optional[str]:
|
|
1316
|
+
"""
|
|
1317
|
+
The DNS options for the container group.
|
|
1318
|
+
"""
|
|
1319
|
+
return pulumi.get(self, "options")
|
|
1320
|
+
|
|
1321
|
+
@property
|
|
1322
|
+
@pulumi.getter(name="searchDomains")
|
|
1323
|
+
def search_domains(self) -> Optional[str]:
|
|
1324
|
+
"""
|
|
1325
|
+
The DNS search domains for hostname lookup in the container group.
|
|
1326
|
+
"""
|
|
1327
|
+
return pulumi.get(self, "search_domains")
|
|
1328
|
+
|
|
1329
|
+
|
|
1330
|
+
@pulumi.output_type
|
|
1331
|
+
class ElasticProfileResponse(dict):
|
|
1332
|
+
"""
|
|
1333
|
+
Describes the elastic profile of the NGroup
|
|
1334
|
+
"""
|
|
1335
|
+
@staticmethod
|
|
1336
|
+
def __key_warning(key: str):
|
|
1337
|
+
suggest = None
|
|
1338
|
+
if key == "containerGroupNamingPolicy":
|
|
1339
|
+
suggest = "container_group_naming_policy"
|
|
1340
|
+
elif key == "desiredCount":
|
|
1341
|
+
suggest = "desired_count"
|
|
1342
|
+
elif key == "maintainDesiredCount":
|
|
1343
|
+
suggest = "maintain_desired_count"
|
|
1344
|
+
|
|
1345
|
+
if suggest:
|
|
1346
|
+
pulumi.log.warn(f"Key '{key}' not found in ElasticProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1347
|
+
|
|
1348
|
+
def __getitem__(self, key: str) -> Any:
|
|
1349
|
+
ElasticProfileResponse.__key_warning(key)
|
|
1350
|
+
return super().__getitem__(key)
|
|
1351
|
+
|
|
1352
|
+
def get(self, key: str, default = None) -> Any:
|
|
1353
|
+
ElasticProfileResponse.__key_warning(key)
|
|
1354
|
+
return super().get(key, default)
|
|
1355
|
+
|
|
1356
|
+
def __init__(__self__, *,
|
|
1357
|
+
container_group_naming_policy: Optional['outputs.ElasticProfileResponseContainerGroupNamingPolicy'] = None,
|
|
1358
|
+
desired_count: Optional[int] = None,
|
|
1359
|
+
maintain_desired_count: Optional[bool] = None):
|
|
1360
|
+
"""
|
|
1361
|
+
Describes the elastic profile of the NGroup
|
|
1362
|
+
:param 'ElasticProfileResponseContainerGroupNamingPolicy' container_group_naming_policy: Container Groups are named on a generic guid based naming scheme/policy. Customer can modify naming policy to add prefix to CG names during scale out operation.
|
|
1363
|
+
:param bool maintain_desired_count: Flag that indicates whether desiredCount should be maintained when customer deletes SPECIFIC container groups (CGs) from the NGroups. In this case, new CGs will be created by NGroup to compensate for the specific deleted ones.
|
|
1364
|
+
"""
|
|
1365
|
+
if container_group_naming_policy is not None:
|
|
1366
|
+
pulumi.set(__self__, "container_group_naming_policy", container_group_naming_policy)
|
|
1367
|
+
if desired_count is not None:
|
|
1368
|
+
pulumi.set(__self__, "desired_count", desired_count)
|
|
1369
|
+
if maintain_desired_count is not None:
|
|
1370
|
+
pulumi.set(__self__, "maintain_desired_count", maintain_desired_count)
|
|
1371
|
+
|
|
1372
|
+
@property
|
|
1373
|
+
@pulumi.getter(name="containerGroupNamingPolicy")
|
|
1374
|
+
def container_group_naming_policy(self) -> Optional['outputs.ElasticProfileResponseContainerGroupNamingPolicy']:
|
|
1375
|
+
"""
|
|
1376
|
+
Container Groups are named on a generic guid based naming scheme/policy. Customer can modify naming policy to add prefix to CG names during scale out operation.
|
|
1377
|
+
"""
|
|
1378
|
+
return pulumi.get(self, "container_group_naming_policy")
|
|
1379
|
+
|
|
1380
|
+
@property
|
|
1381
|
+
@pulumi.getter(name="desiredCount")
|
|
1382
|
+
def desired_count(self) -> Optional[int]:
|
|
1383
|
+
return pulumi.get(self, "desired_count")
|
|
1384
|
+
|
|
1385
|
+
@property
|
|
1386
|
+
@pulumi.getter(name="maintainDesiredCount")
|
|
1387
|
+
def maintain_desired_count(self) -> Optional[bool]:
|
|
1388
|
+
"""
|
|
1389
|
+
Flag that indicates whether desiredCount should be maintained when customer deletes SPECIFIC container groups (CGs) from the NGroups. In this case, new CGs will be created by NGroup to compensate for the specific deleted ones.
|
|
1390
|
+
"""
|
|
1391
|
+
return pulumi.get(self, "maintain_desired_count")
|
|
1392
|
+
|
|
1393
|
+
|
|
1394
|
+
@pulumi.output_type
|
|
1395
|
+
class ElasticProfileResponseContainerGroupNamingPolicy(dict):
|
|
1396
|
+
"""
|
|
1397
|
+
Container Groups are named on a generic guid based naming scheme/policy. Customer can modify naming policy to add prefix to CG names during scale out operation.
|
|
1398
|
+
"""
|
|
1399
|
+
@staticmethod
|
|
1400
|
+
def __key_warning(key: str):
|
|
1401
|
+
suggest = None
|
|
1402
|
+
if key == "guidNamingPolicy":
|
|
1403
|
+
suggest = "guid_naming_policy"
|
|
1404
|
+
|
|
1405
|
+
if suggest:
|
|
1406
|
+
pulumi.log.warn(f"Key '{key}' not found in ElasticProfileResponseContainerGroupNamingPolicy. Access the value via the '{suggest}' property getter instead.")
|
|
1407
|
+
|
|
1408
|
+
def __getitem__(self, key: str) -> Any:
|
|
1409
|
+
ElasticProfileResponseContainerGroupNamingPolicy.__key_warning(key)
|
|
1410
|
+
return super().__getitem__(key)
|
|
1411
|
+
|
|
1412
|
+
def get(self, key: str, default = None) -> Any:
|
|
1413
|
+
ElasticProfileResponseContainerGroupNamingPolicy.__key_warning(key)
|
|
1414
|
+
return super().get(key, default)
|
|
1415
|
+
|
|
1416
|
+
def __init__(__self__, *,
|
|
1417
|
+
guid_naming_policy: Optional['outputs.ElasticProfileResponseGuidNamingPolicy'] = None):
|
|
1418
|
+
"""
|
|
1419
|
+
Container Groups are named on a generic guid based naming scheme/policy. Customer can modify naming policy to add prefix to CG names during scale out operation.
|
|
1420
|
+
"""
|
|
1421
|
+
if guid_naming_policy is not None:
|
|
1422
|
+
pulumi.set(__self__, "guid_naming_policy", guid_naming_policy)
|
|
1423
|
+
|
|
1424
|
+
@property
|
|
1425
|
+
@pulumi.getter(name="guidNamingPolicy")
|
|
1426
|
+
def guid_naming_policy(self) -> Optional['outputs.ElasticProfileResponseGuidNamingPolicy']:
|
|
1427
|
+
return pulumi.get(self, "guid_naming_policy")
|
|
1428
|
+
|
|
1429
|
+
|
|
1430
|
+
@pulumi.output_type
|
|
1431
|
+
class ElasticProfileResponseGuidNamingPolicy(dict):
|
|
1432
|
+
def __init__(__self__, *,
|
|
1433
|
+
prefix: Optional[str] = None):
|
|
1434
|
+
"""
|
|
1435
|
+
:param str prefix: The prefix can be used when there are tooling limitations (e.g. on the Azure portal where CGs from multiple NGroups exist in the same RG). The prefix with the suffixed resource name must still follow Azure resource naming guidelines.
|
|
1436
|
+
"""
|
|
1437
|
+
if prefix is not None:
|
|
1438
|
+
pulumi.set(__self__, "prefix", prefix)
|
|
1439
|
+
|
|
1440
|
+
@property
|
|
1441
|
+
@pulumi.getter
|
|
1442
|
+
def prefix(self) -> Optional[str]:
|
|
1443
|
+
"""
|
|
1444
|
+
The prefix can be used when there are tooling limitations (e.g. on the Azure portal where CGs from multiple NGroups exist in the same RG). The prefix with the suffixed resource name must still follow Azure resource naming guidelines.
|
|
1445
|
+
"""
|
|
1446
|
+
return pulumi.get(self, "prefix")
|
|
1447
|
+
|
|
1448
|
+
|
|
1449
|
+
@pulumi.output_type
|
|
1450
|
+
class EncryptionPropertiesResponse(dict):
|
|
1451
|
+
"""
|
|
1452
|
+
The container group encryption properties.
|
|
1453
|
+
"""
|
|
1454
|
+
@staticmethod
|
|
1455
|
+
def __key_warning(key: str):
|
|
1456
|
+
suggest = None
|
|
1457
|
+
if key == "keyName":
|
|
1458
|
+
suggest = "key_name"
|
|
1459
|
+
elif key == "keyVersion":
|
|
1460
|
+
suggest = "key_version"
|
|
1461
|
+
elif key == "vaultBaseUrl":
|
|
1462
|
+
suggest = "vault_base_url"
|
|
1463
|
+
|
|
1464
|
+
if suggest:
|
|
1465
|
+
pulumi.log.warn(f"Key '{key}' not found in EncryptionPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1466
|
+
|
|
1467
|
+
def __getitem__(self, key: str) -> Any:
|
|
1468
|
+
EncryptionPropertiesResponse.__key_warning(key)
|
|
1469
|
+
return super().__getitem__(key)
|
|
1470
|
+
|
|
1471
|
+
def get(self, key: str, default = None) -> Any:
|
|
1472
|
+
EncryptionPropertiesResponse.__key_warning(key)
|
|
1473
|
+
return super().get(key, default)
|
|
1474
|
+
|
|
1475
|
+
def __init__(__self__, *,
|
|
1476
|
+
key_name: str,
|
|
1477
|
+
key_version: str,
|
|
1478
|
+
vault_base_url: str,
|
|
1479
|
+
identity: Optional[str] = None):
|
|
1480
|
+
"""
|
|
1481
|
+
The container group encryption properties.
|
|
1482
|
+
:param str key_name: The encryption key name.
|
|
1483
|
+
:param str key_version: The encryption key version.
|
|
1484
|
+
:param str vault_base_url: The keyvault base url.
|
|
1485
|
+
:param str identity: The keyvault managed identity.
|
|
1486
|
+
"""
|
|
1487
|
+
pulumi.set(__self__, "key_name", key_name)
|
|
1488
|
+
pulumi.set(__self__, "key_version", key_version)
|
|
1489
|
+
pulumi.set(__self__, "vault_base_url", vault_base_url)
|
|
1490
|
+
if identity is not None:
|
|
1491
|
+
pulumi.set(__self__, "identity", identity)
|
|
1492
|
+
|
|
1493
|
+
@property
|
|
1494
|
+
@pulumi.getter(name="keyName")
|
|
1495
|
+
def key_name(self) -> str:
|
|
1496
|
+
"""
|
|
1497
|
+
The encryption key name.
|
|
1498
|
+
"""
|
|
1499
|
+
return pulumi.get(self, "key_name")
|
|
1500
|
+
|
|
1501
|
+
@property
|
|
1502
|
+
@pulumi.getter(name="keyVersion")
|
|
1503
|
+
def key_version(self) -> str:
|
|
1504
|
+
"""
|
|
1505
|
+
The encryption key version.
|
|
1506
|
+
"""
|
|
1507
|
+
return pulumi.get(self, "key_version")
|
|
1508
|
+
|
|
1509
|
+
@property
|
|
1510
|
+
@pulumi.getter(name="vaultBaseUrl")
|
|
1511
|
+
def vault_base_url(self) -> str:
|
|
1512
|
+
"""
|
|
1513
|
+
The keyvault base url.
|
|
1514
|
+
"""
|
|
1515
|
+
return pulumi.get(self, "vault_base_url")
|
|
1516
|
+
|
|
1517
|
+
@property
|
|
1518
|
+
@pulumi.getter
|
|
1519
|
+
def identity(self) -> Optional[str]:
|
|
1520
|
+
"""
|
|
1521
|
+
The keyvault managed identity.
|
|
1522
|
+
"""
|
|
1523
|
+
return pulumi.get(self, "identity")
|
|
1524
|
+
|
|
1525
|
+
|
|
1526
|
+
@pulumi.output_type
|
|
1527
|
+
class EnvironmentVariableResponse(dict):
|
|
1528
|
+
"""
|
|
1529
|
+
The environment variable to set within the container instance.
|
|
1530
|
+
"""
|
|
1531
|
+
@staticmethod
|
|
1532
|
+
def __key_warning(key: str):
|
|
1533
|
+
suggest = None
|
|
1534
|
+
if key == "secureValue":
|
|
1535
|
+
suggest = "secure_value"
|
|
1536
|
+
elif key == "secureValueReference":
|
|
1537
|
+
suggest = "secure_value_reference"
|
|
1538
|
+
|
|
1539
|
+
if suggest:
|
|
1540
|
+
pulumi.log.warn(f"Key '{key}' not found in EnvironmentVariableResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1541
|
+
|
|
1542
|
+
def __getitem__(self, key: str) -> Any:
|
|
1543
|
+
EnvironmentVariableResponse.__key_warning(key)
|
|
1544
|
+
return super().__getitem__(key)
|
|
1545
|
+
|
|
1546
|
+
def get(self, key: str, default = None) -> Any:
|
|
1547
|
+
EnvironmentVariableResponse.__key_warning(key)
|
|
1548
|
+
return super().get(key, default)
|
|
1549
|
+
|
|
1550
|
+
def __init__(__self__, *,
|
|
1551
|
+
name: str,
|
|
1552
|
+
secure_value: Optional[str] = None,
|
|
1553
|
+
secure_value_reference: Optional[str] = None,
|
|
1554
|
+
value: Optional[str] = None):
|
|
1555
|
+
"""
|
|
1556
|
+
The environment variable to set within the container instance.
|
|
1557
|
+
:param str name: The name of the environment variable.
|
|
1558
|
+
:param str secure_value: The value of the secure environment variable.
|
|
1559
|
+
:param str secure_value_reference: The reference of the secure environment variable.
|
|
1560
|
+
:param str value: The value of the environment variable.
|
|
1561
|
+
"""
|
|
1562
|
+
pulumi.set(__self__, "name", name)
|
|
1563
|
+
if secure_value is not None:
|
|
1564
|
+
pulumi.set(__self__, "secure_value", secure_value)
|
|
1565
|
+
if secure_value_reference is not None:
|
|
1566
|
+
pulumi.set(__self__, "secure_value_reference", secure_value_reference)
|
|
1567
|
+
if value is not None:
|
|
1568
|
+
pulumi.set(__self__, "value", value)
|
|
1569
|
+
|
|
1570
|
+
@property
|
|
1571
|
+
@pulumi.getter
|
|
1572
|
+
def name(self) -> str:
|
|
1573
|
+
"""
|
|
1574
|
+
The name of the environment variable.
|
|
1575
|
+
"""
|
|
1576
|
+
return pulumi.get(self, "name")
|
|
1577
|
+
|
|
1578
|
+
@property
|
|
1579
|
+
@pulumi.getter(name="secureValue")
|
|
1580
|
+
def secure_value(self) -> Optional[str]:
|
|
1581
|
+
"""
|
|
1582
|
+
The value of the secure environment variable.
|
|
1583
|
+
"""
|
|
1584
|
+
return pulumi.get(self, "secure_value")
|
|
1585
|
+
|
|
1586
|
+
@property
|
|
1587
|
+
@pulumi.getter(name="secureValueReference")
|
|
1588
|
+
def secure_value_reference(self) -> Optional[str]:
|
|
1589
|
+
"""
|
|
1590
|
+
The reference of the secure environment variable.
|
|
1591
|
+
"""
|
|
1592
|
+
return pulumi.get(self, "secure_value_reference")
|
|
1593
|
+
|
|
1594
|
+
@property
|
|
1595
|
+
@pulumi.getter
|
|
1596
|
+
def value(self) -> Optional[str]:
|
|
1597
|
+
"""
|
|
1598
|
+
The value of the environment variable.
|
|
1599
|
+
"""
|
|
1600
|
+
return pulumi.get(self, "value")
|
|
1601
|
+
|
|
1602
|
+
|
|
1603
|
+
@pulumi.output_type
|
|
1604
|
+
class EventResponse(dict):
|
|
1605
|
+
"""
|
|
1606
|
+
A container group or container instance event.
|
|
1607
|
+
"""
|
|
1608
|
+
@staticmethod
|
|
1609
|
+
def __key_warning(key: str):
|
|
1610
|
+
suggest = None
|
|
1611
|
+
if key == "firstTimestamp":
|
|
1612
|
+
suggest = "first_timestamp"
|
|
1613
|
+
elif key == "lastTimestamp":
|
|
1614
|
+
suggest = "last_timestamp"
|
|
1615
|
+
|
|
1616
|
+
if suggest:
|
|
1617
|
+
pulumi.log.warn(f"Key '{key}' not found in EventResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1618
|
+
|
|
1619
|
+
def __getitem__(self, key: str) -> Any:
|
|
1620
|
+
EventResponse.__key_warning(key)
|
|
1621
|
+
return super().__getitem__(key)
|
|
1622
|
+
|
|
1623
|
+
def get(self, key: str, default = None) -> Any:
|
|
1624
|
+
EventResponse.__key_warning(key)
|
|
1625
|
+
return super().get(key, default)
|
|
1626
|
+
|
|
1627
|
+
def __init__(__self__, *,
|
|
1628
|
+
count: int,
|
|
1629
|
+
first_timestamp: str,
|
|
1630
|
+
last_timestamp: str,
|
|
1631
|
+
message: str,
|
|
1632
|
+
name: str,
|
|
1633
|
+
type: str):
|
|
1634
|
+
"""
|
|
1635
|
+
A container group or container instance event.
|
|
1636
|
+
:param int count: The count of the event.
|
|
1637
|
+
:param str first_timestamp: The date-time of the earliest logged event.
|
|
1638
|
+
:param str last_timestamp: The date-time of the latest logged event.
|
|
1639
|
+
:param str message: The event message.
|
|
1640
|
+
:param str name: The event name.
|
|
1641
|
+
:param str type: The event type.
|
|
1642
|
+
"""
|
|
1643
|
+
pulumi.set(__self__, "count", count)
|
|
1644
|
+
pulumi.set(__self__, "first_timestamp", first_timestamp)
|
|
1645
|
+
pulumi.set(__self__, "last_timestamp", last_timestamp)
|
|
1646
|
+
pulumi.set(__self__, "message", message)
|
|
1647
|
+
pulumi.set(__self__, "name", name)
|
|
1648
|
+
pulumi.set(__self__, "type", type)
|
|
1649
|
+
|
|
1650
|
+
@property
|
|
1651
|
+
@pulumi.getter
|
|
1652
|
+
def count(self) -> int:
|
|
1653
|
+
"""
|
|
1654
|
+
The count of the event.
|
|
1655
|
+
"""
|
|
1656
|
+
return pulumi.get(self, "count")
|
|
1657
|
+
|
|
1658
|
+
@property
|
|
1659
|
+
@pulumi.getter(name="firstTimestamp")
|
|
1660
|
+
def first_timestamp(self) -> str:
|
|
1661
|
+
"""
|
|
1662
|
+
The date-time of the earliest logged event.
|
|
1663
|
+
"""
|
|
1664
|
+
return pulumi.get(self, "first_timestamp")
|
|
1665
|
+
|
|
1666
|
+
@property
|
|
1667
|
+
@pulumi.getter(name="lastTimestamp")
|
|
1668
|
+
def last_timestamp(self) -> str:
|
|
1669
|
+
"""
|
|
1670
|
+
The date-time of the latest logged event.
|
|
1671
|
+
"""
|
|
1672
|
+
return pulumi.get(self, "last_timestamp")
|
|
1673
|
+
|
|
1674
|
+
@property
|
|
1675
|
+
@pulumi.getter
|
|
1676
|
+
def message(self) -> str:
|
|
1677
|
+
"""
|
|
1678
|
+
The event message.
|
|
1679
|
+
"""
|
|
1680
|
+
return pulumi.get(self, "message")
|
|
1681
|
+
|
|
1682
|
+
@property
|
|
1683
|
+
@pulumi.getter
|
|
1684
|
+
def name(self) -> str:
|
|
1685
|
+
"""
|
|
1686
|
+
The event name.
|
|
1687
|
+
"""
|
|
1688
|
+
return pulumi.get(self, "name")
|
|
1689
|
+
|
|
1690
|
+
@property
|
|
1691
|
+
@pulumi.getter
|
|
1692
|
+
def type(self) -> str:
|
|
1693
|
+
"""
|
|
1694
|
+
The event type.
|
|
1695
|
+
"""
|
|
1696
|
+
return pulumi.get(self, "type")
|
|
1697
|
+
|
|
1698
|
+
|
|
1699
|
+
@pulumi.output_type
|
|
1700
|
+
class FileShareResponse(dict):
|
|
1701
|
+
"""
|
|
1702
|
+
File shares that can be mounted on container groups.
|
|
1703
|
+
"""
|
|
1704
|
+
@staticmethod
|
|
1705
|
+
def __key_warning(key: str):
|
|
1706
|
+
suggest = None
|
|
1707
|
+
if key == "resourceGroupName":
|
|
1708
|
+
suggest = "resource_group_name"
|
|
1709
|
+
elif key == "storageAccountName":
|
|
1710
|
+
suggest = "storage_account_name"
|
|
1711
|
+
|
|
1712
|
+
if suggest:
|
|
1713
|
+
pulumi.log.warn(f"Key '{key}' not found in FileShareResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1714
|
+
|
|
1715
|
+
def __getitem__(self, key: str) -> Any:
|
|
1716
|
+
FileShareResponse.__key_warning(key)
|
|
1717
|
+
return super().__getitem__(key)
|
|
1718
|
+
|
|
1719
|
+
def get(self, key: str, default = None) -> Any:
|
|
1720
|
+
FileShareResponse.__key_warning(key)
|
|
1721
|
+
return super().get(key, default)
|
|
1722
|
+
|
|
1723
|
+
def __init__(__self__, *,
|
|
1724
|
+
name: Optional[str] = None,
|
|
1725
|
+
properties: Optional['outputs.FileShareResponseProperties'] = None,
|
|
1726
|
+
resource_group_name: Optional[str] = None,
|
|
1727
|
+
storage_account_name: Optional[str] = None):
|
|
1728
|
+
"""
|
|
1729
|
+
File shares that can be mounted on container groups.
|
|
1730
|
+
"""
|
|
1731
|
+
if name is not None:
|
|
1732
|
+
pulumi.set(__self__, "name", name)
|
|
1733
|
+
if properties is not None:
|
|
1734
|
+
pulumi.set(__self__, "properties", properties)
|
|
1735
|
+
if resource_group_name is not None:
|
|
1736
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
1737
|
+
if storage_account_name is not None:
|
|
1738
|
+
pulumi.set(__self__, "storage_account_name", storage_account_name)
|
|
1739
|
+
|
|
1740
|
+
@property
|
|
1741
|
+
@pulumi.getter
|
|
1742
|
+
def name(self) -> Optional[str]:
|
|
1743
|
+
return pulumi.get(self, "name")
|
|
1744
|
+
|
|
1745
|
+
@property
|
|
1746
|
+
@pulumi.getter
|
|
1747
|
+
def properties(self) -> Optional['outputs.FileShareResponseProperties']:
|
|
1748
|
+
return pulumi.get(self, "properties")
|
|
1749
|
+
|
|
1750
|
+
@property
|
|
1751
|
+
@pulumi.getter(name="resourceGroupName")
|
|
1752
|
+
def resource_group_name(self) -> Optional[str]:
|
|
1753
|
+
return pulumi.get(self, "resource_group_name")
|
|
1754
|
+
|
|
1755
|
+
@property
|
|
1756
|
+
@pulumi.getter(name="storageAccountName")
|
|
1757
|
+
def storage_account_name(self) -> Optional[str]:
|
|
1758
|
+
return pulumi.get(self, "storage_account_name")
|
|
1759
|
+
|
|
1760
|
+
|
|
1761
|
+
@pulumi.output_type
|
|
1762
|
+
class FileShareResponseProperties(dict):
|
|
1763
|
+
@staticmethod
|
|
1764
|
+
def __key_warning(key: str):
|
|
1765
|
+
suggest = None
|
|
1766
|
+
if key == "shareAccessTier":
|
|
1767
|
+
suggest = "share_access_tier"
|
|
1768
|
+
elif key == "shareAccessType":
|
|
1769
|
+
suggest = "share_access_type"
|
|
1770
|
+
|
|
1771
|
+
if suggest:
|
|
1772
|
+
pulumi.log.warn(f"Key '{key}' not found in FileShareResponseProperties. Access the value via the '{suggest}' property getter instead.")
|
|
1773
|
+
|
|
1774
|
+
def __getitem__(self, key: str) -> Any:
|
|
1775
|
+
FileShareResponseProperties.__key_warning(key)
|
|
1776
|
+
return super().__getitem__(key)
|
|
1777
|
+
|
|
1778
|
+
def get(self, key: str, default = None) -> Any:
|
|
1779
|
+
FileShareResponseProperties.__key_warning(key)
|
|
1780
|
+
return super().get(key, default)
|
|
1781
|
+
|
|
1782
|
+
def __init__(__self__, *,
|
|
1783
|
+
share_access_tier: Optional[str] = None,
|
|
1784
|
+
share_access_type: Optional[str] = None):
|
|
1785
|
+
"""
|
|
1786
|
+
:param str share_access_tier: Access tier for specific share. GpV2 account can choose between TransactionOptimized (default), Hot, and Cool. FileStorage account can choose Premium. Learn more at: https://learn.microsoft.com/en-us/rest/api/storagerp/file-shares/create?tabs=HTTP#shareaccesstier
|
|
1787
|
+
:param str share_access_type: Specifies how Container Groups can access the Azure file share i.e. all CG will share same Azure file share or going to have exclusive file share.
|
|
1788
|
+
"""
|
|
1789
|
+
if share_access_tier is None:
|
|
1790
|
+
share_access_tier = 'TransactionOptimized'
|
|
1791
|
+
if share_access_tier is not None:
|
|
1792
|
+
pulumi.set(__self__, "share_access_tier", share_access_tier)
|
|
1793
|
+
if share_access_type is not None:
|
|
1794
|
+
pulumi.set(__self__, "share_access_type", share_access_type)
|
|
1795
|
+
|
|
1796
|
+
@property
|
|
1797
|
+
@pulumi.getter(name="shareAccessTier")
|
|
1798
|
+
def share_access_tier(self) -> Optional[str]:
|
|
1799
|
+
"""
|
|
1800
|
+
Access tier for specific share. GpV2 account can choose between TransactionOptimized (default), Hot, and Cool. FileStorage account can choose Premium. Learn more at: https://learn.microsoft.com/en-us/rest/api/storagerp/file-shares/create?tabs=HTTP#shareaccesstier
|
|
1801
|
+
"""
|
|
1802
|
+
return pulumi.get(self, "share_access_tier")
|
|
1803
|
+
|
|
1804
|
+
@property
|
|
1805
|
+
@pulumi.getter(name="shareAccessType")
|
|
1806
|
+
def share_access_type(self) -> Optional[str]:
|
|
1807
|
+
"""
|
|
1808
|
+
Specifies how Container Groups can access the Azure file share i.e. all CG will share same Azure file share or going to have exclusive file share.
|
|
1809
|
+
"""
|
|
1810
|
+
return pulumi.get(self, "share_access_type")
|
|
1811
|
+
|
|
1812
|
+
|
|
1813
|
+
@pulumi.output_type
|
|
1814
|
+
class GitRepoVolumeResponse(dict):
|
|
1815
|
+
"""
|
|
1816
|
+
Represents a volume that is populated with the contents of a git repository
|
|
1817
|
+
"""
|
|
1818
|
+
def __init__(__self__, *,
|
|
1819
|
+
repository: str,
|
|
1820
|
+
directory: Optional[str] = None,
|
|
1821
|
+
revision: Optional[str] = None):
|
|
1822
|
+
"""
|
|
1823
|
+
Represents a volume that is populated with the contents of a git repository
|
|
1824
|
+
:param str repository: Repository URL
|
|
1825
|
+
:param str directory: Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.
|
|
1826
|
+
:param str revision: Commit hash for the specified revision.
|
|
1827
|
+
"""
|
|
1828
|
+
pulumi.set(__self__, "repository", repository)
|
|
1829
|
+
if directory is not None:
|
|
1830
|
+
pulumi.set(__self__, "directory", directory)
|
|
1831
|
+
if revision is not None:
|
|
1832
|
+
pulumi.set(__self__, "revision", revision)
|
|
1833
|
+
|
|
1834
|
+
@property
|
|
1835
|
+
@pulumi.getter
|
|
1836
|
+
def repository(self) -> str:
|
|
1837
|
+
"""
|
|
1838
|
+
Repository URL
|
|
1839
|
+
"""
|
|
1840
|
+
return pulumi.get(self, "repository")
|
|
1841
|
+
|
|
1842
|
+
@property
|
|
1843
|
+
@pulumi.getter
|
|
1844
|
+
def directory(self) -> Optional[str]:
|
|
1845
|
+
"""
|
|
1846
|
+
Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.
|
|
1847
|
+
"""
|
|
1848
|
+
return pulumi.get(self, "directory")
|
|
1849
|
+
|
|
1850
|
+
@property
|
|
1851
|
+
@pulumi.getter
|
|
1852
|
+
def revision(self) -> Optional[str]:
|
|
1853
|
+
"""
|
|
1854
|
+
Commit hash for the specified revision.
|
|
1855
|
+
"""
|
|
1856
|
+
return pulumi.get(self, "revision")
|
|
1857
|
+
|
|
1858
|
+
|
|
1859
|
+
@pulumi.output_type
|
|
1860
|
+
class GpuResourceResponse(dict):
|
|
1861
|
+
"""
|
|
1862
|
+
The GPU resource.
|
|
1863
|
+
"""
|
|
1864
|
+
def __init__(__self__, *,
|
|
1865
|
+
count: int,
|
|
1866
|
+
sku: str):
|
|
1867
|
+
"""
|
|
1868
|
+
The GPU resource.
|
|
1869
|
+
:param int count: The count of the GPU resource.
|
|
1870
|
+
:param str sku: The SKU of the GPU resource.
|
|
1871
|
+
"""
|
|
1872
|
+
pulumi.set(__self__, "count", count)
|
|
1873
|
+
pulumi.set(__self__, "sku", sku)
|
|
1874
|
+
|
|
1875
|
+
@property
|
|
1876
|
+
@pulumi.getter
|
|
1877
|
+
def count(self) -> int:
|
|
1878
|
+
"""
|
|
1879
|
+
The count of the GPU resource.
|
|
1880
|
+
"""
|
|
1881
|
+
return pulumi.get(self, "count")
|
|
1882
|
+
|
|
1883
|
+
@property
|
|
1884
|
+
@pulumi.getter
|
|
1885
|
+
def sku(self) -> str:
|
|
1886
|
+
"""
|
|
1887
|
+
The SKU of the GPU resource.
|
|
1888
|
+
"""
|
|
1889
|
+
return pulumi.get(self, "sku")
|
|
1890
|
+
|
|
1891
|
+
|
|
1892
|
+
@pulumi.output_type
|
|
1893
|
+
class HttpHeaderResponse(dict):
|
|
1894
|
+
"""
|
|
1895
|
+
The HTTP header.
|
|
1896
|
+
"""
|
|
1897
|
+
def __init__(__self__, *,
|
|
1898
|
+
name: Optional[str] = None,
|
|
1899
|
+
value: Optional[str] = None):
|
|
1900
|
+
"""
|
|
1901
|
+
The HTTP header.
|
|
1902
|
+
:param str name: The header name.
|
|
1903
|
+
:param str value: The header value.
|
|
1904
|
+
"""
|
|
1905
|
+
if name is not None:
|
|
1906
|
+
pulumi.set(__self__, "name", name)
|
|
1907
|
+
if value is not None:
|
|
1908
|
+
pulumi.set(__self__, "value", value)
|
|
1909
|
+
|
|
1910
|
+
@property
|
|
1911
|
+
@pulumi.getter
|
|
1912
|
+
def name(self) -> Optional[str]:
|
|
1913
|
+
"""
|
|
1914
|
+
The header name.
|
|
1915
|
+
"""
|
|
1916
|
+
return pulumi.get(self, "name")
|
|
1917
|
+
|
|
1918
|
+
@property
|
|
1919
|
+
@pulumi.getter
|
|
1920
|
+
def value(self) -> Optional[str]:
|
|
1921
|
+
"""
|
|
1922
|
+
The header value.
|
|
1923
|
+
"""
|
|
1924
|
+
return pulumi.get(self, "value")
|
|
1925
|
+
|
|
1926
|
+
|
|
1927
|
+
@pulumi.output_type
|
|
1928
|
+
class IdentityAccessControlResponse(dict):
|
|
1929
|
+
"""
|
|
1930
|
+
The access control for an identity
|
|
1931
|
+
"""
|
|
1932
|
+
def __init__(__self__, *,
|
|
1933
|
+
access: Optional[str] = None,
|
|
1934
|
+
identity: Optional[str] = None):
|
|
1935
|
+
"""
|
|
1936
|
+
The access control for an identity
|
|
1937
|
+
:param str access: The access level of the identity.
|
|
1938
|
+
:param str identity: An identity.
|
|
1939
|
+
"""
|
|
1940
|
+
if access is not None:
|
|
1941
|
+
pulumi.set(__self__, "access", access)
|
|
1942
|
+
if identity is not None:
|
|
1943
|
+
pulumi.set(__self__, "identity", identity)
|
|
1944
|
+
|
|
1945
|
+
@property
|
|
1946
|
+
@pulumi.getter
|
|
1947
|
+
def access(self) -> Optional[str]:
|
|
1948
|
+
"""
|
|
1949
|
+
The access level of the identity.
|
|
1950
|
+
"""
|
|
1951
|
+
return pulumi.get(self, "access")
|
|
1952
|
+
|
|
1953
|
+
@property
|
|
1954
|
+
@pulumi.getter
|
|
1955
|
+
def identity(self) -> Optional[str]:
|
|
1956
|
+
"""
|
|
1957
|
+
An identity.
|
|
1958
|
+
"""
|
|
1959
|
+
return pulumi.get(self, "identity")
|
|
1960
|
+
|
|
1961
|
+
|
|
1962
|
+
@pulumi.output_type
|
|
1963
|
+
class IdentityAclsResponse(dict):
|
|
1964
|
+
"""
|
|
1965
|
+
The access control levels of the identities.
|
|
1966
|
+
"""
|
|
1967
|
+
@staticmethod
|
|
1968
|
+
def __key_warning(key: str):
|
|
1969
|
+
suggest = None
|
|
1970
|
+
if key == "defaultAccess":
|
|
1971
|
+
suggest = "default_access"
|
|
1972
|
+
|
|
1973
|
+
if suggest:
|
|
1974
|
+
pulumi.log.warn(f"Key '{key}' not found in IdentityAclsResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1975
|
+
|
|
1976
|
+
def __getitem__(self, key: str) -> Any:
|
|
1977
|
+
IdentityAclsResponse.__key_warning(key)
|
|
1978
|
+
return super().__getitem__(key)
|
|
1979
|
+
|
|
1980
|
+
def get(self, key: str, default = None) -> Any:
|
|
1981
|
+
IdentityAclsResponse.__key_warning(key)
|
|
1982
|
+
return super().get(key, default)
|
|
1983
|
+
|
|
1984
|
+
def __init__(__self__, *,
|
|
1985
|
+
acls: Optional[Sequence['outputs.IdentityAccessControlResponse']] = None,
|
|
1986
|
+
default_access: Optional[str] = None):
|
|
1987
|
+
"""
|
|
1988
|
+
The access control levels of the identities.
|
|
1989
|
+
:param Sequence['IdentityAccessControlResponse'] acls: The access control levels for each identity.
|
|
1990
|
+
:param str default_access: The default access level.
|
|
1991
|
+
"""
|
|
1992
|
+
if acls is not None:
|
|
1993
|
+
pulumi.set(__self__, "acls", acls)
|
|
1994
|
+
if default_access is not None:
|
|
1995
|
+
pulumi.set(__self__, "default_access", default_access)
|
|
1996
|
+
|
|
1997
|
+
@property
|
|
1998
|
+
@pulumi.getter
|
|
1999
|
+
def acls(self) -> Optional[Sequence['outputs.IdentityAccessControlResponse']]:
|
|
2000
|
+
"""
|
|
2001
|
+
The access control levels for each identity.
|
|
2002
|
+
"""
|
|
2003
|
+
return pulumi.get(self, "acls")
|
|
2004
|
+
|
|
2005
|
+
@property
|
|
2006
|
+
@pulumi.getter(name="defaultAccess")
|
|
2007
|
+
def default_access(self) -> Optional[str]:
|
|
2008
|
+
"""
|
|
2009
|
+
The default access level.
|
|
2010
|
+
"""
|
|
2011
|
+
return pulumi.get(self, "default_access")
|
|
2012
|
+
|
|
2013
|
+
|
|
2014
|
+
@pulumi.output_type
|
|
2015
|
+
class ImageRegistryCredentialResponse(dict):
|
|
2016
|
+
"""
|
|
2017
|
+
Image registry credential.
|
|
2018
|
+
"""
|
|
2019
|
+
@staticmethod
|
|
2020
|
+
def __key_warning(key: str):
|
|
2021
|
+
suggest = None
|
|
2022
|
+
if key == "identityUrl":
|
|
2023
|
+
suggest = "identity_url"
|
|
2024
|
+
elif key == "passwordReference":
|
|
2025
|
+
suggest = "password_reference"
|
|
2026
|
+
|
|
2027
|
+
if suggest:
|
|
2028
|
+
pulumi.log.warn(f"Key '{key}' not found in ImageRegistryCredentialResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2029
|
+
|
|
2030
|
+
def __getitem__(self, key: str) -> Any:
|
|
2031
|
+
ImageRegistryCredentialResponse.__key_warning(key)
|
|
2032
|
+
return super().__getitem__(key)
|
|
2033
|
+
|
|
2034
|
+
def get(self, key: str, default = None) -> Any:
|
|
2035
|
+
ImageRegistryCredentialResponse.__key_warning(key)
|
|
2036
|
+
return super().get(key, default)
|
|
2037
|
+
|
|
2038
|
+
def __init__(__self__, *,
|
|
2039
|
+
server: str,
|
|
2040
|
+
identity: Optional[str] = None,
|
|
2041
|
+
identity_url: Optional[str] = None,
|
|
2042
|
+
password: Optional[str] = None,
|
|
2043
|
+
password_reference: Optional[str] = None,
|
|
2044
|
+
username: Optional[str] = None):
|
|
2045
|
+
"""
|
|
2046
|
+
Image registry credential.
|
|
2047
|
+
:param str server: The Docker image registry server without a protocol such as "http" and "https".
|
|
2048
|
+
:param str identity: The identity for the private registry.
|
|
2049
|
+
:param str identity_url: The identity URL for the private registry.
|
|
2050
|
+
:param str password: The password for the private registry.
|
|
2051
|
+
:param str password_reference: The reference for the private registry password.
|
|
2052
|
+
:param str username: The username for the private registry.
|
|
2053
|
+
"""
|
|
2054
|
+
pulumi.set(__self__, "server", server)
|
|
2055
|
+
if identity is not None:
|
|
2056
|
+
pulumi.set(__self__, "identity", identity)
|
|
2057
|
+
if identity_url is not None:
|
|
2058
|
+
pulumi.set(__self__, "identity_url", identity_url)
|
|
2059
|
+
if password is not None:
|
|
2060
|
+
pulumi.set(__self__, "password", password)
|
|
2061
|
+
if password_reference is not None:
|
|
2062
|
+
pulumi.set(__self__, "password_reference", password_reference)
|
|
2063
|
+
if username is not None:
|
|
2064
|
+
pulumi.set(__self__, "username", username)
|
|
2065
|
+
|
|
2066
|
+
@property
|
|
2067
|
+
@pulumi.getter
|
|
2068
|
+
def server(self) -> str:
|
|
2069
|
+
"""
|
|
2070
|
+
The Docker image registry server without a protocol such as "http" and "https".
|
|
2071
|
+
"""
|
|
2072
|
+
return pulumi.get(self, "server")
|
|
2073
|
+
|
|
2074
|
+
@property
|
|
2075
|
+
@pulumi.getter
|
|
2076
|
+
def identity(self) -> Optional[str]:
|
|
2077
|
+
"""
|
|
2078
|
+
The identity for the private registry.
|
|
2079
|
+
"""
|
|
2080
|
+
return pulumi.get(self, "identity")
|
|
2081
|
+
|
|
2082
|
+
@property
|
|
2083
|
+
@pulumi.getter(name="identityUrl")
|
|
2084
|
+
def identity_url(self) -> Optional[str]:
|
|
2085
|
+
"""
|
|
2086
|
+
The identity URL for the private registry.
|
|
2087
|
+
"""
|
|
2088
|
+
return pulumi.get(self, "identity_url")
|
|
2089
|
+
|
|
2090
|
+
@property
|
|
2091
|
+
@pulumi.getter
|
|
2092
|
+
def password(self) -> Optional[str]:
|
|
2093
|
+
"""
|
|
2094
|
+
The password for the private registry.
|
|
2095
|
+
"""
|
|
2096
|
+
return pulumi.get(self, "password")
|
|
2097
|
+
|
|
2098
|
+
@property
|
|
2099
|
+
@pulumi.getter(name="passwordReference")
|
|
2100
|
+
def password_reference(self) -> Optional[str]:
|
|
2101
|
+
"""
|
|
2102
|
+
The reference for the private registry password.
|
|
2103
|
+
"""
|
|
2104
|
+
return pulumi.get(self, "password_reference")
|
|
2105
|
+
|
|
2106
|
+
@property
|
|
2107
|
+
@pulumi.getter
|
|
2108
|
+
def username(self) -> Optional[str]:
|
|
2109
|
+
"""
|
|
2110
|
+
The username for the private registry.
|
|
2111
|
+
"""
|
|
2112
|
+
return pulumi.get(self, "username")
|
|
2113
|
+
|
|
2114
|
+
|
|
2115
|
+
@pulumi.output_type
|
|
2116
|
+
class InitContainerDefinitionResponse(dict):
|
|
2117
|
+
"""
|
|
2118
|
+
The init container definition.
|
|
2119
|
+
"""
|
|
2120
|
+
@staticmethod
|
|
2121
|
+
def __key_warning(key: str):
|
|
2122
|
+
suggest = None
|
|
2123
|
+
if key == "instanceView":
|
|
2124
|
+
suggest = "instance_view"
|
|
2125
|
+
elif key == "environmentVariables":
|
|
2126
|
+
suggest = "environment_variables"
|
|
2127
|
+
elif key == "securityContext":
|
|
2128
|
+
suggest = "security_context"
|
|
2129
|
+
elif key == "volumeMounts":
|
|
2130
|
+
suggest = "volume_mounts"
|
|
2131
|
+
|
|
2132
|
+
if suggest:
|
|
2133
|
+
pulumi.log.warn(f"Key '{key}' not found in InitContainerDefinitionResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2134
|
+
|
|
2135
|
+
def __getitem__(self, key: str) -> Any:
|
|
2136
|
+
InitContainerDefinitionResponse.__key_warning(key)
|
|
2137
|
+
return super().__getitem__(key)
|
|
2138
|
+
|
|
2139
|
+
def get(self, key: str, default = None) -> Any:
|
|
2140
|
+
InitContainerDefinitionResponse.__key_warning(key)
|
|
2141
|
+
return super().get(key, default)
|
|
2142
|
+
|
|
2143
|
+
def __init__(__self__, *,
|
|
2144
|
+
instance_view: 'outputs.InitContainerPropertiesDefinitionResponseInstanceView',
|
|
2145
|
+
name: str,
|
|
2146
|
+
command: Optional[Sequence[str]] = None,
|
|
2147
|
+
environment_variables: Optional[Sequence['outputs.EnvironmentVariableResponse']] = None,
|
|
2148
|
+
image: Optional[str] = None,
|
|
2149
|
+
security_context: Optional['outputs.SecurityContextDefinitionResponse'] = None,
|
|
2150
|
+
volume_mounts: Optional[Sequence['outputs.VolumeMountResponse']] = None):
|
|
2151
|
+
"""
|
|
2152
|
+
The init container definition.
|
|
2153
|
+
:param 'InitContainerPropertiesDefinitionResponseInstanceView' instance_view: The instance view of the init container. Only valid in response.
|
|
2154
|
+
:param str name: The name for the init container.
|
|
2155
|
+
:param Sequence[str] command: The command to execute within the init container in exec form.
|
|
2156
|
+
:param Sequence['EnvironmentVariableResponse'] environment_variables: The environment variables to set in the init container.
|
|
2157
|
+
:param str image: The image of the init container.
|
|
2158
|
+
:param 'SecurityContextDefinitionResponse' security_context: The container security properties.
|
|
2159
|
+
:param Sequence['VolumeMountResponse'] volume_mounts: The volume mounts available to the init container.
|
|
2160
|
+
"""
|
|
2161
|
+
pulumi.set(__self__, "instance_view", instance_view)
|
|
2162
|
+
pulumi.set(__self__, "name", name)
|
|
2163
|
+
if command is not None:
|
|
2164
|
+
pulumi.set(__self__, "command", command)
|
|
2165
|
+
if environment_variables is not None:
|
|
2166
|
+
pulumi.set(__self__, "environment_variables", environment_variables)
|
|
2167
|
+
if image is not None:
|
|
2168
|
+
pulumi.set(__self__, "image", image)
|
|
2169
|
+
if security_context is not None:
|
|
2170
|
+
pulumi.set(__self__, "security_context", security_context)
|
|
2171
|
+
if volume_mounts is not None:
|
|
2172
|
+
pulumi.set(__self__, "volume_mounts", volume_mounts)
|
|
2173
|
+
|
|
2174
|
+
@property
|
|
2175
|
+
@pulumi.getter(name="instanceView")
|
|
2176
|
+
def instance_view(self) -> 'outputs.InitContainerPropertiesDefinitionResponseInstanceView':
|
|
2177
|
+
"""
|
|
2178
|
+
The instance view of the init container. Only valid in response.
|
|
2179
|
+
"""
|
|
2180
|
+
return pulumi.get(self, "instance_view")
|
|
2181
|
+
|
|
2182
|
+
@property
|
|
2183
|
+
@pulumi.getter
|
|
2184
|
+
def name(self) -> str:
|
|
2185
|
+
"""
|
|
2186
|
+
The name for the init container.
|
|
2187
|
+
"""
|
|
2188
|
+
return pulumi.get(self, "name")
|
|
2189
|
+
|
|
2190
|
+
@property
|
|
2191
|
+
@pulumi.getter
|
|
2192
|
+
def command(self) -> Optional[Sequence[str]]:
|
|
2193
|
+
"""
|
|
2194
|
+
The command to execute within the init container in exec form.
|
|
2195
|
+
"""
|
|
2196
|
+
return pulumi.get(self, "command")
|
|
2197
|
+
|
|
2198
|
+
@property
|
|
2199
|
+
@pulumi.getter(name="environmentVariables")
|
|
2200
|
+
def environment_variables(self) -> Optional[Sequence['outputs.EnvironmentVariableResponse']]:
|
|
2201
|
+
"""
|
|
2202
|
+
The environment variables to set in the init container.
|
|
2203
|
+
"""
|
|
2204
|
+
return pulumi.get(self, "environment_variables")
|
|
2205
|
+
|
|
2206
|
+
@property
|
|
2207
|
+
@pulumi.getter
|
|
2208
|
+
def image(self) -> Optional[str]:
|
|
2209
|
+
"""
|
|
2210
|
+
The image of the init container.
|
|
2211
|
+
"""
|
|
2212
|
+
return pulumi.get(self, "image")
|
|
2213
|
+
|
|
2214
|
+
@property
|
|
2215
|
+
@pulumi.getter(name="securityContext")
|
|
2216
|
+
def security_context(self) -> Optional['outputs.SecurityContextDefinitionResponse']:
|
|
2217
|
+
"""
|
|
2218
|
+
The container security properties.
|
|
2219
|
+
"""
|
|
2220
|
+
return pulumi.get(self, "security_context")
|
|
2221
|
+
|
|
2222
|
+
@property
|
|
2223
|
+
@pulumi.getter(name="volumeMounts")
|
|
2224
|
+
def volume_mounts(self) -> Optional[Sequence['outputs.VolumeMountResponse']]:
|
|
2225
|
+
"""
|
|
2226
|
+
The volume mounts available to the init container.
|
|
2227
|
+
"""
|
|
2228
|
+
return pulumi.get(self, "volume_mounts")
|
|
2229
|
+
|
|
2230
|
+
|
|
2231
|
+
@pulumi.output_type
|
|
2232
|
+
class InitContainerPropertiesDefinitionResponseInstanceView(dict):
|
|
2233
|
+
"""
|
|
2234
|
+
The instance view of the init container. Only valid in response.
|
|
2235
|
+
"""
|
|
2236
|
+
@staticmethod
|
|
2237
|
+
def __key_warning(key: str):
|
|
2238
|
+
suggest = None
|
|
2239
|
+
if key == "currentState":
|
|
2240
|
+
suggest = "current_state"
|
|
2241
|
+
elif key == "previousState":
|
|
2242
|
+
suggest = "previous_state"
|
|
2243
|
+
elif key == "restartCount":
|
|
2244
|
+
suggest = "restart_count"
|
|
2245
|
+
|
|
2246
|
+
if suggest:
|
|
2247
|
+
pulumi.log.warn(f"Key '{key}' not found in InitContainerPropertiesDefinitionResponseInstanceView. Access the value via the '{suggest}' property getter instead.")
|
|
2248
|
+
|
|
2249
|
+
def __getitem__(self, key: str) -> Any:
|
|
2250
|
+
InitContainerPropertiesDefinitionResponseInstanceView.__key_warning(key)
|
|
2251
|
+
return super().__getitem__(key)
|
|
2252
|
+
|
|
2253
|
+
def get(self, key: str, default = None) -> Any:
|
|
2254
|
+
InitContainerPropertiesDefinitionResponseInstanceView.__key_warning(key)
|
|
2255
|
+
return super().get(key, default)
|
|
2256
|
+
|
|
2257
|
+
def __init__(__self__, *,
|
|
2258
|
+
current_state: 'outputs.ContainerStateResponse',
|
|
2259
|
+
events: Sequence['outputs.EventResponse'],
|
|
2260
|
+
previous_state: 'outputs.ContainerStateResponse',
|
|
2261
|
+
restart_count: int):
|
|
2262
|
+
"""
|
|
2263
|
+
The instance view of the init container. Only valid in response.
|
|
2264
|
+
:param 'ContainerStateResponse' current_state: The current state of the init container.
|
|
2265
|
+
:param Sequence['EventResponse'] events: The events of the init container.
|
|
2266
|
+
:param 'ContainerStateResponse' previous_state: The previous state of the init container.
|
|
2267
|
+
:param int restart_count: The number of times that the init container has been restarted.
|
|
2268
|
+
"""
|
|
2269
|
+
pulumi.set(__self__, "current_state", current_state)
|
|
2270
|
+
pulumi.set(__self__, "events", events)
|
|
2271
|
+
pulumi.set(__self__, "previous_state", previous_state)
|
|
2272
|
+
pulumi.set(__self__, "restart_count", restart_count)
|
|
2273
|
+
|
|
2274
|
+
@property
|
|
2275
|
+
@pulumi.getter(name="currentState")
|
|
2276
|
+
def current_state(self) -> 'outputs.ContainerStateResponse':
|
|
2277
|
+
"""
|
|
2278
|
+
The current state of the init container.
|
|
2279
|
+
"""
|
|
2280
|
+
return pulumi.get(self, "current_state")
|
|
2281
|
+
|
|
2282
|
+
@property
|
|
2283
|
+
@pulumi.getter
|
|
2284
|
+
def events(self) -> Sequence['outputs.EventResponse']:
|
|
2285
|
+
"""
|
|
2286
|
+
The events of the init container.
|
|
2287
|
+
"""
|
|
2288
|
+
return pulumi.get(self, "events")
|
|
2289
|
+
|
|
2290
|
+
@property
|
|
2291
|
+
@pulumi.getter(name="previousState")
|
|
2292
|
+
def previous_state(self) -> 'outputs.ContainerStateResponse':
|
|
2293
|
+
"""
|
|
2294
|
+
The previous state of the init container.
|
|
2295
|
+
"""
|
|
2296
|
+
return pulumi.get(self, "previous_state")
|
|
2297
|
+
|
|
2298
|
+
@property
|
|
2299
|
+
@pulumi.getter(name="restartCount")
|
|
2300
|
+
def restart_count(self) -> int:
|
|
2301
|
+
"""
|
|
2302
|
+
The number of times that the init container has been restarted.
|
|
2303
|
+
"""
|
|
2304
|
+
return pulumi.get(self, "restart_count")
|
|
2305
|
+
|
|
2306
|
+
|
|
2307
|
+
@pulumi.output_type
|
|
2308
|
+
class IpAddressResponse(dict):
|
|
2309
|
+
"""
|
|
2310
|
+
IP address for the container group.
|
|
2311
|
+
"""
|
|
2312
|
+
@staticmethod
|
|
2313
|
+
def __key_warning(key: str):
|
|
2314
|
+
suggest = None
|
|
2315
|
+
if key == "autoGeneratedDomainNameLabelScope":
|
|
2316
|
+
suggest = "auto_generated_domain_name_label_scope"
|
|
2317
|
+
elif key == "dnsNameLabel":
|
|
2318
|
+
suggest = "dns_name_label"
|
|
2319
|
+
|
|
2320
|
+
if suggest:
|
|
2321
|
+
pulumi.log.warn(f"Key '{key}' not found in IpAddressResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2322
|
+
|
|
2323
|
+
def __getitem__(self, key: str) -> Any:
|
|
2324
|
+
IpAddressResponse.__key_warning(key)
|
|
2325
|
+
return super().__getitem__(key)
|
|
2326
|
+
|
|
2327
|
+
def get(self, key: str, default = None) -> Any:
|
|
2328
|
+
IpAddressResponse.__key_warning(key)
|
|
2329
|
+
return super().get(key, default)
|
|
2330
|
+
|
|
2331
|
+
def __init__(__self__, *,
|
|
2332
|
+
fqdn: str,
|
|
2333
|
+
ports: Sequence['outputs.PortResponse'],
|
|
2334
|
+
type: str,
|
|
2335
|
+
auto_generated_domain_name_label_scope: Optional[str] = None,
|
|
2336
|
+
dns_name_label: Optional[str] = None,
|
|
2337
|
+
ip: Optional[str] = None):
|
|
2338
|
+
"""
|
|
2339
|
+
IP address for the container group.
|
|
2340
|
+
:param str fqdn: The FQDN for the IP.
|
|
2341
|
+
:param Sequence['PortResponse'] ports: The list of ports exposed on the container group.
|
|
2342
|
+
:param str type: Specifies if the IP is exposed to the public internet or private VNET.
|
|
2343
|
+
:param str auto_generated_domain_name_label_scope: The value representing the security enum. The 'Unsecure' value is the default value if not selected and means the object's domain name label is not secured against subdomain takeover. The 'TenantReuse' value is the default value if selected and means the object's domain name label can be reused within the same tenant. The 'SubscriptionReuse' value means the object's domain name label can be reused within the same subscription. The 'ResourceGroupReuse' value means the object's domain name label can be reused within the same resource group. The 'NoReuse' value means the object's domain name label cannot be reused within the same resource group, subscription, or tenant.
|
|
2344
|
+
:param str dns_name_label: The Dns name label for the IP.
|
|
2345
|
+
:param str ip: The IP exposed to the public internet.
|
|
2346
|
+
"""
|
|
2347
|
+
pulumi.set(__self__, "fqdn", fqdn)
|
|
2348
|
+
pulumi.set(__self__, "ports", ports)
|
|
2349
|
+
pulumi.set(__self__, "type", type)
|
|
2350
|
+
if auto_generated_domain_name_label_scope is None:
|
|
2351
|
+
auto_generated_domain_name_label_scope = 'Unsecure'
|
|
2352
|
+
if auto_generated_domain_name_label_scope is not None:
|
|
2353
|
+
pulumi.set(__self__, "auto_generated_domain_name_label_scope", auto_generated_domain_name_label_scope)
|
|
2354
|
+
if dns_name_label is not None:
|
|
2355
|
+
pulumi.set(__self__, "dns_name_label", dns_name_label)
|
|
2356
|
+
if ip is not None:
|
|
2357
|
+
pulumi.set(__self__, "ip", ip)
|
|
2358
|
+
|
|
2359
|
+
@property
|
|
2360
|
+
@pulumi.getter
|
|
2361
|
+
def fqdn(self) -> str:
|
|
2362
|
+
"""
|
|
2363
|
+
The FQDN for the IP.
|
|
2364
|
+
"""
|
|
2365
|
+
return pulumi.get(self, "fqdn")
|
|
2366
|
+
|
|
2367
|
+
@property
|
|
2368
|
+
@pulumi.getter
|
|
2369
|
+
def ports(self) -> Sequence['outputs.PortResponse']:
|
|
2370
|
+
"""
|
|
2371
|
+
The list of ports exposed on the container group.
|
|
2372
|
+
"""
|
|
2373
|
+
return pulumi.get(self, "ports")
|
|
2374
|
+
|
|
2375
|
+
@property
|
|
2376
|
+
@pulumi.getter
|
|
2377
|
+
def type(self) -> str:
|
|
2378
|
+
"""
|
|
2379
|
+
Specifies if the IP is exposed to the public internet or private VNET.
|
|
2380
|
+
"""
|
|
2381
|
+
return pulumi.get(self, "type")
|
|
2382
|
+
|
|
2383
|
+
@property
|
|
2384
|
+
@pulumi.getter(name="autoGeneratedDomainNameLabelScope")
|
|
2385
|
+
def auto_generated_domain_name_label_scope(self) -> Optional[str]:
|
|
2386
|
+
"""
|
|
2387
|
+
The value representing the security enum. The 'Unsecure' value is the default value if not selected and means the object's domain name label is not secured against subdomain takeover. The 'TenantReuse' value is the default value if selected and means the object's domain name label can be reused within the same tenant. The 'SubscriptionReuse' value means the object's domain name label can be reused within the same subscription. The 'ResourceGroupReuse' value means the object's domain name label can be reused within the same resource group. The 'NoReuse' value means the object's domain name label cannot be reused within the same resource group, subscription, or tenant.
|
|
2388
|
+
"""
|
|
2389
|
+
return pulumi.get(self, "auto_generated_domain_name_label_scope")
|
|
2390
|
+
|
|
2391
|
+
@property
|
|
2392
|
+
@pulumi.getter(name="dnsNameLabel")
|
|
2393
|
+
def dns_name_label(self) -> Optional[str]:
|
|
2394
|
+
"""
|
|
2395
|
+
The Dns name label for the IP.
|
|
2396
|
+
"""
|
|
2397
|
+
return pulumi.get(self, "dns_name_label")
|
|
2398
|
+
|
|
2399
|
+
@property
|
|
2400
|
+
@pulumi.getter
|
|
2401
|
+
def ip(self) -> Optional[str]:
|
|
2402
|
+
"""
|
|
2403
|
+
The IP exposed to the public internet.
|
|
2404
|
+
"""
|
|
2405
|
+
return pulumi.get(self, "ip")
|
|
2406
|
+
|
|
2407
|
+
|
|
2408
|
+
@pulumi.output_type
|
|
2409
|
+
class LoadBalancerBackendAddressPoolResponse(dict):
|
|
2410
|
+
"""
|
|
2411
|
+
NGroups load balancer backend address pool
|
|
2412
|
+
"""
|
|
2413
|
+
def __init__(__self__, *,
|
|
2414
|
+
resource: Optional[str] = None):
|
|
2415
|
+
"""
|
|
2416
|
+
NGroups load balancer backend address pool
|
|
2417
|
+
:param str resource: The Load Balancer backend address pool ARM resource Id.
|
|
2418
|
+
"""
|
|
2419
|
+
if resource is not None:
|
|
2420
|
+
pulumi.set(__self__, "resource", resource)
|
|
2421
|
+
|
|
2422
|
+
@property
|
|
2423
|
+
@pulumi.getter
|
|
2424
|
+
def resource(self) -> Optional[str]:
|
|
2425
|
+
"""
|
|
2426
|
+
The Load Balancer backend address pool ARM resource Id.
|
|
2427
|
+
"""
|
|
2428
|
+
return pulumi.get(self, "resource")
|
|
2429
|
+
|
|
2430
|
+
|
|
2431
|
+
@pulumi.output_type
|
|
2432
|
+
class LoadBalancerResponse(dict):
|
|
2433
|
+
"""
|
|
2434
|
+
LoadBalancer the CG profile will use to interact with CGs in a backend pool
|
|
2435
|
+
"""
|
|
2436
|
+
@staticmethod
|
|
2437
|
+
def __key_warning(key: str):
|
|
2438
|
+
suggest = None
|
|
2439
|
+
if key == "backendAddressPools":
|
|
2440
|
+
suggest = "backend_address_pools"
|
|
2441
|
+
|
|
2442
|
+
if suggest:
|
|
2443
|
+
pulumi.log.warn(f"Key '{key}' not found in LoadBalancerResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2444
|
+
|
|
2445
|
+
def __getitem__(self, key: str) -> Any:
|
|
2446
|
+
LoadBalancerResponse.__key_warning(key)
|
|
2447
|
+
return super().__getitem__(key)
|
|
2448
|
+
|
|
2449
|
+
def get(self, key: str, default = None) -> Any:
|
|
2450
|
+
LoadBalancerResponse.__key_warning(key)
|
|
2451
|
+
return super().get(key, default)
|
|
2452
|
+
|
|
2453
|
+
def __init__(__self__, *,
|
|
2454
|
+
backend_address_pools: Optional[Sequence['outputs.LoadBalancerBackendAddressPoolResponse']] = None):
|
|
2455
|
+
"""
|
|
2456
|
+
LoadBalancer the CG profile will use to interact with CGs in a backend pool
|
|
2457
|
+
:param Sequence['LoadBalancerBackendAddressPoolResponse'] backend_address_pools: List of Load Balancer Backend Address Pools.
|
|
2458
|
+
"""
|
|
2459
|
+
if backend_address_pools is not None:
|
|
2460
|
+
pulumi.set(__self__, "backend_address_pools", backend_address_pools)
|
|
2461
|
+
|
|
2462
|
+
@property
|
|
2463
|
+
@pulumi.getter(name="backendAddressPools")
|
|
2464
|
+
def backend_address_pools(self) -> Optional[Sequence['outputs.LoadBalancerBackendAddressPoolResponse']]:
|
|
2465
|
+
"""
|
|
2466
|
+
List of Load Balancer Backend Address Pools.
|
|
2467
|
+
"""
|
|
2468
|
+
return pulumi.get(self, "backend_address_pools")
|
|
2469
|
+
|
|
2470
|
+
|
|
2471
|
+
@pulumi.output_type
|
|
2472
|
+
class LogAnalyticsResponse(dict):
|
|
2473
|
+
"""
|
|
2474
|
+
Container group log analytics information.
|
|
2475
|
+
"""
|
|
2476
|
+
@staticmethod
|
|
2477
|
+
def __key_warning(key: str):
|
|
2478
|
+
suggest = None
|
|
2479
|
+
if key == "workspaceId":
|
|
2480
|
+
suggest = "workspace_id"
|
|
2481
|
+
elif key == "workspaceKey":
|
|
2482
|
+
suggest = "workspace_key"
|
|
2483
|
+
elif key == "logType":
|
|
2484
|
+
suggest = "log_type"
|
|
2485
|
+
elif key == "workspaceResourceId":
|
|
2486
|
+
suggest = "workspace_resource_id"
|
|
2487
|
+
|
|
2488
|
+
if suggest:
|
|
2489
|
+
pulumi.log.warn(f"Key '{key}' not found in LogAnalyticsResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2490
|
+
|
|
2491
|
+
def __getitem__(self, key: str) -> Any:
|
|
2492
|
+
LogAnalyticsResponse.__key_warning(key)
|
|
2493
|
+
return super().__getitem__(key)
|
|
2494
|
+
|
|
2495
|
+
def get(self, key: str, default = None) -> Any:
|
|
2496
|
+
LogAnalyticsResponse.__key_warning(key)
|
|
2497
|
+
return super().get(key, default)
|
|
2498
|
+
|
|
2499
|
+
def __init__(__self__, *,
|
|
2500
|
+
workspace_id: str,
|
|
2501
|
+
workspace_key: str,
|
|
2502
|
+
log_type: Optional[str] = None,
|
|
2503
|
+
metadata: Optional[Mapping[str, str]] = None,
|
|
2504
|
+
workspace_resource_id: Optional[str] = None):
|
|
2505
|
+
"""
|
|
2506
|
+
Container group log analytics information.
|
|
2507
|
+
:param str workspace_id: The workspace id for log analytics
|
|
2508
|
+
:param str workspace_key: The workspace key for log analytics
|
|
2509
|
+
:param str log_type: The log type to be used.
|
|
2510
|
+
:param Mapping[str, str] metadata: Metadata for log analytics.
|
|
2511
|
+
:param str workspace_resource_id: The workspace resource id for log analytics
|
|
2512
|
+
"""
|
|
2513
|
+
pulumi.set(__self__, "workspace_id", workspace_id)
|
|
2514
|
+
pulumi.set(__self__, "workspace_key", workspace_key)
|
|
2515
|
+
if log_type is not None:
|
|
2516
|
+
pulumi.set(__self__, "log_type", log_type)
|
|
2517
|
+
if metadata is not None:
|
|
2518
|
+
pulumi.set(__self__, "metadata", metadata)
|
|
2519
|
+
if workspace_resource_id is not None:
|
|
2520
|
+
pulumi.set(__self__, "workspace_resource_id", workspace_resource_id)
|
|
2521
|
+
|
|
2522
|
+
@property
|
|
2523
|
+
@pulumi.getter(name="workspaceId")
|
|
2524
|
+
def workspace_id(self) -> str:
|
|
2525
|
+
"""
|
|
2526
|
+
The workspace id for log analytics
|
|
2527
|
+
"""
|
|
2528
|
+
return pulumi.get(self, "workspace_id")
|
|
2529
|
+
|
|
2530
|
+
@property
|
|
2531
|
+
@pulumi.getter(name="workspaceKey")
|
|
2532
|
+
def workspace_key(self) -> str:
|
|
2533
|
+
"""
|
|
2534
|
+
The workspace key for log analytics
|
|
2535
|
+
"""
|
|
2536
|
+
return pulumi.get(self, "workspace_key")
|
|
2537
|
+
|
|
2538
|
+
@property
|
|
2539
|
+
@pulumi.getter(name="logType")
|
|
2540
|
+
def log_type(self) -> Optional[str]:
|
|
2541
|
+
"""
|
|
2542
|
+
The log type to be used.
|
|
2543
|
+
"""
|
|
2544
|
+
return pulumi.get(self, "log_type")
|
|
2545
|
+
|
|
2546
|
+
@property
|
|
2547
|
+
@pulumi.getter
|
|
2548
|
+
def metadata(self) -> Optional[Mapping[str, str]]:
|
|
2549
|
+
"""
|
|
2550
|
+
Metadata for log analytics.
|
|
2551
|
+
"""
|
|
2552
|
+
return pulumi.get(self, "metadata")
|
|
2553
|
+
|
|
2554
|
+
@property
|
|
2555
|
+
@pulumi.getter(name="workspaceResourceId")
|
|
2556
|
+
def workspace_resource_id(self) -> Optional[str]:
|
|
2557
|
+
"""
|
|
2558
|
+
The workspace resource id for log analytics
|
|
2559
|
+
"""
|
|
2560
|
+
return pulumi.get(self, "workspace_resource_id")
|
|
2561
|
+
|
|
2562
|
+
|
|
2563
|
+
@pulumi.output_type
|
|
2564
|
+
class NGroupCGPropertyContainerResponse(dict):
|
|
2565
|
+
"""
|
|
2566
|
+
Container properties that can be provided with NGroups object.
|
|
2567
|
+
"""
|
|
2568
|
+
def __init__(__self__, *,
|
|
2569
|
+
name: Optional[str] = None,
|
|
2570
|
+
properties: Optional['outputs.NGroupCGPropertyContainerResponseProperties'] = None):
|
|
2571
|
+
"""
|
|
2572
|
+
Container properties that can be provided with NGroups object.
|
|
2573
|
+
:param str name: container name
|
|
2574
|
+
:param 'NGroupCGPropertyContainerResponseProperties' properties: container properties
|
|
2575
|
+
"""
|
|
2576
|
+
if name is not None:
|
|
2577
|
+
pulumi.set(__self__, "name", name)
|
|
2578
|
+
if properties is not None:
|
|
2579
|
+
pulumi.set(__self__, "properties", properties)
|
|
2580
|
+
|
|
2581
|
+
@property
|
|
2582
|
+
@pulumi.getter
|
|
2583
|
+
def name(self) -> Optional[str]:
|
|
2584
|
+
"""
|
|
2585
|
+
container name
|
|
2586
|
+
"""
|
|
2587
|
+
return pulumi.get(self, "name")
|
|
2588
|
+
|
|
2589
|
+
@property
|
|
2590
|
+
@pulumi.getter
|
|
2591
|
+
def properties(self) -> Optional['outputs.NGroupCGPropertyContainerResponseProperties']:
|
|
2592
|
+
"""
|
|
2593
|
+
container properties
|
|
2594
|
+
"""
|
|
2595
|
+
return pulumi.get(self, "properties")
|
|
2596
|
+
|
|
2597
|
+
|
|
2598
|
+
@pulumi.output_type
|
|
2599
|
+
class NGroupCGPropertyContainerResponseProperties(dict):
|
|
2600
|
+
"""
|
|
2601
|
+
container properties
|
|
2602
|
+
"""
|
|
2603
|
+
@staticmethod
|
|
2604
|
+
def __key_warning(key: str):
|
|
2605
|
+
suggest = None
|
|
2606
|
+
if key == "volumeMounts":
|
|
2607
|
+
suggest = "volume_mounts"
|
|
2608
|
+
|
|
2609
|
+
if suggest:
|
|
2610
|
+
pulumi.log.warn(f"Key '{key}' not found in NGroupCGPropertyContainerResponseProperties. Access the value via the '{suggest}' property getter instead.")
|
|
2611
|
+
|
|
2612
|
+
def __getitem__(self, key: str) -> Any:
|
|
2613
|
+
NGroupCGPropertyContainerResponseProperties.__key_warning(key)
|
|
2614
|
+
return super().__getitem__(key)
|
|
2615
|
+
|
|
2616
|
+
def get(self, key: str, default = None) -> Any:
|
|
2617
|
+
NGroupCGPropertyContainerResponseProperties.__key_warning(key)
|
|
2618
|
+
return super().get(key, default)
|
|
2619
|
+
|
|
2620
|
+
def __init__(__self__, *,
|
|
2621
|
+
volume_mounts: Optional[Sequence['outputs.VolumeMountResponse']] = None):
|
|
2622
|
+
"""
|
|
2623
|
+
container properties
|
|
2624
|
+
"""
|
|
2625
|
+
if volume_mounts is not None:
|
|
2626
|
+
pulumi.set(__self__, "volume_mounts", volume_mounts)
|
|
2627
|
+
|
|
2628
|
+
@property
|
|
2629
|
+
@pulumi.getter(name="volumeMounts")
|
|
2630
|
+
def volume_mounts(self) -> Optional[Sequence['outputs.VolumeMountResponse']]:
|
|
2631
|
+
return pulumi.get(self, "volume_mounts")
|
|
2632
|
+
|
|
2633
|
+
|
|
2634
|
+
@pulumi.output_type
|
|
2635
|
+
class NGroupCGPropertyVolumeResponse(dict):
|
|
2636
|
+
"""
|
|
2637
|
+
Contains information about the volumes that can be mounted by Containers in the Container Groups.
|
|
2638
|
+
"""
|
|
2639
|
+
@staticmethod
|
|
2640
|
+
def __key_warning(key: str):
|
|
2641
|
+
suggest = None
|
|
2642
|
+
if key == "azureFile":
|
|
2643
|
+
suggest = "azure_file"
|
|
2644
|
+
|
|
2645
|
+
if suggest:
|
|
2646
|
+
pulumi.log.warn(f"Key '{key}' not found in NGroupCGPropertyVolumeResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2647
|
+
|
|
2648
|
+
def __getitem__(self, key: str) -> Any:
|
|
2649
|
+
NGroupCGPropertyVolumeResponse.__key_warning(key)
|
|
2650
|
+
return super().__getitem__(key)
|
|
2651
|
+
|
|
2652
|
+
def get(self, key: str, default = None) -> Any:
|
|
2653
|
+
NGroupCGPropertyVolumeResponse.__key_warning(key)
|
|
2654
|
+
return super().get(key, default)
|
|
2655
|
+
|
|
2656
|
+
def __init__(__self__, *,
|
|
2657
|
+
name: str,
|
|
2658
|
+
azure_file: Optional['outputs.AzureFileVolumeResponse'] = None):
|
|
2659
|
+
"""
|
|
2660
|
+
Contains information about the volumes that can be mounted by Containers in the Container Groups.
|
|
2661
|
+
:param str name: The name of the volume.
|
|
2662
|
+
:param 'AzureFileVolumeResponse' azure_file: The Azure File volume.
|
|
2663
|
+
"""
|
|
2664
|
+
pulumi.set(__self__, "name", name)
|
|
2665
|
+
if azure_file is not None:
|
|
2666
|
+
pulumi.set(__self__, "azure_file", azure_file)
|
|
2667
|
+
|
|
2668
|
+
@property
|
|
2669
|
+
@pulumi.getter
|
|
2670
|
+
def name(self) -> str:
|
|
2671
|
+
"""
|
|
2672
|
+
The name of the volume.
|
|
2673
|
+
"""
|
|
2674
|
+
return pulumi.get(self, "name")
|
|
2675
|
+
|
|
2676
|
+
@property
|
|
2677
|
+
@pulumi.getter(name="azureFile")
|
|
2678
|
+
def azure_file(self) -> Optional['outputs.AzureFileVolumeResponse']:
|
|
2679
|
+
"""
|
|
2680
|
+
The Azure File volume.
|
|
2681
|
+
"""
|
|
2682
|
+
return pulumi.get(self, "azure_file")
|
|
2683
|
+
|
|
2684
|
+
|
|
2685
|
+
@pulumi.output_type
|
|
2686
|
+
class NGroupContainerGroupPropertiesResponse(dict):
|
|
2687
|
+
"""
|
|
2688
|
+
Container Group properties which can be set while creating or updating the NGroups.
|
|
2689
|
+
"""
|
|
2690
|
+
@staticmethod
|
|
2691
|
+
def __key_warning(key: str):
|
|
2692
|
+
suggest = None
|
|
2693
|
+
if key == "subnetIds":
|
|
2694
|
+
suggest = "subnet_ids"
|
|
2695
|
+
|
|
2696
|
+
if suggest:
|
|
2697
|
+
pulumi.log.warn(f"Key '{key}' not found in NGroupContainerGroupPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2698
|
+
|
|
2699
|
+
def __getitem__(self, key: str) -> Any:
|
|
2700
|
+
NGroupContainerGroupPropertiesResponse.__key_warning(key)
|
|
2701
|
+
return super().__getitem__(key)
|
|
2702
|
+
|
|
2703
|
+
def get(self, key: str, default = None) -> Any:
|
|
2704
|
+
NGroupContainerGroupPropertiesResponse.__key_warning(key)
|
|
2705
|
+
return super().get(key, default)
|
|
2706
|
+
|
|
2707
|
+
def __init__(__self__, *,
|
|
2708
|
+
containers: Optional[Sequence['outputs.NGroupCGPropertyContainerResponse']] = None,
|
|
2709
|
+
subnet_ids: Optional[Sequence['outputs.ContainerGroupSubnetIdResponse']] = None,
|
|
2710
|
+
volumes: Optional[Sequence['outputs.NGroupCGPropertyVolumeResponse']] = None):
|
|
2711
|
+
"""
|
|
2712
|
+
Container Group properties which can be set while creating or updating the NGroups.
|
|
2713
|
+
:param Sequence['NGroupCGPropertyContainerResponse'] containers: Contains information about Container which can be set while creating or updating the NGroups.
|
|
2714
|
+
:param Sequence['ContainerGroupSubnetIdResponse'] subnet_ids: Contains information about Virtual Network Subnet ARM Resource
|
|
2715
|
+
:param Sequence['NGroupCGPropertyVolumeResponse'] volumes: Contains information about the volumes that can be mounted by Containers in the Container Groups.
|
|
2716
|
+
"""
|
|
2717
|
+
if containers is not None:
|
|
2718
|
+
pulumi.set(__self__, "containers", containers)
|
|
2719
|
+
if subnet_ids is not None:
|
|
2720
|
+
pulumi.set(__self__, "subnet_ids", subnet_ids)
|
|
2721
|
+
if volumes is not None:
|
|
2722
|
+
pulumi.set(__self__, "volumes", volumes)
|
|
2723
|
+
|
|
2724
|
+
@property
|
|
2725
|
+
@pulumi.getter
|
|
2726
|
+
def containers(self) -> Optional[Sequence['outputs.NGroupCGPropertyContainerResponse']]:
|
|
2727
|
+
"""
|
|
2728
|
+
Contains information about Container which can be set while creating or updating the NGroups.
|
|
2729
|
+
"""
|
|
2730
|
+
return pulumi.get(self, "containers")
|
|
2731
|
+
|
|
2732
|
+
@property
|
|
2733
|
+
@pulumi.getter(name="subnetIds")
|
|
2734
|
+
def subnet_ids(self) -> Optional[Sequence['outputs.ContainerGroupSubnetIdResponse']]:
|
|
2735
|
+
"""
|
|
2736
|
+
Contains information about Virtual Network Subnet ARM Resource
|
|
2737
|
+
"""
|
|
2738
|
+
return pulumi.get(self, "subnet_ids")
|
|
2739
|
+
|
|
2740
|
+
@property
|
|
2741
|
+
@pulumi.getter
|
|
2742
|
+
def volumes(self) -> Optional[Sequence['outputs.NGroupCGPropertyVolumeResponse']]:
|
|
2743
|
+
"""
|
|
2744
|
+
Contains information about the volumes that can be mounted by Containers in the Container Groups.
|
|
2745
|
+
"""
|
|
2746
|
+
return pulumi.get(self, "volumes")
|
|
2747
|
+
|
|
2748
|
+
|
|
2749
|
+
@pulumi.output_type
|
|
2750
|
+
class NGroupIdentityResponse(dict):
|
|
2751
|
+
"""
|
|
2752
|
+
Identity for the NGroup.
|
|
2753
|
+
"""
|
|
2754
|
+
@staticmethod
|
|
2755
|
+
def __key_warning(key: str):
|
|
2756
|
+
suggest = None
|
|
2757
|
+
if key == "principalId":
|
|
2758
|
+
suggest = "principal_id"
|
|
2759
|
+
elif key == "tenantId":
|
|
2760
|
+
suggest = "tenant_id"
|
|
2761
|
+
elif key == "userAssignedIdentities":
|
|
2762
|
+
suggest = "user_assigned_identities"
|
|
2763
|
+
|
|
2764
|
+
if suggest:
|
|
2765
|
+
pulumi.log.warn(f"Key '{key}' not found in NGroupIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2766
|
+
|
|
2767
|
+
def __getitem__(self, key: str) -> Any:
|
|
2768
|
+
NGroupIdentityResponse.__key_warning(key)
|
|
2769
|
+
return super().__getitem__(key)
|
|
2770
|
+
|
|
2771
|
+
def get(self, key: str, default = None) -> Any:
|
|
2772
|
+
NGroupIdentityResponse.__key_warning(key)
|
|
2773
|
+
return super().get(key, default)
|
|
2774
|
+
|
|
2775
|
+
def __init__(__self__, *,
|
|
2776
|
+
principal_id: str,
|
|
2777
|
+
tenant_id: str,
|
|
2778
|
+
type: Optional[str] = None,
|
|
2779
|
+
user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentitiesResponse']] = None):
|
|
2780
|
+
"""
|
|
2781
|
+
Identity for the NGroup.
|
|
2782
|
+
:param str principal_id: The principal id of the NGroup identity. This property will only be provided for a system assigned identity.
|
|
2783
|
+
:param str tenant_id: The tenant id associated with the NGroup. This property will only be provided for a system assigned identity.
|
|
2784
|
+
:param str type: The type of identity used for the NGroup. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the NGroup.
|
|
2785
|
+
:param Mapping[str, 'UserAssignedIdentitiesResponse'] user_assigned_identities: The list of user identities associated with the NGroup.
|
|
2786
|
+
"""
|
|
2787
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
2788
|
+
pulumi.set(__self__, "tenant_id", tenant_id)
|
|
2789
|
+
if type is not None:
|
|
2790
|
+
pulumi.set(__self__, "type", type)
|
|
2791
|
+
if user_assigned_identities is not None:
|
|
2792
|
+
pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
|
|
2793
|
+
|
|
2794
|
+
@property
|
|
2795
|
+
@pulumi.getter(name="principalId")
|
|
2796
|
+
def principal_id(self) -> str:
|
|
2797
|
+
"""
|
|
2798
|
+
The principal id of the NGroup identity. This property will only be provided for a system assigned identity.
|
|
2799
|
+
"""
|
|
2800
|
+
return pulumi.get(self, "principal_id")
|
|
2801
|
+
|
|
2802
|
+
@property
|
|
2803
|
+
@pulumi.getter(name="tenantId")
|
|
2804
|
+
def tenant_id(self) -> str:
|
|
2805
|
+
"""
|
|
2806
|
+
The tenant id associated with the NGroup. This property will only be provided for a system assigned identity.
|
|
2807
|
+
"""
|
|
2808
|
+
return pulumi.get(self, "tenant_id")
|
|
2809
|
+
|
|
2810
|
+
@property
|
|
2811
|
+
@pulumi.getter
|
|
2812
|
+
def type(self) -> Optional[str]:
|
|
2813
|
+
"""
|
|
2814
|
+
The type of identity used for the NGroup. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the NGroup.
|
|
2815
|
+
"""
|
|
2816
|
+
return pulumi.get(self, "type")
|
|
2817
|
+
|
|
2818
|
+
@property
|
|
2819
|
+
@pulumi.getter(name="userAssignedIdentities")
|
|
2820
|
+
def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentitiesResponse']]:
|
|
2821
|
+
"""
|
|
2822
|
+
The list of user identities associated with the NGroup.
|
|
2823
|
+
"""
|
|
2824
|
+
return pulumi.get(self, "user_assigned_identities")
|
|
2825
|
+
|
|
2826
|
+
|
|
2827
|
+
@pulumi.output_type
|
|
2828
|
+
class NetworkProfileResponse(dict):
|
|
2829
|
+
"""
|
|
2830
|
+
A network profile for network settings of a ContainerGroupProfile. Used to manage load balancer and application gateway backend pools, specifically updating the IP addresses of CGs within the backend pool.
|
|
2831
|
+
"""
|
|
2832
|
+
@staticmethod
|
|
2833
|
+
def __key_warning(key: str):
|
|
2834
|
+
suggest = None
|
|
2835
|
+
if key == "applicationGateway":
|
|
2836
|
+
suggest = "application_gateway"
|
|
2837
|
+
elif key == "loadBalancer":
|
|
2838
|
+
suggest = "load_balancer"
|
|
2839
|
+
|
|
2840
|
+
if suggest:
|
|
2841
|
+
pulumi.log.warn(f"Key '{key}' not found in NetworkProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2842
|
+
|
|
2843
|
+
def __getitem__(self, key: str) -> Any:
|
|
2844
|
+
NetworkProfileResponse.__key_warning(key)
|
|
2845
|
+
return super().__getitem__(key)
|
|
2846
|
+
|
|
2847
|
+
def get(self, key: str, default = None) -> Any:
|
|
2848
|
+
NetworkProfileResponse.__key_warning(key)
|
|
2849
|
+
return super().get(key, default)
|
|
2850
|
+
|
|
2851
|
+
def __init__(__self__, *,
|
|
2852
|
+
application_gateway: Optional['outputs.ApplicationGatewayResponse'] = None,
|
|
2853
|
+
load_balancer: Optional['outputs.LoadBalancerResponse'] = None):
|
|
2854
|
+
"""
|
|
2855
|
+
A network profile for network settings of a ContainerGroupProfile. Used to manage load balancer and application gateway backend pools, specifically updating the IP addresses of CGs within the backend pool.
|
|
2856
|
+
:param 'ApplicationGatewayResponse' application_gateway: Application Gateway the CG profile will use to interact with CGs in a backend pool
|
|
2857
|
+
:param 'LoadBalancerResponse' load_balancer: LoadBalancer the CG profile will use to interact with CGs in a backend pool
|
|
2858
|
+
"""
|
|
2859
|
+
if application_gateway is not None:
|
|
2860
|
+
pulumi.set(__self__, "application_gateway", application_gateway)
|
|
2861
|
+
if load_balancer is not None:
|
|
2862
|
+
pulumi.set(__self__, "load_balancer", load_balancer)
|
|
2863
|
+
|
|
2864
|
+
@property
|
|
2865
|
+
@pulumi.getter(name="applicationGateway")
|
|
2866
|
+
def application_gateway(self) -> Optional['outputs.ApplicationGatewayResponse']:
|
|
2867
|
+
"""
|
|
2868
|
+
Application Gateway the CG profile will use to interact with CGs in a backend pool
|
|
2869
|
+
"""
|
|
2870
|
+
return pulumi.get(self, "application_gateway")
|
|
2871
|
+
|
|
2872
|
+
@property
|
|
2873
|
+
@pulumi.getter(name="loadBalancer")
|
|
2874
|
+
def load_balancer(self) -> Optional['outputs.LoadBalancerResponse']:
|
|
2875
|
+
"""
|
|
2876
|
+
LoadBalancer the CG profile will use to interact with CGs in a backend pool
|
|
2877
|
+
"""
|
|
2878
|
+
return pulumi.get(self, "load_balancer")
|
|
2879
|
+
|
|
2880
|
+
|
|
2881
|
+
@pulumi.output_type
|
|
2882
|
+
class PlacementProfileResponse(dict):
|
|
2883
|
+
"""
|
|
2884
|
+
Provides options w.r.t allocation and management w.r.t certain placement policies. These utilize capabilities provided by the underlying Azure infrastructure. They are typically used for high availability scenarios. E.g., distributing CGs across fault domains.
|
|
2885
|
+
"""
|
|
2886
|
+
@staticmethod
|
|
2887
|
+
def __key_warning(key: str):
|
|
2888
|
+
suggest = None
|
|
2889
|
+
if key == "faultDomainCount":
|
|
2890
|
+
suggest = "fault_domain_count"
|
|
2891
|
+
|
|
2892
|
+
if suggest:
|
|
2893
|
+
pulumi.log.warn(f"Key '{key}' not found in PlacementProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2894
|
+
|
|
2895
|
+
def __getitem__(self, key: str) -> Any:
|
|
2896
|
+
PlacementProfileResponse.__key_warning(key)
|
|
2897
|
+
return super().__getitem__(key)
|
|
2898
|
+
|
|
2899
|
+
def get(self, key: str, default = None) -> Any:
|
|
2900
|
+
PlacementProfileResponse.__key_warning(key)
|
|
2901
|
+
return super().get(key, default)
|
|
2902
|
+
|
|
2903
|
+
def __init__(__self__, *,
|
|
2904
|
+
fault_domain_count: Optional[int] = None):
|
|
2905
|
+
"""
|
|
2906
|
+
Provides options w.r.t allocation and management w.r.t certain placement policies. These utilize capabilities provided by the underlying Azure infrastructure. They are typically used for high availability scenarios. E.g., distributing CGs across fault domains.
|
|
2907
|
+
:param int fault_domain_count: The number of fault domains to be used to spread CGs in the NGroups resource. This can only be specified during NGroup creation and is immutable after that.
|
|
2908
|
+
"""
|
|
2909
|
+
if fault_domain_count is not None:
|
|
2910
|
+
pulumi.set(__self__, "fault_domain_count", fault_domain_count)
|
|
2911
|
+
|
|
2912
|
+
@property
|
|
2913
|
+
@pulumi.getter(name="faultDomainCount")
|
|
2914
|
+
def fault_domain_count(self) -> Optional[int]:
|
|
2915
|
+
"""
|
|
2916
|
+
The number of fault domains to be used to spread CGs in the NGroups resource. This can only be specified during NGroup creation and is immutable after that.
|
|
2917
|
+
"""
|
|
2918
|
+
return pulumi.get(self, "fault_domain_count")
|
|
2919
|
+
|
|
2920
|
+
|
|
2921
|
+
@pulumi.output_type
|
|
2922
|
+
class PortResponse(dict):
|
|
2923
|
+
"""
|
|
2924
|
+
The port exposed on the container group.
|
|
2925
|
+
"""
|
|
2926
|
+
def __init__(__self__, *,
|
|
2927
|
+
port: int,
|
|
2928
|
+
protocol: Optional[str] = None):
|
|
2929
|
+
"""
|
|
2930
|
+
The port exposed on the container group.
|
|
2931
|
+
:param int port: The port number.
|
|
2932
|
+
:param str protocol: The protocol associated with the port.
|
|
2933
|
+
"""
|
|
2934
|
+
pulumi.set(__self__, "port", port)
|
|
2935
|
+
if protocol is not None:
|
|
2936
|
+
pulumi.set(__self__, "protocol", protocol)
|
|
2937
|
+
|
|
2938
|
+
@property
|
|
2939
|
+
@pulumi.getter
|
|
2940
|
+
def port(self) -> int:
|
|
2941
|
+
"""
|
|
2942
|
+
The port number.
|
|
2943
|
+
"""
|
|
2944
|
+
return pulumi.get(self, "port")
|
|
2945
|
+
|
|
2946
|
+
@property
|
|
2947
|
+
@pulumi.getter
|
|
2948
|
+
def protocol(self) -> Optional[str]:
|
|
2949
|
+
"""
|
|
2950
|
+
The protocol associated with the port.
|
|
2951
|
+
"""
|
|
2952
|
+
return pulumi.get(self, "protocol")
|
|
2953
|
+
|
|
2954
|
+
|
|
2955
|
+
@pulumi.output_type
|
|
2956
|
+
class ResourceLimitsResponse(dict):
|
|
2957
|
+
"""
|
|
2958
|
+
The resource limits.
|
|
2959
|
+
"""
|
|
2960
|
+
@staticmethod
|
|
2961
|
+
def __key_warning(key: str):
|
|
2962
|
+
suggest = None
|
|
2963
|
+
if key == "memoryInGB":
|
|
2964
|
+
suggest = "memory_in_gb"
|
|
2965
|
+
|
|
2966
|
+
if suggest:
|
|
2967
|
+
pulumi.log.warn(f"Key '{key}' not found in ResourceLimitsResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2968
|
+
|
|
2969
|
+
def __getitem__(self, key: str) -> Any:
|
|
2970
|
+
ResourceLimitsResponse.__key_warning(key)
|
|
2971
|
+
return super().__getitem__(key)
|
|
2972
|
+
|
|
2973
|
+
def get(self, key: str, default = None) -> Any:
|
|
2974
|
+
ResourceLimitsResponse.__key_warning(key)
|
|
2975
|
+
return super().get(key, default)
|
|
2976
|
+
|
|
2977
|
+
def __init__(__self__, *,
|
|
2978
|
+
cpu: Optional[float] = None,
|
|
2979
|
+
gpu: Optional['outputs.GpuResourceResponse'] = None,
|
|
2980
|
+
memory_in_gb: Optional[float] = None):
|
|
2981
|
+
"""
|
|
2982
|
+
The resource limits.
|
|
2983
|
+
:param float cpu: The CPU limit of this container instance.
|
|
2984
|
+
:param 'GpuResourceResponse' gpu: The GPU limit of this container instance.
|
|
2985
|
+
:param float memory_in_gb: The memory limit in GB of this container instance.
|
|
2986
|
+
"""
|
|
2987
|
+
if cpu is not None:
|
|
2988
|
+
pulumi.set(__self__, "cpu", cpu)
|
|
2989
|
+
if gpu is not None:
|
|
2990
|
+
pulumi.set(__self__, "gpu", gpu)
|
|
2991
|
+
if memory_in_gb is not None:
|
|
2992
|
+
pulumi.set(__self__, "memory_in_gb", memory_in_gb)
|
|
2993
|
+
|
|
2994
|
+
@property
|
|
2995
|
+
@pulumi.getter
|
|
2996
|
+
def cpu(self) -> Optional[float]:
|
|
2997
|
+
"""
|
|
2998
|
+
The CPU limit of this container instance.
|
|
2999
|
+
"""
|
|
3000
|
+
return pulumi.get(self, "cpu")
|
|
3001
|
+
|
|
3002
|
+
@property
|
|
3003
|
+
@pulumi.getter
|
|
3004
|
+
def gpu(self) -> Optional['outputs.GpuResourceResponse']:
|
|
3005
|
+
"""
|
|
3006
|
+
The GPU limit of this container instance.
|
|
3007
|
+
"""
|
|
3008
|
+
return pulumi.get(self, "gpu")
|
|
3009
|
+
|
|
3010
|
+
@property
|
|
3011
|
+
@pulumi.getter(name="memoryInGB")
|
|
3012
|
+
def memory_in_gb(self) -> Optional[float]:
|
|
3013
|
+
"""
|
|
3014
|
+
The memory limit in GB of this container instance.
|
|
3015
|
+
"""
|
|
3016
|
+
return pulumi.get(self, "memory_in_gb")
|
|
3017
|
+
|
|
3018
|
+
|
|
3019
|
+
@pulumi.output_type
|
|
3020
|
+
class ResourceRequestsResponse(dict):
|
|
3021
|
+
"""
|
|
3022
|
+
The resource requests.
|
|
3023
|
+
"""
|
|
3024
|
+
@staticmethod
|
|
3025
|
+
def __key_warning(key: str):
|
|
3026
|
+
suggest = None
|
|
3027
|
+
if key == "memoryInGB":
|
|
3028
|
+
suggest = "memory_in_gb"
|
|
3029
|
+
|
|
3030
|
+
if suggest:
|
|
3031
|
+
pulumi.log.warn(f"Key '{key}' not found in ResourceRequestsResponse. Access the value via the '{suggest}' property getter instead.")
|
|
3032
|
+
|
|
3033
|
+
def __getitem__(self, key: str) -> Any:
|
|
3034
|
+
ResourceRequestsResponse.__key_warning(key)
|
|
3035
|
+
return super().__getitem__(key)
|
|
3036
|
+
|
|
3037
|
+
def get(self, key: str, default = None) -> Any:
|
|
3038
|
+
ResourceRequestsResponse.__key_warning(key)
|
|
3039
|
+
return super().get(key, default)
|
|
3040
|
+
|
|
3041
|
+
def __init__(__self__, *,
|
|
3042
|
+
cpu: float,
|
|
3043
|
+
memory_in_gb: float,
|
|
3044
|
+
gpu: Optional['outputs.GpuResourceResponse'] = None):
|
|
3045
|
+
"""
|
|
3046
|
+
The resource requests.
|
|
3047
|
+
:param float cpu: The CPU request of this container instance.
|
|
3048
|
+
:param float memory_in_gb: The memory request in GB of this container instance.
|
|
3049
|
+
:param 'GpuResourceResponse' gpu: The GPU request of this container instance.
|
|
3050
|
+
"""
|
|
3051
|
+
pulumi.set(__self__, "cpu", cpu)
|
|
3052
|
+
pulumi.set(__self__, "memory_in_gb", memory_in_gb)
|
|
3053
|
+
if gpu is not None:
|
|
3054
|
+
pulumi.set(__self__, "gpu", gpu)
|
|
3055
|
+
|
|
3056
|
+
@property
|
|
3057
|
+
@pulumi.getter
|
|
3058
|
+
def cpu(self) -> float:
|
|
3059
|
+
"""
|
|
3060
|
+
The CPU request of this container instance.
|
|
3061
|
+
"""
|
|
3062
|
+
return pulumi.get(self, "cpu")
|
|
3063
|
+
|
|
3064
|
+
@property
|
|
3065
|
+
@pulumi.getter(name="memoryInGB")
|
|
3066
|
+
def memory_in_gb(self) -> float:
|
|
3067
|
+
"""
|
|
3068
|
+
The memory request in GB of this container instance.
|
|
3069
|
+
"""
|
|
3070
|
+
return pulumi.get(self, "memory_in_gb")
|
|
3071
|
+
|
|
3072
|
+
@property
|
|
3073
|
+
@pulumi.getter
|
|
3074
|
+
def gpu(self) -> Optional['outputs.GpuResourceResponse']:
|
|
3075
|
+
"""
|
|
3076
|
+
The GPU request of this container instance.
|
|
3077
|
+
"""
|
|
3078
|
+
return pulumi.get(self, "gpu")
|
|
3079
|
+
|
|
3080
|
+
|
|
3081
|
+
@pulumi.output_type
|
|
3082
|
+
class ResourceRequirementsResponse(dict):
|
|
3083
|
+
"""
|
|
3084
|
+
The resource requirements.
|
|
3085
|
+
"""
|
|
3086
|
+
def __init__(__self__, *,
|
|
3087
|
+
requests: 'outputs.ResourceRequestsResponse',
|
|
3088
|
+
limits: Optional['outputs.ResourceLimitsResponse'] = None):
|
|
3089
|
+
"""
|
|
3090
|
+
The resource requirements.
|
|
3091
|
+
:param 'ResourceRequestsResponse' requests: The resource requests of this container instance.
|
|
3092
|
+
:param 'ResourceLimitsResponse' limits: The resource limits of this container instance.
|
|
3093
|
+
"""
|
|
3094
|
+
pulumi.set(__self__, "requests", requests)
|
|
3095
|
+
if limits is not None:
|
|
3096
|
+
pulumi.set(__self__, "limits", limits)
|
|
3097
|
+
|
|
3098
|
+
@property
|
|
3099
|
+
@pulumi.getter
|
|
3100
|
+
def requests(self) -> 'outputs.ResourceRequestsResponse':
|
|
3101
|
+
"""
|
|
3102
|
+
The resource requests of this container instance.
|
|
3103
|
+
"""
|
|
3104
|
+
return pulumi.get(self, "requests")
|
|
3105
|
+
|
|
3106
|
+
@property
|
|
3107
|
+
@pulumi.getter
|
|
3108
|
+
def limits(self) -> Optional['outputs.ResourceLimitsResponse']:
|
|
3109
|
+
"""
|
|
3110
|
+
The resource limits of this container instance.
|
|
3111
|
+
"""
|
|
3112
|
+
return pulumi.get(self, "limits")
|
|
3113
|
+
|
|
3114
|
+
|
|
3115
|
+
@pulumi.output_type
|
|
3116
|
+
class SecretReferenceResponse(dict):
|
|
3117
|
+
"""
|
|
3118
|
+
A secret reference
|
|
3119
|
+
"""
|
|
3120
|
+
@staticmethod
|
|
3121
|
+
def __key_warning(key: str):
|
|
3122
|
+
suggest = None
|
|
3123
|
+
if key == "secretReferenceUri":
|
|
3124
|
+
suggest = "secret_reference_uri"
|
|
3125
|
+
|
|
3126
|
+
if suggest:
|
|
3127
|
+
pulumi.log.warn(f"Key '{key}' not found in SecretReferenceResponse. Access the value via the '{suggest}' property getter instead.")
|
|
3128
|
+
|
|
3129
|
+
def __getitem__(self, key: str) -> Any:
|
|
3130
|
+
SecretReferenceResponse.__key_warning(key)
|
|
3131
|
+
return super().__getitem__(key)
|
|
3132
|
+
|
|
3133
|
+
def get(self, key: str, default = None) -> Any:
|
|
3134
|
+
SecretReferenceResponse.__key_warning(key)
|
|
3135
|
+
return super().get(key, default)
|
|
3136
|
+
|
|
3137
|
+
def __init__(__self__, *,
|
|
3138
|
+
identity: str,
|
|
3139
|
+
name: str,
|
|
3140
|
+
secret_reference_uri: str):
|
|
3141
|
+
"""
|
|
3142
|
+
A secret reference
|
|
3143
|
+
:param str identity: The ARM resource id of the managed identity that has access to the secret in the key vault
|
|
3144
|
+
:param str name: The identifier of the secret reference
|
|
3145
|
+
:param str secret_reference_uri: The URI to the secret in key vault
|
|
3146
|
+
"""
|
|
3147
|
+
pulumi.set(__self__, "identity", identity)
|
|
3148
|
+
pulumi.set(__self__, "name", name)
|
|
3149
|
+
pulumi.set(__self__, "secret_reference_uri", secret_reference_uri)
|
|
3150
|
+
|
|
3151
|
+
@property
|
|
3152
|
+
@pulumi.getter
|
|
3153
|
+
def identity(self) -> str:
|
|
3154
|
+
"""
|
|
3155
|
+
The ARM resource id of the managed identity that has access to the secret in the key vault
|
|
3156
|
+
"""
|
|
3157
|
+
return pulumi.get(self, "identity")
|
|
3158
|
+
|
|
3159
|
+
@property
|
|
3160
|
+
@pulumi.getter
|
|
3161
|
+
def name(self) -> str:
|
|
3162
|
+
"""
|
|
3163
|
+
The identifier of the secret reference
|
|
3164
|
+
"""
|
|
3165
|
+
return pulumi.get(self, "name")
|
|
3166
|
+
|
|
3167
|
+
@property
|
|
3168
|
+
@pulumi.getter(name="secretReferenceUri")
|
|
3169
|
+
def secret_reference_uri(self) -> str:
|
|
3170
|
+
"""
|
|
3171
|
+
The URI to the secret in key vault
|
|
3172
|
+
"""
|
|
3173
|
+
return pulumi.get(self, "secret_reference_uri")
|
|
3174
|
+
|
|
3175
|
+
|
|
3176
|
+
@pulumi.output_type
|
|
3177
|
+
class SecurityContextCapabilitiesDefinitionResponse(dict):
|
|
3178
|
+
"""
|
|
3179
|
+
The capabilities to add or drop from a container.
|
|
3180
|
+
"""
|
|
3181
|
+
def __init__(__self__, *,
|
|
3182
|
+
add: Optional[Sequence[str]] = None,
|
|
3183
|
+
drop: Optional[Sequence[str]] = None):
|
|
3184
|
+
"""
|
|
3185
|
+
The capabilities to add or drop from a container.
|
|
3186
|
+
:param Sequence[str] add: The capabilities to add to the container.
|
|
3187
|
+
:param Sequence[str] drop: The capabilities to drop from the container.
|
|
3188
|
+
"""
|
|
3189
|
+
if add is not None:
|
|
3190
|
+
pulumi.set(__self__, "add", add)
|
|
3191
|
+
if drop is not None:
|
|
3192
|
+
pulumi.set(__self__, "drop", drop)
|
|
3193
|
+
|
|
3194
|
+
@property
|
|
3195
|
+
@pulumi.getter
|
|
3196
|
+
def add(self) -> Optional[Sequence[str]]:
|
|
3197
|
+
"""
|
|
3198
|
+
The capabilities to add to the container.
|
|
3199
|
+
"""
|
|
3200
|
+
return pulumi.get(self, "add")
|
|
3201
|
+
|
|
3202
|
+
@property
|
|
3203
|
+
@pulumi.getter
|
|
3204
|
+
def drop(self) -> Optional[Sequence[str]]:
|
|
3205
|
+
"""
|
|
3206
|
+
The capabilities to drop from the container.
|
|
3207
|
+
"""
|
|
3208
|
+
return pulumi.get(self, "drop")
|
|
3209
|
+
|
|
3210
|
+
|
|
3211
|
+
@pulumi.output_type
|
|
3212
|
+
class SecurityContextDefinitionResponse(dict):
|
|
3213
|
+
"""
|
|
3214
|
+
The security context for the container.
|
|
3215
|
+
"""
|
|
3216
|
+
@staticmethod
|
|
3217
|
+
def __key_warning(key: str):
|
|
3218
|
+
suggest = None
|
|
3219
|
+
if key == "allowPrivilegeEscalation":
|
|
3220
|
+
suggest = "allow_privilege_escalation"
|
|
3221
|
+
elif key == "runAsGroup":
|
|
3222
|
+
suggest = "run_as_group"
|
|
3223
|
+
elif key == "runAsUser":
|
|
3224
|
+
suggest = "run_as_user"
|
|
3225
|
+
elif key == "seccompProfile":
|
|
3226
|
+
suggest = "seccomp_profile"
|
|
3227
|
+
|
|
3228
|
+
if suggest:
|
|
3229
|
+
pulumi.log.warn(f"Key '{key}' not found in SecurityContextDefinitionResponse. Access the value via the '{suggest}' property getter instead.")
|
|
3230
|
+
|
|
3231
|
+
def __getitem__(self, key: str) -> Any:
|
|
3232
|
+
SecurityContextDefinitionResponse.__key_warning(key)
|
|
3233
|
+
return super().__getitem__(key)
|
|
3234
|
+
|
|
3235
|
+
def get(self, key: str, default = None) -> Any:
|
|
3236
|
+
SecurityContextDefinitionResponse.__key_warning(key)
|
|
3237
|
+
return super().get(key, default)
|
|
3238
|
+
|
|
3239
|
+
def __init__(__self__, *,
|
|
3240
|
+
allow_privilege_escalation: Optional[bool] = None,
|
|
3241
|
+
capabilities: Optional['outputs.SecurityContextCapabilitiesDefinitionResponse'] = None,
|
|
3242
|
+
privileged: Optional[bool] = None,
|
|
3243
|
+
run_as_group: Optional[int] = None,
|
|
3244
|
+
run_as_user: Optional[int] = None,
|
|
3245
|
+
seccomp_profile: Optional[str] = None):
|
|
3246
|
+
"""
|
|
3247
|
+
The security context for the container.
|
|
3248
|
+
:param bool allow_privilege_escalation: A boolean value indicating whether the init process can elevate its privileges
|
|
3249
|
+
:param 'SecurityContextCapabilitiesDefinitionResponse' capabilities: The capabilities to add or drop from a container.
|
|
3250
|
+
:param bool privileged: The flag to determine if the container permissions is elevated to Privileged.
|
|
3251
|
+
:param int run_as_group: Sets the User GID for the container.
|
|
3252
|
+
:param int run_as_user: Sets the User UID for the container.
|
|
3253
|
+
:param str seccomp_profile: a base64 encoded string containing the contents of the JSON in the seccomp profile
|
|
3254
|
+
"""
|
|
3255
|
+
if allow_privilege_escalation is not None:
|
|
3256
|
+
pulumi.set(__self__, "allow_privilege_escalation", allow_privilege_escalation)
|
|
3257
|
+
if capabilities is not None:
|
|
3258
|
+
pulumi.set(__self__, "capabilities", capabilities)
|
|
3259
|
+
if privileged is not None:
|
|
3260
|
+
pulumi.set(__self__, "privileged", privileged)
|
|
3261
|
+
if run_as_group is not None:
|
|
3262
|
+
pulumi.set(__self__, "run_as_group", run_as_group)
|
|
3263
|
+
if run_as_user is not None:
|
|
3264
|
+
pulumi.set(__self__, "run_as_user", run_as_user)
|
|
3265
|
+
if seccomp_profile is not None:
|
|
3266
|
+
pulumi.set(__self__, "seccomp_profile", seccomp_profile)
|
|
3267
|
+
|
|
3268
|
+
@property
|
|
3269
|
+
@pulumi.getter(name="allowPrivilegeEscalation")
|
|
3270
|
+
def allow_privilege_escalation(self) -> Optional[bool]:
|
|
3271
|
+
"""
|
|
3272
|
+
A boolean value indicating whether the init process can elevate its privileges
|
|
3273
|
+
"""
|
|
3274
|
+
return pulumi.get(self, "allow_privilege_escalation")
|
|
3275
|
+
|
|
3276
|
+
@property
|
|
3277
|
+
@pulumi.getter
|
|
3278
|
+
def capabilities(self) -> Optional['outputs.SecurityContextCapabilitiesDefinitionResponse']:
|
|
3279
|
+
"""
|
|
3280
|
+
The capabilities to add or drop from a container.
|
|
3281
|
+
"""
|
|
3282
|
+
return pulumi.get(self, "capabilities")
|
|
3283
|
+
|
|
3284
|
+
@property
|
|
3285
|
+
@pulumi.getter
|
|
3286
|
+
def privileged(self) -> Optional[bool]:
|
|
3287
|
+
"""
|
|
3288
|
+
The flag to determine if the container permissions is elevated to Privileged.
|
|
3289
|
+
"""
|
|
3290
|
+
return pulumi.get(self, "privileged")
|
|
3291
|
+
|
|
3292
|
+
@property
|
|
3293
|
+
@pulumi.getter(name="runAsGroup")
|
|
3294
|
+
def run_as_group(self) -> Optional[int]:
|
|
3295
|
+
"""
|
|
3296
|
+
Sets the User GID for the container.
|
|
3297
|
+
"""
|
|
3298
|
+
return pulumi.get(self, "run_as_group")
|
|
3299
|
+
|
|
3300
|
+
@property
|
|
3301
|
+
@pulumi.getter(name="runAsUser")
|
|
3302
|
+
def run_as_user(self) -> Optional[int]:
|
|
3303
|
+
"""
|
|
3304
|
+
Sets the User UID for the container.
|
|
3305
|
+
"""
|
|
3306
|
+
return pulumi.get(self, "run_as_user")
|
|
3307
|
+
|
|
3308
|
+
@property
|
|
3309
|
+
@pulumi.getter(name="seccompProfile")
|
|
3310
|
+
def seccomp_profile(self) -> Optional[str]:
|
|
3311
|
+
"""
|
|
3312
|
+
a base64 encoded string containing the contents of the JSON in the seccomp profile
|
|
3313
|
+
"""
|
|
3314
|
+
return pulumi.get(self, "seccomp_profile")
|
|
3315
|
+
|
|
3316
|
+
|
|
3317
|
+
@pulumi.output_type
|
|
3318
|
+
class StorageProfileResponse(dict):
|
|
3319
|
+
"""
|
|
3320
|
+
Storage profile for storage related settings of a container group profile.
|
|
3321
|
+
"""
|
|
3322
|
+
@staticmethod
|
|
3323
|
+
def __key_warning(key: str):
|
|
3324
|
+
suggest = None
|
|
3325
|
+
if key == "fileShares":
|
|
3326
|
+
suggest = "file_shares"
|
|
3327
|
+
|
|
3328
|
+
if suggest:
|
|
3329
|
+
pulumi.log.warn(f"Key '{key}' not found in StorageProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
3330
|
+
|
|
3331
|
+
def __getitem__(self, key: str) -> Any:
|
|
3332
|
+
StorageProfileResponse.__key_warning(key)
|
|
3333
|
+
return super().__getitem__(key)
|
|
3334
|
+
|
|
3335
|
+
def get(self, key: str, default = None) -> Any:
|
|
3336
|
+
StorageProfileResponse.__key_warning(key)
|
|
3337
|
+
return super().get(key, default)
|
|
3338
|
+
|
|
3339
|
+
def __init__(__self__, *,
|
|
3340
|
+
file_shares: Optional[Sequence['outputs.FileShareResponse']] = None):
|
|
3341
|
+
"""
|
|
3342
|
+
Storage profile for storage related settings of a container group profile.
|
|
3343
|
+
"""
|
|
3344
|
+
if file_shares is not None:
|
|
3345
|
+
pulumi.set(__self__, "file_shares", file_shares)
|
|
3346
|
+
|
|
3347
|
+
@property
|
|
3348
|
+
@pulumi.getter(name="fileShares")
|
|
3349
|
+
def file_shares(self) -> Optional[Sequence['outputs.FileShareResponse']]:
|
|
3350
|
+
return pulumi.get(self, "file_shares")
|
|
3351
|
+
|
|
3352
|
+
|
|
3353
|
+
@pulumi.output_type
|
|
3354
|
+
class SystemDataResponse(dict):
|
|
3355
|
+
"""
|
|
3356
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
3357
|
+
"""
|
|
3358
|
+
@staticmethod
|
|
3359
|
+
def __key_warning(key: str):
|
|
3360
|
+
suggest = None
|
|
3361
|
+
if key == "createdAt":
|
|
3362
|
+
suggest = "created_at"
|
|
3363
|
+
elif key == "createdBy":
|
|
3364
|
+
suggest = "created_by"
|
|
3365
|
+
elif key == "createdByType":
|
|
3366
|
+
suggest = "created_by_type"
|
|
3367
|
+
elif key == "lastModifiedAt":
|
|
3368
|
+
suggest = "last_modified_at"
|
|
3369
|
+
elif key == "lastModifiedBy":
|
|
3370
|
+
suggest = "last_modified_by"
|
|
3371
|
+
elif key == "lastModifiedByType":
|
|
3372
|
+
suggest = "last_modified_by_type"
|
|
3373
|
+
|
|
3374
|
+
if suggest:
|
|
3375
|
+
pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
|
|
3376
|
+
|
|
3377
|
+
def __getitem__(self, key: str) -> Any:
|
|
3378
|
+
SystemDataResponse.__key_warning(key)
|
|
3379
|
+
return super().__getitem__(key)
|
|
3380
|
+
|
|
3381
|
+
def get(self, key: str, default = None) -> Any:
|
|
3382
|
+
SystemDataResponse.__key_warning(key)
|
|
3383
|
+
return super().get(key, default)
|
|
3384
|
+
|
|
3385
|
+
def __init__(__self__, *,
|
|
3386
|
+
created_at: Optional[str] = None,
|
|
3387
|
+
created_by: Optional[str] = None,
|
|
3388
|
+
created_by_type: Optional[str] = None,
|
|
3389
|
+
last_modified_at: Optional[str] = None,
|
|
3390
|
+
last_modified_by: Optional[str] = None,
|
|
3391
|
+
last_modified_by_type: Optional[str] = None):
|
|
3392
|
+
"""
|
|
3393
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
3394
|
+
:param str created_at: The timestamp of resource creation (UTC).
|
|
3395
|
+
:param str created_by: The identity that created the resource.
|
|
3396
|
+
:param str created_by_type: The type of identity that created the resource.
|
|
3397
|
+
:param str last_modified_at: The timestamp of resource last modification (UTC)
|
|
3398
|
+
:param str last_modified_by: The identity that last modified the resource.
|
|
3399
|
+
:param str last_modified_by_type: The type of identity that last modified the resource.
|
|
3400
|
+
"""
|
|
3401
|
+
if created_at is not None:
|
|
3402
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
3403
|
+
if created_by is not None:
|
|
3404
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
3405
|
+
if created_by_type is not None:
|
|
3406
|
+
pulumi.set(__self__, "created_by_type", created_by_type)
|
|
3407
|
+
if last_modified_at is not None:
|
|
3408
|
+
pulumi.set(__self__, "last_modified_at", last_modified_at)
|
|
3409
|
+
if last_modified_by is not None:
|
|
3410
|
+
pulumi.set(__self__, "last_modified_by", last_modified_by)
|
|
3411
|
+
if last_modified_by_type is not None:
|
|
3412
|
+
pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
|
|
3413
|
+
|
|
3414
|
+
@property
|
|
3415
|
+
@pulumi.getter(name="createdAt")
|
|
3416
|
+
def created_at(self) -> Optional[str]:
|
|
3417
|
+
"""
|
|
3418
|
+
The timestamp of resource creation (UTC).
|
|
3419
|
+
"""
|
|
3420
|
+
return pulumi.get(self, "created_at")
|
|
3421
|
+
|
|
3422
|
+
@property
|
|
3423
|
+
@pulumi.getter(name="createdBy")
|
|
3424
|
+
def created_by(self) -> Optional[str]:
|
|
3425
|
+
"""
|
|
3426
|
+
The identity that created the resource.
|
|
3427
|
+
"""
|
|
3428
|
+
return pulumi.get(self, "created_by")
|
|
3429
|
+
|
|
3430
|
+
@property
|
|
3431
|
+
@pulumi.getter(name="createdByType")
|
|
3432
|
+
def created_by_type(self) -> Optional[str]:
|
|
3433
|
+
"""
|
|
3434
|
+
The type of identity that created the resource.
|
|
3435
|
+
"""
|
|
3436
|
+
return pulumi.get(self, "created_by_type")
|
|
3437
|
+
|
|
3438
|
+
@property
|
|
3439
|
+
@pulumi.getter(name="lastModifiedAt")
|
|
3440
|
+
def last_modified_at(self) -> Optional[str]:
|
|
3441
|
+
"""
|
|
3442
|
+
The timestamp of resource last modification (UTC)
|
|
3443
|
+
"""
|
|
3444
|
+
return pulumi.get(self, "last_modified_at")
|
|
3445
|
+
|
|
3446
|
+
@property
|
|
3447
|
+
@pulumi.getter(name="lastModifiedBy")
|
|
3448
|
+
def last_modified_by(self) -> Optional[str]:
|
|
3449
|
+
"""
|
|
3450
|
+
The identity that last modified the resource.
|
|
3451
|
+
"""
|
|
3452
|
+
return pulumi.get(self, "last_modified_by")
|
|
3453
|
+
|
|
3454
|
+
@property
|
|
3455
|
+
@pulumi.getter(name="lastModifiedByType")
|
|
3456
|
+
def last_modified_by_type(self) -> Optional[str]:
|
|
3457
|
+
"""
|
|
3458
|
+
The type of identity that last modified the resource.
|
|
3459
|
+
"""
|
|
3460
|
+
return pulumi.get(self, "last_modified_by_type")
|
|
3461
|
+
|
|
3462
|
+
|
|
3463
|
+
@pulumi.output_type
|
|
3464
|
+
class UpdateProfileResponse(dict):
|
|
3465
|
+
"""
|
|
3466
|
+
Used by the customer to specify the way to update the Container Groups in NGroup.
|
|
3467
|
+
"""
|
|
3468
|
+
@staticmethod
|
|
3469
|
+
def __key_warning(key: str):
|
|
3470
|
+
suggest = None
|
|
3471
|
+
if key == "rollingUpdateProfile":
|
|
3472
|
+
suggest = "rolling_update_profile"
|
|
3473
|
+
elif key == "updateMode":
|
|
3474
|
+
suggest = "update_mode"
|
|
3475
|
+
|
|
3476
|
+
if suggest:
|
|
3477
|
+
pulumi.log.warn(f"Key '{key}' not found in UpdateProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
3478
|
+
|
|
3479
|
+
def __getitem__(self, key: str) -> Any:
|
|
3480
|
+
UpdateProfileResponse.__key_warning(key)
|
|
3481
|
+
return super().__getitem__(key)
|
|
3482
|
+
|
|
3483
|
+
def get(self, key: str, default = None) -> Any:
|
|
3484
|
+
UpdateProfileResponse.__key_warning(key)
|
|
3485
|
+
return super().get(key, default)
|
|
3486
|
+
|
|
3487
|
+
def __init__(__self__, *,
|
|
3488
|
+
rolling_update_profile: Optional['outputs.UpdateProfileResponseRollingUpdateProfile'] = None,
|
|
3489
|
+
update_mode: Optional[str] = None):
|
|
3490
|
+
"""
|
|
3491
|
+
Used by the customer to specify the way to update the Container Groups in NGroup.
|
|
3492
|
+
:param 'UpdateProfileResponseRollingUpdateProfile' rolling_update_profile: This profile allows the customers to customize the rolling update.
|
|
3493
|
+
"""
|
|
3494
|
+
if rolling_update_profile is not None:
|
|
3495
|
+
pulumi.set(__self__, "rolling_update_profile", rolling_update_profile)
|
|
3496
|
+
if update_mode is not None:
|
|
3497
|
+
pulumi.set(__self__, "update_mode", update_mode)
|
|
3498
|
+
|
|
3499
|
+
@property
|
|
3500
|
+
@pulumi.getter(name="rollingUpdateProfile")
|
|
3501
|
+
def rolling_update_profile(self) -> Optional['outputs.UpdateProfileResponseRollingUpdateProfile']:
|
|
3502
|
+
"""
|
|
3503
|
+
This profile allows the customers to customize the rolling update.
|
|
3504
|
+
"""
|
|
3505
|
+
return pulumi.get(self, "rolling_update_profile")
|
|
3506
|
+
|
|
3507
|
+
@property
|
|
3508
|
+
@pulumi.getter(name="updateMode")
|
|
3509
|
+
def update_mode(self) -> Optional[str]:
|
|
3510
|
+
return pulumi.get(self, "update_mode")
|
|
3511
|
+
|
|
3512
|
+
|
|
3513
|
+
@pulumi.output_type
|
|
3514
|
+
class UpdateProfileResponseRollingUpdateProfile(dict):
|
|
3515
|
+
"""
|
|
3516
|
+
This profile allows the customers to customize the rolling update.
|
|
3517
|
+
"""
|
|
3518
|
+
@staticmethod
|
|
3519
|
+
def __key_warning(key: str):
|
|
3520
|
+
suggest = None
|
|
3521
|
+
if key == "inPlaceUpdate":
|
|
3522
|
+
suggest = "in_place_update"
|
|
3523
|
+
elif key == "maxBatchPercent":
|
|
3524
|
+
suggest = "max_batch_percent"
|
|
3525
|
+
elif key == "maxUnhealthyPercent":
|
|
3526
|
+
suggest = "max_unhealthy_percent"
|
|
3527
|
+
elif key == "pauseTimeBetweenBatches":
|
|
3528
|
+
suggest = "pause_time_between_batches"
|
|
3529
|
+
|
|
3530
|
+
if suggest:
|
|
3531
|
+
pulumi.log.warn(f"Key '{key}' not found in UpdateProfileResponseRollingUpdateProfile. Access the value via the '{suggest}' property getter instead.")
|
|
3532
|
+
|
|
3533
|
+
def __getitem__(self, key: str) -> Any:
|
|
3534
|
+
UpdateProfileResponseRollingUpdateProfile.__key_warning(key)
|
|
3535
|
+
return super().__getitem__(key)
|
|
3536
|
+
|
|
3537
|
+
def get(self, key: str, default = None) -> Any:
|
|
3538
|
+
UpdateProfileResponseRollingUpdateProfile.__key_warning(key)
|
|
3539
|
+
return super().get(key, default)
|
|
3540
|
+
|
|
3541
|
+
def __init__(__self__, *,
|
|
3542
|
+
in_place_update: Optional[bool] = None,
|
|
3543
|
+
max_batch_percent: Optional[int] = None,
|
|
3544
|
+
max_unhealthy_percent: Optional[int] = None,
|
|
3545
|
+
pause_time_between_batches: Optional[str] = None):
|
|
3546
|
+
"""
|
|
3547
|
+
This profile allows the customers to customize the rolling update.
|
|
3548
|
+
:param bool in_place_update: Default is false. If set to true, the CGs will be updated in-place instead of creating new CG and deleting old ones.
|
|
3549
|
+
:param int max_batch_percent: Maximum percentage of total Container Groups which can be updated simultaneously by rolling update in one batch.
|
|
3550
|
+
:param int max_unhealthy_percent: Maximum percentage of the updated Container Groups which can be in unhealthy state after each batch is updated.
|
|
3551
|
+
:param str pause_time_between_batches: The wait time between batches after completing the one batch of the rolling update and starting the next batch. The time duration should be specified in ISO 8601 format for duration.
|
|
3552
|
+
"""
|
|
3553
|
+
if in_place_update is not None:
|
|
3554
|
+
pulumi.set(__self__, "in_place_update", in_place_update)
|
|
3555
|
+
if max_batch_percent is not None:
|
|
3556
|
+
pulumi.set(__self__, "max_batch_percent", max_batch_percent)
|
|
3557
|
+
if max_unhealthy_percent is not None:
|
|
3558
|
+
pulumi.set(__self__, "max_unhealthy_percent", max_unhealthy_percent)
|
|
3559
|
+
if pause_time_between_batches is not None:
|
|
3560
|
+
pulumi.set(__self__, "pause_time_between_batches", pause_time_between_batches)
|
|
3561
|
+
|
|
3562
|
+
@property
|
|
3563
|
+
@pulumi.getter(name="inPlaceUpdate")
|
|
3564
|
+
def in_place_update(self) -> Optional[bool]:
|
|
3565
|
+
"""
|
|
3566
|
+
Default is false. If set to true, the CGs will be updated in-place instead of creating new CG and deleting old ones.
|
|
3567
|
+
"""
|
|
3568
|
+
return pulumi.get(self, "in_place_update")
|
|
3569
|
+
|
|
3570
|
+
@property
|
|
3571
|
+
@pulumi.getter(name="maxBatchPercent")
|
|
3572
|
+
def max_batch_percent(self) -> Optional[int]:
|
|
3573
|
+
"""
|
|
3574
|
+
Maximum percentage of total Container Groups which can be updated simultaneously by rolling update in one batch.
|
|
3575
|
+
"""
|
|
3576
|
+
return pulumi.get(self, "max_batch_percent")
|
|
3577
|
+
|
|
3578
|
+
@property
|
|
3579
|
+
@pulumi.getter(name="maxUnhealthyPercent")
|
|
3580
|
+
def max_unhealthy_percent(self) -> Optional[int]:
|
|
3581
|
+
"""
|
|
3582
|
+
Maximum percentage of the updated Container Groups which can be in unhealthy state after each batch is updated.
|
|
3583
|
+
"""
|
|
3584
|
+
return pulumi.get(self, "max_unhealthy_percent")
|
|
3585
|
+
|
|
3586
|
+
@property
|
|
3587
|
+
@pulumi.getter(name="pauseTimeBetweenBatches")
|
|
3588
|
+
def pause_time_between_batches(self) -> Optional[str]:
|
|
3589
|
+
"""
|
|
3590
|
+
The wait time between batches after completing the one batch of the rolling update and starting the next batch. The time duration should be specified in ISO 8601 format for duration.
|
|
3591
|
+
"""
|
|
3592
|
+
return pulumi.get(self, "pause_time_between_batches")
|
|
3593
|
+
|
|
3594
|
+
|
|
3595
|
+
@pulumi.output_type
|
|
3596
|
+
class UserAssignedIdentitiesResponse(dict):
|
|
3597
|
+
"""
|
|
3598
|
+
The list of user identities associated with the container group. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
|
|
3599
|
+
"""
|
|
3600
|
+
@staticmethod
|
|
3601
|
+
def __key_warning(key: str):
|
|
3602
|
+
suggest = None
|
|
3603
|
+
if key == "clientId":
|
|
3604
|
+
suggest = "client_id"
|
|
3605
|
+
elif key == "principalId":
|
|
3606
|
+
suggest = "principal_id"
|
|
3607
|
+
|
|
3608
|
+
if suggest:
|
|
3609
|
+
pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentitiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
3610
|
+
|
|
3611
|
+
def __getitem__(self, key: str) -> Any:
|
|
3612
|
+
UserAssignedIdentitiesResponse.__key_warning(key)
|
|
3613
|
+
return super().__getitem__(key)
|
|
3614
|
+
|
|
3615
|
+
def get(self, key: str, default = None) -> Any:
|
|
3616
|
+
UserAssignedIdentitiesResponse.__key_warning(key)
|
|
3617
|
+
return super().get(key, default)
|
|
3618
|
+
|
|
3619
|
+
def __init__(__self__, *,
|
|
3620
|
+
client_id: str,
|
|
3621
|
+
principal_id: str):
|
|
3622
|
+
"""
|
|
3623
|
+
The list of user identities associated with the container group. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
|
|
3624
|
+
:param str client_id: The client id of user assigned identity.
|
|
3625
|
+
:param str principal_id: The principal id of user assigned identity.
|
|
3626
|
+
"""
|
|
3627
|
+
pulumi.set(__self__, "client_id", client_id)
|
|
3628
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
3629
|
+
|
|
3630
|
+
@property
|
|
3631
|
+
@pulumi.getter(name="clientId")
|
|
3632
|
+
def client_id(self) -> str:
|
|
3633
|
+
"""
|
|
3634
|
+
The client id of user assigned identity.
|
|
3635
|
+
"""
|
|
3636
|
+
return pulumi.get(self, "client_id")
|
|
3637
|
+
|
|
3638
|
+
@property
|
|
3639
|
+
@pulumi.getter(name="principalId")
|
|
3640
|
+
def principal_id(self) -> str:
|
|
3641
|
+
"""
|
|
3642
|
+
The principal id of user assigned identity.
|
|
3643
|
+
"""
|
|
3644
|
+
return pulumi.get(self, "principal_id")
|
|
3645
|
+
|
|
3646
|
+
|
|
3647
|
+
@pulumi.output_type
|
|
3648
|
+
class VolumeMountResponse(dict):
|
|
3649
|
+
"""
|
|
3650
|
+
The properties of the volume mount.
|
|
3651
|
+
"""
|
|
3652
|
+
@staticmethod
|
|
3653
|
+
def __key_warning(key: str):
|
|
3654
|
+
suggest = None
|
|
3655
|
+
if key == "mountPath":
|
|
3656
|
+
suggest = "mount_path"
|
|
3657
|
+
elif key == "readOnly":
|
|
3658
|
+
suggest = "read_only"
|
|
3659
|
+
|
|
3660
|
+
if suggest:
|
|
3661
|
+
pulumi.log.warn(f"Key '{key}' not found in VolumeMountResponse. Access the value via the '{suggest}' property getter instead.")
|
|
3662
|
+
|
|
3663
|
+
def __getitem__(self, key: str) -> Any:
|
|
3664
|
+
VolumeMountResponse.__key_warning(key)
|
|
3665
|
+
return super().__getitem__(key)
|
|
3666
|
+
|
|
3667
|
+
def get(self, key: str, default = None) -> Any:
|
|
3668
|
+
VolumeMountResponse.__key_warning(key)
|
|
3669
|
+
return super().get(key, default)
|
|
3670
|
+
|
|
3671
|
+
def __init__(__self__, *,
|
|
3672
|
+
mount_path: str,
|
|
3673
|
+
name: str,
|
|
3674
|
+
read_only: Optional[bool] = None):
|
|
3675
|
+
"""
|
|
3676
|
+
The properties of the volume mount.
|
|
3677
|
+
:param str mount_path: The path within the container where the volume should be mounted. Must not contain colon (:).
|
|
3678
|
+
:param str name: The name of the volume mount.
|
|
3679
|
+
:param bool read_only: The flag indicating whether the volume mount is read-only.
|
|
3680
|
+
"""
|
|
3681
|
+
pulumi.set(__self__, "mount_path", mount_path)
|
|
3682
|
+
pulumi.set(__self__, "name", name)
|
|
3683
|
+
if read_only is not None:
|
|
3684
|
+
pulumi.set(__self__, "read_only", read_only)
|
|
3685
|
+
|
|
3686
|
+
@property
|
|
3687
|
+
@pulumi.getter(name="mountPath")
|
|
3688
|
+
def mount_path(self) -> str:
|
|
3689
|
+
"""
|
|
3690
|
+
The path within the container where the volume should be mounted. Must not contain colon (:).
|
|
3691
|
+
"""
|
|
3692
|
+
return pulumi.get(self, "mount_path")
|
|
3693
|
+
|
|
3694
|
+
@property
|
|
3695
|
+
@pulumi.getter
|
|
3696
|
+
def name(self) -> str:
|
|
3697
|
+
"""
|
|
3698
|
+
The name of the volume mount.
|
|
3699
|
+
"""
|
|
3700
|
+
return pulumi.get(self, "name")
|
|
3701
|
+
|
|
3702
|
+
@property
|
|
3703
|
+
@pulumi.getter(name="readOnly")
|
|
3704
|
+
def read_only(self) -> Optional[bool]:
|
|
3705
|
+
"""
|
|
3706
|
+
The flag indicating whether the volume mount is read-only.
|
|
3707
|
+
"""
|
|
3708
|
+
return pulumi.get(self, "read_only")
|
|
3709
|
+
|
|
3710
|
+
|
|
3711
|
+
@pulumi.output_type
|
|
3712
|
+
class VolumeResponse(dict):
|
|
3713
|
+
"""
|
|
3714
|
+
The properties of the volume.
|
|
3715
|
+
"""
|
|
3716
|
+
@staticmethod
|
|
3717
|
+
def __key_warning(key: str):
|
|
3718
|
+
suggest = None
|
|
3719
|
+
if key == "azureFile":
|
|
3720
|
+
suggest = "azure_file"
|
|
3721
|
+
elif key == "emptyDir":
|
|
3722
|
+
suggest = "empty_dir"
|
|
3723
|
+
elif key == "gitRepo":
|
|
3724
|
+
suggest = "git_repo"
|
|
3725
|
+
elif key == "secretReference":
|
|
3726
|
+
suggest = "secret_reference"
|
|
3727
|
+
|
|
3728
|
+
if suggest:
|
|
3729
|
+
pulumi.log.warn(f"Key '{key}' not found in VolumeResponse. Access the value via the '{suggest}' property getter instead.")
|
|
3730
|
+
|
|
3731
|
+
def __getitem__(self, key: str) -> Any:
|
|
3732
|
+
VolumeResponse.__key_warning(key)
|
|
3733
|
+
return super().__getitem__(key)
|
|
3734
|
+
|
|
3735
|
+
def get(self, key: str, default = None) -> Any:
|
|
3736
|
+
VolumeResponse.__key_warning(key)
|
|
3737
|
+
return super().get(key, default)
|
|
3738
|
+
|
|
3739
|
+
def __init__(__self__, *,
|
|
3740
|
+
name: str,
|
|
3741
|
+
azure_file: Optional['outputs.AzureFileVolumeResponse'] = None,
|
|
3742
|
+
empty_dir: Optional[Any] = None,
|
|
3743
|
+
git_repo: Optional['outputs.GitRepoVolumeResponse'] = None,
|
|
3744
|
+
secret: Optional[Mapping[str, str]] = None,
|
|
3745
|
+
secret_reference: Optional[Mapping[str, str]] = None):
|
|
3746
|
+
"""
|
|
3747
|
+
The properties of the volume.
|
|
3748
|
+
:param str name: The name of the volume.
|
|
3749
|
+
:param 'AzureFileVolumeResponse' azure_file: The Azure File volume.
|
|
3750
|
+
:param Any empty_dir: The empty directory volume.
|
|
3751
|
+
:param 'GitRepoVolumeResponse' git_repo: The git repo volume.
|
|
3752
|
+
:param Mapping[str, str] secret: The secret volume.
|
|
3753
|
+
:param Mapping[str, str] secret_reference: The secret reference volume.
|
|
3754
|
+
"""
|
|
3755
|
+
pulumi.set(__self__, "name", name)
|
|
3756
|
+
if azure_file is not None:
|
|
3757
|
+
pulumi.set(__self__, "azure_file", azure_file)
|
|
3758
|
+
if empty_dir is not None:
|
|
3759
|
+
pulumi.set(__self__, "empty_dir", empty_dir)
|
|
3760
|
+
if git_repo is not None:
|
|
3761
|
+
pulumi.set(__self__, "git_repo", git_repo)
|
|
3762
|
+
if secret is not None:
|
|
3763
|
+
pulumi.set(__self__, "secret", secret)
|
|
3764
|
+
if secret_reference is not None:
|
|
3765
|
+
pulumi.set(__self__, "secret_reference", secret_reference)
|
|
3766
|
+
|
|
3767
|
+
@property
|
|
3768
|
+
@pulumi.getter
|
|
3769
|
+
def name(self) -> str:
|
|
3770
|
+
"""
|
|
3771
|
+
The name of the volume.
|
|
3772
|
+
"""
|
|
3773
|
+
return pulumi.get(self, "name")
|
|
3774
|
+
|
|
3775
|
+
@property
|
|
3776
|
+
@pulumi.getter(name="azureFile")
|
|
3777
|
+
def azure_file(self) -> Optional['outputs.AzureFileVolumeResponse']:
|
|
3778
|
+
"""
|
|
3779
|
+
The Azure File volume.
|
|
3780
|
+
"""
|
|
3781
|
+
return pulumi.get(self, "azure_file")
|
|
3782
|
+
|
|
3783
|
+
@property
|
|
3784
|
+
@pulumi.getter(name="emptyDir")
|
|
3785
|
+
def empty_dir(self) -> Optional[Any]:
|
|
3786
|
+
"""
|
|
3787
|
+
The empty directory volume.
|
|
3788
|
+
"""
|
|
3789
|
+
return pulumi.get(self, "empty_dir")
|
|
3790
|
+
|
|
3791
|
+
@property
|
|
3792
|
+
@pulumi.getter(name="gitRepo")
|
|
3793
|
+
def git_repo(self) -> Optional['outputs.GitRepoVolumeResponse']:
|
|
3794
|
+
"""
|
|
3795
|
+
The git repo volume.
|
|
3796
|
+
"""
|
|
3797
|
+
return pulumi.get(self, "git_repo")
|
|
3798
|
+
|
|
3799
|
+
@property
|
|
3800
|
+
@pulumi.getter
|
|
3801
|
+
def secret(self) -> Optional[Mapping[str, str]]:
|
|
3802
|
+
"""
|
|
3803
|
+
The secret volume.
|
|
3804
|
+
"""
|
|
3805
|
+
return pulumi.get(self, "secret")
|
|
3806
|
+
|
|
3807
|
+
@property
|
|
3808
|
+
@pulumi.getter(name="secretReference")
|
|
3809
|
+
def secret_reference(self) -> Optional[Mapping[str, str]]:
|
|
3810
|
+
"""
|
|
3811
|
+
The secret reference volume.
|
|
3812
|
+
"""
|
|
3813
|
+
return pulumi.get(self, "secret_reference")
|
|
3814
|
+
|
|
3815
|
+
|