UNPKG

@pulumi/gcp

Version:

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

83 lines (82 loc) 2.58 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * 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", * }); * ``` */ export declare function getCloudExadataInfrastructures(args: GetCloudExadataInfrastructuresArgs, opts?: pulumi.InvokeOptions): Promise<GetCloudExadataInfrastructuresResult>; /** * A collection of arguments for invoking getCloudExadataInfrastructures. */ export interface GetCloudExadataInfrastructuresArgs { /** * The location of the resource. * * - - - */ location: string; /** * The project to which the resource belongs. If it * is not provided, the provider project is used. */ project?: string; } /** * A collection of values returned by getCloudExadataInfrastructures. */ export interface GetCloudExadataInfrastructuresResult { readonly cloudExadataInfrastructures: outputs.oracledatabase.GetCloudExadataInfrastructuresCloudExadataInfrastructure[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly location: string; readonly project?: string; } /** * 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", * }); * ``` */ export declare function getCloudExadataInfrastructuresOutput(args: GetCloudExadataInfrastructuresOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCloudExadataInfrastructuresResult>; /** * A collection of arguments for invoking getCloudExadataInfrastructures. */ export interface GetCloudExadataInfrastructuresOutputArgs { /** * The location of the resource. * * - - - */ location: pulumi.Input<string>; /** * The project to which the resource belongs. If it * is not provided, the provider project is used. */ project?: pulumi.Input<string>; }