ReservationAffinity
import type { ReservationAffinity } from "https://googleapis.deno.dev/v1/notebooks:v2.ts";
A reservation that an instance can consume from.
interface ReservationAffinity {
consumeReservationType?:
| "RESERVATION_UNSPECIFIED"
| "RESERVATION_NONE"
| "RESERVATION_ANY"
| "RESERVATION_SPECIFIC";
key?: string;
values?: string[];
}§Properties
§
consumeReservationType?: "RESERVATION_UNSPECIFIED" | "RESERVATION_NONE" | "RESERVATION_ANY" | "RESERVATION_SPECIFIC"
[src]Required. Specifies the type of reservation from which this instance can consume resources: RESERVATION_ANY (default), RESERVATION_SPECIFIC, or RESERVATION_NONE. See Consuming reserved instances for examples.