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

namespace Oci.Sdk.DotNet.Example.Stackmonitoring
{
    public class CreateDiscoveryJobExample
    {
        public static async Task Main()
        {
            // Create a request and dependent object(s).
			var createDiscoveryJobDetails = new Oci.StackmonitoringService.Models.CreateDiscoveryJobDetails
			{
				DiscoveryType = Oci.StackmonitoringService.Models.CreateDiscoveryJobDetails.DiscoveryTypeEnum.AddWithRetry,
				DiscoveryClient = "EXAMPLE-discoveryClient-Value",
				CompartmentId = "ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
				DiscoveryDetails = new Oci.StackmonitoringService.Models.DiscoveryDetails
				{
					AgentId = "ocid1.test.oc1..<unique_ID>EXAMPLE-agentId-Value",
					ResourceType = Oci.StackmonitoringService.Models.DiscoveryDetails.ResourceTypeEnum.OciOracleDb,
					ResourceName = "EXAMPLE-resourceName-Value",
					License = Oci.StackmonitoringService.Models.LicenseType.EnterpriseEdition,
					Properties = new Oci.StackmonitoringService.Models.PropertyDetails
					{
						PropertiesMap = new Dictionary<string, string>()
						{
							{
								"EXAMPLE_KEY_iORQ7", 
								"EXAMPLE_VALUE_OM6FwII9KAKioIuwjgF0"
							}
						}
					},
					Credentials = new Oci.StackmonitoringService.Models.CredentialCollection
					{
						Items = new List<Oci.StackmonitoringService.Models.CredentialDetails>
						{
							new Oci.StackmonitoringService.Models.CredentialDetails
							{
								CredentialName = "EXAMPLE-credentialName-Value",
								CredentialType = "EXAMPLE-credentialType-Value",
							}
						}
					},
				},
				ShouldPropagateTagsToDiscoveredResources = false,
				FreeformTags = new Dictionary<string, string>()
				{
					{
						"EXAMPLE_KEY_Q6RAV", 
						"EXAMPLE_VALUE_uwssA7qr3Rfdi2nexAQg"
					}
				},
				DefinedTags = new Dictionary<string, Dictionary<string, Object>>()
				{
					{
						"EXAMPLE_KEY_vfns5", 
						new Dictionary<string, Object>()
						{
							{
								"EXAMPLE_KEY_8ksQx", 
								"EXAMPLE--Value"
							}
						}
					}
				}
			};
			var createDiscoveryJobRequest = new Oci.StackmonitoringService.Requests.CreateDiscoveryJobRequest
			{
				CreateDiscoveryJobDetails = createDiscoveryJobDetails,
				OpcRequestId = "XM0MH7BFZNGL7VKUNKTK<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 StackMonitoringClient(provider, new ClientConfiguration()))
				{
					var response = await client.CreateDiscoveryJob(createDiscoveryJobRequest);
					// Retrieve value from the response.
					var id = response.DiscoveryJob.Id;
				}
            }
            catch (Exception e)
            {
                Console.WriteLine($"CreateDiscoveryJob Failed with {e.Message}");
                throw e;
            }
        }

    }
}