// 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 = 634,
				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("01/02/2025 01:10:37"),
				TimeLastLoginLessThan = DateTime.Parse("10/12/2047 22:29:39"),
				TimeUserCreatedGreaterThanOrEqualTo = DateTime.Parse("07/10/2047 14:11:10"),
				TimeUserCreatedLessThan = DateTime.Parse("07/15/2024 01:12:04"),
				TimePasswordLastChangedGreaterThanOrEqualTo = DateTime.Parse("11/06/2040 12:29:19"),
				TimePasswordLastChangedLessThan = DateTime.Parse("10/27/2008 03:49:10"),
				TimePasswordExpiryGreaterThanOrEqualTo = DateTime.Parse("10/10/2031 14:40:16"),
				TimePasswordExpiryLessThan = DateTime.Parse("08/15/2013 11:50:09"),
				Page = "EXAMPLE-page-Value",
				SortOrder = Oci.DatasafeService.Requests.ListUserAnalyticsRequest.SortOrderEnum.Asc,
				SortBy = Oci.DatasafeService.Requests.ListUserAnalyticsRequest.SortByEnum.TimeUserCreated,
				OpcRequestId = "AK63TMNSXLDZFMVC4BJS<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;
            }
        }

    }
}