Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi
oci.DataSafe.getReportDefinition
Explore with Pulumi AI
This data source provides details about a specific Report Definition resource in Oracle Cloud Infrastructure Data Safe service.
Gets the details of report definition specified by the identifier
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testReportDefinition = oci.DataSafe.getReportDefinition({
reportDefinitionId: testReportDefinitionOciDataSafeReportDefinition.id,
});
import pulumi
import pulumi_oci as oci
test_report_definition = oci.DataSafe.get_report_definition(report_definition_id=test_report_definition_oci_data_safe_report_definition["id"])
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.GetReportDefinition(ctx, &datasafe.GetReportDefinitionArgs{
ReportDefinitionId: testReportDefinitionOciDataSafeReportDefinition.Id,
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testReportDefinition = Oci.DataSafe.GetReportDefinition.Invoke(new()
{
ReportDefinitionId = testReportDefinitionOciDataSafeReportDefinition.Id,
});
});
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.GetReportDefinitionArgs;
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 testReportDefinition = DataSafeFunctions.getReportDefinition(GetReportDefinitionArgs.builder()
.reportDefinitionId(testReportDefinitionOciDataSafeReportDefinition.id())
.build());
}
}
variables:
testReportDefinition:
fn::invoke:
Function: oci:DataSafe:getReportDefinition
Arguments:
reportDefinitionId: ${testReportDefinitionOciDataSafeReportDefinition.id}
Using getReportDefinition
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 getReportDefinition(args: GetReportDefinitionArgs, opts?: InvokeOptions): Promise<GetReportDefinitionResult>
function getReportDefinitionOutput(args: GetReportDefinitionOutputArgs, opts?: InvokeOptions): Output<GetReportDefinitionResult>
def get_report_definition(report_definition_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetReportDefinitionResult
def get_report_definition_output(report_definition_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetReportDefinitionResult]
func GetReportDefinition(ctx *Context, args *GetReportDefinitionArgs, opts ...InvokeOption) (*GetReportDefinitionResult, error)
func GetReportDefinitionOutput(ctx *Context, args *GetReportDefinitionOutputArgs, opts ...InvokeOption) GetReportDefinitionResultOutput
> Note: This function is named GetReportDefinition
in the Go SDK.
public static class GetReportDefinition
{
public static Task<GetReportDefinitionResult> InvokeAsync(GetReportDefinitionArgs args, InvokeOptions? opts = null)
public static Output<GetReportDefinitionResult> Invoke(GetReportDefinitionInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetReportDefinitionResult> getReportDefinition(GetReportDefinitionArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:DataSafe/getReportDefinition:getReportDefinition
arguments:
# arguments dictionary
The following arguments are supported:
- Report
Definition stringId - Unique report definition identifier
- Report
Definition stringId - Unique report definition identifier
- report
Definition StringId - Unique report definition identifier
- report
Definition stringId - Unique report definition identifier
- report_
definition_ strid - Unique report definition identifier
- report
Definition StringId - Unique report definition identifier
getReportDefinition Result
The following output properties are available:
- Category string
- Specifies the name of the category that this report belongs to.
- Column
Filters List<GetReport Definition Column Filter> - 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 List<GetReport Definition Column Info> - 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 List<GetReport Definition Column Sorting> - 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 string - The OCID of the compartment containing the report definition.
- Compliance
Standards List<string> - The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
- Data
Source string - Specifies the name of a resource that provides data for the report. For example alerts, events.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- Description string
- A description of the report definition.
- Display
Name string - Name of the report definition.
- Display
Order int - Specifies the order in which the summary must be displayed.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- Id string
- The OCID of the report definition.
- Is
Seeded bool - Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
- Lifecycle
Details string - Details about the current state of the report definition in Data Safe.
- Parent
Id string - The OCID of the parent report definition. In the case of seeded report definition, this is same as definition OCID.
- Record
Time 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)
- Report
Definition stringId - Schedule string
- The schedule to generate the report periodically in the specified format: ;
- Scheduled
Report stringCompartment Id - The OCID of the compartment in which the scheduled resource will be created.
- Scheduled
Report stringMime Type - Specifies the format of the report ( either .xls or .pdf or .json)
- Scheduled
Report stringName - 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 string - Additional scim filters used to get the specific summary.
- State string
- The current state of the report.
- Summaries
List<Get
Report Definition Summary> - 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"}
- Time
Created string - Specifies the date and time the report definition was created.
- Time
Updated string - The date and time the report definition was updated.
- Category string
- Specifies the name of the category that this report belongs to.
- Column
Filters []GetReport Definition Column Filter - 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 []GetReport Definition Column Info - 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 []GetReport Definition Column Sorting - 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 string - The OCID of the compartment containing the report definition.
- Compliance
Standards []string - The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
- Data
Source string - Specifies the name of a resource that provides data for the report. For example alerts, events.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- Description string
- A description of the report definition.
- Display
Name string - Name of the report definition.
- Display
Order int - Specifies the order in which the summary must be displayed.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- Id string
- The OCID of the report definition.
- Is
Seeded bool - Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
- Lifecycle
Details string - Details about the current state of the report definition in Data Safe.
- Parent
Id string - The OCID of the parent report definition. In the case of seeded report definition, this is same as definition OCID.
- Record
Time 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)
- Report
Definition stringId - Schedule string
- The schedule to generate the report periodically in the specified format: ;
- Scheduled
Report stringCompartment Id - The OCID of the compartment in which the scheduled resource will be created.
- Scheduled
Report stringMime Type - Specifies the format of the report ( either .xls or .pdf or .json)
- Scheduled
Report stringName - 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 string - Additional scim filters used to get the specific summary.
- State string
- The current state of the report.
- Summaries
[]Get
Report Definition Summary - 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"}
- Time
Created string - Specifies the date and time the report definition was created.
- Time
Updated string - The date and time the report definition was updated.
- category String
- Specifies the name of the category that this report belongs to.
- column
Filters List<GetReport Definition Column Filter> - 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 List<GetReport Definition Column Info> - 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 List<GetReport Definition Column Sorting> - 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 String - The OCID of the compartment containing the report definition.
- compliance
Standards List<String> - The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
- data
Source String - Specifies the name of a resource that provides data for the report. For example alerts, events.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- description String
- A description of the report definition.
- display
Name String - Name of the report definition.
- display
Order Integer - Specifies the order in which the summary must be displayed.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- id String
- The OCID of the report definition.
- is
Seeded Boolean - Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
- lifecycle
Details String - Details about the current state of the report definition in Data Safe.
- parent
Id String - The OCID of the parent report definition. In the case of seeded report definition, this is same as definition OCID.
- record
Time 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)
- report
Definition StringId - schedule String
- The schedule to generate the report periodically in the specified format: ;
- scheduled
Report StringCompartment Id - The OCID of the compartment in which the scheduled resource will be created.
- scheduled
Report StringMime Type - Specifies the format of the report ( either .xls or .pdf or .json)
- scheduled
Report StringName - The name of the report to be scheduled.
- scheduled
Report IntegerRow Limit - Specifies the limit on the number of rows in the report.
- scim
Filter String - Additional scim filters used to get the specific summary.
- state String
- The current state of the report.
- summaries
List<Get
Report Definition Summary> - 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"}
- time
Created String - Specifies the date and time the report definition was created.
- time
Updated String - The date and time the report definition was updated.
- category string
- Specifies the name of the category that this report belongs to.
- column
Filters GetReport Definition Column Filter[] - 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 GetReport Definition Column Info[] - 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 GetReport Definition Column Sorting[] - 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 string - The OCID of the compartment containing the report definition.
- compliance
Standards string[] - The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
- data
Source string - Specifies the name of a resource that provides data for the report. For example alerts, events.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- description string
- A description of the report definition.
- display
Name string - Name of the report definition.
- display
Order number - Specifies the order in which the summary must be displayed.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- id string
- The OCID of the report definition.
- is
Seeded boolean - Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
- lifecycle
Details string - Details about the current state of the report definition in Data Safe.
- parent
Id string - The OCID of the parent report definition. In the case of seeded report definition, this is same as definition OCID.
- record
Time 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)
- report
Definition stringId - schedule string
- The schedule to generate the report periodically in the specified format: ;
- scheduled
Report stringCompartment Id - The OCID of the compartment in which the scheduled resource will be created.
- scheduled
Report stringMime Type - Specifies the format of the report ( either .xls or .pdf or .json)
- scheduled
Report stringName - The name of the report to be scheduled.
- scheduled
Report numberRow Limit - Specifies the limit on the number of rows in the report.
- scim
Filter string - Additional scim filters used to get the specific summary.
- state string
- The current state of the report.
- summaries
Get
Report Definition Summary[] - 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"}
- time
Created string - Specifies the date and time the report definition was created.
- time
Updated 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[datasafe.Get Report Definition Column Filter] - 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 Sequence[datasafe.Get Report Definition Column Info] - 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[datasafe.Get Report Definition Column Sorting] - 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 - 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]
- 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
- A description of the report definition.
- display_
name str - Name of the report definition.
- display_
order int - Specifies the order in which the summary must be displayed.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- id str
- The OCID of the report definition.
- 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. In the case of seeded report definition, this is same as definition OCID.
- 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)
- report_
definition_ strid - 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[datasafe.
Get Report Definition Summary] - 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.
- column
Filters 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.
- column
Infos 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).
- column
Sortings 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.
- compartment
Id String - The OCID of the compartment containing the report definition.
- compliance
Standards List<String> - The list of the data protection regulations/standards used in the report that will help demonstrate compliance.
- data
Source String - Specifies the name of a resource that provides data for the report. For example alerts, events.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- description String
- A description of the report definition.
- display
Name String - Name of the report definition.
- display
Order Number - Specifies the order in which the summary must be displayed.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- id String
- The OCID of the report definition.
- is
Seeded Boolean - Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.
- lifecycle
Details String - Details about the current state of the report definition in Data Safe.
- parent
Id String - The OCID of the parent report definition. In the case of seeded report definition, this is same as definition OCID.
- record
Time 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)
- report
Definition StringId - schedule String
- The schedule to generate the report periodically in the specified format: ;
- scheduled
Report StringCompartment Id - The OCID of the compartment in which the scheduled resource will be created.
- scheduled
Report StringMime Type - Specifies the format of the report ( either .xls or .pdf or .json)
- scheduled
Report StringName - The name of the report to be scheduled.
- scheduled
Report NumberRow Limit - Specifies the limit on the number of rows in the report.
- scim
Filter String - Additional scim filters used to get the specific summary.
- state String
- The current state of the report.
- summaries 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).
- 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"}
- time
Created String - Specifies the date and time the report definition was created.
- time
Updated String - The date and time the report definition was updated.
Supporting Types
GetReportDefinitionColumnFilter
- Expressions List<string>
- An array of expressions based on the operator type. A filter may have one or more expressions.
- Field
Name string - Name of the column that must be sorted.
- Is
Enabled bool - Indicates whether the filter is enabled. Values can either be 'true' or 'false'.
- bool
- Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- Operator string
- Specifies the type of operator that must be applied for example in, eq etc.
- Expressions []string
- An array of expressions based on the operator type. A filter may have one or more expressions.
- Field
Name string - Name of the column that must be sorted.
- Is
Enabled bool - Indicates whether the filter is enabled. Values can either be 'true' or 'false'.
- bool
- Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- Operator string
- Specifies the type of operator that must be applied for example in, eq etc.
- expressions List<String>
- An array of expressions based on the operator type. A filter may have one or more expressions.
- field
Name String - Name of the column that must be sorted.
- is
Enabled Boolean - Indicates whether the filter is enabled. Values can either be 'true' or 'false'.
- Boolean
- Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- operator String
- Specifies the type of operator that must be applied for example in, eq etc.
- expressions string[]
- An array of expressions based on the operator type. A filter may have one or more expressions.
- field
Name string - Name of the column that must be sorted.
- is
Enabled boolean - Indicates whether the filter is enabled. Values can either be 'true' or 'false'.
- boolean
- Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- operator string
- Specifies the type of operator that must be applied for example in, eq etc.
- expressions Sequence[str]
- An array of expressions based on the operator type. A filter may have one or more expressions.
- field_
name str - Name of the column that must be sorted.
- is_
enabled bool - Indicates whether the filter is enabled. Values can either be 'true' or 'false'.
- bool
- Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- operator str
- Specifies the type of operator that must be applied for example in, eq etc.
- expressions List<String>
- An array of expressions based on the operator type. A filter may have one or more expressions.
- field
Name String - Name of the column that must be sorted.
- is
Enabled Boolean - Indicates whether the filter is enabled. Values can either be 'true' or 'false'.
- Boolean
- Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- operator String
- Specifies the type of operator that must be applied for example in, eq etc.
GetReportDefinitionColumnInfo
- Data
Type string - Specifies the data type of the column.
- Display
Name string - Name of the report definition.
- Display
Order int - Specifies the order in which the summary must be displayed.
- Field
Name string - Name of the column that must be sorted.
- bool
- Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- Data
Type string - Specifies the data type of the column.
- Display
Name string - Name of the report definition.
- Display
Order int - Specifies the order in which the summary must be displayed.
- Field
Name string - Name of the column that must be sorted.
- bool
- Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- data
Type String - Specifies the data type of the column.
- display
Name String - Name of the report definition.
- display
Order Integer - Specifies the order in which the summary must be displayed.
- field
Name String - Name of the column that must be sorted.
- Boolean
- Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- data
Type string - Specifies the data type of the column.
- display
Name string - Name of the report definition.
- display
Order number - Specifies the order in which the summary must be displayed.
- field
Name string - Name of the column that must be sorted.
- boolean
- Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- data_
type str - Specifies the data type of the column.
- display_
name str - Name of the report definition.
- display_
order int - Specifies the order in which the summary must be displayed.
- field_
name str - Name of the column that must be sorted.
- bool
- Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- data
Type String - Specifies the data type of the column.
- display
Name String - Name of the report definition.
- display
Order Number - Specifies the order in which the summary must be displayed.
- field
Name String - Name of the column that must be sorted.
- Boolean
- Indicates if the summary is hidden. Values can either be 'true' or 'false'.
GetReportDefinitionColumnSorting
- Field
Name string - Name of the column that must be sorted.
- Is
Ascending bool - Indicates if the column must be sorted in ascending order. Values can either be 'true' or 'false'.
- Sorting
Order int - Indicates the order at which column must be sorted.
- Field
Name string - Name of the column that must be sorted.
- Is
Ascending bool - Indicates if the column must be sorted in ascending order. Values can either be 'true' or 'false'.
- Sorting
Order int - Indicates the order at which column must be sorted.
- field
Name String - Name of the column that must be sorted.
- is
Ascending Boolean - Indicates if the column must be sorted in ascending order. Values can either be 'true' or 'false'.
- sorting
Order Integer - Indicates the order at which column must be sorted.
- field
Name string - Name of the column that must be sorted.
- is
Ascending boolean - Indicates if the column must be sorted in ascending order. Values can either be 'true' or 'false'.
- sorting
Order number - Indicates the order at which column must be sorted.
- field_
name str - Name of the column that must be sorted.
- is_
ascending bool - Indicates if the column must be sorted in ascending order. Values can either be 'true' or 'false'.
- sorting_
order int - Indicates the order at which column must be sorted.
- field
Name String - Name of the column that must be sorted.
- is
Ascending Boolean - Indicates if the column must be sorted in ascending order. Values can either be 'true' or 'false'.
- sorting
Order Number - Indicates the order at which column must be sorted.
GetReportDefinitionSummary
- Count
Of string - Name of the key or count of object.
- Display
Order int - Specifies the order in which the summary must be displayed.
- Group
By stringField Name - A comma-delimited string that specifies the names of the fields by which the records must be aggregated to get the summary.
- bool
- Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- Name string
- Name of the report summary.
- Scim
Filter string - Additional scim filters used to get the specific summary.
- Count
Of string - Name of the key or count of object.
- Display
Order int - Specifies the order in which the summary must be displayed.
- Group
By stringField Name - A comma-delimited string that specifies the names of the fields by which the records must be aggregated to get the summary.
- bool
- Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- Name string
- Name of the report summary.
- Scim
Filter string - Additional scim filters used to get the specific summary.
- count
Of String - Name of the key or count of object.
- display
Order Integer - Specifies the order in which the summary must be displayed.
- group
By StringField Name - A comma-delimited string that specifies the names of the fields by which the records must be aggregated to get the summary.
- Boolean
- Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- name String
- Name of the report summary.
- scim
Filter String - Additional scim filters used to get the specific summary.
- count
Of string - Name of the key or count of object.
- display
Order number - Specifies the order in which the summary must be displayed.
- group
By stringField Name - A comma-delimited string that specifies the names of the fields by which the records must be aggregated to get the summary.
- boolean
- Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- name string
- Name of the report summary.
- scim
Filter string - Additional scim filters used to get the specific summary.
- count_
of str - Name of the key or count of object.
- display_
order int - Specifies the order in which the summary must be displayed.
- group_
by_ strfield_ name - A comma-delimited string that specifies the names of the fields by which the records must be aggregated to get the summary.
- bool
- Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- name str
- Name of the report summary.
- scim_
filter str - Additional scim filters used to get the specific summary.
- count
Of String - Name of the key or count of object.
- display
Order Number - Specifies the order in which the summary must be displayed.
- group
By StringField Name - A comma-delimited string that specifies the names of the fields by which the records must be aggregated to get the summary.
- Boolean
- Indicates if the summary is hidden. Values can either be 'true' or 'false'.
- name String
- Name of the report summary.
- scim
Filter 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.