import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Java License resource in Oracle Cloud Infrastructure Jms Java Downloads service. * * Return details of the specified Java license type. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testJavaLicense = oci.jms.getJavaDownloadsJavaLicense({ * licenseType: javaLicenseLicenseType, * }); * ``` */ export declare function getJavaDownloadsJavaLicense(args: GetJavaDownloadsJavaLicenseArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getJavaDownloadsJavaLicense. */ export interface GetJavaDownloadsJavaLicenseArgs { /** * Unique Java license type. */ licenseType: string; } /** * A collection of values returned by getJavaDownloadsJavaLicense. */ export interface GetJavaDownloadsJavaLicenseResult { /** * Commonly used name for the license type. */ readonly displayName: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * License Type */ readonly licenseType: string; /** * Publicly accessible license URL containing the detailed terms and conditions. */ readonly licenseUrl: string; } /** * This data source provides details about a specific Java License resource in Oracle Cloud Infrastructure Jms Java Downloads service. * * Return details of the specified Java license type. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testJavaLicense = oci.jms.getJavaDownloadsJavaLicense({ * licenseType: javaLicenseLicenseType, * }); * ``` */ export declare function getJavaDownloadsJavaLicenseOutput(args: GetJavaDownloadsJavaLicenseOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getJavaDownloadsJavaLicense. */ export interface GetJavaDownloadsJavaLicenseOutputArgs { /** * Unique Java license type. */ licenseType: pulumi.Input; } //# sourceMappingURL=getJavaDownloadsJavaLicense.d.ts.map