Class DMAttributeAssociation

All Implemented Interfaces:
IAsset, ICatalog, IDM, IDMAttributeAssociation, IReferenceable, AuditDetail, Serializable, Comparable<Reference>

@Generated("com.atlan.generators.ModelGeneratorV2") public class DMAttributeAssociation extends Asset implements IDMAttributeAssociation, IDM, ICatalog, IAsset, IReferenceable
Instance of a data attribute association in Atlan.
See Also:
  • Field Details

  • Constructor Details

  • Method Details

    • trimToReference

      public DMAttributeAssociation trimToReference() throws InvalidRequestException
      Builds the minimal object necessary to create a relationship to a DMAttributeAssociation, from a potentially more-complete DMAttributeAssociation object.
      Overrides:
      trimToReference in class Asset
      Returns:
      the minimal object necessary to relate to the DMAttributeAssociation
      Throws:
      InvalidRequestException - if any of the minimal set of required properties for a DMAttributeAssociation relationship are not found in the initial object
    • select

      public static FluentSearch.FluentSearchBuilder<?,?> select()
      Start a fluent search that will return all DMAttributeAssociation assets. Additional conditions can be chained onto the returned search before any asset retrieval is attempted, ensuring all conditions are pushed-down for optimal retrieval. Only active (non-archived) DMAttributeAssociation assets will be included.
      Returns:
      a fluent search that includes all DMAttributeAssociation assets
    • select

      public static FluentSearch.FluentSearchBuilder<?,?> select(AtlanClient client)
      Start a fluent search that will return all DMAttributeAssociation assets. Additional conditions can be chained onto the returned search before any asset retrieval is attempted, ensuring all conditions are pushed-down for optimal retrieval. Only active (non-archived) DMAttributeAssociation assets will be included.
      Parameters:
      client - connectivity to the Atlan tenant from which to retrieve the assets
      Returns:
      a fluent search that includes all DMAttributeAssociation assets
    • select

      public static FluentSearch.FluentSearchBuilder<?,?> select(boolean includeArchived)
      Start a fluent search that will return all DMAttributeAssociation assets. Additional conditions can be chained onto the returned search before any asset retrieval is attempted, ensuring all conditions are pushed-down for optimal retrieval.
      Parameters:
      includeArchived - when true, archived (soft-deleted) DMAttributeAssociations will be included
      Returns:
      a fluent search that includes all DMAttributeAssociation assets
    • select

      public static FluentSearch.FluentSearchBuilder<?,?> select(AtlanClient client, boolean includeArchived)
      Start a fluent search that will return all DMAttributeAssociation assets. Additional conditions can be chained onto the returned search before any asset retrieval is attempted, ensuring all conditions are pushed-down for optimal retrieval.
      Parameters:
      client - connectivity to the Atlan tenant from which to retrieve the assets
      includeArchived - when true, archived (soft-deleted) DMAttributeAssociations will be included
      Returns:
      a fluent search that includes all DMAttributeAssociation assets
    • refByGuid

      public static DMAttributeAssociation refByGuid(String guid)
      Reference to a DMAttributeAssociation by GUID. Use this to create a relationship to this DMAttributeAssociation, where the relationship should be replaced.
      Parameters:
      guid - the GUID of the DMAttributeAssociation to reference
      Returns:
      reference to a DMAttributeAssociation that can be used for defining a relationship to a DMAttributeAssociation
    • refByGuid

      public static DMAttributeAssociation refByGuid(String guid, Reference.SaveSemantic semantic)
      Reference to a DMAttributeAssociation by GUID. Use this to create a relationship to this DMAttributeAssociation, where you want to further control how that relationship should be updated (i.e. replaced, appended, or removed).
      Parameters:
      guid - the GUID of the DMAttributeAssociation to reference
      semantic - how to save this relationship (replace all with this, append it, or remove it)
      Returns:
      reference to a DMAttributeAssociation that can be used for defining a relationship to a DMAttributeAssociation
    • refByQualifiedName

      public static DMAttributeAssociation refByQualifiedName(String qualifiedName)
      Reference to a DMAttributeAssociation by qualifiedName. Use this to create a relationship to this DMAttributeAssociation, where the relationship should be replaced.
      Parameters:
      qualifiedName - the qualifiedName of the DMAttributeAssociation to reference
      Returns:
      reference to a DMAttributeAssociation that can be used for defining a relationship to a DMAttributeAssociation
    • refByQualifiedName

      public static DMAttributeAssociation refByQualifiedName(String qualifiedName, Reference.SaveSemantic semantic)
      Reference to a DMAttributeAssociation by qualifiedName. Use this to create a relationship to this DMAttributeAssociation, where you want to further control how that relationship should be updated (i.e. replaced, appended, or removed).
      Parameters:
      qualifiedName - the qualifiedName of the DMAttributeAssociation to reference
      semantic - how to save this relationship (replace all with this, append it, or remove it)
      Returns:
      reference to a DMAttributeAssociation that can be used for defining a relationship to a DMAttributeAssociation
    • get

      public static DMAttributeAssociation get(String id) throws AtlanException
      Retrieves a DMAttributeAssociation by one of its identifiers, complete with all of its relationships.
      Parameters:
      id - of the DMAttributeAssociation to retrieve, either its GUID or its full qualifiedName
      Returns:
      the requested full DMAttributeAssociation, complete with all of its relationships
      Throws:
      AtlanException - on any error during the API invocation, such as the NotFoundException if the DMAttributeAssociation does not exist or the provided GUID is not a DMAttributeAssociation
    • get

      public static DMAttributeAssociation get(AtlanClient client, String id) throws AtlanException
      Retrieves a DMAttributeAssociation by one of its identifiers, complete with all of its relationships.
      Parameters:
      client - connectivity to the Atlan tenant from which to retrieve the asset
      id - of the DMAttributeAssociation to retrieve, either its GUID or its full qualifiedName
      Returns:
      the requested full DMAttributeAssociation, complete with all of its relationships
      Throws:
      AtlanException - on any error during the API invocation, such as the NotFoundException if the DMAttributeAssociation does not exist or the provided GUID is not a DMAttributeAssociation
    • get

      public static DMAttributeAssociation get(AtlanClient client, String id, boolean includeRelationships) throws AtlanException
      Retrieves a DMAttributeAssociation by one of its identifiers, optionally complete with all of its relationships.
      Parameters:
      client - connectivity to the Atlan tenant from which to retrieve the asset
      id - of the DMAttributeAssociation to retrieve, either its GUID or its full qualifiedName
      includeRelationships - if true, all of the asset's relationships will also be retrieved; if false, no relationships will be retrieved
      Returns:
      the requested full DMAttributeAssociation, optionally complete with all of its relationships
      Throws:
      AtlanException - on any error during the API invocation, such as the NotFoundException if the DMAttributeAssociation does not exist or the provided GUID is not a DMAttributeAssociation
    • restore

      public static boolean restore(String qualifiedName) throws AtlanException
      Restore the archived (soft-deleted) DMAttributeAssociation to active.
      Parameters:
      qualifiedName - for the DMAttributeAssociation
      Returns:
      true if the DMAttributeAssociation is now active, and false otherwise
      Throws:
      AtlanException - on any API problems
    • restore

      public static boolean restore(AtlanClient client, String qualifiedName) throws AtlanException
      Restore the archived (soft-deleted) DMAttributeAssociation to active.
      Parameters:
      client - connectivity to the Atlan tenant on which to restore the asset
      qualifiedName - for the DMAttributeAssociation
      Returns:
      true if the DMAttributeAssociation is now active, and false otherwise
      Throws:
      AtlanException - on any API problems
    • updater

      public static DMAttributeAssociation.DMAttributeAssociationBuilder<?,?> updater(String qualifiedName, String name)
      Builds the minimal object necessary to update a DMAttributeAssociation.
      Parameters:
      qualifiedName - of the DMAttributeAssociation
      name - of the DMAttributeAssociation
      Returns:
      the minimal request necessary to update the DMAttributeAssociation, as a builder
    • trimToRequired

      Builds the minimal object necessary to apply an update to a DMAttributeAssociation, from a potentially more-complete DMAttributeAssociation object.
      Overrides:
      trimToRequired in class Asset
      Returns:
      the minimal object necessary to update the DMAttributeAssociation, as a builder
      Throws:
      InvalidRequestException - if any of the minimal set of required properties for DMAttributeAssociation are not found in the initial object
    • removeDescription

      public static DMAttributeAssociation removeDescription(String qualifiedName, String name) throws AtlanException
      Remove the system description from a DMAttributeAssociation.
      Parameters:
      qualifiedName - of the DMAttributeAssociation
      name - of the DMAttributeAssociation
      Returns:
      the updated DMAttributeAssociation, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • removeDescription

      public static DMAttributeAssociation removeDescription(AtlanClient client, String qualifiedName, String name) throws AtlanException
      Remove the system description from a DMAttributeAssociation.
      Parameters:
      client - connectivity to the Atlan tenant on which to remove the asset's description
      qualifiedName - of the DMAttributeAssociation
      name - of the DMAttributeAssociation
      Returns:
      the updated DMAttributeAssociation, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • removeUserDescription

      public static DMAttributeAssociation removeUserDescription(String qualifiedName, String name) throws AtlanException
      Remove the user's description from a DMAttributeAssociation.
      Parameters:
      qualifiedName - of the DMAttributeAssociation
      name - of the DMAttributeAssociation
      Returns:
      the updated DMAttributeAssociation, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • removeUserDescription

      public static DMAttributeAssociation removeUserDescription(AtlanClient client, String qualifiedName, String name) throws AtlanException
      Remove the user's description from a DMAttributeAssociation.
      Parameters:
      client - connectivity to the Atlan tenant on which to remove the asset's description
      qualifiedName - of the DMAttributeAssociation
      name - of the DMAttributeAssociation
      Returns:
      the updated DMAttributeAssociation, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • removeOwners

      public static DMAttributeAssociation removeOwners(String qualifiedName, String name) throws AtlanException
      Remove the owners from a DMAttributeAssociation.
      Parameters:
      qualifiedName - of the DMAttributeAssociation
      name - of the DMAttributeAssociation
      Returns:
      the updated DMAttributeAssociation, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • removeOwners

      public static DMAttributeAssociation removeOwners(AtlanClient client, String qualifiedName, String name) throws AtlanException
      Remove the owners from a DMAttributeAssociation.
      Parameters:
      client - connectivity to the Atlan tenant from which to remove the DMAttributeAssociation's owners
      qualifiedName - of the DMAttributeAssociation
      name - of the DMAttributeAssociation
      Returns:
      the updated DMAttributeAssociation, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • updateCertificate

      public static DMAttributeAssociation updateCertificate(String qualifiedName, CertificateStatus certificate, String message) throws AtlanException
      Update the certificate on a DMAttributeAssociation.
      Parameters:
      qualifiedName - of the DMAttributeAssociation
      certificate - to use
      message - (optional) message, or null if no message
      Returns:
      the updated DMAttributeAssociation, or null if the update failed
      Throws:
      AtlanException - on any API problems
    • updateCertificate

      public static DMAttributeAssociation updateCertificate(AtlanClient client, String qualifiedName, CertificateStatus certificate, String message) throws AtlanException
      Update the certificate on a DMAttributeAssociation.
      Parameters:
      client - connectivity to the Atlan tenant on which to update the DMAttributeAssociation's certificate
      qualifiedName - of the DMAttributeAssociation
      certificate - to use
      message - (optional) message, or null if no message
      Returns:
      the updated DMAttributeAssociation, or null if the update failed
      Throws:
      AtlanException - on any API problems
    • removeCertificate

      public static DMAttributeAssociation removeCertificate(String qualifiedName, String name) throws AtlanException
      Remove the certificate from a DMAttributeAssociation.
      Parameters:
      qualifiedName - of the DMAttributeAssociation
      name - of the DMAttributeAssociation
      Returns:
      the updated DMAttributeAssociation, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • removeCertificate

      public static DMAttributeAssociation removeCertificate(AtlanClient client, String qualifiedName, String name) throws AtlanException
      Remove the certificate from a DMAttributeAssociation.
      Parameters:
      client - connectivity to the Atlan tenant from which to remove the DMAttributeAssociation's certificate
      qualifiedName - of the DMAttributeAssociation
      name - of the DMAttributeAssociation
      Returns:
      the updated DMAttributeAssociation, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • updateAnnouncement

      public static DMAttributeAssociation updateAnnouncement(String qualifiedName, AtlanAnnouncementType type, String title, String message) throws AtlanException
      Update the announcement on a DMAttributeAssociation.
      Parameters:
      qualifiedName - of the DMAttributeAssociation
      type - type of announcement to set
      title - (optional) title of the announcement to set (or null for no title)
      message - (optional) message of the announcement to set (or null for no message)
      Returns:
      the result of the update, or null if the update failed
      Throws:
      AtlanException - on any API problems
    • updateAnnouncement

      public static DMAttributeAssociation updateAnnouncement(AtlanClient client, String qualifiedName, AtlanAnnouncementType type, String title, String message) throws AtlanException
      Update the announcement on a DMAttributeAssociation.
      Parameters:
      client - connectivity to the Atlan tenant on which to update the DMAttributeAssociation's announcement
      qualifiedName - of the DMAttributeAssociation
      type - type of announcement to set
      title - (optional) title of the announcement to set (or null for no title)
      message - (optional) message of the announcement to set (or null for no message)
      Returns:
      the result of the update, or null if the update failed
      Throws:
      AtlanException - on any API problems
    • removeAnnouncement

      public static DMAttributeAssociation removeAnnouncement(String qualifiedName, String name) throws AtlanException
      Remove the announcement from a DMAttributeAssociation.
      Parameters:
      qualifiedName - of the DMAttributeAssociation
      name - of the DMAttributeAssociation
      Returns:
      the updated DMAttributeAssociation, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • removeAnnouncement

      public static DMAttributeAssociation removeAnnouncement(AtlanClient client, String qualifiedName, String name) throws AtlanException
      Remove the announcement from a DMAttributeAssociation.
      Parameters:
      client - connectivity to the Atlan client from which to remove the DMAttributeAssociation's announcement
      qualifiedName - of the DMAttributeAssociation
      name - of the DMAttributeAssociation
      Returns:
      the updated DMAttributeAssociation, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • replaceTerms

      public static DMAttributeAssociation replaceTerms(String qualifiedName, String name, List<IGlossaryTerm> terms) throws AtlanException
      Replace the terms linked to the DMAttributeAssociation.
      Parameters:
      qualifiedName - for the DMAttributeAssociation
      name - human-readable name of the DMAttributeAssociation
      terms - the list of terms to replace on the DMAttributeAssociation, or null to remove all terms from the DMAttributeAssociation
      Returns:
      the DMAttributeAssociation that was updated (note that it will NOT contain details of the replaced terms)
      Throws:
      AtlanException - on any API problems
    • replaceTerms

      public static DMAttributeAssociation replaceTerms(AtlanClient client, String qualifiedName, String name, List<IGlossaryTerm> terms) throws AtlanException
      Replace the terms linked to the DMAttributeAssociation.
      Parameters:
      client - connectivity to the Atlan tenant on which to replace the DMAttributeAssociation's assigned terms
      qualifiedName - for the DMAttributeAssociation
      name - human-readable name of the DMAttributeAssociation
      terms - the list of terms to replace on the DMAttributeAssociation, or null to remove all terms from the DMAttributeAssociation
      Returns:
      the DMAttributeAssociation that was updated (note that it will NOT contain details of the replaced terms)
      Throws:
      AtlanException - on any API problems
    • appendTerms

      public static DMAttributeAssociation appendTerms(String qualifiedName, List<IGlossaryTerm> terms) throws AtlanException
      Link additional terms to the DMAttributeAssociation, without replacing existing terms linked to the DMAttributeAssociation. Note: this operation must make two API calls — one to retrieve the DMAttributeAssociation's existing terms, and a second to append the new terms.
      Parameters:
      qualifiedName - for the DMAttributeAssociation
      terms - the list of terms to append to the DMAttributeAssociation
      Returns:
      the DMAttributeAssociation that was updated (note that it will NOT contain details of the appended terms)
      Throws:
      AtlanException - on any API problems
    • appendTerms

      public static DMAttributeAssociation appendTerms(AtlanClient client, String qualifiedName, List<IGlossaryTerm> terms) throws AtlanException
      Link additional terms to the DMAttributeAssociation, without replacing existing terms linked to the DMAttributeAssociation. Note: this operation must make two API calls — one to retrieve the DMAttributeAssociation's existing terms, and a second to append the new terms.
      Parameters:
      client - connectivity to the Atlan tenant on which to append terms to the DMAttributeAssociation
      qualifiedName - for the DMAttributeAssociation
      terms - the list of terms to append to the DMAttributeAssociation
      Returns:
      the DMAttributeAssociation that was updated (note that it will NOT contain details of the appended terms)
      Throws:
      AtlanException - on any API problems
    • removeTerms

      public static DMAttributeAssociation removeTerms(String qualifiedName, List<IGlossaryTerm> terms) throws AtlanException
      Remove terms from a DMAttributeAssociation, without replacing all existing terms linked to the DMAttributeAssociation. Note: this operation must make two API calls — one to retrieve the DMAttributeAssociation's existing terms, and a second to remove the provided terms.
      Parameters:
      qualifiedName - for the DMAttributeAssociation
      terms - the list of terms to remove from the DMAttributeAssociation, which must be referenced by GUID
      Returns:
      the DMAttributeAssociation that was updated (note that it will NOT contain details of the resulting terms)
      Throws:
      AtlanException - on any API problems
    • removeTerms

      public static DMAttributeAssociation removeTerms(AtlanClient client, String qualifiedName, List<IGlossaryTerm> terms) throws AtlanException
      Remove terms from a DMAttributeAssociation, without replacing all existing terms linked to the DMAttributeAssociation. Note: this operation must make two API calls — one to retrieve the DMAttributeAssociation's existing terms, and a second to remove the provided terms.
      Parameters:
      client - connectivity to the Atlan tenant from which to remove terms from the DMAttributeAssociation
      qualifiedName - for the DMAttributeAssociation
      terms - the list of terms to remove from the DMAttributeAssociation, which must be referenced by GUID
      Returns:
      the DMAttributeAssociation that was updated (note that it will NOT contain details of the resulting terms)
      Throws:
      AtlanException - on any API problems
    • appendAtlanTags

      public static DMAttributeAssociation appendAtlanTags(String qualifiedName, List<String> atlanTagNames) throws AtlanException
      Add Atlan tags to a DMAttributeAssociation, without replacing existing Atlan tags linked to the DMAttributeAssociation. Note: this operation must make two API calls — one to retrieve the DMAttributeAssociation's existing Atlan tags, and a second to append the new Atlan tags.
      Parameters:
      qualifiedName - of the DMAttributeAssociation
      atlanTagNames - human-readable names of the Atlan tags to add
      Returns:
      the updated DMAttributeAssociation
      Throws:
      AtlanException - on any API problems
    • appendAtlanTags

      public static DMAttributeAssociation appendAtlanTags(AtlanClient client, String qualifiedName, List<String> atlanTagNames) throws AtlanException
      Add Atlan tags to a DMAttributeAssociation, without replacing existing Atlan tags linked to the DMAttributeAssociation. Note: this operation must make two API calls — one to retrieve the DMAttributeAssociation's existing Atlan tags, and a second to append the new Atlan tags.
      Parameters:
      client - connectivity to the Atlan tenant on which to append Atlan tags to the DMAttributeAssociation
      qualifiedName - of the DMAttributeAssociation
      atlanTagNames - human-readable names of the Atlan tags to add
      Returns:
      the updated DMAttributeAssociation
      Throws:
      AtlanException - on any API problems
    • appendAtlanTags

      public static DMAttributeAssociation appendAtlanTags(String qualifiedName, List<String> atlanTagNames, boolean propagate, boolean removePropagationsOnDelete, boolean restrictLineagePropagation) throws AtlanException
      Add Atlan tags to a DMAttributeAssociation, without replacing existing Atlan tags linked to the DMAttributeAssociation. Note: this operation must make two API calls — one to retrieve the DMAttributeAssociation's existing Atlan tags, and a second to append the new Atlan tags.
      Parameters:
      qualifiedName - of the DMAttributeAssociation
      atlanTagNames - human-readable names of the Atlan tags to add
      propagate - whether to propagate the Atlan tag (true) or not (false)
      removePropagationsOnDelete - whether to remove the propagated Atlan tags when the Atlan tag is removed from this asset (true) or not (false)
      restrictLineagePropagation - whether to avoid propagating through lineage (true) or do propagate through lineage (false)
      Returns:
      the updated DMAttributeAssociation
      Throws:
      AtlanException - on any API problems
    • appendAtlanTags

      public static DMAttributeAssociation appendAtlanTags(AtlanClient client, String qualifiedName, List<String> atlanTagNames, boolean propagate, boolean removePropagationsOnDelete, boolean restrictLineagePropagation) throws AtlanException
      Add Atlan tags to a DMAttributeAssociation, without replacing existing Atlan tags linked to the DMAttributeAssociation. Note: this operation must make two API calls — one to retrieve the DMAttributeAssociation's existing Atlan tags, and a second to append the new Atlan tags.
      Parameters:
      client - connectivity to the Atlan tenant on which to append Atlan tags to the DMAttributeAssociation
      qualifiedName - of the DMAttributeAssociation
      atlanTagNames - human-readable names of the Atlan tags to add
      propagate - whether to propagate the Atlan tag (true) or not (false)
      removePropagationsOnDelete - whether to remove the propagated Atlan tags when the Atlan tag is removed from this asset (true) or not (false)
      restrictLineagePropagation - whether to avoid propagating through lineage (true) or do propagate through lineage (false)
      Returns:
      the updated DMAttributeAssociation
      Throws:
      AtlanException - on any API problems
    • removeAtlanTag

      public static void removeAtlanTag(String qualifiedName, String atlanTagName) throws AtlanException
      Remove an Atlan tag from a DMAttributeAssociation.
      Parameters:
      qualifiedName - of the DMAttributeAssociation
      atlanTagName - human-readable name of the Atlan tag to remove
      Throws:
      AtlanException - on any API problems, or if the Atlan tag does not exist on the DMAttributeAssociation
    • removeAtlanTag

      public static void removeAtlanTag(AtlanClient client, String qualifiedName, String atlanTagName) throws AtlanException
      Remove an Atlan tag from a DMAttributeAssociation.
      Parameters:
      client - connectivity to the Atlan tenant from which to remove an Atlan tag from a DMAttributeAssociation
      qualifiedName - of the DMAttributeAssociation
      atlanTagName - human-readable name of the Atlan tag to remove
      Throws:
      AtlanException - on any API problems, or if the Atlan tag does not exist on the DMAttributeAssociation
    • _internal

    • toBuilder

      Overrides:
      toBuilder in class Reference
    • getDmAttributeFrom

      public IDMAttribute getDmAttributeFrom()
      Attribute from which this association is related.
      Specified by:
      getDmAttributeFrom in interface IDMAttributeAssociation
    • getDmAttributeFromQualifiedName

      public String getDmAttributeFromQualifiedName()
      Unique name of the association from this attribute is related.
      Specified by:
      getDmAttributeFromQualifiedName in interface IDMAttributeAssociation
    • getDmAttributeTo

      public IDMAttribute getDmAttributeTo()
      Attribute to which this association is related.
      Specified by:
      getDmAttributeTo in interface IDMAttributeAssociation
    • getDmAttributeToQualifiedName

      public String getDmAttributeToQualifiedName()
      Unique name of the association to which this attribute is related.
      Specified by:
      getDmAttributeToQualifiedName in interface IDMAttributeAssociation
    • getDmBusinessDate

      public Long getDmBusinessDate()
      Business date for the asset.
      Specified by:
      getDmBusinessDate in interface IDM
      Specified by:
      getDmBusinessDate in interface IDMAttributeAssociation
    • getDmCardinality

      public DMCardinalityType getDmCardinality()
      Cardinality of the data attribute association.
      Specified by:
      getDmCardinality in interface IDMAttributeAssociation
    • getDmDataModelDomain

      public String getDmDataModelDomain()
      A domain of the data model in which this asset exists.
      Specified by:
      getDmDataModelDomain in interface IDM
      Specified by:
      getDmDataModelDomain in interface IDMAttributeAssociation
    • getDmDataModelName

      public String getDmDataModelName()
      Simple name of the model in which this asset exists, or empty if it is itself a data model.
      Specified by:
      getDmDataModelName in interface IDM
      Specified by:
      getDmDataModelName in interface IDMAttributeAssociation
    • getDmDataModelNamespace

      public String getDmDataModelNamespace()
      A namespace of the data model in which this asset exists.
      Specified by:
      getDmDataModelNamespace in interface IDM
      Specified by:
      getDmDataModelNamespace in interface IDMAttributeAssociation
    • getDmDataModelQualifiedName

      public String getDmDataModelQualifiedName()
      Unique name of the model in which this asset exists, or empty if it is itself a data model.
      Specified by:
      getDmDataModelQualifiedName in interface IDM
      Specified by:
      getDmDataModelQualifiedName in interface IDMAttributeAssociation
    • getDmEntityName

      public String getDmEntityName()
      Simple name of the entity in which this asset exists, or empty if it is itself a data model entity.
      Specified by:
      getDmEntityName in interface IDM
      Specified by:
      getDmEntityName in interface IDMAttributeAssociation
    • getDmEntityQualifiedName

      public String getDmEntityQualifiedName()
      Unique name of the entity in which this asset exists, or empty if it is itself a data model entity.
      Specified by:
      getDmEntityQualifiedName in interface IDM
      Specified by:
      getDmEntityQualifiedName in interface IDMAttributeAssociation
    • getDmExpiredAtBusinessDate

      public Long getDmExpiredAtBusinessDate()
      Business expiration date for the asset.
      Specified by:
      getDmExpiredAtBusinessDate in interface IDM
      Specified by:
      getDmExpiredAtBusinessDate in interface IDMAttributeAssociation
    • getDmExpiredAtSystemDate

      public Long getDmExpiredAtSystemDate()
      System expiration date for the asset.
      Specified by:
      getDmExpiredAtSystemDate in interface IDM
      Specified by:
      getDmExpiredAtSystemDate in interface IDMAttributeAssociation
    • getDmLabel

      public String getDmLabel()
      Label of the data attribute association.
      Specified by:
      getDmLabel in interface IDMAttributeAssociation
    • getDmSystemDate

      public Long getDmSystemDate()
      System date for the asset.
      Specified by:
      getDmSystemDate in interface IDM
      Specified by:
      getDmSystemDate in interface IDMAttributeAssociation
    • getDmVersionName

      public String getDmVersionName()
      Simple name of the version in which this asset exists, or empty if it is itself a data model version.
      Specified by:
      getDmVersionName in interface IDM
      Specified by:
      getDmVersionName in interface IDMAttributeAssociation
    • getDmVersionQualifiedName

      public String getDmVersionQualifiedName()
      Unique name of the version in which this asset exists, or empty if it is itself a data model version.
      Specified by:
      getDmVersionQualifiedName in interface IDM
      Specified by:
      getDmVersionQualifiedName in interface IDMAttributeAssociation
    • getInputToAirflowTasks

      public SortedSet<IAirflowTask> getInputToAirflowTasks()
      Tasks to which this asset provides input.
      Specified by:
      getInputToAirflowTasks in interface ICatalog
      Specified by:
      getInputToAirflowTasks in interface IDM
      Specified by:
      getInputToAirflowTasks in interface IDMAttributeAssociation
    • getInputToProcesses

      public SortedSet<ILineageProcess> getInputToProcesses()
      Processes to which this asset provides input.
      Specified by:
      getInputToProcesses in interface ICatalog
      Specified by:
      getInputToProcesses in interface IDM
      Specified by:
      getInputToProcesses in interface IDMAttributeAssociation
    • getInputToSparkJobs

      public SortedSet<ISparkJob> getInputToSparkJobs()
      TBC
      Specified by:
      getInputToSparkJobs in interface ICatalog
      Specified by:
      getInputToSparkJobs in interface IDM
      Specified by:
      getInputToSparkJobs in interface IDMAttributeAssociation
    • getOutputFromAirflowTasks

      public SortedSet<IAirflowTask> getOutputFromAirflowTasks()
      Tasks from which this asset is output.
      Specified by:
      getOutputFromAirflowTasks in interface ICatalog
      Specified by:
      getOutputFromAirflowTasks in interface IDM
      Specified by:
      getOutputFromAirflowTasks in interface IDMAttributeAssociation
    • getOutputFromProcesses

      public SortedSet<ILineageProcess> getOutputFromProcesses()
      Processes from which this asset is produced as output.
      Specified by:
      getOutputFromProcesses in interface ICatalog
      Specified by:
      getOutputFromProcesses in interface IDM
      Specified by:
      getOutputFromProcesses in interface IDMAttributeAssociation
    • getOutputFromSparkJobs

      public SortedSet<ISparkJob> getOutputFromSparkJobs()
      TBC
      Specified by:
      getOutputFromSparkJobs in interface ICatalog
      Specified by:
      getOutputFromSparkJobs in interface IDM
      Specified by:
      getOutputFromSparkJobs in interface IDMAttributeAssociation
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Asset
    • canEqual

      protected boolean canEqual(Object other)
      Overrides:
      canEqual in class Asset
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Asset
    • toString

      public String toString()
      Description copied from class: AtlanObject
      Overrides:
      toString in class Asset
    • getTypeName

      public String getTypeName()
      Fixed typeName for DMAttributeAssociations.
      Specified by:
      getTypeName in interface AuditDetail
      Specified by:
      getTypeName in interface IAsset
      Specified by:
      getTypeName in interface ICatalog
      Specified by:
      getTypeName in interface IDM
      Specified by:
      getTypeName in interface IDMAttributeAssociation
      Specified by:
      getTypeName in interface IReferenceable
      Overrides:
      getTypeName in class Reference