Type Alias DataAsset

type DataAsset = {
    appId?: string;
    appType: string;
    createdBy?: string;
    createdTime?: string;
    dataFreshness?: string;
    dataStoreInfo?: DataStoreInfo;
    description?: string;
    id?: string;
    lastModifiedBy?: string;
    lastModifiedTime?: string;
    name?: string;
    ownerId?: string;
    properties?: Record<string, unknown>;
    spaceId?: string;
    tags?: string[];
    technicalDescription?: string;
    technicalName: string;
    tenantId?: string;
    version?: number;
}
Index

Properties

appId?: string
appType: string
createdBy?: string

The value is automatically set by the application. User defined value is ignored.

createdTime?: string

The value is automatically set by the application. User defined value is ignored.

dataFreshness?: string

The date-time when the source data was last changed

dataStoreInfo?: DataStoreInfo
description?: string
id?: string

Only required when updating the resource. Must be null for new resources.

lastModifiedBy?: string

The value is automatically set by the application. User defined value is ignored.

lastModifiedTime?: string

The value is automatically set by the application. User defined value is ignored.

name?: string
ownerId?: string

The value is automatically set by the application.

properties?: Record<string, unknown>

A Map of name-value pairs.

spaceId?: string
tags?: string[]
technicalDescription?: string
technicalName: string
tenantId?: string

The value is automatically set by the application. User defined value is ignored.

version?: number

Only required when updating the resource. Must be null for new resources.