vw_storage_account_credentials
Creates, updates, deletes, gets or lists a vw_storage_account_credentials
resource.
Overview
Name | vw_storage_account_credentials |
Type | View |
Id | azure.data_box_edge.vw_storage_account_credentials |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.alias') as "alias",
JSON_EXTRACT(properties, '$.userName') as "user_name",
JSON_EXTRACT(properties, '$.accountKey') as "account_key",
JSON_EXTRACT(properties, '$.connectionString') as "connection_string",
JSON_EXTRACT(properties, '$.sslStatus') as "ssl_status",
JSON_EXTRACT(properties, '$.blobDomainName') as "blob_domain_name",
JSON_EXTRACT(properties, '$.accountType') as "account_type",
JSON_EXTRACT(properties, '$.storageAccountId') as "storage_account_id",
subscriptionId,
resourceGroupName,
deviceName,
name
FROM azure.data_box_edge.storage_account_credentials
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND deviceName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.alias') as "alias",
json_extract_path_text(properties, '$.userName') as "user_name",
json_extract_path_text(properties, '$.accountKey') as "account_key",
json_extract_path_text(properties, '$.connectionString') as "connection_string",
json_extract_path_text(properties, '$.sslStatus') as "ssl_status",
json_extract_path_text(properties, '$.blobDomainName') as "blob_domain_name",
json_extract_path_text(properties, '$.accountType') as "account_type",
json_extract_path_text(properties, '$.storageAccountId') as "storage_account_id",
subscriptionId,
resourceGroupName,
deviceName,
name
FROM azure.data_box_edge.storage_account_credentials
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND deviceName = 'replace-me';