@pierskarsenbarg/sdm
Version:
A Pulumi package for creating and managing StrongDM cloud resources.
34 lines • 1.56 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.getPeeringGroupOutput = exports.getPeeringGroup = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* PeeringGroups are the building blocks used for explicit network topology making.
* They may be linked to other peering groups. Sets of PeeringGroupResource and PeeringGroupNode can be attached to a peering group.
*/
function getPeeringGroup(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("sdm:index/getPeeringGroup:getPeeringGroup", {
"id": args.id,
"name": args.name,
}, opts);
}
exports.getPeeringGroup = getPeeringGroup;
/**
* PeeringGroups are the building blocks used for explicit network topology making.
* They may be linked to other peering groups. Sets of PeeringGroupResource and PeeringGroupNode can be attached to a peering group.
*/
function getPeeringGroupOutput(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("sdm:index/getPeeringGroup:getPeeringGroup", {
"id": args.id,
"name": args.name,
}, opts);
}
exports.getPeeringGroupOutput = getPeeringGroupOutput;
//# sourceMappingURL=getPeeringGroup.js.map