Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MachineConfiguration

import type { MachineConfiguration } from "https://googleapis.deno.dev/v1/redis:v1.ts";

MachineConfiguration describes the configuration of a machine specific to Database Resource.

interface MachineConfiguration {
baselineSlots?: bigint;
cpuCount?: number;
maxReservationSlots?: bigint;
memorySizeInBytes?: bigint;
shardCount?: number;
vcpuCount?: number;
}

§Properties

§
baselineSlots?: bigint
[src]

Optional. Baseline slots for BigQuery Reservations. Baseline slots are in increments of 50.

§
cpuCount?: number
[src]

The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add proto validations again after bug fix.

§
maxReservationSlots?: bigint
[src]

Optional. Max slots for BigQuery Reservations. Max slots are in increments of 50.

§
memorySizeInBytes?: bigint
[src]

Memory size in bytes. TODO(b/342344482) add proto validations again after bug fix.

§
shardCount?: number
[src]

Optional. Number of shards (if applicable).

§
vcpuCount?: number
[src]

Optional. The number of vCPUs. TODO(b/342344482) add proto validations again after bug fix.