Skip to content

AzureTag

Detailed information about an Azure tag.

Complete reference

This is a complete reference for the AzureTag struct in Atlan, showing all of its embedded properties. For an introduction, you probably want to start with:

  • Snippets — small, atomic examples of single-step use cases.
  • Patterns — walkthroughs of common multi-step implementation patterns.

Embedded properties

These are the attributes embedded within each instance of the AzureTag struct in an asset:

azureTagKey
Key of the Azure tag.
1
2
builder.azureTagKey(...); // (1)
azureTag.getAzureTagKey(); // (2)
  1. Set the azureTagKey for a AzureTag.

    For more details

    For more information, see the asset CRUD snippets on either creating or updating assets.

  2. Retrieve the azureTagKey from a AzureTag.

    For more details

    For more information, see the asset CRUD snippets on retrieving assets.

azureTagValue
Value for the Azure tag.
1
2
builder.azureTagValue(...); // (1)
azureTag.getAzureTagValue(); // (2)
  1. Set the azureTagValue for a AzureTag.

    For more details

    For more information, see the asset CRUD snippets on either creating or updating assets.

  2. Retrieve the azureTagValue from a AzureTag.

    For more details

    For more information, see the asset CRUD snippets on retrieving assets.

azureTagKey
Key of the Azure tag.
1
2
3
4
5
{
  "attributes": {
    "azureTagKey": ... // (1)
  }
}
  1. Set the azureTagKey for a AzureTag.

    For more details

    For more information, see the asset CRUD snippets.

azureTagValue
Value for the Azure tag.
1
2
3
4
5
{
  "attributes": {
    "azureTagValue": ... // (1)
  }
}
  1. Set the azureTagValue for a AzureTag.

    For more details

    For more information, see the asset CRUD snippets.