Skip to content

GoogleLabel

Detailed information about a Google label.

Complete reference

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

googleLabelKey
Key of the Google label.
1
2
builder.googleLabelKey(...); // (1)
googleLabel.getGoogleLabelKey(); // (2)
  1. Set the googleLabelKey for a GoogleLabel.

    For more details

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

  2. Retrieve the googleLabelKey from a GoogleLabel.

    For more details

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

googleLabelValue
Value for the Google label.
1
2
builder.googleLabelValue(...); // (1)
googleLabel.getGoogleLabelValue(); // (2)
  1. Set the googleLabelValue for a GoogleLabel.

    For more details

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

  2. Retrieve the googleLabelValue from a GoogleLabel.

    For more details

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

googleLabelKey
Key of the Google label.
1
2
3
4
5
{
  "attributes": {
    "googleLabelKey": ... // (1)
  }
}
  1. Set the googleLabelKey for a GoogleLabel.

    For more details

    For more information, see the asset CRUD snippets.

googleLabelValue
Value for the Google label.
1
2
3
4
5
{
  "attributes": {
    "googleLabelValue": ... // (1)
  }
}
  1. Set the googleLabelValue for a GoogleLabel.

    For more details

    For more information, see the asset CRUD snippets.