UNPKG

@pulumi/gcp

Version:

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

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