Type Alias DataStore

type DataStore = {
    createdBy?: string;
    createdTime?: string;
    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;
    type: string;
    uri?: string;
    version?: number;
}
Index

Properties

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.

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.

type: string
uri?: string
version?: number

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