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

StorageResourceConfig

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

Describes how a storage resource should be initialized. Each storage resource can either be imported from an existing Google Cloud resource or initialized when the cluster is created.

interface StorageResourceConfig {
existingBucket?: ExistingBucketConfig;
existingFilestore?: ExistingFilestoreConfig;
existingLustre?: ExistingLustreConfig;
newBucket?: NewBucketConfig;
newFilestore?: NewFilestoreConfig;
newLustre?: NewLustreConfig;
}

§Properties

§
existingBucket?: ExistingBucketConfig
[src]

Optional. Immutable. If set, indicates that an existing Cloud Storage bucket should be imported.

§
existingFilestore?: ExistingFilestoreConfig
[src]

Optional. Immutable. If set, indicates that an existing Filestore instance should be imported.

§
existingLustre?: ExistingLustreConfig
[src]

Optional. Immutable. If set, indicates that an existing Managed Lustre instance should be imported.

§

Optional. Immutable. If set, indicates that a new Cloud Storage bucket should be created.

§

Optional. Immutable. If set, indicates that a new Filestore instance should be created.

§

Optional. Immutable. If set, indicates that a new Managed Lustre instance should be created.