UNPKG

@pulumi/aws

Version:

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

58 lines 2.06 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.getDbSystemShapesOutput = exports.getDbSystemShapes = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Data source to retrieve available system shapes Oracle Database@AWS. * * You can find out more about Oracle Database@AWS from [User Guide](https://docs.aws.amazon.com/odb/latest/UserGuide/what-is-odb.html). * * ## Example Usage * * ### Basic Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aws from "@pulumi/aws"; * * const example = aws.odb.getDbSystemShapes({}); * ``` */ function getDbSystemShapes(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("aws:odb/getDbSystemShapes:getDbSystemShapes", { "availabilityZoneId": args.availabilityZoneId, "region": args.region, }, opts); } exports.getDbSystemShapes = getDbSystemShapes; /** * Data source to retrieve available system shapes Oracle Database@AWS. * * You can find out more about Oracle Database@AWS from [User Guide](https://docs.aws.amazon.com/odb/latest/UserGuide/what-is-odb.html). * * ## Example Usage * * ### Basic Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aws from "@pulumi/aws"; * * const example = aws.odb.getDbSystemShapes({}); * ``` */ function getDbSystemShapesOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("aws:odb/getDbSystemShapes:getDbSystemShapes", { "availabilityZoneId": args.availabilityZoneId, "region": args.region, }, opts); } exports.getDbSystemShapesOutput = getDbSystemShapesOutput; //# sourceMappingURL=getDbSystemShapes.js.map