// 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).

import * as jms from "oci-jms";
import common = require("oci-common");

// 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.

const provider: common.ConfigFileAuthenticationDetailsProvider = new common.ConfigFileAuthenticationDetailsProvider();

(async () => {
  try {
    // Create a service client
    const client = new jms.JavaManagementServiceClient({ authenticationDetailsProvider: provider });

    // Create a request and dependent object(s).
    const updateFleetAdvancedFeatureConfigurationDetails = {
      analyticNamespace: "EXAMPLE-analyticNamespace-Value",
      analyticBucketName: "EXAMPLE-analyticBucketName-Value",
      lcm: {
        isEnabled: true,
        postInstallationActions: {
          disabledTlsVersions: [jms.models.TlsVersions.Tls10, jms.models.TlsVersions.Tls11],
          shouldReplaceCertificatesOperatingSystem: false,
          minimumKeySizeSettings: {
            tls: [
              {
                name: jms.models.Algorithms.Dh,
                keySize: 534
              }
            ],
            jar: [
              {
                name: jms.models.Algorithms.Dh,
                keySize: 405
              }
            ],
            certpath: [
              {
                name: jms.models.Algorithms.Ec,
                keySize: 925
              }
            ]
          },
          addLoggingHandler: false,
          globalLoggingLevel: jms.models.GlobalLoggingLevel.Severe,
          proxies: {
            useSystemProxies: false,
            httpProxyHost: "EXAMPLE-httpProxyHost-Value",
            httpProxyPort: 59129,
            httpsProxyHost: "EXAMPLE-httpsProxyHost-Value",
            httpsProxyPort: 49793,
            ftpProxyHost: "EXAMPLE-ftpProxyHost-Value",
            ftpProxyPort: 35484,
            socksProxyHost: "EXAMPLE-socksProxyHost-Value",
            socksProxyPort: 4147
          }
        }
      },
      cryptoEventAnalysis: {
        isEnabled: true,
        summarizedEventsLog: {
          logGroupId: "ocid1.test.oc1..<unique_ID>EXAMPLE-logGroupId-Value",
          logId: "ocid1.test.oc1..<unique_ID>EXAMPLE-logId-Value"
        }
      },
      advancedUsageTracking: {
        isEnabled: false
      },
      jfrRecording: {
        isEnabled: false
      },
      performanceTuningAnalysis: {
        isEnabled: false
      },
      javaMigrationAnalysis: {
        isEnabled: true
      }
    };

    const updateFleetAdvancedFeatureConfigurationRequest: jms.requests.UpdateFleetAdvancedFeatureConfigurationRequest = {
      fleetId: "ocid1.test.oc1..<unique_ID>EXAMPLE-fleetId-Value",
      updateFleetAdvancedFeatureConfigurationDetails: updateFleetAdvancedFeatureConfigurationDetails,
      opcRetryToken: "EXAMPLE-opcRetryToken-Value",
      ifMatch: "EXAMPLE-ifMatch-Value",
      opcRequestId: "79PDCMTG57WND5DFXI75<unique_ID>"
    };

    // Send request to the Client.
    const updateFleetAdvancedFeatureConfigurationResponse = await client.updateFleetAdvancedFeatureConfiguration(
      updateFleetAdvancedFeatureConfigurationRequest
    );
  } catch (error) {
    console.log("updateFleetAdvancedFeatureConfiguration Failed with error  " + error);
  }
})();