import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific List Jre Usage resource in Oracle Cloud Infrastructure Jms service. * * List Java Runtime usage in a specified host filtered by query parameters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testListJreUsage = oci.jms.getListJreUsage({ * applicationId: testApplication.id, * applicationName: testApplication.name, * compartmentId: compartmentId, * hostId: testHost.id, * timeEnd: listJreUsageTimeEnd, * timeStart: listJreUsageTimeStart, * }); * ``` */ export declare function getListJreUsage(args?: GetListJreUsageArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getListJreUsage. */ export interface GetListJreUsageArgs { /** * The Fleet-unique identifier of the application. */ applicationId?: string; /** * The name of the application. */ applicationName?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: string; /** * The host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance. */ hostId?: 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 getListJreUsage. */ export interface GetListJreUsageResult { readonly applicationId?: string; readonly applicationName?: string; readonly compartmentId?: string; readonly hostId?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A list of Java Runtimes. */ readonly items: outputs.Jms.GetListJreUsageItem[]; /** * Upper bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter. */ readonly timeEnd?: string; /** * Lower bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter. */ readonly timeStart?: string; } /** * This data source provides details about a specific List Jre Usage resource in Oracle Cloud Infrastructure Jms service. * * List Java Runtime usage in a specified host filtered by query parameters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testListJreUsage = oci.jms.getListJreUsage({ * applicationId: testApplication.id, * applicationName: testApplication.name, * compartmentId: compartmentId, * hostId: testHost.id, * timeEnd: listJreUsageTimeEnd, * timeStart: listJreUsageTimeStart, * }); * ``` */ export declare function getListJreUsageOutput(args?: GetListJreUsageOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getListJreUsage. */ export interface GetListJreUsageOutputArgs { /** * The Fleet-unique identifier of the application. */ applicationId?: pulumi.Input; /** * The name of the application. */ applicationName?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: pulumi.Input; /** * The host [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance. */ hostId?: 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=getListJreUsage.d.ts.map