/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * A materialized view is a type of table that is automatically built from a Synapse SQL query. Its content is persisted. The SQL of the materialized view may contain JOIN clauses on multiple tables. * @export * @interface MaterializedView */ export interface MaterializedView { /** * The name of this entity. Must be 256 characters or less. Names may only contain: letters, numbers, spaces, underscores, hyphens, periods, plus signs, apostrophes, and parentheses * @type {string} * @memberof MaterializedView */ name?: string; /** * The description of this entity. Must be 1000 characters or less. * @type {string} * @memberof MaterializedView */ description?: string; /** * The unique immutable ID for this entity. A new ID will be generated for new Entities. Once issued, this ID is guaranteed to never change or be re-issued * @type {string} * @memberof MaterializedView */ id?: string; /** * Synapse employs an Optimistic Concurrency Control (OCC) scheme to handle concurrent updates. Since the E-Tag changes every time an entity is updated it is used to detect when a client's current representation of an entity is out-of-date. * @type {string} * @memberof MaterializedView */ etag?: string; /** * The date this entity was created. * @type {string} * @memberof MaterializedView */ createdOn?: string; /** * The date this entity was last modified. * @type {string} * @memberof MaterializedView */ modifiedOn?: string; /** * The ID of the user that created this entity. * @type {string} * @memberof MaterializedView */ createdBy?: string; /** * The ID of the user that last modified this entity. * @type {string} * @memberof MaterializedView */ modifiedBy?: string; /** * The ID of the Entity that is the parent of this Entity. * @type {string} * @memberof MaterializedView */ parentId?: string; /** * Indicates which implementation of Entity this object represents. The value is the fully qualified class name, e.g. org.sagebionetworks.repo.model.FileEntity. * @type {string} * @memberof MaterializedView */ concreteType: MaterializedViewConcreteTypeEnum; /** * The version number issued to this version on the object. * @type {number} * @memberof MaterializedView */ versionNumber?: number; /** * The version label for this entity * @type {string} * @memberof MaterializedView */ versionLabel?: string; /** * The version comment for this entity * @type {string} * @memberof MaterializedView */ versionComment?: string; /** * If this is the latest version of the object. * @type {boolean} * @memberof MaterializedView */ isLatestVersion?: boolean; /** * The columns of a materialized view are dynamic based on the select statement of the definingSQL. This list of columnIds is for read only, and will be ignored for create and update operations. * @type {Array} * @memberof MaterializedView */ columnIds?: Array; /** * When creating or updating a table or view specifies if full text search should be enabled. Note that enabling full text search might slow down the indexing of the table or view. * @type {boolean} * @memberof MaterializedView */ isSearchEnabled?: boolean; /** * The synapse SQL statement that defines the data in the materialized view. The SQL may contain JOIN/UNION clauses on multiple tables. * @type {string} * @memberof MaterializedView */ definingSQL?: string; } /** * @export */ export declare const MaterializedViewConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_table_MaterializedView: "org.sagebionetworks.repo.model.table.MaterializedView"; }; export type MaterializedViewConcreteTypeEnum = typeof MaterializedViewConcreteTypeEnum[keyof typeof MaterializedViewConcreteTypeEnum]; /** * Check if a given object implements the MaterializedView interface. */ export declare function instanceOfMaterializedView(value: object): value is MaterializedView; export declare function MaterializedViewFromJSON(json: any): MaterializedView; export declare function MaterializedViewFromJSONTyped(json: any, ignoreDiscriminator: boolean): MaterializedView; export declare function MaterializedViewToJSON(json: any): MaterializedView; export declare function MaterializedViewToJSONTyped(value?: MaterializedView | null, ignoreDiscriminator?: boolean): any;