/// import { ChannelCredentials, ChannelOptions, UntypedServiceImplementation, handleUnaryCall, Client, ClientUnaryCall, Metadata, CallOptions, ServiceError } from '@grpc/grpc-js'; import _m0 from 'protobufjs/minimal'; import { Repository } from '../../../../yandex/cloud/containerregistry/v1/repository'; import { ListAccessBindingsRequest, ListAccessBindingsResponse, SetAccessBindingsRequest, UpdateAccessBindingsRequest } from '../../../../yandex/cloud/access/access'; import { Operation } from '../../../../yandex/cloud/operation/operation'; export declare const protobufPackage = "yandex.cloud.containerregistry.v1"; export interface GetRepositoryRequest { /** * ID of the Repository resource to return. * * To get the repository ID use a [RepositoryService.List] request. */ repositoryId: string; } export interface GetRepositoryByNameRequest { /** * Name of the Repository resource to return. * * To get the repository name use a [RepositoryService.List] request. */ repositoryName: string; } export interface ListRepositoriesRequest { /** * ID of the registry to list repositories in. * * To get the registry ID use a [RegistryService.List] request. */ registryId: string; /** * ID of the folder to list registries in. * * [folder_id] is ignored if a [ListImagesRequest.registry_id] is specified in the request. * * To get the folder ID use a [yandex.cloud.resourcemanager.v1.FolderService.List] request. */ folderId: string; /** * The maximum number of results per page to return. If the number of available * results is larger than [page_size], * the service returns a [ListRepositoriesResponse.next_page_token] * that can be used to get the next page of results in subsequent list requests. * Default value: 100. */ pageSize: number; /** * Page token. To get the next page of results, set [page_token] to the * [ListRepositoriesResponse.next_page_token] returned by a previous list request. */ pageToken: string; /** * A filter expression that filters resources listed in the response. * The expression must specify: * 1. The field name. Currently you can use filtering only on [Repository.name] field. * 2. An `=` operator. * 3. The value in double quotes (`"`). Must be 3-63 characters long and match the regular expression `[a-z][-a-z0-9]{1,61}[a-z0-9]`. */ filter: string; orderBy: string; } export interface ListRepositoriesResponse { /** List of Repository resources. */ repositories: Repository[]; /** * This token allows you to get the next page of results for list requests. If the number of results * is larger than [ListRepositoriesRequest.page_size], use * the [next_page_token] as the value * for the [ListRepositoriesRequest.page_token] query parameter * in the next list request. Each subsequent list request will have its own * [next_page_token] to continue paging through the results. */ nextPageToken: string; } export interface UpsertRepositoryRequest { /** * Name of the repository. * * The name of the repository should match the name of the images that will be pushed in the repository. */ name: string; } export interface UpsertRepositoryMetadata { /** ID of the repository that is being upserted. */ repositoryId: string; } export interface DeleteRepositoryRequest { /** ID of the repository to delete. */ repositoryId: string; } export interface DeleteRepositoryMetadata { /** ID of the repository that is being deleted. */ repositoryId: string; } export declare const GetRepositoryRequest: { encode(message: GetRepositoryRequest, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GetRepositoryRequest; fromJSON(object: any): GetRepositoryRequest; toJSON(message: GetRepositoryRequest): unknown; fromPartial, never>>(object: I): GetRepositoryRequest; }; export declare const GetRepositoryByNameRequest: { encode(message: GetRepositoryByNameRequest, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GetRepositoryByNameRequest; fromJSON(object: any): GetRepositoryByNameRequest; toJSON(message: GetRepositoryByNameRequest): unknown; fromPartial, never>>(object: I): GetRepositoryByNameRequest; }; export declare const ListRepositoriesRequest: { encode(message: ListRepositoriesRequest, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ListRepositoriesRequest; fromJSON(object: any): ListRepositoriesRequest; toJSON(message: ListRepositoriesRequest): unknown; fromPartial, never>>(object: I): ListRepositoriesRequest; }; export declare const ListRepositoriesResponse: { encode(message: ListRepositoriesResponse, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ListRepositoriesResponse; fromJSON(object: any): ListRepositoriesResponse; toJSON(message: ListRepositoriesResponse): unknown; fromPartial, never>)[] & Record, never>) | undefined; nextPageToken?: string | undefined; } & Record, never>>(object: I): ListRepositoriesResponse; }; export declare const UpsertRepositoryRequest: { encode(message: UpsertRepositoryRequest, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): UpsertRepositoryRequest; fromJSON(object: any): UpsertRepositoryRequest; toJSON(message: UpsertRepositoryRequest): unknown; fromPartial, never>>(object: I): UpsertRepositoryRequest; }; export declare const UpsertRepositoryMetadata: { encode(message: UpsertRepositoryMetadata, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): UpsertRepositoryMetadata; fromJSON(object: any): UpsertRepositoryMetadata; toJSON(message: UpsertRepositoryMetadata): unknown; fromPartial, never>>(object: I): UpsertRepositoryMetadata; }; export declare const DeleteRepositoryRequest: { encode(message: DeleteRepositoryRequest, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): DeleteRepositoryRequest; fromJSON(object: any): DeleteRepositoryRequest; toJSON(message: DeleteRepositoryRequest): unknown; fromPartial, never>>(object: I): DeleteRepositoryRequest; }; export declare const DeleteRepositoryMetadata: { encode(message: DeleteRepositoryMetadata, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): DeleteRepositoryMetadata; fromJSON(object: any): DeleteRepositoryMetadata; toJSON(message: DeleteRepositoryMetadata): unknown; fromPartial, never>>(object: I): DeleteRepositoryMetadata; }; /** A set of methods for managing Repository resources. */ export declare const RepositoryServiceService: { /** * Returns the specified Repository resource. * * To get the list of available Repository resources, make a [List] request. */ readonly get: { readonly path: "/yandex.cloud.containerregistry.v1.RepositoryService/Get"; readonly requestStream: false; readonly responseStream: false; readonly requestSerialize: (value: GetRepositoryRequest) => Buffer; readonly requestDeserialize: (value: Buffer) => GetRepositoryRequest; readonly responseSerialize: (value: Repository) => Buffer; readonly responseDeserialize: (value: Buffer) => Repository; }; /** * Returns the specified Repository resource. * * To get the list of available Repository resources, make a [List] request. */ readonly getByName: { readonly path: "/yandex.cloud.containerregistry.v1.RepositoryService/GetByName"; readonly requestStream: false; readonly responseStream: false; readonly requestSerialize: (value: GetRepositoryByNameRequest) => Buffer; readonly requestDeserialize: (value: Buffer) => GetRepositoryByNameRequest; readonly responseSerialize: (value: Repository) => Buffer; readonly responseDeserialize: (value: Buffer) => Repository; }; /** Retrieves the list of Repository resources in the specified registry. */ readonly list: { readonly path: "/yandex.cloud.containerregistry.v1.RepositoryService/List"; readonly requestStream: false; readonly responseStream: false; readonly requestSerialize: (value: ListRepositoriesRequest) => Buffer; readonly requestDeserialize: (value: Buffer) => ListRepositoriesRequest; readonly responseSerialize: (value: ListRepositoriesResponse) => Buffer; readonly responseDeserialize: (value: Buffer) => ListRepositoriesResponse; }; /** Lists access bindings for the specified repository. */ readonly listAccessBindings: { readonly path: "/yandex.cloud.containerregistry.v1.RepositoryService/ListAccessBindings"; readonly requestStream: false; readonly responseStream: false; readonly requestSerialize: (value: ListAccessBindingsRequest) => Buffer; readonly requestDeserialize: (value: Buffer) => ListAccessBindingsRequest; readonly responseSerialize: (value: ListAccessBindingsResponse) => Buffer; readonly responseDeserialize: (value: Buffer) => ListAccessBindingsResponse; }; /** Upserts a repository in the specified registry. */ readonly upsert: { readonly path: "/yandex.cloud.containerregistry.v1.RepositoryService/Upsert"; readonly requestStream: false; readonly responseStream: false; readonly requestSerialize: (value: UpsertRepositoryRequest) => Buffer; readonly requestDeserialize: (value: Buffer) => UpsertRepositoryRequest; readonly responseSerialize: (value: Operation) => Buffer; readonly responseDeserialize: (value: Buffer) => Operation; }; /** Deletes the specified repository. */ readonly delete: { readonly path: "/yandex.cloud.containerregistry.v1.RepositoryService/Delete"; readonly requestStream: false; readonly responseStream: false; readonly requestSerialize: (value: DeleteRepositoryRequest) => Buffer; readonly requestDeserialize: (value: Buffer) => DeleteRepositoryRequest; readonly responseSerialize: (value: Operation) => Buffer; readonly responseDeserialize: (value: Buffer) => Operation; }; /** Sets access bindings for the specified repository. */ readonly setAccessBindings: { readonly path: "/yandex.cloud.containerregistry.v1.RepositoryService/SetAccessBindings"; readonly requestStream: false; readonly responseStream: false; readonly requestSerialize: (value: SetAccessBindingsRequest) => Buffer; readonly requestDeserialize: (value: Buffer) => SetAccessBindingsRequest; readonly responseSerialize: (value: Operation) => Buffer; readonly responseDeserialize: (value: Buffer) => Operation; }; /** Updates access bindings for the specified repository. */ readonly updateAccessBindings: { readonly path: "/yandex.cloud.containerregistry.v1.RepositoryService/UpdateAccessBindings"; readonly requestStream: false; readonly responseStream: false; readonly requestSerialize: (value: UpdateAccessBindingsRequest) => Buffer; readonly requestDeserialize: (value: Buffer) => UpdateAccessBindingsRequest; readonly responseSerialize: (value: Operation) => Buffer; readonly responseDeserialize: (value: Buffer) => Operation; }; }; export interface RepositoryServiceServer extends UntypedServiceImplementation { /** * Returns the specified Repository resource. * * To get the list of available Repository resources, make a [List] request. */ get: handleUnaryCall; /** * Returns the specified Repository resource. * * To get the list of available Repository resources, make a [List] request. */ getByName: handleUnaryCall; /** Retrieves the list of Repository resources in the specified registry. */ list: handleUnaryCall; /** Lists access bindings for the specified repository. */ listAccessBindings: handleUnaryCall; /** Upserts a repository in the specified registry. */ upsert: handleUnaryCall; /** Deletes the specified repository. */ delete: handleUnaryCall; /** Sets access bindings for the specified repository. */ setAccessBindings: handleUnaryCall; /** Updates access bindings for the specified repository. */ updateAccessBindings: handleUnaryCall; } export interface RepositoryServiceClient extends Client { /** * Returns the specified Repository resource. * * To get the list of available Repository resources, make a [List] request. */ get(request: GetRepositoryRequest, callback: (error: ServiceError | null, response: Repository) => void): ClientUnaryCall; get(request: GetRepositoryRequest, metadata: Metadata, callback: (error: ServiceError | null, response: Repository) => void): ClientUnaryCall; get(request: GetRepositoryRequest, metadata: Metadata, options: Partial, callback: (error: ServiceError | null, response: Repository) => void): ClientUnaryCall; /** * Returns the specified Repository resource. * * To get the list of available Repository resources, make a [List] request. */ getByName(request: GetRepositoryByNameRequest, callback: (error: ServiceError | null, response: Repository) => void): ClientUnaryCall; getByName(request: GetRepositoryByNameRequest, metadata: Metadata, callback: (error: ServiceError | null, response: Repository) => void): ClientUnaryCall; getByName(request: GetRepositoryByNameRequest, metadata: Metadata, options: Partial, callback: (error: ServiceError | null, response: Repository) => void): ClientUnaryCall; /** Retrieves the list of Repository resources in the specified registry. */ list(request: ListRepositoriesRequest, callback: (error: ServiceError | null, response: ListRepositoriesResponse) => void): ClientUnaryCall; list(request: ListRepositoriesRequest, metadata: Metadata, callback: (error: ServiceError | null, response: ListRepositoriesResponse) => void): ClientUnaryCall; list(request: ListRepositoriesRequest, metadata: Metadata, options: Partial, callback: (error: ServiceError | null, response: ListRepositoriesResponse) => void): ClientUnaryCall; /** Lists access bindings for the specified repository. */ listAccessBindings(request: ListAccessBindingsRequest, callback: (error: ServiceError | null, response: ListAccessBindingsResponse) => void): ClientUnaryCall; listAccessBindings(request: ListAccessBindingsRequest, metadata: Metadata, callback: (error: ServiceError | null, response: ListAccessBindingsResponse) => void): ClientUnaryCall; listAccessBindings(request: ListAccessBindingsRequest, metadata: Metadata, options: Partial, callback: (error: ServiceError | null, response: ListAccessBindingsResponse) => void): ClientUnaryCall; /** Upserts a repository in the specified registry. */ upsert(request: UpsertRepositoryRequest, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; upsert(request: UpsertRepositoryRequest, metadata: Metadata, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; upsert(request: UpsertRepositoryRequest, metadata: Metadata, options: Partial, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; /** Deletes the specified repository. */ delete(request: DeleteRepositoryRequest, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; delete(request: DeleteRepositoryRequest, metadata: Metadata, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; delete(request: DeleteRepositoryRequest, metadata: Metadata, options: Partial, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; /** Sets access bindings for the specified repository. */ setAccessBindings(request: SetAccessBindingsRequest, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; setAccessBindings(request: SetAccessBindingsRequest, metadata: Metadata, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; setAccessBindings(request: SetAccessBindingsRequest, metadata: Metadata, options: Partial, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; /** Updates access bindings for the specified repository. */ updateAccessBindings(request: UpdateAccessBindingsRequest, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; updateAccessBindings(request: UpdateAccessBindingsRequest, metadata: Metadata, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; updateAccessBindings(request: UpdateAccessBindingsRequest, metadata: Metadata, options: Partial, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; } export declare const RepositoryServiceClient: { new (address: string, credentials: ChannelCredentials, options?: Partial): RepositoryServiceClient; service: typeof RepositoryServiceService; }; 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 {};
= P extends Builtin ? P : P & { [K in keyof P]: Exact
; } & Record>, never>; export {};