Class CreateApplicationDetails.Builder
- java.lang.Object
- 
- com.oracle.bmc.dataflow.model.CreateApplicationDetails.Builder
 
- 
- Enclosing class:
- CreateApplicationDetails
 
 public static class CreateApplicationDetails.Builder extends Object 
- 
- 
Constructor SummaryConstructors Constructor Description Builder()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description CreateApplicationDetails.BuilderapplicationLogConfig(ApplicationLogConfig applicationLogConfig)CreateApplicationDetails.BuilderarchiveUri(String archiveUri)A comma separated list of one or more archive files as Oracle Cloud Infrastructure URIs.CreateApplicationDetails.Builderarguments(List<String> arguments)The arguments passed to the running application as command line arguments.CreateApplicationDetailsbuild()CreateApplicationDetails.BuilderclassName(String className)The class for the application.CreateApplicationDetails.BuildercompartmentId(String compartmentId)The OCID of a compartment.CreateApplicationDetails.Builderconfiguration(Map<String,String> configuration)The Spark configuration passed to the running process.CreateApplicationDetails.Buildercopy(CreateApplicationDetails model)CreateApplicationDetails.BuilderdefinedTags(Map<String,Map<String,Object>> definedTags)Defined tags for this resource.CreateApplicationDetails.Builderdescription(String description)A user-friendly description.CreateApplicationDetails.BuilderdisplayName(String displayName)A user-friendly name.CreateApplicationDetails.BuilderdriverShape(String driverShape)The VM shape for the driver.CreateApplicationDetails.BuilderdriverShapeConfig(ShapeConfig driverShapeConfig)CreateApplicationDetails.Builderexecute(String execute)The input used for spark-submit command.CreateApplicationDetails.BuilderexecutorShape(String executorShape)The VM shape for the executors.CreateApplicationDetails.BuilderexecutorShapeConfig(ShapeConfig executorShapeConfig)CreateApplicationDetails.BuilderfileUri(String fileUri)An Oracle Cloud Infrastructure URI of the file containing the application to execute.CreateApplicationDetails.BuilderfreeformTags(Map<String,String> freeformTags)Free-form tags for this resource.CreateApplicationDetails.BuilderidleTimeoutInMinutes(Long idleTimeoutInMinutes)The timeout value in minutes used to manage Runs.CreateApplicationDetails.Builderlanguage(ApplicationLanguage language)The Spark language.CreateApplicationDetails.BuilderlogsBucketUri(String logsBucketUri)An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.CreateApplicationDetails.BuildermaxDurationInMinutes(Long maxDurationInMinutes)The maximum duration in minutes for which an Application should run.CreateApplicationDetails.BuildermetastoreId(String metastoreId)The OCID of OCI Hive Metastore.CreateApplicationDetails.BuildernumExecutors(Integer numExecutors)The number of executor VMs requested.CreateApplicationDetails.Builderparameters(List<ApplicationParameter> parameters)An array of name/value pairs used to fill placeholders found in properties like Application.arguments.CreateApplicationDetails.BuilderpoolId(String poolId)The OCID of a pool.CreateApplicationDetails.BuilderprivateEndpointId(String privateEndpointId)The OCID of a private endpoint.CreateApplicationDetails.BuildersparkVersion(String sparkVersion)The Spark version utilized to run the application.CreateApplicationDetails.Buildertype(ApplicationType type)The Spark application processing type.CreateApplicationDetails.BuilderwarehouseBucketUri(String warehouseBucketUri)An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.
 
- 
- 
- 
Method Detail- 
archiveUripublic CreateApplicationDetails.Builder archiveUri(String archiveUri) A comma separated list of one or more archive files as Oracle Cloud Infrastructure URIs.For example, oci://path/to/a.zip,oci://path/to/b.zip. An Oracle Cloud Infrastructure URI of an archive.zip file containing custom dependencies that may be used to support the execution of a Python, Java, or Scala application. See https://docs.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat. - Parameters:
- archiveUri- the value to set
- Returns:
- this builder
 
 - 
argumentspublic CreateApplicationDetails.Builder arguments(List<String> arguments) The arguments passed to the running application as command line arguments.An argument is either a plain text or a placeholder. Placeholders are replaced using values from the parameters map. Each placeholder specified must be represented in the parameters map else the request (POST or PUT) will fail with a HTTP 400 status code. Placeholders are specified as Service Api Spec, where name is the name of the parameter. Example: [ “–input”, “${input_file}”, “–name”, “John Doe” ] If “input_file” has a value of “mydata.xml”, then the value above will be translated to –input mydata.xml –name “John Doe” - Parameters:
- arguments- the value to set
- Returns:
- this builder
 
 - 
applicationLogConfigpublic CreateApplicationDetails.Builder applicationLogConfig(ApplicationLogConfig applicationLogConfig) 
 - 
classNamepublic CreateApplicationDetails.Builder className(String className) The class for the application.- Parameters:
- className- the value to set
- Returns:
- this builder
 
 - 
compartmentIdpublic CreateApplicationDetails.Builder compartmentId(String compartmentId) The OCID of a compartment.- Parameters:
- compartmentId- the value to set
- Returns:
- this builder
 
 - 
configurationpublic CreateApplicationDetails.Builder configuration(Map<String,String> configuration) The Spark configuration passed to the running process.See https://spark.apache.org/docs/latest/configuration.html#available-properties. Example: { “spark.app.name” : “My App Name”, “spark.shuffle.io.maxRetries” : “4” } Note: Not all Spark properties are permitted to be set. Attempting to set a property that is not allowed to be overwritten will cause a 400 status to be returned. - Parameters:
- configuration- the value to set
- Returns:
- this builder
 
 - 
definedTagspublic CreateApplicationDetails.Builder definedTags(Map<String,Map<String,Object>> definedTags) Defined tags for this resource.Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {“Operations”: {“CostCenter”: “42”}} - Parameters:
- definedTags- the value to set
- Returns:
- this builder
 
 - 
descriptionpublic CreateApplicationDetails.Builder description(String description) A user-friendly description.Avoid entering confidential information. - Parameters:
- description- the value to set
- Returns:
- this builder
 
 - 
displayNamepublic CreateApplicationDetails.Builder displayName(String displayName) A user-friendly name.It does not have to be unique. Avoid entering confidential information. - Parameters:
- displayName- the value to set
- Returns:
- this builder
 
 - 
driverShapepublic CreateApplicationDetails.Builder driverShape(String driverShape) The VM shape for the driver.Sets the driver cores and memory. - Parameters:
- driverShape- the value to set
- Returns:
- this builder
 
 - 
driverShapeConfigpublic CreateApplicationDetails.Builder driverShapeConfig(ShapeConfig driverShapeConfig) 
 - 
executepublic CreateApplicationDetails.Builder execute(String execute) The input used for spark-submit command.For more details see https://spark.apache.org/docs/latest/submitting-applications.html#launching-applications-with-spark-submit. Supported options include –class, –file, –jars, –conf, –py-files, and main application file with arguments. Example: –jars oci://path/to/a.jar,oci://path/to/b.jar –files oci://path/to/a.json,oci://path/to/b.csv –py-files oci://path/to/a.py,oci://path/to/b.py –conf spark.sql.crossJoin.enabled=true –class org.apache.spark.examples.SparkPi oci://path/to/main.jar 10 Note: If execute is specified together with applicationId, className, configuration, fileUri, language, arguments, parameters during application create/update, or run create/submit, Data Flow service will use derived information from execute input only. - Parameters:
- execute- the value to set
- Returns:
- this builder
 
 - 
executorShapepublic CreateApplicationDetails.Builder executorShape(String executorShape) The VM shape for the executors.Sets the executor cores and memory. - Parameters:
- executorShape- the value to set
- Returns:
- this builder
 
 - 
executorShapeConfigpublic CreateApplicationDetails.Builder executorShapeConfig(ShapeConfig executorShapeConfig) 
 - 
fileUripublic CreateApplicationDetails.Builder fileUri(String fileUri) An Oracle Cloud Infrastructure URI of the file containing the application to execute.See https://docs.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat. - Parameters:
- fileUri- the value to set
- Returns:
- this builder
 
 - 
freeformTagspublic CreateApplicationDetails.Builder freeformTags(Map<String,String> freeformTags) Free-form tags for this resource.Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {“Department”: “Finance”} - Parameters:
- freeformTags- the value to set
- Returns:
- this builder
 
 - 
languagepublic CreateApplicationDetails.Builder language(ApplicationLanguage language) The Spark language.- Parameters:
- language- the value to set
- Returns:
- this builder
 
 - 
logsBucketUripublic CreateApplicationDetails.Builder logsBucketUri(String logsBucketUri) An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded.See https://docs.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat. - Parameters:
- logsBucketUri- the value to set
- Returns:
- this builder
 
 - 
metastoreIdpublic CreateApplicationDetails.Builder metastoreId(String metastoreId) The OCID of OCI Hive Metastore.- Parameters:
- metastoreId- the value to set
- Returns:
- this builder
 
 - 
numExecutorspublic CreateApplicationDetails.Builder numExecutors(Integer numExecutors) The number of executor VMs requested.- Parameters:
- numExecutors- the value to set
- Returns:
- this builder
 
 - 
parameterspublic CreateApplicationDetails.Builder parameters(List<ApplicationParameter> parameters) An array of name/value pairs used to fill placeholders found in properties like Application.arguments.The name must be a string of one or more word characters (a-z, A-Z, 0-9, _). The value can be a string of 0 or more characters of any kind. Example: [ { name: “iterations”, value: “10”}, { name: “input_file”, value: “mydata.xml” }, { name: “variable_x”, value: “${x}”} ] - Parameters:
- parameters- the value to set
- Returns:
- this builder
 
 - 
poolIdpublic CreateApplicationDetails.Builder poolId(String poolId) The OCID of a pool.Unique Id to indentify a dataflow pool resource. - Parameters:
- poolId- the value to set
- Returns:
- this builder
 
 - 
privateEndpointIdpublic CreateApplicationDetails.Builder privateEndpointId(String privateEndpointId) The OCID of a private endpoint.- Parameters:
- privateEndpointId- the value to set
- Returns:
- this builder
 
 - 
sparkVersionpublic CreateApplicationDetails.Builder sparkVersion(String sparkVersion) The Spark version utilized to run the application.- Parameters:
- sparkVersion- the value to set
- Returns:
- this builder
 
 - 
typepublic CreateApplicationDetails.Builder type(ApplicationType type) The Spark application processing type.- Parameters:
- type- the value to set
- Returns:
- this builder
 
 - 
warehouseBucketUripublic CreateApplicationDetails.Builder warehouseBucketUri(String warehouseBucketUri) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs.See https://docs.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat. - Parameters:
- warehouseBucketUri- the value to set
- Returns:
- this builder
 
 - 
maxDurationInMinutespublic CreateApplicationDetails.Builder maxDurationInMinutes(Long maxDurationInMinutes) The maximum duration in minutes for which an Application should run.Data Flow Run would be terminated once it reaches this duration from the time it transitions to IN_PROGRESS state. - Parameters:
- maxDurationInMinutes- the value to set
- Returns:
- this builder
 
 - 
idleTimeoutInMinutespublic CreateApplicationDetails.Builder idleTimeoutInMinutes(Long idleTimeoutInMinutes) The timeout value in minutes used to manage Runs.A Run would be stopped after inactivity for this amount of time period. Note: This parameter is currently only applicable for Runs of type SESSION. Default value is 2880 minutes (2 days) - Parameters:
- idleTimeoutInMinutes- the value to set
- Returns:
- this builder
 
 - 
buildpublic CreateApplicationDetails build() 
 - 
copypublic CreateApplicationDetails.Builder copy(CreateApplicationDetails model) 
 
- 
 
-