Package version:

Interface CustomHostnameAnalysisResult

Custom domain analysis.

interface CustomHostnameAnalysisResult {
    alternateCNameRecords?: string[];
    alternateTxtRecords?: string[];
    aRecords?: string[];
    cNameRecords?: string[];
    conflictingContainerAppResourceId?: string;
    conflictWithEnvironmentCustomDomain?: boolean;
    customDomainVerificationFailureInfo?: CustomHostnameAnalysisResultCustomDomainVerificationFailureInfo;
    customDomainVerificationTest?: DnsVerificationTestResult;
    hasConflictOnManagedEnvironment?: boolean;
    hostName?: string;
    isHostnameAlreadyVerified?: boolean;
    txtRecords?: string[];
}

Properties

alternateCNameRecords?: string[]

Alternate CName records visible for this hostname.

alternateTxtRecords?: string[]

Alternate TXT records visible for this hostname.

aRecords?: string[]

A records visible for this hostname.

cNameRecords?: string[]

CName records visible for this hostname.

conflictingContainerAppResourceId?: string

Name of the conflicting Container App on the Managed Environment if it's within the same subscription. NOTE: This property will not be serialized. It can only be populated by the server.

conflictWithEnvironmentCustomDomain?: boolean

true if there is a conflict on the Container App's managed environment level custom domain; otherwise, false. NOTE: This property will not be serialized. It can only be populated by the server.

Raw failure information if DNS verification fails. NOTE: This property will not be serialized. It can only be populated by the server.

customDomainVerificationTest?: DnsVerificationTestResult

DNS verification test result. NOTE: This property will not be serialized. It can only be populated by the server.

hasConflictOnManagedEnvironment?: boolean

true if there is a conflict on the Container App's managed environment; otherwise, false. NOTE: This property will not be serialized. It can only be populated by the server.

hostName?: string

Host name that was analyzed NOTE: This property will not be serialized. It can only be populated by the server.

isHostnameAlreadyVerified?: boolean

true if hostname is already verified; otherwise, false. NOTE: This property will not be serialized. It can only be populated by the server.

txtRecords?: string[]

TXT records visible for this hostname.