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

namespace Oci.Sdk.DotNet.Example.Jms
{
    public class CreateTaskScheduleExample
    {
        public static async Task Main()
        {
            // Create a request and dependent object(s).
			var createTaskScheduleDetails = new Oci.JmsService.Models.CreateTaskScheduleDetails
			{
				FleetId = "ocid1.test.oc1..<unique_ID>EXAMPLE-fleetId-Value",
				ExecutionRecurrences = "EXAMPLE-executionRecurrences-Value",
				TaskDetails = new Oci.JmsService.Models.AddInstallationSiteTaskDetails
				{
					AddInstallationSiteTaskRequest = new Oci.JmsService.Models.AddFleetInstallationSitesDetails
					{
						InstallationSites = new List<Oci.JmsService.Models.NewInstallationSite>
						{
							new Oci.JmsService.Models.NewInstallationSite
							{
								ManagedInstanceId = "ocid1.test.oc1..<unique_ID>EXAMPLE-managedInstanceId-Value",
								ReleaseVersion = "EXAMPLE-releaseVersion-Value",
								ArtifactContentType = Oci.JmsService.Models.ArtifactContentType.ServerJre,
								InstallationPath = "EXAMPLE-installationPath-Value",
								HeadlessMode = false,
								ForceInstall = true
							}
						},
						PostInstallationActions = new List<Oci.JmsService.Models.PostInstallationActions>
						{
							Oci.JmsService.Models.PostInstallationActions.ChangeMinimumKeyLengthForEc,
							Oci.JmsService.Models.PostInstallationActions.ChangeMinimumKeyLengthForDsa,
							Oci.JmsService.Models.PostInstallationActions.ChangeMinimumKeyLengthForDiffieHellman,
							Oci.JmsService.Models.PostInstallationActions.ChangeMinimumKeyLengthForRsaSignedJars,
							Oci.JmsService.Models.PostInstallationActions.DisableTls,
							Oci.JmsService.Models.PostInstallationActions.UseOsCacerts,
							Oci.JmsService.Models.PostInstallationActions.UseSystemProxies,
							Oci.JmsService.Models.PostInstallationActions.SetupHttpProxy,
							Oci.JmsService.Models.PostInstallationActions.SetupHttpsProxy,
							Oci.JmsService.Models.PostInstallationActions.SetupFtpProxy,
							Oci.JmsService.Models.PostInstallationActions.SetupSocksProxy,
							Oci.JmsService.Models.PostInstallationActions.AddFileHandler,
							Oci.JmsService.Models.PostInstallationActions.LoggingLevel
						}
					}
				}
			};
			var createTaskScheduleRequest = new Oci.JmsService.Requests.CreateTaskScheduleRequest
			{
				CreateTaskScheduleDetails = createTaskScheduleDetails,
				OpcRequestId = "ZE5B49B7GCIG1FLZCCOB<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 JavaManagementServiceClient(provider, new ClientConfiguration()))
				{
					var response = await client.CreateTaskSchedule(createTaskScheduleRequest);
					// Retrieve value from the response.
					var id = response.TaskSchedule.Id;
				}
            }
            catch (Exception e)
            {
                Console.WriteLine($"CreateTaskSchedule Failed with {e.Message}");
                throw e;
            }
        }

    }
}