// 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: 2286,
        subnetId: "ocid1.test.oc1..<unique_ID>EXAMPLE-subnetId-Value",
        privateEndpointId: "ocid1.test.oc1..<unique_ID>EXAMPLE-privateEndpointId-Value",
        notebookSessionShapeConfigDetails: {
          ocpus: 23.60913,
          memoryInGBs: 694.9153
        }
      },
      notebookSessionConfigDetails: {
        shape: "EXAMPLE-shape-Value",
        blockStorageSizeInGBs: 9516,
        subnetId: "ocid1.test.oc1..<unique_ID>EXAMPLE-subnetId-Value",
        privateEndpointId: "ocid1.test.oc1..<unique_ID>EXAMPLE-privateEndpointId-Value",
        notebookSessionShapeConfigDetails: {
          ocpus: 25.617416,
          memoryInGBs: 236.58026
        }
      },
      freeformTags: {
        EXAMPLE_KEY_8RKqc: "EXAMPLE_VALUE_A2wGWwwmN1G2pPbrRD9v"
      },
      definedTags: {
        EXAMPLE_KEY_0Whpe: {
          EXAMPLE_KEY_lS8nw: "EXAMPLE--Value"
        }
      },
      notebookSessionRuntimeConfigDetails: {
        customEnvironmentVariables: {
          EXAMPLE_KEY_rotSh: "EXAMPLE_VALUE_YJOXBQJgwQjQTI4bB8lQ"
        },
        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: "CBGA4TMGFA1E7ZAK4E5R<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);
  }
})();