// 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: false,
      accessLevel: datasafe.requests.ListUserAnalyticsRequest.AccessLevel.Accessible,
      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("Sun Feb 23 23:29:57 UTC 2020"),
      timeLastLoginLessThan: new Date("Mon Feb 09 20:23:42 UTC 2026"),
      timeUserCreatedGreaterThanOrEqualTo: new Date("Sat Dec 20 18:03:11 UTC 2014"),
      timeUserCreatedLessThan: new Date("Sun Jun 28 03:57:36 UTC 2043"),
      timePasswordLastChangedGreaterThanOrEqualTo: new Date("Tue Mar 17 20:50:24 UTC 2026"),
      timePasswordLastChangedLessThan: new Date("Mon May 15 22:39:47 UTC 2000"),
      page: "EXAMPLE-page-Value",
      sortOrder: datasafe.requests.ListUserAnalyticsRequest.SortOrder.Desc,
      sortBy: datasafe.requests.ListUserAnalyticsRequest.SortBy.AccountStatus,
      opcRequestId: "1N19PDI3ZYHXFE8DSNIQ<unique_ID>"
    };

    // Send request to the Client.
    const listUserAnalyticsResponse = await client.listUserAnalytics(listUserAnalyticsRequest);
  } catch (error) {
    console.log("listUserAnalytics Failed with error  " + error);
  }
})();