import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.compute.v1"; export declare enum GpuInterconnectType { GPU_INTERCONNECT_TYPE_UNSPECIFIED = 0, /** INFINIBAND - InfiniBand interconnect. */ INFINIBAND = 1, UNRECOGNIZED = -1 } export declare function gpuInterconnectTypeFromJSON(object: any): GpuInterconnectType; export declare function gpuInterconnectTypeToJSON(object: GpuInterconnectType): string; /** A GPU cluster. For details about the concept, see [documentation](/docs/compute/concepts/gpus#gpu-clusters). */ export interface GpuCluster { /** ID of GPU cluster. */ id: string; /** ID of the folder that the GPU cluster belongs to. */ folderId: string; /** Creation timestamp. */ createdAt?: Date; /** * Name of the GPU cluster. * * The name is unique within the folder. */ name: string; /** Description of the GPU cluster. */ description: string; /** GPU cluster labels as `key:value` pairs. */ labels: { [key: string]: string; }; /** Status of the GPU cluster. */ status: GpuCluster_Status; /** ID of the availability zone where the GPU cluster resides. */ zoneId: string; /** Type of interconnect used for this GPU cluster. */ interconnectType: GpuInterconnectType; } export declare enum GpuCluster_Status { STATUS_UNSPECIFIED = 0, /** CREATING - GPU cluster is being created. */ CREATING = 1, /** READY - GPU cluster is ready to use. */ READY = 2, /** ERROR - GPU cluster encountered a problem and cannot operate. */ ERROR = 3, /** DELETING - GPU cluster is being deleted. */ DELETING = 4, UNRECOGNIZED = -1 } export declare function gpuCluster_StatusFromJSON(object: any): GpuCluster_Status; export declare function gpuCluster_StatusToJSON(object: GpuCluster_Status): string; export interface GpuCluster_LabelsEntry { key: string; value: string; } export declare const GpuCluster: { encode(message: GpuCluster, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GpuCluster; fromJSON(object: any): GpuCluster; toJSON(message: GpuCluster): unknown; fromPartial, never>) | undefined; status?: GpuCluster_Status | undefined; zoneId?: string | undefined; interconnectType?: GpuInterconnectType | undefined; } & Record, never>>(object: I): GpuCluster; }; export declare const GpuCluster_LabelsEntry: { encode(message: GpuCluster_LabelsEntry, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GpuCluster_LabelsEntry; fromJSON(object: any): GpuCluster_LabelsEntry; toJSON(message: GpuCluster_LabelsEntry): unknown; fromPartial, never>>(object: I): GpuCluster_LabelsEntry; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & Record>, never>; export {};