// 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 = true,
AccessLevel = Oci.DatasafeService.Requests.ListUserAnalyticsRequest.AccessLevelEnum.Restricted,
Limit = 246,
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("11/08/2003 02:28:38"),
TimeLastLoginLessThan = DateTime.Parse("02/13/2031 23:23:10"),
TimeUserCreatedGreaterThanOrEqualTo = DateTime.Parse("02/14/2039 05:32:57"),
TimeUserCreatedLessThan = DateTime.Parse("08/09/2035 19:14:27"),
TimePasswordLastChangedGreaterThanOrEqualTo = DateTime.Parse("07/26/2044 20:30:45"),
TimePasswordLastChangedLessThan = DateTime.Parse("04/21/2001 06:35:11"),
TimePasswordExpiryGreaterThanOrEqualTo = DateTime.Parse("09/21/2048 08:28:07"),
TimePasswordExpiryLessThan = DateTime.Parse("09/19/2048 20:50:54"),
Page = "EXAMPLE-page-Value",
SortOrder = Oci.DatasafeService.Requests.ListUserAnalyticsRequest.SortOrderEnum.Asc,
SortBy = Oci.DatasafeService.Requests.ListUserAnalyticsRequest.SortByEnum.AuthenticationType,
OpcRequestId = "OL6LS8RABOEVQCNOE7SG<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;
}
}
}
}