@pierskarsenbarg/sdm
Version:
A Pulumi package for creating and managing StrongDM cloud resources.
34 lines • 1.42 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.getPeeringGroupPeerOutput = exports.getPeeringGroupPeer = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* PeeringGroupPeer represents the link between two PeeringGroups
*/
function getPeeringGroupPeer(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("sdm:index/getPeeringGroupPeer:getPeeringGroupPeer", {
"groupId": args.groupId,
"id": args.id,
"peersWithGroupId": args.peersWithGroupId,
}, opts);
}
exports.getPeeringGroupPeer = getPeeringGroupPeer;
/**
* PeeringGroupPeer represents the link between two PeeringGroups
*/
function getPeeringGroupPeerOutput(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("sdm:index/getPeeringGroupPeer:getPeeringGroupPeer", {
"groupId": args.groupId,
"id": args.id,
"peersWithGroupId": args.peersWithGroupId,
}, opts);
}
exports.getPeeringGroupPeerOutput = getPeeringGroupPeerOutput;
//# sourceMappingURL=getPeeringGroupPeer.js.map