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 Properties in Oracle Cloud Infrastructure Fleet Apps Management service. * * Gets a list of target properties for the specified target. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testTargetProperties = oci.fleetappsmanagement.getTargetProperties({ * compartmentId: compartmentId, * targetId: fleetTargetId, * targetName: fleetTargetName, * severity: targetPropertySeverity, * }); * ``` */ export declare function getTargetProperties(args: GetTargetPropertiesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTargetProperties. */ export interface GetTargetPropertiesArgs { /** * The OCID of the compartment in which to list resources. */ compartmentId: string; filters?: inputs.FleetAppsManagement.GetTargetPropertiesFilter[]; /** * Patch severity. */ severity?: string; /** * Target identifier. */ targetId?: string; /** * Target name. */ targetName?: string; } /** * A collection of values returned by getTargetProperties. */ export interface GetTargetPropertiesResult { readonly compartmentId: string; readonly filters?: outputs.FleetAppsManagement.GetTargetPropertiesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly severity?: string; readonly targetId?: string; readonly targetName?: string; /** * The list of target_property_collection. */ readonly targetPropertyCollections: outputs.FleetAppsManagement.GetTargetPropertiesTargetPropertyCollection[]; } /** * This data source provides the list of Target Properties in Oracle Cloud Infrastructure Fleet Apps Management service. * * Gets a list of target properties for the specified target. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testTargetProperties = oci.fleetappsmanagement.getTargetProperties({ * compartmentId: compartmentId, * targetId: fleetTargetId, * targetName: fleetTargetName, * severity: targetPropertySeverity, * }); * ``` */ export declare function getTargetPropertiesOutput(args: GetTargetPropertiesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getTargetProperties. */ export interface GetTargetPropertiesOutputArgs { /** * The OCID of the compartment in which to list resources. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Patch severity. */ severity?: pulumi.Input; /** * Target identifier. */ targetId?: pulumi.Input; /** * Target name. */ targetName?: pulumi.Input; } //# sourceMappingURL=getTargetProperties.d.ts.map