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 Cycles in Oracle Cloud Infrastructure Fleet Software Update service. * * Gets a list of all Exadata Fleet Update Cycles in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFsuCycles = oci.fleetsoftwareupdate.getFsuCycles({ * compartmentId: compartmentId, * collectionType: fsuCycleCollectionType, * displayName: fsuCycleDisplayName, * fsuCollectionId: testFsuCollection.id, * state: fsuCycleState, * targetVersion: fsuCycleTargetVersion, * }); * ``` */ export declare function getFsuCycles(args: GetFsuCyclesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFsuCycles. */ export interface GetFsuCyclesArgs { /** * A filter to return only resources whose Collection type matches the given type. */ collectionType?: string; /** * 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.GetFsuCyclesFilter[]; /** * A filter to return only resources whose fsuCollectionId matches the given fsuCollectionId. */ fsuCollectionId?: string; /** * A filter to return only resources whose lifecycleState matches the given lifecycleState. */ state?: string; /** * A filter to return only entries whose targetVersion matches the given targetVersion. */ targetVersion?: string; } /** * A collection of values returned by getFsuCycles. */ export interface GetFsuCyclesResult { /** * Type of Exadata Fleet Update collection being upgraded. */ readonly collectionType?: string; /** * 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 Cycle. */ readonly displayName?: string; readonly filters?: outputs.FleetSoftwareUpdate.GetFsuCyclesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Fleet Update Collection being updated by this Exadata Fleet Update Cycle. */ readonly fsuCollectionId?: string; /** * The list of fsu_cycle_summary_collection. */ readonly fsuCycleSummaryCollections: outputs.FleetSoftwareUpdate.GetFsuCyclesFsuCycleSummaryCollection[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the Exadata Fleet Update Cycle. */ readonly state?: string; readonly targetVersion?: string; } /** * This data source provides the list of Fsu Cycles in Oracle Cloud Infrastructure Fleet Software Update service. * * Gets a list of all Exadata Fleet Update Cycles in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFsuCycles = oci.fleetsoftwareupdate.getFsuCycles({ * compartmentId: compartmentId, * collectionType: fsuCycleCollectionType, * displayName: fsuCycleDisplayName, * fsuCollectionId: testFsuCollection.id, * state: fsuCycleState, * targetVersion: fsuCycleTargetVersion, * }); * ``` */ export declare function getFsuCyclesOutput(args: GetFsuCyclesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFsuCycles. */ export interface GetFsuCyclesOutputArgs { /** * A filter to return only resources whose Collection type matches the given type. */ collectionType?: pulumi.Input; /** * 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>; /** * A filter to return only resources whose fsuCollectionId matches the given fsuCollectionId. */ fsuCollectionId?: pulumi.Input; /** * A filter to return only resources whose lifecycleState matches the given lifecycleState. */ state?: pulumi.Input; /** * A filter to return only entries whose targetVersion matches the given targetVersion. */ targetVersion?: pulumi.Input; } //# sourceMappingURL=getFsuCycles.d.ts.map