import * as pulumi from "@pulumi/pulumi"; /** * Get the key value entry value for a key value map scoped to an organization, environment, or API proxy. **Note**: Supported for Apigee hybrid 1.8.x and higher. */ export declare function getEntry(args: GetEntryArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetEntryArgs { apiId: string; entryId: string; keyvaluemapId: string; organizationId: string; } export interface GetEntryResult { /** * Resource URI that can be used to identify the scope of the key value map entries. */ readonly name: string; /** * Data or payload that is being retrieved and associated with the unique key. */ readonly value: string; } /** * Get the key value entry value for a key value map scoped to an organization, environment, or API proxy. **Note**: Supported for Apigee hybrid 1.8.x and higher. */ export declare function getEntryOutput(args: GetEntryOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetEntryOutputArgs { apiId: pulumi.Input; entryId: pulumi.Input; keyvaluemapId: pulumi.Input; organizationId: pulumi.Input; }