// 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.OpsiService;
using Oci.Common;
using Oci.Common.Auth;

namespace Oci.Sdk.DotNet.Example.Opsi
{
    public class IngestMySqlSqlStatsExample
    {
        public static async Task Main()
        {
            // Create a request and dependent object(s).
			var ingestMySqlSqlStatsDetails = new Oci.OpsiService.Models.IngestMySqlSqlStatsDetails
			{
				Items = new List<Oci.OpsiService.Models.MySqlSqlStats>
				{
					new Oci.OpsiService.Models.MySqlSqlStats
					{
						Digest = "EXAMPLE-digest-Value",
						TimeCollected = DateTime.Parse("12/19/2007 04:48:44"),
						CommandType = "EXAMPLE-commandType-Value",
						TotalRows = 903,
						PerfSchemaUsedPercent = 753,
						SchemaName = "EXAMPLE-schemaName-Value",
						ExecCount = 999,
						TotalLatencyInPs = 136,
						LockLatencyInPs = 685,
						ErrCount = 744,
						WarnCount = 684,
						RowsAffected = 5,
						RowsSent = 937,
						RowsExamined = 747,
						TmpDiskTables = 224,
						TmpTables = 399,
						SelectFullJoin = 957,
						SelectFullRangeJoin = 247,
						SelectRange = 603,
						SelectRangeCheck = 475,
						SelectScan = 755,
						SortMergePasses = 607,
						SortRange = 619,
						RowsSorted = 374,
						SortScan = 877,
						NoIndexUsedCount = 103,
						NoGoodIndexUsedCount = 923,
						CpuLatencyInPs = 211,
						MaxControlledMemoryInBytes = 616,
						MaxTotalMemoryInBytes = 486,
						ExecCountSecondary = 658,
						TimeFirstSeen = DateTime.Parse("06/28/2039 20:15:29"),
						TimeLastSeen = DateTime.Parse("12/13/2006 14:23:42")
					}
				}
			};
			var ingestMySqlSqlStatsRequest = new Oci.OpsiService.Requests.IngestMySqlSqlStatsRequest
			{
				IngestMySqlSqlStatsDetails = ingestMySqlSqlStatsDetails,
				DatabaseId = "ocid1.test.oc1..<unique_ID>EXAMPLE-databaseId-Value",
				Id = "ocid1.test.oc1..<unique_ID>EXAMPLE-id-Value",
				OpcRequestId = "VTJWXVKN0ZIU00SPGTM6<unique_ID>",
				IfMatch = "EXAMPLE-ifMatch-Value",
				OpcRetryToken = "EXAMPLE-opcRetryToken-Value"
			};

            // 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 OperationsInsightsClient(provider, new ClientConfiguration()))
				{
					var response = await client.IngestMySqlSqlStats(ingestMySqlSqlStatsRequest);
					// Retrieve value from the response.
					var messageValue = response.IngestMySqlSqlStatsResponseDetails.Message;
				}
            }
            catch (Exception e)
            {
                Console.WriteLine($"IngestMySqlSqlStats Failed with {e.Message}");
                throw e;
            }
        }

    }
}