oci.Jms.JavaDownloadsJavaDownloadReport
Explore with Pulumi AI
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,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    freeformTags: {
        "bar-key": "value",
    },
    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,
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    freeform_tags={
        "bar-key": "value",
    },
    time_end=java_download_report_time_end,
    time_start=java_download_report_time_start)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/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),
			DefinedTags: pulumi.StringMap{
				"foo-namespace.bar-key": pulumi.String("value"),
			},
			FreeformTags: pulumi.StringMap{
				"bar-key": pulumi.String("value"),
			},
			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,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
        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)
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .freeformTags(Map.of("bar-key", "value"))
            .timeEnd(javaDownloadReportTimeEnd)
            .timeStart(javaDownloadReportTimeStart)
            .build());
    }
}
resources:
  testJavaDownloadReport:
    type: oci:Jms:JavaDownloadsJavaDownloadReport
    name: test_java_download_report
    properties:
      compartmentId: ${tenancyOcid}
      format: ${javaDownloadReportFormat}
      definedTags:
        foo-namespace.bar-key: value
      freeformTags:
        bar-key: value
      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,
                                    defined_tags: Optional[Mapping[str, str]] = None,
                                    freeform_tags: Optional[Mapping[str, 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var javaDownloadsJavaDownloadReportResource = new Oci.Jms.JavaDownloadsJavaDownloadReport("javaDownloadsJavaDownloadReportResource", new()
{
    CompartmentId = "string",
    Format = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    FreeformTags = 
    {
        { "string", "string" },
    },
    TimeEnd = "string",
    TimeStart = "string",
});
example, err := jms.NewJavaDownloadsJavaDownloadReport(ctx, "javaDownloadsJavaDownloadReportResource", &jms.JavaDownloadsJavaDownloadReportArgs{
	CompartmentId: pulumi.String("string"),
	Format:        pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	TimeEnd:   pulumi.String("string"),
	TimeStart: pulumi.String("string"),
})
var javaDownloadsJavaDownloadReportResource = new JavaDownloadsJavaDownloadReport("javaDownloadsJavaDownloadReportResource", JavaDownloadsJavaDownloadReportArgs.builder()
    .compartmentId("string")
    .format("string")
    .definedTags(Map.of("string", "string"))
    .freeformTags(Map.of("string", "string"))
    .timeEnd("string")
    .timeStart("string")
    .build());
java_downloads_java_download_report_resource = oci.jms.JavaDownloadsJavaDownloadReport("javaDownloadsJavaDownloadReportResource",
    compartment_id="string",
    format="string",
    defined_tags={
        "string": "string",
    },
    freeform_tags={
        "string": "string",
    },
    time_end="string",
    time_start="string")
const javaDownloadsJavaDownloadReportResource = new oci.jms.JavaDownloadsJavaDownloadReport("javaDownloadsJavaDownloadReportResource", {
    compartmentId: "string",
    format: "string",
    definedTags: {
        string: "string",
    },
    freeformTags: {
        string: "string",
    },
    timeEnd: "string",
    timeStart: "string",
});
type: oci:Jms:JavaDownloadsJavaDownloadReport
properties:
    compartmentId: string
    definedTags:
        string: string
    format: string
    freeformTags:
        string: 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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
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.
- Dictionary<string, string>
- 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).
- Dictionary<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.)
- 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.
- map[string]string
- 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).
- map[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.)
- 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.
- Map<String,String>
- 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).
- Map<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.)
- 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.
- {[key: string]: string}
- 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).
- {[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.)
- 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.
- Mapping[str, str]
- 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).
- Mapping[str, str]
- 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.)
- 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.
- Map<String>
- 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).
- Map<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.)
- 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<JavaDownloads Java Download Report Created By> 
- An authorized principal.
- DisplayName string
- Display name for the Java download report.
- FileSize stringIn Bytes 
- Approximate size of the Java download report file in bytes.
- Id string
- The provider-assigned unique ID for this managed resource.
- SortBy string
- SortOrder string
- State string
- The current state of the Java download report.
- Dictionary<string, string>
- 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, displayed as 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 []JavaDownloads Java Download Report Created By 
- An authorized principal.
- DisplayName string
- Display name for the Java download report.
- FileSize stringIn Bytes 
- Approximate size of the Java download report file in bytes.
- Id string
- The provider-assigned unique ID for this managed resource.
- SortBy string
- SortOrder string
- State string
- The current state of the Java download report.
- map[string]string
- 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, displayed as 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<JavaDownloads Java Download Report Created By> 
- An authorized principal.
- displayName String
- Display name for the Java download report.
- fileSize StringIn Bytes 
- Approximate size of the Java download report file in bytes.
- id String
- The provider-assigned unique ID for this managed resource.
- sortBy String
- sortOrder String
- state String
- The current state of the Java download report.
- Map<String,String>
- 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, displayed as 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 JavaDownloads Java Download Report Created By[] 
- An authorized principal.
- displayName string
- Display name for the Java download report.
- fileSize stringIn Bytes 
- Approximate size of the Java download report file in bytes.
- id string
- The provider-assigned unique ID for this managed resource.
- sortBy string
- sortOrder string
- state string
- The current state of the Java download report.
- {[key: string]: string}
- 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, displayed as 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[JavaDownloads Java Download Report Created By] 
- An authorized principal.
- display_name str
- Display name for the Java download report.
- file_size_ strin_ bytes 
- Approximate size of the Java download report file in bytes.
- id str
- The provider-assigned unique ID for this managed resource.
- sort_by str
- sort_order str
- state str
- The current state of the Java download report.
- Mapping[str, str]
- 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, displayed as 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.
- displayName String
- Display name for the Java download report.
- fileSize StringIn Bytes 
- Approximate size of the Java download report file in bytes.
- id String
- The provider-assigned unique ID for this managed resource.
- sortBy String
- sortOrder String
- state String
- The current state of the Java download report.
- Map<String>
- 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, displayed as 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[JavaDownloadsJavaDownloadReportCreatedByArgs]] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        file_size_in_bytes: Optional[str] = None,
        format: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        sort_by: Optional[str] = None,
        sort_order: Optional[str] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        time_end: Optional[str] = None,
        time_start: Optional[str] = None) -> JavaDownloadsJavaDownloadReportfunc 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)resources:  _:    type: oci:Jms:JavaDownloadsJavaDownloadReport    get:      id: ${id}- 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.
- 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<JavaDownloads Java Download Report Created By> 
- An authorized principal.
- Dictionary<string, string>
- 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.
- FileSize stringIn Bytes 
- Approximate size of the Java download report file in bytes.
- Format string
- The format of the report that is generated.
- Dictionary<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.)
- SortBy string
- SortOrder string
- State string
- The current state of the Java download report.
- Dictionary<string, string>
- 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, displayed as 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 []JavaDownloads Java Download Report Created By Args 
- An authorized principal.
- map[string]string
- 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.
- FileSize stringIn Bytes 
- Approximate size of the Java download report file in bytes.
- Format string
- The format of the report that is generated.
- map[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.)
- SortBy string
- SortOrder string
- State string
- The current state of the Java download report.
- map[string]string
- 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, displayed as 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<JavaDownloads Java Download Report Created By> 
- An authorized principal.
- Map<String,String>
- 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.
- fileSize StringIn Bytes 
- Approximate size of the Java download report file in bytes.
- format String
- The format of the report that is generated.
- Map<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.)
- sortBy String
- sortOrder String
- state String
- The current state of the Java download report.
- Map<String,String>
- 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, displayed as 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 JavaDownloads Java Download Report Created By[] 
- An authorized principal.
- {[key: string]: string}
- 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.
- fileSize stringIn Bytes 
- Approximate size of the Java download report file in bytes.
- format string
- The format of the report that is generated.
- {[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.)
- sortBy string
- sortOrder string
- state string
- The current state of the Java download report.
- {[key: string]: string}
- 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, displayed as 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[JavaDownloads Java Download Report Created By Args] 
- An authorized principal.
- Mapping[str, str]
- 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_ strin_ bytes 
- Approximate size of the Java download report file in bytes.
- format str
- The format of the report that is generated.
- Mapping[str, str]
- 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.)
- sort_by str
- sort_order str
- state str
- The current state of the Java download report.
- Mapping[str, str]
- 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, displayed as 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.
- Map<String>
- 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.
- fileSize StringIn Bytes 
- Approximate size of the Java download report file in bytes.
- format String
- The format of the report that is generated.
- Map<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.)
- sortBy String
- sortOrder String
- state String
- The current state of the Java download report.
- Map<String>
- 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, displayed as 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 ociTerraform Provider.