1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Jms
  5. JavaDownloadsJavaDownloadReport
Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi

oci.Jms.JavaDownloadsJavaDownloadReport

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi

    This resource provides the Java Download Report resource in Oracle Cloud Infrastructure Jms Java Downloads service.

    Create a new report in the specified format containing the download details for the tenancy.

    Example Usage

    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,
        timeEnd: javaDownloadReportTimeEnd,
        timeStart: javaDownloadReportTimeStart,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_java_download_report = oci.jms.JavaDownloadsJavaDownloadReport("test_java_download_report",
        compartment_id=tenancy_ocid,
        format=java_download_report_format,
        time_end=java_download_report_time_end,
        time_start=java_download_report_time_start)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Jms"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Jms.NewJavaDownloadsJavaDownloadReport(ctx, "test_java_download_report", &Jms.JavaDownloadsJavaDownloadReportArgs{
    			CompartmentId: pulumi.Any(tenancyOcid),
    			Format:        pulumi.Any(javaDownloadReportFormat),
    			TimeEnd:       pulumi.Any(javaDownloadReportTimeEnd),
    			TimeStart:     pulumi.Any(javaDownloadReportTimeStart),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testJavaDownloadReport = new Oci.Jms.JavaDownloadsJavaDownloadReport("test_java_download_report", new()
        {
            CompartmentId = tenancyOcid,
            Format = javaDownloadReportFormat,
            TimeEnd = javaDownloadReportTimeEnd,
            TimeStart = javaDownloadReportTimeStart,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Jms.JavaDownloadsJavaDownloadReport;
    import com.pulumi.oci.Jms.JavaDownloadsJavaDownloadReportArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var testJavaDownloadReport = new JavaDownloadsJavaDownloadReport("testJavaDownloadReport", JavaDownloadsJavaDownloadReportArgs.builder()        
                .compartmentId(tenancyOcid)
                .format(javaDownloadReportFormat)
                .timeEnd(javaDownloadReportTimeEnd)
                .timeStart(javaDownloadReportTimeStart)
                .build());
    
        }
    }
    
    resources:
      testJavaDownloadReport:
        type: oci:Jms:JavaDownloadsJavaDownloadReport
        name: test_java_download_report
        properties:
          compartmentId: ${tenancyOcid}
          format: ${javaDownloadReportFormat}
          timeEnd: ${javaDownloadReportTimeEnd}
          timeStart: ${javaDownloadReportTimeStart}
    

    Create JavaDownloadsJavaDownloadReport Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new JavaDownloadsJavaDownloadReport(name: string, args: JavaDownloadsJavaDownloadReportArgs, opts?: CustomResourceOptions);
    @overload
    def JavaDownloadsJavaDownloadReport(resource_name: str,
                                        args: JavaDownloadsJavaDownloadReportArgs,
                                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def JavaDownloadsJavaDownloadReport(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        compartment_id: Optional[str] = None,
                                        format: Optional[str] = None,
                                        time_end: Optional[str] = None,
                                        time_start: Optional[str] = None)
    func NewJavaDownloadsJavaDownloadReport(ctx *Context, name string, args JavaDownloadsJavaDownloadReportArgs, opts ...ResourceOption) (*JavaDownloadsJavaDownloadReport, error)
    public JavaDownloadsJavaDownloadReport(string name, JavaDownloadsJavaDownloadReportArgs args, CustomResourceOptions? opts = null)
    public JavaDownloadsJavaDownloadReport(String name, JavaDownloadsJavaDownloadReportArgs args)
    public JavaDownloadsJavaDownloadReport(String name, JavaDownloadsJavaDownloadReportArgs args, CustomResourceOptions options)
    
    type: oci:Jms:JavaDownloadsJavaDownloadReport
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args JavaDownloadsJavaDownloadReportArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args JavaDownloadsJavaDownloadReportArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args JavaDownloadsJavaDownloadReportArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args JavaDownloadsJavaDownloadReportArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args JavaDownloadsJavaDownloadReportArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var javaDownloadsJavaDownloadReportResource = new Oci.Jms.JavaDownloadsJavaDownloadReport("javaDownloadsJavaDownloadReportResource", new()
    {
        CompartmentId = "string",
        Format = "string",
        TimeEnd = "string",
        TimeStart = "string",
    });
    
    example, err := Jms.NewJavaDownloadsJavaDownloadReport(ctx, "javaDownloadsJavaDownloadReportResource", &Jms.JavaDownloadsJavaDownloadReportArgs{
    	CompartmentId: pulumi.String("string"),
    	Format:        pulumi.String("string"),
    	TimeEnd:       pulumi.String("string"),
    	TimeStart:     pulumi.String("string"),
    })
    
    var javaDownloadsJavaDownloadReportResource = new JavaDownloadsJavaDownloadReport("javaDownloadsJavaDownloadReportResource", JavaDownloadsJavaDownloadReportArgs.builder()        
        .compartmentId("string")
        .format("string")
        .timeEnd("string")
        .timeStart("string")
        .build());
    
    java_downloads_java_download_report_resource = oci.jms.JavaDownloadsJavaDownloadReport("javaDownloadsJavaDownloadReportResource",
        compartment_id="string",
        format="string",
        time_end="string",
        time_start="string")
    
    const javaDownloadsJavaDownloadReportResource = new oci.jms.JavaDownloadsJavaDownloadReport("javaDownloadsJavaDownloadReportResource", {
        compartmentId: "string",
        format: "string",
        timeEnd: "string",
        timeStart: "string",
    });
    
    type: oci:Jms:JavaDownloadsJavaDownloadReport
    properties:
        compartmentId: string
        format: string
        timeEnd: string
        timeStart: string
    

    JavaDownloadsJavaDownloadReport Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The JavaDownloadsJavaDownloadReport resource accepts the following input properties:

    CompartmentId string
    The compartment OCID here should be the tenancy OCID.
    Format string
    The format of the report that is generated.
    TimeEnd string
    The end time until when the download records have to be included (formatted according to RFC3339).
    TimeStart string

    The start time from when download records have to be included (formatted according to 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

    CompartmentId string
    The compartment OCID here should be the tenancy OCID.
    Format string
    The format of the report that is generated.
    TimeEnd string
    The end time until when the download records have to be included (formatted according to RFC3339).
    TimeStart string

    The start time from when download records have to be included (formatted according to 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

    compartmentId String
    The compartment OCID here should be the tenancy OCID.
    format String
    The format of the report that is generated.
    timeEnd String
    The end time until when the download records have to be included (formatted according to RFC3339).
    timeStart String

    The start time from when download records have to be included (formatted according to 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

    compartmentId string
    The compartment OCID here should be the tenancy OCID.
    format string
    The format of the report that is generated.
    timeEnd string
    The end time until when the download records have to be included (formatted according to RFC3339).
    timeStart string

    The start time from when download records have to be included (formatted according to 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

    compartment_id str
    The compartment OCID here should be the tenancy OCID.
    format str
    The format of the report that is generated.
    time_end str
    The end time until when the download records have to be included (formatted according to RFC3339).
    time_start str

    The start time from when download records have to be included (formatted according to 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

    compartmentId String
    The compartment OCID here should be the tenancy OCID.
    format String
    The format of the report that is generated.
    timeEnd String
    The end time until when the download records have to be included (formatted according to RFC3339).
    timeStart String

    The start time from when download records have to be included (formatted according to 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

    Outputs

    All input properties are implicitly available as output properties. Additionally, the JavaDownloadsJavaDownloadReport resource produces the following output properties:

    ChecksumType string
    The algorithm used for calculating the checksum.
    ChecksumValue string
    The checksum value of the Java download report file.
    CreatedBies List<JavaDownloadsJavaDownloadReportCreatedBy>
    An authorized principal.
    DefinedTags Dictionary<string, object>
    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).
    DisplayName string
    Display name for the Java download report.
    FileSizeInBytes string
    Approximate size of the Java download report file in bytes.
    FreeformTags Dictionary<string, object>
    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.)
    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    The current state of the Java download report.
    SystemTags Dictionary<string, object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the Java download report was created. An RFC3339 formatted datetime string.
    ChecksumType string
    The algorithm used for calculating the checksum.
    ChecksumValue string
    The checksum value of the Java download report file.
    CreatedBies []JavaDownloadsJavaDownloadReportCreatedBy
    An authorized principal.
    DefinedTags map[string]interface{}
    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).
    DisplayName string
    Display name for the Java download report.
    FileSizeInBytes string
    Approximate size of the Java download report file in bytes.
    FreeformTags map[string]interface{}
    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.)
    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    The current state of the Java download report.
    SystemTags map[string]interface{}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the Java download report was created. An RFC3339 formatted datetime string.
    checksumType String
    The algorithm used for calculating the checksum.
    checksumValue String
    The checksum value of the Java download report file.
    createdBies List<JavaDownloadsJavaDownloadReportCreatedBy>
    An authorized principal.
    definedTags Map<String,Object>
    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).
    displayName String
    Display name for the Java download report.
    fileSizeInBytes String
    Approximate size of the Java download report file in bytes.
    freeformTags Map<String,Object>
    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.)
    id String
    The provider-assigned unique ID for this managed resource.
    state String
    The current state of the Java download report.
    systemTags Map<String,Object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the Java download report was created. An RFC3339 formatted datetime string.
    checksumType string
    The algorithm used for calculating the checksum.
    checksumValue string
    The checksum value of the Java download report file.
    createdBies JavaDownloadsJavaDownloadReportCreatedBy[]
    An authorized principal.
    definedTags {[key: string]: any}
    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).
    displayName string
    Display name for the Java download report.
    fileSizeInBytes string
    Approximate size of the Java download report file in bytes.
    freeformTags {[key: string]: any}
    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.)
    id string
    The provider-assigned unique ID for this managed resource.
    state string
    The current state of the Java download report.
    systemTags {[key: string]: any}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The time the Java download report was created. An RFC3339 formatted datetime string.
    checksum_type str
    The algorithm used for calculating the checksum.
    checksum_value str
    The checksum value of the Java download report file.
    created_bies Sequence[jms.JavaDownloadsJavaDownloadReportCreatedBy]
    An authorized principal.
    defined_tags Mapping[str, Any]
    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).
    display_name str
    Display name for the Java download report.
    file_size_in_bytes str
    Approximate size of the Java download report file in bytes.
    freeform_tags Mapping[str, Any]
    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.)
    id str
    The provider-assigned unique ID for this managed resource.
    state str
    The current state of the Java download report.
    system_tags Mapping[str, Any]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The time the Java download report was created. An RFC3339 formatted datetime string.
    checksumType String
    The algorithm used for calculating the checksum.
    checksumValue String
    The checksum value of the Java download report file.
    createdBies List<Property Map>
    An authorized principal.
    definedTags Map<Any>
    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).
    displayName String
    Display name for the Java download report.
    fileSizeInBytes String
    Approximate size of the Java download report file in bytes.
    freeformTags Map<Any>
    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.)
    id String
    The provider-assigned unique ID for this managed resource.
    state String
    The current state of the Java download report.
    systemTags Map<Any>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the Java download report was created. An RFC3339 formatted datetime string.

    Look up Existing JavaDownloadsJavaDownloadReport Resource

    Get an existing JavaDownloadsJavaDownloadReport resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: JavaDownloadsJavaDownloadReportState, opts?: CustomResourceOptions): JavaDownloadsJavaDownloadReport
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            checksum_type: Optional[str] = None,
            checksum_value: Optional[str] = None,
            compartment_id: Optional[str] = None,
            created_bies: Optional[Sequence[_jms.JavaDownloadsJavaDownloadReportCreatedByArgs]] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            display_name: Optional[str] = None,
            file_size_in_bytes: Optional[str] = None,
            format: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, Any]] = None,
            time_created: Optional[str] = None,
            time_end: Optional[str] = None,
            time_start: Optional[str] = None) -> JavaDownloadsJavaDownloadReport
    func GetJavaDownloadsJavaDownloadReport(ctx *Context, name string, id IDInput, state *JavaDownloadsJavaDownloadReportState, opts ...ResourceOption) (*JavaDownloadsJavaDownloadReport, error)
    public static JavaDownloadsJavaDownloadReport Get(string name, Input<string> id, JavaDownloadsJavaDownloadReportState? state, CustomResourceOptions? opts = null)
    public static JavaDownloadsJavaDownloadReport get(String name, Output<String> id, JavaDownloadsJavaDownloadReportState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ChecksumType string
    The algorithm used for calculating the checksum.
    ChecksumValue string
    The checksum value of the Java download report file.
    CompartmentId string
    The compartment OCID here should be the tenancy OCID.
    CreatedBies List<JavaDownloadsJavaDownloadReportCreatedBy>
    An authorized principal.
    DefinedTags Dictionary<string, object>
    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).
    DisplayName string
    Display name for the Java download report.
    FileSizeInBytes string
    Approximate size of the Java download report file in bytes.
    Format string
    The format of the report that is generated.
    FreeformTags Dictionary<string, object>
    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.)
    State string
    The current state of the Java download report.
    SystemTags Dictionary<string, object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the Java download report was created. An RFC3339 formatted datetime string.
    TimeEnd string
    The end time until when the download records have to be included (formatted according to RFC3339).
    TimeStart string

    The start time from when download records have to be included (formatted according to 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

    ChecksumType string
    The algorithm used for calculating the checksum.
    ChecksumValue string
    The checksum value of the Java download report file.
    CompartmentId string
    The compartment OCID here should be the tenancy OCID.
    CreatedBies []JavaDownloadsJavaDownloadReportCreatedByArgs
    An authorized principal.
    DefinedTags map[string]interface{}
    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).
    DisplayName string
    Display name for the Java download report.
    FileSizeInBytes string
    Approximate size of the Java download report file in bytes.
    Format string
    The format of the report that is generated.
    FreeformTags map[string]interface{}
    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.)
    State string
    The current state of the Java download report.
    SystemTags map[string]interface{}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the Java download report was created. An RFC3339 formatted datetime string.
    TimeEnd string
    The end time until when the download records have to be included (formatted according to RFC3339).
    TimeStart string

    The start time from when download records have to be included (formatted according to 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

    checksumType String
    The algorithm used for calculating the checksum.
    checksumValue String
    The checksum value of the Java download report file.
    compartmentId String
    The compartment OCID here should be the tenancy OCID.
    createdBies List<JavaDownloadsJavaDownloadReportCreatedBy>
    An authorized principal.
    definedTags Map<String,Object>
    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).
    displayName String
    Display name for the Java download report.
    fileSizeInBytes String
    Approximate size of the Java download report file in bytes.
    format String
    The format of the report that is generated.
    freeformTags Map<String,Object>
    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.)
    state String
    The current state of the Java download report.
    systemTags Map<String,Object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the Java download report was created. An RFC3339 formatted datetime string.
    timeEnd String
    The end time until when the download records have to be included (formatted according to RFC3339).
    timeStart String

    The start time from when download records have to be included (formatted according to 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

    checksumType string
    The algorithm used for calculating the checksum.
    checksumValue string
    The checksum value of the Java download report file.
    compartmentId string
    The compartment OCID here should be the tenancy OCID.
    createdBies JavaDownloadsJavaDownloadReportCreatedBy[]
    An authorized principal.
    definedTags {[key: string]: any}
    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).
    displayName string
    Display name for the Java download report.
    fileSizeInBytes string
    Approximate size of the Java download report file in bytes.
    format string
    The format of the report that is generated.
    freeformTags {[key: string]: any}
    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.)
    state string
    The current state of the Java download report.
    systemTags {[key: string]: any}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The time the Java download report was created. An RFC3339 formatted datetime string.
    timeEnd string
    The end time until when the download records have to be included (formatted according to RFC3339).
    timeStart string

    The start time from when download records have to be included (formatted according to 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

    checksum_type str
    The algorithm used for calculating the checksum.
    checksum_value str
    The checksum value of the Java download report file.
    compartment_id str
    The compartment OCID here should be the tenancy OCID.
    created_bies Sequence[jms.JavaDownloadsJavaDownloadReportCreatedByArgs]
    An authorized principal.
    defined_tags Mapping[str, Any]
    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).
    display_name str
    Display name for the Java download report.
    file_size_in_bytes str
    Approximate size of the Java download report file in bytes.
    format str
    The format of the report that is generated.
    freeform_tags Mapping[str, Any]
    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.)
    state str
    The current state of the Java download report.
    system_tags Mapping[str, Any]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The time the Java download report was created. An RFC3339 formatted datetime string.
    time_end str
    The end time until when the download records have to be included (formatted according to RFC3339).
    time_start str

    The start time from when download records have to be included (formatted according to 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

    checksumType String
    The algorithm used for calculating the checksum.
    checksumValue String
    The checksum value of the Java download report file.
    compartmentId String
    The compartment OCID here should be the tenancy OCID.
    createdBies List<Property Map>
    An authorized principal.
    definedTags Map<Any>
    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).
    displayName String
    Display name for the Java download report.
    fileSizeInBytes String
    Approximate size of the Java download report file in bytes.
    format String
    The format of the report that is generated.
    freeformTags Map<Any>
    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.)
    state String
    The current state of the Java download report.
    systemTags Map<Any>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the Java download report was created. An RFC3339 formatted datetime string.
    timeEnd String
    The end time until when the download records have to be included (formatted according to RFC3339).
    timeStart String

    The start time from when download records have to be included (formatted according to 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

    Supporting Types

    JavaDownloadsJavaDownloadReportCreatedBy, JavaDownloadsJavaDownloadReportCreatedByArgs

    DisplayName string
    Display name for the Java download report.
    Email string
    The email of the principal.
    Id string
    The OCID of the Java download report.
    DisplayName string
    Display name for the Java download report.
    Email string
    The email of the principal.
    Id string
    The OCID of the Java download report.
    displayName String
    Display name for the Java download report.
    email String
    The email of the principal.
    id String
    The OCID of the Java download report.
    displayName string
    Display name for the Java download report.
    email string
    The email of the principal.
    id string
    The OCID of the Java download report.
    display_name str
    Display name for the Java download report.
    email str
    The email of the principal.
    id str
    The OCID of the Java download report.
    displayName String
    Display name for the Java download report.
    email String
    The email of the principal.
    id String
    The OCID of the Java download report.

    Import

    Import is not supported for this resource.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi