Serialized Form
-
Package com.atlan.api
-
Class com.atlan.api.AbstractEndpoint.RawResponse
class RawResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
payload
String payload
-
-
Class com.atlan.api.AssetEndpoint.AtlanTagList
class AtlanTagList extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
-
Package com.atlan.exception
-
Exception com.atlan.exception.ApiConnectionException
class ApiConnectionException extends AtlanException implements Serializable- serialVersionUID:
- 2L
-
Exception com.atlan.exception.ApiException
class ApiException extends AtlanException implements Serializable- serialVersionUID:
- 2L
-
Exception com.atlan.exception.AtlanException
class AtlanException extends Exception implements Serializable- serialVersionUID:
- 2L
-
Exception com.atlan.exception.AuthenticationException
class AuthenticationException extends AtlanException implements Serializable- serialVersionUID:
- 2L
-
Exception com.atlan.exception.ConflictException
class ConflictException extends AtlanException implements Serializable- serialVersionUID:
- 2L
-
Exception com.atlan.exception.InvalidRequestException
class InvalidRequestException extends AtlanException implements Serializable- serialVersionUID:
- 2L
-
Exception com.atlan.exception.LogicException
class LogicException extends AtlanException implements Serializable- serialVersionUID:
- 2L
-
Exception com.atlan.exception.NotFoundException
class NotFoundException extends AtlanException implements Serializable- serialVersionUID:
- 2L
-
Exception com.atlan.exception.PermissionException
class PermissionException extends AuthenticationException implements Serializable- serialVersionUID:
- 2L
-
Exception com.atlan.exception.RateLimitException
class RateLimitException extends InvalidRequestException implements Serializable- serialVersionUID:
- 2L
-
-
Package com.atlan.model.admin
-
Class com.atlan.model.admin.AbstractPersonaPolicy
class AbstractPersonaPolicy extends AbstractPolicy implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
assets
SortedSet<String> assets
All assets' qualifiedNames to include in the policy. These act as prefixes, so any assets within these will also be included in the policy. (For example, if you give the qualifiedName of a schema, all tables and columns in that schema are also included in the policy.) -
connectionId
String connectionId
Unique identifier (GUID) of the connection to which this policy applies.
-
-
Class com.atlan.model.admin.AbstractPolicy
class AbstractPolicy extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
allow
Boolean allow
Whether the actions are granted (true) or explicitly denied (false). -
createdAt
Long createdAt
Time (epoch) at which this policy was created, in milliseconds. -
createdBy
String createdBy
Username of the user who created this policy. -
description
String description
Explanation of the policy. -
id
String id
Unique identifier (GUID) of the policy. -
name
String name
Name of the policy. -
updatedAt
Long updatedAt
Time (epoch) at which this policy was updated, in milliseconds. -
updatedBy
String updatedBy
Username of the user who updated this policy.
-
-
Class com.atlan.model.admin.AbstractPurposePolicy
class AbstractPurposePolicy extends AbstractPolicy implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
allUsers
Boolean allUsers
Whether this policy applies to all users (true) or not (false). -
groups
SortedSet<String> groups
All groups' names to whom the policy will apply. Note that these are the internal names of the groups, typically in all lowercase and without spaces.- See Also:
-
AtlanGroup.name
-
users
SortedSet<String> users
All users' names to whom the policy will apply.- See Also:
-
AtlanUser.username
-
-
Class com.atlan.model.admin.AdminEvent
class AdminEvent extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
authDetails
AuthDetails authDetails
Details of who carried out the operation. -
operationType
AdminOperationType operationType
Type of admin operation that occurred. -
realmId
String realmId
Unique identifier of the realm in which the event occurred (usuallydefault
). -
representation
String representation
Detailed resource that was created or changed as a result of the operation. -
resourcePath
String resourcePath
Location of the resource that was created or changed as a result of the operation. -
resourceType
AdminResourceType resourceType
Type of resource for the admin operation that occurred. -
time
Long time
Time (epoch) when the admin operation occurred, in milliseconds.
-
-
Class com.atlan.model.admin.AdminEventRequest
class AdminEventRequest extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
clientId
String clientId
Unique identifier (GUID) of the client that carried out the operation. -
dateFrom
String dateFrom
Earliest date from which to include events (format: yyyy-MM-dd). -
dateTo
String dateTo
Latest date up to which to include events (format: yyyy-MM-dd). -
ipAddress
String ipAddress
IP address from which the operation was carried out. -
offset
int offset
Starting point for the events (for paging). -
operationTypes
List<AdminOperationType> operationTypes
Include events only with the supplied types of operations. -
realmId
String realmId
Unique name of the realm from which the operation was carried out. -
resourcePath
String resourcePath
Include events only against the supplied resource. -
resourceTypes
List<AdminResourceType> resourceTypes
Include events only against the supplied types of resources. -
size
int size
Maximum number of events to retrieve (per page). -
userId
String userId
Unique identifier (GUID) of the user who carried out the operation.
-
-
Class com.atlan.model.admin.AdminEventResponse
class AdminEventResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
client
AtlanClient client
Connectivity to the Atlan tenant where the search was run. -
events
List<AdminEvent> events
Admin events returned by the request. -
request
AdminEventRequest request
Request that produced this response.
-
-
Class com.atlan.model.admin.AdminEventResponse.AdminEventResponseDeserializer
class AdminEventResponseDeserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<AdminEventResponse> implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.AdminEventResponse.AdminEventResponseSerializer
class AdminEventResponseSerializer extends com.fasterxml.jackson.databind.ser.std.StdSerializer<AdminEventResponse> implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.ApiToken
class ApiToken extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
attributes
ApiToken.ApiTokenAttributes attributes
Detailed characteristics of the API token. -
clientId
String clientId
Unique client identifier (GUID) of the API token. -
displayName
String displayName
Human-readable name provided when creating the token. -
id
String id
Unique identifier (GUID) of the API token.
-
-
Class com.atlan.model.admin.ApiToken.ApiTokenAttributes
class ApiTokenAttributes extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
accessToken
String accessToken
The actual API token that can be used as a bearer token. -
accessTokenLifespan
Long accessTokenLifespan
Time, in seconds, from createdAt after which the token will expire. -
clientId
String clientId
Unique client identifier (GUID) of the API token. -
createdAt
Long createdAt
Epoch time, in milliseconds, at which the API token was created. -
createdBy
String createdBy
User who created the API token. -
description
String description
Explanation of the API token. -
displayName
String displayName
Human-readable name provided when creating the token. -
personas
SortedSet<ApiToken.ApiTokenPersona> personas
Personas associated with the API token. -
purposes
String purposes
Deprecated.This was a possible future placeholder for purposes associated with the token, but no longer exists on payloads. It is left here purely for any existing code that may have referenced it, but should be removed from that code as it will be removed in the next major release from this object. -
workspacePermissions
SortedSet<String> workspacePermissions
Detailed permissions given to the API token.
-
-
Class com.atlan.model.admin.ApiToken.ApiTokenPersona
class ApiTokenPersona extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.ApiTokenResponse
class ApiTokenResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.AtlanFile
class AtlanFile extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
contentType
String contentType
MIME type for the file that was uploaded. -
createdAt
Long createdAt
Time at which the file was uploaded (epoch), in milliseconds. -
extension
String extension
Filename extension for the file that was uploaded. -
fileName
String fileName
Generated name of the file that was uploaded. -
fileSize
Long fileSize
Size of the file that was uploaded, in bytes. -
id
String id
Unique identifier (GUID) of the file. -
isArchived
Boolean isArchived
Whether the file has been archived (true) or is still actively available (false) -
isEncrypted
Boolean isEncrypted
Whether the file is encrypted (true) or not (false). -
isUploaded
Boolean isUploaded
TBC -
key
String key
Generated name of the file that was uploaded. -
rawName
String rawName
Original name of the file that was uploaded. -
redirectUrl
String redirectUrl
TBC -
updatedAt
Long updatedAt
Time at which the file was last modified (epoch), in milliseconds. -
uploadedAt
String uploadedAt
TBC -
version
String version
TBC
-
-
Class com.atlan.model.admin.AtlanGroup
class AtlanGroup extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
alias
String alias
Name of the group as it appears in the UI. -
attributes
AtlanGroup.GroupAttributes attributes
Detailed attributes of the group. -
decentralizedRoles
String decentralizedRoles
TBC -
id
String id
Unique identifier for the group (GUID). -
name
String name
Unique (internal) name for the group. -
path
String path
TBC -
personas
SortedSet<AtlanGroup.Persona> personas
Personas the group is associated with (limited details). -
purposes
SortedSet<AtlanGroup.Purpose> purposes
Purposes the group is associated with (limited details). -
roles
SortedSet<String> roles
TBC -
userCount
Long userCount
Number of users in the group.
-
-
Class com.atlan.model.admin.AtlanGroup.GroupAttributes
class GroupAttributes extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
alias
List<String> alias
Name of the group as it appears in the UI. -
channels
List<String> channels
Slack channels for this group. -
createdAt
List<String> createdAt
Time (epoch) at which the group was created, in milliseconds. -
createdBy
List<String> createdBy
User who created the group. -
description
List<String> description
Description of the group. -
isDefault
List<String> isDefault
Whether this group should be auto-assigned to all new users (true) or not (false). -
updatedAt
List<String> updatedAt
Time (epoch) at which the group was last updated, in milliseconds. -
updatedBy
List<String> updatedBy
User who last updated the group.
-
-
Class com.atlan.model.admin.AtlanGroup.Persona
class Persona extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.AtlanGroup.Purpose
class Purpose extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.AtlanImage
class AtlanImage extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
contentType
String contentType
MIME type for the image that was uploaded. -
createdAt
Long createdAt
Time at which the image was uploaded (epoch), in milliseconds. -
extension
String extension
Filename extension for the image that was uploaded. -
fileName
String fileName
Generated name of the image that was uploaded. -
fileSize
Long fileSize
Size of the image that was uploaded, in bytes. -
id
String id
Unique identifier (GUID) of the image. -
isArchived
Boolean isArchived
Whether the image has been archived (true) or is still actively available (false) -
isEncrypted
Boolean isEncrypted
Whether the image is encrypted (true) or not (false). -
isUploaded
Boolean isUploaded
TBC -
key
String key
Generated name of the image that was uploaded. -
rawName
String rawName
Original name of the image that was uploaded. -
redirectUrl
String redirectUrl
TBC -
updatedAt
Long updatedAt
Time at which the image was last modified (epoch), in milliseconds. -
uploadedAt
String uploadedAt
TBC -
version
String version
TBC
-
-
Class com.atlan.model.admin.AtlanRequest
class AtlanRequest extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
accessEndDate
Object accessEndDate
Unused. -
accessStartDate
Object accessStartDate
Unused. -
approvalType
String approvalType
Type of approval required — currently only `single` is supported. -
approvedBy
String approvedBy
User who approved the request. -
assignedApprovers
Object assignedApprovers
Unused. -
botRunId
Object botRunId
Unused. -
confidenceScore
Object confidenceScore
Unused. -
createdAt
Long createdAt
Date and time at which the request was created. -
createdBy
String createdBy
User who created the request. -
destinationAttribute
String destinationAttribute
Attribute the request was made against. -
destinationEntity
Asset destinationEntity
Limited details about the asset this request was made against. -
destinationGuid
String destinationGuid
Unique identifier (GUID) of the asset this request was made against. -
destinationQualifiedName
String destinationQualifiedName
Unique name of the asset this request was made against. -
destinationValue
String destinationValue
Requested value for the attribute. -
destinationValueAction
String destinationValueAction
Semantic to use when applying the destination value, for example `append`. -
destinationValueArray
Object destinationValueArray
Unused. -
destinationValueObject
Object destinationValueObject
Unused. -
destinationValueType
String destinationValueType
Type of the destination attribute value, for example `array`. -
entityType
String entityType
Type of asset the change was requested against. -
hash
Long hash
TBC -
id
String id
Unique identifier for the request (GUID). -
isActive
Boolean isActive
If true, the request is still open. -
isDuplicate
Boolean isDuplicate
TBC -
message
String message
Comment recorded with the approval or rejection of the request. -
rejectedBy
String rejectedBy
User who rejected the request. -
requestApproverGroups
SortedSet<String> requestApproverGroups
TBC -
requestApproverRoles
SortedSet<String> requestApproverRoles
Names of roles (in Keycloak) that can approve this request. -
requestApproverUsers
SortedSet<String> requestApproverUsers
Names of users (in Keycloak) that can approve this request. -
requestDenyGroups
SortedSet<String> requestDenyGroups
TBC -
requestDenyRoles
SortedSet<String> requestDenyRoles
Unique identifiers (GUIDs) of the roles that can deny this request. -
requestDenyUsers
SortedSet<String> requestDenyUsers
Names of users (in Keycloak) that can deny this request. -
requestsBatch
Object requestsBatch
Unused. -
requestType
String requestType
Type of change the request is for. -
sourceAttribute
String sourceAttribute
TBC -
sourceEntity
Object sourceEntity
TBC -
sourceGuid
String sourceGuid
Unique identifier (GUID) of the asset being related through this request, for example the term's GUID for a TERM_LINK. -
sourceQualifiedName
String sourceQualifiedName
Unique name of the asset being related through this request, for example the term's qualifiedName for a TERM_LINK. -
sourceType
String sourceType
Should be `static` for an ATTRIBUTE or CUSTOM_METADATA requestType, and `atlas` for other request types. -
status
AtlanRequestStatus status
Status of the request. -
tenantId
String tenantId
Name of the tenant for the request (usually `default`). -
updatedAt
Long updatedAt
Date and time at which the request was last updated. -
version
String version
Unique version name for the request.
-
-
Class com.atlan.model.admin.AtlanRequestPayload
class AtlanRequestPayload extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.AtlanRequestResponse
class AtlanRequestResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
filterRecord
Integer filterRecord
-
records
List<AtlanRequest> records
-
totalRecord
Integer totalRecord
-
-
Class com.atlan.model.admin.AtlanRole
class AtlanRole extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
clientRole
Boolean clientRole
TBC -
description
String description
Description of the role. -
id
String id
Unique identifier for the role (GUID). -
level
String level
TBC -
memberCount
String memberCount
Number of users with this role. -
name
String name
Unique name for the role. -
userCount
String userCount
TBC
-
-
Class com.atlan.model.admin.AtlanTagPayload
class AtlanTagPayload extends AtlanRequestPayload implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
propagate
Boolean propagate
Whether the Atlan tag should propagate. -
removePropagationsOnEntityDelete
Boolean removePropagationsOnEntityDelete
Whether removing the Atlan tag should also remove its propagations. -
typeName
String typeName
Name of the Atlan tag. -
validityPeriods
List<Object> validityPeriods
Unused.
-
-
Class com.atlan.model.admin.AtlanTagRequest
class AtlanTagRequest extends AtlanRequest implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
payload
AtlanTagPayload payload
Details of the requested Atlan tag. -
requestType
String requestType
Fixed requestType for Atlan tags. -
sourceType
String sourceType
Fixed sourceType for Atlan tags.
-
-
Class com.atlan.model.admin.AtlanUser
class AtlanUser extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
adminEvents
List<AdminEvent> adminEvents
List of administration-related events for this user. -
attributes
AtlanUser.UserAttributes attributes
Detailed attributes of the user. -
createdTimestamp
Long createdTimestamp
Time (epoch) at which the user was created, in milliseconds. -
decentralizedRoles
String decentralizedRoles
TBC -
defaultRoles
List<String> defaultRoles
TBC -
email
String email
Email address of the user. -
emailVerified
Boolean emailVerified
When true, the email address of the user has been verified. -
enabled
Boolean enabled
When true, the user is enabled. When false, the user has been deactivated. -
firstName
String firstName
First name of the user. -
groupCount
Long groupCount
Number of groups to which the user belongs. -
id
String id
Unique identifier (GUID) of the user within Atlan. -
lastLoginTime
Long lastLoginTime
Time (epoch) at which the user last logged into Atlan. -
lastName
String lastName
Last name (surname) of the user. -
loginEvents
List<KeycloakEvent> loginEvents
List of login-related events for this user. -
personas
SortedSet<AtlanUser.Persona> personas
Personas the user is associated with. -
purposes
SortedSet<String> purposes
Purposes the user is associated with. -
roles
List<String> roles
TBC -
username
String username
Username of the user within Atlan. -
workspaceRole
String workspaceRole
Name of the role of the user within Atlan.
-
-
Class com.atlan.model.admin.AtlanUser.Persona
class Persona extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.AtlanUser.UserAttributes
class UserAttributes extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
designation
List<String> designation
(Unused) -
invitedAt
List<String> invitedAt
Time at which the user was invited (as a formatted string). -
invitedBy
List<String> invitedBy
User who invited this user. -
invitedByName
List<String> invitedByName
TBC -
jira
List<String> jira
Unique JIRA user identifier. -
profileRole
List<String> profileRole
User-provided role during initial registration. -
profileRoleOther
List<String> profileRoleOther
User-provided role during initial registration when profileRole is "other". -
skills
List<String> skills
Skills the user possesses. -
slack
List<String> slack
Unique Slack member identifier.
-
-
Class com.atlan.model.admin.AttributeRequest
class AttributeRequest extends AtlanRequest implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.AuthDetails
class AuthDetails extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
clientId
String clientId
Unique identifier (GUID) of the client that carried out the operation. -
ipAddress
String ipAddress
IP address from which the operation was carried out. -
realmId
String realmId
Unique name of the realm from which the operation was carried out. -
userId
String userId
Unique identifier (GUID) of the user who carried out the operation.
-
-
Class com.atlan.model.admin.CreateGroupResponse
class CreateGroupResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
group
String group
Unique identifier (GUID) of the group within Atlan. -
users
Map<String,
CreateGroupResponse.UserStatus> users Map of user association statuses, keyed by unique identifier (GUID) of the user.
-
-
Class com.atlan.model.admin.CreateGroupResponse.UserStatus
class UserStatus extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.Credential
class Credential extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
authType
String authType
Authentication mechanism represented by the credential. -
connectorConfigName
String connectorConfigName
Name of the connector configuration responsible for managing the credential. -
connectorType
String connectorType
Type of connector used by the credential. -
extras
Map<String,
String> extras Additional details about the credential. This can capture, for example, a secondary secret for particular forms of authentication and / or additional details about the scope of the connectivity (a specific database, role, warehouse, etc). -
host
String host
Hostname the for which connectivity is defined by the credential. -
id
String id
Unique identifier (GUID) of the credential. -
name
String name
Name of the credential. -
password
String password
More sensitive portion of the credential, typically used for a password for basic authentication or client secrets for other forms of authentication. -
port
Integer port
Port number on which connectivity should be done. -
username
String username
Less sensitive portion of the credential, typically used for a username for basic authentication or client IDs for other forms of authentication.
-
-
Class com.atlan.model.admin.CredentialResponse
class CredentialResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
authType
String authType
-
connection
Object connection
-
connector
String connector
-
connectorConfigName
String connectorConfigName
-
connectorType
String connectorType
-
createdAt
Long createdAt
-
createdBy
String createdBy
-
description
String description
-
host
String host
-
id
String id
-
isActive
Boolean isActive
-
level
Object level
-
metadata
Object metadata
-
name
String name
-
port
Integer port
-
tenantId
String tenantId
-
updatedAt
Long updatedAt
-
version
String version
-
-
Class com.atlan.model.admin.CredentialTestResponse
class CredentialTestResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.CustomMetadataPayload
class CustomMetadataPayload extends AtlanRequestPayload implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
attributes
CustomMetadataAttributes attributes
Custom metadata properties and their values.
-
-
Class com.atlan.model.admin.CustomMetadataRequest
class CustomMetadataRequest extends AtlanRequest implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
payload
CustomMetadataPayload payload
Custom metadata attributes and values that were requested. -
requestType
String requestType
Fixed requestType for custom metadata. -
sourceType
String sourceType
Fixed sourceType for custom metadata.
-
-
Class com.atlan.model.admin.GroupRequest
class GroupRequest extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
count
boolean count
Whether to include an overall count of groups (true) or not (false). -
filter
String filter
Criteria by which to filter the list of groups to retrieve. -
limit
int limit
Maximum number of groups to return per page. -
offset
int offset
Starting point for the list of groups when paging. -
sort
String sort
Property by which to sort the resulting list of groups.
-
-
Class com.atlan.model.admin.GroupResponse
class GroupResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
client
AtlanClient client
Connectivity to the Atlan tenant where the search was run. -
filterRecord
Integer filterRecord
Filtered number of groups. -
records
List<AtlanGroup> records
Details about each group in this page of the response. -
request
GroupRequest request
Request that produced this response. -
totalRecord
Integer totalRecord
Total number of groups.
-
-
Class com.atlan.model.admin.KeycloakEvent
class KeycloakEvent extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
clientId
String clientId
Where the event occurred (usuallyatlan-frontend
). -
details
String details
TBC -
ipAddress
String ipAddress
IP address from which the user logged in. -
realmId
String realmId
Unique identifier of the realm in which the event was logged (usuallydefault
. -
sessionId
String sessionId
Unique identifier (GUID) of the session for the event. -
time
Long time
Time (epoch) when the event occurred, in milliseconds. -
type
KeycloakEventType type
Type of event that occurred. -
userId
String userId
Unique identifier (GUID) of the user that triggered the event.
-
-
Class com.atlan.model.admin.KeycloakEventRequest
class KeycloakEventRequest extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
client
String client
Application or OAuth client name. -
dateFrom
String dateFrom
Earliest date from which to include events (format: yyyy-MM-dd). -
dateTo
String dateTo
Latest date up to which to include events (format: yyyy-MM-dd). -
ipAddress
String ipAddress
IP address from which the event was triggered. -
offset
int offset
Starting point for the events (for paging). -
size
int size
Maximum number of events to retrieve (per page). -
types
List<KeycloakEventType> types
Include events only of the supplied types. -
userId
String userId
Unique identifier (GUID) of the user who triggered the event.
-
-
Class com.atlan.model.admin.KeycloakEventResponse
class KeycloakEventResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
client
AtlanClient client
Connectivity to the Atlan tenant where the search was run. -
events
List<KeycloakEvent> events
Admin events returned by the request. -
request
KeycloakEventRequest request
Request that produced this response.
-
-
Class com.atlan.model.admin.KeycloakEventResponse.KeycloakEventResponseDeserializer
class KeycloakEventResponseDeserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<KeycloakEventResponse> implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.KeycloakEventResponse.KeycloakEventResponseSerializer
class KeycloakEventResponseSerializer extends com.fasterxml.jackson.databind.ser.std.StdSerializer<KeycloakEventResponse> implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.ParsedQuery
class ParsedQuery extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
errors
List<ParsedQuery.ParseError> errors
Any errors during parsing. -
objects
List<ParsedQuery.DatabaseObject> objects
All the database objects detected in the query. -
relationships
List<ParsedQuery.Relationship> relationships
All the relationship objects detected in the query.
-
-
Class com.atlan.model.admin.ParsedQuery.DatabaseColumn
class DatabaseColumn extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.ParsedQuery.DatabaseObject
class DatabaseObject extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
columns
List<ParsedQuery.DatabaseColumn> columns
List of details about the columns queried within the object. (Only present on non-process objects.) -
database
String database
Name of the database the object exists within. -
displayName
String displayName
Fully-qualified name of the SQL object. (Only present on non-process objects.) -
id
String id
Numeric identifier for the object. -
name
String name
Name of the object (unqualified). -
procedureName
String procedureName
Name of the procedure (only for process objects). -
queryHashId
String queryHashId
Unique hash representing the query (only for process objects). -
schema
String schema
Name of the schema the object exists within. -
type
String type
Type of the object.
-
-
Class com.atlan.model.admin.ParsedQuery.ParseError
class ParseError extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.ParsedQuery.Relationship
class Relationship extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
effectType
String effectType
Type of effect made by the query (for example, select vs insert). -
id
String id
Numeric identifier for the relationship. -
processId
String processId
Numeric identifier for the procedure (if any) that manages this relationship. -
processType
String processType
Type of procedure (if any) that manages this relationship. -
sources
List<ParsedQuery.RelationshipEndpoint> sources
TBC -
target
ParsedQuery.RelationshipEndpoint target
TBC -
type
String type
Type of the relationship.
-
-
Class com.atlan.model.admin.ParsedQuery.RelationshipEndpoint
class RelationshipEndpoint extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
column
String column
Name of the column used by this end of the relationship. -
id
String id
Numeric identifier for the column referred to by this end of the relationship. -
parentId
String parentId
Numeric identifier of the parent object in which the column exists. -
parentName
String parentName
Name of the parent object in which the column exists.
-
-
Class com.atlan.model.admin.QueryParserRequest
class QueryParserRequest extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
defaultDatabase
String defaultDatabase
Default database name to use for unqualified objects in the SQL. -
defaultSchema
String defaultSchema
Default schema name to use for unqualified objects in the SQL. -
ignoreCoordinate
Boolean ignoreCoordinate
TBC -
ignoreRecordSet
Boolean ignoreRecordSet
TBC -
linkOrphanColumnToFirstTable
Boolean linkOrphanColumnToFirstTable
TBC -
showJoin
Boolean showJoin
TBC -
source
QueryParserSourceType source
Dialect to use when parsing the SQL. -
sql
String sql
SQL query to be parsed.
-
-
Class com.atlan.model.admin.QueryRequest
class QueryRequest extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.QueryResponse
class QueryResponse extends ApiEventStreamResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
columns
List<QueryResponse.ColumnDetails> columns
Columns that are present in each row of the results. The order of the elements of this list will match the order of the inner list of values for theQueryResponse.rows
. -
details
QueryResponse.QueryDetails details
Details about the query. -
errorCode
String errorCode
Unique code for the error, if there was any error. -
errorMessage
String errorMessage
Explanation of the error, if there was any error. -
errorName
String errorName
Unique name for the error, if there was any error. -
queryId
String queryId
Unique identifier (GUID) for the specific run of the query. -
requestId
String requestId
Unique identifier for the request, if there was any error. -
rows
List<List<String>> rows
Results of the query. Each element is of the outer list is a single row, while each inner list gives the column values for that row (in order).
-
-
Class com.atlan.model.admin.QueryResponse.AssetDetails
class AssetDetails extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.QueryResponse.ColumnDetails
class ColumnDetails extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
autoIncrement
Boolean autoIncrement
TBC -
caseSensitive
Boolean caseSensitive
TBC -
catalogName
String catalogName
Name of the database in which the table's schema is contained. -
columnClassName
String columnClassName
Canonical name of the Java class representing this column's values. -
columnName
String columnName
Name of the column (technical). -
currency
Boolean currency
TBC -
definitelyWritable
Boolean definitelyWritable
TBC -
displaySize
Integer displaySize
TBC -
label
String label
Display value for the column's name. -
nullable
Integer nullable
TBC -
ordinal
Integer ordinal
Position of the column (1-based). -
precision
Integer precision
TBC -
readOnly
Boolean readOnly
TBC -
scale
Integer scale
TBC -
schemaName
String schemaName
Name of the schema in which this column's table is contained. -
searchable
Boolean searchable
TBC -
signed
Boolean signed
TBC -
tableName
String tableName
Name of the table in which the column is contained. -
type
QueryResponse.ColumnType type
Details about the (SQL) data type of the column. -
writable
Boolean writable
TBC
-
-
Class com.atlan.model.admin.QueryResponse.ColumnType
class ColumnType extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.QueryResponse.QueryDetails
class QueryDetails extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
asset
QueryResponse.AssetDetails asset
Metadata about the asset used in the query, in case of any errors. -
authorizationPercentage
Double authorizationPercentage
TBC -
authorizationTime
Integer authorizationTime
TBC -
bypassParsingPercentage
Double bypassParsingPercentage
TBC -
bypassQueryTime
Integer bypassQueryTime
TBC -
calciteParsingPercentage
Double calciteParsingPercentage
TBC -
calciteValidationPercentage
Double calciteValidationPercentage
TBC -
checkInsightsEnabledPercentage
Double checkInsightsEnabledPercentage
TBC -
checkInsightsEnabledTime
Integer checkInsightsEnabledTime
TBC -
column
Long column
Column position of the validation error, if any. -
developerMessage
String developerMessage
Detailed back-end error message that could be helpful for developers. -
executionPercentage
Double executionPercentage
TBC -
executionTime
Long executionTime
How long the query took to run, in milliseconds. -
executionTimeInternal
Integer executionTimeInternal
Elapsed time to run the query (from internal engine), in milliseconds. -
explainCallTimePercentage
Double explainCallTimePercentage
TBC -
extractCredentialsPercentage
Double extractCredentialsPercentage
TBC -
extractCredentialsTime
Integer extractCredentialsTime
TBC -
extractTableMetadataPercentage
Double extractTableMetadataPercentage
TBC -
extractTableMetadataTime
Integer extractTableMetadataTime
Elapsed time to extract table metadata, in milliseconds. -
hekaAtlanTime
Integer hekaAtlanTime
TBC -
hekaFlow
HekaFlow hekaFlow
How the query was run. -
initDataSourcePercentage
Double initDataSourcePercentage
TBC -
initDataSourceTime
Integer initDataSourceTime
TBC -
initializationPercentage
Double initializationPercentage
TBC -
initializationTime
Integer initializationTime
TBC -
line
Long line
Line number of the query that had a validation error, if any. -
object
String object
Name of the object that caused the validation error, if any. -
overallTime
Integer overallTime
TBC -
overallTimePercentage
Double overallTimePercentage
TBC -
parsedQuery
String parsedQuery
TBC -
parsingFlow
ParsingFlow parsingFlow
How the query was parsed prior to running. -
pushdownQuery
String pushdownQuery
Query that was sent to the data store. -
resultOutputLocation
String resultOutputLocation
TBC -
rewriteValidationPercentage
Double rewriteValidationPercentage
TBC -
rewriteValidationTime
Integer rewriteValidationTime
TBC -
s3UploadPath
String s3UploadPath
TBC -
sourceFirstConnectionPercentage
Double sourceFirstConnectionPercentage
TBC -
sourceFirstConnectionTime
Integer sourceFirstConnectionTime
TBC -
sourceQueryId
String sourceQueryId
TBC -
status
QueryStatus status
Status of the query. -
totalRowsStreamed
Long totalRowsStreamed
Total number of results returned by the query. -
warnings
List<String> warnings
List of any warnings produced when running the query.
-
-
Class com.atlan.model.admin.RoleResponse
class RoleResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.Session
class Session extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
clients
Map<String,
String> clients Map of clientId (GUIDs) to client names. -
id
String id
Unique identifier (GUID) for the session. -
ipAddress
String ipAddress
IP address from which the session originated. -
lastAccess
Long lastAccess
Time (epoch) at which the session was last used, in nanoseconds. -
start
Long start
Time (epoch) at which the session was created, in nanoseconds. -
userId
String userId
Unique identifier (GUID) of the user that started the session. -
username
String username
Username of the user that started the session.
-
-
Class com.atlan.model.admin.SessionResponse
class SessionResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.SSOMapping
class SSOMapping extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
config
SSOMapping.Config config
Configuration for the mapping. -
id
String id
Unique identifier (GUID) of the mapping. -
identityProviderAlias
String identityProviderAlias
Alias for the identity provider, typically a value from AtlanSSO enumeration. -
identityProviderMapper
String identityProviderMapper
TBC -
name
String name
Name of the mapping.
-
-
Class com.atlan.model.admin.SSOMapping.Config
class Config extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
attributeFriendlyName
String attributeFriendlyName
Human-readable name of the attribute containing the mapping. -
attributeName
String attributeName
Name of the SSO attribute containing the mapping. -
attributes
String attributes
Any additional attributes for the mapping. -
attributeValue
String attributeValue
Value of the SSO attribute which should map to the group. -
attributeValuesRegex
String attributeValuesRegex
TBC -
groupName
String groupName
Internal name of the mapped group in Atlan. -
syncMode
String syncMode
Mechanism used for the mapping.
-
-
Class com.atlan.model.admin.TermLinkRequest
class TermLinkRequest extends AtlanRequest implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.admin.UserMinimalResponse
class UserMinimalResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
access
String access
TBC -
attributes
AtlanUser.UserAttributes attributes
Detailed attributes of the user. -
createdTimestamp
Long createdTimestamp
Time (epoch) at which the user was created, in milliseconds. -
disableableCredentialTypes
String disableableCredentialTypes
TBC -
email
String email
Email address of the user. -
emailVerified
Boolean emailVerified
When true, the email address of the user has been verified. -
enabled
Boolean enabled
When true, the user is enabled. When false, the user has been deactivated. -
firstName
String firstName
First name of the user. -
id
String id
Unique identifier (GUID) of the user within Atlan. -
lastName
String lastName
Last name (surname) of the user. -
requiredActions
String requiredActions
TBC -
totp
Boolean totp
TBC -
username
String username
Username of the user within Atlan.
-
-
Class com.atlan.model.admin.UserRequest
class UserRequest extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
columns
List<String> columns
List of columns to be returned about each user in the response. -
count
boolean count
Whether to include an overall count of users (true) or not (false). -
filter
String filter
Criteria by which to filter the list of users to retrieve. -
limit
int limit
Maximum number of users to return per page. -
maxLoginEvents
int maxLoginEvents
TBC -
offset
int offset
Starting point for the list of users when paging. -
sort
String sort
Property by which to sort the resulting list of users.
-
-
Class com.atlan.model.admin.UserResponse
class UserResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
client
AtlanClient client
Connectivity to the Atlan tenant where the search was run. -
filterRecord
Integer filterRecord
Filtered number of users. -
records
List<AtlanUser> records
Details about each user in this page of the response. -
request
UserRequest request
Request that produced this response. -
totalRecord
Integer totalRecord
Total number of users.
-
-
-
Package com.atlan.model.assets
-
Class com.atlan.model.assets.AdfActivity
class AdfActivity extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
adfActivityBatchCount
Integer adfActivityBatchCount
Defines the batch count of activity to runs in ForEach activity. -
adfActivityFirstRowOnly
Boolean adfActivityFirstRowOnly
Indicates whether to import only first row only or not in Lookup activity. -
adfActivityIsSequential
Boolean adfActivityIsSequential
Indicates whether the activity processing is sequential or not inside the ForEach activity. -
adfActivityMainClassName
String adfActivityMainClassName
Defines the main class of the databricks spark activity. -
adfActivityNotebookPath
String adfActivityNotebookPath
Defines the path of the notebook in the databricks notebook activity. -
adfActivityPolictRetryInterval
Integer adfActivityPolictRetryInterval
The retry interval in seconds for the ADF activity. -
adfActivityPolicyTimeout
String adfActivityPolicyTimeout
The timout defined for the ADF activity. -
adfActivityPrecedingDependencies
SortedSet<String> adfActivityPrecedingDependencies
The list of ADF activities on which this ADF activity depends on. -
adfActivityPythonFilePath
String adfActivityPythonFilePath
Defines the python file path for databricks python activity. -
adfActivityReferenceDataflow
String adfActivityReferenceDataflow
Defines the dataflow that is to be used in dataflow activity. -
adfActivityRuns
List<Map<String,
String>> adfActivityRuns List of objects of activity runs for a particular activity. -
adfActivitySinks
SortedSet<String> adfActivitySinks
The list of names of sinks for the ADF activity. -
adfActivitySinkType
String adfActivitySinkType
Defines the type of the sink of the ADF activtity. -
adfActivitySources
SortedSet<String> adfActivitySources
The list of names of sources for the ADF activity. -
adfActivitySourceType
String adfActivitySourceType
Defines the type of the source of the ADF activtity. -
adfActivityState
AdfActivityState adfActivityState
Defines the state (Active or Inactive) of an ADF activity whether it is active or not. -
adfActivitySubActivities
SortedSet<String> adfActivitySubActivities
The list of activities to be run inside a ForEach activity. -
adfActivityType
String adfActivityType
The type of the ADF activity. -
adfAssetFolderPath
String adfAssetFolderPath
Defines the folder path in which this ADF asset exists. -
adfDataflow
IAdfDataflow adfDataflow
ADF activities that are associated with this ADF Dataflow. -
adfDatasets
SortedSet<IAdfDataset> adfDatasets
ADF activities that are associated with this ADF Dataset. -
adfFactoryName
String adfFactoryName
Defines the name of the factory in which this asset exists. -
adfLinkedservices
SortedSet<IAdfLinkedservice> adfLinkedservices
ADF activities that are associated with this ADF Linkedservice. -
adfPipeline
IAdfPipeline adfPipeline
ADF Activity that is associated with this ADF Pipeline. -
adfPipelineQualifiedName
String adfPipelineQualifiedName
Unique name of the pipeline in which this activity exists. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
processes
SortedSet<ILineageProcess> processes
Lineage process that associates this ADF Activity. -
typeName
String typeName
Fixed typeName for AdfActivitys.
-
-
Class com.atlan.model.assets.AdfDataflow
class AdfDataflow extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
adfActivities
SortedSet<IAdfActivity> adfActivities
ADF Dataflow that is associated with these ADF activities. -
adfAssetFolderPath
String adfAssetFolderPath
Defines the folder path in which this ADF asset exists. -
adfDataflowScript
String adfDataflowScript
The gererated script for the dataflow. -
adfDataflowSinks
SortedSet<String> adfDataflowSinks
The list of names of sinks for this dataflow. -
adfDataflowSources
SortedSet<String> adfDataflowSources
The list of names of sources for this dataflow. -
adfDatasets
SortedSet<IAdfDataset> adfDatasets
ADF Dataflows that is associated with this ADF Datasets. -
adfFactoryName
String adfFactoryName
Defines the name of the factory in which this asset exists. -
adfLinkedservices
SortedSet<IAdfLinkedservice> adfLinkedservices
ADF Dataflows that is associated with this ADF Linkedservices. -
adfPipelines
SortedSet<IAdfPipeline> adfPipelines
ADF Dataflows that are associated with this ADF pipelines. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for AdfDataflows.
-
-
Class com.atlan.model.assets.AdfDataset
class AdfDataset extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
adfActivities
SortedSet<IAdfActivity> adfActivities
ADF Dataset that is associated with these ADF activities. -
adfAssetFolderPath
String adfAssetFolderPath
Defines the folder path in which this ADF asset exists. -
adfDataflows
SortedSet<IAdfDataflow> adfDataflows
ADF Datasets that are associated with this ADF Dataflows. -
adfDatasetAnnotations
SortedSet<String> adfDatasetAnnotations
The list of annotation assigned to a dataset. -
adfDatasetCollectionName
String adfDatasetCollectionName
Defines the name collection in the cosmos dataset. -
adfDatasetContainerName
String adfDatasetContainerName
Defines the container or bucket name in the storage file system dataset. -
adfDatasetDatabaseName
String adfDatasetDatabaseName
Defines the name of the database used in the azure delta lake type of dataset. -
adfDatasetFileFolderPath
String adfDatasetFileFolderPath
Defines the folder path of the file in the storage file system dataset. -
adfDatasetFileName
String adfDatasetFileName
Defines the name of the file in the storage file system dataset. -
adfDatasetLinkedService
String adfDatasetLinkedService
Defines the name of the linked service used to create this dataset. -
adfDatasetSchemaName
String adfDatasetSchemaName
Defines the name of the schema used in the snowflake, mssql, azure sql database type of dataset. -
adfDatasetStorageType
String adfDatasetStorageType
Defines the storage type of storage file system dataset. -
adfDatasetTableName
String adfDatasetTableName
Defines the name of the table used in the snowflake, mssql, azure sql database type of dataset. -
adfDatasetType
String adfDatasetType
Defines the type of the dataset. -
adfFactoryName
String adfFactoryName
Defines the name of the factory in which this asset exists. -
adfLinkedservice
IAdfLinkedservice adfLinkedservice
ADF datasets that are associated with this ADF Linkedservice. -
adfPipelines
SortedSet<IAdfPipeline> adfPipelines
ADF Datasets that are associated with this ADF pipelines. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for AdfDatasets.
-
-
Class com.atlan.model.assets.AdfLinkedservice
class AdfLinkedservice extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
adfActivities
SortedSet<IAdfActivity> adfActivities
ADF Linkedservice that is associated with these ADF activities. -
adfAssetFolderPath
String adfAssetFolderPath
Defines the folder path in which this ADF asset exists. -
adfDataflows
SortedSet<IAdfDataflow> adfDataflows
ADF Linkedservices that are associated with this ADF Dataflows. -
adfDatasets
SortedSet<IAdfDataset> adfDatasets
ADF Linkedservice that is associated with these ADF datasets. -
adfFactoryName
String adfFactoryName
Defines the name of the factory in which this asset exists. -
adfLinkedserviceAccountName
String adfLinkedserviceAccountName
Defines the name of the account used in the cosmos linked service. -
adfLinkedserviceAnnotations
SortedSet<String> adfLinkedserviceAnnotations
The list of annotation assigned to a linked service. -
adfLinkedserviceAzureCloudType
String adfLinkedserviceAzureCloudType
Defines the type of cloud being used in the ADLS linked service. -
adfLinkedserviceClusterId
String adfLinkedserviceClusterId
Defines the cluster id in the Azure databricks delta lake linked service. -
adfLinkedserviceCredentialType
String adfLinkedserviceCredentialType
Defines the type of credential, authentication being used in the ADLS, snowflake, azure sql linked service. -
adfLinkedserviceDatabaseName
String adfLinkedserviceDatabaseName
Defines the name of the database used in the cosmos, snowflake linked service. -
adfLinkedserviceDomainEndpoint
String adfLinkedserviceDomainEndpoint
Defines the url, domain, account_identifier, server in the ADLS, Azure databricks delta lake, snowflake, azure sql linked service. -
adfLinkedserviceResourceId
String adfLinkedserviceResourceId
Defines the resource id in the Azure databricks delta lake linked service. -
adfLinkedserviceRoleName
String adfLinkedserviceRoleName
Defines the name of the role in the snowflake linked service. -
adfLinkedserviceTenant
String adfLinkedserviceTenant
Defines the tenant of cloud being used in the ADLS linked service. -
adfLinkedserviceType
String adfLinkedserviceType
Defines the type of the linked service. -
adfLinkedserviceUserName
String adfLinkedserviceUserName
Defines the name of the db user in the snowflake linked service. -
adfLinkedserviceVersion
String adfLinkedserviceVersion
Defines the version of the linked service in the cosmos linked service. -
adfLinkedserviceVersionAbove
Boolean adfLinkedserviceVersionAbove
Indicates whether the service version is above 3.2 or not in the cosmos linked service. -
adfLinkedserviceWarehouseName
String adfLinkedserviceWarehouseName
Defines the name of the warehouse in the snowflake linked service. -
adfPipelines
SortedSet<IAdfPipeline> adfPipelines
ADF Linkedservices that are associated with this ADF pipelines. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for AdfLinkedservices.
-
-
Class com.atlan.model.assets.AdfPipeline
class AdfPipeline extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
adfActivities
SortedSet<IAdfActivity> adfActivities
ADF Pipeline that is associated with these ADF Activities. -
adfAssetFolderPath
String adfAssetFolderPath
Defines the folder path in which this ADF asset exists. -
adfDataflows
SortedSet<IAdfDataflow> adfDataflows
ADF pipelines that is associated with this ADF Dataflos. -
adfDatasets
SortedSet<IAdfDataset> adfDatasets
ADF pipelines that is associated with this ADF Datasets. -
adfFactoryName
String adfFactoryName
Defines the name of the factory in which this asset exists. -
adfLinkedservices
SortedSet<IAdfLinkedservice> adfLinkedservices
ADF pipelines that is associated with this ADF Linkedservices. -
adfPipelineActivityCount
Integer adfPipelineActivityCount
Defines the count of activities in the pipline. -
adfPipelineAnnotations
SortedSet<String> adfPipelineAnnotations
The list of annotation assigned to a pipeline. -
adfPipelineRuns
List<Map<String,
String>> adfPipelineRuns List of objects of pipeline runs for a particular pipeline. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for AdfPipelines.
-
-
Class com.atlan.model.assets.ADLSAccount
class ADLSAccount extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
adlsAccountAccessTier
ADLSAccessTier adlsAccountAccessTier
Access tier of this account. -
adlsAccountKind
ADLSStorageKind adlsAccountKind
Kind of this account. -
adlsAccountPerformance
ADLSPerformance adlsAccountPerformance
Performance of this account. -
adlsAccountProvisionState
ADLSProvisionState adlsAccountProvisionState
Provision state of this account. -
adlsAccountQualifiedName
String adlsAccountQualifiedName
Unique name of the account for this ADLS asset. -
adlsAccountReplication
ADLSReplicationType adlsAccountReplication
Replication of this account. -
adlsAccountResourceGroup
String adlsAccountResourceGroup
Resource group for this account. -
adlsAccountSecondaryLocation
String adlsAccountSecondaryLocation
Secondary location of the ADLS account. -
adlsAccountSubscription
String adlsAccountSubscription
Subscription for this account. -
adlsContainers
SortedSet<IADLSContainer> adlsContainers
Containers that exist within this account. -
adlsEncryptionType
ADLSEncryptionTypes adlsEncryptionType
Type of encryption for this account. -
adlsETag
String adlsETag
Entity tag for the asset. An entity tag is a hash of the object and represents changes to the contents of an object only, not its metadata. -
adlsPrimaryDiskState
ADLSAccountStatus adlsPrimaryDiskState
Primary disk state of this account. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
azureLocation
String azureLocation
Location of this asset in Azure. -
azureResourceId
String azureResourceId
Resource identifier of this asset in Azure. -
azureTags
List<AzureTag> azureTags
Tags that have been applied to this asset in Azure. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for ADLSAccounts.
-
-
Class com.atlan.model.assets.ADLSContainer
class ADLSContainer extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
adlsAccount
IADLSAccount adlsAccount
Account in which this container exists. -
adlsAccountQualifiedName
String adlsAccountQualifiedName
Unique name of the account for this ADLS asset. -
adlsAccountSecondaryLocation
String adlsAccountSecondaryLocation
Secondary location of the ADLS account. -
adlsContainerEncryptionScope
String adlsContainerEncryptionScope
Encryption scope of this container. -
adlsContainerLeaseState
ADLSLeaseState adlsContainerLeaseState
Lease state of this container. -
adlsContainerLeaseStatus
ADLSLeaseStatus adlsContainerLeaseStatus
Lease status of this container. -
adlsContainerUrl
String adlsContainerUrl
URL of this container. -
adlsContainerVersionLevelImmutabilitySupport
Boolean adlsContainerVersionLevelImmutabilitySupport
Whether this container supports version-level immutability (true) or not (false). -
adlsObjectCount
Integer adlsObjectCount
Number of objects that exist within this container. -
adlsObjects
SortedSet<IADLSObject> adlsObjects
Objects that exist within this container. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
azureLocation
String azureLocation
Location of this asset in Azure. -
azureResourceId
String azureResourceId
Resource identifier of this asset in Azure. -
azureTags
List<AzureTag> azureTags
Tags that have been applied to this asset in Azure. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for ADLSContainers.
-
-
Class com.atlan.model.assets.ADLSObject
class ADLSObject extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
adlsAccountQualifiedName
String adlsAccountQualifiedName
Unique name of the account for this ADLS asset. -
adlsAccountSecondaryLocation
String adlsAccountSecondaryLocation
Secondary location of the ADLS account. -
adlsContainer
IADLSContainer adlsContainer
Container this object exists within. -
adlsContainerQualifiedName
String adlsContainerQualifiedName
Unique name of the container this object exists within. -
adlsObjectAccessTier
ADLSAccessTier adlsObjectAccessTier
Access tier of this object. -
adlsObjectAccessTierLastModifiedTime
Long adlsObjectAccessTierLastModifiedTime
Time (epoch) when the acccess tier for this object was last modified, in milliseconds. -
adlsObjectArchiveStatus
ADLSObjectArchiveStatus adlsObjectArchiveStatus
Archive status of this object. -
adlsObjectCacheControl
String adlsObjectCacheControl
Cache control of this object. -
adlsObjectContentLanguage
String adlsObjectContentLanguage
Language of this object's contents. -
adlsObjectContentMD5Hash
String adlsObjectContentMD5Hash
MD5 hash of this object's contents. -
adlsObjectContentType
String adlsObjectContentType
Content type of this object. -
adlsObjectLeaseState
ADLSLeaseState adlsObjectLeaseState
State of this object's lease. -
adlsObjectLeaseStatus
ADLSLeaseStatus adlsObjectLeaseStatus
Status of this object's lease. -
adlsObjectMetadata
Map<String,
String> adlsObjectMetadata Metadata associated with this object, from ADLS. -
adlsObjectServerEncrypted
Boolean adlsObjectServerEncrypted
Whether this object is server encrypted (true) or not (false). -
adlsObjectSize
Long adlsObjectSize
Size of this object. -
adlsObjectType
ADLSObjectType adlsObjectType
Type of this object. -
adlsObjectUrl
String adlsObjectUrl
URL of this object. -
adlsObjectVersionId
String adlsObjectVersionId
Identifier of the version of this object, from ADLS. -
adlsObjectVersionLevelImmutabilitySupport
Boolean adlsObjectVersionLevelImmutabilitySupport
Whether this object supports version-level immutability (true) or not (false). -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
azureLocation
String azureLocation
Location of this asset in Azure. -
azureResourceId
String azureResourceId
Resource identifier of this asset in Azure. -
azureTags
List<AzureTag> azureTags
Tags that have been applied to this asset in Azure. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for ADLSObjects.
-
-
Class com.atlan.model.assets.AirflowDag
class AirflowDag extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
airflowDagSchedule
String airflowDagSchedule
Schedule for the DAG. -
airflowDagScheduleDelta
Long airflowDagScheduleDelta
Duration between scheduled runs, in seconds. -
airflowRunEndTime
Long airflowRunEndTime
End time of the run. -
airflowRunName
String airflowRunName
Name of the run. -
airflowRunOpenLineageState
OpenLineageRunState airflowRunOpenLineageState
State of the run in OpenLineage. -
airflowRunOpenLineageVersion
String airflowRunOpenLineageVersion
Version of the run in OpenLineage. -
airflowRunStartTime
Long airflowRunStartTime
Start time of the run. -
airflowRunType
String airflowRunType
Type of the run. -
airflowRunVersion
String airflowRunVersion
Version of the run in Airflow. -
airflowTags
SortedSet<String> airflowTags
Tags assigned to the asset in Airflow. -
airflowTasks
SortedSet<IAirflowTask> airflowTasks
Tasks that exist within this DAG. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for AirflowDags.
-
-
Class com.atlan.model.assets.AirflowTask
class AirflowTask extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
airflowDag
IAirflowDag airflowDag
DAG in which this task exists. -
airflowDagName
String airflowDagName
Simple name of the DAG this task is contained within. -
airflowDagQualifiedName
String airflowDagQualifiedName
Unique name of the DAG this task is contained within. -
airflowRunEndTime
Long airflowRunEndTime
End time of the run. -
airflowRunName
String airflowRunName
Name of the run. -
airflowRunOpenLineageState
OpenLineageRunState airflowRunOpenLineageState
State of the run in OpenLineage. -
airflowRunOpenLineageVersion
String airflowRunOpenLineageVersion
Version of the run in OpenLineage. -
airflowRunStartTime
Long airflowRunStartTime
Start time of the run. -
airflowRunType
String airflowRunType
Type of the run. -
airflowRunVersion
String airflowRunVersion
Version of the run in Airflow. -
airflowTags
SortedSet<String> airflowTags
Tags assigned to the asset in Airflow. -
airflowTaskConnectionId
String airflowTaskConnectionId
Identifier for the connection this task accesses. -
airflowTaskGroupName
String airflowTaskGroupName
Group name for the task. -
airflowTaskOperatorClass
String airflowTaskOperatorClass
Class name for the operator this task uses. -
airflowTaskPool
String airflowTaskPool
Pool on which this run happened. -
airflowTaskPoolSlots
Long airflowTaskPoolSlots
Pool slots used for the run. -
airflowTaskPriorityWeight
Long airflowTaskPriorityWeight
Priority of the run. -
airflowTaskQueue
String airflowTaskQueue
Queue on which this run happened. -
airflowTaskRetryNumber
Long airflowTaskRetryNumber
Retry count for this task running. -
airflowTaskSql
String airflowTaskSql
SQL code that executes through this task. -
airflowTaskTriggerRule
String airflowTaskTriggerRule
Trigger for the run. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputs
SortedSet<ICatalog> inputs
Assets that are inputs to this task. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
outputs
SortedSet<ICatalog> outputs
Assets that are outputs from this task. -
process
ILineageProcess process
Process in which this task exists. -
typeName
String typeName
Fixed typeName for AirflowTasks.
-
-
Class com.atlan.model.assets.AnomaloCheck
class AnomaloCheck extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
anomaloCheckAsset
IAsset anomaloCheckAsset
The asset this Check is linked to. -
anomaloCheckCategoryType
String anomaloCheckCategoryType
Category type of the check in Anomalo -
anomaloCheckHistoricRunStatus
String anomaloCheckHistoricRunStatus
Historic run status of the check in Anomalo -
anomaloCheckIsSystemAdded
Boolean anomaloCheckIsSystemAdded
Flag to indicate if the check is an out of the box available check -
anomaloCheckLastRunCompletedAt
Long anomaloCheckLastRunCompletedAt
Timestamp when the check was last run -
anomaloCheckLastRunEvaluatedMessage
String anomaloCheckLastRunEvaluatedMessage
Evaluated message of the latest check run. -
anomaloCheckLastRunUrl
String anomaloCheckLastRunUrl
URL to the latest check run. -
anomaloCheckLinkedAssetQualifiedName
String anomaloCheckLinkedAssetQualifiedName
QualifiedName of the asset associated with the check -
anomaloCheckPriorityLevel
String anomaloCheckPriorityLevel
Priority level of the check in Anomalo -
anomaloCheckStatus
String anomaloCheckStatus
Status of the check in Anomalo -
anomaloCheckStatusImageUrl
String anomaloCheckStatusImageUrl
Image URL for the status of the check in Anomalo -
anomaloCheckType
String anomaloCheckType
Type of check in Anomalo -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for AnomaloChecks.
-
-
Class com.atlan.model.assets.APIField
class APIField extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
apiExternalDocs
Map<String,
String> apiExternalDocs External documentation of the API. -
apiFieldType
String apiFieldType
Type of APIField. E.g. STRING, NUMBER etc. It is free text. -
apiFieldTypeSecondary
String apiFieldTypeSecondary
Secondary Type of APIField. E.g. LIST/STRING, then LIST would be the secondary type. -
apiIsAuthOptional
Boolean apiIsAuthOptional
Whether authentication is optional (true) or required (false). -
apiIsObjectReference
Boolean apiIsObjectReference
If this asset refers to an APIObject -
apiObject
IAPIObject apiObject
APIObject asset containing this APIField. -
apiObjectQualifiedName
String apiObjectQualifiedName
Qualified name of the APIObject that is referred to by this asset. When apiIsObjectReference is true. -
apiQuery
IAPIQuery apiQuery
APIQuery asset containing this APIField. -
apiQueryParamType
APIQueryParamTypeEnum apiQueryParamType
If parent relationship type is APIQuery, then this attribute denotes if this is input or output parameter. -
apiSpecName
String apiSpecName
Simple name of the API spec, if this asset is contained in an API spec. -
apiSpecQualifiedName
String apiSpecQualifiedName
Unique name of the API spec, if this asset is contained in an API spec. -
apiSpecType
String apiSpecType
Type of API, for example: OpenAPI, GraphQL, etc. -
apiSpecVersion
String apiSpecVersion
Version of the API specification. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for APIFields.
-
-
Class com.atlan.model.assets.APIObject
class APIObject extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
apiExternalDocs
Map<String,
String> apiExternalDocs External documentation of the API. -
apiFieldCount
Long apiFieldCount
Count of the APIField of this object. -
apiFields
SortedSet<IAPIField> apiFields
APIField assets contained within this APIObject. -
apiIsAuthOptional
Boolean apiIsAuthOptional
Whether authentication is optional (true) or required (false). -
apiIsObjectReference
Boolean apiIsObjectReference
If this asset refers to an APIObject -
apiObjectQualifiedName
String apiObjectQualifiedName
Qualified name of the APIObject that is referred to by this asset. When apiIsObjectReference is true. -
apiSpecName
String apiSpecName
Simple name of the API spec, if this asset is contained in an API spec. -
apiSpecQualifiedName
String apiSpecQualifiedName
Unique name of the API spec, if this asset is contained in an API spec. -
apiSpecType
String apiSpecType
Type of API, for example: OpenAPI, GraphQL, etc. -
apiSpecVersion
String apiSpecVersion
Version of the API specification. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for APIObjects.
-
-
Class com.atlan.model.assets.APIPath
class APIPath extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
apiExternalDocs
Map<String,
String> apiExternalDocs External documentation of the API. -
apiIsAuthOptional
Boolean apiIsAuthOptional
Whether authentication is optional (true) or required (false). -
apiIsObjectReference
Boolean apiIsObjectReference
If this asset refers to an APIObject -
apiObjectQualifiedName
String apiObjectQualifiedName
Qualified name of the APIObject that is referred to by this asset. When apiIsObjectReference is true. -
apiPathAvailableOperations
SortedSet<String> apiPathAvailableOperations
List of the operations available on the endpoint. -
apiPathAvailableResponseCodes
Map<String,
String> apiPathAvailableResponseCodes Response codes available on the path across all operations. -
apiPathIsIngressExposed
Boolean apiPathIsIngressExposed
Whether the path is exposed as an ingress (true) or not (false). -
apiPathIsTemplated
Boolean apiPathIsTemplated
Whether the endpoint's path contains replaceable parameters (true) or not (false). -
apiPathRawURI
String apiPathRawURI
Absolute path to an individual endpoint. -
apiPathSummary
String apiPathSummary
Descriptive summary intended to apply to all operations in this path. -
apiSpec
IAPISpec apiSpec
API specification in which this path exists. -
apiSpecName
String apiSpecName
Simple name of the API spec, if this asset is contained in an API spec. -
apiSpecQualifiedName
String apiSpecQualifiedName
Unique name of the API spec, if this asset is contained in an API spec. -
apiSpecType
String apiSpecType
Type of API, for example: OpenAPI, GraphQL, etc. -
apiSpecVersion
String apiSpecVersion
Version of the API specification. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for APIPaths.
-
-
Class com.atlan.model.assets.APIQuery
class APIQuery extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
apiExternalDocs
Map<String,
String> apiExternalDocs External documentation of the API. -
apiFields
SortedSet<IAPIField> apiFields
APIField assets contained within this APIQuery. -
apiInputFieldCount
Long apiInputFieldCount
Count of the APIField of this query that are input to it. -
apiIsAuthOptional
Boolean apiIsAuthOptional
Whether authentication is optional (true) or required (false). -
apiIsObjectReference
Boolean apiIsObjectReference
If this asset refers to an APIObject -
apiObjectQualifiedName
String apiObjectQualifiedName
Qualified name of the APIObject that is referred to by this asset. When apiIsObjectReference is true. -
apiQueryOutputType
String apiQueryOutputType
Type of APIQueryOutput. E.g. STRING, NUMBER etc. It is free text. -
apiQueryOutputTypeSecondary
String apiQueryOutputTypeSecondary
Secondary Type of APIQueryOutput. E.g. LIST/STRING then LIST would be the secondary type. -
apiSpecName
String apiSpecName
Simple name of the API spec, if this asset is contained in an API spec. -
apiSpecQualifiedName
String apiSpecQualifiedName
Unique name of the API spec, if this asset is contained in an API spec. -
apiSpecType
String apiSpecType
Type of API, for example: OpenAPI, GraphQL, etc. -
apiSpecVersion
String apiSpecVersion
Version of the API specification. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for APIQuerys.
-
-
Class com.atlan.model.assets.APISpec
class APISpec extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
apiExternalDocs
Map<String,
String> apiExternalDocs External documentation of the API. -
apiIsAuthOptional
Boolean apiIsAuthOptional
Whether authentication is optional (true) or required (false). -
apiIsObjectReference
Boolean apiIsObjectReference
If this asset refers to an APIObject -
apiObjectQualifiedName
String apiObjectQualifiedName
Qualified name of the APIObject that is referred to by this asset. When apiIsObjectReference is true. -
apiPaths
SortedSet<IAPIPath> apiPaths
Paths that exist within this API specification. -
apiSpecContactEmail
String apiSpecContactEmail
Email address for a contact responsible for the API specification. -
apiSpecContactName
String apiSpecContactName
Name of the contact responsible for the API specification. -
apiSpecContactURL
String apiSpecContactURL
URL pointing to the contact information. -
apiSpecContractVersion
String apiSpecContractVersion
Version of the contract for the API specification. -
apiSpecLicenseName
String apiSpecLicenseName
Name of the license under which the API specification is available. -
apiSpecLicenseURL
String apiSpecLicenseURL
URL to the license under which the API specification is available. -
apiSpecName
String apiSpecName
Simple name of the API spec, if this asset is contained in an API spec. -
apiSpecQualifiedName
String apiSpecQualifiedName
Unique name of the API spec, if this asset is contained in an API spec. -
apiSpecServiceAlias
String apiSpecServiceAlias
Service alias for the API specification. -
apiSpecTermsOfServiceURL
String apiSpecTermsOfServiceURL
URL to the terms of service for the API specification. -
apiSpecType
String apiSpecType
Type of API, for example: OpenAPI, GraphQL, etc. -
apiSpecVersion
String apiSpecVersion
Version of the API specification. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for APISpecs.
-
-
Class com.atlan.model.assets.ApplicationContainer
class ApplicationContainer extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
applicationId
String applicationId
Unique identifier for the Application asset from the source system. -
applicationOwnedAssets
SortedSet<ICatalog> applicationOwnedAssets
Catalog assets contained within this ApplicationContainer. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for ApplicationContainers.
-
-
Class com.atlan.model.assets.Asset
class Asset extends Reference implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
adminGroups
SortedSet<String> adminGroups
List of groups who administer this asset. (This is only used for certain asset types.) -
adminRoles
SortedSet<String> adminRoles
List of roles who administer this asset. (This is only used for Connection assets.) -
adminUsers
SortedSet<String> adminUsers
List of users who administer this asset. (This is only used for certain asset types.) -
announcementMessage
String announcementMessage
Detailed message to include in the announcement on this asset. -
announcementTitle
String announcementTitle
Brief title for the announcement on this asset. Required when announcementType is specified. -
announcementType
AtlanAnnouncementType announcementType
Type of announcement on this asset. -
announcementUpdatedAt
Long announcementUpdatedAt
Time (epoch) at which the announcement was last updated, in milliseconds. -
announcementUpdatedBy
String announcementUpdatedBy
Name of the user who last updated the announcement. -
anomaloChecks
SortedSet<IAnomaloCheck> anomaloChecks
Checks that run on this asset. -
assetAnomaloAppliedCheckTypes
SortedSet<String> assetAnomaloAppliedCheckTypes
All associated Anomalo check types. -
assetAnomaloCheckCount
Long assetAnomaloCheckCount
Total number of checks present in Anomalo for this asset. -
assetAnomaloCheckStatuses
String assetAnomaloCheckStatuses
Stringified JSON object containing status of all Anomalo checks associated to this asset. -
assetAnomaloDQStatus
String assetAnomaloDQStatus
Status of data quality from Anomalo. -
assetAnomaloFailedCheckCount
Long assetAnomaloFailedCheckCount
Total number of checks failed in Anomalo for this asset. -
assetAnomaloFailedCheckTypes
SortedSet<String> assetAnomaloFailedCheckTypes
All associated Anomalo failed check types. -
assetAnomaloLastCheckRunAt
Long assetAnomaloLastCheckRunAt
Time (epoch) at which the last check was run via Anomalo. -
assetAnomaloSourceUrl
String assetAnomaloSourceUrl
URL of the source in Anomalo. -
assetCoverImage
String assetCoverImage
TBC -
assetDbtAccountName
String assetDbtAccountName
Name of the account in which this asset exists in dbt. -
assetDbtAlias
String assetDbtAlias
Alias of this asset in dbt. -
assetDbtEnvironmentDbtVersion
String assetDbtEnvironmentDbtVersion
Version of the environment in which this asset is materialized in dbt. -
assetDbtEnvironmentName
String assetDbtEnvironmentName
Name of the environment in which this asset is materialized in dbt. -
assetDbtJobLastRun
Long assetDbtJobLastRun
Time (epoch) at which the job that materialized this asset in dbt last ran, in milliseconds. -
assetDbtJobLastRunArtifactS3Path
String assetDbtJobLastRunArtifactS3Path
Path in S3 to the artifacts saved from the last run of the job that materialized this asset in dbt. -
assetDbtJobLastRunArtifactsSaved
Boolean assetDbtJobLastRunArtifactsSaved
Whether artifacts were saved from the last run of the job that materialized this asset in dbt (true) or not (false). -
assetDbtJobLastRunCreatedAt
Long assetDbtJobLastRunCreatedAt
Time (epoch) at which the job that materialized this asset in dbt was last created, in milliseconds. -
assetDbtJobLastRunDequedAt
Long assetDbtJobLastRunDequedAt
Time (epoch) at which the job that materialized this asset in dbt was dequeued, in milliseconds. -
assetDbtJobLastRunExecutedByThreadId
String assetDbtJobLastRunExecutedByThreadId
Thread ID of the user who executed the last run of the job that materialized this asset in dbt. -
assetDbtJobLastRunGitBranch
String assetDbtJobLastRunGitBranch
Branch in git from which the last run of the job that materialized this asset in dbt ran. -
assetDbtJobLastRunGitSha
String assetDbtJobLastRunGitSha
SHA hash in git for the last run of the job that materialized this asset in dbt. -
assetDbtJobLastRunHasDocsGenerated
Boolean assetDbtJobLastRunHasDocsGenerated
Whether docs were generated from the last run of the job that materialized this asset in dbt (true) or not (false). -
assetDbtJobLastRunHasSourcesGenerated
Boolean assetDbtJobLastRunHasSourcesGenerated
Whether sources were generated from the last run of the job that materialized this asset in dbt (true) or not (false). -
assetDbtJobLastRunNotificationsSent
Boolean assetDbtJobLastRunNotificationsSent
Whether notifications were sent from the last run of the job that materialized this asset in dbt (true) or not (false). -
assetDbtJobLastRunOwnerThreadId
String assetDbtJobLastRunOwnerThreadId
Thread ID of the owner of the last run of the job that materialized this asset in dbt. -
assetDbtJobLastRunQueuedDuration
String assetDbtJobLastRunQueuedDuration
Total duration the job that materialized this asset in dbt spent being queued. -
assetDbtJobLastRunQueuedDurationHumanized
String assetDbtJobLastRunQueuedDurationHumanized
Human-readable total duration of the last run of the job that materialized this asset in dbt spend being queued. -
assetDbtJobLastRunRunDuration
String assetDbtJobLastRunRunDuration
Run duration of the last run of the job that materialized this asset in dbt. -
assetDbtJobLastRunRunDurationHumanized
String assetDbtJobLastRunRunDurationHumanized
Human-readable run duration of the last run of the job that materialized this asset in dbt. -
assetDbtJobLastRunStartedAt
Long assetDbtJobLastRunStartedAt
Time (epoch) at which the job that materialized this asset in dbt was started running, in milliseconds. -
assetDbtJobLastRunStatusMessage
String assetDbtJobLastRunStatusMessage
Status message of the last run of the job that materialized this asset in dbt. -
assetDbtJobLastRunTotalDuration
String assetDbtJobLastRunTotalDuration
Total duration of the last run of the job that materialized this asset in dbt. -
assetDbtJobLastRunTotalDurationHumanized
String assetDbtJobLastRunTotalDurationHumanized
Human-readable total duration of the last run of the job that materialized this asset in dbt. -
assetDbtJobLastRunUpdatedAt
Long assetDbtJobLastRunUpdatedAt
Time (epoch) at which the job that materialized this asset in dbt was last updated, in milliseconds. -
assetDbtJobLastRunUrl
String assetDbtJobLastRunUrl
URL of the last run of the job that materialized this asset in dbt. -
assetDbtJobName
String assetDbtJobName
Name of the job that materialized this asset in dbt. -
assetDbtJobNextRun
Long assetDbtJobNextRun
Time (epoch) when the next run of the job that materializes this asset in dbt is scheduled. -
assetDbtJobNextRunHumanized
String assetDbtJobNextRunHumanized
Human-readable time when the next run of the job that materializes this asset in dbt is scheduled. -
assetDbtJobSchedule
String assetDbtJobSchedule
Schedule of the job that materialized this asset in dbt. -
assetDbtJobScheduleCronHumanized
String assetDbtJobScheduleCronHumanized
Human-readable cron schedule of the job that materialized this asset in dbt. -
assetDbtJobStatus
String assetDbtJobStatus
Status of the job that materialized this asset in dbt. -
assetDbtMeta
String assetDbtMeta
Metadata for this asset in dbt, specifically everything under the 'meta' key in the dbt object. -
assetDbtPackageName
String assetDbtPackageName
Name of the package in which this asset exists in dbt. -
assetDbtProjectName
String assetDbtProjectName
Name of the project in which this asset exists in dbt. -
assetDbtSemanticLayerProxyUrl
String assetDbtSemanticLayerProxyUrl
URL of the semantic layer proxy for this asset in dbt. -
assetDbtSourceFreshnessCriteria
String assetDbtSourceFreshnessCriteria
Freshness criteria for the source of this asset in dbt. -
assetDbtTags
SortedSet<String> assetDbtTags
List of tags attached to this asset in dbt. -
assetDbtTestStatus
String assetDbtTestStatus
All associated dbt test statuses. -
assetDbtUniqueId
String assetDbtUniqueId
Unique identifier of this asset in dbt. -
assetDbtWorkflowLastUpdated
String assetDbtWorkflowLastUpdated
Name of the DBT workflow in Atlan that last updated the asset. -
assetIcon
AtlanIcon assetIcon
Name of the icon to use for this asset. (Only applies to glossaries, currently.) -
assetMcAlertQualifiedNames
SortedSet<String> assetMcAlertQualifiedNames
List of unique Monte Carlo alert names attached to this asset. -
assetMcIncidentNames
SortedSet<String> assetMcIncidentNames
List of Monte Carlo incident names attached to this asset. -
assetMcIncidentPriorities
SortedSet<String> assetMcIncidentPriorities
List of Monte Carlo incident priorities associated with this asset. -
assetMcIncidentQualifiedNames
SortedSet<String> assetMcIncidentQualifiedNames
List of unique Monte Carlo incident names attached to this asset. -
assetMcIncidentSeverities
SortedSet<String> assetMcIncidentSeverities
List of Monte Carlo incident severities associated with this asset. -
assetMcIncidentStates
SortedSet<String> assetMcIncidentStates
List of Monte Carlo incident states associated with this asset. -
assetMcIncidentSubTypes
SortedSet<String> assetMcIncidentSubTypes
List of Monte Carlo incident sub-types associated with this asset. -
assetMcIncidentTypes
SortedSet<String> assetMcIncidentTypes
List of Monte Carlo incident types associated with this asset. -
assetMcLastSyncRunAt
Long assetMcLastSyncRunAt
Time (epoch) at which this asset was last synced from Monte Carlo. -
assetMcMonitorNames
SortedSet<String> assetMcMonitorNames
List of Monte Carlo monitor names attached to this asset. -
assetMcMonitorQualifiedNames
SortedSet<String> assetMcMonitorQualifiedNames
List of unique Monte Carlo monitor names attached to this asset. -
assetMcMonitorScheduleTypes
SortedSet<String> assetMcMonitorScheduleTypes
Schedules of all associated Monte Carlo monitors. -
assetMcMonitorStatuses
SortedSet<String> assetMcMonitorStatuses
Statuses of all associated Monte Carlo monitors. -
assetMcMonitorTypes
SortedSet<String> assetMcMonitorTypes
Types of all associated Monte Carlo monitors. -
assetPoliciesCount
Long assetPoliciesCount
Count of policies inside the asset -
assetPolicyGUIDs
SortedSet<String> assetPolicyGUIDs
Array of policy ids governing this asset -
assetSodaCheckCount
Long assetSodaCheckCount
Number of checks done via Soda. -
assetSodaCheckStatuses
String assetSodaCheckStatuses
All associated Soda check statuses. -
assetSodaDQStatus
String assetSodaDQStatus
Status of data quality from Soda. -
assetSodaLastScanAt
Long assetSodaLastScanAt
TBC -
assetSodaLastSyncRunAt
Long assetSodaLastSyncRunAt
TBC -
assetSodaSourceURL
String assetSodaSourceURL
TBC -
assetTags
SortedSet<String> assetTags
List of tags attached to this asset. -
assetThemeHex
String assetThemeHex
Color (in hexadecimal RGB) to use to represent this asset. -
assignedTerms
SortedSet<IGlossaryTerm> assignedTerms
Glossary terms that are linked to this asset. -
atlanTagNames
SortedSet<String> atlanTagNames
Deprecated.The names of the Atlan tags that exist on the asset. This is not always returned, even by full retrieval operations. It is better to depend on the detailed values in the Atlan tags property.- See Also:
-
Asset.atlanTags
-
atlanTags
SortedSet<AtlanTag> atlanTags
Atlan tags assigned to the asset. -
certificateStatus
CertificateStatus certificateStatus
Status of this asset's certification. -
certificateStatusMessage
String certificateStatusMessage
Human-readable descriptive message used to provide further detail to certificateStatus. -
certificateUpdatedAt
Long certificateUpdatedAt
Time (epoch) at which the certification was last updated, in milliseconds. -
certificateUpdatedBy
String certificateUpdatedBy
Name of the user who last updated the certification of this asset. -
connectionName
String connectionName
Simple name of the connection through which this asset is accessible. -
connectionQualifiedName
String connectionQualifiedName
Unique name of the connection through which this asset is accessible. -
connectorType
AtlanConnectorType connectorType
Type of the connector through which this asset is accessible. -
createdBy
String createdBy
User or account that created the asset. -
createTime
Long createTime
Time (epoch) at which the asset was created, in milliseconds. -
customMetadataSets
Map<String,
CustomMetadataAttributes> customMetadataSets Map of custom metadata attributes and values defined on the asset. The map is keyed by the human-readable name of the custom metadata set, and the values are a further mapping from human-readable attribute name to the value for that attribute on this asset. -
dataContractLatest
IDataContract dataContractLatest
Latest version of the data contract (in any status) for this asset. -
dataContractLatestCertified
IDataContract dataContractLatestCertified
Latest certified version of the data contract for this asset. -
dbtQualifiedName
String dbtQualifiedName
Unique name of this asset in dbt. -
deleteHandler
String deleteHandler
Details on the handler used for deletion of the asset. -
depth
Long depth
Depth of this asset within lineage. Note: this will only be available in assets retrieved via lineage, and will vary even for the same asset depending on the starting point of the lineage requested. -
description
String description
Description of this asset, for example as crawled from a source. Fallback for display purposes, if userDescription is empty. -
displayName
String displayName
Human-readable name of this asset used for display purposes (in user interface). -
domainGUIDs
SortedSet<String> domainGUIDs
Array of domain guids linked to this asset -
files
SortedSet<IFile> files
TBC -
hasContract
Boolean hasContract
Whether this asset has contract (true) or not (false). -
hasLineage
Boolean hasLineage
Whether this asset has lineage (true) or not (false). -
immediateDownstream
List<LineageRef> immediateDownstream
Reference details about the asset(s) that are immediately downstream of this asset within lineage. Note: this will only be available in assets retrieved via lineage whenimmediateNeighbors
is true, and could vary even for the same asset depending on the starting point and depth of the lineage requested. -
immediateUpstream
List<LineageRef> immediateUpstream
Reference details about the asset(s) that are immediately upstream of this asset within lineage. Note: this will only be available in assets retrieved via lineage whenimmediateNeighbors
is true, and could vary even for the same asset depending on the starting point and depth of the lineage requested. -
inputPortDataProducts
SortedSet<IDataProduct> inputPortDataProducts
Data products for which this asset is an input port. -
isAIGenerated
Boolean isAIGenerated
TBC -
isDiscoverable
Boolean isDiscoverable
Whether this asset is discoverable through the UI (true) or not (false). -
isEditable
Boolean isEditable
Whether this asset can be edited in the UI (true) or not (false). -
isIncomplete
Boolean isIncomplete
Unused. -
isPartial
Boolean isPartial
TBC -
lastRowChangedAt
Long lastRowChangedAt
Time (epoch) of the last operation that inserted, updated, or deleted rows, in milliseconds. -
lastSyncRun
String lastSyncRun
Name of the last run of the crawler that last synchronized this asset. -
lastSyncRunAt
Long lastSyncRunAt
Time (epoch) at which this asset was last crawled, in milliseconds. -
lastSyncWorkflowName
String lastSyncWorkflowName
Name of the crawler that last synchronized this asset. -
lexicographicalSortOrder
String lexicographicalSortOrder
Custom order for sorting purpose, managed by client -
links
SortedSet<ILink> links
Links that are attached to this asset. -
mcIncidents
SortedSet<IMCIncident> mcIncidents
TBC -
mcMonitors
SortedSet<IMCMonitor> mcMonitors
Monitors that observe this asset. -
meaningNames
SortedSet<String> meaningNames
Names of terms that have been linked to this asset. -
meanings
SortedSet<Meaning> meanings
Deprecated.Details of terms that have been linked to this asset. This is not set by all API endpoints, so cannot be relied upon in general, even when there are terms assigned to an asset. -
metrics
SortedSet<IMetric> metrics
TBC -
name
String name
Name of this asset. Fallback for display purposes, if displayName is empty. -
nonCompliantAssetPolicyGUIDs
SortedSet<String> nonCompliantAssetPolicyGUIDs
Array of policy ids non-compliant to this asset -
outputPortDataProducts
SortedSet<IDataProduct> outputPortDataProducts
Data products for which this asset is an output port. -
ownerGroups
SortedSet<String> ownerGroups
List of groups who own this asset. -
ownerUsers
SortedSet<String> ownerUsers
List of users who own this asset. -
pendingTasks
SortedSet<String> pendingTasks
Unique identifiers (GUIDs) for any background tasks that are yet to operate on this asset. -
popularityScore
Double popularityScore
Popularity score for this asset. -
qualifiedName
String qualifiedName
Unique name for this asset. This is typically a concatenation of the asset's name onto its parent's qualifiedName. This must be unique across all assets of the same type. -
readme
IReadme readme
README that is linked to this asset. -
sampleDataUrl
String sampleDataUrl
URL for sample data for this asset. -
schemaRegistrySubjects
SortedSet<ISchemaRegistrySubject> schemaRegistrySubjects
TBC -
sodaChecks
SortedSet<ISodaCheck> sodaChecks
TBC -
sourceCostUnit
SourceCostUnitType sourceCostUnit
The unit of measure for sourceTotalCost. -
sourceCreatedAt
Long sourceCreatedAt
Time (epoch) at which this asset was created in the source system, in milliseconds. -
sourceCreatedBy
String sourceCreatedBy
Name of the user who created this asset, in the source system. -
sourceEmbedURL
String sourceEmbedURL
URL to create an embed for a resource (for example, an image of a dashboard) within Atlan. -
sourceLastReadAt
Long sourceLastReadAt
Timestamp of most recent read operation. -
sourceOwners
String sourceOwners
List of owners of this asset, in the source system. -
sourceQueryComputeCostRecords
List<PopularityInsights> sourceQueryComputeCostRecords
List of most expensive warehouses with extra insights. -
sourceQueryComputeCosts
SortedSet<String> sourceQueryComputeCosts
List of most expensive warehouse names. -
sourceReadCount
Long sourceReadCount
Total count of all read operations at source. -
sourceReadExpensiveQueryRecords
List<PopularityInsights> sourceReadExpensiveQueryRecords
List of the most expensive queries that accessed this asset. -
sourceReadPopularQueryRecords
List<PopularityInsights> sourceReadPopularQueryRecords
List of the most popular queries that accessed this asset. -
sourceReadQueryCost
Double sourceReadQueryCost
Total cost of read queries at source. -
sourceReadRecentUserRecords
List<PopularityInsights> sourceReadRecentUserRecords
List of usernames with extra insights for the most recent users who read this asset. -
sourceReadRecentUsers
SortedSet<String> sourceReadRecentUsers
List of usernames of the most recent users who read this asset. -
sourceReadSlowQueryRecords
List<PopularityInsights> sourceReadSlowQueryRecords
List of the slowest queries that accessed this asset. -
sourceReadTopUserRecords
List<PopularityInsights> sourceReadTopUserRecords
List of usernames with extra insights for the users who read this asset the most. -
sourceReadTopUsers
SortedSet<String> sourceReadTopUsers
List of usernames of the users who read this asset the most. -
sourceReadUserCount
Long sourceReadUserCount
Total number of unique users that read data from asset. -
sourceTotalCost
Double sourceTotalCost
Total cost of all operations at source. -
sourceUpdatedAt
Long sourceUpdatedAt
Time (epoch) at which this asset was last updated in the source system, in milliseconds. -
sourceUpdatedBy
String sourceUpdatedBy
Name of the user who last updated this asset, in the source system. -
sourceURL
String sourceURL
URL to the resource within the source application, used to create a button to view this asset in the source application. -
starredBy
SortedSet<String> starredBy
Users who have starred this asset. -
starredCount
Integer starredCount
Number of users who have starred this asset. -
starredDetails
List<StarredDetails> starredDetails
List of usernames with extra information of the users who have starred an asset. -
status
AtlanStatus status
Status of the asset. -
subType
String subType
Subtype of this asset. -
tenantId
String tenantId
Name of the Atlan workspace in which this asset exists. -
updatedBy
String updatedBy
User or account that last updated the asset. -
updateTime
Long updateTime
Time (epoch) at which the asset was last updated, in milliseconds. -
userDefRelationshipFroms
SortedSet<IAsset> userDefRelationshipFroms
TBC -
userDefRelationshipTos
SortedSet<IAsset> userDefRelationshipTos
TBC -
userDescription
String userDescription
Description of this asset, as provided by a user. If present, this will be used for the description in user interface. -
viewerGroups
SortedSet<String> viewerGroups
List of groups who can view assets contained in a collection. (This is only used for certain asset types.) -
viewerUsers
SortedSet<String> viewerUsers
List of users who can view assets contained in a collection. (This is only used for certain asset types.) -
viewScore
Double viewScore
View score for this asset.
-
-
Class com.atlan.model.assets.AtlanCollection
class AtlanCollection extends Asset implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.assets.AtlanQuery
class AtlanQuery extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
TBC -
assetApplicationQualifiedName
String assetApplicationQualifiedName
TBC -
calculationViewName
String calculationViewName
TBC -
calculationViewQualifiedName
String calculationViewQualifiedName
TBC -
collectionQualifiedName
String collectionQualifiedName
TBC -
columns
SortedSet<IColumn> columns
TBC -
databaseName
String databaseName
TBC -
databaseQualifiedName
String databaseQualifiedName
TBC -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
defaultDatabaseQualifiedName
String defaultDatabaseQualifiedName
TBC -
defaultSchemaQualifiedName
String defaultSchemaQualifiedName
TBC -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
TBC -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
TBC -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isPrivate
Boolean isPrivate
TBC -
isProfiled
Boolean isProfiled
TBC -
isSqlSnippet
Boolean isSqlSnippet
TBC -
isVisualQuery
Boolean isVisualQuery
TBC -
lastProfiledAt
Long lastProfiledAt
TBC -
longRawQuery
String longRawQuery
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
TBC -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
TBC -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
TBC -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
parent
INamespace parent
TBC -
parentQualifiedName
String parentQualifiedName
TBC -
queryCount
Long queryCount
TBC -
queryCountUpdatedAt
Long queryCountUpdatedAt
TBC -
queryUserCount
Long queryUserCount
TBC -
queryUserMap
Map<String,
Long> queryUserMap TBC -
rawQuery
String rawQuery
TBC -
rawQueryText
String rawQueryText
TBC -
schemaName
String schemaName
TBC -
schemaQualifiedName
String schemaQualifiedName
TBC -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableName
String tableName
TBC -
tableQualifiedName
String tableQualifiedName
TBC -
tables
SortedSet<ITable> tables
TBC -
typeName
String typeName
Fixed typeName for AtlanQuerys. -
variablesSchemaBase64
String variablesSchemaBase64
TBC -
viewName
String viewName
TBC -
viewQualifiedName
String viewQualifiedName
TBC -
views
SortedSet<IView> views
TBC -
visualBuilderSchemaBase64
String visualBuilderSchemaBase64
TBC
-
-
Class com.atlan.model.assets.AuthPolicy
class AuthPolicy extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
accessControl
IAccessControl accessControl
TBC -
isPolicyEnabled
Boolean isPolicyEnabled
TBC -
policyActions
SortedSet<AtlanPolicyAction> policyActions
TBC -
policyCategory
AuthPolicyCategory policyCategory
TBC -
policyConditions
List<AuthPolicyCondition> policyConditions
TBC -
policyDelegateAdmin
Boolean policyDelegateAdmin
TBC -
policyGroups
SortedSet<String> policyGroups
TBC -
policyMaskType
DataMaskingType policyMaskType
TBC -
policyPriority
Integer policyPriority
TBC -
policyResourceCategory
AuthPolicyResourceCategory policyResourceCategory
TBC -
policyResources
SortedSet<String> policyResources
TBC -
policyResourceSignature
String policyResourceSignature
TBC -
policyRoles
SortedSet<String> policyRoles
TBC -
policyServiceName
String policyServiceName
TBC -
policySubCategory
String policySubCategory
TBC -
policyType
AuthPolicyType policyType
TBC -
policyUsers
SortedSet<String> policyUsers
TBC -
policyValiditySchedule
List<AuthPolicyValiditySchedule> policyValiditySchedule
TBC -
typeName
String typeName
Fixed typeName for AuthPolicys.
-
-
Class com.atlan.model.assets.AuthService
class AuthService extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
authServiceConfig
Map<String,
String> authServiceConfig TBC -
authServiceIsEnabled
Boolean authServiceIsEnabled
TBC -
authServicePolicyLastSync
Long authServicePolicyLastSync
TBC -
authServiceType
String authServiceType
TBC -
tagService
String tagService
TBC -
typeName
String typeName
Fixed typeName for AuthServices.
-
-
Class com.atlan.model.assets.AzureEventHub
class AzureEventHub extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
azureEventHubStatus
String azureEventHubStatus
TBC -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
kafkaConsumerGroups
SortedSet<IKafkaConsumerGroup> kafkaConsumerGroups
Consumer groups subscribed to this topic. -
kafkaTopicCleanupPolicy
KafkaTopicCleanupPolicy kafkaTopicCleanupPolicy
Cleanup policy for this topic. -
kafkaTopicCompressionType
KafkaTopicCompressionType kafkaTopicCompressionType
Type of compression used for this topic. -
kafkaTopicIsInternal
Boolean kafkaTopicIsInternal
Whether this topic is an internal topic (true) or not (false). -
kafkaTopicLogCleanupPolicy
String kafkaTopicLogCleanupPolicy
Comma seperated Cleanup policy for this topic. -
kafkaTopicPartitionsCount
Long kafkaTopicPartitionsCount
Number of partitions for this topic. -
kafkaTopicRecordCount
Long kafkaTopicRecordCount
Number of (unexpired) messages in this topic. -
kafkaTopicReplicationFactor
Long kafkaTopicReplicationFactor
Replication factor for this topic. -
kafkaTopicRetentionTimeInMs
Long kafkaTopicRetentionTimeInMs
Amount of time messages will be retained in this topic, in milliseconds. -
kafkaTopicSegmentBytes
Long kafkaTopicSegmentBytes
Segment size for this topic. -
kafkaTopicSizeInBytes
Long kafkaTopicSizeInBytes
Size of this topic, in bytes. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for AzureEventHubs.
-
-
Class com.atlan.model.assets.AzureEventHubConsumerGroup
class AzureEventHubConsumerGroup extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
kafkaConsumerGroupMemberCount
Long kafkaConsumerGroupMemberCount
Number of members in this consumer group. -
kafkaConsumerGroupTopicConsumptionProperties
List<KafkaTopicConsumption> kafkaConsumerGroupTopicConsumptionProperties
List of consumption properties for Kafka topics, for this consumer group. -
kafkaTopicNames
SortedSet<String> kafkaTopicNames
Simple names of the topics consumed by this consumer group. -
kafkaTopicQualifiedNames
SortedSet<String> kafkaTopicQualifiedNames
Unique names of the topics consumed by this consumer group. -
kafkaTopics
SortedSet<IKafkaTopic> kafkaTopics
Topics consumed by this consumer group. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for AzureEventHubConsumerGroups.
-
-
Class com.atlan.model.assets.AzureServiceBusNamespace
class AzureServiceBusNamespace extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
azureServiceBusNamespaceName
String azureServiceBusNamespaceName
Simple name of the AzureServiceBus Namespace in which this asset exists. -
azureServiceBusNamespaceQualifiedName
String azureServiceBusNamespaceQualifiedName
Unique name of the AzureServiceBus Namespace in which this asset exists. -
azureServiceBusTopics
SortedSet<IAzureServiceBusTopic> azureServiceBusTopics
AzureServiceBusTopic assets contained within this AzureServiceBusNamespace. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for AzureServiceBusNamespaces.
-
-
Class com.atlan.model.assets.AzureServiceBusTopic
class AzureServiceBusTopic extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
azureServiceBusNamespace
IAzureServiceBusNamespace azureServiceBusNamespace
AzureServiceBusNamespace asset containing this AzureServiceBusTopic. -
azureServiceBusNamespaceName
String azureServiceBusNamespaceName
Simple name of the AzureServiceBus Namespace in which this asset exists. -
azureServiceBusNamespaceQualifiedName
String azureServiceBusNamespaceQualifiedName
Unique name of the AzureServiceBus Namespace in which this asset exists. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for AzureServiceBusTopics.
-
-
Class com.atlan.model.assets.Badge
class Badge extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
badgeConditions
List<BadgeCondition> badgeConditions
List of conditions that determine the colors to diplay for various values. -
badgeMetadataAttribute
String badgeMetadataAttribute
Custom metadata attribute for which to show the badge. -
typeName
String typeName
Fixed typeName for Badges.
-
-
Class com.atlan.model.assets.BIProcess
class BIProcess extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
additionalEtlContext
String additionalEtlContext
Additional Context of the ETL pipeline/notebook which creates the process. -
adfActivity
IAdfActivity adfActivity
ADF Activity that is associated with this lineage process. -
airflowTasks
SortedSet<IAirflowTask> airflowTasks
Tasks that exist within this process. -
ast
String ast
Parsed AST of the code or SQL statements that describe the logic of this process. -
code
String code
Code that ran within the process. -
columnProcesses
SortedSet<IColumnProcess> columnProcesses
Processes that detail column-level lineage for this process. -
fivetranConnector
IFivetranConnector fivetranConnector
fivetranConnector in which this process exists. -
inputs
SortedSet<ICatalog> inputs
Assets that are inputs to this process. -
matillionComponent
IMatillionComponent matillionComponent
Matillion component that contains the logic for this lineage process. -
outputs
SortedSet<ICatalog> outputs
Assets that are outputs from this process. -
powerBIDataflow
IPowerBIDataflow powerBIDataflow
PowerBI Dataflow that is associated with this lineage process. -
sparkJobs
SortedSet<ISparkJob> sparkJobs
TBC -
sql
String sql
SQL query that ran to produce the outputs. -
typeName
String typeName
Fixed typeName for BIProcesss.
-
-
Class com.atlan.model.assets.BusinessPolicy
class BusinessPolicy extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
businessPolicyBaseParentGuid
String businessPolicyBaseParentGuid
Base parent Guid for policy used in version -
businessPolicyFilterDSL
String businessPolicyFilterDSL
Business Policy Filter ES DSL to denote the associate asset/s involved. -
businessPolicyLongDescription
String businessPolicyLongDescription
Body of the business policy, a long readme like document -
businessPolicyReviewPeriod
String businessPolicyReviewPeriod
Duration for the business policy to complete review. -
businessPolicySelectedApprovalWF
String businessPolicySelectedApprovalWF
Selected approval workflow id for business policy -
businessPolicyType
String businessPolicyType
Type of business policy -
businessPolicyValidFrom
Long businessPolicyValidFrom
Validity start date of the policy -
businessPolicyValidTill
Long businessPolicyValidTill
Validity end date of the policy -
businessPolicyVersion
Integer businessPolicyVersion
Version of the policy -
exceptionsForBusinessPolicy
SortedSet<IBusinessPolicyException> exceptionsForBusinessPolicy
Exception assigned to business polices -
relatedBusinessPolicies
SortedSet<IBusinessPolicy> relatedBusinessPolicies
BusinessPolicy that have the same (or relatable) compliance -
typeName
String typeName
Fixed typeName for BusinessPolicys.
-
-
Class com.atlan.model.assets.BusinessPolicyException
class BusinessPolicyException extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
businessPolicyExceptionFilterDSL
String businessPolicyExceptionFilterDSL
Business Policy Exception Filter ES DSL to denote the associate asset/s involved. -
businessPolicyExceptionGroups
SortedSet<String> businessPolicyExceptionGroups
List of groups who are part of this exception -
businessPolicyExceptionUsers
SortedSet<String> businessPolicyExceptionUsers
List of users who are part of this exception -
businessPolicyForException
IBusinessPolicy businessPolicyForException
Business policies related to exception -
businessPolicyQualifiedName
String businessPolicyQualifiedName
Unique name of the business policy through which this asset is accessible. -
typeName
String typeName
Fixed typeName for BusinessPolicyExceptions.
-
-
Class com.atlan.model.assets.BusinessPolicyIncident
class BusinessPolicyIncident extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
businessPolicyIncidentFilterDSL
String businessPolicyIncidentFilterDSL
Filter ES DSL to denote the associate asset/s involved. -
businessPolicyIncidentNoncompliantCount
Long businessPolicyIncidentNoncompliantCount
count of noncompliant assets in the incident -
businessPolicyIncidentRelatedPolicyGUIDs
SortedSet<String> businessPolicyIncidentRelatedPolicyGUIDs
policy ids related to this incident -
incidentSeverity
IncidentSeverity incidentSeverity
Status of this asset's severity. -
typeName
String typeName
Fixed typeName for BusinessPolicyIncidents.
-
-
Class com.atlan.model.assets.BusinessPolicyLog
class BusinessPolicyLog extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
businessPolicyId
String businessPolicyId
business policy guid for which log are created -
businessPolicyLogPolicyType
String businessPolicyLogPolicyType
business policy type for which log are created -
compliantAssetsCount
Long compliantAssetsCount
number of compliant assets in the policy -
governedAssetsCount
Long governedAssetsCount
number of governed assets in the policy -
nonCompliantAssetsCount
Long nonCompliantAssetsCount
number of non compliant assets in the policy -
nonGovernedAssetsCount
Long nonGovernedAssetsCount
number of non governed assets in the policy -
typeName
String typeName
Fixed typeName for BusinessPolicyLogs.
-
-
Class com.atlan.model.assets.CalculationView
class CalculationView extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationViewActivatedAt
Long calculationViewActivatedAt
Time at which this calculation view was activated at -
calculationViewActivatedBy
String calculationViewActivatedBy
The owner who activated the calculation view -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewPackageId
String calculationViewPackageId
The full package id path to which a calculation view belongs/resides in the repository. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewVersionId
Long calculationViewVersionId
The version ID of this calculation view. -
columnCount
Long columnCount
Number of columns in this calculation view. -
columns
SortedSet<IColumn> columns
Columns that exist within this sap calculate view. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
schema
ISchema schema
TBC -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
typeName
String typeName
Fixed typeName for CalculationViews. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view.
-
-
Class com.atlan.model.assets.Cognite3DModel
class Cognite3DModel extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
cogniteAsset
ICogniteAsset cogniteAsset
Asset in which this 3D model exists. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for Cognite3DModels.
-
-
Class com.atlan.model.assets.CogniteAsset
class CogniteAsset extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
cognite3dmodels
SortedSet<ICognite3DModel> cognite3dmodels
3D models that exist within this asset. -
cogniteEvents
SortedSet<ICogniteEvent> cogniteEvents
Events that exist within this asset. -
cogniteFiles
SortedSet<ICogniteFile> cogniteFiles
Files that exist within this asset. -
cogniteSequences
SortedSet<ICogniteSequence> cogniteSequences
Sequences that exist within this asset. -
cogniteTimeseries
SortedSet<ICogniteTimeSeries> cogniteTimeseries
Time series that exist within this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for CogniteAssets.
-
-
Class com.atlan.model.assets.CogniteEvent
class CogniteEvent extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
cogniteAsset
ICogniteAsset cogniteAsset
Asset in which this event exists. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for CogniteEvents.
-
-
Class com.atlan.model.assets.CogniteFile
class CogniteFile extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
cogniteAsset
ICogniteAsset cogniteAsset
Asset in which this file exists. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for CogniteFiles.
-
-
Class com.atlan.model.assets.CogniteSequence
class CogniteSequence extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
cogniteAsset
ICogniteAsset cogniteAsset
Asset in which this sequence exists. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for CogniteSequences.
-
-
Class com.atlan.model.assets.CogniteTimeSeries
class CogniteTimeSeries extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
cogniteAsset
ICogniteAsset cogniteAsset
Asset in which this time series exists. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for CogniteTimeSeriess.
-
-
Class com.atlan.model.assets.CognosDashboard
class CognosDashboard extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
cognosDefaultScreenTip
String cognosDefaultScreenTip
Tooltip text present for the Cognos asset -
cognosFolder
ICognosFolder cognosFolder
TBC -
cognosId
String cognosId
ID of the asset in Cognos -
cognosIsDisabled
Boolean cognosIsDisabled
Whether the Cognos asset is diabled -
cognosIsHidden
Boolean cognosIsHidden
Whether the Cognos asset is hidden from the ui -
cognosParentName
String cognosParentName
Name of the parent asset in Cognos -
cognosParentQualifiedName
String cognosParentQualifiedName
Qualified name of the parent asset in Cognos -
cognosPath
String cognosPath
Path of the asset in Cognos. E.g. /content/folder[@name='Folder Name'] -
cognosType
String cognosType
Cognos type of the Cognos asset. E.g. report, dashboard, package, etc. -
cognosVersion
String cognosVersion
Version of the Cognos asset -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for CognosDashboards.
-
-
Class com.atlan.model.assets.CognosDatasource
class CognosDatasource extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
cognosDatasourceConnectionString
String cognosDatasourceConnectionString
Connection string of a cognos datasource -
cognosDefaultScreenTip
String cognosDefaultScreenTip
Tooltip text present for the Cognos asset -
cognosId
String cognosId
ID of the asset in Cognos -
cognosIsDisabled
Boolean cognosIsDisabled
Whether the Cognos asset is diabled -
cognosIsHidden
Boolean cognosIsHidden
Whether the Cognos asset is hidden from the ui -
cognosParentName
String cognosParentName
Name of the parent asset in Cognos -
cognosParentQualifiedName
String cognosParentQualifiedName
Qualified name of the parent asset in Cognos -
cognosPath
String cognosPath
Path of the asset in Cognos. E.g. /content/folder[@name='Folder Name'] -
cognosType
String cognosType
Cognos type of the Cognos asset. E.g. report, dashboard, package, etc. -
cognosVersion
String cognosVersion
Version of the Cognos asset -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for CognosDatasources.
-
-
Class com.atlan.model.assets.CognosExploration
class CognosExploration extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
cognosDefaultScreenTip
String cognosDefaultScreenTip
Tooltip text present for the Cognos asset -
cognosFolder
ICognosFolder cognosFolder
TBC -
cognosId
String cognosId
ID of the asset in Cognos -
cognosIsDisabled
Boolean cognosIsDisabled
Whether the Cognos asset is diabled -
cognosIsHidden
Boolean cognosIsHidden
Whether the Cognos asset is hidden from the ui -
cognosParentName
String cognosParentName
Name of the parent asset in Cognos -
cognosParentQualifiedName
String cognosParentQualifiedName
Qualified name of the parent asset in Cognos -
cognosPath
String cognosPath
Path of the asset in Cognos. E.g. /content/folder[@name='Folder Name'] -
cognosType
String cognosType
Cognos type of the Cognos asset. E.g. report, dashboard, package, etc. -
cognosVersion
String cognosVersion
Version of the Cognos asset -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for CognosExplorations.
-
-
Class com.atlan.model.assets.CognosFile
class CognosFile extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
cognosDefaultScreenTip
String cognosDefaultScreenTip
Tooltip text present for the Cognos asset -
cognosFolder
ICognosFolder cognosFolder
TBC -
cognosId
String cognosId
ID of the asset in Cognos -
cognosIsDisabled
Boolean cognosIsDisabled
Whether the Cognos asset is diabled -
cognosIsHidden
Boolean cognosIsHidden
Whether the Cognos asset is hidden from the ui -
cognosParentName
String cognosParentName
Name of the parent asset in Cognos -
cognosParentQualifiedName
String cognosParentQualifiedName
Qualified name of the parent asset in Cognos -
cognosPath
String cognosPath
Path of the asset in Cognos. E.g. /content/folder[@name='Folder Name'] -
cognosType
String cognosType
Cognos type of the Cognos asset. E.g. report, dashboard, package, etc. -
cognosVersion
String cognosVersion
Version of the Cognos asset -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for CognosFiles.
-
-
Class com.atlan.model.assets.CognosFolder
class CognosFolder extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
cognosDashboards
SortedSet<ICognosDashboard> cognosDashboards
TBC -
cognosDefaultScreenTip
String cognosDefaultScreenTip
Tooltip text present for the Cognos asset -
cognosExplorations
SortedSet<ICognosExploration> cognosExplorations
TBC -
cognosFiles
SortedSet<ICognosFile> cognosFiles
TBC -
cognosFolder
ICognosFolder cognosFolder
TBC -
cognosFolderChildObjectsCount
Integer cognosFolderChildObjectsCount
Number of children in the folder (excluding subfolders). -
cognosFolderSubFolderCount
Integer cognosFolderSubFolderCount
Number of sub-folders in the folder. -
cognosId
String cognosId
ID of the asset in Cognos -
cognosIsDisabled
Boolean cognosIsDisabled
Whether the Cognos asset is diabled -
cognosIsHidden
Boolean cognosIsHidden
Whether the Cognos asset is hidden from the ui -
cognosModules
SortedSet<ICognosModule> cognosModules
TBC -
cognosPackages
SortedSet<ICognosPackage> cognosPackages
TBC -
cognosParentName
String cognosParentName
Name of the parent asset in Cognos -
cognosParentQualifiedName
String cognosParentQualifiedName
Qualified name of the parent asset in Cognos -
cognosPath
String cognosPath
Path of the asset in Cognos. E.g. /content/folder[@name='Folder Name'] -
cognosReports
SortedSet<ICognosReport> cognosReports
TBC -
cognosSubFolders
SortedSet<ICognosFolder> cognosSubFolders
TBC -
cognosType
String cognosType
Cognos type of the Cognos asset. E.g. report, dashboard, package, etc. -
cognosVersion
String cognosVersion
Version of the Cognos asset -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for CognosFolders.
-
-
Class com.atlan.model.assets.CognosModule
class CognosModule extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
cognosDefaultScreenTip
String cognosDefaultScreenTip
Tooltip text present for the Cognos asset -
cognosFolder
ICognosFolder cognosFolder
TBC -
cognosId
String cognosId
ID of the asset in Cognos -
cognosIsDisabled
Boolean cognosIsDisabled
Whether the Cognos asset is diabled -
cognosIsHidden
Boolean cognosIsHidden
Whether the Cognos asset is hidden from the ui -
cognosParentName
String cognosParentName
Name of the parent asset in Cognos -
cognosParentQualifiedName
String cognosParentQualifiedName
Qualified name of the parent asset in Cognos -
cognosPath
String cognosPath
Path of the asset in Cognos. E.g. /content/folder[@name='Folder Name'] -
cognosType
String cognosType
Cognos type of the Cognos asset. E.g. report, dashboard, package, etc. -
cognosVersion
String cognosVersion
Version of the Cognos asset -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for CognosModules.
-
-
Class com.atlan.model.assets.CognosPackage
class CognosPackage extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
cognosDefaultScreenTip
String cognosDefaultScreenTip
Tooltip text present for the Cognos asset -
cognosFolder
ICognosFolder cognosFolder
TBC -
cognosId
String cognosId
ID of the asset in Cognos -
cognosIsDisabled
Boolean cognosIsDisabled
Whether the Cognos asset is diabled -
cognosIsHidden
Boolean cognosIsHidden
Whether the Cognos asset is hidden from the ui -
cognosParentName
String cognosParentName
Name of the parent asset in Cognos -
cognosParentQualifiedName
String cognosParentQualifiedName
Qualified name of the parent asset in Cognos -
cognosPath
String cognosPath
Path of the asset in Cognos. E.g. /content/folder[@name='Folder Name'] -
cognosType
String cognosType
Cognos type of the Cognos asset. E.g. report, dashboard, package, etc. -
cognosVersion
String cognosVersion
Version of the Cognos asset -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for CognosPackages.
-
-
Class com.atlan.model.assets.CognosReport
class CognosReport extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
cognosDefaultScreenTip
String cognosDefaultScreenTip
Tooltip text present for the Cognos asset -
cognosFolder
ICognosFolder cognosFolder
TBC -
cognosId
String cognosId
ID of the asset in Cognos -
cognosIsDisabled
Boolean cognosIsDisabled
Whether the Cognos asset is diabled -
cognosIsHidden
Boolean cognosIsHidden
Whether the Cognos asset is hidden from the ui -
cognosParentName
String cognosParentName
Name of the parent asset in Cognos -
cognosParentQualifiedName
String cognosParentQualifiedName
Qualified name of the parent asset in Cognos -
cognosPath
String cognosPath
Path of the asset in Cognos. E.g. /content/folder[@name='Folder Name'] -
cognosType
String cognosType
Cognos type of the Cognos asset. E.g. report, dashboard, package, etc. -
cognosVersion
String cognosVersion
Version of the Cognos asset -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for CognosReports.
-
-
Class com.atlan.model.assets.Column
class Column extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationView
ICalculationView calculationView
Calculate view in which this column exists. -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
columnAverage
Double columnAverage
Average value in this column. -
columnAverageLength
Double columnAverageLength
Average length of values in a string column. -
columnDbtModelColumns
SortedSet<IDbtModelColumn> columnDbtModelColumns
TBC -
columnDepthLevel
Integer columnDepthLevel
Level of nesting of this column, used for STRUCT and NESTED columns. -
columnDistinctValuesCount
Integer columnDistinctValuesCount
Number of rows that contain distinct values. -
columnDistinctValuesCountLong
Long columnDistinctValuesCountLong
Number of rows that contain distinct values. -
columnDuplicateValuesCount
Integer columnDuplicateValuesCount
Number of rows that contain duplicate values. -
columnDuplicateValuesCountLong
Long columnDuplicateValuesCountLong
Number of rows that contain duplicate values. -
columnHierarchy
List<Map<String,
String>> columnHierarchy List of top-level upstream nested columns. -
columnHistogram
Histogram columnHistogram
List of values in a histogram that represents the contents of this column. -
columnMax
Double columnMax
Greatest value in a numeric column. -
columnMaximumStringLength
Integer columnMaximumStringLength
Length of the longest value in a string column. -
columnMaxs
SortedSet<String> columnMaxs
List of the greatest values in a column. -
columnMean
Double columnMean
Arithmetic mean of the values in a numeric column. -
columnMedian
Double columnMedian
Calculated median of the values in a numeric column. -
columnMin
Double columnMin
Least value in a numeric column. -
columnMinimumStringLength
Integer columnMinimumStringLength
Length of the shortest value in a string column. -
columnMins
SortedSet<String> columnMins
List of the least values in a column. -
columnMissingValuesCount
Integer columnMissingValuesCount
Number of rows in a column that do not contain content. -
columnMissingValuesCountLong
Long columnMissingValuesCountLong
Number of rows in a column that do not contain content. -
columnMissingValuesPercentage
Double columnMissingValuesPercentage
Percentage of rows in a column that do not contain content. -
columnStandardDeviation
Double columnStandardDeviation
Calculated standard deviation of the values in a numeric column. -
columnSum
Double columnSum
Calculated sum of the values in a numeric column. -
columnTopValues
List<ColumnValueFrequencyMap> columnTopValues
List of top values in this column. -
columnUniquenessPercentage
Double columnUniquenessPercentage
Ratio indicating how unique data in this column is: 0 indicates that all values are the same, 100 indicates that all values in this column are unique. -
columnUniqueValuesCount
Integer columnUniqueValuesCount
Number of rows in which a value in this column appears only once. -
columnUniqueValuesCountLong
Long columnUniqueValuesCountLong
Number of rows in which a value in this column appears only once. -
columnVariance
Double columnVariance
Calculated variance of the values in a numeric column. -
cosmosMongoDBCollection
ICosmosMongoDBCollection cosmosMongoDBCollection
Cosmos collection in which this column exists. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dataQualityMetricDimensions
SortedSet<IMetric> dataQualityMetricDimensions
TBC -
dataType
String dataType
Data type of values in this column. -
dbtMetrics
SortedSet<IDbtMetric> dbtMetrics
TBC -
dbtModelColumns
SortedSet<IDbtModelColumn> dbtModelColumns
TBC -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
defaultValue
String defaultValue
Default value for this column. -
foreignKeyFrom
IColumn foreignKeyFrom
Column this foreign key column refers to. -
foreignKeyTo
SortedSet<IColumn> foreignKeyTo
Columns that use this column as a foreign key. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isClustered
Boolean isClustered
Whether this column is a clustered column (true) or not (false). -
isDist
Boolean isDist
Whether this column is a distribution column (true) or not (false). -
isForeign
Boolean isForeign
When true, this column is a foreign key to another table. NOTE: this must be true when using the foreignKeyTo relationship to specify columns that refer to this column as a foreign key. -
isIndexed
Boolean isIndexed
When true, this column is indexed in the database. -
isNullable
Boolean isNullable
When true, the values in this column can be null. -
isPartition
Boolean isPartition
Whether this column is a partition column (true) or not (false). -
isPinned
Boolean isPinned
Whether this column is pinned (true) or not (false). -
isPrimary
Boolean isPrimary
When true, this column is the primary key for the table. -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
isSort
Boolean isSort
Whether this column is a sort column (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
materializedView
IMaterializedView materializedView
Materialized view in which this column exists. -
maxLength
Long maxLength
Maximum length of a value in this column. -
metricTimestamps
SortedSet<IMetric> metricTimestamps
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
nestedColumnCount
Integer nestedColumnCount
Number of columns nested within this (STRUCT or NESTED) column. -
nestedColumnOrder
String nestedColumnOrder
Order (position) in which this column appears in the nested Column (nest level starts at 1). -
nestedColumns
SortedSet<IColumn> nestedColumns
Nested columns that exist within this column. -
nosqlCollectionName
String nosqlCollectionName
Simple name of the cosmos/mongo collection in which this SQL asset (column) exists, or empty if it does not exist within a cosmos/mongo collection. -
nosqlCollectionQualifiedName
String nosqlCollectionQualifiedName
Unique name of the cosmos/mongo collection in which this SQL asset (column) exists, or empty if it does not exist within a cosmos/mongo collection. -
numericScale
Double numericScale
Number of digits allowed to the right of the decimal point. -
order
Integer order
Order (position) in which this column appears in the table (starting at 1). -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
parentColumn
IColumn parentColumn
Column in which this sub-column is nested. -
parentColumnName
String parentColumnName
Simple name of the column this column is nested within, for STRUCT and NESTED columns. -
parentColumnQualifiedName
String parentColumnQualifiedName
Unique name of the column this column is nested within, for STRUCT and NESTED columns. -
partitionOrder
Integer partitionOrder
Order (position) of this partition column in the table. -
pinnedAt
Long pinnedAt
Time (epoch) at which this column was pinned, in milliseconds. -
pinnedBy
String pinnedBy
User who pinned this column. -
precision
Integer precision
Total number of digits allowed, when the dataType is numeric. -
queries
SortedSet<IAtlanQuery> queries
Queries that access this column. -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
rawDataTypeDefinition
String rawDataTypeDefinition
TBC -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
snowflakeDynamicTable
ISnowflakeDynamicTable snowflakeDynamicTable
Snowflake dynamic table in which this column exists. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
subDataType
String subDataType
Sub-data type of this column. -
table
ITable table
Table in which this column exists. -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tablePartition
ITablePartition tablePartition
Table partition that contains this column. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
typeName
String typeName
Fixed typeName for Columns. -
validations
Map<String,
String> validations Validations for this column. -
view
IView view
View in which this column exists. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view.
-
-
Class com.atlan.model.assets.ColumnProcess
class ColumnProcess extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
additionalEtlContext
String additionalEtlContext
Additional Context of the ETL pipeline/notebook which creates the process. -
adfActivity
IAdfActivity adfActivity
ADF Activity that is associated with this lineage process. -
airflowTasks
SortedSet<IAirflowTask> airflowTasks
Tasks that exist within this process. -
ast
String ast
Parsed AST of the code or SQL statements that describe the logic of this process. -
code
String code
Code that ran within the process. -
columnProcesses
SortedSet<IColumnProcess> columnProcesses
Processes that detail column-level lineage for this process. -
fivetranConnector
IFivetranConnector fivetranConnector
fivetranConnector in which this process exists. -
inputs
SortedSet<ICatalog> inputs
Assets that are inputs to this process. -
matillionComponent
IMatillionComponent matillionComponent
Matillion component that contains the logic for this lineage process. -
outputs
SortedSet<ICatalog> outputs
Assets that are outputs from this process. -
powerBIDataflow
IPowerBIDataflow powerBIDataflow
PowerBI Dataflow that is associated with this lineage process. -
process
ILineageProcess process
Process in which this task exists. -
sparkJobs
SortedSet<ISparkJob> sparkJobs
TBC -
sql
String sql
SQL query that ran to produce the outputs. -
typeName
String typeName
Fixed typeName for ColumnProcesss.
-
-
Class com.atlan.model.assets.Connection
class Connection extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
allowQuery
Boolean allowQuery
Whether using this connection to run queries on the source is allowed (true) or not (false). -
allowQueryPreview
Boolean allowQueryPreview
Whether using this connection to run preview queries on the source is allowed (true) or not (false). -
category
AtlanConnectionCategory category
Type of connection, for example WAREHOUSE, RDBMS, etc. -
connectionDbtEnvironments
SortedSet<String> connectionDbtEnvironments
TBC -
connectionSSOCredentialGuid
String connectionSSOCredentialGuid
Unique identifier (GUID) for the SSO credentials to use for this connection. -
connectorIcon
String connectorIcon
Unused. Only the value of connectorType impacts icons. -
connectorImage
String connectorImage
Unused. Only the value of connectorType impacts icons. -
credentialStrategy
String credentialStrategy
Credential strategy to use for this connection for queries. -
defaultCredentialGuid
String defaultCredentialGuid
Unique identifier (GUID) for the default credentials to use for this connection. -
hasPopularityInsights
Boolean hasPopularityInsights
Whether this connection has popularity insights (true) or not (false). -
host
String host
Host name of this connection's source. -
isSampleDataPreviewEnabled
Boolean isSampleDataPreviewEnabled
Whether sample data can be previewed for this connection (true) or not (false). -
objectStorageUploadThreshold
Long objectStorageUploadThreshold
Number of rows after which results should be uploaded to storage. -
policyStrategy
String policyStrategy
Policy strategy is a configuration that determines whether the Atlan policy will be applied to the results of insight queries and whether the query will be rewritten, applicable for stream api call made from insight screen -
policyStrategyForSamplePreview
String policyStrategyForSamplePreview
Policy strategy is a configuration that determines whether the Atlan policy will be applied to the results of insight queries and whether the query will be rewritten. policyStrategyForSamplePreview config is applicable for sample preview call from assets screen -
popularityInsightsTimeframe
Long popularityInsightsTimeframe
Number of days over which popularity is calculated, for example 30 days. -
port
Integer port
Port number to this connection's source. -
previewCredentialStrategy
String previewCredentialStrategy
Credential strategy to use for this connection for preview queries. -
queryConfig
String queryConfig
Query config for this connection. -
queryPreviewConfig
Map<String,
String> queryPreviewConfig Configuration for preview queries. -
queryTimeout
Long queryTimeout
Maximum time a query should be allowed to run before timing out. -
queryUsernameStrategy
QueryUsernameStrategy queryUsernameStrategy
Username strategy to use for this connection for queries. -
rowLimit
Long rowLimit
Maximum number of rows that can be returned for the source. -
sourceLogo
String sourceLogo
Unused. Only the value of connectorType impacts icons. -
subCategory
String subCategory
Subcategory of this connection. -
typeName
String typeName
Fixed typeName for Connections. -
useObjectStorage
Boolean useObjectStorage
Whether to upload to S3, GCP, or another storage location (true) or not (false). -
vectorEmbeddingsEnabled
Boolean vectorEmbeddingsEnabled
TBC -
vectorEmbeddingsUpdatedAt
Long vectorEmbeddingsUpdatedAt
TBC
-
-
Class com.atlan.model.assets.CosmosMongoDBAccount
class CosmosMongoDBAccount extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
cosmosMongoDBAccountConsistencyPolicy
String cosmosMongoDBAccountConsistencyPolicy
The consistency policy configured for the Cosmos MongoDB account. -
cosmosMongoDBAccountDocumentEndpoint
String cosmosMongoDBAccountDocumentEndpoint
The Document Endpoint URL for the Cosmos MongoDB account. -
cosmosMongoDBAccountEnableAutomaticFailover
Boolean cosmosMongoDBAccountEnableAutomaticFailover
Indicates whether automatic failover is enabled for the Cosmos MongoDB account. -
cosmosMongoDBAccountEnableMultipleWriteLocations
Boolean cosmosMongoDBAccountEnableMultipleWriteLocations
Indicates whether multiple write locations are enabled for the Cosmos MongoDB account. -
cosmosMongoDBAccountEnablePartitionKeyMonitor
Boolean cosmosMongoDBAccountEnablePartitionKeyMonitor
Indicates whether partition key monitoring is enabled for the Cosmos MongoDB account. -
cosmosMongoDBAccountInstanceId
String cosmosMongoDBAccountInstanceId
The unique identifier for the Cosmos MongoDB account. -
cosmosMongoDBAccountIsVirtualNetworkFilterEnabled
Boolean cosmosMongoDBAccountIsVirtualNetworkFilterEnabled
Indicates whether the virtual network filter is enabled for the Cosmos MongoDB account. -
cosmosMongoDBAccountLocations
SortedSet<String> cosmosMongoDBAccountLocations
The locations where the Cosmos MongoDB account is available. -
cosmosMongoDBAccountMongoEndpoint
String cosmosMongoDBAccountMongoEndpoint
The MongoDB connection endpoint for the Cosmos MongoDB account. -
cosmosMongoDBAccountPublicNetworkAccess
String cosmosMongoDBAccountPublicNetworkAccess
The status of public network access for the Cosmos MongoDB account. -
cosmosMongoDBAccountReadLocations
SortedSet<String> cosmosMongoDBAccountReadLocations
The read locations configured for the Cosmos MongoDB account. -
cosmosMongoDBAccountResourceGroup
String cosmosMongoDBAccountResourceGroup
The resource group that contains the Cosmos MongoDB account. -
cosmosMongoDBAccountSubscriptionId
String cosmosMongoDBAccountSubscriptionId
The ID of the subscription to which the Cosmos MongoDB account belongs. -
cosmosMongoDBAccountType
String cosmosMongoDBAccountType
The type of the Cosmos MongoDB account, such as RU or VCORE. -
cosmosMongoDBAccountWriteLocations
SortedSet<String> cosmosMongoDBAccountWriteLocations
The write locations configured for the Cosmos MongoDB account. -
cosmosMongoDBDatabaseCount
Long cosmosMongoDBDatabaseCount
Number of databases in this Cosmos MongoDB account. -
cosmosMongoDBDatabases
SortedSet<ICosmosMongoDBDatabase> cosmosMongoDBDatabases
Databases that exist within this account. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
noSQLSchemaDefinition
String noSQLSchemaDefinition
Represents attributes for describing the key schema for the table and indexes. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for CosmosMongoDBAccounts.
-
-
Class com.atlan.model.assets.CosmosMongoDBCollection
class CosmosMongoDBCollection extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
alias
String alias
Alias for this table. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
columnCount
Long columnCount
Number of columns in this table. -
columns
SortedSet<IColumn> columns
Columns that exist within this table. -
cosmosMongoDBDatabase
ICosmosMongoDBDatabase cosmosMongoDBDatabase
Database in which the collection exists. -
cosmosMongoDBDatabaseQualifiedName
String cosmosMongoDBDatabaseQualifiedName
Unique name of the database in which this collection exists. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
dimensions
SortedSet<ITable> dimensions
TBC -
externalLocation
String externalLocation
External location of this table, for example: an S3 object location. -
externalLocationFormat
String externalLocationFormat
Format of the external location of this table, for example: JSON, CSV, PARQUET, etc. -
externalLocationRegion
String externalLocationRegion
Region of the external location of this table, for example: S3 region. -
facts
SortedSet<ITable> facts
TBC -
icebergCatalogName
String icebergCatalogName
iceberg table catalog name (can be any user defined name) -
icebergCatalogSource
String icebergCatalogSource
iceberg table catalog type (glue, polaris, snowflake) -
icebergCatalogTableName
String icebergCatalogTableName
catalog table name (actual table name on the catalog side). -
icebergCatalogTableNamespace
String icebergCatalogTableNamespace
catalog table namespace (actual database name on the catalog side). -
icebergTableBaseLocation
String icebergTableBaseLocation
iceberg table base location inside the external volume. -
icebergTableType
String icebergTableType
iceberg table type (managed vs unmanaged) -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isPartitioned
Boolean isPartitioned
Whether this table is partitioned (true) or not (false). -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
isQueryPreview
Boolean isQueryPreview
Whether preview queries are allowed for this table (true) or not (false). -
isSharded
Boolean isSharded
Whether this table is a sharded table (true) or not (false). -
isTemporary
Boolean isTemporary
Whether this table is temporary (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
mongoDBCollectionAverageObjectSize
Long mongoDBCollectionAverageObjectSize
Average size of an object in the collection. -
mongoDBCollectionExpireAfterSeconds
Long mongoDBCollectionExpireAfterSeconds
Seconds after which documents in a time series collection or clustered collection expire. -
mongoDBCollectionIsCapped
Boolean mongoDBCollectionIsCapped
Whether the collection is capped (true) or not (false). -
mongoDBCollectionMaximumDocumentCount
Long mongoDBCollectionMaximumDocumentCount
Maximum number of documents allowed in a capped collection. -
mongoDBCollectionMaxSize
Long mongoDBCollectionMaxSize
Maximum size allowed in a capped collection. -
mongoDBCollectionNumIndexes
Long mongoDBCollectionNumIndexes
Number of indexes on the collection. -
mongoDBCollectionNumOrphanDocs
Long mongoDBCollectionNumOrphanDocs
Number of orphaned documents in the collection. -
mongoDBCollectionSchemaDefinition
String mongoDBCollectionSchemaDefinition
Definition of the schema applicable for the collection. -
mongoDBCollectionSubtype
String mongoDBCollectionSubtype
Subtype of a MongoDB collection, for example: Capped, Time Series, etc. -
mongoDBCollectionTimeField
String mongoDBCollectionTimeField
Name of the field containing the date in each time series document. -
mongoDBCollectionTimeGranularity
String mongoDBCollectionTimeGranularity
Closest match to the time span between consecutive incoming measurements. -
mongoDBCollectionTotalIndexSize
Long mongoDBCollectionTotalIndexSize
Total size of all indexes. -
mongoDBDatabase
IMongoDBDatabase mongoDBDatabase
Database in which the collection exists. -
noSQLSchemaDefinition
String noSQLSchemaDefinition
Represents attributes for describing the key schema for the table and indexes. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
partitionCount
Long partitionCount
Number of partitions in this table. -
partitionList
String partitionList
List of partitions in this table. -
partitions
SortedSet<ITablePartition> partitions
Partitions that exist within this table. -
partitionStrategy
String partitionStrategy
Partition strategy for this table. -
queries
SortedSet<IAtlanQuery> queries
Queries that access this table. -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryPreviewConfig
Map<String,
String> queryPreviewConfig Configuration for preview queries. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
rowCount
Long rowCount
Number of rows in this table. -
schema
ISchema schema
Schema in which this table exists. -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
sizeBytes
Long sizeBytes
Size of this table, in bytes. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableExternalVolumeName
String tableExternalVolumeName
external volume name for the table. -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableRetentionTime
Long tableRetentionTime
Data retention time in days. -
tableType
TableType tableType
Type of the table. -
typeName
String typeName
Fixed typeName for CosmosMongoDBCollections. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view.
-
-
Class com.atlan.model.assets.CosmosMongoDBDatabase
class CosmosMongoDBDatabase extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
cosmosMongoDBAccount
ICosmosMongoDBAccount cosmosMongoDBAccount
Account in which the database exists. -
cosmosMongoDBAccountQualifiedName
String cosmosMongoDBAccountQualifiedName
Unique name of the account in which this database exists. -
cosmosMongoDBCollections
SortedSet<ICosmosMongoDBCollection> cosmosMongoDBCollections
Collections that exist within this database. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
mongoDBCollections
SortedSet<IMongoDBCollection> mongoDBCollections
Collections that exist within this database. -
mongoDBDatabaseCollectionCount
Integer mongoDBDatabaseCollectionCount
Number of collections in the database. -
noSQLSchemaDefinition
String noSQLSchemaDefinition
Represents attributes for describing the key schema for the table and indexes. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
schemaCount
Integer schemaCount
Number of schemas in this database. -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemas
SortedSet<ISchema> schemas
Schemas that exist within this database. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
typeName
String typeName
Fixed typeName for CosmosMongoDBDatabases. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view.
-
-
Class com.atlan.model.assets.Cube
class Cube extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
cubeDimensionCount
Long cubeDimensionCount
Number of dimensions in the cube. -
cubeDimensionName
String cubeDimensionName
Simple name of the cube dimension in which this asset exists, or empty if it is itself a dimension. -
cubeDimensionQualifiedName
String cubeDimensionQualifiedName
Unique name of the cube dimension in which this asset exists, or empty if it is itself a dimension. -
cubeDimensions
SortedSet<ICubeDimension> cubeDimensions
Individual dimensions that make up the cube. -
cubeHierarchyName
String cubeHierarchyName
Simple name of the dimension hierarchy in which this asset exists, or empty if it is itself a hierarchy. -
cubeHierarchyQualifiedName
String cubeHierarchyQualifiedName
Unique name of the dimension hierarchy in which this asset exists, or empty if it is itself a hierarchy. -
cubeName
String cubeName
Simple name of the cube in which this asset exists, or empty if it is itself a cube. -
cubeQualifiedName
String cubeQualifiedName
Unique name of the cube in which this asset exists, or empty if it is itself a cube. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for Cubes.
-
-
Class com.atlan.model.assets.CubeDimension
class CubeDimension extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
cube
ICube cube
Cube in which this dimension exists. -
cubeDimensionName
String cubeDimensionName
Simple name of the cube dimension in which this asset exists, or empty if it is itself a dimension. -
cubeDimensionQualifiedName
String cubeDimensionQualifiedName
Unique name of the cube dimension in which this asset exists, or empty if it is itself a dimension. -
cubeHierarchies
SortedSet<ICubeHierarchy> cubeHierarchies
Individual hierarchies that make up the dimension. -
cubeHierarchyCount
Long cubeHierarchyCount
Number of hierarchies in the cube dimension. -
cubeHierarchyName
String cubeHierarchyName
Simple name of the dimension hierarchy in which this asset exists, or empty if it is itself a hierarchy. -
cubeHierarchyQualifiedName
String cubeHierarchyQualifiedName
Unique name of the dimension hierarchy in which this asset exists, or empty if it is itself a hierarchy. -
cubeName
String cubeName
Simple name of the cube in which this asset exists, or empty if it is itself a cube. -
cubeQualifiedName
String cubeQualifiedName
Unique name of the cube in which this asset exists, or empty if it is itself a cube. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for CubeDimensions.
-
-
Class com.atlan.model.assets.CubeField
class CubeField extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
cubeDimensionName
String cubeDimensionName
Simple name of the cube dimension in which this asset exists, or empty if it is itself a dimension. -
cubeDimensionQualifiedName
String cubeDimensionQualifiedName
Unique name of the cube dimension in which this asset exists, or empty if it is itself a dimension. -
cubeFieldGeneration
Long cubeFieldGeneration
Generation of the field in the cube hierarchy. -
cubeFieldLevel
Long cubeFieldLevel
Level of the field in the cube hierarchy. -
cubeFieldMeasureExpression
String cubeFieldMeasureExpression
Expression used to calculate this measure. -
cubeHierarchy
ICubeHierarchy cubeHierarchy
Hierarchy in which this field exists. -
cubeHierarchyName
String cubeHierarchyName
Simple name of the dimension hierarchy in which this asset exists, or empty if it is itself a hierarchy. -
cubeHierarchyQualifiedName
String cubeHierarchyQualifiedName
Unique name of the dimension hierarchy in which this asset exists, or empty if it is itself a hierarchy. -
cubeName
String cubeName
Simple name of the cube in which this asset exists, or empty if it is itself a cube. -
cubeNestedFields
SortedSet<ICubeField> cubeNestedFields
Individual fields nested within this cube field. -
cubeParentField
ICubeField cubeParentField
Parent field in which this field is nested. -
cubeParentFieldName
String cubeParentFieldName
Name of the parent field in which this field is nested. -
cubeParentFieldQualifiedName
String cubeParentFieldQualifiedName
Unique name of the parent field in which this field is nested. -
cubeQualifiedName
String cubeQualifiedName
Unique name of the cube in which this asset exists, or empty if it is itself a cube. -
cubeSubFieldCount
Long cubeSubFieldCount
Number of sub-fields that are direct children of this field. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for CubeFields.
-
-
Class com.atlan.model.assets.CubeHierarchy
class CubeHierarchy extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
cubeDimension
ICubeDimension cubeDimension
Dimension in which this hierarchy exists. -
cubeDimensionName
String cubeDimensionName
Simple name of the cube dimension in which this asset exists, or empty if it is itself a dimension. -
cubeDimensionQualifiedName
String cubeDimensionQualifiedName
Unique name of the cube dimension in which this asset exists, or empty if it is itself a dimension. -
cubeFieldCount
Long cubeFieldCount
Number of total fields in the cube hierarchy. -
cubeFields
SortedSet<ICubeField> cubeFields
Individual fields that make up the hierarchy. -
cubeHierarchyName
String cubeHierarchyName
Simple name of the dimension hierarchy in which this asset exists, or empty if it is itself a hierarchy. -
cubeHierarchyQualifiedName
String cubeHierarchyQualifiedName
Unique name of the dimension hierarchy in which this asset exists, or empty if it is itself a hierarchy. -
cubeName
String cubeName
Simple name of the cube in which this asset exists, or empty if it is itself a cube. -
cubeQualifiedName
String cubeQualifiedName
Unique name of the cube in which this asset exists, or empty if it is itself a cube. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for CubeHierarchys.
-
-
Class com.atlan.model.assets.Database
class Database extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
schemaCount
Integer schemaCount
Number of schemas in this database. -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemas
SortedSet<ISchema> schemas
Schemas that exist within this database. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
typeName
String typeName
Fixed typeName for Databases. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view.
-
-
Class com.atlan.model.assets.DatabricksUnityCatalogTag
class DatabricksUnityCatalogTag extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
mappedAtlanTagName
String mappedAtlanTagName
Name of the classification in Atlan that is mapped to this tag. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tagAllowedValues
SortedSet<String> tagAllowedValues
Allowed values for the tag in the source system. These are denormalized from tagAttributes for ease of querying. -
tagAttributes
List<SourceTagAttribute> tagAttributes
Attributes associated with the tag in the source system. -
tagId
String tagId
Unique identifier of the tag in the source system. -
typeName
String typeName
Fixed typeName for DatabricksUnityCatalogTags. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view.
-
-
Class com.atlan.model.assets.DataContract
class DataContract extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dataContractAssetCertified
IAsset dataContractAssetCertified
Asset this contract controls. -
dataContractAssetGuid
String dataContractAssetGuid
Unique identifier of the asset associated with this data contract. -
dataContractAssetLatest
IAsset dataContractAssetLatest
Asset this contract controls or will control. -
dataContractJson
String dataContractJson
(Deprecated) Replaced by dataContractSpec attribute. -
dataContractNextVersion
IDataContract dataContractNextVersion
Data contract instance that holds the next version of this contract. -
dataContractPreviousVersion
IDataContract dataContractPreviousVersion
Data contract instance that holds the previous version of this contract. -
dataContractSpec
String dataContractSpec
Actual content of the contract in YAML string format. Any changes to this string should create a new instance (with new sequential version number). -
dataContractVersion
Long dataContractVersion
Version of the contract. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for DataContracts.
-
-
Class com.atlan.model.assets.DataDomain
class DataDomain extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dataProducts
SortedSet<IDataProduct> dataProducts
Data products that exist within this data domain. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
parentDomain
IDataDomain parentDomain
Parent data domain in which this sub-data domain exists. -
parentDomainQualifiedName
String parentDomainQualifiedName
Unique name of the parent domain in which this asset exists. -
stakeholders
SortedSet<IStakeholder> stakeholders
Stakeholder assigned to the Domain -
subDomains
SortedSet<IDataDomain> subDomains
Sub-data domains that exist within this data domain. -
superDomainQualifiedName
String superDomainQualifiedName
Unique name of the top-level domain in which this asset exists. -
typeName
String typeName
Fixed typeName for DataDomains.
-
-
Class com.atlan.model.assets.DataProduct
class DataProduct extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
daapCriticality
DataProductCriticality daapCriticality
Criticality of this data product. -
daapInputPortGuids
SortedSet<String> daapInputPortGuids
Input ports guids for this data product. -
daapOutputPortGuids
SortedSet<String> daapOutputPortGuids
Output ports guids for this data product. -
daapSensitivity
DataProductSensitivity daapSensitivity
Information sensitivity of this data product. -
daapStatus
DataProductStatus daapStatus
Status of this data product. -
daapVisibility
DataProductVisibility daapVisibility
Visibility of a data product. -
daapVisibilityGroups
SortedSet<String> daapVisibilityGroups
list of groups for product visibility control -
daapVisibilityUsers
SortedSet<String> daapVisibilityUsers
list of users for product visibility control -
dataDomain
IDataDomain dataDomain
Data domain in which this data product exists. -
dataProductAssetsDSL
String dataProductAssetsDSL
Search DSL used to define which assets are part of this data product. -
dataProductAssetsPlaybookFilter
String dataProductAssetsPlaybookFilter
Playbook filter to define which assets are part of this data product. -
dataProductCriticality
DataProductCriticality dataProductCriticality
Criticality of this data product. -
dataProductScoreUpdatedAt
Long dataProductScoreUpdatedAt
Timestamp when the score of this data product was last updated. -
dataProductScoreValue
Double dataProductScoreValue
Score of this data product. -
dataProductSensitivity
DataProductSensitivity dataProductSensitivity
Information sensitivity of this data product. -
dataProductStatus
DataProductStatus dataProductStatus
Status of this data product. -
dataProductVisibility
DataProductVisibility dataProductVisibility
Visibility of a data product. -
inputPorts
SortedSet<IAsset> inputPorts
Input ports for this data product. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
outputPorts
SortedSet<IAsset> outputPorts
Output ports for this data product. -
parentDomainQualifiedName
String parentDomainQualifiedName
Unique name of the parent domain in which this asset exists. -
superDomainQualifiedName
String superDomainQualifiedName
Unique name of the top-level domain in which this asset exists. -
typeName
String typeName
Fixed typeName for DataProducts.
-
-
Class com.atlan.model.assets.DataStudioAsset
class DataStudioAsset extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dataStudioAssetOwner
String dataStudioAssetOwner
Owner of the asset, from Google Data Studio. -
dataStudioAssetTitle
String dataStudioAssetTitle
Title of the Google Data Studio asset. -
dataStudioAssetType
GoogleDataStudioAssetType dataStudioAssetType
Type of the Google Data Studio asset, for example: REPORT or DATA_SOURCE. -
googleLabels
List<GoogleLabel> googleLabels
List of labels that have been applied to the asset in Google. -
googleLocation
String googleLocation
Location of this asset in Google. -
googleLocationType
String googleLocationType
Type of location of this asset in Google. -
googleProjectId
String googleProjectId
ID of the project in which the asset exists. -
googleProjectName
String googleProjectName
Name of the project in which the asset exists. -
googleProjectNumber
Long googleProjectNumber
Number of the project in which the asset exists. -
googleService
String googleService
Service in Google in which the asset exists. -
googleTags
List<GoogleTag> googleTags
List of tags that have been applied to the asset in Google. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isTrashedDataStudioAsset
Boolean isTrashedDataStudioAsset
Whether the Google Data Studio asset has been trashed (true) or not (false). -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for DataStudioAssets.
-
-
Class com.atlan.model.assets.DbtColumnProcess
class DbtColumnProcess extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
additionalEtlContext
String additionalEtlContext
Additional Context of the ETL pipeline/notebook which creates the process. -
adfActivity
IAdfActivity adfActivity
ADF Activity that is associated with this lineage process. -
airflowTasks
SortedSet<IAirflowTask> airflowTasks
Tasks that exist within this process. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
ast
String ast
Parsed AST of the code or SQL statements that describe the logic of this process. -
code
String code
Code that ran within the process. -
columnProcesses
SortedSet<IColumnProcess> columnProcesses
Processes that detail column-level lineage for this process. -
dbtAccountName
String dbtAccountName
TBC -
dbtAlias
String dbtAlias
TBC -
dbtColumnProcessJobStatus
String dbtColumnProcessJobStatus
TBC -
dbtConnectionContext
String dbtConnectionContext
TBC -
dbtEnvironmentDbtVersion
String dbtEnvironmentDbtVersion
TBC -
dbtEnvironmentName
String dbtEnvironmentName
TBC -
dbtJobLastRun
Long dbtJobLastRun
TBC -
dbtJobName
String dbtJobName
TBC -
dbtJobNextRun
Long dbtJobNextRun
TBC -
dbtJobNextRunHumanized
String dbtJobNextRunHumanized
TBC -
dbtJobRuns
List<DbtJobRun> dbtJobRuns
List of latest DBT job runs across all environments -
dbtJobSchedule
String dbtJobSchedule
TBC -
dbtJobScheduleCronHumanized
String dbtJobScheduleCronHumanized
TBC -
dbtJobStatus
String dbtJobStatus
TBC -
dbtMeta
String dbtMeta
TBC -
dbtPackageName
String dbtPackageName
TBC -
dbtProjectName
String dbtProjectName
TBC -
dbtSemanticLayerProxyUrl
String dbtSemanticLayerProxyUrl
TBC -
dbtTags
SortedSet<String> dbtTags
TBC -
dbtUniqueId
String dbtUniqueId
TBC -
fivetranConnector
IFivetranConnector fivetranConnector
fivetranConnector in which this process exists. -
inputs
SortedSet<ICatalog> inputs
Assets that are inputs to this task. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
matillionComponent
IMatillionComponent matillionComponent
Matillion component that contains the logic for this lineage process. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
outputs
SortedSet<ICatalog> outputs
Assets that are outputs from this task. -
powerBIDataflow
IPowerBIDataflow powerBIDataflow
PowerBI Dataflow that is associated with this lineage process. -
process
ILineageProcess process
Process in which this task exists. -
sparkJobs
SortedSet<ISparkJob> sparkJobs
TBC -
sql
String sql
SQL query that ran to produce the outputs. -
typeName
String typeName
Fixed typeName for DbtColumnProcesss.
-
-
Class com.atlan.model.assets.DbtMetric
class DbtMetric extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
assets
SortedSet<IAsset> assets
TBC -
dbtAccountName
String dbtAccountName
TBC -
dbtAlias
String dbtAlias
TBC -
dbtConnectionContext
String dbtConnectionContext
TBC -
dbtEnvironmentDbtVersion
String dbtEnvironmentDbtVersion
TBC -
dbtEnvironmentName
String dbtEnvironmentName
TBC -
dbtJobLastRun
Long dbtJobLastRun
TBC -
dbtJobName
String dbtJobName
TBC -
dbtJobNextRun
Long dbtJobNextRun
TBC -
dbtJobNextRunHumanized
String dbtJobNextRunHumanized
TBC -
dbtJobRuns
List<DbtJobRun> dbtJobRuns
List of latest DBT job runs across all environments -
dbtJobSchedule
String dbtJobSchedule
TBC -
dbtJobScheduleCronHumanized
String dbtJobScheduleCronHumanized
TBC -
dbtJobStatus
String dbtJobStatus
TBC -
dbtMeta
String dbtMeta
TBC -
dbtMetricFilterColumns
SortedSet<IColumn> dbtMetricFilterColumns
TBC -
dbtMetricFilters
List<DbtMetricFilter> dbtMetricFilters
TBC -
dbtModel
IDbtModel dbtModel
Model in which this metric exists. -
dbtPackageName
String dbtPackageName
TBC -
dbtProjectName
String dbtProjectName
TBC -
dbtSemanticLayerProxyUrl
String dbtSemanticLayerProxyUrl
TBC -
dbtTags
SortedSet<String> dbtTags
TBC -
dbtUniqueId
String dbtUniqueId
TBC -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
metricDimensionColumns
SortedSet<IColumn> metricDimensionColumns
TBC -
metricFilters
String metricFilters
Filters to be applied to the metric query. -
metricSQL
String metricSQL
SQL query used to compute the metric. -
metricTimeGrains
SortedSet<String> metricTimeGrains
List of time grains to be applied to the metric query. -
metricTimestampColumn
IColumn metricTimestampColumn
TBC -
metricType
String metricType
Type of the metric. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for DbtMetrics.
-
-
Class com.atlan.model.assets.DbtModel
class DbtModel extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dbtAccountName
String dbtAccountName
TBC -
dbtAlias
String dbtAlias
TBC -
dbtCompiledSQL
String dbtCompiledSQL
TBC -
dbtConnectionContext
String dbtConnectionContext
TBC -
dbtEnvironmentDbtVersion
String dbtEnvironmentDbtVersion
TBC -
dbtEnvironmentName
String dbtEnvironmentName
TBC -
dbtError
String dbtError
TBC -
dbtJobLastRun
Long dbtJobLastRun
TBC -
dbtJobName
String dbtJobName
TBC -
dbtJobNextRun
Long dbtJobNextRun
TBC -
dbtJobNextRunHumanized
String dbtJobNextRunHumanized
TBC -
dbtJobRuns
List<DbtJobRun> dbtJobRuns
List of latest DBT job runs across all environments -
dbtJobSchedule
String dbtJobSchedule
TBC -
dbtJobScheduleCronHumanized
String dbtJobScheduleCronHumanized
TBC -
dbtJobStatus
String dbtJobStatus
TBC -
dbtMaterializationType
String dbtMaterializationType
TBC -
dbtMeta
String dbtMeta
TBC -
dbtMetrics
SortedSet<IDbtMetric> dbtMetrics
Metrics that exist within this model. -
dbtModelColumns
SortedSet<IDbtModelColumn> dbtModelColumns
Columns that exist within this dbt model. -
dbtModelCompileCompletedAt
Long dbtModelCompileCompletedAt
TBC -
dbtModelCompileStartedAt
Long dbtModelCompileStartedAt
TBC -
dbtModelExecuteCompletedAt
Long dbtModelExecuteCompletedAt
TBC -
dbtModelExecuteStartedAt
Long dbtModelExecuteStartedAt
TBC -
dbtModelExecutionTime
Double dbtModelExecutionTime
TBC -
dbtModelRunElapsedTime
Double dbtModelRunElapsedTime
TBC -
dbtModelRunGeneratedAt
Long dbtModelRunGeneratedAt
TBC -
dbtModelSqlAssets
SortedSet<ISQL> dbtModelSqlAssets
TBC -
dbtPackageName
String dbtPackageName
TBC -
dbtProjectName
String dbtProjectName
TBC -
dbtRawSQL
String dbtRawSQL
TBC -
dbtSemanticLayerProxyUrl
String dbtSemanticLayerProxyUrl
TBC -
dbtStats
String dbtStats
TBC -
dbtStatus
String dbtStatus
TBC -
dbtTags
SortedSet<String> dbtTags
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
dbtUniqueId
String dbtUniqueId
TBC -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
primarySqlAsset
ISQL primarySqlAsset
TBC -
typeName
String typeName
Fixed typeName for DbtModels.
-
-
Class com.atlan.model.assets.DbtModelColumn
class DbtModelColumn extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dbtAccountName
String dbtAccountName
TBC -
dbtAlias
String dbtAlias
TBC -
dbtConnectionContext
String dbtConnectionContext
TBC -
dbtEnvironmentDbtVersion
String dbtEnvironmentDbtVersion
TBC -
dbtEnvironmentName
String dbtEnvironmentName
TBC -
dbtJobLastRun
Long dbtJobLastRun
TBC -
dbtJobName
String dbtJobName
TBC -
dbtJobNextRun
Long dbtJobNextRun
TBC -
dbtJobNextRunHumanized
String dbtJobNextRunHumanized
TBC -
dbtJobRuns
List<DbtJobRun> dbtJobRuns
List of latest DBT job runs across all environments -
dbtJobSchedule
String dbtJobSchedule
TBC -
dbtJobScheduleCronHumanized
String dbtJobScheduleCronHumanized
TBC -
dbtJobStatus
String dbtJobStatus
TBC -
dbtMeta
String dbtMeta
TBC -
dbtModel
IDbtModel dbtModel
Model in which this dbt column exists. -
dbtModelColumnDataType
String dbtModelColumnDataType
TBC -
dbtModelColumnOrder
Integer dbtModelColumnOrder
TBC -
dbtModelColumnSqlColumns
SortedSet<IColumn> dbtModelColumnSqlColumns
TBC -
dbtModelQualifiedName
String dbtModelQualifiedName
TBC -
dbtPackageName
String dbtPackageName
TBC -
dbtProjectName
String dbtProjectName
TBC -
dbtSemanticLayerProxyUrl
String dbtSemanticLayerProxyUrl
TBC -
dbtTags
SortedSet<String> dbtTags
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
dbtUniqueId
String dbtUniqueId
TBC -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
sqlColumn
IColumn sqlColumn
TBC -
typeName
String typeName
Fixed typeName for DbtModelColumns.
-
-
Class com.atlan.model.assets.DbtProcess
class DbtProcess extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
additionalEtlContext
String additionalEtlContext
Additional Context of the ETL pipeline/notebook which creates the process. -
adfActivity
IAdfActivity adfActivity
ADF Activity that is associated with this lineage process. -
airflowTasks
SortedSet<IAirflowTask> airflowTasks
Tasks that exist within this process. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
ast
String ast
Parsed AST of the code or SQL statements that describe the logic of this process. -
code
String code
Code that ran within the process. -
columnProcesses
SortedSet<IColumnProcess> columnProcesses
Processes that detail column-level lineage for this process. -
dbtAccountName
String dbtAccountName
TBC -
dbtAlias
String dbtAlias
TBC -
dbtConnectionContext
String dbtConnectionContext
TBC -
dbtEnvironmentDbtVersion
String dbtEnvironmentDbtVersion
TBC -
dbtEnvironmentName
String dbtEnvironmentName
TBC -
dbtJobLastRun
Long dbtJobLastRun
TBC -
dbtJobName
String dbtJobName
TBC -
dbtJobNextRun
Long dbtJobNextRun
TBC -
dbtJobNextRunHumanized
String dbtJobNextRunHumanized
TBC -
dbtJobRuns
List<DbtJobRun> dbtJobRuns
List of latest DBT job runs across all environments -
dbtJobSchedule
String dbtJobSchedule
TBC -
dbtJobScheduleCronHumanized
String dbtJobScheduleCronHumanized
TBC -
dbtJobStatus
String dbtJobStatus
TBC -
dbtMeta
String dbtMeta
TBC -
dbtPackageName
String dbtPackageName
TBC -
dbtProcessJobStatus
String dbtProcessJobStatus
TBC -
dbtProjectName
String dbtProjectName
TBC -
dbtSemanticLayerProxyUrl
String dbtSemanticLayerProxyUrl
TBC -
dbtTags
SortedSet<String> dbtTags
TBC -
dbtUniqueId
String dbtUniqueId
TBC -
fivetranConnector
IFivetranConnector fivetranConnector
fivetranConnector in which this process exists. -
inputs
SortedSet<ICatalog> inputs
Assets that are inputs to this task. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
matillionComponent
IMatillionComponent matillionComponent
Matillion component that contains the logic for this lineage process. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
outputs
SortedSet<ICatalog> outputs
Assets that are outputs from this task. -
powerBIDataflow
IPowerBIDataflow powerBIDataflow
PowerBI Dataflow that is associated with this lineage process. -
sparkJobs
SortedSet<ISparkJob> sparkJobs
TBC -
sql
String sql
SQL query that ran to produce the outputs. -
typeName
String typeName
Fixed typeName for DbtProcesss.
-
-
Class com.atlan.model.assets.DbtSource
class DbtSource extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dbtAccountName
String dbtAccountName
TBC -
dbtAlias
String dbtAlias
TBC -
dbtConnectionContext
String dbtConnectionContext
TBC -
dbtEnvironmentDbtVersion
String dbtEnvironmentDbtVersion
TBC -
dbtEnvironmentName
String dbtEnvironmentName
TBC -
dbtFreshnessCriteria
String dbtFreshnessCriteria
TBC -
dbtJobLastRun
Long dbtJobLastRun
TBC -
dbtJobName
String dbtJobName
TBC -
dbtJobNextRun
Long dbtJobNextRun
TBC -
dbtJobNextRunHumanized
String dbtJobNextRunHumanized
TBC -
dbtJobRuns
List<DbtJobRun> dbtJobRuns
List of latest DBT job runs across all environments -
dbtJobSchedule
String dbtJobSchedule
TBC -
dbtJobScheduleCronHumanized
String dbtJobScheduleCronHumanized
TBC -
dbtJobStatus
String dbtJobStatus
TBC -
dbtMeta
String dbtMeta
TBC -
dbtPackageName
String dbtPackageName
TBC -
dbtProjectName
String dbtProjectName
TBC -
dbtSemanticLayerProxyUrl
String dbtSemanticLayerProxyUrl
TBC -
dbtState
String dbtState
TBC -
dbtTags
SortedSet<String> dbtTags
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
dbtUniqueId
String dbtUniqueId
TBC -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
primarySqlAsset
ISQL primarySqlAsset
TBC -
sqlAssets
SortedSet<ISQL> sqlAssets
TBC -
typeName
String typeName
Fixed typeName for DbtSources.
-
-
Class com.atlan.model.assets.DbtTag
class DbtTag extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dbtAccountName
String dbtAccountName
TBC -
dbtAlias
String dbtAlias
TBC -
dbtConnectionContext
String dbtConnectionContext
TBC -
dbtEnvironmentDbtVersion
String dbtEnvironmentDbtVersion
TBC -
dbtEnvironmentName
String dbtEnvironmentName
TBC -
dbtJobLastRun
Long dbtJobLastRun
TBC -
dbtJobName
String dbtJobName
TBC -
dbtJobNextRun
Long dbtJobNextRun
TBC -
dbtJobNextRunHumanized
String dbtJobNextRunHumanized
TBC -
dbtJobRuns
List<DbtJobRun> dbtJobRuns
List of latest DBT job runs across all environments -
dbtJobSchedule
String dbtJobSchedule
TBC -
dbtJobScheduleCronHumanized
String dbtJobScheduleCronHumanized
TBC -
dbtJobStatus
String dbtJobStatus
TBC -
dbtMeta
String dbtMeta
TBC -
dbtPackageName
String dbtPackageName
TBC -
dbtProjectName
String dbtProjectName
TBC -
dbtSemanticLayerProxyUrl
String dbtSemanticLayerProxyUrl
TBC -
dbtTags
SortedSet<String> dbtTags
TBC -
dbtUniqueId
String dbtUniqueId
TBC -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
mappedAtlanTagName
String mappedAtlanTagName
Name of the classification in Atlan that is mapped to this tag. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
tagAllowedValues
SortedSet<String> tagAllowedValues
Allowed values for the tag in the source system. These are denormalized from tagAttributes for ease of querying. -
tagAttributes
List<SourceTagAttribute> tagAttributes
Attributes associated with the tag in the source system. -
tagId
String tagId
Unique identifier of the tag in the source system. -
typeName
String typeName
Fixed typeName for DbtTags.
-
-
Class com.atlan.model.assets.DbtTest
class DbtTest extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dbtAccountName
String dbtAccountName
TBC -
dbtAlias
String dbtAlias
TBC -
dbtConnectionContext
String dbtConnectionContext
TBC -
dbtEnvironmentDbtVersion
String dbtEnvironmentDbtVersion
TBC -
dbtEnvironmentName
String dbtEnvironmentName
TBC -
dbtJobLastRun
Long dbtJobLastRun
TBC -
dbtJobName
String dbtJobName
TBC -
dbtJobNextRun
Long dbtJobNextRun
TBC -
dbtJobNextRunHumanized
String dbtJobNextRunHumanized
TBC -
dbtJobRuns
List<DbtJobRun> dbtJobRuns
List of latest DBT job runs across all environments -
dbtJobSchedule
String dbtJobSchedule
TBC -
dbtJobScheduleCronHumanized
String dbtJobScheduleCronHumanized
TBC -
dbtJobStatus
String dbtJobStatus
TBC -
dbtMeta
String dbtMeta
TBC -
dbtModelColumns
SortedSet<IDbtModelColumn> dbtModelColumns
TBC -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtPackageName
String dbtPackageName
TBC -
dbtProjectName
String dbtProjectName
TBC -
dbtSemanticLayerProxyUrl
String dbtSemanticLayerProxyUrl
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTags
SortedSet<String> dbtTags
TBC -
dbtTestCompiledCode
String dbtTestCompiledCode
Compiled code of the test (when the test is defined using Python). -
dbtTestCompiledSQL
String dbtTestCompiledSQL
Compiled SQL of the test. -
dbtTestError
String dbtTestError
Error message in the case of state being "error". -
dbtTestLanguage
String dbtTestLanguage
Language in which the test is written, for example: SQL or Python. -
dbtTestRawCode
String dbtTestRawCode
Raw code of the test (when the test is defined using Python). -
dbtTestRawSQL
String dbtTestRawSQL
Raw SQL of the test. -
dbtTestState
String dbtTestState
Test results. Can be one of, in order of severity, "error", "fail", "warn", "pass". -
dbtTestStatus
String dbtTestStatus
Details of the results of the test. For errors, it reads "ERROR". -
dbtUniqueId
String dbtUniqueId
TBC -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
sqlAssets
SortedSet<ISQL> sqlAssets
TBC -
typeName
String typeName
Fixed typeName for DbtTests.
-
-
Class com.atlan.model.assets.DomoCard
class DomoCard extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
domoCardDashboardCount
Long domoCardDashboardCount
Number of dashboards linked to this card. -
domoCardType
DomoCardType domoCardType
Type of the Domo Card. -
domoCardTypeValue
String domoCardTypeValue
Type of the Domo Card. -
domoDashboards
SortedSet<IDomoDashboard> domoDashboards
TBC -
domoDataset
IDomoDataset domoDataset
TBC -
domoId
String domoId
Id of the Domo dataset. -
domoOwnerId
String domoOwnerId
Id of the owner of the Domo dataset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for DomoCards.
-
-
Class com.atlan.model.assets.DomoDashboard
class DomoDashboard extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
domoCards
SortedSet<IDomoCard> domoCards
TBC -
domoDashboardCardCount
Long domoDashboardCardCount
Number of cards linked to this dashboard. -
domoDashboardChildren
SortedSet<IDomoDashboard> domoDashboardChildren
TBC -
domoDashboardParent
IDomoDashboard domoDashboardParent
TBC -
domoId
String domoId
Id of the Domo dataset. -
domoOwnerId
String domoOwnerId
Id of the owner of the Domo dataset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for DomoDashboards.
-
-
Class com.atlan.model.assets.DomoDataset
class DomoDataset extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
domoCards
SortedSet<IDomoCard> domoCards
TBC -
domoDatasetCardCount
Long domoDatasetCardCount
Number of cards linked to the Domo dataset. -
domoDatasetColumnCount
Long domoDatasetColumnCount
Number of columns in the Domo dataset. -
domoDatasetColumns
SortedSet<IDomoDatasetColumn> domoDatasetColumns
TBC -
domoDatasetLastRun
String domoDatasetLastRun
An ISO-8601 representation of the time the DataSet was last run. -
domoDatasetRowCount
Long domoDatasetRowCount
Number of rows in the Domo dataset. -
domoId
String domoId
Id of the Domo dataset. -
domoOwnerId
String domoOwnerId
Id of the owner of the Domo dataset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for DomoDatasets.
-
-
Class com.atlan.model.assets.DomoDatasetColumn
class DomoDatasetColumn extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
domoDataset
IDomoDataset domoDataset
TBC -
domoDatasetColumnType
String domoDatasetColumnType
Type of Domo Dataset Column. -
domoDatasetQualifiedName
String domoDatasetQualifiedName
Qualified name of domo dataset of this column. -
domoId
String domoId
Id of the Domo dataset. -
domoOwnerId
String domoOwnerId
Id of the owner of the Domo dataset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for DomoDatasetColumns.
-
-
Class com.atlan.model.assets.DynamoDBGlobalSecondaryIndex
class DynamoDBGlobalSecondaryIndex extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
alias
String alias
Alias for this table. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
columnCount
Long columnCount
Number of columns in this table. -
columns
SortedSet<IColumn> columns
Columns that exist within this table. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
dimensions
SortedSet<ITable> dimensions
TBC -
dynamoDBPartitionKey
String dynamoDBPartitionKey
Specifies the partition key of the DynamoDB Table/Index -
dynamoDBReadCapacityUnits
Long dynamoDBReadCapacityUnits
The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException -
dynamoDBSecondaryIndexProjectionType
DynamoDBSecondaryIndexProjectionType dynamoDBSecondaryIndexProjectionType
Specifies attributes that are projected from the DynamoDB table into the index -
dynamoDBSortKey
String dynamoDBSortKey
Specifies the sort key of the DynamoDB Table/Index -
dynamoDBStatus
DynamoDBStatus dynamoDBStatus
Status of the DynamoDB Asset -
dynamoDBTable
IDynamoDBTable dynamoDBTable
TBC -
dynamoDBWriteCapacityUnits
Long dynamoDBWriteCapacityUnits
The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException -
externalLocation
String externalLocation
External location of this table, for example: an S3 object location. -
externalLocationFormat
String externalLocationFormat
Format of the external location of this table, for example: JSON, CSV, PARQUET, etc. -
externalLocationRegion
String externalLocationRegion
Region of the external location of this table, for example: S3 region. -
facts
SortedSet<ITable> facts
TBC -
icebergCatalogName
String icebergCatalogName
iceberg table catalog name (can be any user defined name) -
icebergCatalogSource
String icebergCatalogSource
iceberg table catalog type (glue, polaris, snowflake) -
icebergCatalogTableName
String icebergCatalogTableName
catalog table name (actual table name on the catalog side). -
icebergCatalogTableNamespace
String icebergCatalogTableNamespace
catalog table namespace (actual database name on the catalog side). -
icebergTableBaseLocation
String icebergTableBaseLocation
iceberg table base location inside the external volume. -
icebergTableType
String icebergTableType
iceberg table type (managed vs unmanaged) -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isPartitioned
Boolean isPartitioned
Whether this table is partitioned (true) or not (false). -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
isQueryPreview
Boolean isQueryPreview
Whether preview queries are allowed for this table (true) or not (false). -
isSharded
Boolean isSharded
Whether this table is a sharded table (true) or not (false). -
isTemporary
Boolean isTemporary
Whether this table is temporary (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
noSQLSchemaDefinition
String noSQLSchemaDefinition
Represents attributes for describing the key schema for the table and indexes. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
partitionCount
Long partitionCount
Number of partitions in this table. -
partitionList
String partitionList
List of partitions in this table. -
partitions
SortedSet<ITablePartition> partitions
Partitions that exist within this table. -
partitionStrategy
String partitionStrategy
Partition strategy for this table. -
queries
SortedSet<IAtlanQuery> queries
Queries that access this table. -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryPreviewConfig
Map<String,
String> queryPreviewConfig Configuration for preview queries. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
rowCount
Long rowCount
Number of rows in this table. -
schema
ISchema schema
Schema in which this table exists. -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
sizeBytes
Long sizeBytes
Size of this table, in bytes. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableExternalVolumeName
String tableExternalVolumeName
external volume name for the table. -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableRetentionTime
Long tableRetentionTime
Data retention time in days. -
tableType
TableType tableType
Type of the table. -
typeName
String typeName
Fixed typeName for DynamoDBGlobalSecondaryIndexs. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view.
-
-
Class com.atlan.model.assets.DynamoDBLocalSecondaryIndex
class DynamoDBLocalSecondaryIndex extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
alias
String alias
Alias for this table. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
columnCount
Long columnCount
Number of columns in this table. -
columns
SortedSet<IColumn> columns
Columns that exist within this table. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
dimensions
SortedSet<ITable> dimensions
TBC -
dynamoDBPartitionKey
String dynamoDBPartitionKey
Specifies the partition key of the DynamoDB Table/Index -
dynamoDBReadCapacityUnits
Long dynamoDBReadCapacityUnits
The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException -
dynamoDBSecondaryIndexProjectionType
DynamoDBSecondaryIndexProjectionType dynamoDBSecondaryIndexProjectionType
Specifies attributes that are projected from the DynamoDB table into the index -
dynamoDBSortKey
String dynamoDBSortKey
Specifies the sort key of the DynamoDB Table/Index -
dynamoDBStatus
DynamoDBStatus dynamoDBStatus
Status of the DynamoDB Asset -
dynamoDBTable
IDynamoDBTable dynamoDBTable
TBC -
dynamoDBWriteCapacityUnits
Long dynamoDBWriteCapacityUnits
The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException -
externalLocation
String externalLocation
External location of this table, for example: an S3 object location. -
externalLocationFormat
String externalLocationFormat
Format of the external location of this table, for example: JSON, CSV, PARQUET, etc. -
externalLocationRegion
String externalLocationRegion
Region of the external location of this table, for example: S3 region. -
facts
SortedSet<ITable> facts
TBC -
icebergCatalogName
String icebergCatalogName
iceberg table catalog name (can be any user defined name) -
icebergCatalogSource
String icebergCatalogSource
iceberg table catalog type (glue, polaris, snowflake) -
icebergCatalogTableName
String icebergCatalogTableName
catalog table name (actual table name on the catalog side). -
icebergCatalogTableNamespace
String icebergCatalogTableNamespace
catalog table namespace (actual database name on the catalog side). -
icebergTableBaseLocation
String icebergTableBaseLocation
iceberg table base location inside the external volume. -
icebergTableType
String icebergTableType
iceberg table type (managed vs unmanaged) -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isPartitioned
Boolean isPartitioned
Whether this table is partitioned (true) or not (false). -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
isQueryPreview
Boolean isQueryPreview
Whether preview queries are allowed for this table (true) or not (false). -
isSharded
Boolean isSharded
Whether this table is a sharded table (true) or not (false). -
isTemporary
Boolean isTemporary
Whether this table is temporary (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
noSQLSchemaDefinition
String noSQLSchemaDefinition
Represents attributes for describing the key schema for the table and indexes. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
partitionCount
Long partitionCount
Number of partitions in this table. -
partitionList
String partitionList
List of partitions in this table. -
partitions
SortedSet<ITablePartition> partitions
Partitions that exist within this table. -
partitionStrategy
String partitionStrategy
Partition strategy for this table. -
queries
SortedSet<IAtlanQuery> queries
Queries that access this table. -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryPreviewConfig
Map<String,
String> queryPreviewConfig Configuration for preview queries. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
rowCount
Long rowCount
Number of rows in this table. -
schema
ISchema schema
Schema in which this table exists. -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
sizeBytes
Long sizeBytes
Size of this table, in bytes. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableExternalVolumeName
String tableExternalVolumeName
external volume name for the table. -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableRetentionTime
Long tableRetentionTime
Data retention time in days. -
tableType
TableType tableType
Type of the table. -
typeName
String typeName
Fixed typeName for DynamoDBLocalSecondaryIndexs. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view.
-
-
Class com.atlan.model.assets.DynamoDBTable
class DynamoDBTable extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
alias
String alias
Alias for this table. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
columnCount
Long columnCount
Number of columns in this table. -
columns
SortedSet<IColumn> columns
Columns that exist within this table. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
dimensions
SortedSet<ITable> dimensions
TBC -
dynamoDBGlobalSecondaryIndexes
SortedSet<IDynamoDBGlobalSecondaryIndex> dynamoDBGlobalSecondaryIndexes
TBC -
dynamoDBLocalSecondaryIndexes
SortedSet<IDynamoDBLocalSecondaryIndex> dynamoDBLocalSecondaryIndexes
TBC -
dynamoDBPartitionKey
String dynamoDBPartitionKey
Specifies the partition key of the DynamoDB Table/Index -
dynamoDBReadCapacityUnits
Long dynamoDBReadCapacityUnits
The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException -
dynamoDBSortKey
String dynamoDBSortKey
Specifies the sort key of the DynamoDB Table/Index -
dynamoDBStatus
DynamoDBStatus dynamoDBStatus
Status of the DynamoDB Asset -
dynamoDBTableGSICount
Integer dynamoDBTableGSICount
Represents the number of global secondary indexes on the table. -
dynamoDBTableLSICount
Integer dynamoDBTableLSICount
Represents the number of local secondary indexes on the table. -
dynamoDBWriteCapacityUnits
Long dynamoDBWriteCapacityUnits
The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException -
externalLocation
String externalLocation
External location of this table, for example: an S3 object location. -
externalLocationFormat
String externalLocationFormat
Format of the external location of this table, for example: JSON, CSV, PARQUET, etc. -
externalLocationRegion
String externalLocationRegion
Region of the external location of this table, for example: S3 region. -
facts
SortedSet<ITable> facts
TBC -
icebergCatalogName
String icebergCatalogName
iceberg table catalog name (can be any user defined name) -
icebergCatalogSource
String icebergCatalogSource
iceberg table catalog type (glue, polaris, snowflake) -
icebergCatalogTableName
String icebergCatalogTableName
catalog table name (actual table name on the catalog side). -
icebergCatalogTableNamespace
String icebergCatalogTableNamespace
catalog table namespace (actual database name on the catalog side). -
icebergTableBaseLocation
String icebergTableBaseLocation
iceberg table base location inside the external volume. -
icebergTableType
String icebergTableType
iceberg table type (managed vs unmanaged) -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isPartitioned
Boolean isPartitioned
Whether this table is partitioned (true) or not (false). -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
isQueryPreview
Boolean isQueryPreview
Whether preview queries are allowed for this table (true) or not (false). -
isSharded
Boolean isSharded
Whether this table is a sharded table (true) or not (false). -
isTemporary
Boolean isTemporary
Whether this table is temporary (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
noSQLSchemaDefinition
String noSQLSchemaDefinition
Represents attributes for describing the key schema for the table and indexes. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
partitionCount
Long partitionCount
Number of partitions in this table. -
partitionList
String partitionList
List of partitions in this table. -
partitions
SortedSet<ITablePartition> partitions
Partitions that exist within this table. -
partitionStrategy
String partitionStrategy
Partition strategy for this table. -
queries
SortedSet<IAtlanQuery> queries
Queries that access this table. -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryPreviewConfig
Map<String,
String> queryPreviewConfig Configuration for preview queries. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
rowCount
Long rowCount
Number of rows in this table. -
schema
ISchema schema
Schema in which this table exists. -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
sizeBytes
Long sizeBytes
Size of this table, in bytes. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableExternalVolumeName
String tableExternalVolumeName
external volume name for the table. -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableRetentionTime
Long tableRetentionTime
Data retention time in days. -
tableType
TableType tableType
Type of the table. -
typeName
String typeName
Fixed typeName for DynamoDBTables. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view.
-
-
Class com.atlan.model.assets.File
class File extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
fileAssets
IAsset fileAssets
TBC -
filePath
String filePath
URL giving the online location where the file can be accessed. -
fileType
FileType fileType
Type (extension) of the file. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isGlobal
Boolean isGlobal
Whether the resource is global (true) or not (false). -
link
String link
URL to the resource. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
reference
String reference
Reference to the resource. -
resourceMetadata
Map<String,
String> resourceMetadata Metadata of the resource. -
typeName
String typeName
Fixed typeName for Files.
-
-
Class com.atlan.model.assets.FivetranConnector
class FivetranConnector extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
fivetranConnectorCreditsUsed
Double fivetranConnectorCreditsUsed
Total credits used by this destination -
fivetranConnectorDestinationName
String fivetranConnectorDestinationName
Destination name added by the user on Fivetran -
fivetranConnectorDestinationType
String fivetranConnectorDestinationType
Type of destination on Fivetran. Eg: redshift, bigquery etc. -
fivetranConnectorDestinationURL
String fivetranConnectorDestinationURL
URL to open the destination details on Fivetran -
fivetranConnectorLastSyncExtractTimeSeconds
Double fivetranConnectorLastSyncExtractTimeSeconds
Extract time in seconds in the latest sync on fivetran -
fivetranConnectorLastSyncExtractVolumeMegabytes
Double fivetranConnectorLastSyncExtractVolumeMegabytes
Extracted data volume in metabytes in the latest sync on Fivetran -
fivetranConnectorLastSyncFinishedAt
Long fivetranConnectorLastSyncFinishedAt
Timestamp (epoch) when the latest sync finished on Fivetran, in milliseconds -
fivetranConnectorLastSyncId
String fivetranConnectorLastSyncId
ID of the latest sync -
fivetranConnectorLastSyncLoadTimeSeconds
Double fivetranConnectorLastSyncLoadTimeSeconds
Load time in seconds in the latest sync on Fivetran -
fivetranConnectorLastSyncLoadVolumeMegabytes
Double fivetranConnectorLastSyncLoadVolumeMegabytes
Loaded data volume in metabytes in the latest sync on Fivetran -
fivetranConnectorLastSyncProcessTimeSeconds
Double fivetranConnectorLastSyncProcessTimeSeconds
Process time in seconds in the latest sync on Fivetran -
fivetranConnectorLastSyncProcessVolumeMegabytes
Double fivetranConnectorLastSyncProcessVolumeMegabytes
Process volume in metabytes in the latest sync on Fivetran -
fivetranConnectorLastSyncReason
String fivetranConnectorLastSyncReason
Failure reason for the latest sync on Fivetran. If status is FAILURE, this is the description of the reason why the sync failed. If status is FAILURE_WITH_TASK, this is the description of the Error. If status is RESCHEDULED, this is the description of the reason why the sync is rescheduled. -
fivetranConnectorLastSyncRescheduledAt
Long fivetranConnectorLastSyncRescheduledAt
Timestamp (epoch) at which the latest sync is rescheduled at on Fivetran -
fivetranConnectorLastSyncStartedAt
Long fivetranConnectorLastSyncStartedAt
Timestamp (epoch) when the latest sync started on Fivetran, in milliseconds -
fivetranConnectorLastSyncTablesSynced
Long fivetranConnectorLastSyncTablesSynced
Number of tables synced in the latest sync on Fivetran -
fivetranConnectorLastSyncTaskType
String fivetranConnectorLastSyncTaskType
Failure task type for the latest sync on Fivetran. If status is FAILURE_WITH_TASK or RESCHEDULED, this field displays the type of the Error that caused the failure or rescheduling, respectively, e.g., reconnect, update_service_account, etc. -
fivetranConnectorLastSyncTotalTimeSeconds
Double fivetranConnectorLastSyncTotalTimeSeconds
Total sync time in seconds in the latest sync on Fivetran -
fivetranConnectorMonthlyActiveRowsChangePercentageFree
Double fivetranConnectorMonthlyActiveRowsChangePercentageFree
Increase in the percentage of free MAR compared to the previous month -
fivetranConnectorMonthlyActiveRowsChangePercentagePaid
Double fivetranConnectorMonthlyActiveRowsChangePercentagePaid
Increase in the percentage of paid MAR compared to the previous month -
fivetranConnectorMonthlyActiveRowsChangePercentageTotal
Double fivetranConnectorMonthlyActiveRowsChangePercentageTotal
Increase in the percentage of total MAR compared to the previous month -
fivetranConnectorMonthlyActiveRowsFree
Long fivetranConnectorMonthlyActiveRowsFree
Free Monthly Active Rows used by the connector in the past month -
fivetranConnectorMonthlyActiveRowsFreePercentageOfAccount
Double fivetranConnectorMonthlyActiveRowsFreePercentageOfAccount
Percentage of the account's total free MAR used by this connector -
fivetranConnectorMonthlyActiveRowsPaid
Long fivetranConnectorMonthlyActiveRowsPaid
Paid Monthly Active Rows used by the connector in the past month -
fivetranConnectorMonthlyActiveRowsPaidPercentageOfAccount
Double fivetranConnectorMonthlyActiveRowsPaidPercentageOfAccount
Percentage of the account's total paid MAR used by this connector -
fivetranConnectorMonthlyActiveRowsTotal
Long fivetranConnectorMonthlyActiveRowsTotal
Total Monthly Active Rows used by the connector in the past month -
fivetranConnectorMonthlyActiveRowsTotalPercentageOfAccount
Double fivetranConnectorMonthlyActiveRowsTotalPercentageOfAccount
Percentage of the account's total MAR used by this connector -
fivetranConnectorName
String fivetranConnectorName
Connector name added by the user on Fivetran -
fivetranConnectorSyncFrequency
String fivetranConnectorSyncFrequency
Sync frequency for the connector in number of hours. Eg: Every 6 hours -
fivetranConnectorSyncPaused
Boolean fivetranConnectorSyncPaused
Boolean to indicate whether the sync for this connector is paused or not -
fivetranConnectorSyncSetupOn
Long fivetranConnectorSyncSetupOn
Timestamp (epoch) on which the connector was setup on Fivetran, in milliseconds -
fivetranConnectorSyncSetupUserEmail
String fivetranConnectorSyncSetupUserEmail
Email ID of the user who setpu the connector on Fivetran -
fivetranConnectorSyncSetupUserFullName
String fivetranConnectorSyncSetupUserFullName
Full name of the user who setup the connector on Fivetran -
fivetranConnectorTopTablesByMAR
String fivetranConnectorTopTablesByMAR
Total five tables sorted by MAR synced by this connector -
fivetranConnectorTotalTablesSynced
Long fivetranConnectorTotalTablesSynced
Total number of tables synced by this connector -
fivetranConnectorType
String fivetranConnectorType
Type of connector on Fivetran. Eg: snowflake, google_analytics, notion etc. -
fivetranConnectorURL
String fivetranConnectorURL
URL to open the connector details on Fivetran -
fivetranConnectorUsageCost
Double fivetranConnectorUsageCost
Total usage cost by this destination -
fivetranLastSyncRecordsUpdated
Long fivetranLastSyncRecordsUpdated
Number of records updated in the latest sync on Fivetran -
fivetranLastSyncStatus
FivetranConnectorStatus fivetranLastSyncStatus
Status of the latest sync on Fivetran. -
fivetranWorkflowName
String fivetranWorkflowName
Name of the atlan fivetran workflow that updated this asset -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
processes
SortedSet<ILineageProcess> processes
Processes related to this Fivetran connector -
typeName
String typeName
Fixed typeName for FivetranConnectors.
-
-
Class com.atlan.model.assets.Folder
class Folder extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
childrenFolders
SortedSet<IFolder> childrenFolders
Folders that exist within this namespace. -
childrenQueries
SortedSet<IAtlanQuery> childrenQueries
Queries that exist within this namespace. -
collectionQualifiedName
String collectionQualifiedName
Unique name of the collection in which this folder exists. -
parent
INamespace parent
Namespace in which this folder exists. -
parentQualifiedName
String parentQualifiedName
Unique name of the parent folder or collection in which this folder exists. -
typeName
String typeName
Fixed typeName for Folders.
-
-
Class com.atlan.model.assets.Function
class Function extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
functionArguments
SortedSet<String> functionArguments
Arguments that are passed in to the function. -
functionDefinition
String functionDefinition
Code or set of statements that determine the output of the function. -
functionIsDMF
Boolean functionIsDMF
Whether the function is a data metric function. -
functionIsExternal
Boolean functionIsExternal
Whether the function is stored or executed externally (true) or internally (false). -
functionIsMemoizable
Boolean functionIsMemoizable
Whether the function must re-compute if there are no underlying changes in the values (false) or not (true). -
functionIsSecure
Boolean functionIsSecure
Whether sensitive information of the function is omitted for unauthorized users (true) or not (false). -
functionLanguage
String functionLanguage
Programming language in which the function is written. -
functionReturnType
String functionReturnType
Data type of the value returned by the function. -
functionSchema
ISchema functionSchema
Schema in which this function exists. -
functionType
String functionType
Type of function. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
typeName
String typeName
Fixed typeName for Functions. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view.
-
-
Class com.atlan.model.assets.GCSBucket
class GCSBucket extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
gcsAccessControl
String gcsAccessControl
Access control list for this asset. -
gcsBucketLifecycleRules
String gcsBucketLifecycleRules
Lifecycle rules for this bucket. -
gcsBucketRetentionEffectiveTime
Long gcsBucketRetentionEffectiveTime
Effective time for retention of objects in this bucket. -
gcsBucketRetentionLocked
Boolean gcsBucketRetentionLocked
Whether retention is locked for this bucket (true) or not (false). -
gcsBucketRetentionPeriod
Long gcsBucketRetentionPeriod
Retention period for objects in this bucket. -
gcsBucketRetentionPolicy
String gcsBucketRetentionPolicy
Retention policy for this bucket. -
gcsBucketVersioningEnabled
Boolean gcsBucketVersioningEnabled
Whether versioning is enabled on the bucket (true) or not (false). -
gcsEncryptionType
String gcsEncryptionType
Encryption algorithm used to encrypt this asset. -
gcsETag
String gcsETag
Entity tag for the asset. An entity tag is a hash of the object and represents changes to the contents of an object only, not its metadata. -
gcsMetaGenerationId
Long gcsMetaGenerationId
Version of metadata for this asset at this generation. Used for preconditions and detecting changes in metadata. A metageneration number is only meaningful in the context of a particular generation of a particular asset. -
gcsObjectCount
Long gcsObjectCount
Number of objects within the bucket. -
gcsObjects
SortedSet<IGCSObject> gcsObjects
GCS objects within this bucket. -
gcsRequesterPays
Boolean gcsRequesterPays
Whether the requester pays header was sent when this asset was created (true) or not (false). -
gcsStorageClass
String gcsStorageClass
Storage class of this asset. -
googleLabels
List<GoogleLabel> googleLabels
List of labels that have been applied to the asset in Google. -
googleLocation
String googleLocation
Location of this asset in Google. -
googleLocationType
String googleLocationType
Type of location of this asset in Google. -
googleProjectId
String googleProjectId
ID of the project in which the asset exists. -
googleProjectName
String googleProjectName
Name of the project in which the asset exists. -
googleProjectNumber
Long googleProjectNumber
Number of the project in which the asset exists. -
googleService
String googleService
Service in Google in which the asset exists. -
googleTags
List<GoogleTag> googleTags
List of tags that have been applied to the asset in Google. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for GCSBuckets.
-
-
Class com.atlan.model.assets.GCSObject
class GCSObject extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
gcsAccessControl
String gcsAccessControl
Access control list for this asset. -
gcsBucket
IGCSBucket gcsBucket
GCS bucket in which the object exists. -
gcsBucketName
String gcsBucketName
Simple name of the bucket in which this object exists. -
gcsBucketQualifiedName
String gcsBucketQualifiedName
Unique name of the bucket in which this object exists. -
gcsEncryptionType
String gcsEncryptionType
Encryption algorithm used to encrypt this asset. -
gcsETag
String gcsETag
Entity tag for the asset. An entity tag is a hash of the object and represents changes to the contents of an object only, not its metadata. -
gcsMetaGenerationId
Long gcsMetaGenerationId
Version of metadata for this asset at this generation. Used for preconditions and detecting changes in metadata. A metageneration number is only meaningful in the context of a particular generation of a particular asset. -
gcsObjectContentDisposition
String gcsObjectContentDisposition
Information about how this object's content should be presented. -
gcsObjectContentEncoding
String gcsObjectContentEncoding
Content encoding of this object. -
gcsObjectContentLanguage
String gcsObjectContentLanguage
Language of this object's contents. -
gcsObjectContentType
String gcsObjectContentType
Type of content in this object. -
gcsObjectCRC32CHash
String gcsObjectCRC32CHash
CRC32C hash of this object. -
gcsObjectDataLastModifiedTime
Long gcsObjectDataLastModifiedTime
Time (epoch) at which this object's data was last modified, in milliseconds. -
gcsObjectGenerationId
Long gcsObjectGenerationId
Generation ID of this object. -
gcsObjectHoldType
String gcsObjectHoldType
Type of hold on this object. -
gcsObjectKey
String gcsObjectKey
Key of this object, in GCS. -
gcsObjectMD5Hash
String gcsObjectMD5Hash
MD5 hash of this object. -
gcsObjectMediaLink
String gcsObjectMediaLink
Media link to this object. -
gcsObjectRetentionExpirationDate
Long gcsObjectRetentionExpirationDate
Retention expiration date of this object. -
gcsObjectSize
Long gcsObjectSize
Object size in bytes. -
gcsRequesterPays
Boolean gcsRequesterPays
Whether the requester pays header was sent when this asset was created (true) or not (false). -
gcsStorageClass
String gcsStorageClass
Storage class of this asset. -
googleLabels
List<GoogleLabel> googleLabels
List of labels that have been applied to the asset in Google. -
googleLocation
String googleLocation
Location of this asset in Google. -
googleLocationType
String googleLocationType
Type of location of this asset in Google. -
googleProjectId
String googleProjectId
ID of the project in which the asset exists. -
googleProjectName
String googleProjectName
Name of the project in which the asset exists. -
googleProjectNumber
Long googleProjectNumber
Number of the project in which the asset exists. -
googleService
String googleService
Service in Google in which the asset exists. -
googleTags
List<GoogleTag> googleTags
List of tags that have been applied to the asset in Google. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for GCSObjects.
-
-
Class com.atlan.model.assets.Glossary
class Glossary extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
additionalAttributes
Map<String,
String> additionalAttributes TBC -
categories
SortedSet<IGlossaryCategory> categories
TBC -
glossaryType
AtlasGlossaryType glossaryType
TBC -
language
String language
TBC -
longDescription
String longDescription
TBC -
shortDescription
String shortDescription
TBC -
terms
SortedSet<IGlossaryTerm> terms
TBC -
typeName
String typeName
Fixed typeName for Glossarys. -
usage
String usage
TBC
-
-
Class com.atlan.model.assets.GlossaryCategory
class GlossaryCategory extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
additionalAttributes
Map<String,
String> additionalAttributes TBC -
anchor
IGlossary anchor
TBC -
categoryType
AtlasGlossaryCategoryType categoryType
TBC -
childrenCategories
SortedSet<IGlossaryCategory> childrenCategories
TBC -
longDescription
String longDescription
TBC -
parentCategory
IGlossaryCategory parentCategory
TBC -
shortDescription
String shortDescription
TBC -
terms
SortedSet<IGlossaryTerm> terms
TBC -
typeName
String typeName
Fixed typeName for GlossaryCategorys.
-
-
Class com.atlan.model.assets.GlossaryTerm
class GlossaryTerm extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
abbreviation
String abbreviation
TBC -
additionalAttributes
Map<String,
String> additionalAttributes TBC -
anchor
IGlossary anchor
TBC -
antonyms
SortedSet<IGlossaryTerm> antonyms
TBC -
assignedEntities
SortedSet<IAsset> assignedEntities
TBC -
categories
SortedSet<IGlossaryCategory> categories
TBC -
classifies
SortedSet<IGlossaryTerm> classifies
TBC -
examples
SortedSet<String> examples
TBC -
isA
SortedSet<IGlossaryTerm> isA
TBC -
longDescription
String longDescription
TBC -
preferredTerms
SortedSet<IGlossaryTerm> preferredTerms
TBC -
preferredToTerms
SortedSet<IGlossaryTerm> preferredToTerms
TBC -
replacedBy
SortedSet<IGlossaryTerm> replacedBy
TBC -
replacementTerms
SortedSet<IGlossaryTerm> replacementTerms
TBC -
seeAlso
SortedSet<IGlossaryTerm> seeAlso
TBC -
shortDescription
String shortDescription
TBC -
synonyms
SortedSet<IGlossaryTerm> synonyms
TBC -
termType
AtlasGlossaryTermType termType
TBC -
translatedTerms
SortedSet<IGlossaryTerm> translatedTerms
TBC -
translationTerms
SortedSet<IGlossaryTerm> translationTerms
TBC -
typeName
String typeName
Fixed typeName for GlossaryTerms. -
usage
String usage
TBC -
validValues
SortedSet<IGlossaryTerm> validValues
TBC -
validValuesFor
SortedSet<IGlossaryTerm> validValuesFor
TBC
-
-
Class com.atlan.model.assets.IndistinctAsset
class IndistinctAsset extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
typeName
String typeName
Create a non-transient typeName to ensure it is included in serde.
-
-
Class com.atlan.model.assets.Insight
class Insight extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for Insights.
-
-
Class com.atlan.model.assets.KafkaConsumerGroup
class KafkaConsumerGroup extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
kafkaConsumerGroupMemberCount
Long kafkaConsumerGroupMemberCount
Number of members in this consumer group. -
kafkaConsumerGroupTopicConsumptionProperties
List<KafkaTopicConsumption> kafkaConsumerGroupTopicConsumptionProperties
List of consumption properties for Kafka topics, for this consumer group. -
kafkaTopicNames
SortedSet<String> kafkaTopicNames
Simple names of the topics consumed by this consumer group. -
kafkaTopicQualifiedNames
SortedSet<String> kafkaTopicQualifiedNames
Unique names of the topics consumed by this consumer group. -
kafkaTopics
SortedSet<IKafkaTopic> kafkaTopics
Topics consumed by this consumer group. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for KafkaConsumerGroups.
-
-
Class com.atlan.model.assets.KafkaTopic
class KafkaTopic extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
kafkaConsumerGroups
SortedSet<IKafkaConsumerGroup> kafkaConsumerGroups
Consumer groups subscribed to this topic. -
kafkaTopicCleanupPolicy
KafkaTopicCleanupPolicy kafkaTopicCleanupPolicy
Cleanup policy for this topic. -
kafkaTopicCompressionType
KafkaTopicCompressionType kafkaTopicCompressionType
Type of compression used for this topic. -
kafkaTopicIsInternal
Boolean kafkaTopicIsInternal
Whether this topic is an internal topic (true) or not (false). -
kafkaTopicLogCleanupPolicy
String kafkaTopicLogCleanupPolicy
Comma seperated Cleanup policy for this topic. -
kafkaTopicPartitionsCount
Long kafkaTopicPartitionsCount
Number of partitions for this topic. -
kafkaTopicRecordCount
Long kafkaTopicRecordCount
Number of (unexpired) messages in this topic. -
kafkaTopicReplicationFactor
Long kafkaTopicReplicationFactor
Replication factor for this topic. -
kafkaTopicRetentionTimeInMs
Long kafkaTopicRetentionTimeInMs
Amount of time messages will be retained in this topic, in milliseconds. -
kafkaTopicSegmentBytes
Long kafkaTopicSegmentBytes
Segment size for this topic. -
kafkaTopicSizeInBytes
Long kafkaTopicSizeInBytes
Size of this topic, in bytes. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for KafkaTopics.
-
-
Class com.atlan.model.assets.LineageProcess
class LineageProcess extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
additionalEtlContext
String additionalEtlContext
TBC -
adfActivity
IAdfActivity adfActivity
TBC -
airflowTasks
SortedSet<IAirflowTask> airflowTasks
TBC -
ast
String ast
TBC -
code
String code
TBC -
columnProcesses
SortedSet<IColumnProcess> columnProcesses
TBC -
fivetranConnector
IFivetranConnector fivetranConnector
TBC -
inputs
SortedSet<ICatalog> inputs
TBC -
matillionComponent
IMatillionComponent matillionComponent
TBC -
outputs
SortedSet<ICatalog> outputs
TBC -
powerBIDataflow
IPowerBIDataflow powerBIDataflow
TBC -
sparkJobs
SortedSet<ISparkJob> sparkJobs
TBC -
sql
String sql
TBC -
typeName
String typeName
Fixed typeName for LineageProcesss.
-
-
Class com.atlan.model.assets.LineageRef
class LineageRef extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.assets.Link
class Link extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
asset
IAsset asset
Asset to which the link is attached. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
icon
String icon
Icon for the link. -
iconType
IconType iconType
Type of icon for the link, for example: image or emoji. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isGlobal
Boolean isGlobal
Whether the resource is global (true) or not (false). -
link
String link
URL to the resource. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
reference
String reference
Reference to the resource. -
resourceMetadata
Map<String,
String> resourceMetadata Metadata of the resource. -
typeName
String typeName
Fixed typeName for Links.
-
-
Class com.atlan.model.assets.LookerDashboard
class LookerDashboard extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
fields
SortedSet<ILookerField> fields
Fields that are used in this dashboard. -
folder
ILookerFolder folder
Folder in which the dashboard exists. -
folderName
String folderName
Name of the parent folder in Looker that contains this dashboard. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
looks
SortedSet<ILookerLook> looks
Looks that are used within this dashboard. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
sourceLastAccessedAt
Long sourceLastAccessedAt
Timestamp (epoch) when the dashboard was last accessed by a user, in milliseconds. -
sourcelastUpdaterId
Integer sourcelastUpdaterId
Identifier of the user who last updated the dashboard, from Looker. -
sourceLastViewedAt
Long sourceLastViewedAt
Timestamp (epoch) when the dashboard was last viewed by a user. -
sourceMetadataId
Integer sourceMetadataId
Identifier of the dashboard's content metadata, from Looker. -
sourceUserId
Integer sourceUserId
Identifier of the user who created this dashboard, from Looker. -
sourceViewCount
Integer sourceViewCount
Number of times the dashboard has been viewed through the Looker web UI. -
tiles
SortedSet<ILookerTile> tiles
Tiles that exist within this dashboard. -
typeName
String typeName
Fixed typeName for LookerDashboards.
-
-
Class com.atlan.model.assets.LookerExplore
class LookerExplore extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
fields
SortedSet<ILookerField> fields
Fields that exist within this Explore. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
model
ILookerModel model
Model in which this explore exists. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
modelName
String modelName
Name of the parent model of this Explore. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
project
ILookerProject project
Project in which this explore exists. -
projectName
String projectName
Name of the parent project of this Explore. -
sourceConnectionName
String sourceConnectionName
Connection name for the Explore, from Looker. -
sqlTableName
String sqlTableName
Name of the SQL table used to declare the Explore. -
typeName
String typeName
Fixed typeName for LookerExplores. -
viewName
String viewName
Name of the view for the Explore.
-
-
Class com.atlan.model.assets.LookerField
class LookerField extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dashboard
ILookerDashboard dashboard
Dashboard in which this field is used. -
explore
ILookerExplore explore
Explore in which this field exists. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
look
ILookerLook look
Look in which this field is used. -
lookerDashboardQualifiedName
String lookerDashboardQualifiedName
Unique name of the dashboard in which this field is used. -
lookerExploreQualifiedName
String lookerExploreQualifiedName
Unique name of the Explore in which this field exists. -
lookerFieldDataType
String lookerFieldDataType
Deprecated. -
lookerFieldIsRefined
Boolean lookerFieldIsRefined
Whether the looker field asset is coming from a refinement -
lookerFieldRefinementFilePath
String lookerFieldRefinementFilePath
Absolute path of the file where the refinement of the field is declared. -
lookerFieldRefinementLineNumber
String lookerFieldRefinementLineNumber
Line number in the lookerFieldRefinementFilePath where this refinement of the field is declared. -
lookerLookQualifiedName
String lookerLookQualifiedName
Unique name of the look in which this field is used. -
lookerTileQualifiedName
String lookerTileQualifiedName
Unique name of the tile in which this field is used. -
lookerTimesUsed
Integer lookerTimesUsed
Deprecated. -
lookerViewQualifiedName
String lookerViewQualifiedName
Unique name of the view in which this field exists. -
model
ILookerModel model
Model in which this field exists. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
modelName
String modelName
Name of the model in which this field exists. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
project
ILookerProject project
Project in which this field exists. -
projectName
String projectName
Name of the project in which this field exists. -
sourceDefinition
String sourceDefinition
Deprecated. -
tile
ILookerTile tile
Tile in which this field is used. -
typeName
String typeName
Fixed typeName for LookerFields. -
view
ILookerView view
View in which this field exists.
-
-
Class com.atlan.model.assets.LookerFolder
class LookerFolder extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dashboards
SortedSet<ILookerDashboard> dashboards
Dashboards that exist within this folder. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
lookerParentFolder
ILookerFolder lookerParentFolder
Folder in which this subfolder exists. -
lookerSubFolders
SortedSet<ILookerFolder> lookerSubFolders
Subfolders that exist within this folder. -
looks
SortedSet<ILookerLook> looks
Looks that exist within this folder. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
sourceChildCount
Integer sourceChildCount
Number of subfolders in this folder. -
sourceContentMetadataId
Integer sourceContentMetadataId
Identifier for the folder's content metadata in Looker. -
sourceCreatorId
Integer sourceCreatorId
Identifier of the user who created the folder, from Looker. -
sourceParentID
Integer sourceParentID
Identifier of the parent folder of this folder, from Looker. -
typeName
String typeName
Fixed typeName for LookerFolders.
-
-
Class com.atlan.model.assets.LookerLook
class LookerLook extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dashboard
ILookerDashboard dashboard
Dashboard in which this Look is used. -
fields
SortedSet<ILookerField> fields
Fields that are used in this look. -
folder
ILookerFolder folder
Folder in which this Look exists. -
folderName
String folderName
Name of the folder in which the Look is organized. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
model
ILookerModel model
Model in which this Look exists. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
modelName
String modelName
Name of the model in which this Look exists. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
query
ILookerQuery query
Deprecated. -
sourceContentMetadataId
Integer sourceContentMetadataId
Identifier of the Look's content metadata, from Looker. -
sourceLastAccessedAt
Long sourceLastAccessedAt
Time (epoch) when the Look was last accessed by a user, in milliseconds. -
sourcelastUpdaterId
Integer sourcelastUpdaterId
Identifier of the user that last updated the Look, from Looker. -
sourceLastViewedAt
Long sourceLastViewedAt
Time (epoch) when the Look was last viewed by a user, in milliseconds. -
sourceQueryId
Integer sourceQueryId
Identifier of the query for the Look, from Looker. -
sourceUserId
Integer sourceUserId
Identifier of the user who created the Look, from Looker. -
sourceViewCount
Integer sourceViewCount
Number of times the look has been viewed in the Looker web UI. -
tile
ILookerTile tile
Tiles that exist within this Look. -
typeName
String typeName
Fixed typeName for LookerLooks.
-
-
Class com.atlan.model.assets.LookerModel
class LookerModel extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
explores
SortedSet<ILookerExplore> explores
Explores that exist within this model. -
fields
SortedSet<ILookerField> fields
Fields that exist within this model. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
look
ILookerLook look
Look that exists for this model. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
project
ILookerProject project
Project in which this model exists. -
projectName
String projectName
Name of the project in which the model exists. -
queries
SortedSet<ILookerQuery> queries
Deprecated. -
typeName
String typeName
Fixed typeName for LookerModels.
-
-
Class com.atlan.model.assets.LookerProject
class LookerProject extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
explores
SortedSet<ILookerExplore> explores
Explores that exist within this project. -
fields
SortedSet<ILookerField> fields
Fields that exist within this project. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
lookerChildProjects
SortedSet<ILookerProject> lookerChildProjects
TBC -
lookerParentProjects
SortedSet<ILookerProject> lookerParentProjects
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
models
SortedSet<ILookerModel> models
Models that exist within this project. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for LookerProjects. -
views
SortedSet<ILookerView> views
Views that exist within this project.
-
-
Class com.atlan.model.assets.LookerQuery
class LookerQuery extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
fields
SortedSet<String> fields
Deprecated. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
looks
SortedSet<ILookerLook> looks
Deprecated. -
model
ILookerModel model
Deprecated. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
sourceDefinition
String sourceDefinition
Deprecated. -
sourceDefinitionDatabase
String sourceDefinitionDatabase
Deprecated. -
sourceDefinitionSchema
String sourceDefinitionSchema
Deprecated. -
tiles
SortedSet<ILookerTile> tiles
Deprecated. -
typeName
String typeName
Fixed typeName for LookerQuerys.
-
-
Class com.atlan.model.assets.LookerTile
class LookerTile extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dashboard
ILookerDashboard dashboard
Dashboard in which this tile exists. -
fields
SortedSet<ILookerField> fields
Fields that are used in the tile. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
look
ILookerLook look
Look in which this tile exists. -
lookId
Integer lookId
Identifier of the Look used to create this tile, from Looker. -
lookmlLinkId
String lookmlLinkId
Identifier for the LoomML link. -
mergeResultId
String mergeResultId
Identifier for the merge result. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
noteText
String noteText
Text of notes added to the tile. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
query
ILookerQuery query
Deprecated. -
queryID
Integer queryID
Identifier for the query used to build this tile, from Looker. -
resultMakerID
Integer resultMakerID
Identifier of the ResultMarkerLookup entry, from Looker. -
subtitleText
String subtitleText
Text for the subtitle for text tiles. -
typeName
String typeName
Fixed typeName for LookerTiles.
-
-
Class com.atlan.model.assets.LookerView
class LookerView extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
fields
SortedSet<ILookerField> fields
Fields that exist within this view. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
lookerViewFileName
String lookerViewFileName
File name of this view. -
lookerViewFilePath
String lookerViewFilePath
File path of this view within the project. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
project
ILookerProject project
Project in which this view exists. -
projectName
String projectName
Name of the project in which this view exists. -
typeName
String typeName
Fixed typeName for LookerViews.
-
-
Class com.atlan.model.assets.MaterializedView
class MaterializedView extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
alias
String alias
TBC -
applicationContainer
IApplicationContainer applicationContainer
TBC -
assetApplicationQualifiedName
String assetApplicationQualifiedName
TBC -
calculationViewName
String calculationViewName
TBC -
calculationViewQualifiedName
String calculationViewQualifiedName
TBC -
columnCount
Long columnCount
TBC -
columns
SortedSet<IColumn> columns
TBC -
databaseName
String databaseName
TBC -
databaseQualifiedName
String databaseQualifiedName
TBC -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
definition
String definition
TBC -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
TBC -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
TBC -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isProfiled
Boolean isProfiled
TBC -
isQueryPreview
Boolean isQueryPreview
TBC -
isTemporary
Boolean isTemporary
TBC -
lastProfiledAt
Long lastProfiledAt
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
TBC -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
TBC -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
TBC -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
queryCount
Long queryCount
TBC -
queryCountUpdatedAt
Long queryCountUpdatedAt
TBC -
queryPreviewConfig
Map<String,
String> queryPreviewConfig TBC -
queryUserCount
Long queryUserCount
TBC -
queryUserMap
Map<String,
Long> queryUserMap TBC -
refreshMethod
String refreshMethod
TBC -
refreshMode
String refreshMode
TBC -
rowCount
Long rowCount
TBC -
schema
ISchema schema
TBC -
schemaName
String schemaName
TBC -
schemaQualifiedName
String schemaQualifiedName
TBC -
sizeBytes
Long sizeBytes
TBC -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
staleness
String staleness
TBC -
staleSinceDate
Long staleSinceDate
TBC -
tableName
String tableName
TBC -
tableQualifiedName
String tableQualifiedName
TBC -
typeName
String typeName
Fixed typeName for MaterializedViews. -
viewName
String viewName
TBC -
viewQualifiedName
String viewQualifiedName
TBC
-
-
Class com.atlan.model.assets.MatillionComponent
class MatillionComponent extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
matillionComponentId
String matillionComponentId
Unique identifier of the component in Matillion. -
matillionComponentImplementationId
String matillionComponentImplementationId
Unique identifier for the type of the component in Matillion. -
matillionComponentLastFiveRunStatus
String matillionComponentLastFiveRunStatus
Last five run statuses of the component within a job. -
matillionComponentLastRunStatus
String matillionComponentLastRunStatus
Latest run status of the component within a job. -
matillionComponentLinkedJob
Map<String,
String> matillionComponentLinkedJob Job details of the job to which the component internally links. -
matillionComponentSqls
SortedSet<String> matillionComponentSqls
SQL queries used by the component. -
matillionJob
IMatillionJob matillionJob
Job in which this component exists. -
matillionJobName
String matillionJobName
Simple name of the job to which the component belongs. -
matillionJobQualifiedName
String matillionJobQualifiedName
Unique name of the job to which the component belongs. -
matillionProcess
ILineageProcess matillionProcess
Lineage process that represents this Matillion component. -
matillionVersion
String matillionVersion
Current point in time state of a project. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for MatillionComponents.
-
-
Class com.atlan.model.assets.MatillionGroup
class MatillionGroup extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
matillionProjectCount
Long matillionProjectCount
Number of projects within the group. -
matillionProjects
SortedSet<IMatillionProject> matillionProjects
Matillion projects that exist within this group. -
matillionVersion
String matillionVersion
Current point in time state of a project. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for MatillionGroups.
-
-
Class com.atlan.model.assets.MatillionJob
class MatillionJob extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
matillionComponents
SortedSet<IMatillionComponent> matillionComponents
Components that exist within this job. -
matillionJobComponentCount
Long matillionJobComponentCount
Number of components within the job. -
matillionJobPath
String matillionJobPath
Path of the job within the project. Jobs can be managed at multiple folder levels within a project. -
matillionJobSchedule
String matillionJobSchedule
How the job is scheduled, for example: weekly or monthly. -
matillionJobType
MatillionJobType matillionJobType
Type of the job, for example: orchestration or transformation. -
matillionProject
IMatillionProject matillionProject
Project in which the job exists. -
matillionProjectName
String matillionProjectName
Simple name of the project to which the job belongs. -
matillionProjectQualifiedName
String matillionProjectQualifiedName
Unique name of the project to which the job belongs. -
matillionVersion
String matillionVersion
Current point in time state of a project. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for MatillionJobs.
-
-
Class com.atlan.model.assets.MatillionProject
class MatillionProject extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
matillionEnvironments
SortedSet<String> matillionEnvironments
List of environments in the project. -
matillionGroup
IMatillionGroup matillionGroup
Matillion group in which the project exists. -
matillionGroupName
String matillionGroupName
Simple name of the Matillion group to which the project belongs. -
matillionGroupQualifiedName
String matillionGroupQualifiedName
Unique name of the Matillion group to which the project belongs. -
matillionJobs
SortedSet<IMatillionJob> matillionJobs
Jobs that exist within this project. -
matillionProjectJobCount
Long matillionProjectJobCount
Number of jobs in the project. -
matillionVersion
String matillionVersion
Current point in time state of a project. -
matillionVersions
SortedSet<String> matillionVersions
List of versions in the project. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for MatillionProjects.
-
-
Class com.atlan.model.assets.MCIncident
class MCIncident extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
mcAssetQualifiedNames
SortedSet<String> mcAssetQualifiedNames
List of unique names of assets that are part of this Monte Carlo asset. -
mcIncidentAssets
SortedSet<IAsset> mcIncidentAssets
TBC -
mcIncidentId
String mcIncidentId
Identifier of this incident, from Monte Carlo. -
mcIncidentPriority
String mcIncidentPriority
Priority of this incident inherited from monitor. -
mcIncidentSeverity
String mcIncidentSeverity
Severity of this incident. -
mcIncidentState
String mcIncidentState
State of this incident. -
mcIncidentSubTypes
SortedSet<String> mcIncidentSubTypes
Subtypes of this incident. -
mcIncidentType
String mcIncidentType
Type of this incident. -
mcIncidentWarehouse
String mcIncidentWarehouse
Name of this incident's warehouse. -
mcLabels
SortedSet<String> mcLabels
List of labels for this Monte Carlo asset. -
mcMonitor
IMCMonitor mcMonitor
Monitor in which this incident exists. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for MCIncidents.
-
-
Class com.atlan.model.assets.MCMonitor
class MCMonitor extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
mcAssetQualifiedNames
SortedSet<String> mcAssetQualifiedNames
List of unique names of assets that are part of this Monte Carlo asset. -
mcLabels
SortedSet<String> mcLabels
List of labels for this Monte Carlo asset. -
mcMonitorAlertCondition
String mcMonitorAlertCondition
Condition on which the monitor produces an alert. -
mcMonitorAlertCount
Long mcMonitorAlertCount
Number of alerts associated with this monitor. -
mcMonitorAssets
SortedSet<IAsset> mcMonitorAssets
Assets impacted by this monitor. -
mcMonitorBreachRate
Double mcMonitorBreachRate
Rate at which this monitor is breached. -
mcMonitorId
String mcMonitorId
Unique identifier for this monitor, from Monte Carlo. -
mcMonitorIncidentCount
Long mcMonitorIncidentCount
Number of incidents associated with this monitor. -
mcMonitorNamespace
String mcMonitorNamespace
Namespace of this monitor. -
mcMonitorPriority
String mcMonitorPriority
Priority of this monitor. -
mcMonitorRuleComparisons
List<MCRuleComparison> mcMonitorRuleComparisons
Comparison logic used for the rule. -
mcMonitorRuleCustomSql
String mcMonitorRuleCustomSql
SQL code for custom SQL rules. -
mcMonitorRuleIsSnoozed
Boolean mcMonitorRuleIsSnoozed
Whether the rule is currently snoozed (true) or not (false). -
mcMonitorRuleNextExecutionTime
Long mcMonitorRuleNextExecutionTime
Time at which the next execution of the rule should occur. -
mcMonitorRulePreviousExecutionTime
Long mcMonitorRulePreviousExecutionTime
Time at which the previous execution of the rule occurred. -
mcMonitorRuleScheduleConfig
MCRuleSchedule mcMonitorRuleScheduleConfig
Schedule details for the rule. -
mcMonitorRuleScheduleConfigHumanized
String mcMonitorRuleScheduleConfigHumanized
Readable description of the schedule for the rule. -
mcMonitorRuleType
String mcMonitorRuleType
Type of rule for this monitor. -
mcMonitorScheduleType
String mcMonitorScheduleType
Type of schedule for this monitor, for example: fixed or dynamic. -
mcMonitorStatus
String mcMonitorStatus
Status of this monitor. -
mcMonitorType
String mcMonitorType
Type of this monitor, for example: field health (stats) or dimension tracking (categories). -
mcMonitorWarehouse
String mcMonitorWarehouse
Name of the warehouse for this monitor. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for MCMonitors.
-
-
Class com.atlan.model.assets.Meaning
class Meaning extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.assets.MetabaseCollection
class MetabaseCollection extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
metabaseCollectionName
String metabaseCollectionName
Simple name of the Metabase collection in which this asset exists. -
metabaseCollectionQualifiedName
String metabaseCollectionQualifiedName
Unique name of the Metabase collection in which this asset exists. -
metabaseColor
String metabaseColor
TBC -
metabaseDashboards
SortedSet<IMetabaseDashboard> metabaseDashboards
Dashboards that exist within this collection. -
metabaseIsPersonalCollection
Boolean metabaseIsPersonalCollection
TBC -
metabaseNamespace
String metabaseNamespace
TBC -
metabaseQuestions
SortedSet<IMetabaseQuestion> metabaseQuestions
Questions that exist within this collection. -
metabaseSlug
String metabaseSlug
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for MetabaseCollections.
-
-
Class com.atlan.model.assets.MetabaseDashboard
class MetabaseDashboard extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
metabaseCollection
IMetabaseCollection metabaseCollection
Collection in which this dashboard exists. -
metabaseCollectionName
String metabaseCollectionName
Simple name of the Metabase collection in which this asset exists. -
metabaseCollectionQualifiedName
String metabaseCollectionQualifiedName
Unique name of the Metabase collection in which this asset exists. -
metabaseQuestionCount
Long metabaseQuestionCount
TBC -
metabaseQuestions
SortedSet<IMetabaseQuestion> metabaseQuestions
Questions used on this dashboard. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for MetabaseDashboards.
-
-
Class com.atlan.model.assets.MetabaseQuestion
class MetabaseQuestion extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
metabaseCollection
IMetabaseCollection metabaseCollection
Collection in which this question exists. -
metabaseCollectionName
String metabaseCollectionName
Simple name of the Metabase collection in which this asset exists. -
metabaseCollectionQualifiedName
String metabaseCollectionQualifiedName
Unique name of the Metabase collection in which this asset exists. -
metabaseDashboardCount
Long metabaseDashboardCount
TBC -
metabaseDashboards
SortedSet<IMetabaseDashboard> metabaseDashboards
Dashboards in which this question is used. -
metabaseQuery
String metabaseQuery
TBC -
metabaseQueryType
String metabaseQueryType
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for MetabaseQuestions.
-
-
Class com.atlan.model.assets.MicroStrategyAttribute
class MicroStrategyAttribute extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
microStrategyAttributeForms
String microStrategyAttributeForms
JSON string specifying the attribute's name, description, displayFormat, etc. -
microStrategyCertifiedAt
Long microStrategyCertifiedAt
Time (epoch) this asset was certified in MicroStrategy, in milliseconds. -
microStrategyCertifiedBy
String microStrategyCertifiedBy
User who certified this asset, in MicroStrategy. -
microStrategyCubeNames
SortedSet<String> microStrategyCubeNames
Simple names of the cubes related to this asset. -
microStrategyCubeQualifiedNames
SortedSet<String> microStrategyCubeQualifiedNames
Unique names of the cubes related to this asset. -
microStrategyCubes
SortedSet<IMicroStrategyCube> microStrategyCubes
Cubes in which this attribute is used. -
microStrategyIsCertified
Boolean microStrategyIsCertified
Whether the asset is certified in MicroStrategy (true) or not (false). -
microStrategyLocation
List<Map<String,
String>> microStrategyLocation Location of this asset in MicroStrategy. -
microStrategyMetrics
SortedSet<IMicroStrategyMetric> microStrategyMetrics
Metrics that use this attribute. -
microStrategyProject
IMicroStrategyProject microStrategyProject
Project in which this attribute exists. -
microStrategyProjectName
String microStrategyProjectName
Simple name of the project in which this asset exists. -
microStrategyProjectQualifiedName
String microStrategyProjectQualifiedName
Unique name of the project in which this asset exists. -
microStrategyReportNames
SortedSet<String> microStrategyReportNames
Simple names of the reports related to this asset. -
microStrategyReportQualifiedNames
SortedSet<String> microStrategyReportQualifiedNames
Unique names of the reports related to this asset. -
microStrategyReports
SortedSet<IMicroStrategyReport> microStrategyReports
Reports in which this attribute is used. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for MicroStrategyAttributes.
-
-
Class com.atlan.model.assets.MicroStrategyCube
class MicroStrategyCube extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
microStrategyAttributes
SortedSet<IMicroStrategyAttribute> microStrategyAttributes
Attributes used by this cube. -
microStrategyCertifiedAt
Long microStrategyCertifiedAt
Time (epoch) this asset was certified in MicroStrategy, in milliseconds. -
microStrategyCertifiedBy
String microStrategyCertifiedBy
User who certified this asset, in MicroStrategy. -
microStrategyCubeNames
SortedSet<String> microStrategyCubeNames
Simple names of the cubes related to this asset. -
microStrategyCubeQualifiedNames
SortedSet<String> microStrategyCubeQualifiedNames
Unique names of the cubes related to this asset. -
microStrategyCubeQuery
String microStrategyCubeQuery
Query used to create the cube. -
microStrategyCubeType
String microStrategyCubeType
Type of cube, for example: OLAP or MTDI. -
microStrategyIsCertified
Boolean microStrategyIsCertified
Whether the asset is certified in MicroStrategy (true) or not (false). -
microStrategyLocation
List<Map<String,
String>> microStrategyLocation Location of this asset in MicroStrategy. -
microStrategyMetrics
SortedSet<IMicroStrategyMetric> microStrategyMetrics
Metrics that use this cube. -
microStrategyProject
IMicroStrategyProject microStrategyProject
Project in which this cube exists. -
microStrategyProjectName
String microStrategyProjectName
Simple name of the project in which this asset exists. -
microStrategyProjectQualifiedName
String microStrategyProjectQualifiedName
Unique name of the project in which this asset exists. -
microStrategyReportNames
SortedSet<String> microStrategyReportNames
Simple names of the reports related to this asset. -
microStrategyReportQualifiedNames
SortedSet<String> microStrategyReportQualifiedNames
Unique names of the reports related to this asset. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for MicroStrategyCubes.
-
-
Class com.atlan.model.assets.MicroStrategyDocument
class MicroStrategyDocument extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
microStrategyCertifiedAt
Long microStrategyCertifiedAt
Time (epoch) this asset was certified in MicroStrategy, in milliseconds. -
microStrategyCertifiedBy
String microStrategyCertifiedBy
User who certified this asset, in MicroStrategy. -
microStrategyCubeNames
SortedSet<String> microStrategyCubeNames
Simple names of the cubes related to this asset. -
microStrategyCubeQualifiedNames
SortedSet<String> microStrategyCubeQualifiedNames
Unique names of the cubes related to this asset. -
microStrategyIsCertified
Boolean microStrategyIsCertified
Whether the asset is certified in MicroStrategy (true) or not (false). -
microStrategyLocation
List<Map<String,
String>> microStrategyLocation Location of this asset in MicroStrategy. -
microStrategyProject
IMicroStrategyProject microStrategyProject
Project in which this document exists. -
microStrategyProjectName
String microStrategyProjectName
Simple name of the project in which this asset exists. -
microStrategyProjectQualifiedName
String microStrategyProjectQualifiedName
Unique name of the project in which this asset exists. -
microStrategyReportNames
SortedSet<String> microStrategyReportNames
Simple names of the reports related to this asset. -
microStrategyReportQualifiedNames
SortedSet<String> microStrategyReportQualifiedNames
Unique names of the reports related to this asset. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for MicroStrategyDocuments.
-
-
Class com.atlan.model.assets.MicroStrategyDossier
class MicroStrategyDossier extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
microStrategyCertifiedAt
Long microStrategyCertifiedAt
Time (epoch) this asset was certified in MicroStrategy, in milliseconds. -
microStrategyCertifiedBy
String microStrategyCertifiedBy
User who certified this asset, in MicroStrategy. -
microStrategyCubeNames
SortedSet<String> microStrategyCubeNames
Simple names of the cubes related to this asset. -
microStrategyCubeQualifiedNames
SortedSet<String> microStrategyCubeQualifiedNames
Unique names of the cubes related to this asset. -
microStrategyDossierChapterNames
SortedSet<String> microStrategyDossierChapterNames
List of chapter names in this dossier. -
microStrategyIsCertified
Boolean microStrategyIsCertified
Whether the asset is certified in MicroStrategy (true) or not (false). -
microStrategyLocation
List<Map<String,
String>> microStrategyLocation Location of this asset in MicroStrategy. -
microStrategyProject
IMicroStrategyProject microStrategyProject
Project in which this dossier exists -
microStrategyProjectName
String microStrategyProjectName
Simple name of the project in which this asset exists. -
microStrategyProjectQualifiedName
String microStrategyProjectQualifiedName
Unique name of the project in which this asset exists. -
microStrategyReportNames
SortedSet<String> microStrategyReportNames
Simple names of the reports related to this asset. -
microStrategyReportQualifiedNames
SortedSet<String> microStrategyReportQualifiedNames
Unique names of the reports related to this asset. -
microStrategyVisualizations
SortedSet<IMicroStrategyVisualization> microStrategyVisualizations
Visualizations that exist within this dossier. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for MicroStrategyDossiers.
-
-
Class com.atlan.model.assets.MicroStrategyFact
class MicroStrategyFact extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
microStrategyCertifiedAt
Long microStrategyCertifiedAt
Time (epoch) this asset was certified in MicroStrategy, in milliseconds. -
microStrategyCertifiedBy
String microStrategyCertifiedBy
User who certified this asset, in MicroStrategy. -
microStrategyCubeNames
SortedSet<String> microStrategyCubeNames
Simple names of the cubes related to this asset. -
microStrategyCubeQualifiedNames
SortedSet<String> microStrategyCubeQualifiedNames
Unique names of the cubes related to this asset. -
microStrategyFactExpressions
SortedSet<String> microStrategyFactExpressions
List of expressions for this fact. -
microStrategyIsCertified
Boolean microStrategyIsCertified
Whether the asset is certified in MicroStrategy (true) or not (false). -
microStrategyLocation
List<Map<String,
String>> microStrategyLocation Location of this asset in MicroStrategy. -
microStrategyMetrics
SortedSet<IMicroStrategyMetric> microStrategyMetrics
Metrics that use this fact. -
microStrategyProject
IMicroStrategyProject microStrategyProject
Project in which this fact exists. -
microStrategyProjectName
String microStrategyProjectName
Simple name of the project in which this asset exists. -
microStrategyProjectQualifiedName
String microStrategyProjectQualifiedName
Unique name of the project in which this asset exists. -
microStrategyReportNames
SortedSet<String> microStrategyReportNames
Simple names of the reports related to this asset. -
microStrategyReportQualifiedNames
SortedSet<String> microStrategyReportQualifiedNames
Unique names of the reports related to this asset. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for MicroStrategyFacts.
-
-
Class com.atlan.model.assets.MicroStrategyMetric
class MicroStrategyMetric extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
microStrategyAttributeNames
SortedSet<String> microStrategyAttributeNames
List of simple names of attributes related to this metric. -
microStrategyAttributeQualifiedNames
SortedSet<String> microStrategyAttributeQualifiedNames
List of unique names of attributes related to this metric. -
microStrategyAttributes
SortedSet<IMicroStrategyAttribute> microStrategyAttributes
Attributes this metric uses. -
microStrategyCertifiedAt
Long microStrategyCertifiedAt
Time (epoch) this asset was certified in MicroStrategy, in milliseconds. -
microStrategyCertifiedBy
String microStrategyCertifiedBy
User who certified this asset, in MicroStrategy. -
microStrategyCubeNames
SortedSet<String> microStrategyCubeNames
Simple names of the cubes related to this asset. -
microStrategyCubeQualifiedNames
SortedSet<String> microStrategyCubeQualifiedNames
Unique names of the cubes related to this asset. -
microStrategyCubes
SortedSet<IMicroStrategyCube> microStrategyCubes
Cubes this metric uses. -
microStrategyFactNames
SortedSet<String> microStrategyFactNames
List of simple names of facts related to this metric. -
microStrategyFactQualifiedNames
SortedSet<String> microStrategyFactQualifiedNames
List of unique names of facts related to this metric. -
microStrategyFacts
SortedSet<IMicroStrategyFact> microStrategyFacts
Facts this metric uses. -
microStrategyIsCertified
Boolean microStrategyIsCertified
Whether the asset is certified in MicroStrategy (true) or not (false). -
microStrategyLocation
List<Map<String,
String>> microStrategyLocation Location of this asset in MicroStrategy. -
microStrategyMetricChildren
SortedSet<IMicroStrategyMetric> microStrategyMetricChildren
Child metrics of this metric. -
microStrategyMetricExpression
String microStrategyMetricExpression
Text specifiying this metric's expression. -
microStrategyMetricParentNames
SortedSet<String> microStrategyMetricParentNames
List of simple names of parent metrics of this metric. -
microStrategyMetricParentQualifiedNames
SortedSet<String> microStrategyMetricParentQualifiedNames
List of unique names of parent metrics of this metric. -
microStrategyMetricParents
SortedSet<IMicroStrategyMetric> microStrategyMetricParents
Parent metrics to this metric. -
microStrategyProject
IMicroStrategyProject microStrategyProject
Project in which this metric exists. -
microStrategyProjectName
String microStrategyProjectName
Simple name of the project in which this asset exists. -
microStrategyProjectQualifiedName
String microStrategyProjectQualifiedName
Unique name of the project in which this asset exists. -
microStrategyReportNames
SortedSet<String> microStrategyReportNames
Simple names of the reports related to this asset. -
microStrategyReportQualifiedNames
SortedSet<String> microStrategyReportQualifiedNames
Unique names of the reports related to this asset. -
microStrategyReports
SortedSet<IMicroStrategyReport> microStrategyReports
Reports in which this metric is used. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for MicroStrategyMetrics.
-
-
Class com.atlan.model.assets.MicroStrategyProject
class MicroStrategyProject extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
microStrategyAttributes
SortedSet<IMicroStrategyAttribute> microStrategyAttributes
Attributes that exist within this project. -
microStrategyCertifiedAt
Long microStrategyCertifiedAt
Time (epoch) this asset was certified in MicroStrategy, in milliseconds. -
microStrategyCertifiedBy
String microStrategyCertifiedBy
User who certified this asset, in MicroStrategy. -
microStrategyCubeNames
SortedSet<String> microStrategyCubeNames
Simple names of the cubes related to this asset. -
microStrategyCubeQualifiedNames
SortedSet<String> microStrategyCubeQualifiedNames
Unique names of the cubes related to this asset. -
microStrategyCubes
SortedSet<IMicroStrategyCube> microStrategyCubes
Cubes that exist within this project. -
microStrategyDocuments
SortedSet<IMicroStrategyDocument> microStrategyDocuments
Documents that exist within this project. -
microStrategyDossiers
SortedSet<IMicroStrategyDossier> microStrategyDossiers
Dossiers that exist within this project. -
microStrategyFacts
SortedSet<IMicroStrategyFact> microStrategyFacts
Facts that exist within this project. -
microStrategyIsCertified
Boolean microStrategyIsCertified
Whether the asset is certified in MicroStrategy (true) or not (false). -
microStrategyLocation
List<Map<String,
String>> microStrategyLocation Location of this asset in MicroStrategy. -
microStrategyMetrics
SortedSet<IMicroStrategyMetric> microStrategyMetrics
Metrics that exist within this project. -
microStrategyProjectName
String microStrategyProjectName
Simple name of the project in which this asset exists. -
microStrategyProjectQualifiedName
String microStrategyProjectQualifiedName
Unique name of the project in which this asset exists. -
microStrategyReportNames
SortedSet<String> microStrategyReportNames
Simple names of the reports related to this asset. -
microStrategyReportQualifiedNames
SortedSet<String> microStrategyReportQualifiedNames
Unique names of the reports related to this asset. -
microStrategyReports
SortedSet<IMicroStrategyReport> microStrategyReports
Reports that exist within this project. -
microStrategyVisualizations
SortedSet<IMicroStrategyVisualization> microStrategyVisualizations
Visualizations that exist within this project. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for MicroStrategyProjects.
-
-
Class com.atlan.model.assets.MicroStrategyReport
class MicroStrategyReport extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
microStrategyAttributes
SortedSet<IMicroStrategyAttribute> microStrategyAttributes
Attributes used by this report. -
microStrategyCertifiedAt
Long microStrategyCertifiedAt
Time (epoch) this asset was certified in MicroStrategy, in milliseconds. -
microStrategyCertifiedBy
String microStrategyCertifiedBy
User who certified this asset, in MicroStrategy. -
microStrategyCubeNames
SortedSet<String> microStrategyCubeNames
Simple names of the cubes related to this asset. -
microStrategyCubeQualifiedNames
SortedSet<String> microStrategyCubeQualifiedNames
Unique names of the cubes related to this asset. -
microStrategyIsCertified
Boolean microStrategyIsCertified
Whether the asset is certified in MicroStrategy (true) or not (false). -
microStrategyLocation
List<Map<String,
String>> microStrategyLocation Location of this asset in MicroStrategy. -
microStrategyMetrics
SortedSet<IMicroStrategyMetric> microStrategyMetrics
Metrics used by this report. -
microStrategyProject
IMicroStrategyProject microStrategyProject
Project in which this report exists. -
microStrategyProjectName
String microStrategyProjectName
Simple name of the project in which this asset exists. -
microStrategyProjectQualifiedName
String microStrategyProjectQualifiedName
Unique name of the project in which this asset exists. -
microStrategyReportNames
SortedSet<String> microStrategyReportNames
Simple names of the reports related to this asset. -
microStrategyReportQualifiedNames
SortedSet<String> microStrategyReportQualifiedNames
Unique names of the reports related to this asset. -
microStrategyReportType
String microStrategyReportType
Type of report, for example: Grid or Chart. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for MicroStrategyReports.
-
-
Class com.atlan.model.assets.MicroStrategyVisualization
class MicroStrategyVisualization extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
microStrategyCertifiedAt
Long microStrategyCertifiedAt
Time (epoch) this asset was certified in MicroStrategy, in milliseconds. -
microStrategyCertifiedBy
String microStrategyCertifiedBy
User who certified this asset, in MicroStrategy. -
microStrategyCubeNames
SortedSet<String> microStrategyCubeNames
Simple names of the cubes related to this asset. -
microStrategyCubeQualifiedNames
SortedSet<String> microStrategyCubeQualifiedNames
Unique names of the cubes related to this asset. -
microStrategyDossier
IMicroStrategyDossier microStrategyDossier
Dossier in which this visualization exists. -
microStrategyDossierName
String microStrategyDossierName
Simple name of the dossier in which this visualization exists. -
microStrategyDossierQualifiedName
String microStrategyDossierQualifiedName
Unique name of the dossier in which this visualization exists. -
microStrategyIsCertified
Boolean microStrategyIsCertified
Whether the asset is certified in MicroStrategy (true) or not (false). -
microStrategyLocation
List<Map<String,
String>> microStrategyLocation Location of this asset in MicroStrategy. -
microStrategyProject
IMicroStrategyProject microStrategyProject
Project in which this visualization exists. -
microStrategyProjectName
String microStrategyProjectName
Simple name of the project in which this asset exists. -
microStrategyProjectQualifiedName
String microStrategyProjectQualifiedName
Unique name of the project in which this asset exists. -
microStrategyReportNames
SortedSet<String> microStrategyReportNames
Simple names of the reports related to this asset. -
microStrategyReportQualifiedNames
SortedSet<String> microStrategyReportQualifiedNames
Unique names of the reports related to this asset. -
microStrategyVisualizationType
String microStrategyVisualizationType
Type of visualization. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for MicroStrategyVisualizations.
-
-
Class com.atlan.model.assets.ModeChart
class ModeChart extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modeChartType
String modeChartType
Type of chart. -
modeId
String modeId
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
modeQuery
IModeQuery modeQuery
Query in which this chart exists. -
modeQueryName
String modeQueryName
TBC -
modeQueryQualifiedName
String modeQueryQualifiedName
TBC -
modeReportName
String modeReportName
TBC -
modeReportQualifiedName
String modeReportQualifiedName
TBC -
modeToken
String modeToken
TBC -
modeWorkspaceName
String modeWorkspaceName
TBC -
modeWorkspaceQualifiedName
String modeWorkspaceQualifiedName
TBC -
modeWorkspaceUsername
String modeWorkspaceUsername
TBC -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for ModeCharts.
-
-
Class com.atlan.model.assets.ModeCollection
class ModeCollection extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modeCollectionState
String modeCollectionState
State of this collection. -
modeCollectionType
String modeCollectionType
Type of this collection. -
modeId
String modeId
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
modeQueryName
String modeQueryName
TBC -
modeQueryQualifiedName
String modeQueryQualifiedName
TBC -
modeReportName
String modeReportName
TBC -
modeReportQualifiedName
String modeReportQualifiedName
TBC -
modeReports
SortedSet<IModeReport> modeReports
TBC -
modeToken
String modeToken
TBC -
modeWorkspace
IModeWorkspace modeWorkspace
Workspace in which this collection exists. -
modeWorkspaceName
String modeWorkspaceName
TBC -
modeWorkspaceQualifiedName
String modeWorkspaceQualifiedName
TBC -
modeWorkspaceUsername
String modeWorkspaceUsername
TBC -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for ModeCollections.
-
-
Class com.atlan.model.assets.ModelAttribute
class ModelAttribute extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelAttributeDataType
String modelAttributeDataType
Type of the attribute. -
modelAttributeEntities
SortedSet<IModelEntity> modelAttributeEntities
Entity (or versions of an entity) in which this attribute exists. -
modelAttributeHasRelationships
Boolean modelAttributeHasRelationships
When true, this attribute has relationships with other attributes. -
modelAttributeIsDerived
Boolean modelAttributeIsDerived
When true, the values in this attribute are derived data. -
modelAttributeIsForeign
Boolean modelAttributeIsForeign
When true, this attribute is a foreign key to another entity. -
modelAttributeIsNullable
Boolean modelAttributeIsNullable
When true, the values in this attribute can be null. -
modelAttributeIsPrimary
Boolean modelAttributeIsPrimary
When true, this attribute forms the primary key for the entity. -
modelAttributeMappedFromAttributes
SortedSet<IModelAttribute> modelAttributeMappedFromAttributes
Attributes from which this attribute is mapped. -
modelAttributeMappedToAttributes
SortedSet<IModelAttribute> modelAttributeMappedToAttributes
Attributes to which this attribute is mapped. -
modelAttributePrecision
Long modelAttributePrecision
Precision of the attribute. -
modelAttributeRelatedFromAttributes
SortedSet<IModelAttributeAssociation> modelAttributeRelatedFromAttributes
Association from which this attribute is related. -
modelAttributeRelatedToAttributes
SortedSet<IModelAttributeAssociation> modelAttributeRelatedToAttributes
Association to which this attribute is related. -
modelAttributeScale
Long modelAttributeScale
Scale of the attribute. -
modelBusinessDate
Long modelBusinessDate
Business date for the asset. -
modelDomain
String modelDomain
Model domain in which this asset exists. -
modelEntityName
String modelEntityName
Simple name of the entity in which this asset exists, or empty if it is itself a data model entity. -
modelEntityQualifiedName
String modelEntityQualifiedName
Unique name of the entity in which this asset exists, or empty if it is itself a data model entity. -
modelExpiredAtBusinessDate
Long modelExpiredAtBusinessDate
Business expiration date for the asset. -
modelExpiredAtSystemDate
Long modelExpiredAtSystemDate
System expiration date for the asset. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
modelName
String modelName
Simple name of the model in which this asset exists, or empty if it is itself a data model. -
modelNamespace
String modelNamespace
Model namespace in which this asset exists. -
modelQualifiedName
String modelQualifiedName
Unique name of the model in which this asset exists, or empty if it is itself a data model. -
modelSystemDate
Long modelSystemDate
System date for the asset. -
modelType
String modelType
Type of the model asset (conceptual, logical, physical). -
modelVersionAgnosticQualifiedName
String modelVersionAgnosticQualifiedName
Unique name of the parent in which this asset exists, irrespective of the version (always implies the latest version). -
modelVersionName
String modelVersionName
Simple name of the version in which this asset exists, or empty if it is itself a data model version. -
modelVersionQualifiedName
String modelVersionQualifiedName
Unique name of the version in which this asset exists, or empty if it is itself a data model version. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for ModelAttributes.
-
-
Class com.atlan.model.assets.ModelAttributeAssociation
class ModelAttributeAssociation extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelAttributeAssociationCardinality
ModelCardinalityType modelAttributeAssociationCardinality
Cardinality of the data attribute association. -
modelAttributeAssociationFrom
IModelAttribute modelAttributeAssociationFrom
Attribute from which this association is related. -
modelAttributeAssociationFromQualifiedName
String modelAttributeAssociationFromQualifiedName
Unique name of the association from which this attribute is related. -
modelAttributeAssociationLabel
String modelAttributeAssociationLabel
Label of the data attribute association. -
modelAttributeAssociationTo
IModelAttribute modelAttributeAssociationTo
Attribute to which this association is related. -
modelAttributeAssociationToQualifiedName
String modelAttributeAssociationToQualifiedName
Unique name of the association to which this attribute is related. -
modelBusinessDate
Long modelBusinessDate
Business date for the asset. -
modelDomain
String modelDomain
Model domain in which this asset exists. -
modelEntityAssociationQualifiedName
String modelEntityAssociationQualifiedName
Unique name of the entity association to which this attribute is related. -
modelEntityName
String modelEntityName
Simple name of the entity in which this asset exists, or empty if it is itself a data model entity. -
modelEntityQualifiedName
String modelEntityQualifiedName
Unique name of the entity in which this asset exists, or empty if it is itself a data model entity. -
modelExpiredAtBusinessDate
Long modelExpiredAtBusinessDate
Business expiration date for the asset. -
modelExpiredAtSystemDate
Long modelExpiredAtSystemDate
System expiration date for the asset. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
modelName
String modelName
Simple name of the model in which this asset exists, or empty if it is itself a data model. -
modelNamespace
String modelNamespace
Model namespace in which this asset exists. -
modelQualifiedName
String modelQualifiedName
Unique name of the model in which this asset exists, or empty if it is itself a data model. -
modelSystemDate
Long modelSystemDate
System date for the asset. -
modelType
String modelType
Type of the model asset (conceptual, logical, physical). -
modelVersionAgnosticQualifiedName
String modelVersionAgnosticQualifiedName
Unique name of the parent in which this asset exists, irrespective of the version (always implies the latest version). -
modelVersionName
String modelVersionName
Simple name of the version in which this asset exists, or empty if it is itself a data model version. -
modelVersionQualifiedName
String modelVersionQualifiedName
Unique name of the version in which this asset exists, or empty if it is itself a data model version. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for ModelAttributeAssociations.
-
-
Class com.atlan.model.assets.ModelDataModel
class ModelDataModel extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelBusinessDate
Long modelBusinessDate
Business date for the asset. -
modelDomain
String modelDomain
Model domain in which this asset exists. -
modelEntityName
String modelEntityName
Simple name of the entity in which this asset exists, or empty if it is itself a data model entity. -
modelEntityQualifiedName
String modelEntityQualifiedName
Unique name of the entity in which this asset exists, or empty if it is itself a data model entity. -
modelExpiredAtBusinessDate
Long modelExpiredAtBusinessDate
Business expiration date for the asset. -
modelExpiredAtSystemDate
Long modelExpiredAtSystemDate
System expiration date for the asset. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
modelName
String modelName
Simple name of the model in which this asset exists, or empty if it is itself a data model. -
modelNamespace
String modelNamespace
Model namespace in which this asset exists. -
modelQualifiedName
String modelQualifiedName
Unique name of the model in which this asset exists, or empty if it is itself a data model. -
modelSystemDate
Long modelSystemDate
System date for the asset. -
modelTool
String modelTool
Tool used to create this data model. -
modelType
String modelType
Type of the model asset (conceptual, logical, physical). -
modelVersionAgnosticQualifiedName
String modelVersionAgnosticQualifiedName
Unique name of the parent in which this asset exists, irrespective of the version (always implies the latest version). -
modelVersionCount
Long modelVersionCount
Number of versions of the data model. -
modelVersionName
String modelVersionName
Simple name of the version in which this asset exists, or empty if it is itself a data model version. -
modelVersionQualifiedName
String modelVersionQualifiedName
Unique name of the version in which this asset exists, or empty if it is itself a data model version. -
modelVersions
SortedSet<IModelVersion> modelVersions
Individual versions of the data model. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for ModelDataModels.
-
-
Class com.atlan.model.assets.ModelEntity
class ModelEntity extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelBusinessDate
Long modelBusinessDate
Business date for the asset. -
modelDomain
String modelDomain
Model domain in which this asset exists. -
modelEntityAttributeCount
Long modelEntityAttributeCount
Number of attributes in the entity. -
modelEntityAttributes
SortedSet<IModelAttribute> modelEntityAttributes
Individual attributes that make up the entity. -
modelEntityGeneralizationEntity
IModelEntity modelEntityGeneralizationEntity
General entity, representing shared characteristics of specialized entities. -
modelEntityGeneralizationName
String modelEntityGeneralizationName
Name of the general entity. -
modelEntityGeneralizationQualifiedName
String modelEntityGeneralizationQualifiedName
Unique identifier for the general entity. -
modelEntityImplementedByAssets
SortedSet<ICatalog> modelEntityImplementedByAssets
Assets that implement this entity. -
modelEntityMappedFromEntities
SortedSet<IModelEntity> modelEntityMappedFromEntities
Entities from which this entity is mapped. -
modelEntityMappedToEntities
SortedSet<IModelEntity> modelEntityMappedToEntities
Entities to which this entity is mapped. -
modelEntityName
String modelEntityName
Simple name of the entity in which this asset exists, or empty if it is itself a data model entity. -
modelEntityQualifiedName
String modelEntityQualifiedName
Unique name of the entity in which this asset exists, or empty if it is itself a data model entity. -
modelEntityRelatedFromEntities
SortedSet<IModelEntityAssociation> modelEntityRelatedFromEntities
Association from which this entity is related. -
modelEntityRelatedToEntities
SortedSet<IModelEntityAssociation> modelEntityRelatedToEntities
Association to which this entity is related. -
modelEntitySpecializationEntities
SortedSet<IModelEntity> modelEntitySpecializationEntities
Specialized entities derived from the general entity. -
modelEntitySubjectArea
String modelEntitySubjectArea
Subject area of the entity. -
modelExpiredAtBusinessDate
Long modelExpiredAtBusinessDate
Business expiration date for the asset. -
modelExpiredAtSystemDate
Long modelExpiredAtSystemDate
System expiration date for the asset. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
modelName
String modelName
Simple name of the model in which this asset exists, or empty if it is itself a data model. -
modelNamespace
String modelNamespace
Model namespace in which this asset exists. -
modelQualifiedName
String modelQualifiedName
Unique name of the model in which this asset exists, or empty if it is itself a data model. -
modelSystemDate
Long modelSystemDate
System date for the asset. -
modelType
String modelType
Type of the model asset (conceptual, logical, physical). -
modelVersionAgnosticQualifiedName
String modelVersionAgnosticQualifiedName
Unique name of the parent in which this asset exists, irrespective of the version (always implies the latest version). -
modelVersionName
String modelVersionName
Simple name of the version in which this asset exists, or empty if it is itself a data model version. -
modelVersionQualifiedName
String modelVersionQualifiedName
Unique name of the version in which this asset exists, or empty if it is itself a data model version. -
modelVersions
SortedSet<IModelVersion> modelVersions
Data model version(s) in which this entity exists. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for ModelEntitys.
-
-
Class com.atlan.model.assets.ModelEntityAssociation
class ModelEntityAssociation extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelBusinessDate
Long modelBusinessDate
Business date for the asset. -
modelDomain
String modelDomain
Model domain in which this asset exists. -
modelEntityAssociationCardinality
ModelCardinalityType modelEntityAssociationCardinality
Cardinality of the data entity association. -
modelEntityAssociationFrom
IModelEntity modelEntityAssociationFrom
Entity from which this association is related. -
modelEntityAssociationFromQualifiedName
String modelEntityAssociationFromQualifiedName
Unique name of the association from which this entity is related. -
modelEntityAssociationLabel
String modelEntityAssociationLabel
Label of the data entity association. -
modelEntityAssociationTo
IModelEntity modelEntityAssociationTo
Entity to which this association is related. -
modelEntityAssociationToQualifiedName
String modelEntityAssociationToQualifiedName
Unique name of the association to which this entity is related. -
modelEntityName
String modelEntityName
Simple name of the entity in which this asset exists, or empty if it is itself a data model entity. -
modelEntityQualifiedName
String modelEntityQualifiedName
Unique name of the entity in which this asset exists, or empty if it is itself a data model entity. -
modelExpiredAtBusinessDate
Long modelExpiredAtBusinessDate
Business expiration date for the asset. -
modelExpiredAtSystemDate
Long modelExpiredAtSystemDate
System expiration date for the asset. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
modelName
String modelName
Simple name of the model in which this asset exists, or empty if it is itself a data model. -
modelNamespace
String modelNamespace
Model namespace in which this asset exists. -
modelQualifiedName
String modelQualifiedName
Unique name of the model in which this asset exists, or empty if it is itself a data model. -
modelSystemDate
Long modelSystemDate
System date for the asset. -
modelType
String modelType
Type of the model asset (conceptual, logical, physical). -
modelVersionAgnosticQualifiedName
String modelVersionAgnosticQualifiedName
Unique name of the parent in which this asset exists, irrespective of the version (always implies the latest version). -
modelVersionName
String modelVersionName
Simple name of the version in which this asset exists, or empty if it is itself a data model version. -
modelVersionQualifiedName
String modelVersionQualifiedName
Unique name of the version in which this asset exists, or empty if it is itself a data model version. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for ModelEntityAssociations.
-
-
Class com.atlan.model.assets.ModelVersion
class ModelVersion extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelBusinessDate
Long modelBusinessDate
Business date for the asset. -
modelDataModel
IModelDataModel modelDataModel
Data model for which this version exists. -
modelDomain
String modelDomain
Model domain in which this asset exists. -
modelEntityName
String modelEntityName
Simple name of the entity in which this asset exists, or empty if it is itself a data model entity. -
modelEntityQualifiedName
String modelEntityQualifiedName
Unique name of the entity in which this asset exists, or empty if it is itself a data model entity. -
modelExpiredAtBusinessDate
Long modelExpiredAtBusinessDate
Business expiration date for the asset. -
modelExpiredAtSystemDate
Long modelExpiredAtSystemDate
System expiration date for the asset. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
modelName
String modelName
Simple name of the model in which this asset exists, or empty if it is itself a data model. -
modelNamespace
String modelNamespace
Model namespace in which this asset exists. -
modelQualifiedName
String modelQualifiedName
Unique name of the model in which this asset exists, or empty if it is itself a data model. -
modelSystemDate
Long modelSystemDate
System date for the asset. -
modelType
String modelType
Type of the model asset (conceptual, logical, physical). -
modelVersionAgnosticQualifiedName
String modelVersionAgnosticQualifiedName
Unique name of the parent in which this asset exists, irrespective of the version (always implies the latest version). -
modelVersionEntities
SortedSet<IModelEntity> modelVersionEntities
Individual entities that make up this version of the data model. -
modelVersionEntityCount
Long modelVersionEntityCount
Number of entities in the version. -
modelVersionName
String modelVersionName
Simple name of the version in which this asset exists, or empty if it is itself a data model version. -
modelVersionQualifiedName
String modelVersionQualifiedName
Unique name of the version in which this asset exists, or empty if it is itself a data model version. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for ModelVersions.
-
-
Class com.atlan.model.assets.ModeQuery
class ModeQuery extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modeCharts
SortedSet<IModeChart> modeCharts
Charts that exist within this query. -
modeId
String modeId
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
modeQueryName
String modeQueryName
TBC -
modeQueryQualifiedName
String modeQueryQualifiedName
TBC -
modeRawQuery
String modeRawQuery
TBC -
modeReport
IModeReport modeReport
Report in which this query exists. -
modeReportImportCount
Long modeReportImportCount
TBC -
modeReportName
String modeReportName
TBC -
modeReportQualifiedName
String modeReportQualifiedName
TBC -
modeToken
String modeToken
TBC -
modeWorkspaceName
String modeWorkspaceName
TBC -
modeWorkspaceQualifiedName
String modeWorkspaceQualifiedName
TBC -
modeWorkspaceUsername
String modeWorkspaceUsername
TBC -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for ModeQuerys.
-
-
Class com.atlan.model.assets.ModeReport
class ModeReport extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modeChartCount
Long modeChartCount
TBC -
modeCollections
SortedSet<IModeCollection> modeCollections
TBC -
modeCollectionToken
String modeCollectionToken
TBC -
modeId
String modeId
TBC -
modeIsPublic
Boolean modeIsPublic
TBC -
modeIsShared
Boolean modeIsShared
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
modeQueries
SortedSet<IModeQuery> modeQueries
Queries that exist within this report. -
modeQueryCount
Long modeQueryCount
TBC -
modeQueryName
String modeQueryName
TBC -
modeQueryPreview
String modeQueryPreview
TBC -
modeQueryQualifiedName
String modeQueryQualifiedName
TBC -
modeReportName
String modeReportName
TBC -
modeReportPublishedAt
Long modeReportPublishedAt
TBC -
modeReportQualifiedName
String modeReportQualifiedName
TBC -
modeToken
String modeToken
TBC -
modeWorkspaceName
String modeWorkspaceName
TBC -
modeWorkspaceQualifiedName
String modeWorkspaceQualifiedName
TBC -
modeWorkspaceUsername
String modeWorkspaceUsername
TBC -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for ModeReports.
-
-
Class com.atlan.model.assets.ModeWorkspace
class ModeWorkspace extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modeCollectionCount
Long modeCollectionCount
Number of collections in this workspace. -
modeCollections
SortedSet<IModeCollection> modeCollections
Collections that exist within this workspace. -
modeId
String modeId
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
modeQueryName
String modeQueryName
TBC -
modeQueryQualifiedName
String modeQueryQualifiedName
TBC -
modeReportName
String modeReportName
TBC -
modeReportQualifiedName
String modeReportQualifiedName
TBC -
modeToken
String modeToken
TBC -
modeWorkspaceName
String modeWorkspaceName
TBC -
modeWorkspaceQualifiedName
String modeWorkspaceQualifiedName
TBC -
modeWorkspaceUsername
String modeWorkspaceUsername
TBC -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for ModeWorkspaces.
-
-
Class com.atlan.model.assets.MongoDBCollection
class MongoDBCollection extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
alias
String alias
Alias for this table. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
columnCount
Long columnCount
Number of columns in this table. -
columns
SortedSet<IColumn> columns
Columns that exist within this table. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
dimensions
SortedSet<ITable> dimensions
TBC -
externalLocation
String externalLocation
External location of this table, for example: an S3 object location. -
externalLocationFormat
String externalLocationFormat
Format of the external location of this table, for example: JSON, CSV, PARQUET, etc. -
externalLocationRegion
String externalLocationRegion
Region of the external location of this table, for example: S3 region. -
facts
SortedSet<ITable> facts
TBC -
icebergCatalogName
String icebergCatalogName
iceberg table catalog name (can be any user defined name) -
icebergCatalogSource
String icebergCatalogSource
iceberg table catalog type (glue, polaris, snowflake) -
icebergCatalogTableName
String icebergCatalogTableName
catalog table name (actual table name on the catalog side). -
icebergCatalogTableNamespace
String icebergCatalogTableNamespace
catalog table namespace (actual database name on the catalog side). -
icebergTableBaseLocation
String icebergTableBaseLocation
iceberg table base location inside the external volume. -
icebergTableType
String icebergTableType
iceberg table type (managed vs unmanaged) -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isPartitioned
Boolean isPartitioned
Whether this table is partitioned (true) or not (false). -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
isQueryPreview
Boolean isQueryPreview
Whether preview queries are allowed for this table (true) or not (false). -
isSharded
Boolean isSharded
Whether this table is a sharded table (true) or not (false). -
isTemporary
Boolean isTemporary
Whether this table is temporary (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
mongoDBCollectionAverageObjectSize
Long mongoDBCollectionAverageObjectSize
Average size of an object in the collection. -
mongoDBCollectionExpireAfterSeconds
Long mongoDBCollectionExpireAfterSeconds
Seconds after which documents in a time series collection or clustered collection expire. -
mongoDBCollectionIsCapped
Boolean mongoDBCollectionIsCapped
Whether the collection is capped (true) or not (false). -
mongoDBCollectionMaximumDocumentCount
Long mongoDBCollectionMaximumDocumentCount
Maximum number of documents allowed in a capped collection. -
mongoDBCollectionMaxSize
Long mongoDBCollectionMaxSize
Maximum size allowed in a capped collection. -
mongoDBCollectionNumIndexes
Long mongoDBCollectionNumIndexes
Number of indexes on the collection. -
mongoDBCollectionNumOrphanDocs
Long mongoDBCollectionNumOrphanDocs
Number of orphaned documents in the collection. -
mongoDBCollectionSchemaDefinition
String mongoDBCollectionSchemaDefinition
Definition of the schema applicable for the collection. -
mongoDBCollectionSubtype
String mongoDBCollectionSubtype
Subtype of a MongoDB collection, for example: Capped, Time Series, etc. -
mongoDBCollectionTimeField
String mongoDBCollectionTimeField
Name of the field containing the date in each time series document. -
mongoDBCollectionTimeGranularity
String mongoDBCollectionTimeGranularity
Closest match to the time span between consecutive incoming measurements. -
mongoDBCollectionTotalIndexSize
Long mongoDBCollectionTotalIndexSize
Total size of all indexes. -
mongoDBDatabase
IMongoDBDatabase mongoDBDatabase
Database in which the collection exists. -
noSQLSchemaDefinition
String noSQLSchemaDefinition
Represents attributes for describing the key schema for the table and indexes. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
partitionCount
Long partitionCount
Number of partitions in this table. -
partitionList
String partitionList
List of partitions in this table. -
partitions
SortedSet<ITablePartition> partitions
Partitions that exist within this table. -
partitionStrategy
String partitionStrategy
Partition strategy for this table. -
queries
SortedSet<IAtlanQuery> queries
Queries that access this table. -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryPreviewConfig
Map<String,
String> queryPreviewConfig Configuration for preview queries. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
rowCount
Long rowCount
Number of rows in this table. -
schema
ISchema schema
Schema in which this table exists. -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
sizeBytes
Long sizeBytes
Size of this table, in bytes. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableExternalVolumeName
String tableExternalVolumeName
external volume name for the table. -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableRetentionTime
Long tableRetentionTime
Data retention time in days. -
tableType
TableType tableType
Type of the table. -
typeName
String typeName
Fixed typeName for MongoDBCollections. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view.
-
-
Class com.atlan.model.assets.MongoDBDatabase
class MongoDBDatabase extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
mongoDBCollections
SortedSet<IMongoDBCollection> mongoDBCollections
Collections that exist within this database. -
mongoDBDatabaseCollectionCount
Integer mongoDBDatabaseCollectionCount
Number of collections in the database. -
noSQLSchemaDefinition
String noSQLSchemaDefinition
Represents attributes for describing the key schema for the table and indexes. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
schemaCount
Integer schemaCount
Number of schemas in this database. -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemas
SortedSet<ISchema> schemas
Schemas that exist within this database. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
typeName
String typeName
Fixed typeName for MongoDBDatabases. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view.
-
-
Class com.atlan.model.assets.Persona
class Persona extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
channelLink
String channelLink
TBC -
defaultNavigation
String defaultNavigation
TBC -
denyAssetFilters
SortedSet<AssetFilterGroup> denyAssetFilters
TBC -
denyAssetTabs
SortedSet<AssetSidebarTab> denyAssetTabs
TBC -
denyAssetTypes
SortedSet<String> denyAssetTypes
TBC -
denyCustomMetadataGuids
SortedSet<String> denyCustomMetadataGuids
TBC -
denyNavigationPages
SortedSet<String> denyNavigationPages
TBC -
displayPreferences
SortedSet<String> displayPreferences
TBC -
isAccessControlEnabled
Boolean isAccessControlEnabled
TBC -
personaGroups
SortedSet<String> personaGroups
TBC -
personaUsers
SortedSet<String> personaUsers
TBC -
policies
SortedSet<IAuthPolicy> policies
TBC -
roleId
String roleId
TBC -
typeName
String typeName
Fixed typeName for Personas.
-
-
Class com.atlan.model.assets.PowerBIColumn
class PowerBIColumn extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
datasetQualifiedName
String datasetQualifiedName
Unique name of the dataset in which this column exists. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
powerBIColumnDataCategory
String powerBIColumnDataCategory
Data category that describes the data in this column. -
powerBIColumnDataType
String powerBIColumnDataType
Data type of this column. -
powerBIColumnSummarizeBy
String powerBIColumnSummarizeBy
Aggregate function to use for summarizing this column. -
powerBIEndorsement
PowerBIEndorsementType powerBIEndorsement
Endorsement status of this asset, in Power BI. -
powerBIFormatString
String powerBIFormatString
Format of this asset, as specified in the FORMAT_STRING of the MDX cell property. -
powerBIIsHidden
Boolean powerBIIsHidden
Whether this asset is hidden in Power BI (true) or not (false). -
powerBISortByColumn
String powerBISortByColumn
Name of a column in the same table to use to order this column. -
powerBITableQualifiedName
String powerBITableQualifiedName
Unique name of the Power BI table in which this asset exists. -
table
IPowerBITable table
Table in which this column exists. -
typeName
String typeName
Fixed typeName for PowerBIColumns. -
workspaceQualifiedName
String workspaceQualifiedName
Unique name of the workspace in which this column exists.
-
-
Class com.atlan.model.assets.PowerBIDashboard
class PowerBIDashboard extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
powerBIEndorsement
PowerBIEndorsementType powerBIEndorsement
Endorsement status of this asset, in Power BI. -
powerBIFormatString
String powerBIFormatString
Format of this asset, as specified in the FORMAT_STRING of the MDX cell property. -
powerBIIsHidden
Boolean powerBIIsHidden
Whether this asset is hidden in Power BI (true) or not (false). -
powerBITableQualifiedName
String powerBITableQualifiedName
Unique name of the Power BI table in which this asset exists. -
tileCount
Long tileCount
Number of tiles in this table. -
tiles
SortedSet<IPowerBITile> tiles
Tiles that exist within this dashboard. -
typeName
String typeName
Fixed typeName for PowerBIDashboards. -
webUrl
String webUrl
Deprecated. See 'sourceUrl' instead. -
workspace
IPowerBIWorkspace workspace
Workspace in which this dashboard exists. -
workspaceQualifiedName
String workspaceQualifiedName
Unique name of the workspace in which this dashboard exists.
-
-
Class com.atlan.model.assets.PowerBIDataflow
class PowerBIDataflow extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
datasets
SortedSet<IPowerBIDataset> datasets
Datasets used by this dataflow. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
powerBIDataflowChildren
SortedSet<IPowerBIDataflow> powerBIDataflowChildren
Child Dataflows to this PowerBI Dataflow. -
powerBIDataflowParents
SortedSet<IPowerBIDataflow> powerBIDataflowParents
Parent Dataflows to this PowerBI Dataflow. -
powerBIDataflowRefreshScheduleFrequency
String powerBIDataflowRefreshScheduleFrequency
Refresh Schedule frequency for a PowerBI Dataflow. -
powerBIDataflowRefreshScheduleTimes
SortedSet<String> powerBIDataflowRefreshScheduleTimes
Time for the refresh schedule set for a PowerBI Dataflow. -
powerBIDataflowRefreshScheduleTimeZone
String powerBIDataflowRefreshScheduleTimeZone
Time zone for the refresh schedule set for a PowerBI Dataflow. -
powerBIEndorsement
PowerBIEndorsementType powerBIEndorsement
Endorsement status of this asset, in Power BI. -
powerBIFormatString
String powerBIFormatString
Format of this asset, as specified in the FORMAT_STRING of the MDX cell property. -
powerBIIsHidden
Boolean powerBIIsHidden
Whether this asset is hidden in Power BI (true) or not (false). -
powerBIProcesses
SortedSet<ILineageProcess> powerBIProcesses
Lineage process that associates this PowerBI Dataflow. -
powerBITableQualifiedName
String powerBITableQualifiedName
Unique name of the Power BI table in which this asset exists. -
tables
SortedSet<IPowerBITable> tables
PowerBI Tables that are associated with this Dataflow. -
typeName
String typeName
Fixed typeName for PowerBIDataflows. -
webUrl
String webUrl
Deprecated. See 'sourceUrl' instead. -
workspace
IPowerBIWorkspace workspace
Workspace in which this dataflow exists. -
workspaceQualifiedName
String workspaceQualifiedName
Unique name of the workspace in which this dataflow exists.
-
-
Class com.atlan.model.assets.PowerBIDataset
class PowerBIDataset extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dataflows
SortedSet<IPowerBIDataflow> dataflows
Dataflows that use this dataset. -
datasources
SortedSet<IPowerBIDatasource> datasources
Datasources that use this dataset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
powerBIEndorsement
PowerBIEndorsementType powerBIEndorsement
Endorsement status of this asset, in Power BI. -
powerBIFormatString
String powerBIFormatString
Format of this asset, as specified in the FORMAT_STRING of the MDX cell property. -
powerBIIsHidden
Boolean powerBIIsHidden
Whether this asset is hidden in Power BI (true) or not (false). -
powerBITableQualifiedName
String powerBITableQualifiedName
Unique name of the Power BI table in which this asset exists. -
reports
SortedSet<IPowerBIReport> reports
Reports that were built using this dataset. -
tables
SortedSet<IPowerBITable> tables
Tables that exist within this dataset. -
tiles
SortedSet<IPowerBITile> tiles
Tiles that exist within this dataset. -
typeName
String typeName
Fixed typeName for PowerBIDatasets. -
webUrl
String webUrl
Deprecated. See 'sourceUrl' instead. -
workspace
IPowerBIWorkspace workspace
Workspace in which this dataset exists. -
workspaceQualifiedName
String workspaceQualifiedName
Unique name of the workspace in which this dataset exists.
-
-
Class com.atlan.model.assets.PowerBIDatasource
class PowerBIDatasource extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
connectionDetails
Map<String,
String> connectionDetails Connection details of the datasource. -
datasets
SortedSet<IPowerBIDataset> datasets
Datasets created by this datasource. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
powerBIEndorsement
PowerBIEndorsementType powerBIEndorsement
Endorsement status of this asset, in Power BI. -
powerBIFormatString
String powerBIFormatString
Format of this asset, as specified in the FORMAT_STRING of the MDX cell property. -
powerBIIsHidden
Boolean powerBIIsHidden
Whether this asset is hidden in Power BI (true) or not (false). -
powerBITableQualifiedName
String powerBITableQualifiedName
Unique name of the Power BI table in which this asset exists. -
typeName
String typeName
Fixed typeName for PowerBIDatasources.
-
-
Class com.atlan.model.assets.PowerBIMeasure
class PowerBIMeasure extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
datasetQualifiedName
String datasetQualifiedName
Unique name of the dataset in which this measure exists. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
powerBIEndorsement
PowerBIEndorsementType powerBIEndorsement
Endorsement status of this asset, in Power BI. -
powerBIFormatString
String powerBIFormatString
Format of this asset, as specified in the FORMAT_STRING of the MDX cell property. -
powerBIIsExternalMeasure
Boolean powerBIIsExternalMeasure
Whether this measure is external (true) or internal (false). -
powerBIIsHidden
Boolean powerBIIsHidden
Whether this asset is hidden in Power BI (true) or not (false). -
powerBIMeasureExpression
String powerBIMeasureExpression
DAX expression for this measure. -
powerBITableQualifiedName
String powerBITableQualifiedName
Unique name of the Power BI table in which this asset exists. -
table
IPowerBITable table
Table in which this measure exists. -
typeName
String typeName
Fixed typeName for PowerBIMeasures. -
workspaceQualifiedName
String workspaceQualifiedName
Unique name of the workspace in which this measure exists.
-
-
Class com.atlan.model.assets.PowerBIPage
class PowerBIPage extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
powerBIEndorsement
PowerBIEndorsementType powerBIEndorsement
Endorsement status of this asset, in Power BI. -
powerBIFormatString
String powerBIFormatString
Format of this asset, as specified in the FORMAT_STRING of the MDX cell property. -
powerBIIsHidden
Boolean powerBIIsHidden
Whether this asset is hidden in Power BI (true) or not (false). -
powerBITableQualifiedName
String powerBITableQualifiedName
Unique name of the Power BI table in which this asset exists. -
report
IPowerBIReport report
Report in which this page exists. -
reportQualifiedName
String reportQualifiedName
Unique name of the report in which this page exists. -
typeName
String typeName
Fixed typeName for PowerBIPages. -
workspaceQualifiedName
String workspaceQualifiedName
Unique name of the workspace in which this page exists.
-
-
Class com.atlan.model.assets.PowerBIReport
class PowerBIReport extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dataset
IPowerBIDataset dataset
Dataset from which this report was built. -
datasetQualifiedName
String datasetQualifiedName
Unique name of the dataset used to build this report. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
pageCount
Long pageCount
Number of pages in this report. -
pages
SortedSet<IPowerBIPage> pages
Pages that exist within this report. -
powerBIEndorsement
PowerBIEndorsementType powerBIEndorsement
Endorsement status of this asset, in Power BI. -
powerBIFormatString
String powerBIFormatString
Format of this asset, as specified in the FORMAT_STRING of the MDX cell property. -
powerBIIsHidden
Boolean powerBIIsHidden
Whether this asset is hidden in Power BI (true) or not (false). -
powerBITableQualifiedName
String powerBITableQualifiedName
Unique name of the Power BI table in which this asset exists. -
tiles
SortedSet<IPowerBITile> tiles
Tiles that exist within this report. -
typeName
String typeName
Fixed typeName for PowerBIReports. -
webUrl
String webUrl
Deprecated. See 'sourceUrl' instead. -
workspace
IPowerBIWorkspace workspace
Workspace in which this report exists. -
workspaceQualifiedName
String workspaceQualifiedName
Unique name of the workspace in which this report exists.
-
-
Class com.atlan.model.assets.PowerBITable
class PowerBITable extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
columns
SortedSet<IPowerBIColumn> columns
Columns that exist within this table. -
dataflowQualifiedNames
SortedSet<String> dataflowQualifiedNames
List of qualified names of associated Power BI Dataflows. -
dataflows
SortedSet<IPowerBIDataflow> dataflows
PowerBI Dataflow that is associated with this PowerBI Table. -
dataset
IPowerBIDataset dataset
Dataset in which this table exists. -
datasetQualifiedName
String datasetQualifiedName
Unique name of the dataset in which this table exists. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
measures
SortedSet<IPowerBIMeasure> measures
Measures that exist within this table. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
powerBIEndorsement
PowerBIEndorsementType powerBIEndorsement
Endorsement status of this asset, in Power BI. -
powerBIFormatString
String powerBIFormatString
Format of this asset, as specified in the FORMAT_STRING of the MDX cell property. -
powerBIIsHidden
Boolean powerBIIsHidden
Whether this asset is hidden in Power BI (true) or not (false). -
powerBITableColumnCount
Long powerBITableColumnCount
Number of columns in this table. -
powerBITableMeasureCount
Long powerBITableMeasureCount
Number of measures in this table. -
powerBITableQualifiedName
String powerBITableQualifiedName
Unique name of the Power BI table in which this asset exists. -
powerBITableSourceExpressions
SortedSet<String> powerBITableSourceExpressions
Power Query M expressions for the table. -
typeName
String typeName
Fixed typeName for PowerBITables. -
workspaceQualifiedName
String workspaceQualifiedName
Unique name of the workspace in which this table exists.
-
-
Class com.atlan.model.assets.PowerBITile
class PowerBITile extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dashboard
IPowerBIDashboard dashboard
Dashboard in which this tile exists. -
dashboardQualifiedName
String dashboardQualifiedName
Unique name of the dashboard in which this tile is pinned. -
dataset
IPowerBIDataset dataset
Dataset in which this tile exists. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
powerBIEndorsement
PowerBIEndorsementType powerBIEndorsement
Endorsement status of this asset, in Power BI. -
powerBIFormatString
String powerBIFormatString
Format of this asset, as specified in the FORMAT_STRING of the MDX cell property. -
powerBIIsHidden
Boolean powerBIIsHidden
Whether this asset is hidden in Power BI (true) or not (false). -
powerBITableQualifiedName
String powerBITableQualifiedName
Unique name of the Power BI table in which this asset exists. -
report
IPowerBIReport report
Report in which this tile exists. -
typeName
String typeName
Fixed typeName for PowerBITiles. -
workspaceQualifiedName
String workspaceQualifiedName
Unique name of the workspace in which this tile exists.
-
-
Class com.atlan.model.assets.PowerBIWorkspace
class PowerBIWorkspace extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dashboardCount
Long dashboardCount
Number of dashboards in this workspace. -
dashboards
SortedSet<IPowerBIDashboard> dashboards
Dashboards that exist within this workspace. -
dataflowCount
Long dataflowCount
Number of dataflows in this workspace. -
dataflows
SortedSet<IPowerBIDataflow> dataflows
Dataflows that exist within this workspace. -
datasetCount
Long datasetCount
Number of datasets in this workspace. -
datasets
SortedSet<IPowerBIDataset> datasets
Datasets that exist within this workspace. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
powerBIEndorsement
PowerBIEndorsementType powerBIEndorsement
Endorsement status of this asset, in Power BI. -
powerBIFormatString
String powerBIFormatString
Format of this asset, as specified in the FORMAT_STRING of the MDX cell property. -
powerBIIsHidden
Boolean powerBIIsHidden
Whether this asset is hidden in Power BI (true) or not (false). -
powerBITableQualifiedName
String powerBITableQualifiedName
Unique name of the Power BI table in which this asset exists. -
reportCount
Long reportCount
Number of reports in this workspace. -
reports
SortedSet<IPowerBIReport> reports
Reports that exist within this workspace. -
typeName
String typeName
Fixed typeName for PowerBIWorkspaces. -
webUrl
String webUrl
Deprecated.
-
-
Class com.atlan.model.assets.PresetChart
class PresetChart extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
presetChartDescriptionMarkdown
String presetChartDescriptionMarkdown
TBC -
presetChartFormData
Map<String,
String> presetChartFormData TBC -
presetDashboard
IPresetDashboard presetDashboard
Dashboard in which this chart exists. -
presetDashboardId
Long presetDashboardId
Identifier of the dashboard in which this asset exists, in Preset. -
presetDashboardQualifiedName
String presetDashboardQualifiedName
Unique name of the dashboard in which this asset exists. -
presetWorkspaceId
Long presetWorkspaceId
Identifier of the workspace in which this asset exists, in Preset. -
presetWorkspaceQualifiedName
String presetWorkspaceQualifiedName
Unique name of the workspace in which this asset exists. -
typeName
String typeName
Fixed typeName for PresetCharts.
-
-
Class com.atlan.model.assets.PresetDashboard
class PresetDashboard extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
presetCharts
SortedSet<IPresetChart> presetCharts
Charts that exist within this dashboard. -
presetDashboardChangedByName
String presetDashboardChangedByName
TBC -
presetDashboardChangedByURL
String presetDashboardChangedByURL
TBC -
presetDashboardChartCount
Long presetDashboardChartCount
TBC -
presetDashboardId
Long presetDashboardId
Identifier of the dashboard in which this asset exists, in Preset. -
presetDashboardIsManagedExternally
Boolean presetDashboardIsManagedExternally
TBC -
presetDashboardIsPublished
Boolean presetDashboardIsPublished
TBC -
presetDashboardQualifiedName
String presetDashboardQualifiedName
Unique name of the dashboard in which this asset exists. -
presetDashboardThumbnailURL
String presetDashboardThumbnailURL
TBC -
presetDatasets
SortedSet<IPresetDataset> presetDatasets
Datasets that exist within this dashboard. -
presetWorkspace
IPresetWorkspace presetWorkspace
Workspace in which this dashboard exists. -
presetWorkspaceId
Long presetWorkspaceId
Identifier of the workspace in which this asset exists, in Preset. -
presetWorkspaceQualifiedName
String presetWorkspaceQualifiedName
Unique name of the workspace in which this asset exists. -
typeName
String typeName
Fixed typeName for PresetDashboards.
-
-
Class com.atlan.model.assets.PresetDataset
class PresetDataset extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
presetDashboard
IPresetDashboard presetDashboard
Dashboard in which this dataset exists. -
presetDashboardId
Long presetDashboardId
Identifier of the dashboard in which this asset exists, in Preset. -
presetDashboardQualifiedName
String presetDashboardQualifiedName
Unique name of the dashboard in which this asset exists. -
presetDatasetDatasourceName
String presetDatasetDatasourceName
TBC -
presetDatasetId
Long presetDatasetId
TBC -
presetDatasetType
String presetDatasetType
TBC -
presetWorkspaceId
Long presetWorkspaceId
Identifier of the workspace in which this asset exists, in Preset. -
presetWorkspaceQualifiedName
String presetWorkspaceQualifiedName
Unique name of the workspace in which this asset exists. -
typeName
String typeName
Fixed typeName for PresetDatasets.
-
-
Class com.atlan.model.assets.PresetWorkspace
class PresetWorkspace extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
presetDashboardId
Long presetDashboardId
Identifier of the dashboard in which this asset exists, in Preset. -
presetDashboardQualifiedName
String presetDashboardQualifiedName
Unique name of the dashboard in which this asset exists. -
presetDashboards
SortedSet<IPresetDashboard> presetDashboards
Dashboards that exist within this workspace. -
presetWorkspaceClusterId
Long presetWorkspaceClusterId
TBC -
presetWorkspaceDashboardCount
Long presetWorkspaceDashboardCount
TBC -
presetWorkspaceDatasetCount
Long presetWorkspaceDatasetCount
TBC -
presetWorkspaceDeploymentId
Long presetWorkspaceDeploymentId
TBC -
presetWorkspaceHostname
String presetWorkspaceHostname
TBC -
presetWorkspaceId
Long presetWorkspaceId
Identifier of the workspace in which this asset exists, in Preset. -
presetWorkspaceIsInMaintenanceMode
Boolean presetWorkspaceIsInMaintenanceMode
TBC -
presetWorkspacePublicDashboardsAllowed
Boolean presetWorkspacePublicDashboardsAllowed
TBC -
presetWorkspaceQualifiedName
String presetWorkspaceQualifiedName
Unique name of the workspace in which this asset exists. -
presetWorkspaceRegion
String presetWorkspaceRegion
TBC -
presetWorkspaceStatus
String presetWorkspaceStatus
TBC -
typeName
String typeName
Fixed typeName for PresetWorkspaces.
-
-
Class com.atlan.model.assets.Procedure
class Procedure extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
definition
String definition
SQL definition of the procedure. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
schema
ISchema schema
Schema in which this stored procedure exists. -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
typeName
String typeName
Fixed typeName for Procedures. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view.
-
-
Class com.atlan.model.assets.Purpose
class Purpose extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
channelLink
String channelLink
TBC -
defaultNavigation
String defaultNavigation
TBC -
denyAssetFilters
SortedSet<AssetFilterGroup> denyAssetFilters
TBC -
denyAssetTabs
SortedSet<AssetSidebarTab> denyAssetTabs
TBC -
denyAssetTypes
SortedSet<String> denyAssetTypes
TBC -
denyCustomMetadataGuids
SortedSet<String> denyCustomMetadataGuids
TBC -
denyNavigationPages
SortedSet<String> denyNavigationPages
TBC -
displayPreferences
SortedSet<String> displayPreferences
TBC -
isAccessControlEnabled
Boolean isAccessControlEnabled
TBC -
policies
SortedSet<IAuthPolicy> policies
TBC -
purposeAtlanTags
SortedSet<String> purposeAtlanTags
TBC -
typeName
String typeName
Fixed typeName for Purposes.
-
-
Class com.atlan.model.assets.QlikApp
class QlikApp extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
qlikAppId
String qlikAppId
Identifier of the app in which this asset belongs, from Qlik. -
qlikAppQualifiedName
String qlikAppQualifiedName
Unique name of the app where this asset belongs. -
qlikAppStaticByteSize
Long qlikAppStaticByteSize
Static space used by this app, in bytes. -
qlikHasSectionAccess
Boolean qlikHasSectionAccess
Whether section access or data masking is enabled on the source (true) or not (false). -
qlikId
String qlikId
Identifier of this asset, from Qlik. -
qlikIsDirectQueryMode
Boolean qlikIsDirectQueryMode
Whether this app is in direct query mode (true) or not (false). -
qlikIsEncrypted
Boolean qlikIsEncrypted
Whether this app is encrypted (true) or not (false). -
qlikIsPublished
Boolean qlikIsPublished
Whether this asset is published in Qlik (true) or not (false). -
qlikOriginAppId
String qlikOriginAppId
Value of originAppId for this app. -
qlikOwnerId
String qlikOwnerId
Identifier of the owner of this asset, in Qlik. -
qlikQRI
String qlikQRI
Unique QRI of this asset, from Qlik. -
qlikSheets
SortedSet<IQlikSheet> qlikSheets
Sheets that exist within this app. -
qlikSpace
IQlikSpace qlikSpace
Space in which this app exists. -
qlikSpaceId
String qlikSpaceId
Identifier of the space in which this asset exists, from Qlik. -
qlikSpaceQualifiedName
String qlikSpaceQualifiedName
Unique name of the space in which this asset exists. -
typeName
String typeName
Fixed typeName for QlikApps.
-
-
Class com.atlan.model.assets.QlikChart
class QlikChart extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
qlikAppId
String qlikAppId
Identifier of the app in which this asset belongs, from Qlik. -
qlikAppQualifiedName
String qlikAppQualifiedName
Unique name of the app where this asset belongs. -
qlikChartFootnote
String qlikChartFootnote
Footnote of this chart. -
qlikChartOrientation
String qlikChartOrientation
Orientation of this chart. -
qlikChartSubtitle
String qlikChartSubtitle
Subtitle of this chart. -
qlikChartType
String qlikChartType
Subtype of this chart, for example: bar, graph, pie, etc. -
qlikId
String qlikId
Identifier of this asset, from Qlik. -
qlikIsPublished
Boolean qlikIsPublished
Whether this asset is published in Qlik (true) or not (false). -
qlikOwnerId
String qlikOwnerId
Identifier of the owner of this asset, in Qlik. -
qlikQRI
String qlikQRI
Unique QRI of this asset, from Qlik. -
qlikSheet
IQlikSheet qlikSheet
Sheet in which this chart exists. -
qlikSpaceId
String qlikSpaceId
Identifier of the space in which this asset exists, from Qlik. -
qlikSpaceQualifiedName
String qlikSpaceQualifiedName
Unique name of the space in which this asset exists. -
typeName
String typeName
Fixed typeName for QlikCharts.
-
-
Class com.atlan.model.assets.QlikDataset
class QlikDataset extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
qlikAppId
String qlikAppId
Identifier of the app in which this asset belongs, from Qlik. -
qlikAppQualifiedName
String qlikAppQualifiedName
Unique name of the app where this asset belongs. -
qlikDatasetSubtype
String qlikDatasetSubtype
Subtype this dataset asset. -
qlikDatasetTechnicalName
String qlikDatasetTechnicalName
Technical name of this asset. -
qlikDatasetType
String qlikDatasetType
Type of this data asset, for example: qix-df, snowflake, etc. -
qlikDatasetUri
String qlikDatasetUri
URI of this dataset. -
qlikId
String qlikId
Identifier of this asset, from Qlik. -
qlikIsPublished
Boolean qlikIsPublished
Whether this asset is published in Qlik (true) or not (false). -
qlikOwnerId
String qlikOwnerId
Identifier of the owner of this asset, in Qlik. -
qlikQRI
String qlikQRI
Unique QRI of this asset, from Qlik. -
qlikSpace
IQlikSpace qlikSpace
Space in which this dataset exists. -
qlikSpaceId
String qlikSpaceId
Identifier of the space in which this asset exists, from Qlik. -
qlikSpaceQualifiedName
String qlikSpaceQualifiedName
Unique name of the space in which this asset exists. -
typeName
String typeName
Fixed typeName for QlikDatasets.
-
-
Class com.atlan.model.assets.QlikSheet
class QlikSheet extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
qlikApp
IQlikApp qlikApp
App in which this sheet exists. -
qlikAppId
String qlikAppId
Identifier of the app in which this asset belongs, from Qlik. -
qlikAppQualifiedName
String qlikAppQualifiedName
Unique name of the app where this asset belongs. -
qlikCharts
SortedSet<IQlikChart> qlikCharts
Charts that exist within this sheet. -
qlikId
String qlikId
Identifier of this asset, from Qlik. -
qlikIsPublished
Boolean qlikIsPublished
Whether this asset is published in Qlik (true) or not (false). -
qlikOwnerId
String qlikOwnerId
Identifier of the owner of this asset, in Qlik. -
qlikQRI
String qlikQRI
Unique QRI of this asset, from Qlik. -
qlikSheetIsApproved
Boolean qlikSheetIsApproved
Whether this is approved (true) or not (false). -
qlikSpaceId
String qlikSpaceId
Identifier of the space in which this asset exists, from Qlik. -
qlikSpaceQualifiedName
String qlikSpaceQualifiedName
Unique name of the space in which this asset exists. -
typeName
String typeName
Fixed typeName for QlikSheets.
-
-
Class com.atlan.model.assets.QlikSpace
class QlikSpace extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
qlikAppId
String qlikAppId
Identifier of the app in which this asset belongs, from Qlik. -
qlikAppQualifiedName
String qlikAppQualifiedName
Unique name of the app where this asset belongs. -
qlikApps
SortedSet<IQlikApp> qlikApps
Apps that exist within this space. -
qlikDatasets
SortedSet<IQlikDataset> qlikDatasets
Datasets that exist within this space. -
qlikId
String qlikId
Identifier of this asset, from Qlik. -
qlikIsPublished
Boolean qlikIsPublished
Whether this asset is published in Qlik (true) or not (false). -
qlikOwnerId
String qlikOwnerId
Identifier of the owner of this asset, in Qlik. -
qlikQRI
String qlikQRI
Unique QRI of this asset, from Qlik. -
qlikSpaceId
String qlikSpaceId
Identifier of the space in which this asset exists, from Qlik. -
qlikSpaceQualifiedName
String qlikSpaceQualifiedName
Unique name of the space in which this asset exists. -
qlikSpaceType
String qlikSpaceType
Type of this space, for exmaple: Private, Shared, etc. -
typeName
String typeName
Fixed typeName for QlikSpaces.
-
-
Class com.atlan.model.assets.QlikStream
class QlikStream extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
qlikAppId
String qlikAppId
Identifier of the app in which this asset belongs, from Qlik. -
qlikAppQualifiedName
String qlikAppQualifiedName
Unique name of the app where this asset belongs. -
qlikApps
SortedSet<IQlikApp> qlikApps
Apps that exist within this space. -
qlikDatasets
SortedSet<IQlikDataset> qlikDatasets
Datasets that exist within this space. -
qlikId
String qlikId
Identifier of this asset, from Qlik. -
qlikIsPublished
Boolean qlikIsPublished
Whether this asset is published in Qlik (true) or not (false). -
qlikOwnerId
String qlikOwnerId
Identifier of the owner of this asset, in Qlik. -
qlikQRI
String qlikQRI
Unique QRI of this asset, from Qlik. -
qlikSpaceId
String qlikSpaceId
Identifier of the space in which this asset exists, from Qlik. -
qlikSpaceQualifiedName
String qlikSpaceQualifiedName
Unique name of the space in which this asset exists. -
qlikSpaceType
String qlikSpaceType
Type of this space, for exmaple: Private, Shared, etc. -
typeName
String typeName
Fixed typeName for QlikStreams.
-
-
Class com.atlan.model.assets.QuickSightAnalysis
class QuickSightAnalysis extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
quickSightAnalysisCalculatedFields
SortedSet<String> quickSightAnalysisCalculatedFields
List of field names calculated by this analysis. -
quickSightAnalysisFilterGroups
SortedSet<String> quickSightAnalysisFilterGroups
List of filter groups used for this analysis. -
quickSightAnalysisFolders
SortedSet<IQuickSightFolder> quickSightAnalysisFolders
TBC -
quickSightAnalysisParameterDeclarations
SortedSet<String> quickSightAnalysisParameterDeclarations
List of parameters used for this analysis. -
quickSightAnalysisStatus
QuickSightAnalysisStatus quickSightAnalysisStatus
Status of this analysis, for example: CREATION_IN_PROGRESS, UPDATE_SUCCESSFUL, etc. -
quickSightAnalysisVisuals
SortedSet<IQuickSightAnalysisVisual> quickSightAnalysisVisuals
Visuals that exist within this analysis. -
quickSightId
String quickSightId
TBC -
quickSightSheetId
String quickSightSheetId
TBC -
quickSightSheetName
String quickSightSheetName
TBC -
typeName
String typeName
Fixed typeName for QuickSightAnalysiss.
-
-
Class com.atlan.model.assets.QuickSightAnalysisVisual
class QuickSightAnalysisVisual extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
quickSightAnalysis
IQuickSightAnalysis quickSightAnalysis
Analysis in which this visual exists. -
quickSightAnalysisQualifiedName
String quickSightAnalysisQualifiedName
Unique name of the QuickSight analysis in which this visual exists. -
quickSightId
String quickSightId
TBC -
quickSightSheetId
String quickSightSheetId
TBC -
quickSightSheetName
String quickSightSheetName
TBC -
typeName
String typeName
Fixed typeName for QuickSightAnalysisVisuals.
-
-
Class com.atlan.model.assets.QuickSightDashboard
class QuickSightDashboard extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
quickSightDashboardFolders
SortedSet<IQuickSightFolder> quickSightDashboardFolders
TBC -
quickSightDashboardLastPublishedTime
Long quickSightDashboardLastPublishedTime
Time (epoch) at which this dashboard was last published, in milliseconds. -
quickSightDashboardPublishedVersionNumber
Long quickSightDashboardPublishedVersionNumber
Version number of the published dashboard. -
quickSightDashboardVisuals
SortedSet<IQuickSightDashboardVisual> quickSightDashboardVisuals
Visuals that exist within this dashboard. -
quickSightId
String quickSightId
TBC -
quickSightSheetId
String quickSightSheetId
TBC -
quickSightSheetName
String quickSightSheetName
TBC -
typeName
String typeName
Fixed typeName for QuickSightDashboards.
-
-
Class com.atlan.model.assets.QuickSightDashboardVisual
class QuickSightDashboardVisual extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
quickSightDashboard
IQuickSightDashboard quickSightDashboard
Dashboard in which this visual exists. -
quickSightDashboardQualifiedName
String quickSightDashboardQualifiedName
Unique name of the dashboard in which this visual exists. -
quickSightId
String quickSightId
TBC -
quickSightSheetId
String quickSightSheetId
TBC -
quickSightSheetName
String quickSightSheetName
TBC -
typeName
String typeName
Fixed typeName for QuickSightDashboardVisuals.
-
-
Class com.atlan.model.assets.QuickSightDataset
class QuickSightDataset extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
quickSightDatasetColumnCount
Long quickSightDatasetColumnCount
Number of columns present in this dataset. -
quickSightDatasetFields
SortedSet<IQuickSightDatasetField> quickSightDatasetFields
Fields that exist within this dataset. -
quickSightDatasetFolders
SortedSet<IQuickSightFolder> quickSightDatasetFolders
TBC -
quickSightDatasetImportMode
QuickSightDatasetImportMode quickSightDatasetImportMode
Import mode for this dataset, for example: SPICE or DIRECT_QUERY. -
quickSightId
String quickSightId
TBC -
quickSightSheetId
String quickSightSheetId
TBC -
quickSightSheetName
String quickSightSheetName
TBC -
typeName
String typeName
Fixed typeName for QuickSightDatasets.
-
-
Class com.atlan.model.assets.QuickSightDatasetField
class QuickSightDatasetField extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
quickSightDataset
IQuickSightDataset quickSightDataset
Dataset in which this field exists. -
quickSightDatasetFieldType
QuickSightDatasetFieldType quickSightDatasetFieldType
Datatype of this field, for example: STRING, INTEGER, etc. -
quickSightDatasetQualifiedName
String quickSightDatasetQualifiedName
Unique name of the dataset in which this field exists. -
quickSightId
String quickSightId
TBC -
quickSightSheetId
String quickSightSheetId
TBC -
quickSightSheetName
String quickSightSheetName
TBC -
typeName
String typeName
Fixed typeName for QuickSightDatasetFields.
-
-
Class com.atlan.model.assets.QuickSightFolder
class QuickSightFolder extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
quickSightAnalyses
SortedSet<IQuickSightAnalysis> quickSightAnalyses
TBC -
quickSightDashboards
SortedSet<IQuickSightDashboard> quickSightDashboards
TBC -
quickSightDatasets
SortedSet<IQuickSightDataset> quickSightDatasets
TBC -
quickSightFolderHierarchy
List<Map<String,
String>> quickSightFolderHierarchy Detailed path of this folder. -
quickSightFolderType
QuickSightFolderType quickSightFolderType
Type of this folder, for example: SHARED. -
quickSightId
String quickSightId
TBC -
quickSightSheetId
String quickSightSheetId
TBC -
quickSightSheetName
String quickSightSheetName
TBC -
typeName
String typeName
Fixed typeName for QuickSightFolders.
-
-
Class com.atlan.model.assets.Readme
class Readme extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
asset
IAsset asset
Asset that this README describes. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isGlobal
Boolean isGlobal
Whether the resource is global (true) or not (false). -
link
String link
URL to the resource. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
reference
String reference
Reference to the resource. -
resourceMetadata
Map<String,
String> resourceMetadata Metadata of the resource. -
seeAlso
SortedSet<IReadme> seeAlso
TBC -
typeName
String typeName
Fixed typeName for Readmes.
-
-
Class com.atlan.model.assets.ReadmeTemplate
class ReadmeTemplate extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
icon
String icon
Icon to use for the README template. -
iconType
IconType iconType
Type of icon, for example: image or emoji. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isGlobal
Boolean isGlobal
Whether the resource is global (true) or not (false). -
link
String link
URL to the resource. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
reference
String reference
Reference to the resource. -
resourceMetadata
Map<String,
String> resourceMetadata Metadata of the resource. -
typeName
String typeName
Fixed typeName for ReadmeTemplates.
-
-
Class com.atlan.model.assets.RedashDashboard
class RedashDashboard extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
redashDashboardWidgetCount
Long redashDashboardWidgetCount
Number of widgets in this dashboard. -
redashIsPublished
Boolean redashIsPublished
Whether this asset is published in Redash (true) or not (false). -
typeName
String typeName
Fixed typeName for RedashDashboards.
-
-
Class com.atlan.model.assets.RedashQuery
class RedashQuery extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
redashIsPublished
Boolean redashIsPublished
Whether this asset is published in Redash (true) or not (false). -
redashQueryLastExecutedAt
Long redashQueryLastExecutedAt
Time (epoch) when this query was last executed, in milliseconds. -
redashQueryLastExecutionRuntime
Double redashQueryLastExecutionRuntime
Elapsed time of the last execution of this query. -
redashQueryParameters
String redashQueryParameters
Parameters of this query. -
redashQuerySchedule
Map<String,
String> redashQuerySchedule Schedule for this query. -
redashQueryScheduleHumanized
String redashQueryScheduleHumanized
Schdule for this query in readable text for overview tab and filtering. -
redashQuerySQL
String redashQuerySQL
SQL code of this query. -
redashVisualizations
SortedSet<IRedashVisualization> redashVisualizations
Visualizations that were created by this query. -
typeName
String typeName
Fixed typeName for RedashQuerys.
-
-
Class com.atlan.model.assets.RedashVisualization
class RedashVisualization extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
redashIsPublished
Boolean redashIsPublished
Whether this asset is published in Redash (true) or not (false). -
redashQuery
IRedashQuery redashQuery
Query which created this visualization. -
redashQueryName
String redashQueryName
Simple name of the query from which this visualization is created. -
redashQueryQualifiedName
String redashQueryQualifiedName
Unique name of the query from which this visualization is created. -
redashVisualizationType
String redashVisualizationType
Type of this visualization. -
typeName
String typeName
Fixed typeName for RedashVisualizations.
-
-
Class com.atlan.model.assets.S3Bucket
class S3Bucket extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
awsAccountId
String awsAccountId
12-digit number that uniquely identifies an AWS account. -
awsArn
String awsArn
Amazon Resource Name (ARN) for this asset. This uniquely identifies the asset in AWS, and thus must be unique across all AWS asset instances. -
awsOwnerId
String awsOwnerId
Root user's ID. -
awsOwnerName
String awsOwnerName
Root user's name. -
awsPartition
String awsPartition
Group of AWS region and service objects. -
awsRegion
String awsRegion
Physical region where the data center in which the asset exists is clustered. -
awsResourceId
String awsResourceId
Unique resource ID assigned when a new resource is created. -
awsService
String awsService
Type of service in which the asset exists. -
awsTags
List<AwsTag> awsTags
List of tags that have been applied to the asset in AWS. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
objects
SortedSet<IS3Object> objects
S3 objects within this bucket. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
s3BucketVersioningEnabled
Boolean s3BucketVersioningEnabled
Whether versioning is enabled for the bucket (true) or not (false). -
s3Encryption
String s3Encryption
TBC -
s3ETag
String s3ETag
Entity tag for the asset. An entity tag is a hash of the object and represents changes to the contents of an object only, not its metadata. -
s3ObjectCount
Long s3ObjectCount
Number of objects within the bucket. -
typeName
String typeName
Fixed typeName for S3Buckets.
-
-
Class com.atlan.model.assets.S3Object
class S3Object extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
awsAccountId
String awsAccountId
12-digit number that uniquely identifies an AWS account. -
awsArn
String awsArn
Amazon Resource Name (ARN) for this asset. This uniquely identifies the asset in AWS, and thus must be unique across all AWS asset instances. -
awsOwnerId
String awsOwnerId
Root user's ID. -
awsOwnerName
String awsOwnerName
Root user's name. -
awsPartition
String awsPartition
Group of AWS region and service objects. -
awsRegion
String awsRegion
Physical region where the data center in which the asset exists is clustered. -
awsResourceId
String awsResourceId
Unique resource ID assigned when a new resource is created. -
awsService
String awsService
Type of service in which the asset exists. -
awsTags
List<AwsTag> awsTags
List of tags that have been applied to the asset in AWS. -
bucket
IS3Bucket bucket
S3 bucket in which the object exists. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
s3BucketName
String s3BucketName
Simple name of the bucket in which this object exists. -
s3BucketQualifiedName
String s3BucketQualifiedName
Unique name of the bucket in which this object exists. -
s3Encryption
String s3Encryption
TBC -
s3ETag
String s3ETag
Entity tag for the asset. An entity tag is a hash of the object and represents changes to the contents of an object only, not its metadata. -
s3ObjectContentDisposition
String s3ObjectContentDisposition
Information about how this object's content should be presented. -
s3ObjectContentType
String s3ObjectContentType
Type of content in this object, for example: text/plain, application/json, etc. -
s3ObjectKey
String s3ObjectKey
Unique identity of this object in an S3 bucket. This is usually the concatenation of any prefix (folder) in the S3 bucket with the name of the object (file) itself. -
s3ObjectLastModifiedTime
Long s3ObjectLastModifiedTime
Time (epoch) at which this object was last updated, in milliseconds, or when it was created if it has never been modified. -
s3ObjectSize
Long s3ObjectSize
Object size in bytes. -
s3ObjectStorageClass
String s3ObjectStorageClass
Storage class used for storing this object, for example: standard, intelligent-tiering, glacier, etc. -
s3ObjectVersionId
String s3ObjectVersionId
Version of this object. This is only applicable when versioning is enabled on the bucket in which this object exists. -
typeName
String typeName
Fixed typeName for S3Objects.
-
-
Class com.atlan.model.assets.SalesforceDashboard
class SalesforceDashboard extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
apiName
String apiName
Name of this asset in the Salesforce API. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dashboardType
String dashboardType
Type of dashboard in Salesforce. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
organization
ISalesforceOrganization organization
Organization in which this dashboard exists. -
organizationQualifiedName
String organizationQualifiedName
Fully-qualified name of the organization in Salesforce. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
reportCount
Long reportCount
Number of reports linked to the dashboard in Salesforce. -
reports
SortedSet<ISalesforceReport> reports
TBC -
sourceId
String sourceId
Identifier of the dashboard in Salesforce. -
typeName
String typeName
Fixed typeName for SalesforceDashboards.
-
-
Class com.atlan.model.assets.SalesforceField
class SalesforceField extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
apiName
String apiName
Name of this asset in the Salesforce API. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dataType
String dataType
Data type of values in this field. -
defaultValueFormula
String defaultValueFormula
Formula for the default value for this field. -
formula
String formula
Formula for this field, if it is a calculated field. -
inlineHelpText
String inlineHelpText
Help text for this field. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isCalculated
Boolean isCalculated
Whether this field is calculated (true) or not (false). -
isCaseSensitive
Boolean isCaseSensitive
Whether this field is case sensitive (true) or in-sensitive (false). -
isEncrypted
Boolean isEncrypted
Whether this field is encrypted (true) or not (false). -
isNullable
Boolean isNullable
Whether this field allows null values (true) or not (false). -
isPolymorphicForeignKey
Boolean isPolymorphicForeignKey
Whether this field references a record of multiple objects (true) or not (false). -
isUnique
Boolean isUnique
Whether this field must have unique values (true) or not (false). -
lookupObjects
SortedSet<ISalesforceObject> lookupObjects
TBC -
maxLength
Long maxLength
Maximum length of this field. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
numericScale
Double numericScale
Number of digits allowed to the right of the decimal point. -
object
ISalesforceObject object
Object in which this field exists. -
objectQualifiedName
String objectQualifiedName
Unique name of the object in which this field exists. -
order
Integer order
Order (position) of this field within the object. -
organizationQualifiedName
String organizationQualifiedName
Fully-qualified name of the organization in Salesforce. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
picklistValues
SortedSet<String> picklistValues
List of values from which a user can pick while adding a record. -
precision
Integer precision
Total number of digits allowed -
typeName
String typeName
Fixed typeName for SalesforceFields.
-
-
Class com.atlan.model.assets.SalesforceObject
class SalesforceObject extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
apiName
String apiName
Name of this asset in the Salesforce API. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
fieldCount
Long fieldCount
Number of fields in this object. -
fields
SortedSet<ISalesforceField> fields
Fields that exist within this object. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isCustom
Boolean isCustom
Whether this object is a custom object (true) or not (false). -
isMergable
Boolean isMergable
Whether this object is mergable (true) or not (false). -
isQueryable
Boolean isQueryable
Whether this object is queryable (true) or not (false). -
lookupFields
SortedSet<ISalesforceField> lookupFields
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
organization
ISalesforceOrganization organization
Organization in which this object exists. -
organizationQualifiedName
String organizationQualifiedName
Fully-qualified name of the organization in Salesforce. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
typeName
String typeName
Fixed typeName for SalesforceObjects.
-
-
Class com.atlan.model.assets.SalesforceOrganization
class SalesforceOrganization extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
apiName
String apiName
Name of this asset in the Salesforce API. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dashboards
SortedSet<ISalesforceDashboard> dashboards
Dashboards that exist within this organization. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
objects
SortedSet<ISalesforceObject> objects
Objects that exist within this organization. -
organizationQualifiedName
String organizationQualifiedName
Fully-qualified name of the organization in Salesforce. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
reports
SortedSet<ISalesforceReport> reports
Reports that exist within this organization. -
sourceId
String sourceId
Identifier of the organization in Salesforce. -
typeName
String typeName
Fixed typeName for SalesforceOrganizations.
-
-
Class com.atlan.model.assets.SalesforceReport
class SalesforceReport extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
apiName
String apiName
Name of this asset in the Salesforce API. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dashboards
SortedSet<ISalesforceDashboard> dashboards
TBC -
detailColumns
SortedSet<String> detailColumns
List of column names on the report. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
organization
ISalesforceOrganization organization
Organization in which this report exists. -
organizationQualifiedName
String organizationQualifiedName
Fully-qualified name of the organization in Salesforce. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
reportType
Map<String,
String> reportType Type of report in Salesforce. -
sourceId
String sourceId
Identifier of the report in Salesforce. -
typeName
String typeName
Fixed typeName for SalesforceReports.
-
-
Class com.atlan.model.assets.Schema
class Schema extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViews
SortedSet<ICalculationView> calculationViews
TBC -
database
IDatabase database
Database in which this schema exists. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
functions
SortedSet<IFunction> functions
Functions that exist within this schema. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
linkedSchemaQualifiedName
String linkedSchemaQualifiedName
Unique name of the Linked Schema on which this Schema is dependent. This concept is mostly applicable for linked datasets/datasource in Google BigQuery via Analytics Hub Listing -
materializedViews
SortedSet<IMaterializedView> materializedViews
Materialized views that exist within this schema. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
procedures
SortedSet<IProcedure> procedures
Stored procedures that exist within this schema. -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
snowflakeDynamicTables
SortedSet<ISnowflakeDynamicTable> snowflakeDynamicTables
Snowflake dynamic tables that exist within this schema. -
snowflakePipes
SortedSet<ISnowflakePipe> snowflakePipes
Snowflake pipes that exist within this schema. -
snowflakeStreams
SortedSet<ISnowflakeStream> snowflakeStreams
Snowflake streams that exist within this schema. -
snowflakeTags
SortedSet<ISnowflakeTag> snowflakeTags
Snowflake tags that exist within this schema. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableCount
Integer tableCount
Number of tables in this schema. -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tables
SortedSet<ITable> tables
Tables that exist within this schema. -
typeName
String typeName
Fixed typeName for Schemas. -
viewCount
Integer viewCount
Number of views in this schema. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
views
SortedSet<IView> views
Views that exist within this schema.
-
-
Class com.atlan.model.assets.SchemaRegistrySubject
class SchemaRegistrySubject extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
assets
SortedSet<IAsset> assets
TBC -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
schemaRegistrySchemaId
String schemaRegistrySchemaId
Unique identifier for schema definition set by the schema registry. -
schemaRegistrySchemaType
SchemaRegistrySchemaType schemaRegistrySchemaType
Type of language or specification used to define the schema, for example: JSON, Protobuf, etc. -
schemaRegistrySubjectBaseName
String schemaRegistrySubjectBaseName
Base name of the subject, without -key, -value prefixes. -
schemaRegistrySubjectGoverningAssetQualifiedNames
SortedSet<String> schemaRegistrySubjectGoverningAssetQualifiedNames
List of asset qualified names that this subject is governing/validating. -
schemaRegistrySubjectIsKeySchema
Boolean schemaRegistrySubjectIsKeySchema
Whether the subject is a schema for the keys of the messages (true) or not (false). -
schemaRegistrySubjectLatestSchemaDefinition
String schemaRegistrySubjectLatestSchemaDefinition
Definition of the latest schema in the subject. -
schemaRegistrySubjectLatestSchemaVersion
String schemaRegistrySubjectLatestSchemaVersion
Latest schema version of the subject. -
schemaRegistrySubjectSchemaCompatibility
SchemaRegistrySchemaCompatibility schemaRegistrySubjectSchemaCompatibility
Compatibility of the schema across versions. -
typeName
String typeName
Fixed typeName for SchemaRegistrySubjects.
-
-
Class com.atlan.model.assets.SigmaDataElement
class SigmaDataElement extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
sigmaDataElementFieldCount
Long sigmaDataElementFieldCount
Number of fields in this data element. -
sigmaDataElementFields
SortedSet<ISigmaDataElementField> sigmaDataElementFields
Data element fields that exist in this data element. -
sigmaDataElementName
String sigmaDataElementName
Simple name of the data element in which this asset exists. -
sigmaDataElementQualifiedName
String sigmaDataElementQualifiedName
Unique name of the data element in which this asset exists. -
sigmaDataElementQuery
String sigmaDataElementQuery
TBC -
sigmaDataElementType
String sigmaDataElementType
TBC -
sigmaPage
ISigmaPage sigmaPage
Page on which this data element exists. -
sigmaPageName
String sigmaPageName
Simple name of the page on which this asset exists. -
sigmaPageQualifiedName
String sigmaPageQualifiedName
Unique name of the page on which this asset exists. -
sigmaWorkbookName
String sigmaWorkbookName
Simple name of the workbook in which this asset exists. -
sigmaWorkbookQualifiedName
String sigmaWorkbookQualifiedName
Unique name of the workbook in which this asset exists. -
typeName
String typeName
Fixed typeName for SigmaDataElements.
-
-
Class com.atlan.model.assets.SigmaDataElementField
class SigmaDataElementField extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
sigmaDataElement
ISigmaDataElement sigmaDataElement
Data element in which this data element field exists. -
sigmaDataElementFieldFormula
String sigmaDataElementFieldFormula
TBC -
sigmaDataElementFieldIsHidden
Boolean sigmaDataElementFieldIsHidden
Whether this field is hidden (true) or not (false). -
sigmaDataElementName
String sigmaDataElementName
Simple name of the data element in which this asset exists. -
sigmaDataElementQualifiedName
String sigmaDataElementQualifiedName
Unique name of the data element in which this asset exists. -
sigmaPageName
String sigmaPageName
Simple name of the page on which this asset exists. -
sigmaPageQualifiedName
String sigmaPageQualifiedName
Unique name of the page on which this asset exists. -
sigmaWorkbookName
String sigmaWorkbookName
Simple name of the workbook in which this asset exists. -
sigmaWorkbookQualifiedName
String sigmaWorkbookQualifiedName
Unique name of the workbook in which this asset exists. -
typeName
String typeName
Fixed typeName for SigmaDataElementFields.
-
-
Class com.atlan.model.assets.SigmaDataset
class SigmaDataset extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
sigmaDataElementName
String sigmaDataElementName
Simple name of the data element in which this asset exists. -
sigmaDataElementQualifiedName
String sigmaDataElementQualifiedName
Unique name of the data element in which this asset exists. -
sigmaDatasetColumnCount
Long sigmaDatasetColumnCount
Number of columns in this dataset. -
sigmaDatasetColumns
SortedSet<ISigmaDatasetColumn> sigmaDatasetColumns
Dataset columns that exist in this dataset. -
sigmaPageName
String sigmaPageName
Simple name of the page on which this asset exists. -
sigmaPageQualifiedName
String sigmaPageQualifiedName
Unique name of the page on which this asset exists. -
sigmaWorkbookName
String sigmaWorkbookName
Simple name of the workbook in which this asset exists. -
sigmaWorkbookQualifiedName
String sigmaWorkbookQualifiedName
Unique name of the workbook in which this asset exists. -
typeName
String typeName
Fixed typeName for SigmaDatasets.
-
-
Class com.atlan.model.assets.SigmaDatasetColumn
class SigmaDatasetColumn extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
sigmaDataElementName
String sigmaDataElementName
Simple name of the data element in which this asset exists. -
sigmaDataElementQualifiedName
String sigmaDataElementQualifiedName
Unique name of the data element in which this asset exists. -
sigmaDataset
ISigmaDataset sigmaDataset
Dataset in which this dataset column exists. -
sigmaDatasetName
String sigmaDatasetName
Simple name of the dataset in which this column exists. -
sigmaDatasetQualifiedName
String sigmaDatasetQualifiedName
Unique name of the dataset in which this column exists. -
sigmaPageName
String sigmaPageName
Simple name of the page on which this asset exists. -
sigmaPageQualifiedName
String sigmaPageQualifiedName
Unique name of the page on which this asset exists. -
sigmaWorkbookName
String sigmaWorkbookName
Simple name of the workbook in which this asset exists. -
sigmaWorkbookQualifiedName
String sigmaWorkbookQualifiedName
Unique name of the workbook in which this asset exists. -
typeName
String typeName
Fixed typeName for SigmaDatasetColumns.
-
-
Class com.atlan.model.assets.SigmaPage
class SigmaPage extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
sigmaDataElementCount
Long sigmaDataElementCount
Number of data elements on this page. -
sigmaDataElementName
String sigmaDataElementName
Simple name of the data element in which this asset exists. -
sigmaDataElementQualifiedName
String sigmaDataElementQualifiedName
Unique name of the data element in which this asset exists. -
sigmaDataElements
SortedSet<ISigmaDataElement> sigmaDataElements
Data elements that exist on this page. -
sigmaPageName
String sigmaPageName
Simple name of the page on which this asset exists. -
sigmaPageQualifiedName
String sigmaPageQualifiedName
Unique name of the page on which this asset exists. -
sigmaWorkbook
ISigmaWorkbook sigmaWorkbook
Workbook in which this page exists. -
sigmaWorkbookName
String sigmaWorkbookName
Simple name of the workbook in which this asset exists. -
sigmaWorkbookQualifiedName
String sigmaWorkbookQualifiedName
Unique name of the workbook in which this asset exists. -
typeName
String typeName
Fixed typeName for SigmaPages.
-
-
Class com.atlan.model.assets.SigmaWorkbook
class SigmaWorkbook extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
sigmaDataElementName
String sigmaDataElementName
Simple name of the data element in which this asset exists. -
sigmaDataElementQualifiedName
String sigmaDataElementQualifiedName
Unique name of the data element in which this asset exists. -
sigmaPageCount
Long sigmaPageCount
Number of pages in this workbook. -
sigmaPageName
String sigmaPageName
Simple name of the page on which this asset exists. -
sigmaPageQualifiedName
String sigmaPageQualifiedName
Unique name of the page on which this asset exists. -
sigmaPages
SortedSet<ISigmaPage> sigmaPages
Pages that exist in this workbook. -
sigmaWorkbookName
String sigmaWorkbookName
Simple name of the workbook in which this asset exists. -
sigmaWorkbookQualifiedName
String sigmaWorkbookQualifiedName
Unique name of the workbook in which this asset exists. -
typeName
String typeName
Fixed typeName for SigmaWorkbooks.
-
-
Class com.atlan.model.assets.SisenseDashboard
class SisenseDashboard extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
sisenseDashboardFolderQualifiedName
String sisenseDashboardFolderQualifiedName
Unique name of the folder in which this dashboard exists. -
sisenseDashboardWidgetCount
Long sisenseDashboardWidgetCount
Number of widgets in this dashboard. -
sisenseDatamodels
SortedSet<ISisenseDatamodel> sisenseDatamodels
TBC -
sisenseFolder
ISisenseFolder sisenseFolder
Folder in which this dashboard exists. -
sisenseWidgets
SortedSet<ISisenseWidget> sisenseWidgets
Widgets that exist in this dashboard. -
typeName
String typeName
Fixed typeName for SisenseDashboards.
-
-
Class com.atlan.model.assets.SisenseDatamodel
class SisenseDatamodel extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
sisenseDashboards
SortedSet<ISisenseDashboard> sisenseDashboards
TBC -
sisenseDatamodelLastBuildTime
Long sisenseDatamodelLastBuildTime
Time (epoch) when this datamodel was last built, in milliseconds. -
sisenseDatamodelLastPublishTime
Long sisenseDatamodelLastPublishTime
Time (epoch) when this datamodel was last published, in milliseconds. -
sisenseDatamodelLastSuccessfulBuildTime
Long sisenseDatamodelLastSuccessfulBuildTime
Time (epoch) when this datamodel was last built successfully, in milliseconds. -
sisenseDatamodelRelationType
String sisenseDatamodelRelationType
Default relation type for this datamodel. 'extract' type Datamodels have regular relations by default. 'live' type Datamodels have direct relations by default. -
sisenseDatamodelRevision
String sisenseDatamodelRevision
Revision of this datamodel. -
sisenseDatamodelServer
String sisenseDatamodelServer
Hostname of the server on which this datamodel was created. -
sisenseDatamodelTableCount
Long sisenseDatamodelTableCount
Number of tables in this datamodel. -
sisenseDatamodelTables
SortedSet<ISisenseDatamodelTable> sisenseDatamodelTables
Datamodel tables that exist within this datamodel. -
sisenseDatamodelType
String sisenseDatamodelType
Type of this datamodel, for example: 'extract' or 'custom'. -
typeName
String typeName
Fixed typeName for SisenseDatamodels.
-
-
Class com.atlan.model.assets.SisenseDatamodelTable
class SisenseDatamodelTable extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
sisenseDatamodel
ISisenseDatamodel sisenseDatamodel
Datamodel in which this datamodel table exists. -
sisenseDatamodelQualifiedName
String sisenseDatamodelQualifiedName
Unique name of the datamodel in which this datamodel table exists. -
sisenseDatamodelTableColumnCount
Long sisenseDatamodelTableColumnCount
Number of columns present in this datamodel table. -
sisenseDatamodelTableExpression
String sisenseDatamodelTableExpression
SQL expression of this datamodel table. -
sisenseDatamodelTableIsHidden
Boolean sisenseDatamodelTableIsHidden
Whether this datamodel table is hidden in Sisense (true) or not (false). -
sisenseDatamodelTableIsMaterialized
Boolean sisenseDatamodelTableIsMaterialized
Whether this datamodel table is materialised (true) or not (false). -
sisenseDatamodelTableLiveQuerySettings
String sisenseDatamodelTableLiveQuerySettings
JSON specifying the LiveQuery settings of this datamodel table. -
sisenseDatamodelTableSchedule
String sisenseDatamodelTableSchedule
JSON specifying the refresh schedule of this datamodel table. -
sisenseDatamodelTableType
String sisenseDatamodelTableType
Type of this datamodel table, for example: 'base' for regular tables, 'custom' for SQL expression-based tables. -
sisenseWidgets
SortedSet<ISisenseWidget> sisenseWidgets
TBC -
typeName
String typeName
Fixed typeName for SisenseDatamodelTables.
-
-
Class com.atlan.model.assets.SisenseFolder
class SisenseFolder extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
sisenseChildFolders
SortedSet<ISisenseFolder> sisenseChildFolders
Sub-folders that exist within this folder. -
sisenseDashboards
SortedSet<ISisenseDashboard> sisenseDashboards
Dashboards that exist within this folder. -
sisenseFolderParentFolderQualifiedName
String sisenseFolderParentFolderQualifiedName
Unique name of the parent folder in which this folder exists. -
sisenseParentFolder
ISisenseFolder sisenseParentFolder
Folder in which this sub-folder exists. -
sisenseWidgets
SortedSet<ISisenseWidget> sisenseWidgets
Widgets that exist within this folder. -
typeName
String typeName
Fixed typeName for SisenseFolders.
-
-
Class com.atlan.model.assets.SisenseWidget
class SisenseWidget extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
sisenseDashboard
ISisenseDashboard sisenseDashboard
Dashboard in which this widget exists. -
sisenseDatamodelTables
SortedSet<ISisenseDatamodelTable> sisenseDatamodelTables
TBC -
sisenseFolder
ISisenseFolder sisenseFolder
Folder in which this widget exists. -
sisenseWidgetColumnCount
Long sisenseWidgetColumnCount
Number of columns used in this widget. -
sisenseWidgetDashboardQualifiedName
String sisenseWidgetDashboardQualifiedName
Unique name of the dashboard in which this widget exists. -
sisenseWidgetFolderQualifiedName
String sisenseWidgetFolderQualifiedName
Unique name of the folder in which this widget exists. -
sisenseWidgetSize
String sisenseWidgetSize
Size of this widget. -
sisenseWidgetSubType
String sisenseWidgetSubType
Subtype of this widget. -
typeName
String typeName
Fixed typeName for SisenseWidgets.
-
-
Class com.atlan.model.assets.SnowflakeDynamicTable
class SnowflakeDynamicTable extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
alias
String alias
Alias for this table. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
columnCount
Long columnCount
Number of columns in this table. -
columns
SortedSet<IColumn> columns
Columns that exist within this table. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
definition
String definition
SQL statements used to define the dynamic table. -
dimensions
SortedSet<ITable> dimensions
TBC -
externalLocation
String externalLocation
External location of this table, for example: an S3 object location. -
externalLocationFormat
String externalLocationFormat
Format of the external location of this table, for example: JSON, CSV, PARQUET, etc. -
externalLocationRegion
String externalLocationRegion
Region of the external location of this table, for example: S3 region. -
facts
SortedSet<ITable> facts
TBC -
icebergCatalogName
String icebergCatalogName
iceberg table catalog name (can be any user defined name) -
icebergCatalogSource
String icebergCatalogSource
iceberg table catalog type (glue, polaris, snowflake) -
icebergCatalogTableName
String icebergCatalogTableName
catalog table name (actual table name on the catalog side). -
icebergCatalogTableNamespace
String icebergCatalogTableNamespace
catalog table namespace (actual database name on the catalog side). -
icebergTableBaseLocation
String icebergTableBaseLocation
iceberg table base location inside the external volume. -
icebergTableType
String icebergTableType
iceberg table type (managed vs unmanaged) -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isPartitioned
Boolean isPartitioned
Whether this table is partitioned (true) or not (false). -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
isQueryPreview
Boolean isQueryPreview
Whether preview queries are allowed for this table (true) or not (false). -
isSharded
Boolean isSharded
Whether this table is a sharded table (true) or not (false). -
isTemporary
Boolean isTemporary
Whether this table is temporary (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
partitionCount
Long partitionCount
Number of partitions in this table. -
partitionList
String partitionList
List of partitions in this table. -
partitions
SortedSet<ITablePartition> partitions
Partitions that exist within this table. -
partitionStrategy
String partitionStrategy
Partition strategy for this table. -
queries
SortedSet<IAtlanQuery> queries
Queries that access this table. -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryPreviewConfig
Map<String,
String> queryPreviewConfig Configuration for preview queries. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
rowCount
Long rowCount
Number of rows in this table. -
schema
ISchema schema
Schema in which this table exists. -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
sizeBytes
Long sizeBytes
Size of this table, in bytes. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableExternalVolumeName
String tableExternalVolumeName
external volume name for the table. -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableRetentionTime
Long tableRetentionTime
Data retention time in days. -
tableType
TableType tableType
Type of the table. -
typeName
String typeName
Fixed typeName for SnowflakeDynamicTables. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view.
-
-
Class com.atlan.model.assets.SnowflakePipe
class SnowflakePipe extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
definition
String definition
SQL definition of this pipe. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
schema
ISchema schema
Schema in which this Snowflake pipe exists. -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
snowflakePipeIsAutoIngestEnabled
Boolean snowflakePipeIsAutoIngestEnabled
Whether auto-ingest is enabled for this pipe (true) or not (false). -
snowflakePipeNotificationChannelName
String snowflakePipeNotificationChannelName
Name of the notification channel for this pipe. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
typeName
String typeName
Fixed typeName for SnowflakePipes. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view.
-
-
Class com.atlan.model.assets.SnowflakeStream
class SnowflakeStream extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
schema
ISchema schema
Schema in which this Snowflake stream exists. -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
snowflakeStreamIsStale
Boolean snowflakeStreamIsStale
Whether this stream is stale (true) or not (false). -
snowflakeStreamMode
String snowflakeStreamMode
Mode of this stream. -
snowflakeStreamSourceType
String snowflakeStreamSourceType
Type of the source of this stream. -
snowflakeStreamStaleAfter
Long snowflakeStreamStaleAfter
Time (epoch) after which this stream will be stale, in milliseconds. -
snowflakeStreamType
String snowflakeStreamType
Type of this stream, for example: standard, append-only, insert-only, etc. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
typeName
String typeName
Fixed typeName for SnowflakeStreams. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view.
-
-
Class com.atlan.model.assets.SnowflakeTag
class SnowflakeTag extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
mappedAtlanTagName
String mappedAtlanTagName
Name of the classification in Atlan that is mapped to this tag. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
schema
ISchema schema
Schema in which this Snowflake tag exists. -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tagAllowedValues
SortedSet<String> tagAllowedValues
Allowed values for the tag in the source system. These are denormalized from tagAttributes for ease of querying. -
tagAttributes
List<SourceTagAttribute> tagAttributes
Attributes associated with the tag in the source system. -
tagId
String tagId
Unique identifier of the tag in the source system. -
typeName
String typeName
Fixed typeName for SnowflakeTags. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view.
-
-
Class com.atlan.model.assets.SodaCheck
class SodaCheck extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
sodaCheckAssets
SortedSet<IAsset> sodaCheckAssets
TBC -
sodaCheckColumns
SortedSet<IColumn> sodaCheckColumns
TBC -
sodaCheckDefinition
String sodaCheckDefinition
Definition of the check in Soda. -
sodaCheckEvaluationStatus
String sodaCheckEvaluationStatus
Status of the check in Soda. -
sodaCheckId
String sodaCheckId
Identifier of the check in Soda. -
sodaCheckIncidentCount
Long sodaCheckIncidentCount
TBC -
sodaCheckLastScanAt
Long sodaCheckLastScanAt
TBC -
typeName
String typeName
Fixed typeName for SodaChecks.
-
-
Class com.atlan.model.assets.SparkJob
class SparkJob extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputs
SortedSet<ICatalog> inputs
Assets that are inputs to this task. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
outputs
SortedSet<ICatalog> outputs
Assets that are outputs from this task. -
process
ILineageProcess process
TBC -
sparkAppName
String sparkAppName
Name of the Spark app containing this Spark Job For eg. extract_raw_data -
sparkMaster
String sparkMaster
The Spark master URL eg. local, local[4], or spark://master:7077 -
sparkRunEndTime
Long sparkRunEndTime
End time of the Spark Job eg. 1695673598218 -
sparkRunOpenLineageState
OpenLineageRunState sparkRunOpenLineageState
OpenLineage state of the Spark Job run eg. COMPLETE -
sparkRunOpenLineageVersion
String sparkRunOpenLineageVersion
OpenLineage Version of the Spark Job run eg. 1.1.0 -
sparkRunStartTime
Long sparkRunStartTime
Start time of the Spark Job eg. 1695673598218 -
sparkRunVersion
String sparkRunVersion
Spark Version for the Spark Job run eg. 3.4.1 -
typeName
String typeName
Fixed typeName for SparkJobs.
-
-
Class com.atlan.model.assets.Stakeholder
class Stakeholder extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
channelLink
String channelLink
TBC -
defaultNavigation
String defaultNavigation
TBC -
denyAssetFilters
SortedSet<AssetFilterGroup> denyAssetFilters
TBC -
denyAssetTabs
SortedSet<AssetSidebarTab> denyAssetTabs
TBC -
denyAssetTypes
SortedSet<String> denyAssetTypes
TBC -
denyCustomMetadataGuids
SortedSet<String> denyCustomMetadataGuids
TBC -
denyNavigationPages
SortedSet<String> denyNavigationPages
TBC -
displayPreferences
SortedSet<String> displayPreferences
TBC -
isAccessControlEnabled
Boolean isAccessControlEnabled
TBC -
personaGroups
SortedSet<String> personaGroups
TBC -
personaUsers
SortedSet<String> personaUsers
TBC -
policies
SortedSet<IAuthPolicy> policies
TBC -
roleId
String roleId
TBC -
stakeholderDataDomain
IDataDomain stakeholderDataDomain
Domain assigned to the Stakeholder -
stakeholderDomainQualifiedName
String stakeholderDomainQualifiedName
TBC -
stakeholderTitle
IStakeholderTitle stakeholderTitle
Stakeholder-title assigned for this Stakeholder-Persona -
stakeholderTitleGuid
String stakeholderTitleGuid
TBC -
typeName
String typeName
Fixed typeName for Stakeholders.
-
-
Class com.atlan.model.assets.StakeholderTitle
class StakeholderTitle extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
stakeholders
SortedSet<IStakeholder> stakeholders
Stakeholder-Personas created for this Stakeholder-title -
stakeholderTitleDomainQualifiedNames
SortedSet<String> stakeholderTitleDomainQualifiedNames
qualified name array representing the Domains for which this StakeholderTitle is applicable -
typeName
String typeName
Fixed typeName for StakeholderTitles.
-
-
Class com.atlan.model.assets.SupersetChart
class SupersetChart extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
supersetChartDescriptionMarkdown
String supersetChartDescriptionMarkdown
Description markdown of the chart. -
supersetChartFormData
Map<String,
String> supersetChartFormData Data stored for the chart in key value pairs. -
supersetDashboard
ISupersetDashboard supersetDashboard
SupersetDashboard asset containing this SupersetChart. -
supersetDashboardId
Long supersetDashboardId
Identifier of the dashboard in which this asset exists, in Superset. -
supersetDashboardQualifiedName
String supersetDashboardQualifiedName
Unique name of the dashboard in which this asset exists. -
typeName
String typeName
Fixed typeName for SupersetCharts.
-
-
Class com.atlan.model.assets.SupersetDashboard
class SupersetDashboard extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
supersetCharts
SortedSet<ISupersetChart> supersetCharts
SupersetCharts assets contained within this SupersetDashboard. -
supersetDashboardChangedByName
String supersetDashboardChangedByName
Name of the user who changed the dashboard. -
supersetDashboardChangedByURL
String supersetDashboardChangedByURL
URL of the user profile that changed the dashboard -
supersetDashboardChartCount
Long supersetDashboardChartCount
Count of charts present in the dashboard. -
supersetDashboardId
Long supersetDashboardId
Identifier of the dashboard in which this asset exists, in Superset. -
supersetDashboardIsManagedExternally
Boolean supersetDashboardIsManagedExternally
Whether the dashboard is manager externally (true) or not (false). -
supersetDashboardIsPublished
Boolean supersetDashboardIsPublished
Whether the dashboard is published (true) or not (false). -
supersetDashboardQualifiedName
String supersetDashboardQualifiedName
Unique name of the dashboard in which this asset exists. -
supersetDashboardThumbnailURL
String supersetDashboardThumbnailURL
URL for the dashboard thumbnail image in superset. -
supersetDatasets
SortedSet<ISupersetDataset> supersetDatasets
SupersetDatasets assets contained within this SupersetDashboard. -
typeName
String typeName
Fixed typeName for SupersetDashboards.
-
-
Class com.atlan.model.assets.SupersetDataset
class SupersetDataset extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
supersetDashboard
ISupersetDashboard supersetDashboard
SupersetDashboard asset containing this SupersetDataset. -
supersetDashboardId
Long supersetDashboardId
Identifier of the dashboard in which this asset exists, in Superset. -
supersetDashboardQualifiedName
String supersetDashboardQualifiedName
Unique name of the dashboard in which this asset exists. -
supersetDatasetDatasourceName
String supersetDatasetDatasourceName
Name of the datasource for the dataset. -
supersetDatasetId
Long supersetDatasetId
Id of the dataset in superset. -
supersetDatasetType
String supersetDatasetType
Type of the dataset in superset. -
typeName
String typeName
Fixed typeName for SupersetDatasets.
-
-
Class com.atlan.model.assets.Table
class Table extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
alias
String alias
Alias for this table. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
columnCount
Long columnCount
Number of columns in this table. -
columns
SortedSet<IColumn> columns
Columns that exist within this table. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
dimensions
SortedSet<ITable> dimensions
TBC -
externalLocation
String externalLocation
External location of this table, for example: an S3 object location. -
externalLocationFormat
String externalLocationFormat
Format of the external location of this table, for example: JSON, CSV, PARQUET, etc. -
externalLocationRegion
String externalLocationRegion
Region of the external location of this table, for example: S3 region. -
facts
SortedSet<ITable> facts
TBC -
icebergCatalogName
String icebergCatalogName
iceberg table catalog name (can be any user defined name) -
icebergCatalogSource
String icebergCatalogSource
iceberg table catalog type (glue, polaris, snowflake) -
icebergCatalogTableName
String icebergCatalogTableName
catalog table name (actual table name on the catalog side). -
icebergCatalogTableNamespace
String icebergCatalogTableNamespace
catalog table namespace (actual database name on the catalog side). -
icebergTableBaseLocation
String icebergTableBaseLocation
iceberg table base location inside the external volume. -
icebergTableType
String icebergTableType
iceberg table type (managed vs unmanaged) -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isPartitioned
Boolean isPartitioned
Whether this table is partitioned (true) or not (false). -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
isQueryPreview
Boolean isQueryPreview
Whether preview queries are allowed for this table (true) or not (false). -
isSharded
Boolean isSharded
Whether this table is a sharded table (true) or not (false). -
isTemporary
Boolean isTemporary
Whether this table is temporary (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
partitionCount
Long partitionCount
Number of partitions in this table. -
partitionList
String partitionList
List of partitions in this table. -
partitions
SortedSet<ITablePartition> partitions
Partitions that exist within this table. -
partitionStrategy
String partitionStrategy
Partition strategy for this table. -
queries
SortedSet<IAtlanQuery> queries
Queries that access this table. -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryPreviewConfig
Map<String,
String> queryPreviewConfig Configuration for preview queries. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
rowCount
Long rowCount
Number of rows in this table. -
schema
ISchema schema
Schema in which this table exists. -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
sizeBytes
Long sizeBytes
Size of this table, in bytes. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableExternalVolumeName
String tableExternalVolumeName
external volume name for the table. -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableRetentionTime
Long tableRetentionTime
Data retention time in days. -
tableType
TableType tableType
Type of the table. -
typeName
String typeName
Fixed typeName for Tables. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view.
-
-
Class com.atlan.model.assets.TableauCalculatedField
class TableauCalculatedField extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dataCategory
String dataCategory
Data category of this field. -
datasource
ITableauDatasource datasource
Datasource in which this calculated field exists. -
datasourceQualifiedName
String datasourceQualifiedName
Unique name of the datasource in which this calculated field exists. -
formula
String formula
Formula for this calculated field. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
projectHierarchy
List<Map<String,
String>> projectHierarchy List of top-level projects and their nested projects. -
projectQualifiedName
String projectQualifiedName
Unique name of the project in which this calculated field exists. -
role
String role
Role of this field, for example: 'dimension', 'measure', or 'unknown'. -
siteQualifiedName
String siteQualifiedName
Unique name of the site in which this calculated field exists. -
tableauDataType
String tableauDataType
Data type of the field, from Tableau. -
topLevelProjectQualifiedName
String topLevelProjectQualifiedName
Unique name of the top-level project in which this calculated field exists. -
typeName
String typeName
Fixed typeName for TableauCalculatedFields. -
upstreamFields
List<Map<String,
String>> upstreamFields List of fields that are upstream to this calculated field. -
workbookQualifiedName
String workbookQualifiedName
Unique name of the workbook in which this calculated field exists. -
worksheets
SortedSet<ITableauWorksheet> worksheets
Worksheets that use this calculated field.
-
-
Class com.atlan.model.assets.TableauDashboard
class TableauDashboard extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
projectHierarchy
List<Map<String,
String>> projectHierarchy List of top-level projects and their nested child projects. -
projectQualifiedName
String projectQualifiedName
Unique name of the project in which this dashboard exists. -
siteQualifiedName
String siteQualifiedName
Unique name of the site in which this dashboard exists. -
topLevelProjectQualifiedName
String topLevelProjectQualifiedName
Unique name of the top-level project in which this dashboard exists. -
typeName
String typeName
Fixed typeName for TableauDashboards. -
workbook
ITableauWorkbook workbook
Workbook in which this dashboard exists. -
workbookQualifiedName
String workbookQualifiedName
Unique name of the workbook in which this dashboard exists. -
worksheets
SortedSet<ITableauWorksheet> worksheets
Worksheets that use this dashboard.
-
-
Class com.atlan.model.assets.TableauDatasource
class TableauDatasource extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
certificationNote
String certificationNote
Notes related to this datasource being cerfified, in Tableau. -
certifier
Map<String,
String> certifier Users that have marked this datasource as cerified, in Tableau. -
certifierDisplayName
String certifierDisplayName
Name of the user who cerified this datasource, in Tableau. -
fields
SortedSet<ITableauField> fields
Fields that exist within this datasource. -
hasExtracts
Boolean hasExtracts
Whether this datasource has extracts (true) or not (false). -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isCertified
Boolean isCertified
Whether this datasource is certified in Tableau (true) or not (false). -
isPublished
Boolean isPublished
Whether this datasource is published (true) or embedded (false). -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
project
ITableauProject project
Project in which this datasource exists. -
projectHierarchy
List<Map<String,
String>> projectHierarchy List of top-level projects with their nested child projects. -
projectQualifiedName
String projectQualifiedName
Unique name of the project in which this datasource exists. -
siteQualifiedName
String siteQualifiedName
Unique name of the site in which this datasource exists. -
topLevelProjectQualifiedName
String topLevelProjectQualifiedName
Unique name of the top-level project in which this datasource exists. -
typeName
String typeName
Fixed typeName for TableauDatasources. -
upstreamDatasources
List<Map<String,
String>> upstreamDatasources List of datasources that are upstream of this datasource. -
upstreamTables
List<Map<String,
String>> upstreamTables List of tables that are upstream of this datasource. -
workbook
ITableauWorkbook workbook
Workbook in which this datasource exists. -
workbookQualifiedName
String workbookQualifiedName
Unique name of the workbook in which this datasource exists.
-
-
Class com.atlan.model.assets.TableauDatasourceField
class TableauDatasourceField extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
datasource
ITableauDatasource datasource
Datasource in which this field exists. -
datasourceFieldType
String datasourceFieldType
Type of this datasource field. -
datasourceQualifiedName
String datasourceQualifiedName
Unique name of the datasource in which this datasource field exists. -
fullyQualifiedName
String fullyQualifiedName
Name used internally in Tableau to uniquely identify this field. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
projectHierarchy
List<Map<String,
String>> projectHierarchy List of top-level projects and their nested child projects. -
projectQualifiedName
String projectQualifiedName
Unique name of the project in which this datasource field exists. -
siteQualifiedName
String siteQualifiedName
Unique name of the site in which this datasource field exists. -
tableauDatasourceFieldBinSize
String tableauDatasourceFieldBinSize
Bin size of this field. -
tableauDatasourceFieldDataCategory
String tableauDatasourceFieldDataCategory
Data category of this field. -
tableauDatasourceFieldDataType
String tableauDatasourceFieldDataType
Data type of this field. -
tableauDatasourceFieldFormula
String tableauDatasourceFieldFormula
Formula for this field. -
tableauDatasourceFieldRole
String tableauDatasourceFieldRole
Role of this field, for example: 'dimension', 'measure', or 'unknown'. -
topLevelProjectQualifiedName
String topLevelProjectQualifiedName
Unique name of the top-level project in which this datasource field exists. -
typeName
String typeName
Fixed typeName for TableauDatasourceFields. -
upstreamColumns
List<Map<String,
String>> upstreamColumns Columns upstream to this field. -
upstreamFields
List<Map<String,
String>> upstreamFields Fields upstream to this field. -
upstreamTables
List<Map<String,
String>> upstreamTables Tables upstream to this datasource field. -
workbookQualifiedName
String workbookQualifiedName
Unique name of the workbook in which this datasource field exists. -
worksheets
SortedSet<ITableauWorksheet> worksheets
Worksheets that use this datasource field.
-
-
Class com.atlan.model.assets.TableauFlow
class TableauFlow extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputFields
List<Map<String,
String>> inputFields List of fields that are inputs to this flow. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFields
List<Map<String,
String>> outputFields List of fields that are outputs from this flow. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
outputSteps
List<Map<String,
String>> outputSteps List of steps that are outputs from this flow. -
project
ITableauProject project
Project in which this flow exists. -
projectHierarchy
List<Map<String,
String>> projectHierarchy List of top-level projects with their nested child projects. -
projectQualifiedName
String projectQualifiedName
Unique name of the project in which this flow exists. -
siteQualifiedName
String siteQualifiedName
Unique name of the site in which this flow exists. -
topLevelProjectQualifiedName
String topLevelProjectQualifiedName
Unique name of the top-level project in which this flow exists. -
typeName
String typeName
Fixed typeName for TableauFlows.
-
-
Class com.atlan.model.assets.TableauMetric
class TableauMetric extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
project
ITableauProject project
Project in which this metric exists. -
projectHierarchy
List<Map<String,
String>> projectHierarchy List of top-level projects with their nested child projects. -
projectQualifiedName
String projectQualifiedName
Unique name of the project in which this metric exists. -
siteQualifiedName
String siteQualifiedName
Unique name of the site in which this metric exists. -
topLevelProjectQualifiedName
String topLevelProjectQualifiedName
Unique name of the top-level project in which this metric exists. -
typeName
String typeName
Fixed typeName for TableauMetrics.
-
-
Class com.atlan.model.assets.TableauProject
class TableauProject extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
childProjects
SortedSet<ITableauProject> childProjects
Sub-projects that exist within this project. -
datasources
SortedSet<ITableauDatasource> datasources
Datasources that exist within this project. -
flows
SortedSet<ITableauFlow> flows
Flows that exist within this project. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isTopLevelProject
Boolean isTopLevelProject
Whether this project is a top-level project (true) or not (false). -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
parentProject
ITableauProject parentProject
Project in which this sub-project exists. -
projectHierarchy
List<Map<String,
String>> projectHierarchy List of top-level projects with their nested child projects. -
site
ITableauSite site
Site in which this project exists. -
siteQualifiedName
String siteQualifiedName
Unique name of the site in which this project exists. -
topLevelProjectQualifiedName
String topLevelProjectQualifiedName
Unique name of the top-level project in which this project exists, if this is a nested project. -
typeName
String typeName
Fixed typeName for TableauProjects. -
workbooks
SortedSet<ITableauWorkbook> workbooks
Workbooks that exist within this project.
-
-
Class com.atlan.model.assets.TableauSite
class TableauSite extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
projects
SortedSet<ITableauProject> projects
Projects that exist within this site. -
typeName
String typeName
Fixed typeName for TableauSites.
-
-
Class com.atlan.model.assets.TableauWorkbook
class TableauWorkbook extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
dashboards
SortedSet<ITableauDashboard> dashboards
Dashboards that exist within this workbook. -
datasources
SortedSet<ITableauDatasource> datasources
Datasources that exist within this workbook. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
project
ITableauProject project
Project in which this workbook exists. -
projectHierarchy
List<Map<String,
String>> projectHierarchy List of top-level projects with their nested child projects. -
projectQualifiedName
String projectQualifiedName
Unique name of the project in which this workbook exists. -
siteQualifiedName
String siteQualifiedName
Unique name of the site in which this workbook exists. -
topLevelProjectName
String topLevelProjectName
Simple name of the top-level project in which this workbook exists. -
topLevelProjectQualifiedName
String topLevelProjectQualifiedName
Unique name of the top-level project in which this workbook exists. -
typeName
String typeName
Fixed typeName for TableauWorkbooks. -
worksheets
SortedSet<ITableauWorksheet> worksheets
Worksheets that exist within this workbook.
-
-
Class com.atlan.model.assets.TableauWorksheet
class TableauWorksheet extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculatedFields
SortedSet<ITableauCalculatedField> calculatedFields
Calculated fields that are used in this worksheet. -
dashboards
SortedSet<ITableauDashboard> dashboards
Dashboards that use this worksheet. -
datasourceFields
SortedSet<ITableauDatasourceField> datasourceFields
Datasource fields this worksheet uses. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
projectHierarchy
List<Map<String,
String>> projectHierarchy List of top-level projects with their nested child projects. -
projectQualifiedName
String projectQualifiedName
Unique name of the project in which this worksheet exists. -
siteQualifiedName
String siteQualifiedName
Unique name of the site in which this worksheet exists. -
topLevelProjectQualifiedName
String topLevelProjectQualifiedName
Unique name of the top-level project in which this worksheet exists. -
typeName
String typeName
Fixed typeName for TableauWorksheets. -
workbook
ITableauWorkbook workbook
Workbook in which this worksheet exists. -
workbookQualifiedName
String workbookQualifiedName
Unique name of the workbook in which this worksheet exists.
-
-
Class com.atlan.model.assets.TablePartition
class TablePartition extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
alias
String alias
Alias for this partition. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
childTablePartitions
SortedSet<ITablePartition> childTablePartitions
Partitions that exist within this partition. -
columnCount
Long columnCount
Number of columns in this partition. -
columns
SortedSet<IColumn> columns
Columns that exist within this table partition. -
constraint
String constraint
Constraint that defines this table partition. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
externalLocation
String externalLocation
External location of this partition, for example: an S3 object location. -
externalLocationFormat
String externalLocationFormat
Format of the external location of this partition, for example: JSON, CSV, PARQUET, etc. -
externalLocationRegion
String externalLocationRegion
Region of the external location of this partition, for example: S3 region. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isPartitioned
Boolean isPartitioned
Whether this partition is further partitioned (true) or not (false). -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
isQueryPreview
Boolean isQueryPreview
Whether preview queries for this partition are allowed (true) or not (false). -
isTemporary
Boolean isTemporary
Whether this partition is temporary (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
parentTable
ITable parentTable
Table in which this partition exists. -
parentTablePartition
ITablePartition parentTablePartition
Partition in which this partition exists. -
partitionCount
Long partitionCount
Number of sub-partitions of this partition. -
partitionList
String partitionList
List of sub-partitions in this partition. -
partitionStrategy
String partitionStrategy
Partition strategy of this partition. -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryPreviewConfig
Map<String,
String> queryPreviewConfig Configuration for the preview queries. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
rowCount
Long rowCount
Number of rows in this partition. -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
sizeBytes
Long sizeBytes
Size of this partition, in bytes. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
typeName
String typeName
Fixed typeName for TablePartitions. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view.
-
-
Class com.atlan.model.assets.TagAttachment
class TagAttachment extends Asset implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.assets.Task
class Task extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
taskActions
List<Action> taskActions
List of actions associated with this task. -
taskCreatedBy
String taskCreatedBy
username of the user who created this task -
taskExecutionAction
String taskExecutionAction
action executed by the recipient -
taskExecutionComment
String taskExecutionComment
comment for the action executed by user -
taskExpiresAt
Long taskExpiresAt
Time (epoch) at which the task expires . -
taskIntegrationConfig
String taskIntegrationConfig
contains external integration config for the task -
taskIsRead
Boolean taskIsRead
flag to make task read/unread -
taskProposals
String taskProposals
contains the payload that is proposed to the task -
taskRecipient
String taskRecipient
recipient of the task -
taskRelatedAssetGuid
String taskRelatedAssetGuid
assetId to preview -
taskRequestor
String taskRequestor
requestor of the task -
taskRequestorComment
String taskRequestorComment
comment of requestor for the task -
taskType
String taskType
type of task -
taskUpdatedBy
String taskUpdatedBy
username of the user who updated this task -
typeName
String typeName
Fixed typeName for Tasks.
-
-
Class com.atlan.model.assets.ThoughtspotAnswer
class ThoughtspotAnswer extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
thoughtspotChartType
String thoughtspotChartType
TBC -
thoughtspotColumnCount
Long thoughtspotColumnCount
Number of Columns. -
thoughtspotJoinCount
Long thoughtspotJoinCount
Total number of data table joins executed for analysis. -
thoughtspotQuestionText
String thoughtspotQuestionText
TBC -
typeName
String typeName
Fixed typeName for ThoughtspotAnswers.
-
-
Class com.atlan.model.assets.ThoughtspotColumn
class ThoughtspotColumn extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
thoughtspotChartType
String thoughtspotChartType
TBC -
thoughtspotColumnCount
Long thoughtspotColumnCount
Number of Columns. -
thoughtspotColumnDataType
String thoughtspotColumnDataType
Specifies the technical format of data stored in a column such as integer, float, string, date, boolean etc. -
thoughtspotColumnType
String thoughtspotColumnType
Defines the analytical role of a column in data analysis categorizing it as a dimension, measure, or attribute. -
thoughtspotJoinCount
Long thoughtspotJoinCount
Total number of data table joins executed for analysis. -
thoughtspotQuestionText
String thoughtspotQuestionText
TBC -
thoughtspotTable
IThoughtspotTable thoughtspotTable
TBC -
thoughtspotTableQualifiedName
String thoughtspotTableQualifiedName
Unique name of the table in which this column exists. -
thoughtspotView
IThoughtspotView thoughtspotView
TBC -
thoughtspotViewQualifiedName
String thoughtspotViewQualifiedName
Unique name of the view in which this column exists. -
thoughtspotWorksheet
IThoughtspotWorksheet thoughtspotWorksheet
TBC -
thoughtspotWorksheetQualifiedName
String thoughtspotWorksheetQualifiedName
Unique name of the worksheet in which this column exists. -
typeName
String typeName
Fixed typeName for ThoughtspotColumns.
-
-
Class com.atlan.model.assets.ThoughtspotDashlet
class ThoughtspotDashlet extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
thoughtspotChartType
String thoughtspotChartType
TBC -
thoughtspotColumnCount
Long thoughtspotColumnCount
Number of Columns. -
thoughtspotJoinCount
Long thoughtspotJoinCount
Total number of data table joins executed for analysis. -
thoughtspotLiveboard
IThoughtspotLiveboard thoughtspotLiveboard
Liveboard in which this dashlet exists. -
thoughtspotLiveboardName
String thoughtspotLiveboardName
Simple name of the liveboard in which this dashlet exists. -
thoughtspotLiveboardQualifiedName
String thoughtspotLiveboardQualifiedName
Unique name of the liveboard in which this dashlet exists. -
thoughtspotQuestionText
String thoughtspotQuestionText
TBC -
typeName
String typeName
Fixed typeName for ThoughtspotDashlets.
-
-
Class com.atlan.model.assets.ThoughtspotLiveboard
class ThoughtspotLiveboard extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
thoughtspotChartType
String thoughtspotChartType
TBC -
thoughtspotColumnCount
Long thoughtspotColumnCount
Number of Columns. -
thoughtspotDashlets
SortedSet<IThoughtspotDashlet> thoughtspotDashlets
Dashlets that exist within this liveboard. -
thoughtspotJoinCount
Long thoughtspotJoinCount
Total number of data table joins executed for analysis. -
thoughtspotQuestionText
String thoughtspotQuestionText
TBC -
typeName
String typeName
Fixed typeName for ThoughtspotLiveboards.
-
-
Class com.atlan.model.assets.ThoughtspotTable
class ThoughtspotTable extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
thoughtspotChartType
String thoughtspotChartType
TBC -
thoughtspotColumnCount
Long thoughtspotColumnCount
Number of Columns. -
thoughtspotColumns
SortedSet<IThoughtspotColumn> thoughtspotColumns
TBC -
thoughtspotJoinCount
Long thoughtspotJoinCount
Total number of data table joins executed for analysis. -
thoughtspotQuestionText
String thoughtspotQuestionText
TBC -
typeName
String typeName
Fixed typeName for ThoughtspotTables.
-
-
Class com.atlan.model.assets.ThoughtspotView
class ThoughtspotView extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
thoughtspotChartType
String thoughtspotChartType
TBC -
thoughtspotColumnCount
Long thoughtspotColumnCount
Number of Columns. -
thoughtspotColumns
SortedSet<IThoughtspotColumn> thoughtspotColumns
TBC -
thoughtspotJoinCount
Long thoughtspotJoinCount
Total number of data table joins executed for analysis. -
thoughtspotQuestionText
String thoughtspotQuestionText
TBC -
typeName
String typeName
Fixed typeName for ThoughtspotViews.
-
-
Class com.atlan.model.assets.ThoughtspotWorksheet
class ThoughtspotWorksheet extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
thoughtspotChartType
String thoughtspotChartType
TBC -
thoughtspotColumnCount
Long thoughtspotColumnCount
Number of Columns. -
thoughtspotColumns
SortedSet<IThoughtspotColumn> thoughtspotColumns
TBC -
thoughtspotJoinCount
Long thoughtspotJoinCount
Total number of data table joins executed for analysis. -
thoughtspotQuestionText
String thoughtspotQuestionText
TBC -
typeName
String typeName
Fixed typeName for ThoughtspotWorksheets.
-
-
Class com.atlan.model.assets.View
class View extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
alias
String alias
Alias for this view. -
applicationContainer
IApplicationContainer applicationContainer
ApplicationContainer asset containing this Catalog asset. -
assetApplicationQualifiedName
String assetApplicationQualifiedName
Qualified name of the Application Container that contains this asset. -
calculationViewName
String calculationViewName
Simple name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
calculationViewQualifiedName
String calculationViewQualifiedName
Unique name of the calculation view in which this SQL asset exists, or empty if it does not exist within a calculation view. -
columnCount
Long columnCount
Number of columns in this view. -
columns
SortedSet<IColumn> columns
Columns that exist within this view. -
databaseName
String databaseName
Simple name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
databaseQualifiedName
String databaseQualifiedName
Unique name of the database in which this SQL asset exists, or empty if it does not exist within a database. -
dbtModels
SortedSet<IDbtModel> dbtModels
TBC -
dbtSources
SortedSet<IDbtSource> dbtSources
TBC -
dbtTests
SortedSet<IDbtTest> dbtTests
TBC -
definition
String definition
SQL definition of this view. -
inputToAirflowTasks
SortedSet<IAirflowTask> inputToAirflowTasks
Tasks to which this asset provides input. -
inputToProcesses
SortedSet<ILineageProcess> inputToProcesses
Processes to which this asset provides input. -
inputToSparkJobs
SortedSet<ISparkJob> inputToSparkJobs
TBC -
isProfiled
Boolean isProfiled
Whether this asset has been profiled (true) or not (false). -
isQueryPreview
Boolean isQueryPreview
Whether preview queries are allowed on this view (true) or not (false). -
isTemporary
Boolean isTemporary
Whether this view is temporary (true) or not (false). -
lastProfiledAt
Long lastProfiledAt
Time (epoch) at which this asset was last profiled, in milliseconds. -
modelImplementedEntities
SortedSet<IModelEntity> modelImplementedEntities
Entities implemented by this asset. -
outputFromAirflowTasks
SortedSet<IAirflowTask> outputFromAirflowTasks
Tasks from which this asset is output. -
outputFromProcesses
SortedSet<ILineageProcess> outputFromProcesses
Processes from which this asset is produced as output. -
outputFromSparkJobs
SortedSet<ISparkJob> outputFromSparkJobs
TBC -
queries
SortedSet<IAtlanQuery> queries
Queries that access this view. -
queryCount
Long queryCount
Number of times this asset has been queried. -
queryCountUpdatedAt
Long queryCountUpdatedAt
Time (epoch) at which the query count was last updated, in milliseconds. -
queryPreviewConfig
Map<String,
String> queryPreviewConfig Configuration for preview queries on this view. -
queryUserCount
Long queryUserCount
Number of unique users who have queried this asset. -
queryUserMap
Map<String,
Long> queryUserMap Map of unique users who have queried this asset to the number of times they have queried it. -
rowCount
Long rowCount
Number of rows in this view. -
schema
ISchema schema
Schema in which this view exists. -
schemaName
String schemaName
Simple name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
schemaQualifiedName
String schemaQualifiedName
Unique name of the schema in which this SQL asset exists, or empty if it does not exist within a schema. -
sizeBytes
Long sizeBytes
Size of this view, in bytes. -
sqlDbtModels
SortedSet<IDbtModel> sqlDbtModels
TBC -
sqlDBTSources
SortedSet<IDbtSource> sqlDBTSources
TBC -
tableName
String tableName
Simple name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
tableQualifiedName
String tableQualifiedName
Unique name of the table in which this SQL asset exists, or empty if it does not exist within a table. -
typeName
String typeName
Fixed typeName for Views. -
viewName
String viewName
Simple name of the view in which this SQL asset exists, or empty if it does not exist within a view. -
viewQualifiedName
String viewQualifiedName
Unique name of the view in which this SQL asset exists, or empty if it does not exist within a view.
-
-
Class com.atlan.model.assets.Workflow
class Workflow extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
typeName
String typeName
Fixed typeName for Workflows. -
workflowConfig
String workflowConfig
Details of the workflow. -
workflowCreatedBy
String workflowCreatedBy
Username of the user who created this workflow. -
workflowDeletedAt
Long workflowDeletedAt
Deletion time of this workflow. -
workflowRunExpiresIn
String workflowRunExpiresIn
Time duration after which a run of this workflow will expire. -
workflowStatus
WorkflowStatus workflowStatus
Status of the workflow. -
workflowTemplateGuid
String workflowTemplateGuid
GUID of the workflow template from which this workflow was created. -
workflowType
WorkflowType workflowType
Type of the workflow. -
workflowUpdatedBy
String workflowUpdatedBy
Username of the user who updated this workflow.
-
-
Class com.atlan.model.assets.WorkflowRun
class WorkflowRun extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
typeName
String typeName
Fixed typeName for WorkflowRuns. -
workflowRunComment
String workflowRunComment
The comment added by the requester -
workflowRunConfig
String workflowRunConfig
Details of the approval workflow run. -
workflowRunCreatedBy
String workflowRunCreatedBy
Username of the user who created this workflow run. -
workflowRunDeletedAt
Long workflowRunDeletedAt
Deletion time of this workflow run. -
workflowRunExpiresAt
Long workflowRunExpiresAt
Time at which this run will expire. -
workflowRunOnAssetGuid
String workflowRunOnAssetGuid
The asset for which this run was created. -
workflowRunStatus
WorkflowRunStatus workflowRunStatus
Status of the run. -
workflowRunType
WorkflowRunType workflowRunType
Type of the workflow from which this run was created. -
workflowRunUpdatedBy
String workflowRunUpdatedBy
Username of the user who updated this workflow run. -
workflowRunWorkflowGuid
String workflowRunWorkflowGuid
GUID of the workflow from which this run was created.
-
-
-
Package com.atlan.model.contracts
-
Class com.atlan.model.contracts.DataContractSpec
class DataContractSpec extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
announcement
DataContractSpec.Announcement announcement
Announcement to apply to the dataset. -
certification
DataContractSpec.Certification certification
Certification to apply to the dataset. -
checks
List<String> checks
List of checks to run to verify data quality of the dataset. -
columns
List<DataContractSpec.DCColumn> columns
Details of each column in the dataset to be governed. -
customMetadataSets
Map<String,
CustomMetadataAttributes> customMetadataSets Custom metadata for the dataset. -
dataset
String dataset
Name of the asset as it exists inside Atlan. -
datasource
String datasource
Name that must match a data source defined in your config file. -
description
String description
Description of this dataset. -
extraProperties
Map<String,
Object> extraProperties Any extra properties provided in the specification (but unknown to this version of the template). -
kind
String kind
Controls the specification as one for a data contract. -
owners
DataContractSpec.Owners owners
Owners of the dataset, which can include users (by username) and / or groups (by internal Atlan alias). -
status
DataContractStatus status
State of the contract. -
tags
List<DataContractSpec.DCTag> tags
Atlan tags for the dataset. -
templateVersion
String templateVersion
Version of the template for the data contract. -
terms
List<String> terms
Glossary terms to assign to the dataset. -
type
String type
Type of the dataset in Atlan.
-
-
Class com.atlan.model.contracts.DCS_V_0_0_2
class DCS_V_0_0_2 extends DataContractSpec implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
templateVersion
String templateVersion
Fixed typeName for Tables.
-
-
-
Package com.atlan.model.core
-
Class com.atlan.model.core.AssetDeletionResponse
class AssetDeletionResponse extends AssetMutationResponse implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.core.AssetMutationResponse
class AssetMutationResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
guidAssignments
Map<String,
String> guidAssignments Map of assigned unique identifiers for the created assets. -
mutatedAssets
MutatedAssets mutatedAssets
Assets that were changed. -
partialUpdatedAssets
List<Asset> partialUpdatedAssets
List of assets that were partially updated. This will only be populated by certain API calls, and actually duplicates the details you'll find inMutatedAssets.PARTIAL_UPDATE
for those same API calls.
-
-
Class com.atlan.model.core.AssetResponse
class AssetResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.core.AsyncCreationResponse
class AsyncCreationResponse extends AssetMutationResponse implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.core.AtlanError
class AtlanError extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
code
Long code
A numeric error code. -
entityGuid
String entityGuid
TBC -
error
String error
A human-readable suggestion on resolving the error. -
errorCode
String errorCode
A short string indicating the error code reported. -
errorDescription
String errorDescription
A human-readable description providing more details about the error. -
errorDetailsMap
Map<String,
String> errorDetailsMap Details about where the error occurred. -
errorMessage
String errorMessage
A human-readable message providing more details about the error. -
info
String info
TBC -
message
String message
A human-readable message providing more details about the error. -
requestId
String requestId
TBC -
servlet
String servlet
TBC -
status
String status
Response code for unauthorized calls. -
url
String url
Path attempted to access for an unauthorized call.
-
-
Class com.atlan.model.core.AtlanObject
class AtlanObject extends Object implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.core.AtlanTag
class AtlanTag extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
entityGuid
String entityGuid
Unique identifier of the entity to which this Atlan tag is attached. -
entityStatus
AtlanStatus entityStatus
Status of the entity. -
propagate
Boolean propagate
Whether to propagate this Atlan tag to other entities related to the entity to which the Atlan tag is attached. -
removePropagationsOnEntityDelete
Boolean removePropagationsOnEntityDelete
Whether to remove this Atlan tag from other entities to which it has been propagated when the Atlan tag is removed from this entity. -
restrictPropagationThroughHierarchy
Boolean restrictPropagationThroughHierarchy
Whether to prevent this Atlan tag from propagating through hierarchy (true) or allow it to propagate through hierarchy (false). -
restrictPropagationThroughLineage
Boolean restrictPropagationThroughLineage
Whether to prevent this Atlan tag from propagating through lineage (true) or allow it to propagate through lineage (false). -
sourceTagAttachments
List<SourceTagAttachment> sourceTagAttachments
List of attachments of this tag to source-specific tags. -
typeName
String typeName
Name of the Atlan tag. Note that this is the static-hashed unique name of the Atlan tag, not the human-readable displayName.
-
-
Class com.atlan.model.core.CustomMetadataAttributes
class CustomMetadataAttributes extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
archivedAttributes
Map<String,
Object> archivedAttributes Mapping of archived custom metadata attributes to values, by human-readable names. Note that the names here will all be of the form<name>-archived-123456789
-
attributes
Map<String,
Object> attributes Mapping of custom metadata attributes to values, all by human-readable names.
-
-
Class com.atlan.model.core.MutatedAssets
class MutatedAssets extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
-
Package com.atlan.model.events
-
Class com.atlan.model.events.AssetCreatePayload
class AssetCreatePayload extends AtlanEventPayload implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.events.AssetDeletePayload
class AssetDeletePayload extends AtlanEventPayload implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.events.AssetUpdatePayload
class AssetUpdatePayload extends AtlanEventPayload implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.events.AtlanEvent
class AtlanEvent extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
msgCompressionKind
String msgCompressionKind
TBC -
msgCreatedBy
String msgCreatedBy
TBC -
msgCreationTime
Long msgCreationTime
Timestamp (epoch) for when the event was created, in milliseconds. -
msgSourceIP
String msgSourceIP
Originating IP address for the event. -
msgSplitCount
Long msgSplitCount
TBC -
msgSplitIdx
Long msgSplitIdx
TBC -
payload
AtlanEventPayload payload
Detailed contents (payload) of the event. -
source
Object source
TBC -
spooled
Boolean spooled
TBC -
version
Object version
TBC
-
-
Class com.atlan.model.events.AtlanEventPayload
class AtlanEventPayload extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
asset
Asset asset
Details of the asset that was impacted by the event. Note that the details some operations (like custom metadata changes) are NOT included in this object, but only in the associated mutatedDetails. -
eventTime
Long eventTime
Time (epoch) the event was triggered in the source system, in milliseconds. -
operationType
String operationType
Type of the operation the event contains a payload for. -
type
String type
Type of the event payload.
-
-
Class com.atlan.model.events.AtlanTagAddPayload
class AtlanTagAddPayload extends AtlanEventPayload implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.events.AtlanTagDeletePayload
class AtlanTagDeletePayload extends AtlanEventPayload implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.events.AwsEventWrapper
class AwsEventWrapper extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
body
String body
Actual contents of the event that was sent by Atlan. -
headers
Map<String,
String> headers Headers that were used when sending the event through to the Lambda URL. -
isBase64Encoded
boolean isBase64Encoded
Whether the contents are base64-encoded (true) or plain text (false). -
rawPath
String rawPath
TBC -
rawQueryString
String rawQueryString
TBC -
requestContext
AwsEventWrapper.AwsRequestContext requestContext
TBC -
routeKey
String routeKey
TBC -
version
String version
TBC
-
-
Class com.atlan.model.events.AwsEventWrapper.AwsRequestContext
class AwsRequestContext extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
accountId
String accountId
Account from which the request originated. -
apiId
String apiId
TBC -
domainName
String domainName
TBC -
domainPrefix
String domainPrefix
TBC -
http
Map<String,
String> http TBC -
requestId
String requestId
TBC -
routeKey
String routeKey
TBC -
stage
String stage
TBC -
time
String time
Time at which the event was received, as a formatted string. -
timeEpoch
Long timeEpoch
Time at which the event was received, epoch-based, in milliseconds.
-
-
Class com.atlan.model.events.CustomMetadataUpdatePayload
class CustomMetadataUpdatePayload extends AtlanEventPayload implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
mutatedDetails
Map<String,
CustomMetadataAttributes> mutatedDetails Map of custom metadata attributes and values defined on the asset. The map is keyed by the human-readable name of the custom metadata set, and the values are a further mapping from human-readable attribute name to the value for that attribute as provided when updating this asset. -
operationType
String operationType
Fixed operation for custom metadata update payloads. -
type
String type
Fixed type for asset-related events.
-
-
-
Package com.atlan.model.lineage
-
Class com.atlan.model.lineage.EntityFilter
class EntityFilter extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
attributeName
String attributeName
Name of the attribute on which filtering should be applied. -
attributeValue
String attributeValue
Value thatEntityFilter.attributeName
's value should be compared against. -
operator
AtlanComparisonOperator operator
Comparison that should be used when checkingEntityFilter.attributeName
's value against the providedEntityFilter.attributeValue
.
-
-
Class com.atlan.model.lineage.FilterList
class FilterList extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
condition
FilterList.Condition condition
Whether the criteria must all match (AND) or any matching is sufficient (OR). -
criteria
List<EntityFilter> criteria
Basis on which to compare a result for inclusion.
-
-
Class com.atlan.model.lineage.LineageFilter
class LineageFilter extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
field
SearchableField field
Field on which filtering should be applied. -
operator
AtlanComparisonOperator operator
Comparison that should be used when checkingLineageFilter.field
's value against the providedLineageFilter.value
. -
value
String value
Value thatLineageFilter.field
's value should be compared against.
-
-
Class com.atlan.model.lineage.LineageListRequest
class LineageListRequest extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
attributes
List<String> attributes
List of attributes to be returned for each asset. -
depth
Integer depth
Number of degrees of separation (hops) across which lineage should be fetched. A depth of1
will fetch the immediate upstream and/or downstream assets, while2
will also fetch the immediate upstream and/or downstream assets of those assets, and so on. A large integer value (for example, 1000000) will therefore in effect fetch all upstream and/or downstream assets. (BEWARE! This could take a long time and result in a very large response payload.) -
direction
AtlanLineageDirection direction
Indicates whether to fetch upstream lineage only, downstream lineage only, or both. -
entityFilters
FilterList entityFilters
Filters to apply on entities. Note that if the values in the properties ofentityFilters
are not valid, then the filter will not be applied and you will receive all values in the response. If your filter seems to be ignored, check that it is valid (if it is invalid it WILL be ignored). -
entityTraversalFilters
FilterList entityTraversalFilters
Filters to apply for skipping traversal based on entities. Any sub-graphs beyond the entities filtered out by these filters will not be included in the lineage result. -
excludeAtlanTags
Boolean excludeAtlanTags
Whether to include Atlan tags for assets (false) or not (true). -
excludeMeanings
Boolean excludeMeanings
Whether to include assigned terms for assets (false) or not (true). -
from
Integer from
Starting point for pagination. -
guid
String guid
Unique identifier of the asset for which to retrieve lineage. -
immediateNeighbors
Boolean immediateNeighbors
Whether to include immediate neighbors of the starting asset in the response. -
relationAttributes
List<String> relationAttributes
List of attributes to be returned for each asset. -
relationshipTraversalFilters
FilterList relationshipTraversalFilters
Filters to apply for skipping traversal based on relationships. Any sub-graphs beyond the relationships filtered out by these filters will not be included in the lineage result. -
size
Integer size
How many results to include in each page of results.
-
-
Class com.atlan.model.lineage.LineageListResponse
class LineageListResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
assets
List<Asset> assets
Entities in the lineage requested. -
client
AtlanClient client
Connectivity to the Atlan tenant where the lineage request was run. -
entityCount
Integer entityCount
Total count of entities returned, equal to the size of theentities
list. -
hasMore
Boolean hasMore
Whether there are more entities present in lineage that can be traversed (true) or not (false). -
searchParameters
LineageListRequest searchParameters
Request used to produce this lineage.
-
-
Class com.atlan.model.lineage.OpenLineageDataset
class OpenLineageDataset extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
_dataset
io.openlineage.client.OpenLineage.Dataset _dataset
Internal definition of the OpenLineage dataset. -
assetName
String assetName
Name of the asset, by OpenLineage standards. For example: DB.SCHEMA.TABLE -
namespace
String namespace
Name of the source where the dataset exists. See: https://github.com/OpenLineage/OpenLineage/blob/main/spec/Naming.md -
openLineage
io.openlineage.client.OpenLineage openLineage
Producer definition for OpenLineage.
-
-
Class com.atlan.model.lineage.OpenLineageEvent
class OpenLineageEvent extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
_builder
io.openlineage.client.OpenLineage.RunEventBuilder _builder
-
_event
io.openlineage.client.OpenLineage.BaseEvent _event
Internal definition of the OpenLineage event. -
inputs
List<OpenLineageInputDataset> inputs
Inputs (sources) for the lineage. -
outputs
List<OpenLineageOutputDataset> outputs
Outputs (targets) for the lineage. -
run
OpenLineageRun run
Complete details about the OpenLineage run.
-
-
Class com.atlan.model.lineage.OpenLineageInputDataset
class OpenLineageInputDataset extends OpenLineageDataset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
_builder
io.openlineage.client.OpenLineage.InputDatasetBuilder _builder
-
-
Class com.atlan.model.lineage.OpenLineageJob
class OpenLineageJob extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
_builder
io.openlineage.client.OpenLineage.JobBuilder _builder
-
_job
io.openlineage.client.OpenLineage.Job _job
Internal definition of the OpenLineage job. -
openLineage
io.openlineage.client.OpenLineage openLineage
Producer definition for OpenLineage.
-
-
Class com.atlan.model.lineage.OpenLineageOutputDataset
class OpenLineageOutputDataset extends OpenLineageDataset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
_builder
io.openlineage.client.OpenLineage.OutputDatasetBuilder _builder
-
toFields
Map<String,
List<io.openlineage.client.OpenLineage.InputField>> toFields Column-level lineage. Each entry should be keyed by the name of a column in this output dataset, and the value should be a list of all input datasets' fields that are used as input into the output column.
-
-
Class com.atlan.model.lineage.OpenLineageRun
class OpenLineageRun extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
_builder
io.openlineage.client.OpenLineage.RunBuilder _builder
-
_run
io.openlineage.client.OpenLineage.Run _run
Internal definition of the OpenLineage run. -
job
OpenLineageJob job
Complete details about the OpenLineage job.
-
-
-
Package com.atlan.model.mesh
-
Class com.atlan.model.mesh.DataProductAssetsDSL
class DataProductAssetsDSL extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
filterScrubbed
Boolean filterScrubbed
Whether or not to filter scrubbed records. -
query
IndexSearchRequest query
Parameters for the search itself.
-
-
-
Package com.atlan.model.relations
-
Class com.atlan.model.relations.GlossaryAntonym
class GlossaryAntonym extends RelationshipAttributes implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.relations.GlossaryAntonym.Antonym
class Antonym extends GlossaryTerm implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
relationshipAttributes
GlossaryAntonym relationshipAttributes
Relationship attributes specific to GlossaryAntonym. -
relationshipType
String relationshipType
Fixed typeName for GlossaryAntonym.
-
-
Class com.atlan.model.relations.GlossaryIsA
class GlossaryIsA extends RelationshipAttributes implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.relations.GlossaryIsA.Classify
class Classify extends GlossaryTerm implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
relationshipAttributes
GlossaryIsA relationshipAttributes
Relationship attributes specific to GlossaryIsA. -
relationshipType
String relationshipType
Fixed typeName for GlossaryIsA.
-
-
Class com.atlan.model.relations.GlossaryIsA.IsA
class IsA extends GlossaryTerm implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
relationshipAttributes
GlossaryIsA relationshipAttributes
Relationship attributes specific to GlossaryIsA. -
relationshipType
String relationshipType
Fixed typeName for GlossaryIsA.
-
-
Class com.atlan.model.relations.GlossaryPreferredTerm
class GlossaryPreferredTerm extends RelationshipAttributes implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.relations.GlossaryPreferredTerm.PreferredTerm
class PreferredTerm extends GlossaryTerm implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
relationshipAttributes
GlossaryPreferredTerm relationshipAttributes
Relationship attributes specific to GlossaryPreferredTerm. -
relationshipType
String relationshipType
Fixed typeName for GlossaryPreferredTerm.
-
-
Class com.atlan.model.relations.GlossaryPreferredTerm.PreferredToTerm
class PreferredToTerm extends GlossaryTerm implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
relationshipAttributes
GlossaryPreferredTerm relationshipAttributes
Relationship attributes specific to GlossaryPreferredTerm. -
relationshipType
String relationshipType
Fixed typeName for GlossaryPreferredTerm.
-
-
Class com.atlan.model.relations.GlossaryRelatedTerm
class GlossaryRelatedTerm extends RelationshipAttributes implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.relations.GlossaryRelatedTerm.SeeAlso
class SeeAlso extends GlossaryTerm implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
relationshipAttributes
GlossaryRelatedTerm relationshipAttributes
Relationship attributes specific to GlossaryRelatedTerm. -
relationshipType
String relationshipType
Fixed typeName for GlossaryRelatedTerm.
-
-
Class com.atlan.model.relations.GlossaryReplacementTerm
class GlossaryReplacementTerm extends RelationshipAttributes implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.relations.GlossaryReplacementTerm.ReplacedBy
class ReplacedBy extends GlossaryTerm implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
relationshipAttributes
GlossaryReplacementTerm relationshipAttributes
Relationship attributes specific to GlossaryReplacementTerm. -
relationshipType
String relationshipType
Fixed typeName for GlossaryReplacementTerm.
-
-
Class com.atlan.model.relations.GlossaryReplacementTerm.ReplacementTerm
class ReplacementTerm extends GlossaryTerm implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
relationshipAttributes
GlossaryReplacementTerm relationshipAttributes
Relationship attributes specific to GlossaryReplacementTerm. -
relationshipType
String relationshipType
Fixed typeName for GlossaryReplacementTerm.
-
-
Class com.atlan.model.relations.GlossarySemanticAssignment
class GlossarySemanticAssignment extends RelationshipAttributes implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
confidence
Integer confidence
TBC -
createdBy
String createdBy
TBC -
description
String description
TBC -
expression
String expression
TBC -
source
String source
TBC -
status
AtlasGlossaryTermRelationshipStatus status
TBC -
steward
String steward
TBC -
typeName
String typeName
Fixed typeName for GlossarySemanticAssignments.
-
-
Class com.atlan.model.relations.GlossarySemanticAssignment.AssignedTerm
class AssignedTerm extends GlossaryTerm implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
relationshipAttributes
GlossarySemanticAssignment relationshipAttributes
Relationship attributes specific to GlossarySemanticAssignment. -
relationshipType
String relationshipType
Fixed typeName for GlossarySemanticAssignment.
-
-
Class com.atlan.model.relations.GlossarySynonym
class GlossarySynonym extends RelationshipAttributes implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.relations.GlossarySynonym.Synonym
class Synonym extends GlossaryTerm implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
relationshipAttributes
GlossarySynonym relationshipAttributes
Relationship attributes specific to GlossarySynonym. -
relationshipType
String relationshipType
Fixed typeName for GlossarySynonym.
-
-
Class com.atlan.model.relations.GlossaryTermCategorization
class GlossaryTermCategorization extends RelationshipAttributes implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
description
String description
TBC -
status
AtlasGlossaryTermRelationshipStatus status
TBC -
typeName
String typeName
Fixed typeName for GlossaryTermCategorizations.
-
-
Class com.atlan.model.relations.GlossaryTermCategorization.Category
class Category extends GlossaryCategory implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
relationshipAttributes
GlossaryTermCategorization relationshipAttributes
Relationship attributes specific to GlossaryTermCategorization. -
relationshipType
String relationshipType
Fixed typeName for GlossaryTermCategorization.
-
-
Class com.atlan.model.relations.GlossaryTermCategorization.Term
class Term extends GlossaryTerm implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
relationshipAttributes
GlossaryTermCategorization relationshipAttributes
Relationship attributes specific to GlossaryTermCategorization. -
relationshipType
String relationshipType
Fixed typeName for GlossaryTermCategorization.
-
-
Class com.atlan.model.relations.GlossaryTranslation
class GlossaryTranslation extends RelationshipAttributes implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.relations.GlossaryTranslation.TranslatedTerm
class TranslatedTerm extends GlossaryTerm implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
relationshipAttributes
GlossaryTranslation relationshipAttributes
Relationship attributes specific to GlossaryTranslation. -
relationshipType
String relationshipType
Fixed typeName for GlossaryTranslation.
-
-
Class com.atlan.model.relations.GlossaryTranslation.TranslationTerm
class TranslationTerm extends GlossaryTerm implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
relationshipAttributes
GlossaryTranslation relationshipAttributes
Relationship attributes specific to GlossaryTranslation. -
relationshipType
String relationshipType
Fixed typeName for GlossaryTranslation.
-
-
Class com.atlan.model.relations.GlossaryValidValue
class GlossaryValidValue extends RelationshipAttributes implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.relations.GlossaryValidValue.ValidValue
class ValidValue extends GlossaryTerm implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
relationshipAttributes
GlossaryValidValue relationshipAttributes
Relationship attributes specific to GlossaryValidValue. -
relationshipType
String relationshipType
Fixed typeName for GlossaryValidValue.
-
-
Class com.atlan.model.relations.GlossaryValidValue.ValidValuesFor
class ValidValuesFor extends GlossaryTerm implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
relationshipAttributes
GlossaryValidValue relationshipAttributes
Relationship attributes specific to GlossaryValidValue. -
relationshipType
String relationshipType
Fixed typeName for GlossaryValidValue.
-
-
Class com.atlan.model.relations.IndistinctRelationship
class IndistinctRelationship extends RelationshipAttributes implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
typeName
String typeName
Create a non-transient typeName to ensure it is included in serde.
-
-
Class com.atlan.model.relations.Reference
class Reference extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
customAttributes
Map<String,
String> customAttributes Attribute(s) that handle custom information direct from source systems. Not to be confused with custom metadata attributes, which are user-defined and user-managed, and are instead found incustomMetadataSets
. -
displayText
String displayText
Human-readable name of the entity. -
entityStatus
String entityStatus
Status of the entity (if this is a related entity). -
guid
String guid
Globally-unique identifier for the entity. -
labels
List<String> labels
Arbitrary textual labels for the asset. -
relationshipAttributes
RelationshipAttributes relationshipAttributes
Attributes specific to the relationship. -
relationshipGuid
String relationshipGuid
Unique identifier of the relationship (when this is a related entity). -
relationshipStatus
AtlanStatus relationshipStatus
Status of the relationship (when this is a related entity). -
relationshipType
String relationshipType
Type of the relationship (if this is a related entity). -
typeName
String typeName
Name of the type that defines the entity. -
uniqueAttributes
UniqueAttributes uniqueAttributes
Attribute(s) that uniquely identify the entity (when this is a related entity). If the guid is not provided, these must be provided.
-
-
Class com.atlan.model.relations.RelationshipAttributes
class RelationshipAttributes extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
typeName
String typeName
Name of the relationship type that defines the relationship.
-
-
Class com.atlan.model.relations.UniqueAttributes
class UniqueAttributes extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.relations.UserDefRelationship
class UserDefRelationship extends RelationshipAttributes implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
Class com.atlan.model.relations.UserDefRelationship.UserDefRelationshipFrom
class UserDefRelationshipFrom extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
relationshipAttributes
UserDefRelationship relationshipAttributes
Relationship attributes specific to UserDefRelationship. -
relationshipType
String relationshipType
Fixed typeName for UserDefRelationship.
-
-
Class com.atlan.model.relations.UserDefRelationship.UserDefRelationshipTo
class UserDefRelationshipTo extends Asset implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
relationshipAttributes
UserDefRelationship relationshipAttributes
Relationship attributes specific to UserDefRelationship. -
relationshipType
String relationshipType
Fixed typeName for UserDefRelationship.
-
-
-
Package com.atlan.model.search
-
Class com.atlan.model.search.AggregationBucketDetails
class AggregationBucketDetails extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
docCount
Long docCount
Number of results that fit within this bucket of the aggregation. -
from
Object from
Start of a range (date, geo, IP, etc), as a number or string. -
fromAsString
String fromAsString
Start of a range, as a string. -
key
Object key
Key of the field representing this bucket of aggregate results. This could be a string, a number (in the case of dates), or an array (in the case of multi-term aggregations). -
keyAsString
String keyAsString
Key of the field representing this bucket of aggregate results, as a string. For example, when the key is a date (numeric) this will be something like "2015-01-01". -
maxMatchingLength
Long maxMatchingLength
TBC -
nestedResults
Map<String,
AggregationResult> nestedResults Nested aggregation results. -
to
Object to
End of a range (date, geo, IP, etc), as a number or string. -
toAsString
String toAsString
End of a range, as a string.
-
-
Class com.atlan.model.search.AggregationBucketResult
class AggregationBucketResult extends AggregationResult implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
buckets
List<AggregationBucketDetails> buckets
List of the top buckets that resulted from the aggregation. -
docCountErrorUpperBound
Long docCountErrorUpperBound
Maximum number of missing documents when a bucket's count is very large and may exceed the shard size of Elasticsearch. The larger this number, the more approximate the values of the counts in the buckets. -
sumOtherDocCount
Long sumOtherDocCount
When there are many unique terms, only the top terms are returned. This gives the sum of all document counts across all buckets that are NOT part of the response.
-
-
Class com.atlan.model.search.AggregationHitsResult
class AggregationHitsResult extends AggregationResult implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
hits
AggregationHitsResult.Hits hits
Details of the hits requested.
-
-
Class com.atlan.model.search.AggregationMetricResult
class AggregationMetricResult extends AggregationResult implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
value
Double value
Value of the requested metric aggregation.
-
-
Class com.atlan.model.search.AggregationResult
class AggregationResult extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.search.AuditSearchRequest
class AuditSearchRequest extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
attributes
List<String> attributes
Attributes to include in the entityDetail of each resulting audit entry. -
dsl
IndexSearchDSL dsl
Parameters for the search itself.
-
-
Class com.atlan.model.search.AuditSearchResponse
class AuditSearchResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
aggregations
Map<String,
AggregationResult> aggregations Map of results for the requested aggregations. -
client
AtlanClient client
Connectivity to the Atlan tenant where the search was run. -
count
Long count
Number of results returned in this response. -
entityAudits
List<EntityAudit> entityAudits
List of results from the search. -
request
AuditSearchRequest request
Request used to produce this audit search response. -
totalCount
Long totalCount
Total number of results.
-
-
Class com.atlan.model.search.CustomMetadataAttributesAuditDetail
class CustomMetadataAttributesAuditDetail extends CustomMetadataAttributes implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.search.EntityAudit
class EntityAudit extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
action
AuditActionType action
The type of activity that was done. -
created
Long created
Time (epoch) at which the activity completed, in milliseconds. -
detail
AuditDetail detail
Details of the activity. In practice this will either be details about an Atlan tag (for Atlan tag- related actions) or an asset (for other actions). -
details
Object details
Unused. -
entity
Object entity
Unused. -
entityDetail
Asset entityDetail
Minimal details about the asset that was acted upon. Note that this contains current details about the asset, not the state of the asset immediately before or after the given activity. -
entityId
String entityId
Unique identifier (GUID) of the asset. -
entityQualifiedName
String entityQualifiedName
Unique name of the asset. -
eventKey
String eventKey
Unique identifier of the activity. -
headers
Map<String,
String> headers Headers detailing how the action was taken, if not by a user. -
timestamp
Long timestamp
Time (epoch) at which the activity started, in milliseconds. -
type
Object type
Unused. -
typeName
String typeName
Type of the asset. -
user
String user
User who carried out the activity.
-
-
Class com.atlan.model.search.IndexSearchDSL
class IndexSearchDSL extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
aggregations
Map<String,
co.elastic.clients.elasticsearch._types.aggregations.Aggregation> aggregations (Optional) Aggregation to apply to the query. -
from
Integer from
Starting point for paging. Defaults to 0 (very first result) if not overridden. -
query
co.elastic.clients.elasticsearch._types.query_dsl.Query query
Query to run. -
size
Integer size
Number of results to return per page. Defaults to 300 results per page if not overridden. -
sort
List<co.elastic.clients.elasticsearch._types.SortOptions> sort
(Optional) Properties by which to sort the results. -
trackTotalHits
Boolean trackTotalHits
When true, specify the precise number of results in the response, otherwise estimate and max-out at 10,000. (Defaults to true.)
-
-
Class com.atlan.model.search.IndexSearchRequest
class IndexSearchRequest extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
allowDeletedRelations
Boolean allowDeletedRelations
Whether to include deleted relationships to this asset (true) or not (false). By default, this is false and therefore only active (not deleted) relationships will be included. -
attributes
List<String> attributes
Attributes to include on each result document. -
dsl
IndexSearchDSL dsl
Parameters for the search itself. -
excludeAtlanTags
Boolean excludeAtlanTags
Whether to include Atlan tags for assets (false) or not (true). By default, this is false and Atlan tags are therefore included. -
excludeMeanings
Boolean excludeMeanings
Whether to include term relationships for assets (false) or not (true). By default, this is false and term relationships are therefore included. -
includeAtlanTagNames
Boolean includeAtlanTagNames
Whether to include Atlan tag names for assets (true) or not (false). By default, this is true and Atlan tag names are therefore included. Note that this can be set to true even when excludeAtlanTags is set to false. -
relationAttributes
List<String> relationAttributes
Attributes to include on each related entity of each result document. -
requestMetadata
IndexSearchRequest.Metadata requestMetadata
Controls how the search is logged (if at all). -
requestRelationshipAttrsForSearch
Boolean requestRelationshipAttrsForSearch
Whether to include relationship-level attributes for any relationships to each asset (true) or not (false). By default, this is false and therefore relationship-level attributes are not included. -
showSearchScore
Boolean showSearchScore
When true, include the score of each result. By default, this is false and scores are excluded. -
suppressLogs
Boolean suppressLogs
TBC
-
-
Class com.atlan.model.search.IndexSearchRequest.Metadata
class Metadata extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.search.IndexSearchResponse
class IndexSearchResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
aggregations
Map<String,
AggregationResult> aggregations Map of results for the requested aggregations. -
approximateCount
Long approximateCount
Approximate number of total results. -
assets
List<Asset> assets
List of results from the search. -
client
AtlanClient client
Connectivity to the Atlan tenant where the search was run. -
queryType
String queryType
Type of query. -
searchParameters
SearchParameters searchParameters
Parameters for the search.
-
-
Class com.atlan.model.search.SearchLogEntry
class SearchLogEntry extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
createdAt
Long createdAt
Time (epoch-style) at which the search was logged, in milliseconds. -
failed
Boolean failed
Whether the search was successful (false) or not (true). -
hasResult
Boolean hasResult
Whether the search had any results (true) or not (false). -
host
String host
Hostname of the tenant against which the search was run. -
ipAddress
String ipAddress
IP address from which the search was run. -
requestAttributes
List<String> requestAttributes
List of attribute (names) that were requested as part of the search. -
requestDsl
IndexSearchDSL requestDsl
DSL of the full search request that was made. -
requestDslText
String requestDslText
DSL of the full search request that was made, as a string. -
requestRelationAttributes
List<String> requestRelationAttributes
List of relationship attribute (names) that were requested as part of the search. -
responseTime
Long responseTime
Elapsed time to produce the results for the search, in milliseconds. -
resultGuids
List<String> resultGuids
List of all GUIDs for assets that were results of the search. -
resultGuidsAllowed
List<String> resultGuidsAllowed
List of all GUIDs for assets that were results of the search, that the user is permitted to see. -
resultQualifiedNames
List<String> resultQualifiedNames
List of all qualifiedNames for assets that were results of the search. -
resultQualifiedNamesAllowed
List<String> resultQualifiedNamesAllowed
List of all qualifiedNames for assets that were results of the search, that the user is permitted to see. -
resultsCount
Long resultsCount
Number of results for the search. -
resultTypeNames
List<String> resultTypeNames
List of all typeNames for assets that were results of the search. -
resultTypeNamesAllowed
List<String> resultTypeNamesAllowed
List of all typeNames for assets that were results of the search, that the user is permitted to see. -
searchInput
String searchInput
Text a user entered for their search. -
timestamp
Long timestamp
Time (epoch-style) at which the search was run, in milliseconds. -
userAgent
String userAgent
Details of the browser or other client used to make the request. -
userName
String userName
Username of the user who ran the search. -
utmTags
List<String> utmTags
List of the UTM tags that were sent in the search request.
-
-
Class com.atlan.model.search.SearchLogRequest
class SearchLogRequest extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
dsl
IndexSearchDSL dsl
Parameters for the search itself.
-
-
Class com.atlan.model.search.SearchLogResponse
class SearchLogResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
aggregations
Map<String,
AggregationResult> aggregations Map of results for the requested aggregations. -
approximateCount
Long approximateCount
Approximate number of total results. -
client
AtlanClient client
Connectivity to the Atlan tenant where the search was run. -
logEntries
List<SearchLogEntry> logEntries
List of results from the search. -
searchParameters
SearchLogRequest searchParameters
Parameters for the search.
-
-
Class com.atlan.model.search.SearchParameters
class SearchParameters extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
allowDeletedRelations
Boolean allowDeletedRelations
TBC -
attributes
List<String> attributes
List of attributes that were requested in the search. -
excludeAtlanTags
Boolean excludeAtlanTags
Whether the Atlan tags of assets are excluded from the results (true) or not (false). -
excludeMeanings
Boolean excludeMeanings
Whether the term relationships for assets are excluded from the results (true) or not (false). -
query
String query
Query that was run to produce these search results. Note that this is in string form, rather than a JSON object, but is equivalent content toIndexSearchDSL
. -
relationAttributes
List<String> relationAttributes
List of attributes that were requested to be included on each relationship found in the search. -
showSearchScore
Boolean showSearchScore
Whether to show the score associated with a result (true) or not (false). -
suppressLogs
Boolean suppressLogs
TBC
-
-
Class com.atlan.model.search.SuggestionResponse
class SuggestionResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
assignedTerms
List<SuggestionResponse.SuggestedTerm> assignedTerms
Suggested terms. -
atlanTags
List<SuggestionResponse.SuggestedItem> atlanTags
Suggested tags. -
ownerGroups
List<SuggestionResponse.SuggestedItem> ownerGroups
Suggested group owners. -
ownerUsers
List<SuggestionResponse.SuggestedItem> ownerUsers
Suggested individual user owners. -
systemDescriptions
List<SuggestionResponse.SuggestedItem> systemDescriptions
Suggested system-level descriptions. -
userDescriptions
List<SuggestionResponse.SuggestedItem> userDescriptions
Suggested user-provided descriptions.
-
-
-
Package com.atlan.model.structs
-
Class com.atlan.model.structs.Action
class Action extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
taskActionDisplayText
String taskActionDisplayText
Display text for the UI component -
taskActionFulfillmentMethod
String taskActionFulfillmentMethod
method to call to take action -
taskActionFulfillmentPayload
String taskActionFulfillmentPayload
payload to send to the fulfillment endpoint -
taskActionFulfillmentUrl
String taskActionFulfillmentUrl
url to call to take action -
typeName
String typeName
Fixed typeName for Action.
-
-
Class com.atlan.model.structs.AtlanStruct
class AtlanStruct extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
typeName
String typeName
Name of the type that defines the struct.
-
-
Class com.atlan.model.structs.AuthPolicyCondition
class AuthPolicyCondition extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.structs.AuthPolicyValiditySchedule
class AuthPolicyValiditySchedule extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
Class com.atlan.model.structs.AwsCloudWatchMetric
class AwsCloudWatchMetric extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.structs.AwsTag
class AwsTag extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.structs.AzureTag
class AzureTag extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.structs.BadgeCondition
class BadgeCondition extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
badgeConditionColorhex
String badgeConditionColorhex
Color (in RGB hex, with a # prefix) to use when custom metadata attribute's content matches the value through the comparison operator. -
badgeConditionOperator
BadgeComparisonOperator badgeConditionOperator
Comparison operator to use when comparing a custom metadata attribute's value. -
badgeConditionValue
String badgeConditionValue
Value against which to compare the custom metadata attribute's content. -
typeName
String typeName
Fixed typeName for BadgeCondition.
-
-
Class com.atlan.model.structs.ColumnValueFrequencyMap
class ColumnValueFrequencyMap extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.structs.DbtJobRun
class DbtJobRun extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
dbtCompiledCode
String dbtCompiledCode
compiled code executed by a dbt model/test triggered by this dbt job run instance -
dbtCompiledSQL
String dbtCompiledSQL
compiled sql executed by a dbt model/test triggered by this dbt job run instance -
dbtEnvironmentId
String dbtEnvironmentId
Unique environment id for the DBT job -
dbtEnvironmentName
String dbtEnvironmentName
Environment name where the DBT job runs -
dbtJobId
String dbtJobId
Unique Id of the DBT job -
dbtJobName
String dbtJobName
Name of the DBT job instance -
dbtJobRunCompletedAt
Long dbtJobRunCompletedAt
Dbt job instance run completion timestamp -
dbtJobRunId
String dbtJobRunId
Unique id for the DBT job run -
dbtJobRunStatus
String dbtJobRunStatus
Status of the dbt job run -
dbtModelRunStatus
String dbtModelRunStatus
Status of the dbt model executed by current job run -
dbtTestRunStatus
String dbtTestRunStatus
Status of the dbt test executed by current job run -
typeName
String typeName
Fixed typeName for DbtJobRun.
-
-
Class com.atlan.model.structs.DbtMetricFilter
class DbtMetricFilter extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
dbtMetricFilterColumnQualifiedName
String dbtMetricFilterColumnQualifiedName
Unique name of the column the metric filter applies to. -
dbtMetricFilterField
String dbtMetricFilterField
TBC -
dbtMetricFilterOperator
String dbtMetricFilterOperator
TBC -
dbtMetricFilterValue
String dbtMetricFilterValue
TBC -
typeName
String typeName
Fixed typeName for DbtMetricFilter.
-
-
Class com.atlan.model.structs.GoogleLabel
class GoogleLabel extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.structs.GoogleTag
class GoogleTag extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.structs.Histogram
class Histogram extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.structs.KafkaTopicConsumption
class KafkaTopicConsumption extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
topicCurrentOffset
Long topicCurrentOffset
Current offset of the Kafka topic. -
topicLag
Long topicLag
Lag of the Kafka topic. -
topicName
String topicName
Name of the Kafka topic. -
topicPartition
String topicPartition
Partition of the Kafka topic. -
typeName
String typeName
Fixed typeName for KafkaTopicConsumption.
-
-
Class com.atlan.model.structs.MCRuleComparison
class MCRuleComparison extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
mcRuleComparisonField
String mcRuleComparisonField
Field being compared. -
mcRuleComparisonIsThresholdRelative
Boolean mcRuleComparisonIsThresholdRelative
Whether the threshold comparison is relative (true) or absolute (false). -
mcRuleComparisonMetric
String mcRuleComparisonMetric
Metric being compared. -
mcRuleComparisonOperator
String mcRuleComparisonOperator
Operator used for the comparison, for example greater than (GT). -
mcRuleComparisonThreshold
Double mcRuleComparisonThreshold
Threshold being compared. -
mcRuleComparisonType
String mcRuleComparisonType
Type of comparison, for example threshold. -
typeName
String typeName
Fixed typeName for MCRuleComparison.
-
-
Class com.atlan.model.structs.MCRuleSchedule
class MCRuleSchedule extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
mcRuleScheduleCrontab
String mcRuleScheduleCrontab
Crontab for the schedule. -
mcRuleScheduleIntervalInMinutes
Integer mcRuleScheduleIntervalInMinutes
How often the monitor should run, in minutes. -
mcRuleScheduleStartTime
Long mcRuleScheduleStartTime
When the first execution of the rule should occur (blank means immediate). -
mcRuleScheduleType
String mcRuleScheduleType
Type of schedule for the rule, for example dynamic or manual. -
typeName
String typeName
Fixed typeName for MCRuleSchedule.
-
-
Class com.atlan.model.structs.PopularityInsights
class PopularityInsights extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
recordComputeCost
Double recordComputeCost
Total compute cost for running all queries. -
recordComputeCostUnit
SourceCostUnitType recordComputeCostUnit
Unit of measure for recordComputeCost. -
recordLastTimestamp
Long recordLastTimestamp
Timestamp of last operation or query run by the user. -
recordMaxComputeCost
Double recordMaxComputeCost
Maximum compute cost across all query runs. -
recordQuery
String recordQuery
Query run at source. -
recordQueryCount
Long recordQueryCount
Number of queries run by the user. -
recordQueryDuration
Long recordQueryDuration
Duration for which the query ran at source. -
recordTotalUserCount
Long recordTotalUserCount
Total number of users who ran queries. -
recordUser
String recordUser
Username or email of the user who ran the queries. -
recordWarehouse
String recordWarehouse
Name of the warehouse on which the queries were run. -
typeName
String typeName
Fixed typeName for PopularityInsights.
-
-
Class com.atlan.model.structs.SourceTagAttachment
class SourceTagAttachment extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
isSourceTagSynced
Boolean isSourceTagSynced
Whether the tag attachment has been synced at the source (true) or not (false). -
sourceTagConnectorName
String sourceTagConnectorName
Connector that is the source of the tag. -
sourceTagGuid
String sourceTagGuid
Unique identifier (GUID) of the source tag, in Atlan. -
sourceTagName
String sourceTagName
Simple name of the source tag. -
sourceTagQualifiedName
String sourceTagQualifiedName
Unique name of the source tag, in Atlan. -
sourceTagSyncError
String sourceTagSyncError
Error message if the tag attachment sync at the source failed. -
sourceTagSyncTimestamp
Long sourceTagSyncTimestamp
Time (epoch) when the tag attachment was synced at the source, in milliseconds. -
sourceTagValues
List<SourceTagAttachmentValue> sourceTagValues
Value of the tag attachment, from the source. -
typeName
String typeName
Fixed typeName for SourceTagAttachment.
-
-
Class com.atlan.model.structs.SourceTagAttachmentValue
class SourceTagAttachmentValue extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.structs.SourceTagAttribute
class SourceTagAttribute extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
tagAttributeKey
String tagAttributeKey
Attribute key, for example: 'allowedValues' or 'enabled'. -
tagAttributeProperties
Map<String,
String> tagAttributeProperties Properties of the attribute. -
tagAttributeValue
String tagAttributeValue
Attribute value, for example: '["Private", "PII"]' for allowedValues key or 'true' for enabled key. -
typeName
String typeName
Fixed typeName for SourceTagAttribute.
-
-
Class com.atlan.model.structs.StarredDetails
class StarredDetails extends AtlanStruct implements Serializable- serialVersionUID:
- 2L
-
-
Package com.atlan.model.tasks
-
Class com.atlan.model.tasks.AtlanTask
class AtlanTask extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
attemptCount
Long attemptCount
Number of times the task has been attempted. -
classificationId
String classificationId
TBC -
createdBy
String createdBy
User who created the task. -
createdTime
Long createdTime
Time (epoch) at which the task was created, in milliseconds. -
endTime
Long endTime
Time (epoch) at which the task was ended, in milliseconds. -
entityGuid
String entityGuid
Unique identifier of the asset the task originated from. -
guid
String guid
Unique identifier of the task. -
parameters
Map<String,
Object> parameters Parameters used for running the task. -
startTime
Long startTime
Time (epoch) at which the task was started, in milliseconds. -
status
AtlanTaskStatus status
Status of the task. -
timeTakenInSeconds
Long timeTakenInSeconds
Total time taken to complete the task, in seconds. -
type
AtlanTaskType type
Type of the task. -
updatedTime
Long updatedTime
Time (epoch) at which the task was last updated, in milliseconds.
-
-
Class com.atlan.model.tasks.TaskSearchRequest
class TaskSearchRequest extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
dsl
IndexSearchDSL dsl
Parameters for the search itself.
-
-
Class com.atlan.model.tasks.TaskSearchResponse
class TaskSearchResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
aggregations
Map<String,
AggregationResult> aggregations Map of results for the requested aggregations. -
approximateCount
Long approximateCount
Total number of results. -
client
AtlanClient client
Connectivity to the Atlan tenant where the search was run. -
request
TaskSearchRequest request
Request used to produce this task queue response. -
tasks
List<AtlanTask> tasks
List of results from the search.
-
-
-
Package com.atlan.model.typedefs
-
Class com.atlan.model.typedefs.AtlanTagDef
class AtlanTagDef extends TypeDef implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
category
AtlanTypeCategory category
Fixed category for Atlan tag typedefs. -
entityTypes
List<String> entityTypes
List of the types of entities that the Atlan tag can be applied to. -
options
AtlanTagOptions options
Options that describe the Atlan tag. -
skipDisplayNameUniquenessCheck
Boolean skipDisplayNameUniquenessCheck
TBC -
subTypes
List<String> subTypes
Unused. -
superTypes
List<String> superTypes
Unused.
-
-
Class com.atlan.model.typedefs.AtlanTagOptions
class AtlanTagOptions extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
color
String color
Color to use for the Atlan tag. -
emoji
String emoji
If theiconType
is emoji, this should hold the emoji character. -
iconName
AtlanIcon iconName
Name of icon to use to represent the tag visually. -
iconType
TagIconType iconType
Type of icon to use for representing the tag visually. -
imageID
String imageID
Unique identifier (GUID) of an image to use for the tag.
-
-
Class com.atlan.model.typedefs.AttributeDef
class AttributeDef extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
autoUpdateAttributes
Map<String,
List<String>> autoUpdateAttributes TBC -
cardinality
AtlanCustomAttributeCardinality cardinality
Specifies whether the attribute is single or multivalued. -
constraints
List<Constraint> constraints
TBC -
defaultValue
String defaultValue
Specifies an (optional) default value for the attribute. -
description
String description
Explanation of the attribute. -
displayName
String displayName
Human-readable name of the attribute. -
enumValues
List<String> enumValues
List of values for an enumeration. -
includeInNotification
Boolean includeInNotification
Whether changes to this attribute's value generate an event (true) or not (false). -
indexType
String indexType
TBC -
indexTypeESConfig
Map<String,
String> indexTypeESConfig TBC -
indexTypeESFields
Map<String,
Map<String, String>> indexTypeESFields TBC -
isDefaultValueNull
Boolean isDefaultValueNull
Indicates whether the attribute has a default value of being empty (true) or not (false). -
isIndexable
Boolean isIndexable
Specifies whether the attribute can be searched (true) or not (false). -
isNew
Boolean isNew
Whether the attribute is being newly created (true) or not (false). -
isOptional
Boolean isOptional
Indicates whether the attribute is mandatory (false) or optional (true). -
isUnique
Boolean isUnique
Specifies whether the attribute must have unique values (true) or not (false). -
name
String name
Internal hashed-string name for the attribute. -
options
AttributeDefOptions options
Options for the attribute. -
searchWeight
Long searchWeight
TBC -
skipScrubbing
Boolean skipScrubbing
TBC -
typeName
String typeName
Type of the attribute.- This can either be a primitive Atlan type or the name of a custom metadata enumeration (options).
- The primitive Atlan types' values are defined in the
AtlanCustomAttributePrimitiveType
enumeration. - Note: there are a number of custom types there as well (
users
,groups
,url
, andSQL
). ThetypeName
for all of these custom types isSTRING
, and the more detailed type only appears in theAttributeDef.options
. - For fields that can be multivalued, use
array<type>
for the typeName.
-
valuesMaxCount
Long valuesMaxCount
Specifies the maximum number of values the attribute can have. -
valuesMinCount
Long valuesMinCount
Specifies the minimum number of values the attribute can have.
-
-
Class com.atlan.model.typedefs.AttributeDefOptions
class AttributeDefOptions extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
allowFiltering
Boolean allowFiltering
Whether this attribute should appear in the filterable facets of discovery (true) or not (false). -
allowSearch
Boolean allowSearch
Whether the attribute should be searchable (true) or not (false). -
applicableAssetTypes
Set<String> applicableAssetTypes
Asset type names to which to restrict the attribute. Only assets of one of these types will have this attribute available. To further restrict the assets for this custom metadata by connection, seeAttributeDefOptions.applicableConnections
. -
applicableConnections
Set<String> applicableConnections
Qualified names of connections to which to restrict the attribute. Only assets within one of these connections will have this attribute available. To further restrict the types of assets within the connections, seeAttributeDefOptions.applicableAssetTypes
. -
applicableDomains
Set<String> applicableDomains
Qualified names of domains to which to restrict the attribute. Only domains and data products within one of these domains will have this attribute available. To further restrict the types of assets within the domains, seeAttributeDefOptions.applicableDomainTypes
. -
applicableDomainTypes
Set<String> applicableDomainTypes
Data product type names to which to restrict the attribute. These cover asset types in data products and data domains. Only assets of one of these types will have this attribute available. -
applicableEntityTypes
Set<String> applicableEntityTypes
Set of entities on which this attribute can be applied. Note: generally this should be left as-is. Any overrides should instead be applied through one or more ofAttributeDefOptions.applicableAssetTypes
,AttributeDefOptions.applicableGlossaryTypes
, orAttributeDefOptions.applicableOtherAssetTypes
. -
applicableGlossaries
Set<String> applicableGlossaries
Qualified names of glossaries to which to restrict the attribute. Only glossary assets within one of these glossaries will have this attribute available. To further restrict the types of assets within the glossaries, seeAttributeDefOptions.applicableGlossaryTypes
. -
applicableGlossaryTypes
Set<String> applicableGlossaryTypes
Glossary type names to which to restrict the attribute. Only glossary assets of one of these types will have this attribute available. To further restrict the glossary content for this custom metadata by glossary, seeAttributeDefOptions.applicableGlossaries
. -
applicableOtherAssetTypes
Set<String> applicableOtherAssetTypes
Any other asset type names to which to restrict the attribute. These cover any asset type that is not managed within a connection or a glossary. Only assets of one of these types will have this attribute available. -
archivedAt
Long archivedAt
When the attribute was deleted. -
archivedBy
String archivedBy
User who deleted the attribute. -
customApplicableEntityTypes
Set<String> customApplicableEntityTypes
Deprecated.seeAttributeDefOptions.applicableAssetTypes
,AttributeDefOptions.applicableGlossaryTypes
,AttributeDefOptions.applicableOtherAssetTypes
insteadSet of entities on which this attribute should appear. Note: this is only used when customMetadataVersion is less than v2. -
customMetadataVersion
String customMetadataVersion
Indicates the version of the custom metadata structure. This determines which other options are available and used. -
customType
String customType
Used for Atlan-specific types likeusers
,groups
,url
, andSQL
. -
description
String description
Optional description of the attribute. -
enumType
String enumType
Name of the enumeration (options), when the attribute is an enumeration. -
hasTimePrecision
Boolean hasTimePrecision
If true for a date attribute, then time-level precision is also available in the UI (otherwise only date-level) -
isAppendOnPartialUpdate
String isAppendOnPartialUpdate
TBC -
isArchived
Boolean isArchived
Whether the attribute has been deleted (true) or is still active (false). -
isDeprecated
String isDeprecated
Whether the attribute is deprecated ("true") or not (null or "false"). -
isEnum
Boolean isEnum
Whether the attribute is an enumeration (true) or not (false). -
isSoftReference
String isSoftReference
TBC -
maxStrLength
String maxStrLength
Maximum length allowed for a string value. -
multiValueSelect
Boolean multiValueSelect
Whether this attribute can have multiple values (true) or only a single value (false). -
primitiveType
AtlanCustomAttributePrimitiveType primitiveType
Primitive type of the attribute. -
showInOverview
Boolean showInOverview
Whether users will see this attribute in the overview tab of the sidebar (true) or not (false).
-
-
Class com.atlan.model.typedefs.Constraint
class Constraint extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.typedefs.CustomMetadataDef
class CustomMetadataDef extends TypeDef implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
category
AtlanTypeCategory category
Fixed category for custom metadata typedefs. -
options
CustomMetadataOptions options
Options for the custom metadata.
-
-
Class com.atlan.model.typedefs.CustomMetadataOptions
class CustomMetadataOptions extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
emoji
String emoji
If thelogoType
is emoji, this should hold the emoji character. -
iconColor
AtlanTagColor iconColor
Color to use for the icon. -
iconName
AtlanIcon iconName
Icon to use to represent the custom metadata. -
imageId
String imageId
Unique identifier (GUID) of the image used for the logo, for logos that are uploaded directly to Atlan. -
isLocked
String isLocked
Indicates whether the custom metadata can be managed in the UI (false) or not (true). -
logoType
LogoType logoType
Type of logo used for the custom metadata. -
logoUrl
String logoUrl
If thelogoType
is image, this should hold a URL to the image.
-
-
Class com.atlan.model.typedefs.EntityDef
class EntityDef extends TypeDef implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
businessAttributeDefs
Map<String,
Object> businessAttributeDefs Unused. -
category
AtlanTypeCategory category
Fixed category for entity typedefs. -
relationshipAttributeDefs
List<RelationshipAttributeDef> relationshipAttributeDefs
Relationships that can exist for the entity. -
subTypes
List<String> subTypes
Subtypes of this entity type. -
superTypes
List<String> superTypes
Supertypes of this entity type.
-
-
Class com.atlan.model.typedefs.EnumDef
class EnumDef extends TypeDef implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
category
AtlanTypeCategory category
Fixed category for enum typedefs. -
elementDefs
List<EnumDef.ElementDef> elementDefs
Individual valid values for the enumeration.
-
-
Class com.atlan.model.typedefs.EnumDef.ElementDef
class ElementDef extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.typedefs.RelationshipAttributeDef
class RelationshipAttributeDef extends AttributeDef implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.typedefs.RelationshipDef
class RelationshipDef extends TypeDef implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
businessAttributeDefs
Map<String,
Object> businessAttributeDefs Unused. -
category
AtlanTypeCategory category
Fixed category for entity typedefs. -
endDef1
RelationshipEndDef endDef1
Definition for the first endpoint of the relationship. -
endDef2
RelationshipEndDef endDef2
Definition for the second endpoint of the relationship. -
propagateTags
PropagateTags propagateTags
Whether Atlan tags should propagate through this relationship, and if so in which direction(s). -
relationshipAttributeDefs
List<RelationshipAttributeDef> relationshipAttributeDefs
Relationships that can exist for the entity. -
relationshipCategory
RelationshipCategory relationshipCategory
Style of relationship in regard to containment and lifecycle. -
relationshipLabel
String relationshipLabel
TBC -
subTypes
List<String> subTypes
Subtypes of this entity type. -
superTypes
List<String> superTypes
Supertypes of this entity type.
-
-
Class com.atlan.model.typedefs.RelationshipEndDef
class RelationshipEndDef extends AttributeDef implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
cardinality
AtlanCustomAttributeCardinality cardinality
Cardinality of this end of the relationship. -
description
String description
Description of the relationship from this end of it. -
isContainer
Boolean isContainer
Whether this end of the relationship is a container ("owns" the other end's assets). -
isLegacyAttribute
Boolean isLegacyAttribute
TBC -
name
String name
Name of the attribute that represents this end of the relationship. -
type
String type
Name of the type definition (entity type) for the other end of the relationship.
-
-
Class com.atlan.model.typedefs.StructDef
class StructDef extends TypeDef implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
category
AtlanTypeCategory category
Fixed category for struct typedefs.
-
-
Class com.atlan.model.typedefs.TypeDef
class TypeDef extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
attributeDefs
List<AttributeDef> attributeDefs
List of attributes defined within the type definition. -
createdBy
String createdBy
User who created the type definition. -
createTime
Long createTime
Time (epoch) in milliseconds when the type definition was created. -
description
String description
Explanation of the type definition. -
displayName
String displayName
Human-readable name of the type definition. -
guid
String guid
Unique identifier for the type definition. -
name
String name
Internal hashed-string name for the type definition. -
serviceType
String serviceType
TBC -
typeVersion
String typeVersion
TBC -
updatedBy
String updatedBy
User who last updated the type definition. -
updateTime
Long updateTime
Time (epoch) in milliseconds when the type definition was last updated. -
version
Long version
TBC
-
-
Class com.atlan.model.typedefs.TypeDefResponse
class TypeDefResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
atlanTagDefs
List<AtlanTagDef> atlanTagDefs
List of Atlan tag type definitions. -
customMetadataDefs
List<CustomMetadataDef> customMetadataDefs
List of custom metadata type definitions. -
entityDefs
List<EntityDef> entityDefs
List of entity type definitions. -
enumDefs
List<EnumDef> enumDefs
List of enumeration type definitions. -
relationshipDefs
List<RelationshipDef> relationshipDefs
List of relationship type definitions. -
structDefs
List<StructDef> structDefs
List of struct type definitions.
-
-
-
Package com.atlan.model.workflow
-
Class com.atlan.model.workflow.NameValuePair
class NameValuePair extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.workflow.PlaybookAction
class PlaybookAction extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
actionsSchema
PlaybookActionSchema actionsSchema
Detail of the singular action to apply. -
config
PlaybookActionConfig config
Configuration for the action to take. -
type
PlaybookActionType type
Type of action to take.
-
-
Class com.atlan.model.workflow.PlaybookActionConfig
class PlaybookActionConfig extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
atlanTagsConfig
String atlanTagsConfig
Details of the Atlan tag(s) to apply, for bulk-Atlan tag actions. -
outputFilename
String outputFilename
Filename for the template being output. -
replaceAtlanTags
Boolean replaceAtlanTags
Whether to replace all Atlan tags (true) or none (false). -
replaceCustomMetadata
Boolean replaceCustomMetadata
Whether to replace all custom metadata (true) or none (false). -
template
String template
Base64-encoded jinja template detailing the action.
-
-
Class com.atlan.model.workflow.PlaybookActionSchema
class PlaybookActionSchema extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
operand
String operand
Attribute on which to take the action. -
operator
PlaybookActionOperator operator
Specific action to take on the attribute. -
value
Object value
Value to apply through the action.
-
-
Class com.atlan.model.workflow.PlaybookRule
class PlaybookRule extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
actions
List<PlaybookAction> actions
Actions to apply to the matching assets. -
actionsUISchema
Object actionsUISchema
UI-based form of the actions to apply on the matching assets. -
config
PlaybookRuleConfig config
Configuration of the search filter for the rule. -
filterSchema
Object filterSchema
UI-based form of the search filter for the rule. -
name
String name
Human-readable name of the rule. -
type
String type
Type of rule.
-
-
Class com.atlan.model.workflow.PlaybookRuleConfig
class PlaybookRuleConfig extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
filterScrubbed
Boolean filterScrubbed
Whether to exclude scrubbed assets (true) or include them (false). -
query
IndexSearchRequest query
Search to run to filter results for the actions.
-
-
Class com.atlan.model.workflow.Workflow
class Workflow extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
metadata
WorkflowMetadata metadata
Metadata that describes the workflow. -
payload
List<PackageParameter> payload
Parameters to send to the workflow as a whole (not an individual task). -
spec
WorkflowSpec spec
Specification of the workflow: per-task inputs, outputs, and logic.
-
-
Class com.atlan.model.workflow.WorkflowDAG
class WorkflowDAG extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
tasks
List<WorkflowTask> tasks
Tasks within this step.
-
-
Class com.atlan.model.workflow.WorkflowMetadata
class WorkflowMetadata extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
annotations
Map<String,
String> annotations Annotations that describe the workflow. These are usually a combination of keys that start withorchestration.atlan.com
andpackage.argoproj.io
. -
creationTimestamp
String creationTimestamp
Time at which the workflow was created, as a formatted string. -
generateName
String generateName
TBC -
generation
Long generation
Indication of the version of this workflow. Each modification to the workflow will increment the generation, such that a generation of1
is the initial workflow definition, a generation of2
is the first time the workflow's configuration has been modified, and so on. -
labels
Map<String,
String> labels Labels that describe the workflow. These are usually a combination of keys that start withorchestration.atlan.com
,package.argoproj.io
, andworkflows.argoproj.io
. -
managedFields
List<Object> managedFields
TBC * -
name
String name
Name of the workflow. -
namespace
String namespace
Kubernetes namespace in which the workflow is defined. -
resourceVersion
String resourceVersion
TBC -
uid
String uid
Unique identifier (GUID) of the workflow.
-
-
Class com.atlan.model.workflow.WorkflowParameters
class WorkflowParameters extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
parameters
List<NameValuePair> parameters
List of parameters used when running a task.
-
-
Class com.atlan.model.workflow.WorkflowResponse
class WorkflowResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
client
AtlanClient client
Connectivity to the Atlan tenant where the workflow request was run. -
metadata
WorkflowMetadata metadata
-
payload
List<Object> payload
-
spec
WorkflowSpec spec
-
-
Class com.atlan.model.workflow.WorkflowRunResponse
class WorkflowRunResponse extends WorkflowResponse implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
status
WorkflowSearchResultStatus status
-
-
Class com.atlan.model.workflow.WorkflowSearchHits
class WorkflowSearchHits extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
hits
List<WorkflowSearchResult> hits
-
total
Map<String,
Object> total
-
-
Class com.atlan.model.workflow.WorkflowSearchRequest
class WorkflowSearchRequest extends IndexSearchDSL implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.workflow.WorkflowSearchResponse
class WorkflowSearchResponse extends ApiResource implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
_shards
Map<String,
Object> _shards -
hits
WorkflowSearchHits hits
-
took
Long took
-
-
Class com.atlan.model.workflow.WorkflowSearchResult
class WorkflowSearchResult extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.model.workflow.WorkflowSearchResultDetail
class WorkflowSearchResultDetail extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
apiVersion
String apiVersion
Version of the kubernetes object. -
kind
String kind
Type of workflow. -
metadata
WorkflowMetadata metadata
Metadata that describes the workflow. -
spec
WorkflowSpec spec
Definition of the workflow. -
status
WorkflowSearchResultStatus status
Status of the workflow (if run).
-
-
Class com.atlan.model.workflow.WorkflowSearchResultStatus
class WorkflowSearchResultStatus extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
artifactRepositoryRef
Object artifactRepositoryRef
-
compressedNodes
String compressedNodes
-
conditions
List<Object> conditions
-
estimatedDuration
Long estimatedDuration
-
finishedAt
String finishedAt
-
message
String message
-
nodes
Object nodes
-
outputs
WorkflowParameters outputs
-
phase
AtlanWorkflowPhase phase
-
progress
String progress
-
resourcesDuration
Map<String,
Long> resourcesDuration -
startedAt
String startedAt
-
storedTemplates
Object storedTemplates
-
storedWorkflowTemplateSpec
Object storedWorkflowTemplateSpec
-
synchronization
Map<String,
Object> synchronization
-
-
Class com.atlan.model.workflow.WorkflowSpec
class WorkflowSpec extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
arguments
Object arguments
TBC -
entrypoint
String entrypoint
Name of the template to use as the starting point when running the workflow. -
templates
List<WorkflowTemplate> templates
List of specific steps in the overall workflow process. -
workflowMetadata
WorkflowMetadata workflowMetadata
Metadata about the workflow, typically thepackage.argoproj.io/name
annotation. -
workflowTemplateRef
Map<String,
String> workflowTemplateRef TBC
-
-
Class com.atlan.model.workflow.WorkflowTask
class WorkflowTask extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
arguments
WorkflowParameters arguments
Arguments the task uses in its execution. -
name
String name
Name of the task. -
templateRef
WorkflowTemplateRef templateRef
Reference to another workflow template that will be used to run this task.
-
-
Class com.atlan.model.workflow.WorkflowTemplate
class WorkflowTemplate extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
dag
WorkflowDAG dag
Definition of the tasks within the step. -
inputs
Object inputs
Inputs to this step. -
metadata
Object metadata
Metadata describing the step. -
name
String name
Name of this step. -
outputs
Object outputs
Outputs from this step.
-
-
Class com.atlan.model.workflow.WorkflowTemplateRef
class WorkflowTemplateRef extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
-
Package com.atlan.net
-
Class com.atlan.net.ApiEventStreamResource
class ApiEventStreamResource extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.net.ApiResource
class ApiResource extends AtlanObject implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.net.KeyValuePair
- serialVersionUID:
- 1L
-
-
Package com.atlan.serde
-
Class com.atlan.serde.AggregationResultDeserializer
class AggregationResultDeserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<AggregationResult> implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.serde.AssetDeserializer
class AssetDeserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<Asset> implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
client
AtlanClient client
-
-
Class com.atlan.serde.AssetSerializer
class AssetSerializer extends com.fasterxml.jackson.databind.ser.std.StdSerializer<Asset> implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
client
AtlanClient client
-
-
Class com.atlan.serde.AtlanPolicyActionDeserializer
class AtlanPolicyActionDeserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<AtlanPolicyAction> implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
defaultDeserializer
com.fasterxml.jackson.databind.JsonDeserializer<?> defaultDeserializer
-
-
Class com.atlan.serde.AtlanRequestDeserializer
class AtlanRequestDeserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<AtlanRequest> implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
client
AtlanClient client
-
-
Class com.atlan.serde.AtlanRequestSerializer
class AtlanRequestSerializer extends com.fasterxml.jackson.databind.ser.std.StdSerializer<AtlanRequest> implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
client
AtlanClient client
-
-
Class com.atlan.serde.AtlanTagDeserializer
class AtlanTagDeserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<AtlanTag> implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
client
AtlanClient client
-
-
Class com.atlan.serde.AtlanTagSerializer
class AtlanTagSerializer extends com.fasterxml.jackson.databind.ser.std.StdSerializer<AtlanTag> implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
client
AtlanClient client
-
-
Class com.atlan.serde.AuditDetailDeserializer
class AuditDetailDeserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<AuditDetail> implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
client
AtlanClient client
-
-
Class com.atlan.serde.ClientAwareDeserializationContext
class ClientAwareDeserializationContext extends com.fasterxml.jackson.databind.deser.DefaultDeserializationContext implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
client
AtlanClient client
-
-
Class com.atlan.serde.ClientAwareSerializerProvider
class ClientAwareSerializerProvider extends com.fasterxml.jackson.databind.ser.DefaultSerializerProvider implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
client
AtlanClient client
-
-
Class com.atlan.serde.CustomMetadataAuditDeserializer
class CustomMetadataAuditDeserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<CustomMetadataAttributesAuditDetail> implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
client
AtlanClient client
-
-
Class com.atlan.serde.CustomMetadataMapDeserializer
class CustomMetadataMapDeserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<Map<String,CustomMetadataAttributes>> implements Serializable - serialVersionUID:
- 2L
-
Serialized Fields
-
client
AtlanClient client
-
-
Class com.atlan.serde.CustomMetadataMapSerializer
class CustomMetadataMapSerializer extends com.fasterxml.jackson.databind.ser.std.StdSerializer<Map<String,CustomMetadataAttributes>> implements Serializable - serialVersionUID:
- 2L
-
Serialized Fields
-
client
AtlanClient client
-
-
Class com.atlan.serde.ElasticAggregationDeserializer
class ElasticAggregationDeserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<co.elastic.clients.elasticsearch._types.aggregations.Aggregation> implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.serde.ElasticObjectSerializer
class ElasticObjectSerializer extends com.fasterxml.jackson.databind.ser.std.StdSerializer<T extends co.elastic.clients.json.JsonpSerializable> implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.serde.ElasticQueryDeserializer
class ElasticQueryDeserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<co.elastic.clients.elasticsearch._types.query_dsl.Query> implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.serde.ElasticSortOptionsDeserializer
class ElasticSortOptionsDeserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<co.elastic.clients.elasticsearch._types.SortOptions> implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.serde.ReadableCustomMetadataDeserializer
class ReadableCustomMetadataDeserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<Map<String,CustomMetadataAttributes>> implements Serializable - serialVersionUID:
- 2L
-
Class com.atlan.serde.ReadableCustomMetadataSerializer
class ReadableCustomMetadataSerializer extends com.fasterxml.jackson.databind.ser.std.StdSerializer<Map<String,CustomMetadataAttributes>> implements Serializable - serialVersionUID:
- 2L
-
Class com.atlan.serde.RelationshipAttributesDeserializer
class RelationshipAttributesDeserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<RelationshipAttributes> implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
client
AtlanClient client
-
-
Class com.atlan.serde.RemovableSerializer
class RemovableSerializer extends com.fasterxml.jackson.databind.ser.std.StdSerializer<Removable> implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.serde.SessionResponseDeserializer
class SessionResponseDeserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<SessionResponse> implements Serializable- serialVersionUID:
- 2L
-
Class com.atlan.serde.SetToStringSerializer
class SetToStringSerializer extends com.fasterxml.jackson.databind.ser.std.StdSerializer<Set<String>> implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
client
AtlanClient client
-
-
Class com.atlan.serde.StringToSetDeserializer
class StringToSetDeserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<Set<String>> implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
client
AtlanClient client
-
-
Class com.atlan.serde.StructDeserializer
class StructDeserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<AtlanStruct> implements Serializable- serialVersionUID:
- 2L
-
Serialized Fields
-
defaultDeserializer
com.fasterxml.jackson.databind.JsonDeserializer<?> defaultDeserializer
-
-
-
Package com.atlan.util
Asset.assignedTerms
instead