@pulumi/digitalocean
Version:
A Pulumi package for creating and managing DigitalOcean cloud resources.
30 lines • 1.33 kB
JavaScript
;
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.getPartnerAttachmentOutput = exports.getPartnerAttachment = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
function getPartnerAttachment(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("digitalocean:index/getPartnerAttachment:getPartnerAttachment", {
"bgp": args.bgp,
"id": args.id,
"name": args.name,
"redundancyZone": args.redundancyZone,
}, opts);
}
exports.getPartnerAttachment = getPartnerAttachment;
function getPartnerAttachmentOutput(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("digitalocean:index/getPartnerAttachment:getPartnerAttachment", {
"bgp": args.bgp,
"id": args.id,
"name": args.name,
"redundancyZone": args.redundancyZone,
}, opts);
}
exports.getPartnerAttachmentOutput = getPartnerAttachmentOutput;
//# sourceMappingURL=getPartnerAttachment.js.map