// 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 goldengate from "oci-goldengate";
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 goldengate.GoldenGateClient({ authenticationDetailsProvider: provider });

    // Create a request and dependent object(s).
    const createDeploymentDetails = {
      displayName: "EXAMPLE-displayName-Value",
      licenseModel: goldengate.models.LicenseModel.BringYourOwnLicense,
      description: "EXAMPLE-description-Value",
      compartmentId: "ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
      freeformTags: {
        EXAMPLE_KEY_LXDEz: "EXAMPLE_VALUE_EffFhWipGV4Yw5yx40rp"
      },
      definedTags: {
        EXAMPLE_KEY_p9jzY: {
          EXAMPLE_KEY_KdpAK: "EXAMPLE--Value"
        }
      },
      deploymentBackupId: "ocid1.test.oc1..<unique_ID>EXAMPLE-deploymentBackupId-Value",
      subnetId: "ocid1.test.oc1..<unique_ID>EXAMPLE-subnetId-Value",
      loadBalancerSubnetId: "ocid1.test.oc1..<unique_ID>EXAMPLE-loadBalancerSubnetId-Value",
      fqdn: "EXAMPLE-fqdn-Value",
      nsgIds: ["EXAMPLE--Value"],
      isPublic: false,
      cpuCoreCount: 2,
      isAutoScalingEnabled: true,
      deploymentType: goldengate.models.DeploymentType.DatabaseOracle,
      oggData: {
        deploymentName: "EXAMPLE-deploymentName-Value",
        credentialStore: goldengate.models.CredentialStore.Iam,
        identityDomainId: "ocid1.test.oc1..<unique_ID>EXAMPLE-identityDomainId-Value",
        passwordSecretId: "ocid1.test.oc1..<unique_ID>EXAMPLE-passwordSecretId-Value",
        adminUsername: "EXAMPLE-adminUsername-Value",
        adminPassword: "EXAMPLE-adminPassword-Value",
        certificate: "EXAMPLE-certificate-Value",
        key: "EXAMPLE-key-Value",
        oggVersion: "EXAMPLE-oggVersion-Value"
      },
      maintenanceWindow: {
        day: goldengate.models.Day.Wednesday,
        startHour: 12
      },
      maintenanceConfiguration: {
        isInterimReleaseAutoUpgradeEnabled: false,
        interimReleaseUpgradePeriodInDays: 809,
        bundleReleaseUpgradePeriodInDays: 745,
        majorReleaseUpgradePeriodInDays: 795,
        securityPatchUpgradePeriodInDays: 759
      }
    };

    const createDeploymentRequest: goldengate.requests.CreateDeploymentRequest = {
      createDeploymentDetails: createDeploymentDetails,
      opcRetryToken: "EXAMPLE-opcRetryToken-Value",
      opcRequestId: "8VKOMNCEMWMNEXJAA3QW<unique_ID>"
    };

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