UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

100 lines (99 loc) 4.15 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Custom domain analysis. * * Uses Azure REST API version 2025-02-02-preview. * * Other available API versions: 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-07-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listContainerAppCustomHostNameAnalysis(args: ListContainerAppCustomHostNameAnalysisArgs, opts?: pulumi.InvokeOptions): Promise<ListContainerAppCustomHostNameAnalysisResult>; export interface ListContainerAppCustomHostNameAnalysisArgs { /** * Name of the Container App. */ containerAppName: string; /** * Custom hostname. */ customHostname?: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * Custom domain analysis. */ export interface ListContainerAppCustomHostNameAnalysisResult { /** * A records visible for this hostname. */ readonly aRecords?: string[]; /** * Alternate CName records visible for this hostname. */ readonly alternateCNameRecords?: string[]; /** * Alternate TXT records visible for this hostname. */ readonly alternateTxtRecords?: string[]; /** * CName records visible for this hostname. */ readonly cNameRecords?: string[]; /** * <code>true</code> if there is a conflict on the Container App's managed environment level custom domain; otherwise, <code>false</code>. */ readonly conflictWithEnvironmentCustomDomain: boolean; /** * Name of the conflicting Container App on the Managed Environment if it's within the same subscription. */ readonly conflictingContainerAppResourceId: string; /** * Raw failure information if DNS verification fails. */ readonly customDomainVerificationFailureInfo: outputs.app.CustomHostnameAnalysisResultResponseCustomDomainVerificationFailureInfo; /** * DNS verification test result. */ readonly customDomainVerificationTest: string; /** * <code>true</code> if there is a conflict on the Container App's managed environment; otherwise, <code>false</code>. */ readonly hasConflictOnManagedEnvironment: boolean; /** * Host name that was analyzed */ readonly hostName: string; /** * <code>true</code> if hostname is already verified; otherwise, <code>false</code>. */ readonly isHostnameAlreadyVerified: boolean; /** * TXT records visible for this hostname. */ readonly txtRecords?: string[]; } /** * Custom domain analysis. * * Uses Azure REST API version 2025-02-02-preview. * * Other available API versions: 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-07-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listContainerAppCustomHostNameAnalysisOutput(args: ListContainerAppCustomHostNameAnalysisOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListContainerAppCustomHostNameAnalysisResult>; export interface ListContainerAppCustomHostNameAnalysisOutputArgs { /** * Name of the Container App. */ containerAppName: pulumi.Input<string>; /** * Custom hostname. */ customHostname?: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }