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 Fsu Readiness Checks in Oracle Cloud Infrastructure Fleet Software Update service. * * Returns a list of Exadata Fleet Update Readiness Checks resources in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFsuReadinessChecks = oci.fleetsoftwareupdate.getFsuReadinessChecks({ * compartmentId: compartmentId, * displayName: fsuReadinessCheckDisplayName, * resourceId: testResource.id, * state: fsuReadinessCheckState, * type: fsuReadinessCheckType, * }); * ``` */ export declare function getFsuReadinessChecks(args: GetFsuReadinessChecksArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFsuReadinessChecks. */ export interface GetFsuReadinessChecksArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.FleetSoftwareUpdate.GetFsuReadinessChecksFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resource related to the Exadata Fleet Update Readiness Check. */ resourceId?: string; /** * A filter to return only resources whose lifecycleState matches the specified lifecycleState. */ state?: string; /** * A filter to return only resources whose type matches the specified type. */ type?: string; } /** * A collection of values returned by getFsuReadinessChecks. */ export interface GetFsuReadinessChecksResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Compartment. */ readonly compartmentId: string; /** * The user-friendly name for the Exadata Fleet Update Readiness Check resource. */ readonly displayName?: string; readonly filters?: outputs.FleetSoftwareUpdate.GetFsuReadinessChecksFilter[]; /** * The list of fsu_readiness_check_collection. */ readonly fsuReadinessCheckCollections: outputs.FleetSoftwareUpdate.GetFsuReadinessChecksFsuReadinessCheckCollection[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly resourceId?: string; /** * Possible lifecycle states for the Exadata Fleet Update Readiness Check resource. */ readonly state?: string; /** * Possible Exadata Fleet Update Readiness Check types. */ readonly type?: string; } /** * This data source provides the list of Fsu Readiness Checks in Oracle Cloud Infrastructure Fleet Software Update service. * * Returns a list of Exadata Fleet Update Readiness Checks resources in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFsuReadinessChecks = oci.fleetsoftwareupdate.getFsuReadinessChecks({ * compartmentId: compartmentId, * displayName: fsuReadinessCheckDisplayName, * resourceId: testResource.id, * state: fsuReadinessCheckState, * type: fsuReadinessCheckType, * }); * ``` */ export declare function getFsuReadinessChecksOutput(args: GetFsuReadinessChecksOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFsuReadinessChecks. */ export interface GetFsuReadinessChecksOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resource related to the Exadata Fleet Update Readiness Check. */ resourceId?: pulumi.Input; /** * A filter to return only resources whose lifecycleState matches the specified lifecycleState. */ state?: pulumi.Input; /** * A filter to return only resources whose type matches the specified type. */ type?: pulumi.Input; } //# sourceMappingURL=getFsuReadinessChecks.d.ts.map