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

The following fields are returned by SELECT queries:

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, locationGet the list of cached images on specific OS type for a subscription in a region.

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
locationstringThe identifier for the physical azure location.
subscriptionIdstringSubscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

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 subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;