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
The JavaDownloadsJavaDownloadReport resource accepts the following input properties:
- Compartment
Id 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.) - Time
End string - The end time until when the download records have to be included (formatted according to RFC3339).
- Time
Start 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 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.) - Time
End string - The end time until when the download records have to be included (formatted according to RFC3339).
- Time
Start 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 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.) - time
End String - The end time until when the download records have to be included (formatted according to RFC3339).
- time
Start 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 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.) - time
End string - The end time until when the download records have to be included (formatted according to RFC3339).
- time
Start 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
- compartment
Id 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.) - time
End String - The end time until when the download records have to be included (formatted according to RFC3339).
- time
Start 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:
- Checksum
Type string - The algorithm used for calculating the checksum.
- Checksum
Value string - The checksum value of the Java download report file.
- Created
Bies List<JavaDownloads Java Download Report Created By> - An authorized principal.
- Display
Name string - Display name for the Java download report.
- File
Size stringIn Bytes - Approximate size of the Java download report file in bytes.
- Id string
- The provider-assigned unique ID for this managed resource.
- Sort
By string - Sort
Order 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"}
- Time
Created string - The time the Java download report was created, displayed as an RFC3339 formatted datetime string.
- Checksum
Type string - The algorithm used for calculating the checksum.
- Checksum
Value string - The checksum value of the Java download report file.
- Created
Bies []JavaDownloads Java Download Report Created By - An authorized principal.
- Display
Name string - Display name for the Java download report.
- File
Size stringIn Bytes - Approximate size of the Java download report file in bytes.
- Id string
- The provider-assigned unique ID for this managed resource.
- Sort
By string - Sort
Order 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"}
- Time
Created string - The time the Java download report was created, displayed as an RFC3339 formatted datetime string.
- checksum
Type String - The algorithm used for calculating the checksum.
- checksum
Value String - The checksum value of the Java download report file.
- created
Bies List<JavaDownloads Java Download Report Created By> - An authorized principal.
- display
Name String - Display name for the Java download report.
- file
Size StringIn Bytes - Approximate size of the Java download report file in bytes.
- id String
- The provider-assigned unique ID for this managed resource.
- sort
By String - sort
Order 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"}
- time
Created String - The time the Java download report was created, displayed as an RFC3339 formatted datetime string.
- checksum
Type string - The algorithm used for calculating the checksum.
- checksum
Value string - The checksum value of the Java download report file.
- created
Bies JavaDownloads Java Download Report Created By[] - An authorized principal.
- display
Name string - Display name for the Java download report.
- file
Size stringIn Bytes - Approximate size of the Java download report file in bytes.
- id string
- The provider-assigned unique ID for this managed resource.
- sort
By string - sort
Order 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"}
- time
Created 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[jms.Java Downloads 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.
- checksum
Type String - The algorithm used for calculating the checksum.
- checksum
Value String - The checksum value of the Java download report file.
- created
Bies List<Property Map> - An authorized principal.
- display
Name String - Display name for the Java download report.
- file
Size StringIn Bytes - Approximate size of the Java download report file in bytes.
- id String
- The provider-assigned unique ID for this managed resource.
- sort
By String - sort
Order 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"}
- time
Created 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[_jms.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) -> 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.
- Checksum
Type string - The algorithm used for calculating the checksum.
- Checksum
Value string - The checksum value of the Java download report file.
- Compartment
Id string - The compartment OCID here should be the tenancy OCID.
- Created
Bies 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). - Display
Name string - Display name for the Java download report.
- File
Size 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.) - Sort
By string - Sort
Order 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"}
- Time
Created string - The time the Java download report was created, displayed as an RFC3339 formatted datetime string.
- Time
End string - The end time until when the download records have to be included (formatted according to RFC3339).
- Time
Start 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 string - The algorithm used for calculating the checksum.
- Checksum
Value string - The checksum value of the Java download report file.
- Compartment
Id string - The compartment OCID here should be the tenancy OCID.
- Created
Bies []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). - Display
Name string - Display name for the Java download report.
- File
Size 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.) - Sort
By string - Sort
Order 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"}
- Time
Created string - The time the Java download report was created, displayed as an RFC3339 formatted datetime string.
- Time
End string - The end time until when the download records have to be included (formatted according to RFC3339).
- Time
Start 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 String - The algorithm used for calculating the checksum.
- checksum
Value String - The checksum value of the Java download report file.
- compartment
Id String - The compartment OCID here should be the tenancy OCID.
- created
Bies 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). - display
Name String - Display name for the Java download report.
- file
Size 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.) - sort
By String - sort
Order 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"}
- time
Created String - The time the Java download report was created, displayed as an RFC3339 formatted datetime string.
- time
End String - The end time until when the download records have to be included (formatted according to RFC3339).
- time
Start 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 string - The algorithm used for calculating the checksum.
- checksum
Value string - The checksum value of the Java download report file.
- compartment
Id string - The compartment OCID here should be the tenancy OCID.
- created
Bies 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). - display
Name string - Display name for the Java download report.
- file
Size 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.) - sort
By string - sort
Order 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"}
- time
Created string - The time the Java download report was created, displayed as an RFC3339 formatted datetime string.
- time
End string - The end time until when the download records have to be included (formatted according to RFC3339).
- time
Start 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.Java Downloads 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
- checksum
Type String - The algorithm used for calculating the checksum.
- checksum
Value String - The checksum value of the Java download report file.
- compartment
Id String - The compartment OCID here should be the tenancy OCID.
- created
Bies 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). - display
Name String - Display name for the Java download report.
- file
Size 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.) - sort
By String - sort
Order 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"}
- time
Created String - The time the Java download report was created, displayed as an RFC3339 formatted datetime string.
- time
End String - The end time until when the download records have to be included (formatted according to RFC3339).
- time
Start 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
- Display
Name 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 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 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 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.
- display
Name 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.