// 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 listUserAnalyticsRequest: datasafe.requests.ListUserAnalyticsRequest = {
userAssessmentId: "ocid1.test.oc1..<unique_ID>EXAMPLE-userAssessmentId-Value",
compartmentIdInSubtree: true,
accessLevel: datasafe.requests.ListUserAnalyticsRequest.AccessLevel.Restricted,
limit: 204,
userCategory: "EXAMPLE-userCategory-Value",
userKey: "EXAMPLE-userKey-Value",
accountStatus: "EXAMPLE-accountStatus-Value",
authenticationType: "EXAMPLE-authenticationType-Value",
userName: "EXAMPLE-userName-Value",
targetId: "ocid1.test.oc1..<unique_ID>EXAMPLE-targetId-Value",
timeLastLoginGreaterThanOrEqualTo: new Date("Mon Jun 13 09:40:04 UTC 2005"),
timeLastLoginLessThan: new Date("Tue Nov 29 04:52:43 UTC 2039"),
timeUserCreatedGreaterThanOrEqualTo: new Date("Mon Jul 24 06:11:47 UTC 2028"),
timeUserCreatedLessThan: new Date("Tue May 08 14:38:41 UTC 2018"),
timePasswordLastChangedGreaterThanOrEqualTo: new Date("Tue Jun 30 16:10:08 UTC 2048"),
timePasswordLastChangedLessThan: new Date("Tue Mar 24 22:55:10 UTC 2015"),
timePasswordExpiryGreaterThanOrEqualTo: new Date("Thu Mar 25 09:52:22 UTC 2032"),
timePasswordExpiryLessThan: new Date("Sun Aug 02 04:02:58 UTC 2009"),
page: "EXAMPLE-page-Value",
sortOrder: datasafe.requests.ListUserAnalyticsRequest.SortOrder.Asc,
sortBy: datasafe.requests.ListUserAnalyticsRequest.SortBy.UserName,
opcRequestId: "LST6QFJCNLO6L2MH0HAI<unique_ID>",
};
// Send request to the Client.
const listUserAnalyticsResponse = await client.listUserAnalytics(listUserAnalyticsRequest);
}
catch (error) {
console.log("listUserAnalytics Failed with error " + error);
}
})();