Skip to main content

image_store_infos

Creates, updates, deletes, gets or lists an image_store_infos resource.

Overview

Nameimage_store_infos
TypeResource
Idazure.service_fabric_dataplane.image_store_infos

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
DiskInfoobjectInformation about the disk.
UsedByCopyobjectInformation about how much space and how many files in the file system the ImageStore is using in this category.
UsedByMetadataobjectInformation about how much space and how many files in the file system the ImageStore is using in this category.
UsedByRegisterobjectInformation about how much space and how many files in the file system the ImageStore is using in this category.
UsedByStagingobjectInformation about how much space and how many files in the file system the ImageStore is using in this category.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_image_store_infoselectendpointtimeoutGets the overall ImageStore information. Returns information about the primary ImageStore replica, such as disk capacity and available disk space at the node it is on, and several categories of the ImageStore's file system usage.

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
endpointstringThe service endpoint host (no scheme). (default: )
timeoutinteger (int64)The server timeout for performing the operation in seconds. This timeout specifies the time duration that the client is willing to wait for the requested operation to complete. The default value for this parameter is 60 seconds.

SELECT examples

Gets the overall ImageStore information. Returns information about the primary ImageStore replica, such as disk capacity and available disk space at the node it is on, and several categories of the ImageStore's file system usage.

SELECT
DiskInfo,
UsedByCopy,
UsedByMetadata,
UsedByRegister,
UsedByStaging
FROM azure.service_fabric_dataplane.image_store_infos
WHERE endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;