/// import { ChannelCredentials, ChannelOptions, UntypedServiceImplementation, handleUnaryCall, Client, ClientUnaryCall, Metadata, CallOptions, ServiceError } from '@grpc/grpc-js'; import _m0 from 'protobufjs/minimal'; import { AddressRequirements, Address } from '../../../../yandex/cloud/vpc/v1/address'; import { FieldMask } from '../../../../google/protobuf/field_mask'; import { Operation } from '../../../../yandex/cloud/operation/operation'; export declare const protobufPackage = "yandex.cloud.vpc.v1"; export interface GetAddressRequest { /** * ID of the Address resource to return. * * To get Address resource ID make a [AddressService.List] request. */ addressId: string; } export interface GetAddressByValueRequest { externalIpv4Address: string | undefined; } export interface ListAddressesRequest { /** * ID of the folder to list addresses in. * * 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 [ListAddressesResponse.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 * [ListAddressesResponse.next_page_token] returned by a previous list request. */ pageToken: string; /** * A filter expression that filters Address listed in the response. * * The expression must specify: * 1. The field name. Currently you can use filtering only on [Address.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]`. * Example of a filter: `name=my-address`. */ filter: string; } export interface ListAddressesResponse { /** List of addresses. */ addresses: Address[]; /** * Token for getting the next page of the list. If the number of results is greater than * the specified [ListAddressesRequest.page_size], use `next_page_token` as the value * for the [ListAddressesRequest.page_token] parameter in the next list request. * * Each subsequent page will have its own `next_page_token` to continue paging through the results. */ nextPageToken: string; } export interface CreateAddressRequest { /** * ID of the folder to create a address in. * * To get a folder ID make a [yandex.cloud.resourcemanager.v1.FolderService.List] request. */ folderId: string; /** * Name of the address. * The name must be unique within the folder. */ name: string; /** Description of the address. */ description: string; /** Address labels as `key:value` pairs. */ labels: { [key: string]: string; }; externalIpv4AddressSpec?: ExternalIpv4AddressSpec | undefined; /** Specifies if address protected from deletion. */ deletionProtection: boolean; /** Optional DNS record specifications */ dnsRecordSpecs: DnsRecordSpec[]; } export interface CreateAddressRequest_LabelsEntry { key: string; value: string; } export interface ExternalIpv4AddressSpec { /** Value of address. */ address: string; /** Availability zone from which the address will be allocated. */ zoneId: string; /** Parameters of the allocated address, for example DDoS Protection. */ requirements?: AddressRequirements; } export interface DnsRecordSpec { /** Required. DNS record name (absolute or relative to the DNS zone in use). */ fqdn: string; /** Required. ID of the public DNS zone. The maximum string length in characters is 20. */ dnsZoneId: string; /** TTL of record. Acceptable values are 0 to 86400, inclusive. */ ttl: number; /** Optional. If the PTR record is required, this parameter must be set to "true". */ ptr: boolean; } export interface CreateAddressMetadata { /** ID of the address that is being created. */ addressId: string; } export interface UpdateAddressRequest { /** * ID of the address to update. * * To get the address ID make a [AddressService.List] request. */ addressId: string; /** Field mask that specifies which attributes of the Address should be updated. */ updateMask?: FieldMask; /** * New name for the address. * The name must be unique within the folder. */ name: string; /** New description of the address. */ description: string; /** * Address labels as `key:value` pairs. * * Existing set of labels is completely replaced by the provided set, so if you just want * to add or remove a label: * 1. Get the current set of labels with a [AddressService.Get] request. * 2. Add or remove a label in this set. * 3. Send the new set in this field. */ labels: { [key: string]: string; }; /** Specifies if address is reserved or not. */ reserved: boolean; /** Specifies if address protected from deletion. */ deletionProtection: boolean; /** Optional DNS record specifications */ dnsRecordSpecs: DnsRecordSpec[]; } export interface UpdateAddressRequest_LabelsEntry { key: string; value: string; } export interface UpdateAddressMetadata { /** ID of the Address that is being updated. */ addressId: string; } export interface DeleteAddressRequest { /** * ID of the address to delete. * * To get a address ID make a [AddressService.List] request. */ addressId: string; } export interface DeleteAddressMetadata { /** ID of the address that is being deleted. */ addressId: string; } export interface ListAddressOperationsRequest { /** * ID of the address to list operations for. * * To get a address ID make a [AddressService.List] request. */ addressId: 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 [ListAddressOperationsResponse.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 * [ListAddressOperationsResponse.next_page_token] returned by a previous list request. */ pageToken: string; } export interface ListAddressOperationsResponse { /** List of operations for the specified address. */ operations: Operation[]; /** * Token for getting the next page of the list. If the number of results is greater than * the specified [ListAddressOperationsRequest.page_size], use `next_page_token` as the value * for the [ListAddressOperationsRequest.page_token] parameter in the next list request. * * Each subsequent page will have its own `next_page_token` to continue paging through the results. */ nextPageToken: string; } export interface MoveAddressRequest { /** ID of the address that is being moved. */ addressId: string; /** ID of the folder to move address to. */ destinationFolderId: string; } export interface MoveAddressMetadata { /** ID of the address that is being moved. */ addressId: string; } export declare const GetAddressRequest: { encode(message: GetAddressRequest, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GetAddressRequest; fromJSON(object: any): GetAddressRequest; toJSON(message: GetAddressRequest): unknown; fromPartial, never>>(object: I): GetAddressRequest; }; export declare const GetAddressByValueRequest: { encode(message: GetAddressByValueRequest, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GetAddressByValueRequest; fromJSON(object: any): GetAddressByValueRequest; toJSON(message: GetAddressByValueRequest): unknown; fromPartial, never>>(object: I): GetAddressByValueRequest; }; export declare const ListAddressesRequest: { encode(message: ListAddressesRequest, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ListAddressesRequest; fromJSON(object: any): ListAddressesRequest; toJSON(message: ListAddressesRequest): unknown; fromPartial, never>>(object: I): ListAddressesRequest; }; export declare const ListAddressesResponse: { encode(message: ListAddressesResponse, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ListAddressesResponse; fromJSON(object: any): ListAddressesResponse; toJSON(message: ListAddressesResponse): unknown; fromPartial, never>) | undefined; externalIpv4Address?: ({ address?: string | undefined; zoneId?: string | undefined; requirements?: { ddosProtectionProvider?: string | undefined; outgoingSmtpCapability?: string | undefined; } | undefined; } & { address?: string | undefined; zoneId?: string | undefined; requirements?: ({ ddosProtectionProvider?: string | undefined; outgoingSmtpCapability?: string | undefined; } & { ddosProtectionProvider?: string | undefined; outgoingSmtpCapability?: string | undefined; } & Record, never>) | undefined; } & Record, never>) | undefined; reserved?: boolean | undefined; used?: boolean | undefined; type?: import("../../../../yandex/cloud/vpc/v1/address").Address_Type | undefined; ipVersion?: import("../../../../yandex/cloud/vpc/v1/address").Address_IpVersion | undefined; deletionProtection?: boolean | undefined; dnsRecords?: ({ fqdn?: string | undefined; dnsZoneId?: string | undefined; ttl?: number | undefined; ptr?: boolean | undefined; }[] & ({ fqdn?: string | undefined; dnsZoneId?: string | undefined; ttl?: number | undefined; ptr?: boolean | undefined; } & { fqdn?: string | undefined; dnsZoneId?: string | undefined; ttl?: number | undefined; ptr?: boolean | undefined; } & Record, never>)[] & Record, never>) | undefined; } & Record, never>)[] & Record, never>) | undefined; nextPageToken?: string | undefined; } & Record, never>>(object: I): ListAddressesResponse; }; export declare const CreateAddressRequest: { encode(message: CreateAddressRequest, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): CreateAddressRequest; fromJSON(object: any): CreateAddressRequest; toJSON(message: CreateAddressRequest): unknown; fromPartial, never>) | undefined; externalIpv4AddressSpec?: ({ address?: string | undefined; zoneId?: string | undefined; requirements?: { ddosProtectionProvider?: string | undefined; outgoingSmtpCapability?: string | undefined; } | undefined; } & { address?: string | undefined; zoneId?: string | undefined; requirements?: ({ ddosProtectionProvider?: string | undefined; outgoingSmtpCapability?: string | undefined; } & { ddosProtectionProvider?: string | undefined; outgoingSmtpCapability?: string | undefined; } & Record, never>) | undefined; } & Record, never>) | undefined; deletionProtection?: boolean | undefined; dnsRecordSpecs?: ({ fqdn?: string | undefined; dnsZoneId?: string | undefined; ttl?: number | undefined; ptr?: boolean | undefined; }[] & ({ fqdn?: string | undefined; dnsZoneId?: string | undefined; ttl?: number | undefined; ptr?: boolean | undefined; } & { fqdn?: string | undefined; dnsZoneId?: string | undefined; ttl?: number | undefined; ptr?: boolean | undefined; } & Record, never>)[] & Record, never>) | undefined; } & Record, never>>(object: I): CreateAddressRequest; }; export declare const CreateAddressRequest_LabelsEntry: { encode(message: CreateAddressRequest_LabelsEntry, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): CreateAddressRequest_LabelsEntry; fromJSON(object: any): CreateAddressRequest_LabelsEntry; toJSON(message: CreateAddressRequest_LabelsEntry): unknown; fromPartial, never>>(object: I): CreateAddressRequest_LabelsEntry; }; export declare const ExternalIpv4AddressSpec: { encode(message: ExternalIpv4AddressSpec, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ExternalIpv4AddressSpec; fromJSON(object: any): ExternalIpv4AddressSpec; toJSON(message: ExternalIpv4AddressSpec): unknown; fromPartial, never>) | undefined; } & Record, never>>(object: I): ExternalIpv4AddressSpec; }; export declare const DnsRecordSpec: { encode(message: DnsRecordSpec, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): DnsRecordSpec; fromJSON(object: any): DnsRecordSpec; toJSON(message: DnsRecordSpec): unknown; fromPartial, never>>(object: I): DnsRecordSpec; }; export declare const CreateAddressMetadata: { encode(message: CreateAddressMetadata, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): CreateAddressMetadata; fromJSON(object: any): CreateAddressMetadata; toJSON(message: CreateAddressMetadata): unknown; fromPartial, never>>(object: I): CreateAddressMetadata; }; export declare const UpdateAddressRequest: { encode(message: UpdateAddressRequest, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): UpdateAddressRequest; fromJSON(object: any): UpdateAddressRequest; toJSON(message: UpdateAddressRequest): unknown; fromPartial, never>) | undefined; } & Record, never>) | undefined; name?: string | undefined; description?: string | undefined; labels?: ({ [x: string]: string | undefined; } & { [x: string]: string | undefined; } & Record, never>) | undefined; reserved?: boolean | undefined; deletionProtection?: boolean | undefined; dnsRecordSpecs?: ({ fqdn?: string | undefined; dnsZoneId?: string | undefined; ttl?: number | undefined; ptr?: boolean | undefined; }[] & ({ fqdn?: string | undefined; dnsZoneId?: string | undefined; ttl?: number | undefined; ptr?: boolean | undefined; } & { fqdn?: string | undefined; dnsZoneId?: string | undefined; ttl?: number | undefined; ptr?: boolean | undefined; } & Record, never>)[] & Record, never>) | undefined; } & Record, never>>(object: I): UpdateAddressRequest; }; export declare const UpdateAddressRequest_LabelsEntry: { encode(message: UpdateAddressRequest_LabelsEntry, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): UpdateAddressRequest_LabelsEntry; fromJSON(object: any): UpdateAddressRequest_LabelsEntry; toJSON(message: UpdateAddressRequest_LabelsEntry): unknown; fromPartial, never>>(object: I): UpdateAddressRequest_LabelsEntry; }; export declare const UpdateAddressMetadata: { encode(message: UpdateAddressMetadata, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): UpdateAddressMetadata; fromJSON(object: any): UpdateAddressMetadata; toJSON(message: UpdateAddressMetadata): unknown; fromPartial, never>>(object: I): UpdateAddressMetadata; }; export declare const DeleteAddressRequest: { encode(message: DeleteAddressRequest, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): DeleteAddressRequest; fromJSON(object: any): DeleteAddressRequest; toJSON(message: DeleteAddressRequest): unknown; fromPartial, never>>(object: I): DeleteAddressRequest; }; export declare const DeleteAddressMetadata: { encode(message: DeleteAddressMetadata, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): DeleteAddressMetadata; fromJSON(object: any): DeleteAddressMetadata; toJSON(message: DeleteAddressMetadata): unknown; fromPartial, never>>(object: I): DeleteAddressMetadata; }; export declare const ListAddressOperationsRequest: { encode(message: ListAddressOperationsRequest, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ListAddressOperationsRequest; fromJSON(object: any): ListAddressOperationsRequest; toJSON(message: ListAddressOperationsRequest): unknown; fromPartial, never>>(object: I): ListAddressOperationsRequest; }; export declare const ListAddressOperationsResponse: { encode(message: ListAddressOperationsResponse, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ListAddressOperationsResponse; fromJSON(object: any): ListAddressOperationsResponse; toJSON(message: ListAddressOperationsResponse): unknown; fromPartial, never>) | undefined; error?: ({ code?: number | undefined; message?: string | undefined; details?: { typeUrl?: string | undefined; value?: Buffer | undefined; }[] | undefined; } & { code?: number | undefined; message?: string | undefined; details?: ({ typeUrl?: string | undefined; value?: Buffer | undefined; }[] & ({ typeUrl?: string | undefined; value?: Buffer | undefined; } & { typeUrl?: string | undefined; value?: Buffer | undefined; } & Record, never>)[] & Record, never>) | undefined; } & Record, never>) | undefined; response?: ({ typeUrl?: string | undefined; value?: Buffer | undefined; } & { typeUrl?: string | undefined; value?: Buffer | undefined; } & Record, never>) | undefined; } & Record, never>)[] & Record, never>) | undefined; nextPageToken?: string | undefined; } & Record, never>>(object: I): ListAddressOperationsResponse; }; export declare const MoveAddressRequest: { encode(message: MoveAddressRequest, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): MoveAddressRequest; fromJSON(object: any): MoveAddressRequest; toJSON(message: MoveAddressRequest): unknown; fromPartial, never>>(object: I): MoveAddressRequest; }; export declare const MoveAddressMetadata: { encode(message: MoveAddressMetadata, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): MoveAddressMetadata; fromJSON(object: any): MoveAddressMetadata; toJSON(message: MoveAddressMetadata): unknown; fromPartial, never>>(object: I): MoveAddressMetadata; }; /** A set of methods for managing Address resources. */ export declare const AddressServiceService: { /** * Returns the specified Address resource. * * To get the list of all available Address resources, make a [List] request. */ readonly get: { readonly path: "/yandex.cloud.vpc.v1.AddressService/Get"; readonly requestStream: false; readonly responseStream: false; readonly requestSerialize: (value: GetAddressRequest) => Buffer; readonly requestDeserialize: (value: Buffer) => GetAddressRequest; readonly responseSerialize: (value: Address) => Buffer; readonly responseDeserialize: (value: Buffer) => Address; }; /** * Returns the specified Address resource by a given value. * * To get the list of all available Address resources, make a [List] request. */ readonly getByValue: { readonly path: "/yandex.cloud.vpc.v1.AddressService/GetByValue"; readonly requestStream: false; readonly responseStream: false; readonly requestSerialize: (value: GetAddressByValueRequest) => Buffer; readonly requestDeserialize: (value: Buffer) => GetAddressByValueRequest; readonly responseSerialize: (value: Address) => Buffer; readonly responseDeserialize: (value: Buffer) => Address; }; /** Retrieves the list of Address resources in the specified folder. */ readonly list: { readonly path: "/yandex.cloud.vpc.v1.AddressService/List"; readonly requestStream: false; readonly responseStream: false; readonly requestSerialize: (value: ListAddressesRequest) => Buffer; readonly requestDeserialize: (value: Buffer) => ListAddressesRequest; readonly responseSerialize: (value: ListAddressesResponse) => Buffer; readonly responseDeserialize: (value: Buffer) => ListAddressesResponse; }; /** Creates an address in the specified folder and network. */ readonly create: { readonly path: "/yandex.cloud.vpc.v1.AddressService/Create"; readonly requestStream: false; readonly responseStream: false; readonly requestSerialize: (value: CreateAddressRequest) => Buffer; readonly requestDeserialize: (value: Buffer) => CreateAddressRequest; readonly responseSerialize: (value: Operation) => Buffer; readonly responseDeserialize: (value: Buffer) => Operation; }; /** Updates the specified address. */ readonly update: { readonly path: "/yandex.cloud.vpc.v1.AddressService/Update"; readonly requestStream: false; readonly responseStream: false; readonly requestSerialize: (value: UpdateAddressRequest) => Buffer; readonly requestDeserialize: (value: Buffer) => UpdateAddressRequest; readonly responseSerialize: (value: Operation) => Buffer; readonly responseDeserialize: (value: Buffer) => Operation; }; /** Deletes the specified address. */ readonly delete: { readonly path: "/yandex.cloud.vpc.v1.AddressService/Delete"; readonly requestStream: false; readonly responseStream: false; readonly requestSerialize: (value: DeleteAddressRequest) => Buffer; readonly requestDeserialize: (value: Buffer) => DeleteAddressRequest; readonly responseSerialize: (value: Operation) => Buffer; readonly responseDeserialize: (value: Buffer) => Operation; }; /** List operations for the specified address. */ readonly listOperations: { readonly path: "/yandex.cloud.vpc.v1.AddressService/ListOperations"; readonly requestStream: false; readonly responseStream: false; readonly requestSerialize: (value: ListAddressOperationsRequest) => Buffer; readonly requestDeserialize: (value: Buffer) => ListAddressOperationsRequest; readonly responseSerialize: (value: ListAddressOperationsResponse) => Buffer; readonly responseDeserialize: (value: Buffer) => ListAddressOperationsResponse; }; /** Move an address to another folder */ readonly move: { readonly path: "/yandex.cloud.vpc.v1.AddressService/Move"; readonly requestStream: false; readonly responseStream: false; readonly requestSerialize: (value: MoveAddressRequest) => Buffer; readonly requestDeserialize: (value: Buffer) => MoveAddressRequest; readonly responseSerialize: (value: Operation) => Buffer; readonly responseDeserialize: (value: Buffer) => Operation; }; }; export interface AddressServiceServer extends UntypedServiceImplementation { /** * Returns the specified Address resource. * * To get the list of all available Address resources, make a [List] request. */ get: handleUnaryCall; /** * Returns the specified Address resource by a given value. * * To get the list of all available Address resources, make a [List] request. */ getByValue: handleUnaryCall; /** Retrieves the list of Address resources in the specified folder. */ list: handleUnaryCall; /** Creates an address in the specified folder and network. */ create: handleUnaryCall; /** Updates the specified address. */ update: handleUnaryCall; /** Deletes the specified address. */ delete: handleUnaryCall; /** List operations for the specified address. */ listOperations: handleUnaryCall; /** Move an address to another folder */ move: handleUnaryCall; } export interface AddressServiceClient extends Client { /** * Returns the specified Address resource. * * To get the list of all available Address resources, make a [List] request. */ get(request: GetAddressRequest, callback: (error: ServiceError | null, response: Address) => void): ClientUnaryCall; get(request: GetAddressRequest, metadata: Metadata, callback: (error: ServiceError | null, response: Address) => void): ClientUnaryCall; get(request: GetAddressRequest, metadata: Metadata, options: Partial, callback: (error: ServiceError | null, response: Address) => void): ClientUnaryCall; /** * Returns the specified Address resource by a given value. * * To get the list of all available Address resources, make a [List] request. */ getByValue(request: GetAddressByValueRequest, callback: (error: ServiceError | null, response: Address) => void): ClientUnaryCall; getByValue(request: GetAddressByValueRequest, metadata: Metadata, callback: (error: ServiceError | null, response: Address) => void): ClientUnaryCall; getByValue(request: GetAddressByValueRequest, metadata: Metadata, options: Partial, callback: (error: ServiceError | null, response: Address) => void): ClientUnaryCall; /** Retrieves the list of Address resources in the specified folder. */ list(request: ListAddressesRequest, callback: (error: ServiceError | null, response: ListAddressesResponse) => void): ClientUnaryCall; list(request: ListAddressesRequest, metadata: Metadata, callback: (error: ServiceError | null, response: ListAddressesResponse) => void): ClientUnaryCall; list(request: ListAddressesRequest, metadata: Metadata, options: Partial, callback: (error: ServiceError | null, response: ListAddressesResponse) => void): ClientUnaryCall; /** Creates an address in the specified folder and network. */ create(request: CreateAddressRequest, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; create(request: CreateAddressRequest, metadata: Metadata, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; create(request: CreateAddressRequest, metadata: Metadata, options: Partial, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; /** Updates the specified address. */ update(request: UpdateAddressRequest, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; update(request: UpdateAddressRequest, metadata: Metadata, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; update(request: UpdateAddressRequest, metadata: Metadata, options: Partial, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; /** Deletes the specified address. */ delete(request: DeleteAddressRequest, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; delete(request: DeleteAddressRequest, metadata: Metadata, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; delete(request: DeleteAddressRequest, metadata: Metadata, options: Partial, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; /** List operations for the specified address. */ listOperations(request: ListAddressOperationsRequest, callback: (error: ServiceError | null, response: ListAddressOperationsResponse) => void): ClientUnaryCall; listOperations(request: ListAddressOperationsRequest, metadata: Metadata, callback: (error: ServiceError | null, response: ListAddressOperationsResponse) => void): ClientUnaryCall; listOperations(request: ListAddressOperationsRequest, metadata: Metadata, options: Partial, callback: (error: ServiceError | null, response: ListAddressOperationsResponse) => void): ClientUnaryCall; /** Move an address to another folder */ move(request: MoveAddressRequest, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; move(request: MoveAddressRequest, metadata: Metadata, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; move(request: MoveAddressRequest, metadata: Metadata, options: Partial, callback: (error: ServiceError | null, response: Operation) => void): ClientUnaryCall; } export declare const AddressServiceClient: { new (address: string, credentials: ChannelCredentials, options?: Partial): AddressServiceClient; service: typeof AddressServiceService; }; 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 {};