Skip to main content

image_store_root_folder_sizes

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

Overview

Nameimage_store_root_folder_sizes
TypeResource
Idazure.service_fabric_dataplane.image_store_root_folder_sizes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
FolderSizestring
StoreRelativePathstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_image_store_root_folder_sizeselectendpointtimeoutGet the folder size at the root of the image store. Returns the total size of files at the root and children folders in image store.

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

Get the folder size at the root of the image store. Returns the total size of files at the root and children folders in image store.

SELECT
FolderSize,
StoreRelativePath
FROM azure.service_fabric_dataplane.image_store_root_folder_sizes
WHERE endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;