import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.dataproc.v1"; export declare enum Health { /** HEALTH_UNKNOWN - Object is in unknown state (we have no data). */ HEALTH_UNKNOWN = 0, /** ALIVE - Object is alive and well (for example, all hosts of the cluster are alive). */ ALIVE = 1, /** DEAD - Object is inoperable (it cannot perform any of its essential functions). */ DEAD = 2, /** DEGRADED - Object is partially alive (it can perform some of its essential functions). */ DEGRADED = 3, UNRECOGNIZED = -1 } export declare function healthFromJSON(object: any): Health; export declare function healthToJSON(object: Health): string; export interface Resources { /** * ID of the resource preset for computational resources available to a host (CPU, memory etc.). * All available presets are listed in the [documentation](/docs/data-proc/concepts/instance-types). */ resourcePresetId: string; /** * Type of the storage environment for the host. * Possible values: * * network-hdd - network HDD drive, * * network-ssd - network SSD drive. */ diskTypeId: string; /** Volume of the storage available to a host, in bytes. */ diskSize: number; } export declare const Resources: { encode(message: Resources, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Resources; fromJSON(object: any): Resources; toJSON(message: Resources): unknown; fromPartial, never>>(object: I): Resources; }; 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 {};