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

Instance

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

A Parallelstore instance.

interface Instance {
readonly accessPoints?: string[];
capacityGib?: bigint;
readonly createTime?: Date;
readonly daosVersion?: string;
description?: string;
directoryStripeLevel?:
| "DIRECTORY_STRIPE_LEVEL_UNSPECIFIED"
| "DIRECTORY_STRIPE_LEVEL_MIN"
| "DIRECTORY_STRIPE_LEVEL_BALANCED"
| "DIRECTORY_STRIPE_LEVEL_MAX";
readonly effectiveReservedIpRange?: string;
fileStripeLevel?:
| "FILE_STRIPE_LEVEL_UNSPECIFIED"
| "FILE_STRIPE_LEVEL_MIN"
| "FILE_STRIPE_LEVEL_BALANCED"
| "FILE_STRIPE_LEVEL_MAX";
labels?: {
[key: string]: string;
}
;
name?: string;
network?: string;
reservedIpRange?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "CREATING"
| "ACTIVE"
| "DELETING"
| "FAILED"
| "UPGRADING";
readonly updateTime?: Date;
}

§Properties

§
readonly accessPoints?: string[]
[src]

Output only. A list of IPv4 addresses used for client side configuration.

§
capacityGib?: bigint
[src]

Required. Immutable. The instance's storage capacity in Gibibytes (GiB). Allowed values are between 12000 and 100000, in multiples of 4000; e.g., 12000, 16000, 20000, ...

§
readonly createTime?: Date
[src]

Output only. The time when the instance was created.

§
readonly daosVersion?: string
[src]

Output only. The version of DAOS software running in the instance.

§
description?: string
[src]

Optional. The description of the instance. 2048 characters or less.

§
directoryStripeLevel?: "DIRECTORY_STRIPE_LEVEL_UNSPECIFIED" | "DIRECTORY_STRIPE_LEVEL_MIN" | "DIRECTORY_STRIPE_LEVEL_BALANCED" | "DIRECTORY_STRIPE_LEVEL_MAX"
[src]

Optional. Stripe level for directories. Allowed values are: * DIRECTORY_STRIPE_LEVEL_MIN: recommended when directories contain a small number of files. * DIRECTORY_STRIPE_LEVEL_BALANCED: balances performance for workloads involving a mix of small and large directories. * DIRECTORY_STRIPE_LEVEL_MAX: recommended for directories with a large number of files.

§
readonly effectiveReservedIpRange?: string
[src]

Output only. Immutable. The ID of the IP address range being used by the instance's VPC network. This field is populated by the service and contains the value currently used by the service.

§
fileStripeLevel?: "FILE_STRIPE_LEVEL_UNSPECIFIED" | "FILE_STRIPE_LEVEL_MIN" | "FILE_STRIPE_LEVEL_BALANCED" | "FILE_STRIPE_LEVEL_MAX"
[src]

Optional. Stripe level for files. Allowed values are: * FILE_STRIPE_LEVEL_MIN: offers the best performance for small size files.

  • FILE_STRIPE_LEVEL_BALANCED: balances performance for workloads involving a mix of small and large files. * FILE_STRIPE_LEVEL_MAX: higher throughput performance for larger files.
§
labels?: {
[key: string]: string;
}
[src]

Optional. Cloud Labels are a flexible and lightweight mechanism for organizing cloud resources into groups that reflect a customer's organizational needs and deployment strategies. See https://cloud.google.com/resource-manager/docs/labels-overview for details.

§
name?: string
[src]

Identifier. The resource name of the instance, in the format projects/{project}/locations/{location}/instances/{instance_id}.

§
network?: string
[src]

Optional. Immutable. The name of the Compute Engine VPC network to which the instance is connected.

§
reservedIpRange?: string
[src]

Optional. Immutable. The ID of the IP address range being used by the instance's VPC network. See Configure a VPC network. If no ID is provided, all ranges are considered.

§
readonly state?: "STATE_UNSPECIFIED" | "CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPGRADING"
[src]

Output only. The instance state.

§
readonly updateTime?: Date
[src]

Output only. The time when the instance was updated.