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.
§
newBucket?: NewBucketConfig
[src]Optional. Immutable. If set, indicates that a new Cloud Storage bucket should be created.
§
newFilestore?: NewFilestoreConfig
[src]Optional. Immutable. If set, indicates that a new Filestore instance should be created.
§
newLustre?: NewLustreConfig
[src]Optional. Immutable. If set, indicates that a new Managed Lustre instance should be created.