image_store_infos
Creates, updates, deletes, gets or lists an image_store_infos resource.
Overview
| Name | image_store_infos |
| Type | Resource |
| Id | azure.service_fabric_dataplane.image_store_infos |
Fields
The following fields are returned by SELECT queries:
- get_image_store_info
| Name | Datatype | Description |
|---|---|---|
DiskInfo | object | Information about the disk. |
UsedByCopy | object | Information about how much space and how many files in the file system the ImageStore is using in this category. |
UsedByMetadata | object | Information about how much space and how many files in the file system the ImageStore is using in this category. |
UsedByRegister | object | Information about how much space and how many files in the file system the ImageStore is using in this category. |
UsedByStaging | object | Information 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_image_store_info | select | endpoint | timeout | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
endpoint | string | The service endpoint host (no scheme). (default: ) |
timeout | integer (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_image_store_info
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 }}'
;