UNPKG

@lbrlabs/pulumi-scaleway

Version:

A Pulumi package for creating and managing scaleway cloud resources.

55 lines 1.6 kB
"use strict"; // *** 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.getMnqSqsOutput = exports.getMnqSqs = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * Gets information about SQS for a project * * ## Examples * * ### Basic * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumi/scaleway"; * * const main = scaleway.getMnqSqs({}); * const forProject = scaleway.getMnqSqs({ * projectId: scaleway_account_project.main.id, * }); * ``` */ function getMnqSqs(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("scaleway:index/getMnqSqs:getMnqSqs", { "projectId": args.projectId, "region": args.region, }, opts); } exports.getMnqSqs = getMnqSqs; /** * Gets information about SQS for a project * * ## Examples * * ### Basic * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumi/scaleway"; * * const main = scaleway.getMnqSqs({}); * const forProject = scaleway.getMnqSqs({ * projectId: scaleway_account_project.main.id, * }); * ``` */ function getMnqSqsOutput(args, opts) { return pulumi.output(args).apply((a) => getMnqSqs(a, opts)); } exports.getMnqSqsOutput = getMnqSqsOutput; //# sourceMappingURL=getMnqSqs.js.map