// 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.Accessible,
				Limit = 788,
				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("10/04/2005 09:04:11"),
				TimeLastLoginLessThan = DateTime.Parse("02/11/2003 23:35:12"),
				TimeUserCreatedGreaterThanOrEqualTo = DateTime.Parse("04/18/2006 14:07:41"),
				TimeUserCreatedLessThan = DateTime.Parse("05/12/2010 17:25:46"),
				TimePasswordLastChangedGreaterThanOrEqualTo = DateTime.Parse("12/17/2018 22:22:00"),
				TimePasswordLastChangedLessThan = DateTime.Parse("12/26/2014 15:11:29"),
				TimePasswordExpiryGreaterThanOrEqualTo = DateTime.Parse("03/17/2030 01:55:58"),
				TimePasswordExpiryLessThan = DateTime.Parse("09/02/2026 04:44:40"),
				Page = "EXAMPLE-page-Value",
				SortOrder = Oci.DatasafeService.Requests.ListUserAnalyticsRequest.SortOrderEnum.Desc,
				SortBy = Oci.DatasafeService.Requests.ListUserAnalyticsRequest.SortByEnum.TimeLastLogin,
				OpcRequestId = "EXHOAI8BNOWNL3SRIW6N<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;
            }
        }

    }
}