// 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 createApplicationDetails = ({
archiveUri: "EXAMPLE-archiveUri-Value",
arguments: ["EXAMPLE--Value"],
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,
className: "EXAMPLE-className-Value",
compartmentId: "ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
configuration: {
EXAMPLE_KEY_5yxlr: "EXAMPLE_VALUE_MNyq5aTfOGU45H3aA7v6"
},
definedTags: {
EXAMPLE_KEY_BQyio: {
EXAMPLE_KEY_wfwwv: "EXAMPLE--Value"
}
},
description: "EXAMPLE-description-Value",
displayName: "EXAMPLE-displayName-Value",
driverShape: "EXAMPLE-driverShape-Value",
driverShapeConfig: ({
ocpus: 9915.35,
memoryInGBs: 8997.177
} as unknown) as dataflow.models.ShapeConfig,
execute: "EXAMPLE-execute-Value",
executorShape: "EXAMPLE-executorShape-Value",
executorShapeConfig: ({
ocpus: 6151.9297,
memoryInGBs: 7001.935
} as unknown) as dataflow.models.ShapeConfig,
fileUri: "EXAMPLE-fileUri-Value",
freeformTags: {
EXAMPLE_KEY_oAl2c: "EXAMPLE_VALUE_UC0VbIvpXyHJYxprHFmp"
},
language: dataflow.models.ApplicationLanguage.Scala,
logsBucketUri: "EXAMPLE-logsBucketUri-Value",
metastoreId: "ocid1.test.oc1..<unique_ID>EXAMPLE-metastoreId-Value",
numExecutors: 904,
parameters: [
({
name: "EXAMPLE-name-Value",
value: "EXAMPLE-value-Value"
} as unknown) as dataflow.models.ApplicationParameter
],
poolId: "ocid1.test.oc1..<unique_ID>EXAMPLE-poolId-Value",
privateEndpointId: "ocid1.test.oc1..<unique_ID>EXAMPLE-privateEndpointId-Value",
sparkVersion: "EXAMPLE-sparkVersion-Value",
type: dataflow.models.ApplicationType.Streaming,
warehouseBucketUri: "EXAMPLE-warehouseBucketUri-Value",
maxDurationInMinutes: 38,
idleTimeoutInMinutes: 838
} as unknown) as dataflow.models.CreateApplicationDetails;
const createApplicationRequest: dataflow.requests.CreateApplicationRequest = {
createApplicationDetails: createApplicationDetails,
opcRetryToken: "EXAMPLE-opcRetryToken-Value",
opcRequestId: "BBF2I1D7ST1IX2DPO5FL<unique_ID>"
};
// Send request to the Client.
const createApplicationResponse = await client.createApplication(createApplicationRequest);
} catch (error) {
console.log("createApplication Failed with error " + error);
}
})();