UNPKG

@pulumiverse/scaleway

Version:

A Pulumi package for creating and managing Scaleway cloud resources.

36 lines 1.39 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.getNamespaceOutput = exports.getNamespace = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Gets information about a registry namespace. */ function getNamespace(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("scaleway:registry/getNamespace:getNamespace", { "name": args.name, "namespaceId": args.namespaceId, "projectId": args.projectId, "region": args.region, }, opts); } exports.getNamespace = getNamespace; /** * Gets information about a registry namespace. */ function getNamespaceOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("scaleway:registry/getNamespace:getNamespace", { "name": args.name, "namespaceId": args.namespaceId, "projectId": args.projectId, "region": args.region, }, opts); } exports.getNamespaceOutput = getNamespaceOutput; //# sourceMappingURL=getNamespace.js.map