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 Java Licenses in Oracle Cloud Infrastructure Jms Java Downloads service. * * Return a list with details of all Java licenses. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testJavaLicenses = oci.jms.getJavaDownloadsJavaLicenses({ * displayName: javaLicenseDisplayName, * licenseType: javaLicenseLicenseType, * }); * ``` */ export declare function getJavaDownloadsJavaLicenses(args?: GetJavaDownloadsJavaLicensesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getJavaDownloadsJavaLicenses. */ export interface GetJavaDownloadsJavaLicensesArgs { /** * A filter to return only resources that match the display name. */ displayName?: string; filters?: inputs.Jms.GetJavaDownloadsJavaLicensesFilter[]; /** * Unique Java license type. */ licenseType?: string; } /** * A collection of values returned by getJavaDownloadsJavaLicenses. */ export interface GetJavaDownloadsJavaLicensesResult { /** * Commonly used name for the license type. */ readonly displayName?: string; readonly filters?: outputs.Jms.GetJavaDownloadsJavaLicensesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of java_license_collection. */ readonly javaLicenseCollections: outputs.Jms.GetJavaDownloadsJavaLicensesJavaLicenseCollection[]; /** * License Type */ readonly licenseType?: string; } /** * This data source provides the list of Java Licenses in Oracle Cloud Infrastructure Jms Java Downloads service. * * Return a list with details of all Java licenses. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testJavaLicenses = oci.jms.getJavaDownloadsJavaLicenses({ * displayName: javaLicenseDisplayName, * licenseType: javaLicenseLicenseType, * }); * ``` */ export declare function getJavaDownloadsJavaLicensesOutput(args?: GetJavaDownloadsJavaLicensesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getJavaDownloadsJavaLicenses. */ export interface GetJavaDownloadsJavaLicensesOutputArgs { /** * A filter to return only resources that match the display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Unique Java license type. */ licenseType?: pulumi.Input; } //# sourceMappingURL=getJavaDownloadsJavaLicenses.d.ts.map