import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.cloudregistry.v1"; /** A Registry resource. */ export interface Registry { /** Output only. ID of the registry. */ id: string; /** ID of the folder that the registry belongs to. */ folderId: string; /** Name of the registry. */ name: string; /** Kind of the registry. */ kind: Registry_Kind; /** Type of the registry. */ type: Registry_Type; /** Output only. Status of the registry. */ status: Registry_Status; /** Description of the registry. */ description: string; /** Resource labels as `key:value` pairs. Maximum of 64 per resource. */ labels: { [key: string]: string; }; /** Resource properties as `key:value` pairs. Maximum of 64 per resource. */ properties: { [key: string]: string; }; /** Output only. Creation timestamp in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format. */ createdAt?: Date; /** Output only. Modification timestamp in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format. */ modifiedAt?: Date; } export declare enum Registry_Status { STATUS_UNSPECIFIED = 0, /** CREATING - Registry is being created. */ CREATING = 1, /** ACTIVE - Registry is ready to use. */ ACTIVE = 2, /** DELETING - Registry is being deleted. */ DELETING = 3, UNRECOGNIZED = -1 } export declare function registry_StatusFromJSON(object: any): Registry_Status; export declare function registry_StatusToJSON(object: Registry_Status): string; export declare enum Registry_Kind { KIND_UNSPECIFIED = 0, /** MAVEN - Registry kind is maven. */ MAVEN = 1, /** NPM - Registry kind is npm. */ NPM = 2, /** DOCKER - Registry kind is docker. */ DOCKER = 3, /** NUGET - Registry kind is nuget. */ NUGET = 4, /** DEBIAN - Registry kind is debian. */ DEBIAN = 5, /** PYPI - Registry kind is pypi. */ PYPI = 6, UNRECOGNIZED = -1 } export declare function registry_KindFromJSON(object: any): Registry_Kind; export declare function registry_KindToJSON(object: Registry_Kind): string; export declare enum Registry_Type { TYPE_UNSPECIFIED = 0, /** LOCAL - Registry type is local. */ LOCAL = 1, REMOTE = 2, VIRTUAL = 3, UNRECOGNIZED = -1 } export declare function registry_TypeFromJSON(object: any): Registry_Type; export declare function registry_TypeToJSON(object: Registry_Type): string; export interface Registry_LabelsEntry { key: string; value: string; } export interface Registry_PropertiesEntry { key: string; value: string; } export declare const Registry: { encode(message: Registry, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Registry; fromJSON(object: any): Registry; toJSON(message: Registry): unknown; fromPartial, never>) | undefined; properties?: ({ [x: string]: string | undefined; } & { [x: string]: string | undefined; } & Record, never>) | undefined; createdAt?: Date | undefined; modifiedAt?: Date | undefined; } & Record, never>>(object: I): Registry; }; export declare const Registry_LabelsEntry: { encode(message: Registry_LabelsEntry, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Registry_LabelsEntry; fromJSON(object: any): Registry_LabelsEntry; toJSON(message: Registry_LabelsEntry): unknown; fromPartial, never>>(object: I): Registry_LabelsEntry; }; export declare const Registry_PropertiesEntry: { encode(message: Registry_PropertiesEntry, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Registry_PropertiesEntry; fromJSON(object: any): Registry_PropertiesEntry; toJSON(message: Registry_PropertiesEntry): unknown; fromPartial, never>>(object: I): Registry_PropertiesEntry; }; 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 {};