// 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.Collections.Generic;
using System.Threading.Tasks;
using Oci.CloudguardService;
using Oci.Common;
using Oci.Common.Auth;

namespace Oci.Sdk.DotNet.Example.Cloudguard
{
    public class ListProblemsExample
    {
        public static async Task Main()
        {
            // Create a request and dependent object(s).
			var listProblemsRequest = new Oci.CloudguardService.Requests.ListProblemsRequest
			{
				CompartmentId = "ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
				TimeLastDetectedGreaterThanOrEqualTo = DateTime.Parse("07/19/2014 15:12:57"),
				TimeLastDetectedLessThanOrEqualTo = DateTime.Parse("05/17/2004 03:13:53"),
				TimeFirstDetectedGreaterThanOrEqualTo = DateTime.Parse("04/14/2009 11:39:32"),
				TimeFirstDetectedLessThanOrEqualTo = DateTime.Parse("04/29/2037 12:28:18"),
				LifecycleDetail = Oci.CloudguardService.Models.ProblemLifecycleDetail.Open,
				LifecycleState = Oci.CloudguardService.Models.ProblemLifecycleState.Inactive,
				Region = "EXAMPLE-region-Value",
				RiskLevel = "EXAMPLE-riskLevel-Value",
				ResourceType = "EXAMPLE-resourceType-Value",
				City = "EXAMPLE-city-Value",
				State = "EXAMPLE-state-Value",
				Country = "EXAMPLE-country-Value",
				Label = "EXAMPLE-label-Value",
				DetectorRuleIdList = new List<string>
				{
					"EXAMPLE--Value"
				},
				DetectorType = Oci.CloudguardService.Models.DetectorEnum.IaasConfigurationDetector,
				TargetId = "ocid1.test.oc1..<unique_ID>EXAMPLE-targetId-Value",
				ProblemCategory = Oci.CloudguardService.Models.ProblemCategoryEnum.SecurityZone,
				CompartmentIdInSubtree = true,
				AccessLevel = Oci.CloudguardService.Requests.ListProblemsRequest.AccessLevelEnum.Restricted,
				ResourceId = "ocid1.test.oc1..<unique_ID>EXAMPLE-resourceId-Value",
				Limit = 684,
				Page = "EXAMPLE-page-Value",
				SortOrder = Oci.CloudguardService.Models.SortOrders.Desc,
				SortBy = Oci.CloudguardService.Requests.ListProblemsRequest.SortByEnum.ResourceName,
				OpcRequestId = "BDGQIMPLGSWLXH2CXJHR<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 CloudGuardClient(provider, new ClientConfiguration()))
				{
					var response = await client.ListProblems(listProblemsRequest);
					// Retrieve value from the response.
					var itemsValue = response.ProblemCollection.Items;
				}
            }
            catch (Exception e)
            {
                Console.WriteLine($"ListProblems Failed with {e.Message}");
                throw e;
            }
        }

    }
}