import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of System Versions in Oracle Cloud Infrastructure Database service. * * Gets a list of supported Exadata system versions for a given shape and GI version. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSystemVersions = oci.database.getSystemVersions({ * compartmentId: compartmentId, * giVersion: systemVersionGiVersion, * isLatest: systemVersionIsLatest === "true", * resourceId: testResource.id, * shape: systemVersionShape, * }); * ``` */ export declare function getSystemVersions(args: GetSystemVersionsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSystemVersions. */ export interface GetSystemVersionsArgs { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: string; filters?: inputs.Database.GetSystemVersionsFilter[]; /** * Specifies gi version query parameter. */ giVersion: string; /** * If provided, return highest versions from each major version family. */ isLatest?: boolean; /** * If provided, filters the results for the specified resource Id. */ resourceId?: string; /** * If provided, filters the results for the given shape. */ shape?: string; } /** * A collection of values returned by getSystemVersions. */ export interface GetSystemVersionsResult { readonly compartmentId: string; readonly filters?: outputs.Database.GetSystemVersionsFilter[]; /** * Grid Infrastructure version. */ readonly giVersion: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly isLatest?: boolean; readonly resourceId?: string; /** * Exadata shape. */ readonly shape?: string; /** * The list of system_version_collection. */ readonly systemVersionCollections: outputs.Database.GetSystemVersionsSystemVersionCollection[]; } /** * This data source provides the list of System Versions in Oracle Cloud Infrastructure Database service. * * Gets a list of supported Exadata system versions for a given shape and GI version. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSystemVersions = oci.database.getSystemVersions({ * compartmentId: compartmentId, * giVersion: systemVersionGiVersion, * isLatest: systemVersionIsLatest === "true", * resourceId: testResource.id, * shape: systemVersionShape, * }); * ``` */ export declare function getSystemVersionsOutput(args: GetSystemVersionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSystemVersions. */ export interface GetSystemVersionsOutputArgs { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Specifies gi version query parameter. */ giVersion: pulumi.Input; /** * If provided, return highest versions from each major version family. */ isLatest?: pulumi.Input; /** * If provided, filters the results for the specified resource Id. */ resourceId?: pulumi.Input; /** * If provided, filters the results for the given shape. */ shape?: pulumi.Input; } //# sourceMappingURL=getSystemVersions.d.ts.map