@pulumiverse/scaleway
Version:
A Pulumi package for creating and managing Scaleway cloud resources.
36 lines • 1.45 kB
JavaScript
;
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.getPlacementGroupOutput = exports.getPlacementGroup = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Gets information about a Security Group.
*/
function getPlacementGroup(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("scaleway:instance/getPlacementGroup:getPlacementGroup", {
"name": args.name,
"placementGroupId": args.placementGroupId,
"projectId": args.projectId,
"zone": args.zone,
}, opts);
}
exports.getPlacementGroup = getPlacementGroup;
/**
* Gets information about a Security Group.
*/
function getPlacementGroupOutput(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("scaleway:instance/getPlacementGroup:getPlacementGroup", {
"name": args.name,
"placementGroupId": args.placementGroupId,
"projectId": args.projectId,
"zone": args.zone,
}, opts);
}
exports.getPlacementGroupOutput = getPlacementGroupOutput;
//# sourceMappingURL=getPlacementGroup.js.map