UNPKG

@pulumi/gcp

Version:

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

58 lines 1.99 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.getCloudVmClustersOutput = exports.getCloudVmClusters = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * List all CloudVmClusters. * * For more information see the * [API](https://cloud.google.com/oracle/database/docs/reference/rest/v1/projects.locations.cloudVmClusters). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const myVmclusters = gcp.oracledatabase.getCloudVmClusters({ * location: "us-east4", * }); * ``` */ function getCloudVmClusters(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("gcp:oracledatabase/getCloudVmClusters:getCloudVmClusters", { "location": args.location, "project": args.project, }, opts); } exports.getCloudVmClusters = getCloudVmClusters; /** * List all CloudVmClusters. * * For more information see the * [API](https://cloud.google.com/oracle/database/docs/reference/rest/v1/projects.locations.cloudVmClusters). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const myVmclusters = gcp.oracledatabase.getCloudVmClusters({ * location: "us-east4", * }); * ``` */ function getCloudVmClustersOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("gcp:oracledatabase/getCloudVmClusters:getCloudVmClusters", { "location": args.location, "project": args.project, }, opts); } exports.getCloudVmClustersOutput = getCloudVmClustersOutput; //# sourceMappingURL=getCloudVmClusters.js.map