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 Collections in Oracle Cloud Infrastructure Fleet Software Update service. * * Gets a list of all Exadata Fleet Update Collections in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFsuCollections = oci.fleetsoftwareupdate.getFsuCollections({ * compartmentId: compartmentId, * displayName: fsuCollectionDisplayName, * state: fsuCollectionState, * type: fsuCollectionType, * }); * ``` */ export declare function getFsuCollections(args: GetFsuCollectionsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFsuCollections. */ export interface GetFsuCollectionsArgs { /** * 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.GetFsuCollectionsFilter[]; /** * A filter to return only resources whose lifecycleState matches the given lifecycleState. */ state?: string; /** * A filter to return only resources whose type matches the given type. */ type?: string; } /** * A collection of values returned by getFsuCollections. */ export interface GetFsuCollectionsResult { /** * 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 Collection. */ readonly displayName?: string; readonly filters?: outputs.FleetSoftwareUpdate.GetFsuCollectionsFilter[]; /** * The list of fsu_collection_summary_collection. */ readonly fsuCollectionSummaryCollections: outputs.FleetSoftwareUpdate.GetFsuCollectionsFsuCollectionSummaryCollection[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the Exadata Fleet Update Collection. */ readonly state?: string; /** * Exadata Fleet Update Collection type. */ readonly type?: string; } /** * This data source provides the list of Fsu Collections in Oracle Cloud Infrastructure Fleet Software Update service. * * Gets a list of all Exadata Fleet Update Collections in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFsuCollections = oci.fleetsoftwareupdate.getFsuCollections({ * compartmentId: compartmentId, * displayName: fsuCollectionDisplayName, * state: fsuCollectionState, * type: fsuCollectionType, * }); * ``` */ export declare function getFsuCollectionsOutput(args: GetFsuCollectionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFsuCollections. */ export interface GetFsuCollectionsOutputArgs { /** * 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 lifecycleState matches the given lifecycleState. */ state?: pulumi.Input; /** * A filter to return only resources whose type matches the given type. */ type?: pulumi.Input; } //# sourceMappingURL=getFsuCollections.d.ts.map