@pulumi/digitalocean
Version:
A Pulumi package for creating and managing DigitalOcean cloud resources.
41 lines (40 loc) • 1.48 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
export declare function getPartnerAttachment(args?: GetPartnerAttachmentArgs, opts?: pulumi.InvokeOptions): Promise<GetPartnerAttachmentResult>;
/**
* A collection of arguments for invoking getPartnerAttachment.
*/
export interface GetPartnerAttachmentArgs {
bgp?: inputs.GetPartnerAttachmentBgp;
id?: string;
name?: string;
redundancyZone?: string;
}
/**
* A collection of values returned by getPartnerAttachment.
*/
export interface GetPartnerAttachmentResult {
readonly bgp?: outputs.GetPartnerAttachmentBgp;
readonly childrens: string[];
readonly connectionBandwidthInMbps: number;
readonly createdAt: string;
readonly id: string;
readonly naasProvider: string;
readonly name: string;
readonly parentUuid: string;
readonly redundancyZone?: string;
readonly region: string;
readonly state: string;
readonly vpcIds: string[];
}
export declare function getPartnerAttachmentOutput(args?: GetPartnerAttachmentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPartnerAttachmentResult>;
/**
* A collection of arguments for invoking getPartnerAttachment.
*/
export interface GetPartnerAttachmentOutputArgs {
bgp?: pulumi.Input<inputs.GetPartnerAttachmentBgpArgs>;
id?: pulumi.Input<string>;
name?: pulumi.Input<string>;
redundancyZone?: pulumi.Input<string>;
}