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 Onboardings in Oracle Cloud Infrastructure Fleet Apps Management service. * * Returns a list of all the onboardings in the specified root compartment (tenancy). * The query parameter `compartmentId` is required unless the query parameter `id` is specified. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOnboardings = oci.fleetappsmanagement.getOnboardings({ * compartmentId: compartmentId, * id: onboardingId, * state: onboardingState, * }); * ``` */ export declare function getOnboardings(args?: GetOnboardingsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOnboardings. */ export interface GetOnboardingsArgs { /** * The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified. */ compartmentId?: string; filters?: inputs.FleetAppsManagement.GetOnboardingsFilter[]; /** * Unique identifier or OCID for listing a single onboarding by id. Either compartmentId or id must be provided. */ id?: string; /** * A filter to return only resources whose lifecycleState matches the given lifecycleState. */ state?: string; } /** * A collection of values returned by getOnboardings. */ export interface GetOnboardingsResult { /** * Tenancy OCID */ readonly compartmentId?: string; readonly filters?: outputs.FleetAppsManagement.GetOnboardingsFilter[]; /** * The unique id of the resource. */ readonly id?: string; /** * The list of onboarding_collection. */ readonly onboardingCollections: outputs.FleetAppsManagement.GetOnboardingsOnboardingCollection[]; /** * The current state of the Onboarding. */ readonly state?: string; } /** * This data source provides the list of Onboardings in Oracle Cloud Infrastructure Fleet Apps Management service. * * Returns a list of all the onboardings in the specified root compartment (tenancy). * The query parameter `compartmentId` is required unless the query parameter `id` is specified. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOnboardings = oci.fleetappsmanagement.getOnboardings({ * compartmentId: compartmentId, * id: onboardingId, * state: onboardingState, * }); * ``` */ export declare function getOnboardingsOutput(args?: GetOnboardingsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOnboardings. */ export interface GetOnboardingsOutputArgs { /** * The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified. */ compartmentId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Unique identifier or OCID for listing a single onboarding by id. Either compartmentId or id must be provided. */ id?: pulumi.Input; /** * A filter to return only resources whose lifecycleState matches the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getOnboardings.d.ts.map