UNPKG

@pulumi/gcp

Version:

A Pulumi package for creating and managing Google Cloud Platform resources.

52 lines 1.91 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.getSupportedDatabaseFlagsOutput = exports.getSupportedDatabaseFlags = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Use this data source to get information about the supported alloydb database flags in a location. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const qa = gcp.alloydb.getSupportedDatabaseFlags({ * location: "us-central1", * }); * ``` */ function getSupportedDatabaseFlags(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("gcp:alloydb/getSupportedDatabaseFlags:getSupportedDatabaseFlags", { "location": args.location, "project": args.project, }, opts); } exports.getSupportedDatabaseFlags = getSupportedDatabaseFlags; /** * Use this data source to get information about the supported alloydb database flags in a location. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const qa = gcp.alloydb.getSupportedDatabaseFlags({ * location: "us-central1", * }); * ``` */ function getSupportedDatabaseFlagsOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("gcp:alloydb/getSupportedDatabaseFlags:getSupportedDatabaseFlags", { "location": args.location, "project": args.project, }, opts); } exports.getSupportedDatabaseFlagsOutput = getSupportedDatabaseFlagsOutput; //# sourceMappingURL=getSupportedDatabaseFlags.js.map