import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Fsu Readiness Check resource in Oracle Cloud Infrastructure Fleet Software Update service. * * Gets a Exadata Fleet Update Readiness Check by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFsuReadinessCheck = oci.fleetsoftwareupdate.getFsuReadinessCheck({ * fsuReadinessCheckId: testFsuReadinessCheckOciFleetSoftwareUpdateFsuReadinessCheck.id, * }); * ``` */ export declare function getFsuReadinessCheck(args: GetFsuReadinessCheckArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFsuReadinessCheck. */ export interface GetFsuReadinessCheckArgs { /** * Unique Exadata Fleet Update Readiness Check identifier. */ fsuReadinessCheckId: string; } /** * A collection of values returned by getFsuReadinessCheck. */ export interface GetFsuReadinessCheckResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Compartment. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * The user-friendly name for the Exadata Fleet Update Readiness Check resource. */ readonly displayName: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; readonly fsuReadinessCheckId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Fleet Update Readiness Check. */ readonly id: string; /** * Number of issues found during the Exadata Fleet Update Readiness Check run. */ readonly issueCount: number; /** * Issues found during the Exadata Fleet Update Readiness Check run. */ readonly issues: outputs.FleetSoftwareUpdate.GetFsuReadinessCheckIssue[]; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. */ readonly lifecycleDetails: string; /** * Possible lifecycle states for the Exadata Fleet Update Readiness Check resource. */ readonly state: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * List of targets that will run the Exadata Fleet Update Readiness Check. The targets have to be of the same entity type. */ readonly targets: outputs.FleetSoftwareUpdate.GetFsuReadinessCheckTarget[]; /** * The date and time the Exadata Fleet Update Readiness Check was created, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29. */ readonly timeCreated: string; /** * The date and time the Exadata Fleet Update Readiness Check was finished, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339). */ readonly timeFinished: string; /** * The date and time the Exadata Fleet Update Readiness Check was updated, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339), section 14.29. */ readonly timeUpdated: string; /** * Possible Exadata Fleet Update Readiness Check types. */ readonly type: string; } /** * This data source provides details about a specific Fsu Readiness Check resource in Oracle Cloud Infrastructure Fleet Software Update service. * * Gets a Exadata Fleet Update Readiness Check by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFsuReadinessCheck = oci.fleetsoftwareupdate.getFsuReadinessCheck({ * fsuReadinessCheckId: testFsuReadinessCheckOciFleetSoftwareUpdateFsuReadinessCheck.id, * }); * ``` */ export declare function getFsuReadinessCheckOutput(args: GetFsuReadinessCheckOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFsuReadinessCheck. */ export interface GetFsuReadinessCheckOutputArgs { /** * Unique Exadata Fleet Update Readiness Check identifier. */ fsuReadinessCheckId: pulumi.Input; } //# sourceMappingURL=getFsuReadinessCheck.d.ts.map