import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Returns the details for an AppGroup app. */ export declare function getAppGroupApp(args: GetAppGroupAppArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetAppGroupAppArgs { appId: string; appgroupId: string; organizationId: string; } export interface GetAppGroupAppResult { /** * List of API products associated with the AppGroup app. */ readonly apiProducts: string[]; /** * Immutable. Name of the parent AppGroup whose resource name format is of syntax (organizations/*/appgroups/*). */ readonly appGroup: string; /** * Immutable. ID of the AppGroup app. */ readonly appId: string; /** * List of attributes for the AppGroup app. */ readonly attributes: outputs.apigee.v1.GoogleCloudApigeeV1AttributeResponse[]; /** * Callback URL used by OAuth 2.0 authorization servers to communicate authorization codes back to AppGroup apps. */ readonly callbackUrl: string; /** * Time the AppGroup app was created in milliseconds since epoch. */ readonly createdAt: string; /** * Set of credentials for the AppGroup app consisting of the consumer key/secret pairs associated with the API products. */ readonly credentials: outputs.apigee.v1.GoogleCloudApigeeV1CredentialResponse[]; /** * Immutable. Expiration time, in seconds, for the consumer key that is generated for the AppGroup app. If not set or left to the default value of `-1`, the API key never expires. The expiration time can't be updated after it is set. */ readonly keyExpiresIn: string; /** * Time the AppGroup app was modified in milliseconds since epoch. */ readonly lastModifiedAt: string; /** * Immutable. Name of the AppGroup app whose resource name format is of syntax (organizations/*/appgroups/*/apps/*). */ readonly name: string; /** * Scopes to apply to the AppGroup app. The specified scopes must already exist for the API product that you associate with the AppGroup app. */ readonly scopes: string[]; /** * Status of the App. Valid values include `approved` or `revoked`. */ readonly status: string; } /** * Returns the details for an AppGroup app. */ export declare function getAppGroupAppOutput(args: GetAppGroupAppOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetAppGroupAppOutputArgs { appId: pulumi.Input; appgroupId: pulumi.Input; organizationId: pulumi.Input; }