Skip to main content

container_host_mappings_container_host_mappings

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

Overview

Namecontainer_host_mappings_container_host_mappings
TypeResource
Idazure_extras.dev_spaces.container_host_mappings_container_host_mappings

Fields

The following fields are returned by SELECT queries:

The request was successful; response contains the container host mapping.

NameDatatypeDescription
containerHostResourceIdstringARM ID of the Container Host resource
mappedControllerResourceIdstringARM ID of the mapped Controller resource

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, location

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
locationstringLocation of the container host.
resourceGroupNamestringResource group to which the resource belongs.
subscriptionIdstringAzure subscription ID.

SELECT examples

The request was successful; response contains the container host mapping.

SELECT
containerHostResourceId,
mappedControllerResourceId
FROM azure_extras.dev_spaces.container_host_mappings_container_host_mappings
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND location = '{{ location }}' -- required
;