Skip to main content

location_cached_images

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

Overview

Namelocation_cached_images
TypeResource
Idazure.container_instances.location_cached_images

Fields

NameDatatypeDescription
imagestringThe cached image name.
osTypestringThe OS type of the cached image.

Methods

NameAccessible byRequired ParamsDescription
listSELECTlocation, subscriptionIdGet 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 }}';