1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. getReportDefinitions
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.DataSafe.getReportDefinitions

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

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

Gets a list of report definitions. The ListReportDefinitions operation returns only the report definitions in the specified compartmentId. It also returns the seeded report definitions which are available to all the compartments.

Example Usage

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

const testReportDefinitions = oci.DataSafe.getReportDefinitions({
    compartmentId: compartmentId,
    accessLevel: reportDefinitionAccessLevel,
    category: reportDefinitionCategory,
    compartmentIdInSubtree: reportDefinitionCompartmentIdInSubtree,
    dataSource: reportDefinitionDataSource,
    displayName: reportDefinitionDisplayName,
    isSeeded: reportDefinitionIsSeeded,
    state: reportDefinitionState,
});
Copy
import pulumi
import pulumi_oci as oci

test_report_definitions = oci.DataSafe.get_report_definitions(compartment_id=compartment_id,
    access_level=report_definition_access_level,
    category=report_definition_category,
    compartment_id_in_subtree=report_definition_compartment_id_in_subtree,
    data_source=report_definition_data_source,
    display_name=report_definition_display_name,
    is_seeded=report_definition_is_seeded,
    state=report_definition_state)
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.GetReportDefinitions(ctx, &datasafe.GetReportDefinitionsArgs{
			CompartmentId:          compartmentId,
			AccessLevel:            pulumi.StringRef(reportDefinitionAccessLevel),
			Category:               pulumi.StringRef(reportDefinitionCategory),
			CompartmentIdInSubtree: pulumi.BoolRef(reportDefinitionCompartmentIdInSubtree),
			DataSource:             pulumi.StringRef(reportDefinitionDataSource),
			DisplayName:            pulumi.StringRef(reportDefinitionDisplayName),
			IsSeeded:               pulumi.BoolRef(reportDefinitionIsSeeded),
			State:                  pulumi.StringRef(reportDefinitionState),
		}, 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 testReportDefinitions = Oci.DataSafe.GetReportDefinitions.Invoke(new()
    {
        CompartmentId = compartmentId,
        AccessLevel = reportDefinitionAccessLevel,
        Category = reportDefinitionCategory,
        CompartmentIdInSubtree = reportDefinitionCompartmentIdInSubtree,
        DataSource = reportDefinitionDataSource,
        DisplayName = reportDefinitionDisplayName,
        IsSeeded = reportDefinitionIsSeeded,
        State = reportDefinitionState,
    });

});
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.GetReportDefinitionsArgs;
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 testReportDefinitions = DataSafeFunctions.getReportDefinitions(GetReportDefinitionsArgs.builder()
            .compartmentId(compartmentId)
            .accessLevel(reportDefinitionAccessLevel)
            .category(reportDefinitionCategory)
            .compartmentIdInSubtree(reportDefinitionCompartmentIdInSubtree)
            .dataSource(reportDefinitionDataSource)
            .displayName(reportDefinitionDisplayName)
            .isSeeded(reportDefinitionIsSeeded)
            .state(reportDefinitionState)
            .build());

    }
}
Copy
variables:
  testReportDefinitions:
    fn::invoke:
      function: oci:DataSafe:getReportDefinitions
      arguments:
        compartmentId: ${compartmentId}
        accessLevel: ${reportDefinitionAccessLevel}
        category: ${reportDefinitionCategory}
        compartmentIdInSubtree: ${reportDefinitionCompartmentIdInSubtree}
        dataSource: ${reportDefinitionDataSource}
        displayName: ${reportDefinitionDisplayName}
        isSeeded: ${reportDefinitionIsSeeded}
        state: ${reportDefinitionState}
Copy

Using getReportDefinitions

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 getReportDefinitions(args: GetReportDefinitionsArgs, opts?: InvokeOptions): Promise<GetReportDefinitionsResult>
function getReportDefinitionsOutput(args: GetReportDefinitionsOutputArgs, opts?: InvokeOptions): Output<GetReportDefinitionsResult>
Copy
def get_report_definitions(access_level: Optional[str] = None,
                           category: Optional[str] = None,
                           compartment_id: Optional[str] = None,
                           compartment_id_in_subtree: Optional[bool] = None,
                           data_source: Optional[str] = None,
                           display_name: Optional[str] = None,
                           filters: Optional[Sequence[_datasafe.GetReportDefinitionsFilter]] = None,
                           is_seeded: Optional[bool] = None,
                           state: Optional[str] = None,
                           opts: Optional[InvokeOptions] = None) -> GetReportDefinitionsResult
def get_report_definitions_output(access_level: Optional[pulumi.Input[str]] = None,
                           category: Optional[pulumi.Input[str]] = None,
                           compartment_id: Optional[pulumi.Input[str]] = None,
                           compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                           data_source: Optional[pulumi.Input[str]] = None,
                           display_name: Optional[pulumi.Input[str]] = None,
                           filters: Optional[pulumi.Input[Sequence[pulumi.Input[_datasafe.GetReportDefinitionsFilterArgs]]]] = None,
                           is_seeded: Optional[pulumi.Input[bool]] = None,
                           state: Optional[pulumi.Input[str]] = None,
                           opts: Optional[InvokeOptions] = None) -> Output[GetReportDefinitionsResult]
Copy
func GetReportDefinitions(ctx *Context, args *GetReportDefinitionsArgs, opts ...InvokeOption) (*GetReportDefinitionsResult, error)
func GetReportDefinitionsOutput(ctx *Context, args *GetReportDefinitionsOutputArgs, opts ...InvokeOption) GetReportDefinitionsResultOutput
Copy

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

public static class GetReportDefinitions 
{
    public static Task<GetReportDefinitionsResult> InvokeAsync(GetReportDefinitionsArgs args, InvokeOptions? opts = null)
    public static Output<GetReportDefinitionsResult> Invoke(GetReportDefinitionsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetReportDefinitionsResult> getReportDefinitions(GetReportDefinitionsArgs args, InvokeOptions options)
public static Output<GetReportDefinitionsResult> getReportDefinitions(GetReportDefinitionsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DataSafe/getReportDefinitions:getReportDefinitions
  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.
Category string
An optional filter to return only resources that match the specified category.
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.
DataSource string
Specifies the name of a resource that provides data for the report. For example alerts, events.
DisplayName string
The name of the report definition to query.
Filters Changes to this property will trigger replacement. List<GetReportDefinitionsFilter>
IsSeeded bool
A boolean flag indicating to list seeded report definitions. Set this parameter to get list of seeded report definitions.
State string
An optional filter to return only resources that match the specified lifecycle state.
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.
Category string
An optional filter to return only resources that match the specified category.
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.
DataSource string
Specifies the name of a resource that provides data for the report. For example alerts, events.
DisplayName string
The name of the report definition to query.
Filters Changes to this property will trigger replacement. []GetReportDefinitionsFilter
IsSeeded bool
A boolean flag indicating to list seeded report definitions. Set this parameter to get list of seeded report definitions.
State string
An optional filter to return only resources that match the specified lifecycle state.
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.
category String
An optional filter to return only resources that match the specified category.
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.
dataSource String
Specifies the name of a resource that provides data for the report. For example alerts, events.
displayName String
The name of the report definition to query.
filters Changes to this property will trigger replacement. List<GetReportDefinitionsFilter>
isSeeded Boolean
A boolean flag indicating to list seeded report definitions. Set this parameter to get list of seeded report definitions.
state String
An optional filter to return only resources that match the specified lifecycle state.
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.
category string
An optional filter to return only resources that match the specified category.
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.
dataSource string
Specifies the name of a resource that provides data for the report. For example alerts, events.
displayName string
The name of the report definition to query.
filters Changes to this property will trigger replacement. GetReportDefinitionsFilter[]
isSeeded boolean
A boolean flag indicating to list seeded report definitions. Set this parameter to get list of seeded report definitions.
state string
An optional filter to return only resources that match the specified lifecycle state.
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.
category str
An optional filter to return only resources that match the specified category.
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.
data_source str
Specifies the name of a resource that provides data for the report. For example alerts, events.
display_name str
The name of the report definition to query.
filters Changes to this property will trigger replacement. Sequence[datasafe.GetReportDefinitionsFilter]
is_seeded bool
A boolean flag indicating to list seeded report definitions. Set this parameter to get list of seeded report definitions.
state str
An optional filter to return only resources that match the specified lifecycle state.
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.
category String
An optional filter to return only resources that match the specified category.
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.
dataSource String
Specifies the name of a resource that provides data for the report. For example alerts, events.
displayName String
The name of the report definition to query.
filters Changes to this property will trigger replacement. List<Property Map>
isSeeded Boolean
A boolean flag indicating to list seeded report definitions. Set this parameter to get list of seeded report definitions.
state String
An optional filter to return only resources that match the specified lifecycle state.

getReportDefinitions Result

The following output properties are available:

CompartmentId string
The OCID of the compartment containing the report definition.
Id string
The provider-assigned unique ID for this managed resource.
ReportDefinitionCollections List<GetReportDefinitionsReportDefinitionCollection>
The list of report_definition_collection.
AccessLevel string
Category string
Specifies the name of the category that this report belongs to.
CompartmentIdInSubtree bool
DataSource string
Specifies the name of a resource that provides data for the report. For example alerts, events.
DisplayName string
Name of the report definition.
Filters List<GetReportDefinitionsFilter>
IsSeeded bool
Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
State string
The current state of the report.
CompartmentId string
The OCID of the compartment containing the report definition.
Id string
The provider-assigned unique ID for this managed resource.
ReportDefinitionCollections []GetReportDefinitionsReportDefinitionCollection
The list of report_definition_collection.
AccessLevel string
Category string
Specifies the name of the category that this report belongs to.
CompartmentIdInSubtree bool
DataSource string
Specifies the name of a resource that provides data for the report. For example alerts, events.
DisplayName string
Name of the report definition.
Filters []GetReportDefinitionsFilter
IsSeeded bool
Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
State string
The current state of the report.
compartmentId String
The OCID of the compartment containing the report definition.
id String
The provider-assigned unique ID for this managed resource.
reportDefinitionCollections List<GetReportDefinitionsReportDefinitionCollection>
The list of report_definition_collection.
accessLevel String
category String
Specifies the name of the category that this report belongs to.
compartmentIdInSubtree Boolean
dataSource String
Specifies the name of a resource that provides data for the report. For example alerts, events.
displayName String
Name of the report definition.
filters List<GetReportDefinitionsFilter>
isSeeded Boolean
Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
state String
The current state of the report.
compartmentId string
The OCID of the compartment containing the report definition.
id string
The provider-assigned unique ID for this managed resource.
reportDefinitionCollections GetReportDefinitionsReportDefinitionCollection[]
The list of report_definition_collection.
accessLevel string
category string
Specifies the name of the category that this report belongs to.
compartmentIdInSubtree boolean
dataSource string
Specifies the name of a resource that provides data for the report. For example alerts, events.
displayName string
Name of the report definition.
filters GetReportDefinitionsFilter[]
isSeeded boolean
Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
state string
The current state of the report.
compartment_id str
The OCID of the compartment containing the report definition.
id str
The provider-assigned unique ID for this managed resource.
report_definition_collections Sequence[datasafe.GetReportDefinitionsReportDefinitionCollection]
The list of report_definition_collection.
access_level str
category str
Specifies the name of the category that this report belongs to.
compartment_id_in_subtree bool
data_source str
Specifies the name of a resource that provides data for the report. For example alerts, events.
display_name str
Name of the report definition.
filters Sequence[datasafe.GetReportDefinitionsFilter]
is_seeded bool
Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
state str
The current state of the report.
compartmentId String
The OCID of the compartment containing the report definition.
id String
The provider-assigned unique ID for this managed resource.
reportDefinitionCollections List<Property Map>
The list of report_definition_collection.
accessLevel String
category String
Specifies the name of the category that this report belongs to.
compartmentIdInSubtree Boolean
dataSource String
Specifies the name of a resource that provides data for the report. For example alerts, events.
displayName String
Name of the report definition.
filters List<Property Map>
isSeeded Boolean
Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
state String
The current state of the report.

Supporting Types

GetReportDefinitionsFilter

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

GetReportDefinitionsReportDefinitionCollection

items This property is required. List<Property Map>

GetReportDefinitionsReportDefinitionCollectionItem

Category This property is required. string
An optional filter to return only resources that match the specified category.
ColumnFilters This property is required. List<GetReportDefinitionsReportDefinitionCollectionItemColumnFilter>
An array of columnFilter objects. A columnFilter object stores all information about a column filter including field name, an operator, one or more expressions, if the filter is enabled, or if the filter is hidden.
ColumnInfos This property is required. List<GetReportDefinitionsReportDefinitionCollectionItemColumnInfo>
An array of column objects in the order (left to right) displayed in the report. A column object stores all information about a column, including the name displayed on the UI, corresponding field name in the data source, data type of the column, and column visibility (if the column is visible to the user).
ColumnSortings This property is required. List<GetReportDefinitionsReportDefinitionCollectionItemColumnSorting>
An array of column sorting objects. Each column sorting object stores the column name to be sorted and if the sorting is in ascending order; sorting is done by the first column in the array, then by the second column in the array, etc.
CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
ComplianceStandards This property is required. List<string>
The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
DataSource This property is required. string
Specifies the name of a resource that provides data for the report. For example alerts, events.
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
A description of the report definition.
DisplayName This property is required. string
The name of the report definition to query.
DisplayOrder This property is required. int
Specifies the order in which the summary must be displayed.
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 definition.
IsSeeded This property is required. bool
A boolean flag indicating to list seeded report definitions. Set this parameter to get list of seeded report definitions.
LifecycleDetails This property is required. string
Details about the current state of the report definition in Data Safe.
ParentId This property is required. string
The OCID of the parent report definition. In the case of seeded report definition, this is same as definition OCID.
RecordTimeSpan This property is required. string
The time span for the records in the report to be scheduled. Allowed period strings - "H","D","M","Y" Each of the above fields potentially introduce constraints. A workRequest is created only when period-value satisfies all the constraints. Constraints introduced: 1. period = H (The allowed range for period-value is [1, 23]) 2. period = D (The allowed range for period-value is [1, 30]) 3. period = M (The allowed range for period-value is [1, 11]) 4. period = Y (The minimum period-value is 1)
Schedule This property is required. string
The schedule to generate the report periodically in the specified format: ;
ScheduledReportCompartmentId This property is required. string
The OCID of the compartment in which the scheduled resource will be created.
ScheduledReportMimeType This property is required. string
Specifies the format of the report ( either .xls or .pdf or .json)
ScheduledReportName This property is required. string
The name of the report to be scheduled.
ScheduledReportRowLimit This property is required. int
Specifies the limit on the number of rows in the report.
ScimFilter This property is required. string
Additional scim filters used to get the specific summary.
State This property is required. string
An optional filter to return only resources that match the specified lifecycle state.
Summaries This property is required. List<GetReportDefinitionsReportDefinitionCollectionItemSummary>
An array of report summary objects in the order (left to right) displayed in the report. A report summary object stores all information about summary of report to be displayed, including the name displayed on UI, the display order, corresponding group by and count of values, summary visibility (if the summary is visible to user).
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"}
TimeCreated This property is required. string
Specifies the date and time the report definition was created.
TimeUpdated This property is required. string
The date and time the report definition was updated.
Category This property is required. string
An optional filter to return only resources that match the specified category.
ColumnFilters This property is required. []GetReportDefinitionsReportDefinitionCollectionItemColumnFilter
An array of columnFilter objects. A columnFilter object stores all information about a column filter including field name, an operator, one or more expressions, if the filter is enabled, or if the filter is hidden.
ColumnInfos This property is required. []GetReportDefinitionsReportDefinitionCollectionItemColumnInfo
An array of column objects in the order (left to right) displayed in the report. A column object stores all information about a column, including the name displayed on the UI, corresponding field name in the data source, data type of the column, and column visibility (if the column is visible to the user).
ColumnSortings This property is required. []GetReportDefinitionsReportDefinitionCollectionItemColumnSorting
An array of column sorting objects. Each column sorting object stores the column name to be sorted and if the sorting is in ascending order; sorting is done by the first column in the array, then by the second column in the array, etc.
CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
ComplianceStandards This property is required. []string
The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
DataSource This property is required. string
Specifies the name of a resource that provides data for the report. For example alerts, events.
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
A description of the report definition.
DisplayName This property is required. string
The name of the report definition to query.
DisplayOrder This property is required. int
Specifies the order in which the summary must be displayed.
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 definition.
IsSeeded This property is required. bool
A boolean flag indicating to list seeded report definitions. Set this parameter to get list of seeded report definitions.
LifecycleDetails This property is required. string
Details about the current state of the report definition in Data Safe.
ParentId This property is required. string
The OCID of the parent report definition. In the case of seeded report definition, this is same as definition OCID.
RecordTimeSpan This property is required. string
The time span for the records in the report to be scheduled. Allowed period strings - "H","D","M","Y" Each of the above fields potentially introduce constraints. A workRequest is created only when period-value satisfies all the constraints. Constraints introduced: 1. period = H (The allowed range for period-value is [1, 23]) 2. period = D (The allowed range for period-value is [1, 30]) 3. period = M (The allowed range for period-value is [1, 11]) 4. period = Y (The minimum period-value is 1)
Schedule This property is required. string
The schedule to generate the report periodically in the specified format: ;
ScheduledReportCompartmentId This property is required. string
The OCID of the compartment in which the scheduled resource will be created.
ScheduledReportMimeType This property is required. string
Specifies the format of the report ( either .xls or .pdf or .json)
ScheduledReportName This property is required. string
The name of the report to be scheduled.
ScheduledReportRowLimit This property is required. int
Specifies the limit on the number of rows in the report.
ScimFilter This property is required. string
Additional scim filters used to get the specific summary.
State This property is required. string
An optional filter to return only resources that match the specified lifecycle state.
Summaries This property is required. []GetReportDefinitionsReportDefinitionCollectionItemSummary
An array of report summary objects in the order (left to right) displayed in the report. A report summary object stores all information about summary of report to be displayed, including the name displayed on UI, the display order, corresponding group by and count of values, summary visibility (if the summary is visible to user).
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"}
TimeCreated This property is required. string
Specifies the date and time the report definition was created.
TimeUpdated This property is required. string
The date and time the report definition was updated.
category This property is required. String
An optional filter to return only resources that match the specified category.
columnFilters This property is required. List<GetReportDefinitionsReportDefinitionCollectionItemColumnFilter>
An array of columnFilter objects. A columnFilter object stores all information about a column filter including field name, an operator, one or more expressions, if the filter is enabled, or if the filter is hidden.
columnInfos This property is required. List<GetReportDefinitionsReportDefinitionCollectionItemColumnInfo>
An array of column objects in the order (left to right) displayed in the report. A column object stores all information about a column, including the name displayed on the UI, corresponding field name in the data source, data type of the column, and column visibility (if the column is visible to the user).
columnSortings This property is required. List<GetReportDefinitionsReportDefinitionCollectionItemColumnSorting>
An array of column sorting objects. Each column sorting object stores the column name to be sorted and if the sorting is in ascending order; sorting is done by the first column in the array, then by the second column in the array, etc.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
complianceStandards This property is required. List<String>
The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
dataSource This property is required. String
Specifies the name of a resource that provides data for the report. For example alerts, events.
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
A description of the report definition.
displayName This property is required. String
The name of the report definition to query.
displayOrder This property is required. Integer
Specifies the order in which the summary must be displayed.
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 definition.
isSeeded This property is required. Boolean
A boolean flag indicating to list seeded report definitions. Set this parameter to get list of seeded report definitions.
lifecycleDetails This property is required. String
Details about the current state of the report definition in Data Safe.
parentId This property is required. String
The OCID of the parent report definition. In the case of seeded report definition, this is same as definition OCID.
recordTimeSpan This property is required. String
The time span for the records in the report to be scheduled. Allowed period strings - "H","D","M","Y" Each of the above fields potentially introduce constraints. A workRequest is created only when period-value satisfies all the constraints. Constraints introduced: 1. period = H (The allowed range for period-value is [1, 23]) 2. period = D (The allowed range for period-value is [1, 30]) 3. period = M (The allowed range for period-value is [1, 11]) 4. period = Y (The minimum period-value is 1)
schedule This property is required. String
The schedule to generate the report periodically in the specified format: ;
scheduledReportCompartmentId This property is required. String
The OCID of the compartment in which the scheduled resource will be created.
scheduledReportMimeType This property is required. String
Specifies the format of the report ( either .xls or .pdf or .json)
scheduledReportName This property is required. String
The name of the report to be scheduled.
scheduledReportRowLimit This property is required. Integer
Specifies the limit on the number of rows in the report.
scimFilter This property is required. String
Additional scim filters used to get the specific summary.
state This property is required. String
An optional filter to return only resources that match the specified lifecycle state.
summaries This property is required. List<GetReportDefinitionsReportDefinitionCollectionItemSummary>
An array of report summary objects in the order (left to right) displayed in the report. A report summary object stores all information about summary of report to be displayed, including the name displayed on UI, the display order, corresponding group by and count of values, summary visibility (if the summary is visible to user).
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"}
timeCreated This property is required. String
Specifies the date and time the report definition was created.
timeUpdated This property is required. String
The date and time the report definition was updated.
category This property is required. string
An optional filter to return only resources that match the specified category.
columnFilters This property is required. GetReportDefinitionsReportDefinitionCollectionItemColumnFilter[]
An array of columnFilter objects. A columnFilter object stores all information about a column filter including field name, an operator, one or more expressions, if the filter is enabled, or if the filter is hidden.
columnInfos This property is required. GetReportDefinitionsReportDefinitionCollectionItemColumnInfo[]
An array of column objects in the order (left to right) displayed in the report. A column object stores all information about a column, including the name displayed on the UI, corresponding field name in the data source, data type of the column, and column visibility (if the column is visible to the user).
columnSortings This property is required. GetReportDefinitionsReportDefinitionCollectionItemColumnSorting[]
An array of column sorting objects. Each column sorting object stores the column name to be sorted and if the sorting is in ascending order; sorting is done by the first column in the array, then by the second column in the array, etc.
compartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
complianceStandards This property is required. string[]
The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
dataSource This property is required. string
Specifies the name of a resource that provides data for the report. For example alerts, events.
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
A description of the report definition.
displayName This property is required. string
The name of the report definition to query.
displayOrder This property is required. number
Specifies the order in which the summary must be displayed.
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 definition.
isSeeded This property is required. boolean
A boolean flag indicating to list seeded report definitions. Set this parameter to get list of seeded report definitions.
lifecycleDetails This property is required. string
Details about the current state of the report definition in Data Safe.
parentId This property is required. string
The OCID of the parent report definition. In the case of seeded report definition, this is same as definition OCID.
recordTimeSpan This property is required. string
The time span for the records in the report to be scheduled. Allowed period strings - "H","D","M","Y" Each of the above fields potentially introduce constraints. A workRequest is created only when period-value satisfies all the constraints. Constraints introduced: 1. period = H (The allowed range for period-value is [1, 23]) 2. period = D (The allowed range for period-value is [1, 30]) 3. period = M (The allowed range for period-value is [1, 11]) 4. period = Y (The minimum period-value is 1)
schedule This property is required. string
The schedule to generate the report periodically in the specified format: ;
scheduledReportCompartmentId This property is required. string
The OCID of the compartment in which the scheduled resource will be created.
scheduledReportMimeType This property is required. string
Specifies the format of the report ( either .xls or .pdf or .json)
scheduledReportName This property is required. string
The name of the report to be scheduled.
scheduledReportRowLimit This property is required. number
Specifies the limit on the number of rows in the report.
scimFilter This property is required. string
Additional scim filters used to get the specific summary.
state This property is required. string
An optional filter to return only resources that match the specified lifecycle state.
summaries This property is required. GetReportDefinitionsReportDefinitionCollectionItemSummary[]
An array of report summary objects in the order (left to right) displayed in the report. A report summary object stores all information about summary of report to be displayed, including the name displayed on UI, the display order, corresponding group by and count of values, summary visibility (if the summary is visible to user).
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"}
timeCreated This property is required. string
Specifies the date and time the report definition was created.
timeUpdated This property is required. string
The date and time the report definition was updated.
category This property is required. str
An optional filter to return only resources that match the specified category.
column_filters This property is required. Sequence[datasafe.GetReportDefinitionsReportDefinitionCollectionItemColumnFilter]
An array of columnFilter objects. A columnFilter object stores all information about a column filter including field name, an operator, one or more expressions, if the filter is enabled, or if the filter is hidden.
column_infos This property is required. Sequence[datasafe.GetReportDefinitionsReportDefinitionCollectionItemColumnInfo]
An array of column objects in the order (left to right) displayed in the report. A column object stores all information about a column, including the name displayed on the UI, corresponding field name in the data source, data type of the column, and column visibility (if the column is visible to the user).
column_sortings This property is required. Sequence[datasafe.GetReportDefinitionsReportDefinitionCollectionItemColumnSorting]
An array of column sorting objects. Each column sorting object stores the column name to be sorted and if the sorting is in ascending order; sorting is done by the first column in the array, then by the second column in the array, etc.
compartment_id This property is required. str
A filter to return only resources that match the specified compartment OCID.
compliance_standards This property is required. Sequence[str]
The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
data_source This property is required. str
Specifies the name of a resource that provides data for the report. For example alerts, events.
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
A description of the report definition.
display_name This property is required. str
The name of the report definition to query.
display_order This property is required. int
Specifies the order in which the summary must be displayed.
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 definition.
is_seeded This property is required. bool
A boolean flag indicating to list seeded report definitions. Set this parameter to get list of seeded report definitions.
lifecycle_details This property is required. str
Details about the current state of the report definition in Data Safe.
parent_id This property is required. str
The OCID of the parent report definition. In the case of seeded report definition, this is same as definition OCID.
record_time_span This property is required. str
The time span for the records in the report to be scheduled. Allowed period strings - "H","D","M","Y" Each of the above fields potentially introduce constraints. A workRequest is created only when period-value satisfies all the constraints. Constraints introduced: 1. period = H (The allowed range for period-value is [1, 23]) 2. period = D (The allowed range for period-value is [1, 30]) 3. period = M (The allowed range for period-value is [1, 11]) 4. period = Y (The minimum period-value is 1)
schedule This property is required. str
The schedule to generate the report periodically in the specified format: ;
scheduled_report_compartment_id This property is required. str
The OCID of the compartment in which the scheduled resource will be created.
scheduled_report_mime_type This property is required. str
Specifies the format of the report ( either .xls or .pdf or .json)
scheduled_report_name This property is required. str
The name of the report to be scheduled.
scheduled_report_row_limit This property is required. int
Specifies the limit on the number of rows in the report.
scim_filter This property is required. str
Additional scim filters used to get the specific summary.
state This property is required. str
An optional filter to return only resources that match the specified lifecycle state.
summaries This property is required. Sequence[datasafe.GetReportDefinitionsReportDefinitionCollectionItemSummary]
An array of report summary objects in the order (left to right) displayed in the report. A report summary object stores all information about summary of report to be displayed, including the name displayed on UI, the display order, corresponding group by and count of values, summary visibility (if the summary is visible to user).
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_created This property is required. str
Specifies the date and time the report definition was created.
time_updated This property is required. str
The date and time the report definition was updated.
category This property is required. String
An optional filter to return only resources that match the specified category.
columnFilters This property is required. List<Property Map>
An array of columnFilter objects. A columnFilter object stores all information about a column filter including field name, an operator, one or more expressions, if the filter is enabled, or if the filter is hidden.
columnInfos This property is required. List<Property Map>
An array of column objects in the order (left to right) displayed in the report. A column object stores all information about a column, including the name displayed on the UI, corresponding field name in the data source, data type of the column, and column visibility (if the column is visible to the user).
columnSortings This property is required. List<Property Map>
An array of column sorting objects. Each column sorting object stores the column name to be sorted and if the sorting is in ascending order; sorting is done by the first column in the array, then by the second column in the array, etc.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
complianceStandards This property is required. List<String>
The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
dataSource This property is required. String
Specifies the name of a resource that provides data for the report. For example alerts, events.
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
A description of the report definition.
displayName This property is required. String
The name of the report definition to query.
displayOrder This property is required. Number
Specifies the order in which the summary must be displayed.
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 definition.
isSeeded This property is required. Boolean
A boolean flag indicating to list seeded report definitions. Set this parameter to get list of seeded report definitions.
lifecycleDetails This property is required. String
Details about the current state of the report definition in Data Safe.
parentId This property is required. String
The OCID of the parent report definition. In the case of seeded report definition, this is same as definition OCID.
recordTimeSpan This property is required. String
The time span for the records in the report to be scheduled. Allowed period strings - "H","D","M","Y" Each of the above fields potentially introduce constraints. A workRequest is created only when period-value satisfies all the constraints. Constraints introduced: 1. period = H (The allowed range for period-value is [1, 23]) 2. period = D (The allowed range for period-value is [1, 30]) 3. period = M (The allowed range for period-value is [1, 11]) 4. period = Y (The minimum period-value is 1)
schedule This property is required. String
The schedule to generate the report periodically in the specified format: ;
scheduledReportCompartmentId This property is required. String
The OCID of the compartment in which the scheduled resource will be created.
scheduledReportMimeType This property is required. String
Specifies the format of the report ( either .xls or .pdf or .json)
scheduledReportName This property is required. String
The name of the report to be scheduled.
scheduledReportRowLimit This property is required. Number
Specifies the limit on the number of rows in the report.
scimFilter This property is required. String
Additional scim filters used to get the specific summary.
state This property is required. String
An optional filter to return only resources that match the specified lifecycle state.
summaries This property is required. List<Property Map>
An array of report summary objects in the order (left to right) displayed in the report. A report summary object stores all information about summary of report to be displayed, including the name displayed on UI, the display order, corresponding group by and count of values, summary visibility (if the summary is visible to user).
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"}
timeCreated This property is required. String
Specifies the date and time the report definition was created.
timeUpdated This property is required. String
The date and time the report definition was updated.

GetReportDefinitionsReportDefinitionCollectionItemColumnFilter

Expressions This property is required. List<string>
An array of expressions based on the operator type. A filter may have one or more expressions.
FieldName This property is required. string
Name of the column that must be sorted.
IsEnabled This property is required. bool
Indicates whether the filter is enabled. Values can either be 'true' or 'false'.
IsHidden This property is required. bool
Indicates if the summary is hidden. Values can either be 'true' or 'false'.
Operator This property is required. string
Specifies the type of operator that must be applied for example in, eq etc.
Expressions This property is required. []string
An array of expressions based on the operator type. A filter may have one or more expressions.
FieldName This property is required. string
Name of the column that must be sorted.
IsEnabled This property is required. bool
Indicates whether the filter is enabled. Values can either be 'true' or 'false'.
IsHidden This property is required. bool
Indicates if the summary is hidden. Values can either be 'true' or 'false'.
Operator This property is required. string
Specifies the type of operator that must be applied for example in, eq etc.
expressions This property is required. List<String>
An array of expressions based on the operator type. A filter may have one or more expressions.
fieldName This property is required. String
Name of the column that must be sorted.
isEnabled This property is required. Boolean
Indicates whether the filter is enabled. Values can either be 'true' or 'false'.
isHidden This property is required. Boolean
Indicates if the summary is hidden. Values can either be 'true' or 'false'.
operator This property is required. String
Specifies the type of operator that must be applied for example in, eq etc.
expressions This property is required. string[]
An array of expressions based on the operator type. A filter may have one or more expressions.
fieldName This property is required. string
Name of the column that must be sorted.
isEnabled This property is required. boolean
Indicates whether the filter is enabled. Values can either be 'true' or 'false'.
isHidden This property is required. boolean
Indicates if the summary is hidden. Values can either be 'true' or 'false'.
operator This property is required. string
Specifies the type of operator that must be applied for example in, eq etc.
expressions This property is required. Sequence[str]
An array of expressions based on the operator type. A filter may have one or more expressions.
field_name This property is required. str
Name of the column that must be sorted.
is_enabled This property is required. bool
Indicates whether the filter is enabled. Values can either be 'true' or 'false'.
is_hidden This property is required. bool
Indicates if the summary is hidden. Values can either be 'true' or 'false'.
operator This property is required. str
Specifies the type of operator that must be applied for example in, eq etc.
expressions This property is required. List<String>
An array of expressions based on the operator type. A filter may have one or more expressions.
fieldName This property is required. String
Name of the column that must be sorted.
isEnabled This property is required. Boolean
Indicates whether the filter is enabled. Values can either be 'true' or 'false'.
isHidden This property is required. Boolean
Indicates if the summary is hidden. Values can either be 'true' or 'false'.
operator This property is required. String
Specifies the type of operator that must be applied for example in, eq etc.

GetReportDefinitionsReportDefinitionCollectionItemColumnInfo

DataType This property is required. string
Specifies the data type of the column.
DisplayName This property is required. string
The name of the report definition to query.
DisplayOrder This property is required. int
Specifies the order in which the summary must be displayed.
FieldName This property is required. string
Name of the column that must be sorted.
IsHidden This property is required. bool
Indicates if the summary is hidden. Values can either be 'true' or 'false'.
DataType This property is required. string
Specifies the data type of the column.
DisplayName This property is required. string
The name of the report definition to query.
DisplayOrder This property is required. int
Specifies the order in which the summary must be displayed.
FieldName This property is required. string
Name of the column that must be sorted.
IsHidden This property is required. bool
Indicates if the summary is hidden. Values can either be 'true' or 'false'.
dataType This property is required. String
Specifies the data type of the column.
displayName This property is required. String
The name of the report definition to query.
displayOrder This property is required. Integer
Specifies the order in which the summary must be displayed.
fieldName This property is required. String
Name of the column that must be sorted.
isHidden This property is required. Boolean
Indicates if the summary is hidden. Values can either be 'true' or 'false'.
dataType This property is required. string
Specifies the data type of the column.
displayName This property is required. string
The name of the report definition to query.
displayOrder This property is required. number
Specifies the order in which the summary must be displayed.
fieldName This property is required. string
Name of the column that must be sorted.
isHidden This property is required. boolean
Indicates if the summary is hidden. Values can either be 'true' or 'false'.
data_type This property is required. str
Specifies the data type of the column.
display_name This property is required. str
The name of the report definition to query.
display_order This property is required. int
Specifies the order in which the summary must be displayed.
field_name This property is required. str
Name of the column that must be sorted.
is_hidden This property is required. bool
Indicates if the summary is hidden. Values can either be 'true' or 'false'.
dataType This property is required. String
Specifies the data type of the column.
displayName This property is required. String
The name of the report definition to query.
displayOrder This property is required. Number
Specifies the order in which the summary must be displayed.
fieldName This property is required. String
Name of the column that must be sorted.
isHidden This property is required. Boolean
Indicates if the summary is hidden. Values can either be 'true' or 'false'.

GetReportDefinitionsReportDefinitionCollectionItemColumnSorting

FieldName This property is required. string
Name of the column that must be sorted.
IsAscending This property is required. bool
Indicates if the column must be sorted in ascending order. Values can either be 'true' or 'false'.
SortingOrder This property is required. int
Indicates the order at which column must be sorted.
FieldName This property is required. string
Name of the column that must be sorted.
IsAscending This property is required. bool
Indicates if the column must be sorted in ascending order. Values can either be 'true' or 'false'.
SortingOrder This property is required. int
Indicates the order at which column must be sorted.
fieldName This property is required. String
Name of the column that must be sorted.
isAscending This property is required. Boolean
Indicates if the column must be sorted in ascending order. Values can either be 'true' or 'false'.
sortingOrder This property is required. Integer
Indicates the order at which column must be sorted.
fieldName This property is required. string
Name of the column that must be sorted.
isAscending This property is required. boolean
Indicates if the column must be sorted in ascending order. Values can either be 'true' or 'false'.
sortingOrder This property is required. number
Indicates the order at which column must be sorted.
field_name This property is required. str
Name of the column that must be sorted.
is_ascending This property is required. bool
Indicates if the column must be sorted in ascending order. Values can either be 'true' or 'false'.
sorting_order This property is required. int
Indicates the order at which column must be sorted.
fieldName This property is required. String
Name of the column that must be sorted.
isAscending This property is required. Boolean
Indicates if the column must be sorted in ascending order. Values can either be 'true' or 'false'.
sortingOrder This property is required. Number
Indicates the order at which column must be sorted.

GetReportDefinitionsReportDefinitionCollectionItemSummary

CountOf This property is required. string
Name of the key or count of object.
DisplayOrder This property is required. int
Specifies the order in which the summary must be displayed.
GroupByFieldName This property is required. string
A comma-delimited string that specifies the names of the fields by which the records must be aggregated to get the summary.
IsHidden This property is required. bool
Indicates if the summary is hidden. Values can either be 'true' or 'false'.
Name This property is required. string
Name of the report summary.
ScimFilter This property is required. string
Additional scim filters used to get the specific summary.
CountOf This property is required. string
Name of the key or count of object.
DisplayOrder This property is required. int
Specifies the order in which the summary must be displayed.
GroupByFieldName This property is required. string
A comma-delimited string that specifies the names of the fields by which the records must be aggregated to get the summary.
IsHidden This property is required. bool
Indicates if the summary is hidden. Values can either be 'true' or 'false'.
Name This property is required. string
Name of the report summary.
ScimFilter This property is required. string
Additional scim filters used to get the specific summary.
countOf This property is required. String
Name of the key or count of object.
displayOrder This property is required. Integer
Specifies the order in which the summary must be displayed.
groupByFieldName This property is required. String
A comma-delimited string that specifies the names of the fields by which the records must be aggregated to get the summary.
isHidden This property is required. Boolean
Indicates if the summary is hidden. Values can either be 'true' or 'false'.
name This property is required. String
Name of the report summary.
scimFilter This property is required. String
Additional scim filters used to get the specific summary.
countOf This property is required. string
Name of the key or count of object.
displayOrder This property is required. number
Specifies the order in which the summary must be displayed.
groupByFieldName This property is required. string
A comma-delimited string that specifies the names of the fields by which the records must be aggregated to get the summary.
isHidden This property is required. boolean
Indicates if the summary is hidden. Values can either be 'true' or 'false'.
name This property is required. string
Name of the report summary.
scimFilter This property is required. string
Additional scim filters used to get the specific summary.
count_of This property is required. str
Name of the key or count of object.
display_order This property is required. int
Specifies the order in which the summary must be displayed.
group_by_field_name This property is required. str
A comma-delimited string that specifies the names of the fields by which the records must be aggregated to get the summary.
is_hidden This property is required. bool
Indicates if the summary is hidden. Values can either be 'true' or 'false'.
name This property is required. str
Name of the report summary.
scim_filter This property is required. str
Additional scim filters used to get the specific summary.
countOf This property is required. String
Name of the key or count of object.
displayOrder This property is required. Number
Specifies the order in which the summary must be displayed.
groupByFieldName This property is required. String
A comma-delimited string that specifies the names of the fields by which the records must be aggregated to get the summary.
isHidden This property is required. Boolean
Indicates if the summary is hidden. Values can either be 'true' or 'false'.
name This property is required. String
Name of the report summary.
scimFilter This property is required. String
Additional scim filters used to get the specific summary.

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.31.0 published on Thursday, Apr 17, 2025 by Pulumi