Skip to content

GoogleTag

Detailed information about a Google tag.

Complete reference

This is a complete reference for the GoogleTag 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 GoogleTag struct in an asset:

googleTagKey
Key of the Google tag.
1
2
builder.googleTagKey(...); // (1)
googleTag.getGoogleTagKey(); // (2)
  1. Set the googleTagKey for a GoogleTag.

    For more details

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

  2. Retrieve the googleTagKey from a GoogleTag.

    For more details

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

googleTagValue
Value for the Google tag.
1
2
builder.googleTagValue(...); // (1)
googleTag.getGoogleTagValue(); // (2)
  1. Set the googleTagValue for a GoogleTag.

    For more details

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

  2. Retrieve the googleTagValue from a GoogleTag.

    For more details

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

googleTagKey
Key of the Google tag.
1
2
3
4
5
{
  "attributes": {
    "googleTagKey": ... // (1)
  }
}
  1. Set the googleTagKey for a GoogleTag.

    For more details

    For more information, see the asset CRUD snippets.

googleTagValue
Value for the Google tag.
1
2
3
4
5
{
  "attributes": {
    "googleTagValue": ... // (1)
  }
}
  1. Set the googleTagValue for a GoogleTag.

    For more details

    For more information, see the asset CRUD snippets.