UNPKG

@pulumiverse/scaleway

Version:

A Pulumi package for creating and managing Scaleway cloud resources.

40 lines 1.47 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.getImageOutput = exports.getImage = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Gets information about a Container Registry image. */ function getImage(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("scaleway:registry/getImage:getImage", { "imageId": args.imageId, "name": args.name, "namespaceId": args.namespaceId, "projectId": args.projectId, "region": args.region, "tags": args.tags, }, opts); } exports.getImage = getImage; /** * Gets information about a Container Registry image. */ function getImageOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("scaleway:registry/getImage:getImage", { "imageId": args.imageId, "name": args.name, "namespaceId": args.namespaceId, "projectId": args.projectId, "region": args.region, "tags": args.tags, }, opts); } exports.getImageOutput = getImageOutput; //# sourceMappingURL=getImage.js.map