---
title: Azure Table Component
description: Datadog, the leading service for cloud-scale monitoring.
breadcrumbs: 'Docs > Cloudcraft (Standalone) > Components: Azure > Azure Table Component'
---

# Azure Table Component

## Overview{% #overview %}

You can use the Azure Table component to represent and visualize NoSQL key-value stores from your Azure environment.

{% image
   source="https://datadog-docs.imgix.net/images/cloudcraft/components-azure/azure-table/component-azure-table-diagram.d587f0ae380e97925e075f449dd0c6c9.png?auto=format"
   alt="Screenshot of an isometric Cloudcraft diagram showing interconnected Azure components." /%}

## Toolbar{% #toolbar %}

Use the toolbar to configure and customize the component. The following options are available:

- **Color**: Select accent and fill colors for the body of the component in 3D view.
- **Redundancy**: Select how your data is replicated in the primary and secondary regions.
- **Storage (GiB)**: Enter the total volume of data available for the key-value store.
- **Request Units (10k)**: Enter the number requests in 10k request units.

## API{% #api %}

Use [the Cloudcraft API](https://developers.cloudcraft.co/) to programmatically access and render your architecture diagrams as JSON objects. The following is an example JSON object of an Azure Table component:

### Schema{% #schema %}

```json
{
	"type": "azuretable",
	"id": "e3b7f697-3ae6-4d3b-bd7f-bac3e0cc05ae",
	"region": "northcentralus",
	"mapPos": [1,7.75],
	"redundancy": "LRS",
	"storageGb": 10,
	"requestUnits": 0,
	"color": {
		"isometric": null,
		"2d": null
	},
	"accentColor": {
		"isometric": null,
		"2d": null
	},
	"link": "https://azure.microsoft.com/products/storage/tables/",
	"locked": true
}
```

- **type: string**: The type of component. Must be a string of value `azuretable` for this component.
- **id: string, uuid**: The unique identifier for the component. The API uses a UUID v4 internally but accepts any unique string.
- **resourceId: string**: The globally unique identifier for the component within Azure.
- **region: string**: The Azure region for the component. The API supports all global regions, except China.
- **mapPos: array**: The position of the component in the blueprint. The API uses a unique X and Y coordinate pair to express positioning.
- **redundancy: string**: The redundancy option for how data is replicated across regions. Accepts one of three values, `LRS`, `ZRS` `GRS`, `GZRS`, `RA-GRS` and `RA-GRS`. Defaults to `LRS`.
- **storageGb: number**: The total volume of data available for the key-value store in gibibytes. Defaults to `0`.
- **requestUnits: number**: The number of requests in 10k units. Defaults to `0`.
- **color: object**: The fill color for the component body.
  - **isometric: string**: A hexadecimal color for the component body in 3D view. Defaults to `#CEE0F5`.
  - **2d: string**: A hexadecimal color for the component body in 2D view. Defaults to `null`.
- **accentColor: object**: The accent color for the component logo.
  - **isometric: string**: A hexadecimal color for the component logo in 3D view. Defaults to `#0078D4`.
  - **2d: string**: A hexadecimal color for the component logo in 2D view. Defaults to `null`.
- **link: string, uri**: A URI that links the component to another diagram or an external website. Accepts one of two formats, `blueprint://` or `https://`.
- **locked: boolean**: Whether to allow changes to the position of the component through the web interface. Defaults to `false`.
