// 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: 9395,
			subnetId: "ocid1.test.oc1..<unique_ID>EXAMPLE-subnetId-Value",
			privateEndpointId: "ocid1.test.oc1..<unique_ID>EXAMPLE-privateEndpointId-Value",
			notebookSessionShapeConfigDetails: {
				ocpus: 56.93943,
				memoryInGBs: 295.30725,

				}
,

			}
,
		notebookSessionConfigDetails: {
			shape: "EXAMPLE-shape-Value",
			blockStorageSizeInGBs: 1964,
			subnetId: "ocid1.test.oc1..<unique_ID>EXAMPLE-subnetId-Value",
			privateEndpointId: "ocid1.test.oc1..<unique_ID>EXAMPLE-privateEndpointId-Value",
			notebookSessionShapeConfigDetails: {
				ocpus: 28.613338,
				memoryInGBs: 531.09686,

				}
,

			}
,
		freeformTags: {
			EXAMPLE_KEY_E76PA :"EXAMPLE_VALUE_P3hle9W69rFuu6wYEYbz"
			},
		definedTags: {
			EXAMPLE_KEY_G8n7T :{
				EXAMPLE_KEY_4XPmX :"EXAMPLE--Value"
				}
			},
		notebookSessionRuntimeConfigDetails: {
			customEnvironmentVariables: {
				EXAMPLE_KEY_cVL39 :"EXAMPLE_VALUE_wEbmXwzHsGeQ9FhbAReN"
				},
			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: "MSVGIXTYIN155JWY4RNP<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);
     }
})();