location_cached_images
Creates, updates, deletes, gets or lists a location_cached_images
resource.
Overview
Name | location_cached_images |
Type | Resource |
Id | azure.container_instances.location_cached_images |
Fields
Name | Datatype | Description |
---|---|---|
image | string | The cached image name. |
osType | string | The OS type of the cached image. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, subscriptionId | Get the list of cached images on specific OS type for a subscription in a region. |
SELECT
examples
Get the list of cached images on specific OS type for a subscription in a region.
SELECT
image,
osType
FROM azure.container_instances.location_cached_images
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';