oci.DataSafe.getReports
Explore with Pulumi AI
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,
});
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)
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
	})
}
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,
    });
});
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());
    }
}
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}
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>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[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[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]func GetReports(ctx *Context, args *GetReportsArgs, opts ...InvokeOption) (*GetReportsResult, error)
func GetReportsOutput(ctx *Context, args *GetReportsOutputArgs, opts ...InvokeOption) GetReportsResultOutput> 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)
}public static CompletableFuture<GetReportsResult> getReports(GetReportsArgs args, InvokeOptions options)
public static Output<GetReportsResult> getReports(GetReportsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DataSafe/getReports:getReports
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId 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.
- CompartmentId boolIn Subtree 
- 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
List<GetReports Filter> 
- MimeType string
- An optional filter to return only resources that match the specified mime type.
- ReportDefinition stringId 
- 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.
- TimeGenerated stringGreater Than Or Equal To 
- 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 
- TimeGenerated stringLess Than 
- Search for resources that were generated before a specific date. Specifying this parameter corresponding - timeGeneratedLessThanparameter 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 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.
- CompartmentId boolIn Subtree 
- 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
[]GetReports Filter 
- MimeType string
- An optional filter to return only resources that match the specified mime type.
- ReportDefinition stringId 
- 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.
- TimeGenerated stringGreater Than Or Equal To 
- 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 
- TimeGenerated stringLess Than 
- Search for resources that were generated before a specific date. Specifying this parameter corresponding - timeGeneratedLessThanparameter 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 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.
- compartmentId BooleanIn Subtree 
- 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
List<GetReports Filter> 
- mimeType String
- An optional filter to return only resources that match the specified mime type.
- reportDefinition StringId 
- 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.
- timeGenerated StringGreater Than Or Equal To 
- 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 
- timeGenerated StringLess Than 
- Search for resources that were generated before a specific date. Specifying this parameter corresponding - timeGeneratedLessThanparameter 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 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.
- compartmentId booleanIn Subtree 
- 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
GetReports Filter[] 
- mimeType string
- An optional filter to return only resources that match the specified mime type.
- reportDefinition stringId 
- 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.
- timeGenerated stringGreater Than Or Equal To 
- 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 
- timeGenerated stringLess Than 
- Search for resources that were generated before a specific date. Specifying this parameter corresponding - timeGeneratedLessThanparameter 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 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_ boolin_ subtree 
- 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
Sequence[GetReports Filter] 
- mime_type str
- An optional filter to return only resources that match the specified mime type.
- report_definition_ strid 
- 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_ strgreater_ than_ or_ equal_ to 
- 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_ strless_ than 
- Search for resources that were generated before a specific date. Specifying this parameter corresponding - timeGeneratedLessThanparameter 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 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.
- compartmentId BooleanIn Subtree 
- 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 List<Property Map>
- mimeType String
- An optional filter to return only resources that match the specified mime type.
- reportDefinition StringId 
- 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.
- timeGenerated StringGreater Than Or Equal To 
- 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 
- timeGenerated StringLess Than 
- Search for resources that were generated before a specific date. Specifying this parameter corresponding - timeGeneratedLessThanparameter 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<GetReports Report Collection> 
- The list of report_collection.
- AccessLevel string
- CompartmentId boolIn Subtree 
- DisplayName string
- Name of the report.
- Filters
List<GetReports Filter> 
- MimeType string
- Specifies the format of report to be .xls or .pdf or .json
- ReportDefinition stringId 
- The OCID of the report definition.
- State string
- The current state of the audit report.
- TimeGenerated stringGreater Than Or Equal To 
- TimeGenerated stringLess Than 
- 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 []GetReports Report Collection 
- The list of report_collection.
- AccessLevel string
- CompartmentId boolIn Subtree 
- DisplayName string
- Name of the report.
- Filters
[]GetReports Filter 
- MimeType string
- Specifies the format of report to be .xls or .pdf or .json
- ReportDefinition stringId 
- The OCID of the report definition.
- State string
- The current state of the audit report.
- TimeGenerated stringGreater Than Or Equal To 
- TimeGenerated stringLess Than 
- 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<GetReports Report Collection> 
- The list of report_collection.
- accessLevel String
- compartmentId BooleanIn Subtree 
- displayName String
- Name of the report.
- filters
List<GetReports Filter> 
- mimeType String
- Specifies the format of report to be .xls or .pdf or .json
- reportDefinition StringId 
- The OCID of the report definition.
- state String
- The current state of the audit report.
- timeGenerated StringGreater Than Or Equal To 
- timeGenerated StringLess Than 
- 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 GetReports Report Collection[] 
- The list of report_collection.
- accessLevel string
- compartmentId booleanIn Subtree 
- displayName string
- Name of the report.
- filters
GetReports Filter[] 
- mimeType string
- Specifies the format of report to be .xls or .pdf or .json
- reportDefinition stringId 
- The OCID of the report definition.
- state string
- The current state of the audit report.
- timeGenerated stringGreater Than Or Equal To 
- timeGenerated stringLess Than 
- 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[GetReports Report Collection] 
- The list of report_collection.
- access_level str
- compartment_id_ boolin_ subtree 
- display_name str
- Name of the report.
- filters
Sequence[GetReports Filter] 
- mime_type str
- Specifies the format of report to be .xls or .pdf or .json
- report_definition_ strid 
- The OCID of the report definition.
- state str
- The current state of the audit report.
- time_generated_ strgreater_ than_ or_ equal_ to 
- time_generated_ strless_ than 
- 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
- compartmentId BooleanIn Subtree 
- displayName String
- Name of the report.
- filters List<Property Map>
- mimeType String
- Specifies the format of report to be .xls or .pdf or .json
- reportDefinition StringId 
- The OCID of the report definition.
- state String
- The current state of the audit report.
- timeGenerated StringGreater Than Or Equal To 
- timeGenerated StringLess Than 
- type String
- The type of the audit report.
Supporting Types
GetReportsFilter  
GetReportsReportCollection   
GetReportsReportCollectionItem    
- CompartmentId string
- A filter to return only resources that match the specified compartment OCID.
- 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 string
- Specifies a description of the report.
- DisplayName string
- The name of the report definition to query.
- 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 string
- The OCID of the report.
- LifecycleDetails string
- Details about the current state of the report in Data Safe.
- MimeType string
- An optional filter to return only resources that match the specified mime type.
- ReportDefinition stringId 
- The ID of the report definition to filter the list of reports
- ReportId string
- State string
- An optional filter to return only resources that match the specified lifecycle state.
- 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 string
- Specifies the date and time the report was generated.
- Type string
- An optional filter to return only resources that match the specified type.
- CompartmentId string
- A filter to return only resources that match the specified compartment OCID.
- 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 string
- Specifies a description of the report.
- DisplayName string
- The name of the report definition to query.
- 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 string
- The OCID of the report.
- LifecycleDetails string
- Details about the current state of the report in Data Safe.
- MimeType string
- An optional filter to return only resources that match the specified mime type.
- ReportDefinition stringId 
- The ID of the report definition to filter the list of reports
- ReportId string
- State string
- An optional filter to return only resources that match the specified lifecycle state.
- 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 string
- Specifies the date and time the report was generated.
- Type string
- An optional filter to return only resources that match the specified type.
- compartmentId String
- A filter to return only resources that match the specified compartment OCID.
- 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 String
- Specifies a description of the report.
- displayName String
- The name of the report definition to query.
- 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 String
- The OCID of the report.
- lifecycleDetails String
- Details about the current state of the report in Data Safe.
- mimeType String
- An optional filter to return only resources that match the specified mime type.
- reportDefinition StringId 
- The ID of the report definition to filter the list of reports
- reportId String
- state String
- An optional filter to return only resources that match the specified lifecycle state.
- 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 String
- Specifies the date and time the report was generated.
- type String
- An optional filter to return only resources that match the specified type.
- compartmentId string
- A filter to return only resources that match the specified compartment OCID.
- {[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 string
- Specifies a description of the report.
- displayName string
- The name of the report definition to query.
- {[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 string
- The OCID of the report.
- lifecycleDetails string
- Details about the current state of the report in Data Safe.
- mimeType string
- An optional filter to return only resources that match the specified mime type.
- reportDefinition stringId 
- The ID of the report definition to filter the list of reports
- reportId string
- state string
- An optional filter to return only resources that match the specified lifecycle state.
- {[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 string
- Specifies the date and time the report was generated.
- type string
- An optional filter to return only resources that match the specified type.
- compartment_id str
- A filter to return only resources that match the specified compartment OCID.
- 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 str
- Specifies a description of the report.
- display_name str
- The name of the report definition to query.
- 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 str
- The OCID of the report.
- lifecycle_details str
- Details about the current state of the report in Data Safe.
- mime_type str
- An optional filter to return only resources that match the specified mime type.
- report_definition_ strid 
- The ID of the report definition to filter the list of reports
- report_id str
- state str
- An optional filter to return only resources that match the specified lifecycle state.
- 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 str
- Specifies the date and time the report was generated.
- type str
- An optional filter to return only resources that match the specified type.
- compartmentId String
- A filter to return only resources that match the specified compartment OCID.
- 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 String
- Specifies a description of the report.
- displayName String
- The name of the report definition to query.
- 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 String
- The OCID of the report.
- lifecycleDetails String
- Details about the current state of the report in Data Safe.
- mimeType String
- An optional filter to return only resources that match the specified mime type.
- reportDefinition StringId 
- The ID of the report definition to filter the list of reports
- reportId String
- state String
- An optional filter to return only resources that match the specified lifecycle state.
- 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 String
- Specifies the date and time the report was generated.
- type 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 ociTerraform Provider.