Interface SaveDomainOptions

interface SaveDomainOptions {
    containerPath?: string;
    domainDesign?: any;
    domainId?: number;
    failure?: RequestFailure<any>;
    includeWarnings?: boolean;
    options?: any;
    queryName?: string;
    schemaName?: string;
    scope?: any;
    success?: RequestSuccess<any>;
}

Hierarchy (view full)

Properties

containerPath?: string

The container path in which the requested Domain is defined. If not supplied, the current container path will be used.

domainDesign?: any

The domain design to save.

domainId?: number

Id of the domain. This is an alternate way to identify the domain to update. SchemaName and queryName will be ignored if this value is not undefined or null.

failure?: RequestFailure<any>

This will be called upon failure to complete a request.

includeWarnings?: boolean

Set to true to prevent save from completing when a server side warning occurs.

options?: any

Domain Kind specific properties. If not supplied, will be ignored. Note: Certain domain kind specific properties are read-only and cannot be updated. Read-only properties for 'IntList' & 'VarList' domain kinds: listId, domainId, keyName, keyType, and lastIndexed.

queryName?: string

Name of the query.

schemaName?: string

Name of the schema.

scope?: any

A scoping object for the success and failure callback functions (default to this).

success?: RequestSuccess<any>

This will be called upon successfully completing a request.

Generated using TypeDoc