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 getEnvironmentEntry(args: GetEnvironmentEntryArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetEnvironmentEntryArgs { entryId: string; environmentId: string; keyvaluemapId: string; organizationId: string; } export interface GetEnvironmentEntryResult { /** * 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 getEnvironmentEntryOutput(args: GetEnvironmentEntryOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetEnvironmentEntryOutputArgs { entryId: pulumi.Input; environmentId: pulumi.Input; keyvaluemapId: pulumi.Input; organizationId: pulumi.Input; }