import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Java Download Report resource in Oracle Cloud Infrastructure Jms Java Downloads service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/jms-java-download/latest/JavaDownloadReport * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/jms_java_downloads * * Create a new report in the specified format containing the download details * for the tenancy. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testJavaDownloadReport = new oci.jms.JavaDownloadsJavaDownloadReport("test_java_download_report", { * compartmentId: tenancyOcid, * format: javaDownloadReportFormat, * definedTags: { * "foo-namespace.bar-key": "value", * }, * freeformTags: { * "bar-key": "value", * }, * timeEnd: javaDownloadReportTimeEnd, * timeStart: javaDownloadReportTimeStart, * }); * ``` * * ## Import * * Import is not supported for this resource. */ export declare class JavaDownloadsJavaDownloadReport extends pulumi.CustomResource { /** * Get an existing JavaDownloadsJavaDownloadReport resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: JavaDownloadsJavaDownloadReportState, opts?: pulumi.CustomResourceOptions): JavaDownloadsJavaDownloadReport; /** * Returns true if the given object is an instance of JavaDownloadsJavaDownloadReport. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is JavaDownloadsJavaDownloadReport; /** * The algorithm used for calculating the checksum. */ readonly checksumType: pulumi.Output; /** * The checksum value of the Java download report file. */ readonly checksumValue: pulumi.Output; /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) here should be the tenancy OCID. */ readonly compartmentId: pulumi.Output; /** * An authorized principal. */ readonly createdBies: pulumi.Output; /** * 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: pulumi.Output<{ [key: string]: string; }>; /** * Display name for the Java download report. */ readonly displayName: pulumi.Output; /** * Approximate size of the Java download report file in bytes. */ readonly fileSizeInBytes: pulumi.Output; /** * The format of the report that is generated. */ readonly format: pulumi.Output; /** * 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: pulumi.Output<{ [key: string]: string; }>; readonly sortBy: pulumi.Output; readonly sortOrder: pulumi.Output; /** * The current state of the Java download report. */ readonly state: pulumi.Output; /** * 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: pulumi.Output<{ [key: string]: string; }>; /** * The time the Java download report was created, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string. */ readonly timeCreated: pulumi.Output; /** * The end time until when the download records have to be included (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ readonly timeEnd: pulumi.Output; /** * The start time from when download records have to be included (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly timeStart: pulumi.Output; /** * Create a JavaDownloadsJavaDownloadReport resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: JavaDownloadsJavaDownloadReportArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering JavaDownloadsJavaDownloadReport resources. */ export interface JavaDownloadsJavaDownloadReportState { /** * The algorithm used for calculating the checksum. */ checksumType?: pulumi.Input; /** * The checksum value of the Java download report file. */ checksumValue?: pulumi.Input; /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) here should be the tenancy OCID. */ compartmentId?: pulumi.Input; /** * An authorized principal. */ createdBies?: pulumi.Input[] | undefined>; /** * 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)). */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Display name for the Java download report. */ displayName?: pulumi.Input; /** * Approximate size of the Java download report file in bytes. */ fileSizeInBytes?: pulumi.Input; /** * The format of the report that is generated. */ format?: pulumi.Input; /** * 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).) */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; sortBy?: pulumi.Input; sortOrder?: pulumi.Input; /** * The current state of the Java download report. */ state?: pulumi.Input; /** * 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"}` */ systemTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The time the Java download report was created, displayed as an [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339) formatted datetime string. */ timeCreated?: pulumi.Input; /** * The end time until when the download records have to be included (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ timeEnd?: pulumi.Input; /** * The start time from when download records have to be included (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ timeStart?: pulumi.Input; } /** * The set of arguments for constructing a JavaDownloadsJavaDownloadReport resource. */ export interface JavaDownloadsJavaDownloadReportArgs { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) here should be the tenancy OCID. */ compartmentId: pulumi.Input; /** * 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)). */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The format of the report that is generated. */ format: pulumi.Input; /** * 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).) */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The end time until when the download records have to be included (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). */ timeEnd?: pulumi.Input; /** * The start time from when download records have to be included (formatted according to [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339)). * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ timeStart?: pulumi.Input; } //# sourceMappingURL=javaDownloadsJavaDownloadReport.d.ts.map