Interface OSMLAccount

Represents an OSML (OversightML) deployment account configuration.

OSMLAccount

interface OSMLAccount {
    id: string;
    isAdc?: boolean;
    prodLike: boolean;
    region: string;
}

Properties

id: string

The unique identifier of the OSML account.

OSMLAccount

isAdc?: boolean

Indicates whether the OSML account is configured as an ADC region

OSMLAccount

prodLike: boolean

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

OSMLAccount

region: string

The region where the OSML account is deployed.

OSMLAccount