Class ADLSObject

All Implemented Interfaces:
IADLS, IADLSObject, IAsset, IAzure, ICatalog, ICloud, IObjectStore, IReferenceable, AuditDetail, Serializable, Comparable<Reference>

@Generated("com.atlan.generators.ModelGeneratorV2") public class ADLSObject extends Asset implements IADLSObject, IADLS, IObjectStore, IAzure, ICatalog, IAsset, IReferenceable, ICloud
Instance of an Azure Data Lake Storage (ADLS) blob / object in Atlan.
See Also:
  • Field Details

  • Constructor Details

  • Method Details

    • trimToReference

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

      public static FluentSearch.FluentSearchBuilder<?,?> select()
      Start a fluent search that will return all ADLSObject 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) ADLSObject assets will be included.
      Returns:
      a fluent search that includes all ADLSObject assets
    • select

      public static FluentSearch.FluentSearchBuilder<?,?> select(AtlanClient client)
      Start a fluent search that will return all ADLSObject 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) ADLSObject assets will be included.
      Parameters:
      client - connectivity to the Atlan tenant from which to retrieve the assets
      Returns:
      a fluent search that includes all ADLSObject assets
    • select

      public static FluentSearch.FluentSearchBuilder<?,?> select(boolean includeArchived)
      Start a fluent search that will return all ADLSObject 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) ADLSObjects will be included
      Returns:
      a fluent search that includes all ADLSObject assets
    • select

      public static FluentSearch.FluentSearchBuilder<?,?> select(AtlanClient client, boolean includeArchived)
      Start a fluent search that will return all ADLSObject 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) ADLSObjects will be included
      Returns:
      a fluent search that includes all ADLSObject assets
    • refByGuid

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

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

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

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

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

      public static ADLSObject get(AtlanClient client, String id) throws AtlanException
      Retrieves a ADLSObject 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 ADLSObject to retrieve, either its GUID or its full qualifiedName
      Returns:
      the requested full ADLSObject, complete with all of its relationships
      Throws:
      AtlanException - on any error during the API invocation, such as the NotFoundException if the ADLSObject does not exist or the provided GUID is not a ADLSObject
    • get

      public static ADLSObject get(AtlanClient client, String id, boolean includeRelationships) throws AtlanException
      Retrieves a ADLSObject 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 ADLSObject 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 ADLSObject, optionally complete with all of its relationships
      Throws:
      AtlanException - on any error during the API invocation, such as the NotFoundException if the ADLSObject does not exist or the provided GUID is not a ADLSObject
    • restore

      public static boolean restore(String qualifiedName) throws AtlanException
      Restore the archived (soft-deleted) ADLSObject to active.
      Parameters:
      qualifiedName - for the ADLSObject
      Returns:
      true if the ADLSObject 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) ADLSObject to active.
      Parameters:
      client - connectivity to the Atlan tenant on which to restore the asset
      qualifiedName - for the ADLSObject
      Returns:
      true if the ADLSObject is now active, and false otherwise
      Throws:
      AtlanException - on any API problems
    • creator

      public static ADLSObject.ADLSObjectBuilder<?,?> creator(String name, ADLSContainer container) throws InvalidRequestException
      Builds the minimal object necessary to create a ADLSObject.
      Parameters:
      name - of the ADLSObject
      container - in which the ADLSObject should be created, which must have at least a qualifiedName
      Returns:
      the minimal request necessary to create the ADLSObject, as a builder
      Throws:
      InvalidRequestException - if the container provided is without a qualifiedName
    • creator

      public static ADLSObject.ADLSObjectBuilder<?,?> creator(String name, String containerQualifiedName)
      Builds the minimal object necessary to create a ADLSObject.
      Parameters:
      name - of the ADLSObject
      containerQualifiedName - unique name of the container through which the ADLSObject is accessible
      Returns:
      the minimal object necessary to create the ADLSObject, as a builder
    • creator

      public static ADLSObject.ADLSObjectBuilder<?,?> creator(String name, String connectionQualifiedName, String accountQualifiedName, String containerQualifiedName)
      Builds the minimal object necessary to create a ADLSObject.
      Parameters:
      name - of the ADLSObject
      connectionQualifiedName - unique name of the connection in which the ADLSObject should be created
      accountQualifiedName - unique name of the account in which the ADLSObject should be created
      containerQualifiedName - unique name of the container through which the ADLSObject is accessible
      Returns:
      the minimal object necessary to create the ADLSObject, as a builder
    • generateQualifiedName

      public static String generateQualifiedName(String name, String containerQualifiedName)
      Generate a unique ADLSObject name.
      Parameters:
      name - of the ADLSObject
      containerQualifiedName - unique name of the container through which the ADLSObject is accessible
      Returns:
      a unique name for the ADLSObject
    • updater

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

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

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

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

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

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

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

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

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

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

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

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

      public static ADLSObject updateAnnouncement(String qualifiedName, AtlanAnnouncementType type, String title, String message) throws AtlanException
      Update the announcement on a ADLSObject.
      Parameters:
      qualifiedName - of the ADLSObject
      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 ADLSObject updateAnnouncement(AtlanClient client, String qualifiedName, AtlanAnnouncementType type, String title, String message) throws AtlanException
      Update the announcement on a ADLSObject.
      Parameters:
      client - connectivity to the Atlan tenant on which to update the ADLSObject's announcement
      qualifiedName - of the ADLSObject
      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 ADLSObject removeAnnouncement(String qualifiedName, String name) throws AtlanException
      Remove the announcement from a ADLSObject.
      Parameters:
      qualifiedName - of the ADLSObject
      name - of the ADLSObject
      Returns:
      the updated ADLSObject, or null if the removal failed
      Throws:
      AtlanException - on any API problems
    • removeAnnouncement

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

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

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

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

      public static ADLSObject appendTerms(AtlanClient client, String qualifiedName, List<IGlossaryTerm> terms) throws AtlanException
      Link additional terms to the ADLSObject, without replacing existing terms linked to the ADLSObject. Note: this operation must make two API calls — one to retrieve the ADLSObject'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 ADLSObject
      qualifiedName - for the ADLSObject
      terms - the list of terms to append to the ADLSObject
      Returns:
      the ADLSObject that was updated (note that it will NOT contain details of the appended terms)
      Throws:
      AtlanException - on any API problems
    • removeTerms

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

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

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

      public static ADLSObject appendAtlanTags(AtlanClient client, String qualifiedName, List<String> atlanTagNames) throws AtlanException
      Add Atlan tags to a ADLSObject, without replacing existing Atlan tags linked to the ADLSObject. Note: this operation must make two API calls — one to retrieve the ADLSObject'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 ADLSObject
      qualifiedName - of the ADLSObject
      atlanTagNames - human-readable names of the Atlan tags to add
      Returns:
      the updated ADLSObject
      Throws:
      AtlanException - on any API problems
    • appendAtlanTags

      public static ADLSObject appendAtlanTags(String qualifiedName, List<String> atlanTagNames, boolean propagate, boolean removePropagationsOnDelete, boolean restrictLineagePropagation) throws AtlanException
      Add Atlan tags to a ADLSObject, without replacing existing Atlan tags linked to the ADLSObject. Note: this operation must make two API calls — one to retrieve the ADLSObject's existing Atlan tags, and a second to append the new Atlan tags.
      Parameters:
      qualifiedName - of the ADLSObject
      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 ADLSObject
      Throws:
      AtlanException - on any API problems
    • appendAtlanTags

      public static ADLSObject appendAtlanTags(AtlanClient client, String qualifiedName, List<String> atlanTagNames, boolean propagate, boolean removePropagationsOnDelete, boolean restrictLineagePropagation) throws AtlanException
      Add Atlan tags to a ADLSObject, without replacing existing Atlan tags linked to the ADLSObject. Note: this operation must make two API calls — one to retrieve the ADLSObject'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 ADLSObject
      qualifiedName - of the ADLSObject
      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 ADLSObject
      Throws:
      AtlanException - on any API problems
    • removeAtlanTag

      public static void removeAtlanTag(String qualifiedName, String atlanTagName) throws AtlanException
      Remove an Atlan tag from a ADLSObject.
      Parameters:
      qualifiedName - of the ADLSObject
      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 ADLSObject
    • removeAtlanTag

      public static void removeAtlanTag(AtlanClient client, String qualifiedName, String atlanTagName) throws AtlanException
      Remove an Atlan tag from a ADLSObject.
      Parameters:
      client - connectivity to the Atlan tenant from which to remove an Atlan tag from a ADLSObject
      qualifiedName - of the ADLSObject
      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 ADLSObject
    • _internal

      public static ADLSObject.ADLSObjectBuilder<?,?> _internal()
    • toBuilder

      public ADLSObject.ADLSObjectBuilder<?,?> toBuilder()
      Overrides:
      toBuilder in class Reference
    • getAdlsAccountQualifiedName

      public String getAdlsAccountQualifiedName()
      Unique name of the account for this ADLS asset.
      Specified by:
      getAdlsAccountQualifiedName in interface IADLS
      Specified by:
      getAdlsAccountQualifiedName in interface IADLSObject
    • getAdlsAccountSecondaryLocation

      public String getAdlsAccountSecondaryLocation()
      Secondary location of the ADLS account.
      Specified by:
      getAdlsAccountSecondaryLocation in interface IADLS
      Specified by:
      getAdlsAccountSecondaryLocation in interface IADLSObject
      Specified by:
      getAdlsAccountSecondaryLocation in interface IAzure
    • getAdlsContainer

      public IADLSContainer getAdlsContainer()
      Container this object exists within.
      Specified by:
      getAdlsContainer in interface IADLSObject
    • getAdlsContainerQualifiedName

      public String getAdlsContainerQualifiedName()
      Unique name of the container this object exists within.
      Specified by:
      getAdlsContainerQualifiedName in interface IADLSObject
    • getAdlsObjectAccessTier

      public ADLSAccessTier getAdlsObjectAccessTier()
      Access tier of this object.
      Specified by:
      getAdlsObjectAccessTier in interface IADLSObject
    • getAdlsObjectAccessTierLastModifiedTime

      public Long getAdlsObjectAccessTierLastModifiedTime()
      Time (epoch) when the acccess tier for this object was last modified, in milliseconds.
      Specified by:
      getAdlsObjectAccessTierLastModifiedTime in interface IADLSObject
    • getAdlsObjectArchiveStatus

      public ADLSObjectArchiveStatus getAdlsObjectArchiveStatus()
      Archive status of this object.
      Specified by:
      getAdlsObjectArchiveStatus in interface IADLSObject
    • getAdlsObjectCacheControl

      public String getAdlsObjectCacheControl()
      Cache control of this object.
      Specified by:
      getAdlsObjectCacheControl in interface IADLSObject
    • getAdlsObjectContentLanguage

      public String getAdlsObjectContentLanguage()
      Language of this object's contents.
      Specified by:
      getAdlsObjectContentLanguage in interface IADLSObject
    • getAdlsObjectContentMD5Hash

      public String getAdlsObjectContentMD5Hash()
      MD5 hash of this object's contents.
      Specified by:
      getAdlsObjectContentMD5Hash in interface IADLSObject
    • getAdlsObjectContentType

      public String getAdlsObjectContentType()
      Content type of this object.
      Specified by:
      getAdlsObjectContentType in interface IADLSObject
    • getAdlsObjectLeaseState

      public ADLSLeaseState getAdlsObjectLeaseState()
      State of this object's lease.
      Specified by:
      getAdlsObjectLeaseState in interface IADLSObject
    • getAdlsObjectLeaseStatus

      public ADLSLeaseStatus getAdlsObjectLeaseStatus()
      Status of this object's lease.
      Specified by:
      getAdlsObjectLeaseStatus in interface IADLSObject
    • getAdlsObjectMetadata

      public Map<String,String> getAdlsObjectMetadata()
      Metadata associated with this object, from ADLS.
      Specified by:
      getAdlsObjectMetadata in interface IADLSObject
    • getAdlsObjectServerEncrypted

      public Boolean getAdlsObjectServerEncrypted()
      Whether this object is server encrypted (true) or not (false).
      Specified by:
      getAdlsObjectServerEncrypted in interface IADLSObject
    • getAdlsObjectSize

      public Long getAdlsObjectSize()
      Size of this object.
      Specified by:
      getAdlsObjectSize in interface IADLSObject
    • getAdlsObjectType

      public ADLSObjectType getAdlsObjectType()
      Type of this object.
      Specified by:
      getAdlsObjectType in interface IADLSObject
    • getAdlsObjectUrl

      public String getAdlsObjectUrl()
      URL of this object.
      Specified by:
      getAdlsObjectUrl in interface IADLSObject
    • getAdlsObjectVersionId

      public String getAdlsObjectVersionId()
      Identifier of the version of this object, from ADLS.
      Specified by:
      getAdlsObjectVersionId in interface IADLSObject
    • getAdlsObjectVersionLevelImmutabilitySupport

      public Boolean getAdlsObjectVersionLevelImmutabilitySupport()
      Whether this object supports version-level immutability (true) or not (false).
      Specified by:
      getAdlsObjectVersionLevelImmutabilitySupport in interface IADLSObject
    • getApplicationContainer

      public IApplicationContainer getApplicationContainer()
      ApplicationContainer asset containing this Catalog asset.
      Specified by:
      getApplicationContainer in interface IADLS
      Specified by:
      getApplicationContainer in interface IADLSObject
      Specified by:
      getApplicationContainer in interface ICatalog
      Specified by:
      getApplicationContainer in interface IObjectStore
    • getAssetApplicationQualifiedName

      public String getAssetApplicationQualifiedName()
      Qualified name of the Application Container that contains this asset.
      Specified by:
      getAssetApplicationQualifiedName in interface IADLS
      Specified by:
      getAssetApplicationQualifiedName in interface IADLSObject
      Specified by:
      getAssetApplicationQualifiedName in interface ICatalog
      Specified by:
      getAssetApplicationQualifiedName in interface IObjectStore
    • getAzureLocation

      public String getAzureLocation()
      Location of this asset in Azure.
      Specified by:
      getAzureLocation in interface IADLS
      Specified by:
      getAzureLocation in interface IADLSObject
      Specified by:
      getAzureLocation in interface IAzure
    • getAzureResourceId

      public String getAzureResourceId()
      Resource identifier of this asset in Azure.
      Specified by:
      getAzureResourceId in interface IADLS
      Specified by:
      getAzureResourceId in interface IADLSObject
      Specified by:
      getAzureResourceId in interface IAzure
    • getAzureTags

      public List<AzureTag> getAzureTags()
      Tags that have been applied to this asset in Azure.
      Specified by:
      getAzureTags in interface IADLS
      Specified by:
      getAzureTags in interface IADLSObject
      Specified by:
      getAzureTags in interface IAzure
    • getInputToAirflowTasks

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

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

      public SortedSet<ISparkJob> getInputToSparkJobs()
      TBC
      Specified by:
      getInputToSparkJobs in interface IADLS
      Specified by:
      getInputToSparkJobs in interface IADLSObject
      Specified by:
      getInputToSparkJobs in interface ICatalog
      Specified by:
      getInputToSparkJobs in interface IObjectStore
    • getModelImplementedEntities

      public SortedSet<IModelEntity> getModelImplementedEntities()
      Entities implemented by this asset.
      Specified by:
      getModelImplementedEntities in interface IADLS
      Specified by:
      getModelImplementedEntities in interface IADLSObject
      Specified by:
      getModelImplementedEntities in interface ICatalog
      Specified by:
      getModelImplementedEntities in interface IObjectStore
    • getOutputFromAirflowTasks

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

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

      public SortedSet<ISparkJob> getOutputFromSparkJobs()
      TBC
      Specified by:
      getOutputFromSparkJobs in interface IADLS
      Specified by:
      getOutputFromSparkJobs in interface IADLSObject
      Specified by:
      getOutputFromSparkJobs in interface ICatalog
      Specified by:
      getOutputFromSparkJobs in interface IObjectStore
    • 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 ADLSObjects.
      Specified by:
      getTypeName in interface AuditDetail
      Specified by:
      getTypeName in interface IADLS
      Specified by:
      getTypeName in interface IADLSObject
      Specified by:
      getTypeName in interface IAsset
      Specified by:
      getTypeName in interface IAzure
      Specified by:
      getTypeName in interface ICatalog
      Specified by:
      getTypeName in interface ICloud
      Specified by:
      getTypeName in interface IObjectStore
      Specified by:
      getTypeName in interface IReferenceable
      Overrides:
      getTypeName in class Reference