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 {
cpuCount?: number;
memorySizeInBytes?: bigint;
shardCount?: number;
vcpuCount?: number;
}

§Properties

§
cpuCount?: number
[src]

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

§
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.