import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Java License Acceptance Record resource in Oracle Cloud Infrastructure Jms Java Downloads service. * * Returns a specific Java license acceptance record in a tenancy. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testJavaLicenseAcceptanceRecord = oci.jms.getJavaDownloadsJavaLicenseAcceptanceRecord({ * javaLicenseAcceptanceRecordId: testJavaLicenseAcceptanceRecordOciJmsJavaDownloadsJavaLicenseAcceptanceRecord.id, * }); * ``` */ export declare function getJavaDownloadsJavaLicenseAcceptanceRecord(args: GetJavaDownloadsJavaLicenseAcceptanceRecordArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getJavaDownloadsJavaLicenseAcceptanceRecord. */ export interface GetJavaDownloadsJavaLicenseAcceptanceRecordArgs { /** * Unique Java license acceptance record identifier. */ javaLicenseAcceptanceRecordId: string; } /** * A collection of values returned by getJavaDownloadsJavaLicenseAcceptanceRecord. */ export interface GetJavaDownloadsJavaLicenseAcceptanceRecordResult { /** * The tenancy [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user accepting the license. */ readonly compartmentId: string; /** * An authorized principal. */ readonly createdBies: outputs.Jms.GetJavaDownloadsJavaLicenseAcceptanceRecordCreatedBy[]; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`. (See [Understanding Free-form Tags](https://docs.cloud.oracle.com/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm)). */ readonly definedTags: { [key: string]: string; }; /** * Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`. (See [Managing Tags and Tag Namespaces](https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/understandingfreeformtags.htm).) */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the principal. */ readonly id: string; readonly javaLicenseAcceptanceRecordId: string; /** * An authorized principal. */ readonly lastUpdatedBies: outputs.Jms.GetJavaDownloadsJavaLicenseAcceptanceRecordLastUpdatedBy[]; /** * Status of license acceptance. */ readonly licenseAcceptanceStatus: string; /** * License type associated with the acceptance. */ readonly licenseType: string; /** * The current state of the JavaLicenseAcceptanceRecord. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time of license acceptance (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ readonly timeAccepted: string; /** * The date and time of last update (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ readonly timeLastUpdated: string; } /** * This data source provides details about a specific Java License Acceptance Record resource in Oracle Cloud Infrastructure Jms Java Downloads service. * * Returns a specific Java license acceptance record in a tenancy. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testJavaLicenseAcceptanceRecord = oci.jms.getJavaDownloadsJavaLicenseAcceptanceRecord({ * javaLicenseAcceptanceRecordId: testJavaLicenseAcceptanceRecordOciJmsJavaDownloadsJavaLicenseAcceptanceRecord.id, * }); * ``` */ export declare function getJavaDownloadsJavaLicenseAcceptanceRecordOutput(args: GetJavaDownloadsJavaLicenseAcceptanceRecordOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getJavaDownloadsJavaLicenseAcceptanceRecord. */ export interface GetJavaDownloadsJavaLicenseAcceptanceRecordOutputArgs { /** * Unique Java license acceptance record identifier. */ javaLicenseAcceptanceRecordId: pulumi.Input; } //# sourceMappingURL=getJavaDownloadsJavaLicenseAcceptanceRecord.d.ts.map