UNPKG

@pulumiverse/scaleway

Version:

A Pulumi package for creating and managing Scaleway cloud resources.

40 lines 2.19 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.getRegistryImageTagOutput = exports.getRegistryImageTag = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * Gets information about a specific tag of a Container Registry image. */ /** @deprecated scaleway.index/getregistryimagetag.getRegistryImageTag has been deprecated in favor of scaleway.registry/getimagetag.getImageTag */ function getRegistryImageTag(args, opts) { pulumi.log.warn("getRegistryImageTag is deprecated: scaleway.index/getregistryimagetag.getRegistryImageTag has been deprecated in favor of scaleway.registry/getimagetag.getImageTag"); opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("scaleway:index/getRegistryImageTag:getRegistryImageTag", { "imageId": args.imageId, "name": args.name, "projectId": args.projectId, "region": args.region, "tagId": args.tagId, }, opts); } exports.getRegistryImageTag = getRegistryImageTag; /** * Gets information about a specific tag of a Container Registry image. */ /** @deprecated scaleway.index/getregistryimagetag.getRegistryImageTag has been deprecated in favor of scaleway.registry/getimagetag.getImageTag */ function getRegistryImageTagOutput(args, opts) { pulumi.log.warn("getRegistryImageTag is deprecated: scaleway.index/getregistryimagetag.getRegistryImageTag has been deprecated in favor of scaleway.registry/getimagetag.getImageTag"); opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("scaleway:index/getRegistryImageTag:getRegistryImageTag", { "imageId": args.imageId, "name": args.name, "projectId": args.projectId, "region": args.region, "tagId": args.tagId, }, opts); } exports.getRegistryImageTagOutput = getRegistryImageTagOutput; //# sourceMappingURL=getRegistryImageTag.js.map