// 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).
import * as datasafe from "oci-datasafe";
import common = require("oci-common");
// 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.
const provider: common.ConfigFileAuthenticationDetailsProvider = new common.ConfigFileAuthenticationDetailsProvider();
(async () => {
try {
// Create a service client
const client = new datasafe.DataSafeClient({ authenticationDetailsProvider: provider });
// Create a request and dependent object(s).
const createReportDefinitionDetails = {
compartmentId: "ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
displayName: "EXAMPLE-displayName-Value",
parentId: "ocid1.test.oc1..<unique_ID>EXAMPLE-parentId-Value",
description: "EXAMPLE-description-Value",
columnInfo: [{
displayName: "EXAMPLE-displayName-Value",
fieldName: "EXAMPLE-fieldName-Value",
dataType: "EXAMPLE-dataType-Value",
isHidden: false,
displayOrder: 283,
isVirtual: false,
applicableOperators: [datasafe.models.Column.ApplicableOperators.Or ],
}
],
columnFilters: [{
fieldName: "EXAMPLE-fieldName-Value",
operator: datasafe.models.ColumnFilter.Operator.EqCs,
expressions: ["EXAMPLE--Value" ],
isEnabled: false,
isHidden: true,
}
],
columnSortings: [{
fieldName: "EXAMPLE-fieldName-Value",
isAscending: false,
sortingOrder: 696,
}
],
summary: [{
name: "EXAMPLE-name-Value",
isHidden: true,
displayOrder: 324,
groupByFieldName: "EXAMPLE-groupByFieldName-Value",
countOf: "EXAMPLE-countOf-Value",
scimFilter: "EXAMPLE-scimFilter-Value",
}
],
freeformTags: {
EXAMPLE_KEY_78uHL :"EXAMPLE_VALUE_1FBwpPL9k9gmw3PEO5dv"
},
definedTags: {
EXAMPLE_KEY_LwfrB :{
EXAMPLE_KEY_NF6kP :"EXAMPLE--Value"
}
},
}
const createReportDefinitionRequest: datasafe.requests.CreateReportDefinitionRequest = {
createReportDefinitionDetails: createReportDefinitionDetails,
opcRetryToken: "EXAMPLE-opcRetryToken-Value",
opcRequestId: "WADPKXNA3USHJK2IKTRM<unique_ID>",
};
// Send request to the Client.
const createReportDefinitionResponse = await client.createReportDefinition(createReportDefinitionRequest);
}
catch (error) {
console.log("createReportDefinition Failed with error " + error);
}
})();