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

    // Create a request and dependent object(s).
    const createNotebookSessionDetails = {
      displayName: "EXAMPLE-displayName-Value",
      projectId: "ocid1.test.oc1..<unique_ID>EXAMPLE-projectId-Value",
      compartmentId: "ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
      notebookSessionConfigurationDetails: {
        shape: "EXAMPLE-shape-Value",
        blockStorageSizeInGBs: 3477,
        subnetId: "ocid1.test.oc1..<unique_ID>EXAMPLE-subnetId-Value",
        privateEndpointId: "ocid1.test.oc1..<unique_ID>EXAMPLE-privateEndpointId-Value",
        notebookSessionShapeConfigDetails: {
          ocpus: 37.92667,
          memoryInGBs: 884.425
        }
      },
      notebookSessionConfigDetails: {
        shape: "EXAMPLE-shape-Value",
        blockStorageSizeInGBs: 4976,
        subnetId: "ocid1.test.oc1..<unique_ID>EXAMPLE-subnetId-Value",
        privateEndpointId: "ocid1.test.oc1..<unique_ID>EXAMPLE-privateEndpointId-Value",
        notebookSessionShapeConfigDetails: {
          ocpus: 45.56208,
          memoryInGBs: 563.99274
        }
      },
      freeformTags: {
        EXAMPLE_KEY_ak8hy: "EXAMPLE_VALUE_6zk1UgGDMn8f8ZVZVGJ3"
      },
      definedTags: {
        EXAMPLE_KEY_u7Wvb: {
          EXAMPLE_KEY_xC3iI: "EXAMPLE--Value"
        }
      },
      notebookSessionRuntimeConfigDetails: {
        customEnvironmentVariables: {
          EXAMPLE_KEY_EfuMG: "EXAMPLE_VALUE_oIpeIv0r5yMKPnyWSw3w"
        },
        notebookSessionGitConfigDetails: {
          notebookSessionGitRepoConfigCollection: [
            {
              url: "EXAMPLE-url-Value"
            }
          ]
        }
      },
      notebookSessionStorageMountConfigurationDetailsList: [
        {
          storageType: "OBJECT_STORAGE",
          namespace: "EXAMPLE-namespace-Value",
          bucket: "EXAMPLE-bucket-Value",
          prefix: "EXAMPLE-prefix-Value",
          destinationDirectoryName: "EXAMPLE-destinationDirectoryName-Value",
          destinationPath: "EXAMPLE-destinationPath-Value"
        }
      ]
    };

    const createNotebookSessionRequest: datascience.requests.CreateNotebookSessionRequest = {
      createNotebookSessionDetails: createNotebookSessionDetails,
      opcRequestId: "NYIQCNWSCBCOXONQTBOB<unique_ID>",
      opcRetryToken: "EXAMPLE-opcRetryToken-Value"
    };

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