import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * 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", * }); * ``` */ export declare function getCloudVmClusters(args: GetCloudVmClustersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudVmClusters. */ export interface GetCloudVmClustersArgs { /** * 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 getCloudVmClusters. */ export interface GetCloudVmClustersResult { readonly cloudVmClusters: outputs.oracledatabase.GetCloudVmClustersCloudVmCluster[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly location: string; readonly project?: string; } /** * 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", * }); * ``` */ export declare function getCloudVmClustersOutput(args: GetCloudVmClustersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudVmClusters. */ export interface GetCloudVmClustersOutputArgs { /** * The location of the resource. * * - - - */ location: pulumi.Input; /** * The project to which the resource belongs. If it * is not provided, the provider project is used. */ project?: pulumi.Input; }