accounts_properties
Creates, updates, deletes, gets or lists a accounts_properties
resource.
Overview
Name | accounts_properties |
Type | Resource |
Id | azure.storage.accounts_properties |
Fields
- vw_accounts_properties
- accounts_properties
Name | Datatype | Description |
---|---|---|
access_tier | text | field from the properties object |
accountName | text | field from the properties object |
account_migration_in_progress | text | field from the properties object |
allow_blob_public_access | text | field from the properties object |
allow_cross_tenant_replication | text | field from the properties object |
allow_shared_key_access | text | field from the properties object |
allowed_copy_scope | text | field from the properties object |
azure_files_identity_based_authentication | text | field from the properties object |
blob_restore_status | text | field from the properties object |
creation_time | text | field from the properties object |
custom_domain | text | field from the properties object |
default_to_oauth_authentication | text | field from the properties object |
dns_endpoint_type | text | field from the properties object |
enable_extended_groups | text | field from the properties object |
encryption | text | field from the properties object |
extended_location | text | field from the properties object |
failover_in_progress | text | field from the properties object |
geo_replication_stats | text | field from the properties object |
identity | text | Identity for the resource. |
immutable_storage_with_versioning | text | field from the properties object |
is_hns_enabled | text | field from the properties object |
is_local_user_enabled | text | field from the properties object |
is_nfs_v3_enabled | text | field from the properties object |
is_sftp_enabled | text | field from the properties object |
is_sku_conversion_blocked | text | field from the properties object |
key_creation_time | text | field from the properties object |
key_policy | text | field from the properties object |
kind | text | Gets the Kind. |
large_file_shares_state | text | field from the properties object |
last_geo_failover_time | text | field from the properties object |
location | text | The geo-location where the resource lives |
minimum_tls_version | text | field from the properties object |
network_acls | text | field from the properties object |
primary_endpoints | text | field from the properties object |
primary_location | text | field from the properties object |
private_endpoint_connections | text | field from the properties object |
provisioning_state | text | field from the properties object |
public_network_access | text | field from the properties object |
resourceGroupName | text | field from the properties object |
routing_preference | text | field from the properties object |
sas_policy | text | field from the properties object |
secondary_endpoints | text | field from the properties object |
secondary_location | text | field from the properties object |
sku | text | The resource model definition representing SKU |
status_of_primary | text | field from the properties object |
status_of_secondary | text | field from the properties object |
storage_account_sku_conversion_status | text | field from the properties object |
subscriptionId | text | field from the properties object |
supports_https_traffic_only | text | field from the properties object |
tags | text | Resource tags. |
Name | Datatype | Description |
---|---|---|
extendedLocation | object | The complex type of the extended location. |
identity | object | Identity for the resource. |
kind | string | Gets the Kind. |
location | string | The geo-location where the resource lives |
properties | object | Properties of the storage account. |
sku | object | The resource model definition representing SKU |
tags | object | Resource tags. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | accountName, resourceGroupName, subscriptionId | Returns the properties for the specified storage account including but not limited to name, SKU name, location, and account status. The ListKeys operation should be used to retrieve storage keys. |
SELECT
examples
Returns the properties for the specified storage account including but not limited to name, SKU name, location, and account status. The ListKeys operation should be used to retrieve storage keys.
- vw_accounts_properties
- accounts_properties
SELECT
access_tier,
accountName,
account_migration_in_progress,
allow_blob_public_access,
allow_cross_tenant_replication,
allow_shared_key_access,
allowed_copy_scope,
azure_files_identity_based_authentication,
blob_restore_status,
creation_time,
custom_domain,
default_to_oauth_authentication,
dns_endpoint_type,
enable_extended_groups,
encryption,
extended_location,
failover_in_progress,
geo_replication_stats,
identity,
immutable_storage_with_versioning,
is_hns_enabled,
is_local_user_enabled,
is_nfs_v3_enabled,
is_sftp_enabled,
is_sku_conversion_blocked,
key_creation_time,
key_policy,
kind,
large_file_shares_state,
last_geo_failover_time,
location,
minimum_tls_version,
network_acls,
primary_endpoints,
primary_location,
private_endpoint_connections,
provisioning_state,
public_network_access,
resourceGroupName,
routing_preference,
sas_policy,
secondary_endpoints,
secondary_location,
sku,
status_of_primary,
status_of_secondary,
storage_account_sku_conversion_status,
subscriptionId,
supports_https_traffic_only,
tags
FROM azure.storage.vw_accounts_properties
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
extendedLocation,
identity,
kind,
location,
properties,
sku,
tags
FROM azure.storage.accounts_properties
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';