Table: azure_databox_edge_device - Query Azure Databox Edge Devices using SQL
Azure Databox Edge is a physical network appliance, shipped by Microsoft, that brings computation and storage capabilities to the edge of your network. It acts as a storage gateway, creating a link between your site and Azure storage. This device provides AI-enabled edge compute, network and storage capabilities.
Table Usage Guide
The azure_databox_edge_device
table provides insights into Azure Databox Edge Devices within Microsoft Azure. As an IT administrator, explore device-specific details through this table, including the device's status, SKU, model description, and more. Utilize it to uncover information about the devices, such as their capacity, serial numbers, and the verification of device settings.
Examples
Basic info
Explore the status and geographical distribution of your Azure Databox Edge devices. This allows for efficient management and monitoring of your devices across different regions.
select name, id, type, data_box_edge_device_status, regionfrom azure_databox_edge_device;
select name, id, type, data_box_edge_device_status, regionfrom azure_databox_edge_device;
List offline data box edge devices
Determine the areas in which Azure Databox Edge devices are currently offline. This can be useful for identifying potential network issues or maintenance needs in your infrastructure.
select name, id, type, data_box_edge_device_statusfrom azure_databox_edge_devicewhere data_box_edge_device_status = 'Offline';
select name, id, type, data_box_edge_device_statusfrom azure_databox_edge_devicewhere data_box_edge_device_status = 'Offline';
Control examples
Schema for azure_databox_edge_device
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
akas | jsonb | Array of globally unique identifier strings (also known as) for the resource. | |
cloud_environment | text | The Azure Cloud Environment. | |
configured_role_types | jsonb | Type of compute roles configured. | |
culture | text | The Data Box Edge/Gateway device culture. | |
data_box_edge_device_status | text | The status of the Data Box Edge/Gateway device. Possible values include: 'ReadyToSetup', 'Online', 'Offline', 'NeedsAttention', 'Disconnected', 'PartiallyDisconnected', 'Maintenance'. | |
description | text | he Description of the Data Box Edge/Gateway device. | |
device_hcs_version | text | The device software version number of the device (eg: 1.2.18105.6). | |
device_local_capacity | bigint | The Data Box Edge/Gateway device local capacity in MB. | |
device_model | text | The Data Box Edge/Gateway device model. | |
device_software_version | text | The Data Box Edge/Gateway device software version. | |
device_type | text | The type of the Data Box Edge/Gateway device. Possible values include: 'DataBoxEdgeDevice'. | |
etag | text | The etag for the devices. | |
friendly_name | text | The Data Box Edge/Gateway device name. | |
id | text | The resource identifier. | |
location | text | The location of the device. This is a supported and registered Azure geographical region (for example, West US, East US, or Southeast Asia). The geographical region of a device cannot be changed once it is created, but if an identical geographical region is specified on update, the request will succeed. | |
model_description | text | The description of the Data Box Edge/Gateway device model. | |
name | text | = | The resource name. |
node_count | bigint | The number of nodes in the cluster. | |
region | text | The Azure region/location in which the resource is located. | |
resource_group | text | = | The resource group which holds this resource. |
serial_number | text | The Serial Number of Data Box Edge/Gateway device. | |
sku_name | text | SKU name of the resource. Possible values include: 'Gateway', 'Edge'. | |
sku_tier | text | The SKU tier. This is based on the SKU name. Possible values include: 'Standard'. | |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
subscription_id | text | =, !=, ~~, ~~*, !~~, !~~* | The Azure Subscription ID in which the resource is located. |
tags | jsonb | A map of tags for the resource. | |
time_zone | text | The Data Box Edge/Gateway device timezone. | |
title | text | Title of the resource. | |
type | text | The resource type. |
Export
This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.
You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh
script:
/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- azure
You can pass the configuration to the command with the --config
argument:
steampipe_export_azure --config '<your_config>' azure_databox_edge_device