1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. getReports
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.DataSafe.getReports

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

This data source provides the list of Reports in Oracle Cloud Infrastructure Data Safe service.

Gets a list of all the reports in the compartment. It contains information such as report generation time.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testReports = oci.DataSafe.getReports({
    compartmentId: compartmentId,
    accessLevel: reportAccessLevel,
    compartmentIdInSubtree: reportCompartmentIdInSubtree,
    displayName: reportDisplayName,
    mimeType: reportMimeType,
    reportDefinitionId: testReportDefinition.id,
    state: reportState,
    timeGeneratedGreaterThanOrEqualTo: reportTimeGeneratedGreaterThanOrEqualTo,
    timeGeneratedLessThan: reportTimeGeneratedLessThan,
    type: reportType,
});
Copy
import pulumi
import pulumi_oci as oci

test_reports = oci.DataSafe.get_reports(compartment_id=compartment_id,
    access_level=report_access_level,
    compartment_id_in_subtree=report_compartment_id_in_subtree,
    display_name=report_display_name,
    mime_type=report_mime_type,
    report_definition_id=test_report_definition["id"],
    state=report_state,
    time_generated_greater_than_or_equal_to=report_time_generated_greater_than_or_equal_to,
    time_generated_less_than=report_time_generated_less_than,
    type=report_type)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/datasafe"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datasafe.GetReports(ctx, &datasafe.GetReportsArgs{
			CompartmentId:                     compartmentId,
			AccessLevel:                       pulumi.StringRef(reportAccessLevel),
			CompartmentIdInSubtree:            pulumi.BoolRef(reportCompartmentIdInSubtree),
			DisplayName:                       pulumi.StringRef(reportDisplayName),
			MimeType:                          pulumi.StringRef(reportMimeType),
			ReportDefinitionId:                pulumi.StringRef(testReportDefinition.Id),
			State:                             pulumi.StringRef(reportState),
			TimeGeneratedGreaterThanOrEqualTo: pulumi.StringRef(reportTimeGeneratedGreaterThanOrEqualTo),
			TimeGeneratedLessThan:             pulumi.StringRef(reportTimeGeneratedLessThan),
			Type:                              pulumi.StringRef(reportType),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testReports = Oci.DataSafe.GetReports.Invoke(new()
    {
        CompartmentId = compartmentId,
        AccessLevel = reportAccessLevel,
        CompartmentIdInSubtree = reportCompartmentIdInSubtree,
        DisplayName = reportDisplayName,
        MimeType = reportMimeType,
        ReportDefinitionId = testReportDefinition.Id,
        State = reportState,
        TimeGeneratedGreaterThanOrEqualTo = reportTimeGeneratedGreaterThanOrEqualTo,
        TimeGeneratedLessThan = reportTimeGeneratedLessThan,
        Type = reportType,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataSafe.DataSafeFunctions;
import com.pulumi.oci.DataSafe.inputs.GetReportsArgs;
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) {
        final var testReports = DataSafeFunctions.getReports(GetReportsArgs.builder()
            .compartmentId(compartmentId)
            .accessLevel(reportAccessLevel)
            .compartmentIdInSubtree(reportCompartmentIdInSubtree)
            .displayName(reportDisplayName)
            .mimeType(reportMimeType)
            .reportDefinitionId(testReportDefinition.id())
            .state(reportState)
            .timeGeneratedGreaterThanOrEqualTo(reportTimeGeneratedGreaterThanOrEqualTo)
            .timeGeneratedLessThan(reportTimeGeneratedLessThan)
            .type(reportType)
            .build());

    }
}
Copy
variables:
  testReports:
    fn::invoke:
      function: oci:DataSafe:getReports
      arguments:
        compartmentId: ${compartmentId}
        accessLevel: ${reportAccessLevel}
        compartmentIdInSubtree: ${reportCompartmentIdInSubtree}
        displayName: ${reportDisplayName}
        mimeType: ${reportMimeType}
        reportDefinitionId: ${testReportDefinition.id}
        state: ${reportState}
        timeGeneratedGreaterThanOrEqualTo: ${reportTimeGeneratedGreaterThanOrEqualTo}
        timeGeneratedLessThan: ${reportTimeGeneratedLessThan}
        type: ${reportType}
Copy

Using getReports

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getReports(args: GetReportsArgs, opts?: InvokeOptions): Promise<GetReportsResult>
function getReportsOutput(args: GetReportsOutputArgs, opts?: InvokeOptions): Output<GetReportsResult>
Copy
def get_reports(access_level: Optional[str] = None,
                compartment_id: Optional[str] = None,
                compartment_id_in_subtree: Optional[bool] = None,
                display_name: Optional[str] = None,
                filters: Optional[Sequence[_datasafe.GetReportsFilter]] = None,
                mime_type: Optional[str] = None,
                report_definition_id: Optional[str] = None,
                state: Optional[str] = None,
                time_generated_greater_than_or_equal_to: Optional[str] = None,
                time_generated_less_than: Optional[str] = None,
                type: Optional[str] = None,
                opts: Optional[InvokeOptions] = None) -> GetReportsResult
def get_reports_output(access_level: Optional[pulumi.Input[str]] = None,
                compartment_id: Optional[pulumi.Input[str]] = None,
                compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                display_name: Optional[pulumi.Input[str]] = None,
                filters: Optional[pulumi.Input[Sequence[pulumi.Input[_datasafe.GetReportsFilterArgs]]]] = None,
                mime_type: Optional[pulumi.Input[str]] = None,
                report_definition_id: Optional[pulumi.Input[str]] = None,
                state: Optional[pulumi.Input[str]] = None,
                time_generated_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                time_generated_less_than: Optional[pulumi.Input[str]] = None,
                type: Optional[pulumi.Input[str]] = None,
                opts: Optional[InvokeOptions] = None) -> Output[GetReportsResult]
Copy
func GetReports(ctx *Context, args *GetReportsArgs, opts ...InvokeOption) (*GetReportsResult, error)
func GetReportsOutput(ctx *Context, args *GetReportsOutputArgs, opts ...InvokeOption) GetReportsResultOutput
Copy

> Note: This function is named GetReports in the Go SDK.

public static class GetReports 
{
    public static Task<GetReportsResult> InvokeAsync(GetReportsArgs args, InvokeOptions? opts = null)
    public static Output<GetReportsResult> Invoke(GetReportsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetReportsResult> getReports(GetReportsArgs args, InvokeOptions options)
public static Output<GetReportsResult> getReports(GetReportsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DataSafe/getReports:getReports
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
AccessLevel string
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
CompartmentIdInSubtree bool
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
DisplayName string
The name of the report definition to query.
Filters Changes to this property will trigger replacement. List<GetReportsFilter>
MimeType string
An optional filter to return only resources that match the specified mime type.
ReportDefinitionId string
The ID of the report definition to filter the list of reports
State string
An optional filter to return only resources that match the specified lifecycle state.
TimeGeneratedGreaterThanOrEqualTo string

A filter to return only the resources that were generated after the specified date and time, as defined by RFC3339. Using TimeGeneratedGreaterThanOrEqualToQueryParam parameter retrieves all resources generated after that date.

Example: 2016-12-19T16:39:57.600Z

TimeGeneratedLessThan string

Search for resources that were generated before a specific date. Specifying this parameter corresponding timeGeneratedLessThan parameter will retrieve all resources generated before the specified generated date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.

Example: 2016-12-19T16:39:57.600Z

Type string
An optional filter to return only resources that match the specified type.
CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
AccessLevel string
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
CompartmentIdInSubtree bool
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
DisplayName string
The name of the report definition to query.
Filters Changes to this property will trigger replacement. []GetReportsFilter
MimeType string
An optional filter to return only resources that match the specified mime type.
ReportDefinitionId string
The ID of the report definition to filter the list of reports
State string
An optional filter to return only resources that match the specified lifecycle state.
TimeGeneratedGreaterThanOrEqualTo string

A filter to return only the resources that were generated after the specified date and time, as defined by RFC3339. Using TimeGeneratedGreaterThanOrEqualToQueryParam parameter retrieves all resources generated after that date.

Example: 2016-12-19T16:39:57.600Z

TimeGeneratedLessThan string

Search for resources that were generated before a specific date. Specifying this parameter corresponding timeGeneratedLessThan parameter will retrieve all resources generated before the specified generated date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.

Example: 2016-12-19T16:39:57.600Z

Type string
An optional filter to return only resources that match the specified type.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
accessLevel String
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
compartmentIdInSubtree Boolean
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
displayName String
The name of the report definition to query.
filters Changes to this property will trigger replacement. List<GetReportsFilter>
mimeType String
An optional filter to return only resources that match the specified mime type.
reportDefinitionId String
The ID of the report definition to filter the list of reports
state String
An optional filter to return only resources that match the specified lifecycle state.
timeGeneratedGreaterThanOrEqualTo String

A filter to return only the resources that were generated after the specified date and time, as defined by RFC3339. Using TimeGeneratedGreaterThanOrEqualToQueryParam parameter retrieves all resources generated after that date.

Example: 2016-12-19T16:39:57.600Z

timeGeneratedLessThan String

Search for resources that were generated before a specific date. Specifying this parameter corresponding timeGeneratedLessThan parameter will retrieve all resources generated before the specified generated date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.

Example: 2016-12-19T16:39:57.600Z

type String
An optional filter to return only resources that match the specified type.
compartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
accessLevel string
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
compartmentIdInSubtree boolean
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
displayName string
The name of the report definition to query.
filters Changes to this property will trigger replacement. GetReportsFilter[]
mimeType string
An optional filter to return only resources that match the specified mime type.
reportDefinitionId string
The ID of the report definition to filter the list of reports
state string
An optional filter to return only resources that match the specified lifecycle state.
timeGeneratedGreaterThanOrEqualTo string

A filter to return only the resources that were generated after the specified date and time, as defined by RFC3339. Using TimeGeneratedGreaterThanOrEqualToQueryParam parameter retrieves all resources generated after that date.

Example: 2016-12-19T16:39:57.600Z

timeGeneratedLessThan string

Search for resources that were generated before a specific date. Specifying this parameter corresponding timeGeneratedLessThan parameter will retrieve all resources generated before the specified generated date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.

Example: 2016-12-19T16:39:57.600Z

type string
An optional filter to return only resources that match the specified type.
compartment_id This property is required. str
A filter to return only resources that match the specified compartment OCID.
access_level str
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
compartment_id_in_subtree bool
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
display_name str
The name of the report definition to query.
filters Changes to this property will trigger replacement. Sequence[datasafe.GetReportsFilter]
mime_type str
An optional filter to return only resources that match the specified mime type.
report_definition_id str
The ID of the report definition to filter the list of reports
state str
An optional filter to return only resources that match the specified lifecycle state.
time_generated_greater_than_or_equal_to str

A filter to return only the resources that were generated after the specified date and time, as defined by RFC3339. Using TimeGeneratedGreaterThanOrEqualToQueryParam parameter retrieves all resources generated after that date.

Example: 2016-12-19T16:39:57.600Z

time_generated_less_than str

Search for resources that were generated before a specific date. Specifying this parameter corresponding timeGeneratedLessThan parameter will retrieve all resources generated before the specified generated date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.

Example: 2016-12-19T16:39:57.600Z

type str
An optional filter to return only resources that match the specified type.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
accessLevel String
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
compartmentIdInSubtree Boolean
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
displayName String
The name of the report definition to query.
filters Changes to this property will trigger replacement. List<Property Map>
mimeType String
An optional filter to return only resources that match the specified mime type.
reportDefinitionId String
The ID of the report definition to filter the list of reports
state String
An optional filter to return only resources that match the specified lifecycle state.
timeGeneratedGreaterThanOrEqualTo String

A filter to return only the resources that were generated after the specified date and time, as defined by RFC3339. Using TimeGeneratedGreaterThanOrEqualToQueryParam parameter retrieves all resources generated after that date.

Example: 2016-12-19T16:39:57.600Z

timeGeneratedLessThan String

Search for resources that were generated before a specific date. Specifying this parameter corresponding timeGeneratedLessThan parameter will retrieve all resources generated before the specified generated date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.

Example: 2016-12-19T16:39:57.600Z

type String
An optional filter to return only resources that match the specified type.

getReports Result

The following output properties are available:

CompartmentId string
The OCID of the compartment containing the report.
Id string
The provider-assigned unique ID for this managed resource.
ReportCollections List<GetReportsReportCollection>
The list of report_collection.
AccessLevel string
CompartmentIdInSubtree bool
DisplayName string
Name of the report.
Filters List<GetReportsFilter>
MimeType string
Specifies the format of report to be .xls or .pdf or .json
ReportDefinitionId string
The OCID of the report definition.
State string
The current state of the audit report.
TimeGeneratedGreaterThanOrEqualTo string
TimeGeneratedLessThan string
Type string
The type of the audit report.
CompartmentId string
The OCID of the compartment containing the report.
Id string
The provider-assigned unique ID for this managed resource.
ReportCollections []GetReportsReportCollection
The list of report_collection.
AccessLevel string
CompartmentIdInSubtree bool
DisplayName string
Name of the report.
Filters []GetReportsFilter
MimeType string
Specifies the format of report to be .xls or .pdf or .json
ReportDefinitionId string
The OCID of the report definition.
State string
The current state of the audit report.
TimeGeneratedGreaterThanOrEqualTo string
TimeGeneratedLessThan string
Type string
The type of the audit report.
compartmentId String
The OCID of the compartment containing the report.
id String
The provider-assigned unique ID for this managed resource.
reportCollections List<GetReportsReportCollection>
The list of report_collection.
accessLevel String
compartmentIdInSubtree Boolean
displayName String
Name of the report.
filters List<GetReportsFilter>
mimeType String
Specifies the format of report to be .xls or .pdf or .json
reportDefinitionId String
The OCID of the report definition.
state String
The current state of the audit report.
timeGeneratedGreaterThanOrEqualTo String
timeGeneratedLessThan String
type String
The type of the audit report.
compartmentId string
The OCID of the compartment containing the report.
id string
The provider-assigned unique ID for this managed resource.
reportCollections GetReportsReportCollection[]
The list of report_collection.
accessLevel string
compartmentIdInSubtree boolean
displayName string
Name of the report.
filters GetReportsFilter[]
mimeType string
Specifies the format of report to be .xls or .pdf or .json
reportDefinitionId string
The OCID of the report definition.
state string
The current state of the audit report.
timeGeneratedGreaterThanOrEqualTo string
timeGeneratedLessThan string
type string
The type of the audit report.
compartment_id str
The OCID of the compartment containing the report.
id str
The provider-assigned unique ID for this managed resource.
report_collections Sequence[datasafe.GetReportsReportCollection]
The list of report_collection.
access_level str
compartment_id_in_subtree bool
display_name str
Name of the report.
filters Sequence[datasafe.GetReportsFilter]
mime_type str
Specifies the format of report to be .xls or .pdf or .json
report_definition_id str
The OCID of the report definition.
state str
The current state of the audit report.
time_generated_greater_than_or_equal_to str
time_generated_less_than str
type str
The type of the audit report.
compartmentId String
The OCID of the compartment containing the report.
id String
The provider-assigned unique ID for this managed resource.
reportCollections List<Property Map>
The list of report_collection.
accessLevel String
compartmentIdInSubtree Boolean
displayName String
Name of the report.
filters List<Property Map>
mimeType String
Specifies the format of report to be .xls or .pdf or .json
reportDefinitionId String
The OCID of the report definition.
state String
The current state of the audit report.
timeGeneratedGreaterThanOrEqualTo String
timeGeneratedLessThan String
type String
The type of the audit report.

Supporting Types

GetReportsFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

GetReportsReportCollection

Items This property is required. List<GetReportsReportCollectionItem>
Items This property is required. []GetReportsReportCollectionItem
items This property is required. List<GetReportsReportCollectionItem>
items This property is required. GetReportsReportCollectionItem[]
items This property is required. List<Property Map>

GetReportsReportCollectionItem

CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
Description This property is required. string
Specifies a description of the report.
DisplayName This property is required. string
The name of the report definition to query.
FreeformTags This property is required. Dictionary<string, string>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}
Id This property is required. string
The OCID of the report.
LifecycleDetails This property is required. string
Details about the current state of the report in Data Safe.
MimeType This property is required. string
An optional filter to return only resources that match the specified mime type.
ReportDefinitionId This property is required. string
The ID of the report definition to filter the list of reports
ReportId This property is required. string
State This property is required. string
An optional filter to return only resources that match the specified lifecycle state.
SystemTags This property is required. Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeGenerated This property is required. string
Specifies the date and time the report was generated.
Type This property is required. string
An optional filter to return only resources that match the specified type.
CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
Description This property is required. string
Specifies a description of the report.
DisplayName This property is required. string
The name of the report definition to query.
FreeformTags This property is required. map[string]string
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}
Id This property is required. string
The OCID of the report.
LifecycleDetails This property is required. string
Details about the current state of the report in Data Safe.
MimeType This property is required. string
An optional filter to return only resources that match the specified mime type.
ReportDefinitionId This property is required. string
The ID of the report definition to filter the list of reports
ReportId This property is required. string
State This property is required. string
An optional filter to return only resources that match the specified lifecycle state.
SystemTags This property is required. map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeGenerated This property is required. string
Specifies the date and time the report was generated.
Type This property is required. string
An optional filter to return only resources that match the specified type.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
description This property is required. String
Specifies a description of the report.
displayName This property is required. String
The name of the report definition to query.
freeformTags This property is required. Map<String,String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}
id This property is required. String
The OCID of the report.
lifecycleDetails This property is required. String
Details about the current state of the report in Data Safe.
mimeType This property is required. String
An optional filter to return only resources that match the specified mime type.
reportDefinitionId This property is required. String
The ID of the report definition to filter the list of reports
reportId This property is required. String
state This property is required. String
An optional filter to return only resources that match the specified lifecycle state.
systemTags This property is required. Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
timeGenerated This property is required. String
Specifies the date and time the report was generated.
type This property is required. String
An optional filter to return only resources that match the specified type.
compartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
description This property is required. string
Specifies a description of the report.
displayName This property is required. string
The name of the report definition to query.
freeformTags This property is required. {[key: string]: string}
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}
id This property is required. string
The OCID of the report.
lifecycleDetails This property is required. string
Details about the current state of the report in Data Safe.
mimeType This property is required. string
An optional filter to return only resources that match the specified mime type.
reportDefinitionId This property is required. string
The ID of the report definition to filter the list of reports
reportId This property is required. string
state This property is required. string
An optional filter to return only resources that match the specified lifecycle state.
systemTags This property is required. {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
timeGenerated This property is required. string
Specifies the date and time the report was generated.
type This property is required. string
An optional filter to return only resources that match the specified type.
compartment_id This property is required. str
A filter to return only resources that match the specified compartment OCID.
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
description This property is required. str
Specifies a description of the report.
display_name This property is required. str
The name of the report definition to query.
freeform_tags This property is required. Mapping[str, str]
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}
id This property is required. str
The OCID of the report.
lifecycle_details This property is required. str
Details about the current state of the report in Data Safe.
mime_type This property is required. str
An optional filter to return only resources that match the specified mime type.
report_definition_id This property is required. str
The ID of the report definition to filter the list of reports
report_id This property is required. str
state This property is required. str
An optional filter to return only resources that match the specified lifecycle state.
system_tags This property is required. Mapping[str, str]
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
time_generated This property is required. str
Specifies the date and time the report was generated.
type This property is required. str
An optional filter to return only resources that match the specified type.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
description This property is required. String
Specifies a description of the report.
displayName This property is required. String
The name of the report definition to query.
freeformTags This property is required. Map<String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}
id This property is required. String
The OCID of the report.
lifecycleDetails This property is required. String
Details about the current state of the report in Data Safe.
mimeType This property is required. String
An optional filter to return only resources that match the specified mime type.
reportDefinitionId This property is required. String
The ID of the report definition to filter the list of reports
reportId This property is required. String
state This property is required. String
An optional filter to return only resources that match the specified lifecycle state.
systemTags This property is required. Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
timeGenerated This property is required. String
Specifies the date and time the report was generated.
type This property is required. String
An optional filter to return only resources that match the specified type.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi