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 Target Components in Oracle Cloud Infrastructure Fleet Apps Management service. * * Gets a list of target component for the specified target. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testTargetComponents = oci.fleetappsmanagement.getTargetComponents({ * compartmentId: compartmentId, * targetId: fleetTargetId, * targetName: fleetTargetName, * name: targetComponentName, * severity: targetComponentSeverity, * }); * ``` */ export declare function getTargetComponents(args: GetTargetComponentsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTargetComponents. */ export interface GetTargetComponentsArgs { /** * The OCID of the compartment in which to list resources. */ compartmentId: string; filters?: inputs.FleetAppsManagement.GetTargetComponentsFilter[]; /** * Target Component Name. */ name?: string; /** * Patch severity. */ severity?: string; /** * Target identifier. */ targetId?: string; /** * Target name. */ targetName?: string; } /** * A collection of values returned by getTargetComponents. */ export interface GetTargetComponentsResult { readonly compartmentId: string; readonly filters?: outputs.FleetAppsManagement.GetTargetComponentsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Name of the property. */ readonly name?: string; readonly severity?: string; /** * The list of target_component_collection. */ readonly targetComponentCollections: outputs.FleetAppsManagement.GetTargetComponentsTargetComponentCollection[]; readonly targetId?: string; readonly targetName?: string; } /** * This data source provides the list of Target Components in Oracle Cloud Infrastructure Fleet Apps Management service. * * Gets a list of target component for the specified target. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testTargetComponents = oci.fleetappsmanagement.getTargetComponents({ * compartmentId: compartmentId, * targetId: fleetTargetId, * targetName: fleetTargetName, * name: targetComponentName, * severity: targetComponentSeverity, * }); * ``` */ export declare function getTargetComponentsOutput(args: GetTargetComponentsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getTargetComponents. */ export interface GetTargetComponentsOutputArgs { /** * The OCID of the compartment in which to list resources. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Target Component Name. */ name?: pulumi.Input; /** * Patch severity. */ severity?: pulumi.Input; /** * Target identifier. */ targetId?: pulumi.Input; /** * Target name. */ targetName?: pulumi.Input; } //# sourceMappingURL=getTargetComponents.d.ts.map