Interface OSMLAccount

Represents an OSML (OversightML) deployment account configuration.

OSMLAccount

interface OSMLAccount {
    deployModelRunner: boolean;
    deployTileServer: boolean;
    id: string;
    isAdc?: boolean;
    name: string;
    prodLike: boolean;
    region: string;
    vpcId?: string;
}

Properties

deployModelRunner: boolean

Indicates whether to deploy the model runner application

Memberof

OSMLAccount

deployTileServer: boolean

Indicates whether to deploy the tile server application

Memberof

OSMLAccount

id: string

The unique identifier of the OSML account.

Memberof

OSMLAccount

isAdc?: boolean

Optional: Indicates whether the account is configured as an ADC (Application Development Cloud).

Memberof

OSMLAccount

name: string

The name of the OSML account.

Memberof

OSMLAccount

prodLike: boolean

Indicates whether the OSML account is configured as a production-like environment.

Memberof

OSMLAccount

region: string

The region where the OSML account is deployed.

Memberof

OSMLAccount

vpcId?: string

Optional: The unique identifier of the Virtual Private Cloud (VPC) associated with the account.

Memberof

OSMLAccount

Generated using TypeDoc