Anchorage API reference
    Preparing search index...
    interface FleetStateStore {
        get(
            tenantTag: string,
            environment: string,
        ): Promise<FleetRecord | undefined>;
        list(): Promise<readonly FleetRecord[]>;
        withDeploymentLease<T>(
            tenantTag: string,
            environment: string,
            operation: (lease: FleetStateLease) => Promise<T>,
        ): Promise<T>;
    }

    Implemented by

    Index

    Methods