import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.vpc.v1"; /** A Network resource. For more information, see [Networks](/docs/vpc/concepts/network). */ export interface Network { /** ID of the network. */ id: string; /** ID of the folder that the network belongs to. */ folderId: string; /** Creation timestamp in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format. */ createdAt?: Date; /** * Name of the network. * The name is unique within the folder. * Value must match the regular expression ``\|[a-zA-Z]([-_a-zA-Z0-9]{0,61}[a-zA-Z0-9])?``. */ name: string; /** Optional description of the network. 0-256 characters long. */ description: string; /** * Resource labels as `key:value` pairs. * No more than 64 per resource. * The maximum string length in characters for each value is 63. * Each value must match the regular expression `[-_0-9a-z]*`. * The string length in characters for each key must be 1-63. * Each key must match the regular expression `[a-z][-_0-9a-z]*`. */ labels: { [key: string]: string; }; /** ID of default security group for network. */ defaultSecurityGroupId: string; } export interface Network_LabelsEntry { key: string; value: string; } export declare const Network: { encode(message: Network, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Network; fromJSON(object: any): Network; toJSON(message: Network): unknown; fromPartial, never>) | undefined; defaultSecurityGroupId?: string | undefined; } & Record, never>>(object: I): Network; }; export declare const Network_LabelsEntry: { encode(message: Network_LabelsEntry, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Network_LabelsEntry; fromJSON(object: any): Network_LabelsEntry; toJSON(message: Network_LabelsEntry): unknown; fromPartial, never>>(object: I): Network_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 {};