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 Library Managed Instances in Oracle Cloud Infrastructure Jms service. * * List managed instances where a library has been detected, filtered by query parameters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetLibraryManagedInstances = oci.jms.getFleetLibraryManagedInstances({ * fleetId: testFleet.id, * libraryKey: fleetLibraryManagedInstanceLibraryKey, * applicationId: testApplication.id, * hostName: fleetLibraryManagedInstanceHostName, * hostnameContains: fleetLibraryManagedInstanceHostnameContains, * managedInstanceId: testManagedInstance.id, * timeEnd: fleetLibraryManagedInstanceTimeEnd, * timeStart: fleetLibraryManagedInstanceTimeStart, * }); * ``` */ export declare function getFleetLibraryManagedInstances(args: GetFleetLibraryManagedInstancesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFleetLibraryManagedInstances. */ export interface GetFleetLibraryManagedInstancesArgs { /** * The Fleet-unique identifier of the application. */ applicationId?: string; filters?: inputs.Jms.GetFleetLibraryManagedInstancesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet. */ fleetId: string; /** * The host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance. */ hostName?: string; /** * Filter the list with hostname contains the given value. */ hostnameContains?: string; /** * The unique identifier of a Java library. */ libraryKey: string; /** * The Fleet-unique identifier of the managed instance. */ managedInstanceId?: 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 getFleetLibraryManagedInstances. */ export interface GetFleetLibraryManagedInstancesResult { readonly applicationId?: string; readonly filters?: outputs.Jms.GetFleetLibraryManagedInstancesFilter[]; readonly fleetId: string; readonly hostName?: string; readonly hostnameContains?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly libraryKey: string; /** * The list of library_managed_instance_usage_collection. */ readonly libraryManagedInstanceUsageCollections: outputs.Jms.GetFleetLibraryManagedInstancesLibraryManagedInstanceUsageCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related managed instance. */ readonly managedInstanceId?: string; readonly timeEnd?: string; readonly timeStart?: string; } /** * This data source provides the list of Fleet Library Managed Instances in Oracle Cloud Infrastructure Jms service. * * List managed instances where a library has been detected, filtered by query parameters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetLibraryManagedInstances = oci.jms.getFleetLibraryManagedInstances({ * fleetId: testFleet.id, * libraryKey: fleetLibraryManagedInstanceLibraryKey, * applicationId: testApplication.id, * hostName: fleetLibraryManagedInstanceHostName, * hostnameContains: fleetLibraryManagedInstanceHostnameContains, * managedInstanceId: testManagedInstance.id, * timeEnd: fleetLibraryManagedInstanceTimeEnd, * timeStart: fleetLibraryManagedInstanceTimeStart, * }); * ``` */ export declare function getFleetLibraryManagedInstancesOutput(args: GetFleetLibraryManagedInstancesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFleetLibraryManagedInstances. */ export interface GetFleetLibraryManagedInstancesOutputArgs { /** * 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 host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance. */ hostName?: pulumi.Input; /** * Filter the list with hostname contains the given value. */ hostnameContains?: pulumi.Input; /** * The unique identifier of a Java library. */ libraryKey: pulumi.Input; /** * The Fleet-unique identifier of the managed instance. */ managedInstanceId?: 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=getFleetLibraryManagedInstances.d.ts.map