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 Fleet Uncorrelated Package Applications in Oracle Cloud Infrastructure Jms service. * * List applications where an uncorrelated package has been detected, filtered by query parameters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetUncorrelatedPackageApplications = oci.jms.getFleetUncorrelatedPackageApplications({ * fleetId: testFleet.id, * packageName: fleetUncorrelatedPackageApplicationPackageName, * applicationId: testApplication.id, * managedInstanceId: testManagedInstance.id, * timeEnd: fleetUncorrelatedPackageApplicationTimeEnd, * timeStart: fleetUncorrelatedPackageApplicationTimeStart, * }); * ``` */ export declare function getFleetUncorrelatedPackageApplications(args: GetFleetUncorrelatedPackageApplicationsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFleetUncorrelatedPackageApplications. */ export interface GetFleetUncorrelatedPackageApplicationsArgs { /** * The Fleet-unique identifier of the application. */ applicationId?: string; filters?: inputs.Jms.GetFleetUncorrelatedPackageApplicationsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet. */ fleetId: string; /** * The Fleet-unique identifier of the managed instance. */ managedInstanceId?: string; /** * The unique identifier of a Java package. */ packageName: string; /** * The end of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ timeEnd?: string; /** * The start of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ timeStart?: string; } /** * A collection of values returned by getFleetUncorrelatedPackageApplications. */ export interface GetFleetUncorrelatedPackageApplicationsResult { readonly applicationId?: string; readonly filters?: outputs.Jms.GetFleetUncorrelatedPackageApplicationsFilter[]; readonly fleetId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly managedInstanceId?: string; readonly packageName: string; readonly timeEnd?: string; readonly timeStart?: string; /** * The list of uncorrelated_package_application_usage_collection. */ readonly uncorrelatedPackageApplicationUsageCollections: outputs.Jms.GetFleetUncorrelatedPackageApplicationsUncorrelatedPackageApplicationUsageCollection[]; } /** * This data source provides the list of Fleet Uncorrelated Package Applications in Oracle Cloud Infrastructure Jms service. * * List applications where an uncorrelated package has been detected, filtered by query parameters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetUncorrelatedPackageApplications = oci.jms.getFleetUncorrelatedPackageApplications({ * fleetId: testFleet.id, * packageName: fleetUncorrelatedPackageApplicationPackageName, * applicationId: testApplication.id, * managedInstanceId: testManagedInstance.id, * timeEnd: fleetUncorrelatedPackageApplicationTimeEnd, * timeStart: fleetUncorrelatedPackageApplicationTimeStart, * }); * ``` */ export declare function getFleetUncorrelatedPackageApplicationsOutput(args: GetFleetUncorrelatedPackageApplicationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFleetUncorrelatedPackageApplications. */ export interface GetFleetUncorrelatedPackageApplicationsOutputArgs { /** * The Fleet-unique identifier of the application. */ applicationId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet. */ fleetId: pulumi.Input; /** * The Fleet-unique identifier of the managed instance. */ managedInstanceId?: pulumi.Input; /** * The unique identifier of a Java package. */ packageName: pulumi.Input; /** * The end of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ timeEnd?: pulumi.Input; /** * The start of the time period during which resources are searched (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ timeStart?: pulumi.Input; } //# sourceMappingURL=getFleetUncorrelatedPackageApplications.d.ts.map