Skip to main content

custom_host_name_analyses

Creates, updates, deletes, gets or lists a custom_host_name_analyses resource.

Overview

Namecustom_host_name_analyses
TypeResource
Idazure.container_apps.custom_host_name_analyses

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
aRecordsarrayA records visible for this hostname.
alternateCNameRecordsarrayAlternate CName records visible for this hostname.
alternateTxtRecordsarrayAlternate TXT records visible for this hostname.
cNameRecordsarrayCName records visible for this hostname.
conflictWithEnvironmentCustomDomainbooleantrue if there is a conflict on the Container App's managed environment level custom domain; otherwise, false.
conflictingContainerAppResourceIdstringName of the conflicting Container App on the Managed Environment if it's within the same subscription.
customDomainVerificationFailureInfoobjectRaw failure information if DNS verification fails.
customDomainVerificationTeststringDNS verification test result.
hasConflictOnManagedEnvironmentbooleantrue if there is a conflict on the Container App's managed environment; otherwise, false.
hostNamestringHost name that was analyzed
isHostnameAlreadyVerifiedbooleantrue if hostname is already verified; otherwise, false.
txtRecordsarrayTXT records visible for this hostname.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, containerAppNamecustomHostname

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
containerAppNamestringName of the Container App.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
customHostnamestringCustom hostname.

SELECT examples

OK

SELECT
aRecords,
alternateCNameRecords,
alternateTxtRecords,
cNameRecords,
conflictWithEnvironmentCustomDomain,
conflictingContainerAppResourceId,
customDomainVerificationFailureInfo,
customDomainVerificationTest,
hasConflictOnManagedEnvironment,
hostName,
isHostnameAlreadyVerified,
txtRecords
FROM azure.container_apps.custom_host_name_analyses
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND containerAppName = '{{ containerAppName }}' -- required
AND customHostname = '{{ customHostname }}'
;