// 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 AddExadataInsightMembersExample
    {
        public static async Task Main()
        {
            // Create a request and dependent object(s).
			var addExadataInsightMembersDetails = new Oci.OpsiService.Models.AddMacsManagedCloudExadataInsightMembersDetails
			{
				MemberEntityDetails = new List<Oci.OpsiService.Models.CreateMacsManagedCloudExadataVmclusterDetails>
				{
					new Oci.OpsiService.Models.CreateMacsManagedCloudExadataVmclusterDetails
					{
						MemberDatabaseDetails = new List<Oci.OpsiService.Models.CreateMacsManagedCloudDatabaseInsightDetails>
						{
							new Oci.OpsiService.Models.CreateMacsManagedCloudDatabaseInsightDetails
							{
								DatabaseId = "ocid1.test.oc1..<unique_ID>EXAMPLE-databaseId-Value",
								ManagementAgentId = "ocid1.test.oc1..<unique_ID>EXAMPLE-managementAgentId-Value",
								ConnectionDetails = new Oci.OpsiService.Models.ConnectionDetails
								{
									HostName = "EXAMPLE-hostName-Value",
									Protocol = Oci.OpsiService.Models.ConnectionDetails.ProtocolEnum.Tcp,
									Port = 41877,
									ServiceName = "EXAMPLE-serviceName-Value"
								},
								ConnectionCredentialDetails = new Oci.OpsiService.Models.CredentialByNamedCredentials
								{
									NamedCredentialId = "ocid1.test.oc1..<unique_ID>EXAMPLE-namedCredentialId-Value",
									CredentialSourceName = "EXAMPLE-credentialSourceName-Value"
								},
								DatabaseResourceType = "EXAMPLE-databaseResourceType-Value",
								DeploymentType = Oci.OpsiService.Models.CreateMacsManagedCloudDatabaseInsightDetails.DeploymentTypeEnum.VirtualMachine,
								SystemTags = new Dictionary<string, Dictionary<string, Object>>()
								{
									{
										"EXAMPLE_KEY_RzVYK", 
										new Dictionary<string, Object>()
										{
											{
												"EXAMPLE_KEY_jMRku", 
												"EXAMPLE--Value"
											}
										}
									}
								},
								CompartmentId = "ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
								FreeformTags = new Dictionary<string, string>()
								{
									{
										"EXAMPLE_KEY_8j62E", 
										"EXAMPLE_VALUE_IVausvUzHTRhJVjHeqqv"
									}
								},
								DefinedTags = new Dictionary<string, Dictionary<string, Object>>()
								{
									{
										"EXAMPLE_KEY_5HZ7C", 
										new Dictionary<string, Object>()
										{
											{
												"EXAMPLE_KEY_l2kNA", 
												"EXAMPLE--Value"
											}
										}
									}
								}
							}
						},
						MemberAutonomousDetails = new List<Oci.OpsiService.Models.CreateMacsManagedAutonomousDatabaseInsightDetails>
						{
							new Oci.OpsiService.Models.CreateMacsManagedAutonomousDatabaseInsightDetails
							{
								DatabaseId = "ocid1.test.oc1..<unique_ID>EXAMPLE-databaseId-Value",
								ManagementAgentId = "ocid1.test.oc1..<unique_ID>EXAMPLE-managementAgentId-Value",
								ConnectionDetails = new Oci.OpsiService.Models.ConnectionDetails
								{
									HostName = "EXAMPLE-hostName-Value",
									Protocol = Oci.OpsiService.Models.ConnectionDetails.ProtocolEnum.Tcp,
									Port = 31825,
									ServiceName = "EXAMPLE-serviceName-Value"
								},
								ConnectionCredentialDetails = new Oci.OpsiService.Models.CredentialByIam
								{
									CredentialSourceName = "EXAMPLE-credentialSourceName-Value"
								},
								DatabaseResourceType = "EXAMPLE-databaseResourceType-Value",
								DeploymentType = Oci.OpsiService.Models.CreateMacsManagedAutonomousDatabaseInsightDetails.DeploymentTypeEnum.Exacc,
								SystemTags = new Dictionary<string, Dictionary<string, Object>>()
								{
									{
										"EXAMPLE_KEY_Y9f2X", 
										new Dictionary<string, Object>()
										{
											{
												"EXAMPLE_KEY_BPKWE", 
												"EXAMPLE--Value"
											}
										}
									}
								},
								CompartmentId = "ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
								FreeformTags = new Dictionary<string, string>()
								{
									{
										"EXAMPLE_KEY_SpJBx", 
										"EXAMPLE_VALUE_GYFqG8mOOcma3bYUvPgy"
									}
								},
								DefinedTags = new Dictionary<string, Dictionary<string, Object>>()
								{
									{
										"EXAMPLE_KEY_fhE3G", 
										new Dictionary<string, Object>()
										{
											{
												"EXAMPLE_KEY_Cesok", 
												"EXAMPLE--Value"
											}
										}
									}
								}
							}
						},
						VmclusterId = "ocid1.test.oc1..<unique_ID>EXAMPLE-vmclusterId-Value",
						CompartmentId = "ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value"
					}
				}
			};
			var addExadataInsightMembersRequest = new Oci.OpsiService.Requests.AddExadataInsightMembersRequest
			{
				AddExadataInsightMembersDetails = addExadataInsightMembersDetails,
				ExadataInsightId = "ocid1.test.oc1..<unique_ID>EXAMPLE-exadataInsightId-Value",
				IfMatch = "EXAMPLE-ifMatch-Value",
				OpcRequestId = "MTUGMTFDASH0X6YULYX5<unique_ID>",
				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.AddExadataInsightMembers(addExadataInsightMembersRequest);
					// Retrieve value from the response.
					var versionValue = response.httpResponseMessage.Version;
				}
            }
            catch (Exception e)
            {
                Console.WriteLine($"AddExadataInsightMembers Failed with {e.Message}");
                throw e;
            }
        }

    }
}