UNPKG

@pulumiverse/scaleway

Version:

A Pulumi package for creating and managing Scaleway cloud resources.

38 lines 1.37 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.getPoolOutput = exports.getPool = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Gets information about a Kubernetes Cluster's Pool. */ function getPool(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("scaleway:kubernetes/getPool:getPool", { "clusterId": args.clusterId, "name": args.name, "poolId": args.poolId, "region": args.region, "size": args.size, }, opts); } exports.getPool = getPool; /** * Gets information about a Kubernetes Cluster's Pool. */ function getPoolOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("scaleway:kubernetes/getPool:getPool", { "clusterId": args.clusterId, "name": args.name, "poolId": args.poolId, "region": args.region, "size": args.size, }, opts); } exports.getPoolOutput = getPoolOutput; //# sourceMappingURL=getPool.js.map