Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,6 @@ public class AppWorkflowRun extends Asset implements IAppWorkflowRun, ICatalog,
@Attribute
String appWorkflowRunTemporalRunId;

/** The workflow that contains the workflow run. */
@Attribute
IAtlanAppWorkflow atlanAppWorkflow;

/** Tasks to which this asset provides input. */
@Attribute
@Singular
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,6 @@ public class AtlanAppDeployment extends Asset
@Attribute
AtlanAppDeploymentStatus atlanAppStatus;

/** Tools that exist within this Atlan application. */
@Attribute
@Singular
SortedSet<IAtlanAppTool> atlanAppTools;

/** Version identifier for deployment. */
@Attribute
Integer atlanAppVersionId;
Expand All @@ -96,11 +91,6 @@ public class AtlanAppDeployment extends Asset
@Attribute
String atlanAppVersionUUID;

/** Workflows that exist within this Atlan application. */
@Attribute
@Singular
SortedSet<IAtlanAppWorkflow> atlanAppWorkflows;

/** Tasks to which this asset provides input. */
@Attribute
@Singular
Expand Down
10 changes: 0 additions & 10 deletions sdk/src/main/java/com/atlan/model/assets/AtlanAppInstalled.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,16 +81,6 @@ public class AtlanAppInstalled extends Asset
@Attribute
String atlanAppQualifiedName;

/** Tools that exist within this Atlan application. */
@Attribute
@Singular
SortedSet<IAtlanAppTool> atlanAppTools;

/** Workflows that exist within this Atlan application. */
@Attribute
@Singular
SortedSet<IAtlanAppWorkflow> atlanAppWorkflows;

/** Tasks to which this asset provides input. */
@Attribute
@Singular
Expand Down
10 changes: 0 additions & 10 deletions sdk/src/main/java/com/atlan/model/assets/AtlanAppTool.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,16 +84,6 @@ public class AtlanAppTool extends Asset implements IAtlanAppTool, IAtlanApp, IAp
@Attribute
String atlanAppToolTaskQueue;

/** Tools that exist within this Atlan application. */
@Attribute
@Singular
SortedSet<IAtlanAppTool> atlanAppTools;

/** Workflows that exist within this Atlan application. */
@Attribute
@Singular
SortedSet<IAtlanAppWorkflow> atlanAppWorkflows;

/** Tasks to which this asset provides input. */
@Attribute
@Singular
Expand Down
10 changes: 0 additions & 10 deletions sdk/src/main/java/com/atlan/model/assets/AtlanAppWorkflow.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,6 @@ public class AtlanAppWorkflow extends Asset
@Attribute
String atlanAppQualifiedName;

/** Tools that exist within this Atlan application. */
@Attribute
@Singular
SortedSet<IAtlanAppTool> atlanAppTools;

/** Map of all activity steps for the workflow (escaped JSON string). */
@Attribute
String atlanAppWorkflowDag;
Expand Down Expand Up @@ -110,11 +105,6 @@ public class AtlanAppWorkflow extends Asset
@Attribute
String atlanAppWorkflowVersion;

/** Workflows that exist within this Atlan application. */
@Attribute
@Singular
SortedSet<IAtlanAppWorkflow> atlanAppWorkflows;

/** Tasks to which this asset provides input. */
@Attribute
@Singular
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,6 @@ public class AtlanCollection extends Asset implements IAtlanCollection, INamespa
@Builder.Default
String typeName = TYPE_NAME;

/** Folders that exist within this namespace. */
@Attribute
@Singular
SortedSet<IFolder> childrenFolders;

/** Queries that exist within this namespace. */
@Attribute
@Singular
Expand Down
5 changes: 0 additions & 5 deletions sdk/src/main/java/com/atlan/model/assets/AtlanQuery.java
Original file line number Diff line number Diff line change
Expand Up @@ -220,11 +220,6 @@ public class AtlanQuery extends Asset implements IAtlanQuery, ISQL, ICatalog, IA
@Attribute
String schemaQualifiedName;

/** Semantic logical tables that reference this physical table or view. */
@Attribute
@Singular
SortedSet<ISnowflakeSemanticLogicalTable> snowflakeSemanticLogicalTables;

/** Unique name of the context in which the model versions exist, or empty if it does not exist within an AI model context. */
@Attribute
String sqlAIModelContextQualifiedName;
Expand Down
36 changes: 8 additions & 28 deletions sdk/src/main/java/com/atlan/model/assets/BIProcess.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ public class BIProcess extends Asset implements IBIProcess, ILineageProcess, IAs
@Attribute
String additionalEtlContext;

/** ADF Activity that is associated with this lineage process. */
/** TBC */
@Attribute
IAdfActivity adfActivity;

/** Dataset type for AI Model - dataset process. */
@Attribute
AIDatasetType aiDatasetType;

/** Tasks that exist within this process. */
/** TBC */
@Attribute
@Singular
SortedSet<IAirflowTask> airflowTasks;
Expand All @@ -80,45 +80,30 @@ public class BIProcess extends Asset implements IBIProcess, ILineageProcess, IAs
@Attribute
String code;

/** Processes that detail column-level lineage for this process. */
@Attribute
@Singular
SortedSet<IColumnProcess> columnProcesses;

/** Individual Fabric activities contained in the process. */
/** TBC */
@Attribute
@Singular
SortedSet<IFabricActivity> fabricActivities;

/** fivetranConnector in which this process exists. */
/** TBC */
@Attribute
IFivetranConnector fivetranConnector;

/** Orchestrated control operation that ran these data flows (process). */
/** TBC */
@Attribute
IFlowControlOperation flowOrchestratedBy;

/** Assets that are inputs to this process. */
@Attribute
@Singular
SortedSet<ICatalog> inputs;

/** Matillion component that contains the logic for this lineage process. */
/** TBC */
@Attribute
IMatillionComponent matillionComponent;

/** Assets that are outputs from this process. */
@Attribute
@Singular
SortedSet<ICatalog> outputs;

/** TBC */
@Attribute
@Singular
@JsonProperty("parentConnectionProcessQualifiedName")
SortedSet<String> parentConnectionProcessQualifiedNames;

/** PowerBI Dataflow that is associated with this lineage process. */
/** TBC */
@Attribute
IPowerBIDataflow powerBIDataflow;

Expand All @@ -131,12 +116,7 @@ public class BIProcess extends Asset implements IBIProcess, ILineageProcess, IAs
@Attribute
String sql;

/** Functions used by this process. */
@Attribute
@Singular
SortedSet<IFunction> sqlFunctions;

/** Procedures used by this process. */
/** TBC */
@Attribute
@Singular
SortedSet<IProcedure> sqlProcedures;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,11 +213,6 @@ public class BigqueryRoutine extends Asset
@Attribute
String schemaQualifiedName;

/** Semantic logical tables that reference this physical table or view. */
@Attribute
@Singular
SortedSet<ISnowflakeSemanticLogicalTable> snowflakeSemanticLogicalTables;

/** Unique name of the context in which the model versions exist, or empty if it does not exist within an AI model context. */
@Attribute
String sqlAIModelContextQualifiedName;
Expand Down
5 changes: 0 additions & 5 deletions sdk/src/main/java/com/atlan/model/assets/BigqueryTag.java
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,6 @@ public class BigqueryTag extends Asset
@Attribute
String schemaQualifiedName;

/** Semantic logical tables that reference this physical table or view. */
@Attribute
@Singular
SortedSet<ISnowflakeSemanticLogicalTable> snowflakeSemanticLogicalTables;

/** Unique name of the context in which the model versions exist, or empty if it does not exist within an AI model context. */
@Attribute
String sqlAIModelContextQualifiedName;
Expand Down
11 changes: 0 additions & 11 deletions sdk/src/main/java/com/atlan/model/assets/BusinessPolicy.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.SortedSet;
import java.util.concurrent.ThreadLocalRandom;
import javax.annotation.processing.Generated;
import lombok.*;
Expand Down Expand Up @@ -92,16 +91,6 @@ public class BusinessPolicy extends Asset implements IBusinessPolicy, IAsset, IR
@Attribute
Integer businessPolicyVersion;

/** Exception assigned to business polices */
@Attribute
@Singular("exceptionForBusinessPolicy")
SortedSet<IBusinessPolicyException> exceptionsForBusinessPolicy;

/** BusinessPolicy that have the same (or relatable) compliance */
@Attribute
@Singular
SortedSet<IBusinessPolicy> relatedBusinessPolicies;

/**
* Builds the minimal object necessary to create a relationship to a BusinessPolicy, from a potentially
* more-complete BusinessPolicy object.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,16 +115,6 @@ public class BusinessPolicyException extends Asset
@Attribute
Integer businessPolicyVersion;

/** Exception assigned to business polices */
@Attribute
@Singular("exceptionForBusinessPolicy")
SortedSet<IBusinessPolicyException> exceptionsForBusinessPolicy;

/** BusinessPolicy that have the same (or relatable) compliance */
@Attribute
@Singular
SortedSet<IBusinessPolicy> relatedBusinessPolicies;

/**
* Builds the minimal object necessary to create a relationship to a BusinessPolicyException, from a potentially
* more-complete BusinessPolicyException object.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,20 +107,10 @@ public class BusinessPolicyIncident extends Asset
@Attribute
Integer businessPolicyVersion;

/** Exception assigned to business polices */
@Attribute
@Singular("exceptionForBusinessPolicy")
SortedSet<IBusinessPolicyException> exceptionsForBusinessPolicy;

/** Status of this asset's severity. */
@Attribute
IncidentSeverity incidentSeverity;

/** BusinessPolicy that have the same (or relatable) compliance */
@Attribute
@Singular
SortedSet<IBusinessPolicy> relatedBusinessPolicies;

/**
* Builds the minimal object necessary to create a relationship to a BusinessPolicyIncident, from a potentially
* more-complete BusinessPolicyIncident object.
Expand Down
11 changes: 0 additions & 11 deletions sdk/src/main/java/com/atlan/model/assets/BusinessPolicyLog.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.SortedSet;
import java.util.concurrent.ThreadLocalRandom;
import javax.annotation.processing.Generated;
import lombok.*;
Expand Down Expand Up @@ -104,11 +103,6 @@ public class BusinessPolicyLog extends Asset implements IBusinessPolicyLog, IBus
@Attribute
Long compliantAssetsCount;

/** Exception assigned to business polices */
@Attribute
@Singular("exceptionForBusinessPolicy")
SortedSet<IBusinessPolicyException> exceptionsForBusinessPolicy;

/** number of governed assets in the policy */
@Attribute
Long governedAssetsCount;
Expand All @@ -121,11 +115,6 @@ public class BusinessPolicyLog extends Asset implements IBusinessPolicyLog, IBus
@Attribute
Long nonGovernedAssetsCount;

/** BusinessPolicy that have the same (or relatable) compliance */
@Attribute
@Singular
SortedSet<IBusinessPolicy> relatedBusinessPolicies;

/**
* Builds the minimal object necessary to create a relationship to a BusinessPolicyLog, from a potentially
* more-complete BusinessPolicyLog object.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,11 +201,6 @@ public class CalculationView extends Asset implements ICalculationView, ISQL, IC
@Attribute
String schemaQualifiedName;

/** Semantic logical tables that reference this physical table or view. */
@Attribute
@Singular
SortedSet<ISnowflakeSemanticLogicalTable> snowflakeSemanticLogicalTables;

/** Unique name of the context in which the model versions exist, or empty if it does not exist within an AI model context. */
@Attribute
String sqlAIModelContextQualifiedName;
Expand Down
5 changes: 0 additions & 5 deletions sdk/src/main/java/com/atlan/model/assets/Column.java
Original file line number Diff line number Diff line change
Expand Up @@ -521,11 +521,6 @@ public class Column extends Asset implements IColumn, ISQL, ICatalog, IAsset, IR
@Attribute
ISnowflakeDynamicTable snowflakeDynamicTable;

/** Semantic logical tables that reference this physical table or view. */
@Attribute
@Singular
SortedSet<ISnowflakeSemanticLogicalTable> snowflakeSemanticLogicalTables;

/** Unique name of the context in which the model versions exist, or empty if it does not exist within an AI model context. */
@Attribute
String sqlAIModelContextQualifiedName;
Expand Down
Loading
Loading