// This is an automatically generated code sample.
// To make this code sample work in your Oracle Cloud tenancy,
// please replace the values for any parameters whose current values do not fit
// your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
// boolean, number, and enum parameters with values not fitting your use case).

package main

import (
	"context"
	"fmt"

	"github.com/oracle/oci-go-sdk/v65/common"
	"github.com/oracle/oci-go-sdk/v65/datasafe"
	"github.com/oracle/oci-go-sdk/v65/example/helpers"
)

func ExampleCreateReportDefinition() {
	// Create a default authentication provider that uses the DEFAULT
	// profile in the configuration file.
	// Refer to <see href="https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File>the public documentation</see> on how to prepare a configuration file.
	client, err := datasafe.NewDataSafeClientWithConfigurationProvider(common.DefaultConfigProvider())
	helpers.FatalIfError(err)

	// Create a request and dependent object(s).

	req := datasafe.CreateReportDefinitionRequest{CreateReportDefinitionDetails: datasafe.CreateReportDefinitionDetails{DisplayName: common.String("EXAMPLE-displayName-Value"),
		FreeformTags: map[string]string{"EXAMPLE_KEY_ipAvv": "EXAMPLE_VALUE_4YHqk4wrSMBNWlJIeO1E"},
		ColumnSortings: []datasafe.ColumnSorting{datasafe.ColumnSorting{FieldName: common.String("EXAMPLE-fieldName-Value"),
			IsAscending:  common.Bool(false),
			SortingOrder: common.Int(581)}},
		CompartmentId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value"),
		DefinedTags:   map[string]map[string]interface{}{"EXAMPLE_KEY_sjEqP": map[string]interface{}{"EXAMPLE_KEY_NUx4n": "EXAMPLE--Value"}},
		ParentId:      common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-parentId-Value"),
		Summary: []datasafe.Summary{datasafe.Summary{DisplayOrder: common.Int(47),
			GroupByFieldName: common.String("EXAMPLE-groupByFieldName-Value"),
			IsHidden:         common.Bool(false),
			Name:             common.String("EXAMPLE-name-Value"),
			ScimFilter:       common.String("EXAMPLE-scimFilter-Value"),
			CountOf:          common.String("EXAMPLE-countOf-Value")}},
		ColumnFilters: []datasafe.ColumnFilter{datasafe.ColumnFilter{IsEnabled: common.Bool(true),
			IsHidden:    common.Bool(false),
			Operator:    datasafe.ColumnFilterOperatorNe,
			Expressions: []string{"EXAMPLE--Value"},
			FieldName:   common.String("EXAMPLE-fieldName-Value")}},
		ColumnInfo: []datasafe.Column{datasafe.Column{DataType: common.String("EXAMPLE-dataType-Value"),
			DisplayName:  common.String("EXAMPLE-displayName-Value"),
			DisplayOrder: common.Int(611),
			FieldName:    common.String("EXAMPLE-fieldName-Value"),
			IsHidden:     common.Bool(false)}},
		Description: common.String("EXAMPLE-description-Value")},
		OpcRequestId:  common.String("DR0VTAGTINCNWRITHLDW<unique_ID>"),
		OpcRetryToken: common.String("EXAMPLE-opcRetryToken-Value")}

	// Send the request using the service client
	resp, err := client.CreateReportDefinition(context.Background(), req)
	helpers.FatalIfError(err)

	// Retrieve value from the response.
	fmt.Println(resp)
}