// 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 dataflow from "oci-dataflow";
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 dataflow.DataFlowClient({ authenticationDetailsProvider: provider });
// Create a request and dependent object(s).
const createRunDetails = ({
applicationLogConfig: ({
logGroupId: "ocid1.test.oc1..<unique_ID>EXAMPLE-logGroupId-Value",
logId: "ocid1.test.oc1..<unique_ID>EXAMPLE-logId-Value"
} as unknown) as dataflow.models.ApplicationLogConfig,
applicationId: "ocid1.test.oc1..<unique_ID>EXAMPLE-applicationId-Value",
archiveUri: "EXAMPLE-archiveUri-Value",
arguments: ["EXAMPLE--Value"],
compartmentId: "ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
configuration: {
EXAMPLE_KEY_pH1yU: "EXAMPLE_VALUE_AcACmhdxLUIs54xHldoV"
},
definedTags: {
EXAMPLE_KEY_X3lCz: {
EXAMPLE_KEY_dE5tv: "EXAMPLE--Value"
}
},
displayName: "EXAMPLE-displayName-Value",
driverShape: "EXAMPLE-driverShape-Value",
driverShapeConfig: ({
ocpus: 367.08356,
memoryInGBs: 8000.5723
} as unknown) as dataflow.models.ShapeConfig,
execute: "EXAMPLE-execute-Value",
executorShape: "EXAMPLE-executorShape-Value",
executorShapeConfig: ({
ocpus: 4182.736,
memoryInGBs: 8399.645
} as unknown) as dataflow.models.ShapeConfig,
freeformTags: {
EXAMPLE_KEY_q5imN: "EXAMPLE_VALUE_3m6T0KfPZ8hpfK63GVMV"
},
logsBucketUri: "EXAMPLE-logsBucketUri-Value",
metastoreId: "ocid1.test.oc1..<unique_ID>EXAMPLE-metastoreId-Value",
numExecutors: 98,
parameters: [
({
name: "EXAMPLE-name-Value",
value: "EXAMPLE-value-Value"
} as unknown) as dataflow.models.ApplicationParameter
],
poolId: "ocid1.test.oc1..<unique_ID>EXAMPLE-poolId-Value",
sparkVersion: "EXAMPLE-sparkVersion-Value",
type: dataflow.models.ApplicationType.Streaming,
warehouseBucketUri: "EXAMPLE-warehouseBucketUri-Value",
maxDurationInMinutes: 12,
idleTimeoutInMinutes: 671
} as unknown) as dataflow.models.CreateRunDetails;
const createRunRequest: dataflow.requests.CreateRunRequest = {
createRunDetails: createRunDetails,
opcRetryToken: "EXAMPLE-opcRetryToken-Value",
opcRequestId: "MUGCR4OJXXSOSKIN7BA1<unique_ID>",
opcParentRptUrl: "EXAMPLE-opcParentRptUrl-Value"
};
// Send request to the Client.
const createRunResponse = await client.createRun(createRunRequest);
} catch (error) {
console.log("createRun Failed with error " + error);
}
})();