// 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).
using System;
using System.Threading.Tasks;
using Oci.DatasafeService;
using Oci.Common;
using Oci.Common.Auth;
namespace Oci.Sdk.DotNet.Example.Datasafe
{
public class ListUserAnalyticsExample
{
public static async Task Main()
{
// Create a request and dependent object(s).
var listUserAnalyticsRequest = new Oci.DatasafeService.Requests.ListUserAnalyticsRequest
{
UserAssessmentId = "ocid1.test.oc1..<unique_ID>EXAMPLE-userAssessmentId-Value",
CompartmentIdInSubtree = false,
AccessLevel = Oci.DatasafeService.Requests.ListUserAnalyticsRequest.AccessLevelEnum.Restricted,
Limit = 511,
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 = DateTime.Parse("07/13/2006 05:18:39"),
TimeLastLoginLessThan = DateTime.Parse("05/13/2018 10:04:37"),
TimeUserCreatedGreaterThanOrEqualTo = DateTime.Parse("08/18/2022 09:13:09"),
TimeUserCreatedLessThan = DateTime.Parse("07/28/2023 17:55:22"),
TimePasswordLastChangedGreaterThanOrEqualTo = DateTime.Parse("12/21/2014 16:04:43"),
TimePasswordLastChangedLessThan = DateTime.Parse("08/11/2017 08:18:15"),
TimePasswordExpiryGreaterThanOrEqualTo = DateTime.Parse("12/11/2026 07:08:49"),
TimePasswordExpiryLessThan = DateTime.Parse("10/30/2044 02:32:32"),
Page = "EXAMPLE-page-Value",
SortOrder = Oci.DatasafeService.Requests.ListUserAnalyticsRequest.SortOrderEnum.Asc,
SortBy = Oci.DatasafeService.Requests.ListUserAnalyticsRequest.SortByEnum.TimeUserCreated,
OpcRequestId = "9PAD89TW5MIBEHFWUQ1S<unique_ID>"
};
// 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.
var provider = new ConfigFileAuthenticationDetailsProvider("DEFAULT");
try
{
// Create a service client and send the request.
using (var client = new DataSafeClient(provider, new ClientConfiguration()))
{
var response = await client.ListUserAnalytics(listUserAnalyticsRequest);
// Retrieve value from the response.
var userAggregationValueCount = response.Items.Count;
}
}
catch (Exception e)
{
Console.WriteLine($"ListUserAnalytics Failed with {e.Message}");
throw e;
}
}
}
}