import * as pulumi from "@pulumi/pulumi"; /** * Gets an attachment. **Note:** Not supported for Apigee hybrid. */ export declare function getInstanceAttachment(args: GetInstanceAttachmentArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetInstanceAttachmentArgs { attachmentId: string; instanceId: string; organizationId: string; } export interface GetInstanceAttachmentResult { /** * Time the attachment was created in milliseconds since epoch. */ readonly createdAt: string; /** * ID of the attached environment. */ readonly environment: string; /** * ID of the attachment. */ readonly name: string; } /** * Gets an attachment. **Note:** Not supported for Apigee hybrid. */ export declare function getInstanceAttachmentOutput(args: GetInstanceAttachmentOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetInstanceAttachmentOutputArgs { attachmentId: pulumi.Input; instanceId: pulumi.Input; organizationId: pulumi.Input; }