import * as pulumi from "@pulumi/pulumi"; /** * Gets a single entity row matching the entity type and entity id specified in the request. */ export declare function getEntity(args: GetEntityArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetEntityArgs { connectionId: string; entityId: string; entityTypeId: string; location: string; project?: string; } export interface GetEntityResult { /** * Fields of the entity. The key is name of the field and the value contains the applicable `google.protobuf.Value` entry for this field. */ readonly fields: { [key: string]: string; }; /** * Resource name of the Entity. Format: projects/{project}/locations/{location}/connections/{connection}/entityTypes/{type}/entities/{id} */ readonly name: string; } /** * Gets a single entity row matching the entity type and entity id specified in the request. */ export declare function getEntityOutput(args: GetEntityOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetEntityOutputArgs { connectionId: pulumi.Input; entityId: pulumi.Input; entityTypeId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }