// @generated by protoc-gen-es v1.10.0 // @generated from file service/discovery/v1/discovery.proto (package viam.service.discovery.v1, syntax proto3) /* eslint-disable */ // @ts-nocheck import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage, Struct } from "@bufbuild/protobuf"; import { Message, proto3 } from "@bufbuild/protobuf"; import type { ComponentConfig } from "../../../app/v1/robot_pb.js"; /** * @generated from message viam.service.discovery.v1.DiscoverResourcesRequest */ export declare class DiscoverResourcesRequest extends Message { /** * name of the discover service * * @generated from field: string name = 1; */ name: string; /** * Additional arguments to the method * * @generated from field: google.protobuf.Struct extra = 99; */ extra?: Struct; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "viam.service.discovery.v1.DiscoverResourcesRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): DiscoverResourcesRequest; static fromJson(jsonValue: JsonValue, options?: Partial): DiscoverResourcesRequest; static fromJsonString(jsonString: string, options?: Partial): DiscoverResourcesRequest; static equals(a: DiscoverResourcesRequest | PlainMessage | undefined, b: DiscoverResourcesRequest | PlainMessage | undefined): boolean; } /** * @generated from message viam.service.discovery.v1.DiscoverResourcesResponse */ export declare class DiscoverResourcesResponse extends Message { /** * list of ComponentConfigs that describe the components found by a discover service. * * @generated from field: repeated viam.app.v1.ComponentConfig discoveries = 1; */ discoveries: ComponentConfig[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "viam.service.discovery.v1.DiscoverResourcesResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): DiscoverResourcesResponse; static fromJson(jsonValue: JsonValue, options?: Partial): DiscoverResourcesResponse; static fromJsonString(jsonString: string, options?: Partial): DiscoverResourcesResponse; static equals(a: DiscoverResourcesResponse | PlainMessage | undefined, b: DiscoverResourcesResponse | PlainMessage | undefined): boolean; }