UNPKG

@pulumi/digitalocean

Version:

A Pulumi package for creating and managing DigitalOcean cloud resources.

29 lines (28 loc) 1.13 kB
import * as pulumi from "@pulumi/pulumi"; export declare function getPartnerAttachmentServiceKey(args: GetPartnerAttachmentServiceKeyArgs, opts?: pulumi.InvokeOptions): Promise<GetPartnerAttachmentServiceKeyResult>; /** * A collection of arguments for invoking getPartnerAttachmentServiceKey. */ export interface GetPartnerAttachmentServiceKeyArgs { attachmentId: string; } /** * A collection of values returned by getPartnerAttachmentServiceKey. */ export interface GetPartnerAttachmentServiceKeyResult { readonly attachmentId: string; readonly createdAt: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly state: string; readonly value: string; } export declare function getPartnerAttachmentServiceKeyOutput(args: GetPartnerAttachmentServiceKeyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPartnerAttachmentServiceKeyResult>; /** * A collection of arguments for invoking getPartnerAttachmentServiceKey. */ export interface GetPartnerAttachmentServiceKeyOutputArgs { attachmentId: pulumi.Input<string>; }