// 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 createJobDetails = {
projectId: "ocid1.test.oc1..<unique_ID>EXAMPLE-projectId-Value",
compartmentId: "ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
displayName: "EXAMPLE-displayName-Value",
description: "EXAMPLE-description-Value",
jobConfigurationDetails: {
jobType: "DEFAULT", environmentVariables: {
EXAMPLE_KEY_n4vMb :"EXAMPLE_VALUE_Sis4Djveki7IBdrt2NYF"
},
commandLineArguments: "EXAMPLE-commandLineArguments-Value",
maximumRuntimeInMinutes: 16592
}
,
jobInfrastructureConfigurationDetails: {
jobInfrastructureType: "ME_STANDALONE", shapeName: "EXAMPLE-shapeName-Value",
blockStorageSizeInGBs: 3169,
jobShapeConfigDetails: {
ocpus: 50.389034,
memoryInGBs: 704.4128,
}
}
,
jobEnvironmentConfigurationDetails: {
jobEnvironmentType: "OCIR_CONTAINER", image: "EXAMPLE-image-Value",
cmd: ["EXAMPLE--Value" ],
entrypoint: ["EXAMPLE--Value" ],
imageDigest: "EXAMPLE-imageDigest-Value",
imageSignatureId: "ocid1.test.oc1..<unique_ID>EXAMPLE-imageSignatureId-Value"
}
,
jobLogConfigurationDetails: {
enableLogging: true,
enableAutoLogCreation: false,
logGroupId: "ocid1.test.oc1..<unique_ID>EXAMPLE-logGroupId-Value",
logId: "ocid1.test.oc1..<unique_ID>EXAMPLE-logId-Value",
}
,
jobStorageMountConfigurationDetailsList: [{
storageType: "FILE_STORAGE", mountTargetId: "ocid1.test.oc1..<unique_ID>EXAMPLE-mountTargetId-Value",
exportId: "ocid1.test.oc1..<unique_ID>EXAMPLE-exportId-Value",
destinationDirectoryName: "EXAMPLE-destinationDirectoryName-Value",
destinationPath: "EXAMPLE-destinationPath-Value"
}
],
freeformTags: {
EXAMPLE_KEY_McLVz :"EXAMPLE_VALUE_OmnkBE6VbAHEpVgPh4W3"
},
definedTags: {
EXAMPLE_KEY_sAqZ1 :{
EXAMPLE_KEY_SdIc3 :"EXAMPLE--Value"
}
},
}
const createJobRequest: datascience.requests.CreateJobRequest = {
createJobDetails: createJobDetails,
opcRequestId: "GPKZEMJEEX5N8CFCHC7A<unique_ID>",
opcRetryToken: "EXAMPLE-opcRetryToken-Value",
};
// Send request to the Client.
const createJobResponse = await client.createJob(createJobRequest);
}
catch (error) {
console.log("createJob Failed with error " + error);
}
})();