{% extends "layout.html" %} {% block content %}

Account Properties

Name Value
Resource Group {{resource_group_name}}
Account Name {{model.account_props.name}}
Account Type {{model.account_props.account_type}}
Provisioning State {{model.account_props.provisioning_state}}
Primary Location {{model.account_props.primary_location}}
Primary Location Status {{model.account_props._status_of_primary}}
Secondary Location {{model.account_props.secondary_location}}
Secondary Location Status {{model.account_props._status_of_secondary}}

Account Keys

Name Value
Primary Key {{model.account_keys.key1}}
Secondary Key {{model.account_keys.key2}}

Code Snippets

from azure.storage.blob import BlobService
service = BlobService(
    account_name="{{model.account_props.name}}",
    account_key="{{model.account_keys.key1}}",
)
from azure.storage.file import FileService
service = FileService(
    account_name="{{model.account_props.name}}",
    account_key="{{model.account_keys.key1}}",
)
from azure.storage.table import TableService
service = TableService(
    account_name="{{model.account_props.name}}",
    account_key="{{model.account_keys.key1}}",
)
from azure.storage.queue import QueueService
service = QueueService(
    account_name="{{model.account_props.name}}",
    account_key="{{model.account_keys.key1}}",
)

Logging

Service Read Write Delete Retention Policy
Blob Service {{model.blob_service_properties.logging.read}} {{model.blob_service_properties.logging.write}} {{model.blob_service_properties.logging.write}} {{model.blob_service_properties.logging.retention_policy.enabled}}
Table Service {{model.table_service_properties.logging.read}} {{model.table_service_properties.logging.write}} {{model.table_service_properties.logging.write}} {{model.table_service_properties.logging.retention_policy.enabled}}
Queue Service {{model.queue_service_properties.logging.read}} {{model.queue_service_properties.logging.write}} {{model.queue_service_properties.logging.write}} {{model.queue_service_properties.logging.retention_policy.enabled}}

Resources

{% for container in model.blob_containers %} {% endfor %} {% for share in model.shares %} {% endfor %} {% for table in model.tables %} {% endfor %} {% for queue in model.queues %} {% endfor %}
Service Resource Type Name
Blob Service Container {{container.name}}
File Service Share {{share.name}}
Table Service Table {{table.name}}
Queue Service Queue {{queue.name}}
{% endblock %}