UNPKG

@pulumiverse/scaleway

Version:

A Pulumi package for creating and managing Scaleway cloud resources.

36 lines 1.42 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.getImageTagOutput = exports.getImageTag = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Gets information about a specific tag of a Container Registry image. */ function getImageTag(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("scaleway:registry/getImageTag:getImageTag", { "imageId": args.imageId, "name": args.name, "projectId": args.projectId, "region": args.region, "tagId": args.tagId, }, opts); } exports.getImageTag = getImageTag; /** * Gets information about a specific tag of a Container Registry image. */ function getImageTagOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("scaleway:registry/getImageTag:getImageTag", { "imageId": args.imageId, "name": args.name, "projectId": args.projectId, "region": args.region, "tagId": args.tagId, }, opts); } exports.getImageTagOutput = getImageTagOutput; //# sourceMappingURL=getImageTag.js.map