container_host_mappings_container_host_mappings
Creates, updates, deletes, gets or lists a container_host_mappings_container_host_mappings resource.
Overview
| Name | container_host_mappings_container_host_mappings |
| Type | Resource |
| Id | azure_extras.dev_spaces.container_host_mappings_container_host_mappings |
Fields
The following fields are returned by SELECT queries:
- get
The request was successful; response contains the container host mapping.
| Name | Datatype | Description |
|---|---|---|
containerHostResourceId | string | ARM ID of the Container Host resource |
mappedControllerResourceId | string | ARM ID of the mapped Controller resource |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, 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.
| Name | Datatype | Description |
|---|---|---|
location | string | Location of the container host. |
resourceGroupName | string | Resource group to which the resource belongs. |
subscriptionId | string | Azure subscription ID. |
SELECT examples
- get
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
;