UNPKG

@pulumiverse/scaleway

Version:

A Pulumi package for creating and managing Scaleway cloud resources.

44 lines 2.18 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.getRegistryImageOutput = exports.getRegistryImage = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * Gets information about a Container Registry image. */ /** @deprecated scaleway.index/getregistryimage.getRegistryImage has been deprecated in favor of scaleway.registry/getimage.getImage */ function getRegistryImage(args, opts) { pulumi.log.warn("getRegistryImage is deprecated: scaleway.index/getregistryimage.getRegistryImage has been deprecated in favor of scaleway.registry/getimage.getImage"); args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("scaleway:index/getRegistryImage:getRegistryImage", { "imageId": args.imageId, "name": args.name, "namespaceId": args.namespaceId, "projectId": args.projectId, "region": args.region, "tags": args.tags, }, opts); } exports.getRegistryImage = getRegistryImage; /** * Gets information about a Container Registry image. */ /** @deprecated scaleway.index/getregistryimage.getRegistryImage has been deprecated in favor of scaleway.registry/getimage.getImage */ function getRegistryImageOutput(args, opts) { pulumi.log.warn("getRegistryImage is deprecated: scaleway.index/getregistryimage.getRegistryImage has been deprecated in favor of scaleway.registry/getimage.getImage"); args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("scaleway:index/getRegistryImage:getRegistryImage", { "imageId": args.imageId, "name": args.name, "namespaceId": args.namespaceId, "projectId": args.projectId, "region": args.region, "tags": args.tags, }, opts); } exports.getRegistryImageOutput = getRegistryImageOutput; //# sourceMappingURL=getRegistryImage.js.map