@pierskarsenbarg/sdm
Version:
A Pulumi package for creating and managing StrongDM cloud resources.
34 lines • 1.49 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.getPeeringGroupResourceOutput = exports.getPeeringGroupResource = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* PeeringGroupResource represents the attachment between a PeeringGroup and a Resource.
*/
function getPeeringGroupResource(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("sdm:index/getPeeringGroupResource:getPeeringGroupResource", {
"groupId": args.groupId,
"id": args.id,
"resourceId": args.resourceId,
}, opts);
}
exports.getPeeringGroupResource = getPeeringGroupResource;
/**
* PeeringGroupResource represents the attachment between a PeeringGroup and a Resource.
*/
function getPeeringGroupResourceOutput(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("sdm:index/getPeeringGroupResource:getPeeringGroupResource", {
"groupId": args.groupId,
"id": args.id,
"resourceId": args.resourceId,
}, opts);
}
exports.getPeeringGroupResourceOutput = getPeeringGroupResourceOutput;
//# sourceMappingURL=getPeeringGroupResource.js.map