import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.baremetal.v1alpha"; /** A Private cloud connection resource. */ export interface PrivateCloudConnection { /** ID of the private cloud connection. */ id: string; /** ID of the folder that the private cloud connection belongs to. */ folderId: string; /** ID of the cloud that the private cloud connection belongs to. */ cloudId: string; /** ID of Cloud Router Routing Instance. */ routingInstanceId: string; /** ID of VRF that is connected to routing Instance. */ vrfId: string; /** Status of the private cloud connection. */ status: PrivateCloudConnection_Status; /** Creation timestamp. */ createdAt?: Date; } /** Private cloud connection status. */ export declare enum PrivateCloudConnection_Status { /** STATUS_UNSPECIFIED - Unspecified private cloud connection status. */ STATUS_UNSPECIFIED = 0, /** CREATING - Private cloud connection is waiting for network resources to be allocated. */ CREATING = 1, /** READY - Private cloud connection is ready to use. */ READY = 2, /** ERROR - Private cloud connection encountered a problem and cannot operate. */ ERROR = 3, /** DELETING - Private cloud connection is being deleted. */ DELETING = 4, /** UPDATING - Private cloud connection is being updated. */ UPDATING = 5, UNRECOGNIZED = -1 } export declare function privateCloudConnection_StatusFromJSON(object: any): PrivateCloudConnection_Status; export declare function privateCloudConnection_StatusToJSON(object: PrivateCloudConnection_Status): string; export declare const PrivateCloudConnection: { encode(message: PrivateCloudConnection, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): PrivateCloudConnection; fromJSON(object: any): PrivateCloudConnection; toJSON(message: PrivateCloudConnection): unknown; fromPartial, never>>(object: I): PrivateCloudConnection; }; 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 {};