oci.DataSafe.ReportDefinition
Explore with Pulumi AI
This resource provides the Report Definition resource in Oracle Cloud Infrastructure Data Safe service.
Creates a new report definition with parameters specified in the body. The report definition is stored in the specified compartment.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testReportDefinition = new oci.datasafe.ReportDefinition("test_report_definition", {
    columnFilters: [{
        expressions: reportDefinitionColumnFiltersExpressions,
        fieldName: reportDefinitionColumnFiltersFieldName,
        isEnabled: reportDefinitionColumnFiltersIsEnabled,
        isHidden: reportDefinitionColumnFiltersIsHidden,
        operator: reportDefinitionColumnFiltersOperator,
    }],
    columnInfos: [{
        displayName: reportDefinitionColumnInfoDisplayName,
        displayOrder: reportDefinitionColumnInfoDisplayOrder,
        fieldName: reportDefinitionColumnInfoFieldName,
        isHidden: reportDefinitionColumnInfoIsHidden,
        dataType: reportDefinitionColumnInfoDataType,
    }],
    columnSortings: [{
        fieldName: reportDefinitionColumnSortingsFieldName,
        isAscending: reportDefinitionColumnSortingsIsAscending,
        sortingOrder: reportDefinitionColumnSortingsSortingOrder,
    }],
    compartmentId: compartmentId,
    displayName: reportDefinitionDisplayName,
    parentId: testParent.id,
    summaries: [{
        displayOrder: reportDefinitionSummaryDisplayOrder,
        name: reportDefinitionSummaryName,
        countOf: reportDefinitionSummaryCountOf,
        groupByFieldName: reportDefinitionSummaryGroupByFieldName,
        isHidden: reportDefinitionSummaryIsHidden,
        scimFilter: reportDefinitionSummaryScimFilter,
    }],
    definedTags: {
        "Operations.CostCenter": "42",
    },
    description: reportDefinitionDescription,
    freeformTags: {
        Department: "Finance",
    },
});
import pulumi
import pulumi_oci as oci
test_report_definition = oci.data_safe.ReportDefinition("test_report_definition",
    column_filters=[{
        "expressions": report_definition_column_filters_expressions,
        "field_name": report_definition_column_filters_field_name,
        "is_enabled": report_definition_column_filters_is_enabled,
        "is_hidden": report_definition_column_filters_is_hidden,
        "operator": report_definition_column_filters_operator,
    }],
    column_infos=[{
        "display_name": report_definition_column_info_display_name,
        "display_order": report_definition_column_info_display_order,
        "field_name": report_definition_column_info_field_name,
        "is_hidden": report_definition_column_info_is_hidden,
        "data_type": report_definition_column_info_data_type,
    }],
    column_sortings=[{
        "field_name": report_definition_column_sortings_field_name,
        "is_ascending": report_definition_column_sortings_is_ascending,
        "sorting_order": report_definition_column_sortings_sorting_order,
    }],
    compartment_id=compartment_id,
    display_name=report_definition_display_name,
    parent_id=test_parent["id"],
    summaries=[{
        "display_order": report_definition_summary_display_order,
        "name": report_definition_summary_name,
        "count_of": report_definition_summary_count_of,
        "group_by_field_name": report_definition_summary_group_by_field_name,
        "is_hidden": report_definition_summary_is_hidden,
        "scim_filter": report_definition_summary_scim_filter,
    }],
    defined_tags={
        "Operations.CostCenter": "42",
    },
    description=report_definition_description,
    freeform_tags={
        "Department": "Finance",
    })
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.NewReportDefinition(ctx, "test_report_definition", &datasafe.ReportDefinitionArgs{
			ColumnFilters: datasafe.ReportDefinitionColumnFilterArray{
				&datasafe.ReportDefinitionColumnFilterArgs{
					Expressions: pulumi.Any(reportDefinitionColumnFiltersExpressions),
					FieldName:   pulumi.Any(reportDefinitionColumnFiltersFieldName),
					IsEnabled:   pulumi.Any(reportDefinitionColumnFiltersIsEnabled),
					IsHidden:    pulumi.Any(reportDefinitionColumnFiltersIsHidden),
					Operator:    pulumi.Any(reportDefinitionColumnFiltersOperator),
				},
			},
			ColumnInfos: datasafe.ReportDefinitionColumnInfoArray{
				&datasafe.ReportDefinitionColumnInfoArgs{
					DisplayName:  pulumi.Any(reportDefinitionColumnInfoDisplayName),
					DisplayOrder: pulumi.Any(reportDefinitionColumnInfoDisplayOrder),
					FieldName:    pulumi.Any(reportDefinitionColumnInfoFieldName),
					IsHidden:     pulumi.Any(reportDefinitionColumnInfoIsHidden),
					DataType:     pulumi.Any(reportDefinitionColumnInfoDataType),
				},
			},
			ColumnSortings: datasafe.ReportDefinitionColumnSortingArray{
				&datasafe.ReportDefinitionColumnSortingArgs{
					FieldName:    pulumi.Any(reportDefinitionColumnSortingsFieldName),
					IsAscending:  pulumi.Any(reportDefinitionColumnSortingsIsAscending),
					SortingOrder: pulumi.Any(reportDefinitionColumnSortingsSortingOrder),
				},
			},
			CompartmentId: pulumi.Any(compartmentId),
			DisplayName:   pulumi.Any(reportDefinitionDisplayName),
			ParentId:      pulumi.Any(testParent.Id),
			Summaries: datasafe.ReportDefinitionSummaryArray{
				&datasafe.ReportDefinitionSummaryArgs{
					DisplayOrder:     pulumi.Any(reportDefinitionSummaryDisplayOrder),
					Name:             pulumi.Any(reportDefinitionSummaryName),
					CountOf:          pulumi.Any(reportDefinitionSummaryCountOf),
					GroupByFieldName: pulumi.Any(reportDefinitionSummaryGroupByFieldName),
					IsHidden:         pulumi.Any(reportDefinitionSummaryIsHidden),
					ScimFilter:       pulumi.Any(reportDefinitionSummaryScimFilter),
				},
			},
			DefinedTags: pulumi.StringMap{
				"Operations.CostCenter": pulumi.String("42"),
			},
			Description: pulumi.Any(reportDefinitionDescription),
			FreeformTags: pulumi.StringMap{
				"Department": pulumi.String("Finance"),
			},
		})
		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 testReportDefinition = new Oci.DataSafe.ReportDefinition("test_report_definition", new()
    {
        ColumnFilters = new[]
        {
            new Oci.DataSafe.Inputs.ReportDefinitionColumnFilterArgs
            {
                Expressions = reportDefinitionColumnFiltersExpressions,
                FieldName = reportDefinitionColumnFiltersFieldName,
                IsEnabled = reportDefinitionColumnFiltersIsEnabled,
                IsHidden = reportDefinitionColumnFiltersIsHidden,
                Operator = reportDefinitionColumnFiltersOperator,
            },
        },
        ColumnInfos = new[]
        {
            new Oci.DataSafe.Inputs.ReportDefinitionColumnInfoArgs
            {
                DisplayName = reportDefinitionColumnInfoDisplayName,
                DisplayOrder = reportDefinitionColumnInfoDisplayOrder,
                FieldName = reportDefinitionColumnInfoFieldName,
                IsHidden = reportDefinitionColumnInfoIsHidden,
                DataType = reportDefinitionColumnInfoDataType,
            },
        },
        ColumnSortings = new[]
        {
            new Oci.DataSafe.Inputs.ReportDefinitionColumnSortingArgs
            {
                FieldName = reportDefinitionColumnSortingsFieldName,
                IsAscending = reportDefinitionColumnSortingsIsAscending,
                SortingOrder = reportDefinitionColumnSortingsSortingOrder,
            },
        },
        CompartmentId = compartmentId,
        DisplayName = reportDefinitionDisplayName,
        ParentId = testParent.Id,
        Summaries = new[]
        {
            new Oci.DataSafe.Inputs.ReportDefinitionSummaryArgs
            {
                DisplayOrder = reportDefinitionSummaryDisplayOrder,
                Name = reportDefinitionSummaryName,
                CountOf = reportDefinitionSummaryCountOf,
                GroupByFieldName = reportDefinitionSummaryGroupByFieldName,
                IsHidden = reportDefinitionSummaryIsHidden,
                ScimFilter = reportDefinitionSummaryScimFilter,
            },
        },
        DefinedTags = 
        {
            { "Operations.CostCenter", "42" },
        },
        Description = reportDefinitionDescription,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataSafe.ReportDefinition;
import com.pulumi.oci.DataSafe.ReportDefinitionArgs;
import com.pulumi.oci.DataSafe.inputs.ReportDefinitionColumnFilterArgs;
import com.pulumi.oci.DataSafe.inputs.ReportDefinitionColumnInfoArgs;
import com.pulumi.oci.DataSafe.inputs.ReportDefinitionColumnSortingArgs;
import com.pulumi.oci.DataSafe.inputs.ReportDefinitionSummaryArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var testReportDefinition = new ReportDefinition("testReportDefinition", ReportDefinitionArgs.builder()
            .columnFilters(ReportDefinitionColumnFilterArgs.builder()
                .expressions(reportDefinitionColumnFiltersExpressions)
                .fieldName(reportDefinitionColumnFiltersFieldName)
                .isEnabled(reportDefinitionColumnFiltersIsEnabled)
                .isHidden(reportDefinitionColumnFiltersIsHidden)
                .operator(reportDefinitionColumnFiltersOperator)
                .build())
            .columnInfos(ReportDefinitionColumnInfoArgs.builder()
                .displayName(reportDefinitionColumnInfoDisplayName)
                .displayOrder(reportDefinitionColumnInfoDisplayOrder)
                .fieldName(reportDefinitionColumnInfoFieldName)
                .isHidden(reportDefinitionColumnInfoIsHidden)
                .dataType(reportDefinitionColumnInfoDataType)
                .build())
            .columnSortings(ReportDefinitionColumnSortingArgs.builder()
                .fieldName(reportDefinitionColumnSortingsFieldName)
                .isAscending(reportDefinitionColumnSortingsIsAscending)
                .sortingOrder(reportDefinitionColumnSortingsSortingOrder)
                .build())
            .compartmentId(compartmentId)
            .displayName(reportDefinitionDisplayName)
            .parentId(testParent.id())
            .summaries(ReportDefinitionSummaryArgs.builder()
                .displayOrder(reportDefinitionSummaryDisplayOrder)
                .name(reportDefinitionSummaryName)
                .countOf(reportDefinitionSummaryCountOf)
                .groupByFieldName(reportDefinitionSummaryGroupByFieldName)
                .isHidden(reportDefinitionSummaryIsHidden)
                .scimFilter(reportDefinitionSummaryScimFilter)
                .build())
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .description(reportDefinitionDescription)
            .freeformTags(Map.of("Department", "Finance"))
            .build());
    }
}
resources:
  testReportDefinition:
    type: oci:DataSafe:ReportDefinition
    name: test_report_definition
    properties:
      columnFilters:
        - expressions: ${reportDefinitionColumnFiltersExpressions}
          fieldName: ${reportDefinitionColumnFiltersFieldName}
          isEnabled: ${reportDefinitionColumnFiltersIsEnabled}
          isHidden: ${reportDefinitionColumnFiltersIsHidden}
          operator: ${reportDefinitionColumnFiltersOperator}
      columnInfos:
        - displayName: ${reportDefinitionColumnInfoDisplayName}
          displayOrder: ${reportDefinitionColumnInfoDisplayOrder}
          fieldName: ${reportDefinitionColumnInfoFieldName}
          isHidden: ${reportDefinitionColumnInfoIsHidden}
          dataType: ${reportDefinitionColumnInfoDataType}
      columnSortings:
        - fieldName: ${reportDefinitionColumnSortingsFieldName}
          isAscending: ${reportDefinitionColumnSortingsIsAscending}
          sortingOrder: ${reportDefinitionColumnSortingsSortingOrder}
      compartmentId: ${compartmentId}
      displayName: ${reportDefinitionDisplayName}
      parentId: ${testParent.id}
      summaries:
        - displayOrder: ${reportDefinitionSummaryDisplayOrder}
          name: ${reportDefinitionSummaryName}
          countOf: ${reportDefinitionSummaryCountOf}
          groupByFieldName: ${reportDefinitionSummaryGroupByFieldName}
          isHidden: ${reportDefinitionSummaryIsHidden}
          scimFilter: ${reportDefinitionSummaryScimFilter}
      definedTags:
        Operations.CostCenter: '42'
      description: ${reportDefinitionDescription}
      freeformTags:
        Department: Finance
Create ReportDefinition Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ReportDefinition(name: string, args: ReportDefinitionArgs, opts?: CustomResourceOptions);@overload
def ReportDefinition(resource_name: str,
                     args: ReportDefinitionArgs,
                     opts: Optional[ResourceOptions] = None)
@overload
def ReportDefinition(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     column_filters: Optional[Sequence[ReportDefinitionColumnFilterArgs]] = None,
                     column_infos: Optional[Sequence[ReportDefinitionColumnInfoArgs]] = None,
                     column_sortings: Optional[Sequence[ReportDefinitionColumnSortingArgs]] = None,
                     compartment_id: Optional[str] = None,
                     display_name: Optional[str] = None,
                     parent_id: Optional[str] = None,
                     summaries: Optional[Sequence[ReportDefinitionSummaryArgs]] = None,
                     defined_tags: Optional[Mapping[str, str]] = None,
                     description: Optional[str] = None,
                     freeform_tags: Optional[Mapping[str, str]] = None)func NewReportDefinition(ctx *Context, name string, args ReportDefinitionArgs, opts ...ResourceOption) (*ReportDefinition, error)public ReportDefinition(string name, ReportDefinitionArgs args, CustomResourceOptions? opts = null)
public ReportDefinition(String name, ReportDefinitionArgs args)
public ReportDefinition(String name, ReportDefinitionArgs args, CustomResourceOptions options)
type: oci:DataSafe:ReportDefinition
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ReportDefinitionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ReportDefinitionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ReportDefinitionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ReportDefinitionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ReportDefinitionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var reportDefinitionResource = new Oci.DataSafe.ReportDefinition("reportDefinitionResource", new()
{
    ColumnFilters = new[]
    {
        new Oci.DataSafe.Inputs.ReportDefinitionColumnFilterArgs
        {
            Expressions = new[]
            {
                "string",
            },
            FieldName = "string",
            IsEnabled = false,
            IsHidden = false,
            Operator = "string",
        },
    },
    ColumnInfos = new[]
    {
        new Oci.DataSafe.Inputs.ReportDefinitionColumnInfoArgs
        {
            DisplayName = "string",
            DisplayOrder = 0,
            FieldName = "string",
            IsHidden = false,
            DataType = "string",
        },
    },
    ColumnSortings = new[]
    {
        new Oci.DataSafe.Inputs.ReportDefinitionColumnSortingArgs
        {
            FieldName = "string",
            IsAscending = false,
            SortingOrder = 0,
        },
    },
    CompartmentId = "string",
    DisplayName = "string",
    ParentId = "string",
    Summaries = new[]
    {
        new Oci.DataSafe.Inputs.ReportDefinitionSummaryArgs
        {
            DisplayOrder = 0,
            Name = "string",
            CountOf = "string",
            GroupByFieldName = "string",
            IsHidden = false,
            ScimFilter = "string",
        },
    },
    DefinedTags = 
    {
        { "string", "string" },
    },
    Description = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
});
example, err := datasafe.NewReportDefinition(ctx, "reportDefinitionResource", &datasafe.ReportDefinitionArgs{
	ColumnFilters: datasafe.ReportDefinitionColumnFilterArray{
		&datasafe.ReportDefinitionColumnFilterArgs{
			Expressions: pulumi.StringArray{
				pulumi.String("string"),
			},
			FieldName: pulumi.String("string"),
			IsEnabled: pulumi.Bool(false),
			IsHidden:  pulumi.Bool(false),
			Operator:  pulumi.String("string"),
		},
	},
	ColumnInfos: datasafe.ReportDefinitionColumnInfoArray{
		&datasafe.ReportDefinitionColumnInfoArgs{
			DisplayName:  pulumi.String("string"),
			DisplayOrder: pulumi.Int(0),
			FieldName:    pulumi.String("string"),
			IsHidden:     pulumi.Bool(false),
			DataType:     pulumi.String("string"),
		},
	},
	ColumnSortings: datasafe.ReportDefinitionColumnSortingArray{
		&datasafe.ReportDefinitionColumnSortingArgs{
			FieldName:    pulumi.String("string"),
			IsAscending:  pulumi.Bool(false),
			SortingOrder: pulumi.Int(0),
		},
	},
	CompartmentId: pulumi.String("string"),
	DisplayName:   pulumi.String("string"),
	ParentId:      pulumi.String("string"),
	Summaries: datasafe.ReportDefinitionSummaryArray{
		&datasafe.ReportDefinitionSummaryArgs{
			DisplayOrder:     pulumi.Int(0),
			Name:             pulumi.String("string"),
			CountOf:          pulumi.String("string"),
			GroupByFieldName: pulumi.String("string"),
			IsHidden:         pulumi.Bool(false),
			ScimFilter:       pulumi.String("string"),
		},
	},
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Description: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var reportDefinitionResource = new ReportDefinition("reportDefinitionResource", ReportDefinitionArgs.builder()
    .columnFilters(ReportDefinitionColumnFilterArgs.builder()
        .expressions("string")
        .fieldName("string")
        .isEnabled(false)
        .isHidden(false)
        .operator("string")
        .build())
    .columnInfos(ReportDefinitionColumnInfoArgs.builder()
        .displayName("string")
        .displayOrder(0)
        .fieldName("string")
        .isHidden(false)
        .dataType("string")
        .build())
    .columnSortings(ReportDefinitionColumnSortingArgs.builder()
        .fieldName("string")
        .isAscending(false)
        .sortingOrder(0)
        .build())
    .compartmentId("string")
    .displayName("string")
    .parentId("string")
    .summaries(ReportDefinitionSummaryArgs.builder()
        .displayOrder(0)
        .name("string")
        .countOf("string")
        .groupByFieldName("string")
        .isHidden(false)
        .scimFilter("string")
        .build())
    .definedTags(Map.of("string", "string"))
    .description("string")
    .freeformTags(Map.of("string", "string"))
    .build());
report_definition_resource = oci.data_safe.ReportDefinition("reportDefinitionResource",
    column_filters=[{
        "expressions": ["string"],
        "field_name": "string",
        "is_enabled": False,
        "is_hidden": False,
        "operator": "string",
    }],
    column_infos=[{
        "display_name": "string",
        "display_order": 0,
        "field_name": "string",
        "is_hidden": False,
        "data_type": "string",
    }],
    column_sortings=[{
        "field_name": "string",
        "is_ascending": False,
        "sorting_order": 0,
    }],
    compartment_id="string",
    display_name="string",
    parent_id="string",
    summaries=[{
        "display_order": 0,
        "name": "string",
        "count_of": "string",
        "group_by_field_name": "string",
        "is_hidden": False,
        "scim_filter": "string",
    }],
    defined_tags={
        "string": "string",
    },
    description="string",
    freeform_tags={
        "string": "string",
    })
const reportDefinitionResource = new oci.datasafe.ReportDefinition("reportDefinitionResource", {
    columnFilters: [{
        expressions: ["string"],
        fieldName: "string",
        isEnabled: false,
        isHidden: false,
        operator: "string",
    }],
    columnInfos: [{
        displayName: "string",
        displayOrder: 0,
        fieldName: "string",
        isHidden: false,
        dataType: "string",
    }],
    columnSortings: [{
        fieldName: "string",
        isAscending: false,
        sortingOrder: 0,
    }],
    compartmentId: "string",
    displayName: "string",
    parentId: "string",
    summaries: [{
        displayOrder: 0,
        name: "string",
        countOf: "string",
        groupByFieldName: "string",
        isHidden: false,
        scimFilter: "string",
    }],
    definedTags: {
        string: "string",
    },
    description: "string",
    freeformTags: {
        string: "string",
    },
});
type: oci:DataSafe:ReportDefinition
properties:
    columnFilters:
        - expressions:
            - string
          fieldName: string
          isEnabled: false
          isHidden: false
          operator: string
    columnInfos:
        - dataType: string
          displayName: string
          displayOrder: 0
          fieldName: string
          isHidden: false
    columnSortings:
        - fieldName: string
          isAscending: false
          sortingOrder: 0
    compartmentId: string
    definedTags:
        string: string
    description: string
    displayName: string
    freeformTags:
        string: string
    parentId: string
    summaries:
        - countOf: string
          displayOrder: 0
          groupByFieldName: string
          isHidden: false
          name: string
          scimFilter: string
ReportDefinition Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ReportDefinition resource accepts the following input properties:
- ColumnFilters List<ReportDefinition Column Filter> 
- (Updatable) An array of column filter objects. A column Filter 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 List<ReportDefinition Column Info> 
- (Updatable) 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 List<ReportDefinition Column Sorting> 
- (Updatable) 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 string
- (Updatable) The OCID of the compartment containing the report definition.
- DisplayName string
- (Updatable) Specifies the name of the report definition.
- ParentId string
- The OCID of the parent report definition.
- Summaries
List<ReportDefinition Summary> 
- (Updatable) 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).
- Dictionary<string, string>
- (Updatable) 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
- (Updatable) The description of the report definition.
- Dictionary<string, string>
- (Updatable) 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"}
- ColumnFilters []ReportDefinition Column Filter Args 
- (Updatable) An array of column filter objects. A column Filter 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 []ReportDefinition Column Info Args 
- (Updatable) 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 []ReportDefinition Column Sorting Args 
- (Updatable) 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 string
- (Updatable) The OCID of the compartment containing the report definition.
- DisplayName string
- (Updatable) Specifies the name of the report definition.
- ParentId string
- The OCID of the parent report definition.
- Summaries
[]ReportDefinition Summary Args 
- (Updatable) 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).
- map[string]string
- (Updatable) 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
- (Updatable) The description of the report definition.
- map[string]string
- (Updatable) 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"}
- columnFilters List<ReportDefinition Column Filter> 
- (Updatable) An array of column filter objects. A column Filter 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 List<ReportDefinition Column Info> 
- (Updatable) 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 List<ReportDefinition Column Sorting> 
- (Updatable) 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 String
- (Updatable) The OCID of the compartment containing the report definition.
- displayName String
- (Updatable) Specifies the name of the report definition.
- parentId String
- The OCID of the parent report definition.
- summaries
List<ReportDefinition Summary> 
- (Updatable) 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).
- Map<String,String>
- (Updatable) 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
- (Updatable) The description of the report definition.
- Map<String,String>
- (Updatable) 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"}
- columnFilters ReportDefinition Column Filter[] 
- (Updatable) An array of column filter objects. A column Filter 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 ReportDefinition Column Info[] 
- (Updatable) 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 ReportDefinition Column Sorting[] 
- (Updatable) 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 string
- (Updatable) The OCID of the compartment containing the report definition.
- displayName string
- (Updatable) Specifies the name of the report definition.
- parentId string
- The OCID of the parent report definition.
- summaries
ReportDefinition Summary[] 
- (Updatable) 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).
- {[key: string]: string}
- (Updatable) 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
- (Updatable) The description of the report definition.
- {[key: string]: string}
- (Updatable) 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"}
- column_filters Sequence[ReportDefinition Column Filter Args] 
- (Updatable) An array of column filter objects. A column Filter 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 Sequence[ReportDefinition Column Info Args] 
- (Updatable) 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 Sequence[ReportDefinition Column Sorting Args] 
- (Updatable) 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 str
- (Updatable) The OCID of the compartment containing the report definition.
- display_name str
- (Updatable) Specifies the name of the report definition.
- parent_id str
- The OCID of the parent report definition.
- summaries
Sequence[ReportDefinition Summary Args] 
- (Updatable) 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).
- Mapping[str, str]
- (Updatable) 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
- (Updatable) The description of the report definition.
- Mapping[str, str]
- (Updatable) 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"}
- columnFilters List<Property Map>
- (Updatable) An array of column filter objects. A column Filter 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 List<Property Map>
- (Updatable) 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 List<Property Map>
- (Updatable) 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 String
- (Updatable) The OCID of the compartment containing the report definition.
- displayName String
- (Updatable) Specifies the name of the report definition.
- parentId String
- The OCID of the parent report definition.
- summaries List<Property Map>
- (Updatable) 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).
- Map<String>
- (Updatable) 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
- (Updatable) The description of the report definition.
- Map<String>
- (Updatable) 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"}
Outputs
All input properties are implicitly available as output properties. Additionally, the ReportDefinition resource produces the following output properties:
- Category string
- Specifies the name of the category that this report belongs to.
- ComplianceStandards List<string>
- The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
- DataSource string
- Specifies the name of a resource that provides data for the report. For example alerts, events.
- DisplayOrder int
- Specifies the order in which the summary must be displayed.
- Id string
- The provider-assigned unique ID for this managed resource.
- IsSeeded bool
- Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
- LifecycleDetails string
- Details about the current state of the report definition in Data Safe.
- RecordTime stringSpan 
- 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 string
- The schedule to generate the report periodically in the specified format: ;
- ScheduledReport stringCompartment Id 
- The OCID of the compartment in which the scheduled resource will be created.
- ScheduledReport stringMime Type 
- Specifies the format of the report ( either .xls or .pdf or .json)
- ScheduledReport stringName 
- The name of the report to be scheduled.
- ScheduledReport intRow Limit 
- Specifies the limit on the number of rows in the report.
- ScimFilter string
- Additional scim filters used to get the specific summary.
- State string
- The current state of the report.
- 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 string
- Specifies the date and time the report definition was created.
- TimeUpdated string
- The date and time the report definition was updated.
- Category string
- Specifies the name of the category that this report belongs to.
- ComplianceStandards []string
- The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
- DataSource string
- Specifies the name of a resource that provides data for the report. For example alerts, events.
- DisplayOrder int
- Specifies the order in which the summary must be displayed.
- Id string
- The provider-assigned unique ID for this managed resource.
- IsSeeded bool
- Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
- LifecycleDetails string
- Details about the current state of the report definition in Data Safe.
- RecordTime stringSpan 
- 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 string
- The schedule to generate the report periodically in the specified format: ;
- ScheduledReport stringCompartment Id 
- The OCID of the compartment in which the scheduled resource will be created.
- ScheduledReport stringMime Type 
- Specifies the format of the report ( either .xls or .pdf or .json)
- ScheduledReport stringName 
- The name of the report to be scheduled.
- ScheduledReport intRow Limit 
- Specifies the limit on the number of rows in the report.
- ScimFilter string
- Additional scim filters used to get the specific summary.
- State string
- The current state of the report.
- 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 string
- Specifies the date and time the report definition was created.
- TimeUpdated string
- The date and time the report definition was updated.
- category String
- Specifies the name of the category that this report belongs to.
- complianceStandards List<String>
- The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
- dataSource String
- Specifies the name of a resource that provides data for the report. For example alerts, events.
- displayOrder Integer
- Specifies the order in which the summary must be displayed.
- id String
- The provider-assigned unique ID for this managed resource.
- isSeeded Boolean
- Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
- lifecycleDetails String
- Details about the current state of the report definition in Data Safe.
- recordTime StringSpan 
- 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 String
- The schedule to generate the report periodically in the specified format: ;
- scheduledReport StringCompartment Id 
- The OCID of the compartment in which the scheduled resource will be created.
- scheduledReport StringMime Type 
- Specifies the format of the report ( either .xls or .pdf or .json)
- scheduledReport StringName 
- The name of the report to be scheduled.
- scheduledReport IntegerRow Limit 
- Specifies the limit on the number of rows in the report.
- scimFilter String
- Additional scim filters used to get the specific summary.
- state String
- The current state of the report.
- 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 String
- Specifies the date and time the report definition was created.
- timeUpdated String
- The date and time the report definition was updated.
- category string
- Specifies the name of the category that this report belongs to.
- complianceStandards string[]
- The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
- dataSource string
- Specifies the name of a resource that provides data for the report. For example alerts, events.
- displayOrder number
- Specifies the order in which the summary must be displayed.
- id string
- The provider-assigned unique ID for this managed resource.
- isSeeded boolean
- Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
- lifecycleDetails string
- Details about the current state of the report definition in Data Safe.
- recordTime stringSpan 
- 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 string
- The schedule to generate the report periodically in the specified format: ;
- scheduledReport stringCompartment Id 
- The OCID of the compartment in which the scheduled resource will be created.
- scheduledReport stringMime Type 
- Specifies the format of the report ( either .xls or .pdf or .json)
- scheduledReport stringName 
- The name of the report to be scheduled.
- scheduledReport numberRow Limit 
- Specifies the limit on the number of rows in the report.
- scimFilter string
- Additional scim filters used to get the specific summary.
- state string
- The current state of the report.
- {[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 string
- Specifies the date and time the report definition was created.
- timeUpdated string
- The date and time the report definition was updated.
- category str
- Specifies the name of the category that this report belongs to.
- compliance_standards Sequence[str]
- The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
- data_source str
- Specifies the name of a resource that provides data for the report. For example alerts, events.
- display_order int
- Specifies the order in which the summary must be displayed.
- id str
- The provider-assigned unique ID for this managed resource.
- is_seeded bool
- Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
- lifecycle_details str
- Details about the current state of the report definition in Data Safe.
- record_time_ strspan 
- 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 str
- The schedule to generate the report periodically in the specified format: ;
- scheduled_report_ strcompartment_ id 
- The OCID of the compartment in which the scheduled resource will be created.
- scheduled_report_ strmime_ type 
- Specifies the format of the report ( either .xls or .pdf or .json)
- scheduled_report_ strname 
- The name of the report to be scheduled.
- scheduled_report_ introw_ limit 
- Specifies the limit on the number of rows in the report.
- scim_filter str
- Additional scim filters used to get the specific summary.
- state str
- The current state of the report.
- 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 str
- Specifies the date and time the report definition was created.
- time_updated str
- The date and time the report definition was updated.
- category String
- Specifies the name of the category that this report belongs to.
- complianceStandards List<String>
- The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
- dataSource String
- Specifies the name of a resource that provides data for the report. For example alerts, events.
- displayOrder Number
- Specifies the order in which the summary must be displayed.
- id String
- The provider-assigned unique ID for this managed resource.
- isSeeded Boolean
- Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
- lifecycleDetails String
- Details about the current state of the report definition in Data Safe.
- recordTime StringSpan 
- 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 String
- The schedule to generate the report periodically in the specified format: ;
- scheduledReport StringCompartment Id 
- The OCID of the compartment in which the scheduled resource will be created.
- scheduledReport StringMime Type 
- Specifies the format of the report ( either .xls or .pdf or .json)
- scheduledReport StringName 
- The name of the report to be scheduled.
- scheduledReport NumberRow Limit 
- Specifies the limit on the number of rows in the report.
- scimFilter String
- Additional scim filters used to get the specific summary.
- state String
- The current state of the report.
- 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 String
- Specifies the date and time the report definition was created.
- timeUpdated String
- The date and time the report definition was updated.
Look up Existing ReportDefinition Resource
Get an existing ReportDefinition resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ReportDefinitionState, opts?: CustomResourceOptions): ReportDefinition@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        category: Optional[str] = None,
        column_filters: Optional[Sequence[ReportDefinitionColumnFilterArgs]] = None,
        column_infos: Optional[Sequence[ReportDefinitionColumnInfoArgs]] = None,
        column_sortings: Optional[Sequence[ReportDefinitionColumnSortingArgs]] = None,
        compartment_id: Optional[str] = None,
        compliance_standards: Optional[Sequence[str]] = None,
        data_source: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        display_order: Optional[int] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        is_seeded: Optional[bool] = None,
        lifecycle_details: Optional[str] = None,
        parent_id: Optional[str] = None,
        record_time_span: Optional[str] = None,
        schedule: Optional[str] = None,
        scheduled_report_compartment_id: Optional[str] = None,
        scheduled_report_mime_type: Optional[str] = None,
        scheduled_report_name: Optional[str] = None,
        scheduled_report_row_limit: Optional[int] = None,
        scim_filter: Optional[str] = None,
        state: Optional[str] = None,
        summaries: Optional[Sequence[ReportDefinitionSummaryArgs]] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None) -> ReportDefinitionfunc GetReportDefinition(ctx *Context, name string, id IDInput, state *ReportDefinitionState, opts ...ResourceOption) (*ReportDefinition, error)public static ReportDefinition Get(string name, Input<string> id, ReportDefinitionState? state, CustomResourceOptions? opts = null)public static ReportDefinition get(String name, Output<String> id, ReportDefinitionState state, CustomResourceOptions options)resources:  _:    type: oci:DataSafe:ReportDefinition    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Category string
- Specifies the name of the category that this report belongs to.
- ColumnFilters List<ReportDefinition Column Filter> 
- (Updatable) An array of column filter objects. A column Filter 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 List<ReportDefinition Column Info> 
- (Updatable) 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 List<ReportDefinition Column Sorting> 
- (Updatable) 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 string
- (Updatable) The OCID of the compartment containing the report definition.
- ComplianceStandards List<string>
- The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
- DataSource string
- Specifies the name of a resource that provides data for the report. For example alerts, events.
- Dictionary<string, string>
- (Updatable) 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
- (Updatable) The description of the report definition.
- DisplayName string
- (Updatable) Specifies the name of the report definition.
- DisplayOrder int
- Specifies the order in which the summary must be displayed.
- Dictionary<string, string>
- (Updatable) 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"}
- IsSeeded bool
- Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
- LifecycleDetails string
- Details about the current state of the report definition in Data Safe.
- ParentId string
- The OCID of the parent report definition.
- RecordTime stringSpan 
- 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 string
- The schedule to generate the report periodically in the specified format: ;
- ScheduledReport stringCompartment Id 
- The OCID of the compartment in which the scheduled resource will be created.
- ScheduledReport stringMime Type 
- Specifies the format of the report ( either .xls or .pdf or .json)
- ScheduledReport stringName 
- The name of the report to be scheduled.
- ScheduledReport intRow Limit 
- Specifies the limit on the number of rows in the report.
- ScimFilter string
- Additional scim filters used to get the specific summary.
- State string
- The current state of the report.
- Summaries
List<ReportDefinition Summary> 
- (Updatable) 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).
- 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 string
- Specifies the date and time the report definition was created.
- TimeUpdated string
- The date and time the report definition was updated.
- Category string
- Specifies the name of the category that this report belongs to.
- ColumnFilters []ReportDefinition Column Filter Args 
- (Updatable) An array of column filter objects. A column Filter 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 []ReportDefinition Column Info Args 
- (Updatable) 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 []ReportDefinition Column Sorting Args 
- (Updatable) 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 string
- (Updatable) The OCID of the compartment containing the report definition.
- ComplianceStandards []string
- The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
- DataSource string
- Specifies the name of a resource that provides data for the report. For example alerts, events.
- map[string]string
- (Updatable) 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
- (Updatable) The description of the report definition.
- DisplayName string
- (Updatable) Specifies the name of the report definition.
- DisplayOrder int
- Specifies the order in which the summary must be displayed.
- map[string]string
- (Updatable) 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"}
- IsSeeded bool
- Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
- LifecycleDetails string
- Details about the current state of the report definition in Data Safe.
- ParentId string
- The OCID of the parent report definition.
- RecordTime stringSpan 
- 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 string
- The schedule to generate the report periodically in the specified format: ;
- ScheduledReport stringCompartment Id 
- The OCID of the compartment in which the scheduled resource will be created.
- ScheduledReport stringMime Type 
- Specifies the format of the report ( either .xls or .pdf or .json)
- ScheduledReport stringName 
- The name of the report to be scheduled.
- ScheduledReport intRow Limit 
- Specifies the limit on the number of rows in the report.
- ScimFilter string
- Additional scim filters used to get the specific summary.
- State string
- The current state of the report.
- Summaries
[]ReportDefinition Summary Args 
- (Updatable) 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).
- 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 string
- Specifies the date and time the report definition was created.
- TimeUpdated string
- The date and time the report definition was updated.
- category String
- Specifies the name of the category that this report belongs to.
- columnFilters List<ReportDefinition Column Filter> 
- (Updatable) An array of column filter objects. A column Filter 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 List<ReportDefinition Column Info> 
- (Updatable) 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 List<ReportDefinition Column Sorting> 
- (Updatable) 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 String
- (Updatable) The OCID of the compartment containing the report definition.
- complianceStandards List<String>
- The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
- dataSource String
- Specifies the name of a resource that provides data for the report. For example alerts, events.
- Map<String,String>
- (Updatable) 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
- (Updatable) The description of the report definition.
- displayName String
- (Updatable) Specifies the name of the report definition.
- displayOrder Integer
- Specifies the order in which the summary must be displayed.
- Map<String,String>
- (Updatable) 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"}
- isSeeded Boolean
- Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
- lifecycleDetails String
- Details about the current state of the report definition in Data Safe.
- parentId String
- The OCID of the parent report definition.
- recordTime StringSpan 
- 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 String
- The schedule to generate the report periodically in the specified format: ;
- scheduledReport StringCompartment Id 
- The OCID of the compartment in which the scheduled resource will be created.
- scheduledReport StringMime Type 
- Specifies the format of the report ( either .xls or .pdf or .json)
- scheduledReport StringName 
- The name of the report to be scheduled.
- scheduledReport IntegerRow Limit 
- Specifies the limit on the number of rows in the report.
- scimFilter String
- Additional scim filters used to get the specific summary.
- state String
- The current state of the report.
- summaries
List<ReportDefinition Summary> 
- (Updatable) 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).
- 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 String
- Specifies the date and time the report definition was created.
- timeUpdated String
- The date and time the report definition was updated.
- category string
- Specifies the name of the category that this report belongs to.
- columnFilters ReportDefinition Column Filter[] 
- (Updatable) An array of column filter objects. A column Filter 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 ReportDefinition Column Info[] 
- (Updatable) 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 ReportDefinition Column Sorting[] 
- (Updatable) 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 string
- (Updatable) The OCID of the compartment containing the report definition.
- complianceStandards string[]
- The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
- dataSource string
- Specifies the name of a resource that provides data for the report. For example alerts, events.
- {[key: string]: string}
- (Updatable) 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
- (Updatable) The description of the report definition.
- displayName string
- (Updatable) Specifies the name of the report definition.
- displayOrder number
- Specifies the order in which the summary must be displayed.
- {[key: string]: string}
- (Updatable) 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"}
- isSeeded boolean
- Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
- lifecycleDetails string
- Details about the current state of the report definition in Data Safe.
- parentId string
- The OCID of the parent report definition.
- recordTime stringSpan 
- 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 string
- The schedule to generate the report periodically in the specified format: ;
- scheduledReport stringCompartment Id 
- The OCID of the compartment in which the scheduled resource will be created.
- scheduledReport stringMime Type 
- Specifies the format of the report ( either .xls or .pdf or .json)
- scheduledReport stringName 
- The name of the report to be scheduled.
- scheduledReport numberRow Limit 
- Specifies the limit on the number of rows in the report.
- scimFilter string
- Additional scim filters used to get the specific summary.
- state string
- The current state of the report.
- summaries
ReportDefinition Summary[] 
- (Updatable) 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).
- {[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 string
- Specifies the date and time the report definition was created.
- timeUpdated string
- The date and time the report definition was updated.
- category str
- Specifies the name of the category that this report belongs to.
- column_filters Sequence[ReportDefinition Column Filter Args] 
- (Updatable) An array of column filter objects. A column Filter 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 Sequence[ReportDefinition Column Info Args] 
- (Updatable) 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 Sequence[ReportDefinition Column Sorting Args] 
- (Updatable) 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 str
- (Updatable) The OCID of the compartment containing the report definition.
- compliance_standards Sequence[str]
- The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
- data_source str
- Specifies the name of a resource that provides data for the report. For example alerts, events.
- Mapping[str, str]
- (Updatable) 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
- (Updatable) The description of the report definition.
- display_name str
- (Updatable) Specifies the name of the report definition.
- display_order int
- Specifies the order in which the summary must be displayed.
- Mapping[str, str]
- (Updatable) 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"}
- is_seeded bool
- Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
- lifecycle_details str
- Details about the current state of the report definition in Data Safe.
- parent_id str
- The OCID of the parent report definition.
- record_time_ strspan 
- 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 str
- The schedule to generate the report periodically in the specified format: ;
- scheduled_report_ strcompartment_ id 
- The OCID of the compartment in which the scheduled resource will be created.
- scheduled_report_ strmime_ type 
- Specifies the format of the report ( either .xls or .pdf or .json)
- scheduled_report_ strname 
- The name of the report to be scheduled.
- scheduled_report_ introw_ limit 
- Specifies the limit on the number of rows in the report.
- scim_filter str
- Additional scim filters used to get the specific summary.
- state str
- The current state of the report.
- summaries
Sequence[ReportDefinition Summary Args] 
- (Updatable) 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).
- 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 str
- Specifies the date and time the report definition was created.
- time_updated str
- The date and time the report definition was updated.
- category String
- Specifies the name of the category that this report belongs to.
- columnFilters List<Property Map>
- (Updatable) An array of column filter objects. A column Filter 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 List<Property Map>
- (Updatable) 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 List<Property Map>
- (Updatable) 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 String
- (Updatable) The OCID of the compartment containing the report definition.
- complianceStandards List<String>
- The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
- dataSource String
- Specifies the name of a resource that provides data for the report. For example alerts, events.
- Map<String>
- (Updatable) 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
- (Updatable) The description of the report definition.
- displayName String
- (Updatable) Specifies the name of the report definition.
- displayOrder Number
- Specifies the order in which the summary must be displayed.
- Map<String>
- (Updatable) 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"}
- isSeeded Boolean
- Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
- lifecycleDetails String
- Details about the current state of the report definition in Data Safe.
- parentId String
- The OCID of the parent report definition.
- recordTime StringSpan 
- 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 String
- The schedule to generate the report periodically in the specified format: ;
- scheduledReport StringCompartment Id 
- The OCID of the compartment in which the scheduled resource will be created.
- scheduledReport StringMime Type 
- Specifies the format of the report ( either .xls or .pdf or .json)
- scheduledReport StringName 
- The name of the report to be scheduled.
- scheduledReport NumberRow Limit 
- Specifies the limit on the number of rows in the report.
- scimFilter String
- Additional scim filters used to get the specific summary.
- state String
- The current state of the report.
- summaries List<Property Map>
- (Updatable) 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).
- 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 String
- Specifies the date and time the report definition was created.
- timeUpdated String
- The date and time the report definition was updated.
Supporting Types
ReportDefinitionColumnFilter, ReportDefinitionColumnFilterArgs        
- Expressions List<string>
- (Updatable) An array of expressions based on the operator type. A filter may have one or more expressions.
- FieldName string
- (Updatable) Name of the column on which the filter must be applied.
- IsEnabled bool
- (Updatable) Indicates whether the filter is enabled. Values can either be 'true' or 'false'.
- bool
- (Updatable) Indicates whether the filter is hidden. Values can either be 'true' or 'false'.
- Operator string
- (Updatable) Specifies the type of operator that must be applied for example in, eq etc.
- Expressions []string
- (Updatable) An array of expressions based on the operator type. A filter may have one or more expressions.
- FieldName string
- (Updatable) Name of the column on which the filter must be applied.
- IsEnabled bool
- (Updatable) Indicates whether the filter is enabled. Values can either be 'true' or 'false'.
- bool
- (Updatable) Indicates whether the filter is hidden. Values can either be 'true' or 'false'.
- Operator string
- (Updatable) Specifies the type of operator that must be applied for example in, eq etc.
- expressions List<String>
- (Updatable) An array of expressions based on the operator type. A filter may have one or more expressions.
- fieldName String
- (Updatable) Name of the column on which the filter must be applied.
- isEnabled Boolean
- (Updatable) Indicates whether the filter is enabled. Values can either be 'true' or 'false'.
- Boolean
- (Updatable) Indicates whether the filter is hidden. Values can either be 'true' or 'false'.
- operator String
- (Updatable) Specifies the type of operator that must be applied for example in, eq etc.
- expressions string[]
- (Updatable) An array of expressions based on the operator type. A filter may have one or more expressions.
- fieldName string
- (Updatable) Name of the column on which the filter must be applied.
- isEnabled boolean
- (Updatable) Indicates whether the filter is enabled. Values can either be 'true' or 'false'.
- boolean
- (Updatable) Indicates whether the filter is hidden. Values can either be 'true' or 'false'.
- operator string
- (Updatable) Specifies the type of operator that must be applied for example in, eq etc.
- expressions Sequence[str]
- (Updatable) An array of expressions based on the operator type. A filter may have one or more expressions.
- field_name str
- (Updatable) Name of the column on which the filter must be applied.
- is_enabled bool
- (Updatable) Indicates whether the filter is enabled. Values can either be 'true' or 'false'.
- bool
- (Updatable) Indicates whether the filter is hidden. Values can either be 'true' or 'false'.
- operator str
- (Updatable) Specifies the type of operator that must be applied for example in, eq etc.
- expressions List<String>
- (Updatable) An array of expressions based on the operator type. A filter may have one or more expressions.
- fieldName String
- (Updatable) Name of the column on which the filter must be applied.
- isEnabled Boolean
- (Updatable) Indicates whether the filter is enabled. Values can either be 'true' or 'false'.
- Boolean
- (Updatable) Indicates whether the filter is hidden. Values can either be 'true' or 'false'.
- operator String
- (Updatable) Specifies the type of operator that must be applied for example in, eq etc.
ReportDefinitionColumnInfo, ReportDefinitionColumnInfoArgs        
- DisplayName string
- (Updatable) Name of the column displayed on UI.
- DisplayOrder int
- (Updatable) Specifies the display order of the column.
- FieldName string
- (Updatable) Specifies the corresponding field name in the data source.
- bool
- (Updatable) Indicates if the column is hidden. Values can either be 'true' or 'false'.
- DataType string
- (Updatable) Specifies the data type of the column.
- DisplayName string
- (Updatable) Name of the column displayed on UI.
- DisplayOrder int
- (Updatable) Specifies the display order of the column.
- FieldName string
- (Updatable) Specifies the corresponding field name in the data source.
- bool
- (Updatable) Indicates if the column is hidden. Values can either be 'true' or 'false'.
- DataType string
- (Updatable) Specifies the data type of the column.
- displayName String
- (Updatable) Name of the column displayed on UI.
- displayOrder Integer
- (Updatable) Specifies the display order of the column.
- fieldName String
- (Updatable) Specifies the corresponding field name in the data source.
- Boolean
- (Updatable) Indicates if the column is hidden. Values can either be 'true' or 'false'.
- dataType String
- (Updatable) Specifies the data type of the column.
- displayName string
- (Updatable) Name of the column displayed on UI.
- displayOrder number
- (Updatable) Specifies the display order of the column.
- fieldName string
- (Updatable) Specifies the corresponding field name in the data source.
- boolean
- (Updatable) Indicates if the column is hidden. Values can either be 'true' or 'false'.
- dataType string
- (Updatable) Specifies the data type of the column.
- display_name str
- (Updatable) Name of the column displayed on UI.
- display_order int
- (Updatable) Specifies the display order of the column.
- field_name str
- (Updatable) Specifies the corresponding field name in the data source.
- bool
- (Updatable) Indicates if the column is hidden. Values can either be 'true' or 'false'.
- data_type str
- (Updatable) Specifies the data type of the column.
- displayName String
- (Updatable) Name of the column displayed on UI.
- displayOrder Number
- (Updatable) Specifies the display order of the column.
- fieldName String
- (Updatable) Specifies the corresponding field name in the data source.
- Boolean
- (Updatable) Indicates if the column is hidden. Values can either be 'true' or 'false'.
- dataType String
- (Updatable) Specifies the data type of the column.
ReportDefinitionColumnSorting, ReportDefinitionColumnSortingArgs        
- FieldName string
- (Updatable) Name of the column that must be sorted.
- IsAscending bool
- (Updatable) Indicates if the column must be sorted in ascending order. Values can either be 'true' or 'false'.
- SortingOrder int
- (Updatable) Indicates the order at which column must be sorted.
- FieldName string
- (Updatable) Name of the column that must be sorted.
- IsAscending bool
- (Updatable) Indicates if the column must be sorted in ascending order. Values can either be 'true' or 'false'.
- SortingOrder int
- (Updatable) Indicates the order at which column must be sorted.
- fieldName String
- (Updatable) Name of the column that must be sorted.
- isAscending Boolean
- (Updatable) Indicates if the column must be sorted in ascending order. Values can either be 'true' or 'false'.
- sortingOrder Integer
- (Updatable) Indicates the order at which column must be sorted.
- fieldName string
- (Updatable) Name of the column that must be sorted.
- isAscending boolean
- (Updatable) Indicates if the column must be sorted in ascending order. Values can either be 'true' or 'false'.
- sortingOrder number
- (Updatable) Indicates the order at which column must be sorted.
- field_name str
- (Updatable) Name of the column that must be sorted.
- is_ascending bool
- (Updatable) Indicates if the column must be sorted in ascending order. Values can either be 'true' or 'false'.
- sorting_order int
- (Updatable) Indicates the order at which column must be sorted.
- fieldName String
- (Updatable) Name of the column that must be sorted.
- isAscending Boolean
- (Updatable) Indicates if the column must be sorted in ascending order. Values can either be 'true' or 'false'.
- sortingOrder Number
- (Updatable) Indicates the order at which column must be sorted.
ReportDefinitionSummary, ReportDefinitionSummaryArgs      
- DisplayOrder int
- (Updatable) Specifies the order in which the summary must be displayed.
- Name string
- (Updatable) Name of the report summary.
- CountOf string
- (Updatable) Name of the key or count of object.
- GroupBy stringField Name 
- (Updatable) A comma-delimited string that specifies the names of the fields by which the records must be aggregated to get the summary.
- bool
- (Updatable) Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- ScimFilter string
- (Updatable) Additional scim filters used to get the specific summary. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- DisplayOrder int
- (Updatable) Specifies the order in which the summary must be displayed.
- Name string
- (Updatable) Name of the report summary.
- CountOf string
- (Updatable) Name of the key or count of object.
- GroupBy stringField Name 
- (Updatable) A comma-delimited string that specifies the names of the fields by which the records must be aggregated to get the summary.
- bool
- (Updatable) Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- ScimFilter string
- (Updatable) Additional scim filters used to get the specific summary. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- displayOrder Integer
- (Updatable) Specifies the order in which the summary must be displayed.
- name String
- (Updatable) Name of the report summary.
- countOf String
- (Updatable) Name of the key or count of object.
- groupBy StringField Name 
- (Updatable) A comma-delimited string that specifies the names of the fields by which the records must be aggregated to get the summary.
- Boolean
- (Updatable) Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- scimFilter String
- (Updatable) Additional scim filters used to get the specific summary. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- displayOrder number
- (Updatable) Specifies the order in which the summary must be displayed.
- name string
- (Updatable) Name of the report summary.
- countOf string
- (Updatable) Name of the key or count of object.
- groupBy stringField Name 
- (Updatable) A comma-delimited string that specifies the names of the fields by which the records must be aggregated to get the summary.
- boolean
- (Updatable) Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- scimFilter string
- (Updatable) Additional scim filters used to get the specific summary. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- display_order int
- (Updatable) Specifies the order in which the summary must be displayed.
- name str
- (Updatable) Name of the report summary.
- count_of str
- (Updatable) Name of the key or count of object.
- group_by_ strfield_ name 
- (Updatable) A comma-delimited string that specifies the names of the fields by which the records must be aggregated to get the summary.
- bool
- (Updatable) Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- scim_filter str
- (Updatable) Additional scim filters used to get the specific summary. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- displayOrder Number
- (Updatable) Specifies the order in which the summary must be displayed.
- name String
- (Updatable) Name of the report summary.
- countOf String
- (Updatable) Name of the key or count of object.
- groupBy StringField Name 
- (Updatable) A comma-delimited string that specifies the names of the fields by which the records must be aggregated to get the summary.
- Boolean
- (Updatable) Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- scimFilter String
- (Updatable) Additional scim filters used to get the specific summary. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
Import
ReportDefinitions can be imported using the id, e.g.
$ pulumi import oci:DataSafe/reportDefinition:ReportDefinition test_report_definition "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.