oci.DataFlow.Application
Explore with Pulumi AI
This resource provides the Application resource in Oracle Cloud Infrastructure Data Flow service.
Creates an application.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testApplication = new oci.dataflow.Application("test_application", {
    compartmentId: compartmentId,
    displayName: applicationDisplayName,
    driverShape: applicationDriverShape,
    executorShape: applicationExecutorShape,
    language: applicationLanguage,
    numExecutors: applicationNumExecutors,
    sparkVersion: applicationSparkVersion,
    applicationLogConfig: {
        logGroupId: testLogGroup.id,
        logId: testLog.id,
    },
    archiveUri: applicationArchiveUri,
    arguments: applicationArguments,
    className: applicationClassName,
    configuration: applicationConfiguration,
    definedTags: {
        "Operations.CostCenter": "42",
    },
    description: applicationDescription,
    driverShapeConfig: {
        memoryInGbs: applicationDriverShapeConfigMemoryInGbs,
        ocpus: applicationDriverShapeConfigOcpus,
    },
    execute: applicationExecute,
    executorShapeConfig: {
        memoryInGbs: applicationExecutorShapeConfigMemoryInGbs,
        ocpus: applicationExecutorShapeConfigOcpus,
    },
    fileUri: applicationFileUri,
    freeformTags: {
        Department: "Finance",
    },
    idleTimeoutInMinutes: applicationIdleTimeoutInMinutes,
    logsBucketUri: applicationLogsBucketUri,
    maxDurationInMinutes: applicationMaxDurationInMinutes,
    metastoreId: metastoreId,
    parameters: [{
        name: applicationParametersName,
        value: applicationParametersValue,
    }],
    poolId: testPool.id,
    privateEndpointId: testPrivateEndpoint.id,
    type: applicationType,
    warehouseBucketUri: applicationWarehouseBucketUri,
    terminateRunsOnDeletion: true,
});
import pulumi
import pulumi_oci as oci
test_application = oci.data_flow.Application("test_application",
    compartment_id=compartment_id,
    display_name=application_display_name,
    driver_shape=application_driver_shape,
    executor_shape=application_executor_shape,
    language=application_language,
    num_executors=application_num_executors,
    spark_version=application_spark_version,
    application_log_config={
        "log_group_id": test_log_group["id"],
        "log_id": test_log["id"],
    },
    archive_uri=application_archive_uri,
    arguments=application_arguments,
    class_name=application_class_name,
    configuration=application_configuration,
    defined_tags={
        "Operations.CostCenter": "42",
    },
    description=application_description,
    driver_shape_config={
        "memory_in_gbs": application_driver_shape_config_memory_in_gbs,
        "ocpus": application_driver_shape_config_ocpus,
    },
    execute=application_execute,
    executor_shape_config={
        "memory_in_gbs": application_executor_shape_config_memory_in_gbs,
        "ocpus": application_executor_shape_config_ocpus,
    },
    file_uri=application_file_uri,
    freeform_tags={
        "Department": "Finance",
    },
    idle_timeout_in_minutes=application_idle_timeout_in_minutes,
    logs_bucket_uri=application_logs_bucket_uri,
    max_duration_in_minutes=application_max_duration_in_minutes,
    metastore_id=metastore_id,
    parameters=[{
        "name": application_parameters_name,
        "value": application_parameters_value,
    }],
    pool_id=test_pool["id"],
    private_endpoint_id=test_private_endpoint["id"],
    type=application_type,
    warehouse_bucket_uri=application_warehouse_bucket_uri,
    terminate_runs_on_deletion=True)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/dataflow"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := dataflow.NewApplication(ctx, "test_application", &dataflow.ApplicationArgs{
			CompartmentId: pulumi.Any(compartmentId),
			DisplayName:   pulumi.Any(applicationDisplayName),
			DriverShape:   pulumi.Any(applicationDriverShape),
			ExecutorShape: pulumi.Any(applicationExecutorShape),
			Language:      pulumi.Any(applicationLanguage),
			NumExecutors:  pulumi.Any(applicationNumExecutors),
			SparkVersion:  pulumi.Any(applicationSparkVersion),
			ApplicationLogConfig: &dataflow.ApplicationApplicationLogConfigArgs{
				LogGroupId: pulumi.Any(testLogGroup.Id),
				LogId:      pulumi.Any(testLog.Id),
			},
			ArchiveUri:    pulumi.Any(applicationArchiveUri),
			Arguments:     pulumi.Any(applicationArguments),
			ClassName:     pulumi.Any(applicationClassName),
			Configuration: pulumi.Any(applicationConfiguration),
			DefinedTags: pulumi.StringMap{
				"Operations.CostCenter": pulumi.String("42"),
			},
			Description: pulumi.Any(applicationDescription),
			DriverShapeConfig: &dataflow.ApplicationDriverShapeConfigArgs{
				MemoryInGbs: pulumi.Any(applicationDriverShapeConfigMemoryInGbs),
				Ocpus:       pulumi.Any(applicationDriverShapeConfigOcpus),
			},
			Execute: pulumi.Any(applicationExecute),
			ExecutorShapeConfig: &dataflow.ApplicationExecutorShapeConfigArgs{
				MemoryInGbs: pulumi.Any(applicationExecutorShapeConfigMemoryInGbs),
				Ocpus:       pulumi.Any(applicationExecutorShapeConfigOcpus),
			},
			FileUri: pulumi.Any(applicationFileUri),
			FreeformTags: pulumi.StringMap{
				"Department": pulumi.String("Finance"),
			},
			IdleTimeoutInMinutes: pulumi.Any(applicationIdleTimeoutInMinutes),
			LogsBucketUri:        pulumi.Any(applicationLogsBucketUri),
			MaxDurationInMinutes: pulumi.Any(applicationMaxDurationInMinutes),
			MetastoreId:          pulumi.Any(metastoreId),
			Parameters: dataflow.ApplicationParameterArray{
				&dataflow.ApplicationParameterArgs{
					Name:  pulumi.Any(applicationParametersName),
					Value: pulumi.Any(applicationParametersValue),
				},
			},
			PoolId:                  pulumi.Any(testPool.Id),
			PrivateEndpointId:       pulumi.Any(testPrivateEndpoint.Id),
			Type:                    pulumi.Any(applicationType),
			WarehouseBucketUri:      pulumi.Any(applicationWarehouseBucketUri),
			TerminateRunsOnDeletion: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testApplication = new Oci.DataFlow.Application("test_application", new()
    {
        CompartmentId = compartmentId,
        DisplayName = applicationDisplayName,
        DriverShape = applicationDriverShape,
        ExecutorShape = applicationExecutorShape,
        Language = applicationLanguage,
        NumExecutors = applicationNumExecutors,
        SparkVersion = applicationSparkVersion,
        ApplicationLogConfig = new Oci.DataFlow.Inputs.ApplicationApplicationLogConfigArgs
        {
            LogGroupId = testLogGroup.Id,
            LogId = testLog.Id,
        },
        ArchiveUri = applicationArchiveUri,
        Arguments = applicationArguments,
        ClassName = applicationClassName,
        Configuration = applicationConfiguration,
        DefinedTags = 
        {
            { "Operations.CostCenter", "42" },
        },
        Description = applicationDescription,
        DriverShapeConfig = new Oci.DataFlow.Inputs.ApplicationDriverShapeConfigArgs
        {
            MemoryInGbs = applicationDriverShapeConfigMemoryInGbs,
            Ocpus = applicationDriverShapeConfigOcpus,
        },
        Execute = applicationExecute,
        ExecutorShapeConfig = new Oci.DataFlow.Inputs.ApplicationExecutorShapeConfigArgs
        {
            MemoryInGbs = applicationExecutorShapeConfigMemoryInGbs,
            Ocpus = applicationExecutorShapeConfigOcpus,
        },
        FileUri = applicationFileUri,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
        IdleTimeoutInMinutes = applicationIdleTimeoutInMinutes,
        LogsBucketUri = applicationLogsBucketUri,
        MaxDurationInMinutes = applicationMaxDurationInMinutes,
        MetastoreId = metastoreId,
        Parameters = new[]
        {
            new Oci.DataFlow.Inputs.ApplicationParameterArgs
            {
                Name = applicationParametersName,
                Value = applicationParametersValue,
            },
        },
        PoolId = testPool.Id,
        PrivateEndpointId = testPrivateEndpoint.Id,
        Type = applicationType,
        WarehouseBucketUri = applicationWarehouseBucketUri,
        TerminateRunsOnDeletion = true,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataFlow.Application;
import com.pulumi.oci.DataFlow.ApplicationArgs;
import com.pulumi.oci.DataFlow.inputs.ApplicationApplicationLogConfigArgs;
import com.pulumi.oci.DataFlow.inputs.ApplicationDriverShapeConfigArgs;
import com.pulumi.oci.DataFlow.inputs.ApplicationExecutorShapeConfigArgs;
import com.pulumi.oci.DataFlow.inputs.ApplicationParameterArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var testApplication = new Application("testApplication", ApplicationArgs.builder()
            .compartmentId(compartmentId)
            .displayName(applicationDisplayName)
            .driverShape(applicationDriverShape)
            .executorShape(applicationExecutorShape)
            .language(applicationLanguage)
            .numExecutors(applicationNumExecutors)
            .sparkVersion(applicationSparkVersion)
            .applicationLogConfig(ApplicationApplicationLogConfigArgs.builder()
                .logGroupId(testLogGroup.id())
                .logId(testLog.id())
                .build())
            .archiveUri(applicationArchiveUri)
            .arguments(applicationArguments)
            .className(applicationClassName)
            .configuration(applicationConfiguration)
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .description(applicationDescription)
            .driverShapeConfig(ApplicationDriverShapeConfigArgs.builder()
                .memoryInGbs(applicationDriverShapeConfigMemoryInGbs)
                .ocpus(applicationDriverShapeConfigOcpus)
                .build())
            .execute(applicationExecute)
            .executorShapeConfig(ApplicationExecutorShapeConfigArgs.builder()
                .memoryInGbs(applicationExecutorShapeConfigMemoryInGbs)
                .ocpus(applicationExecutorShapeConfigOcpus)
                .build())
            .fileUri(applicationFileUri)
            .freeformTags(Map.of("Department", "Finance"))
            .idleTimeoutInMinutes(applicationIdleTimeoutInMinutes)
            .logsBucketUri(applicationLogsBucketUri)
            .maxDurationInMinutes(applicationMaxDurationInMinutes)
            .metastoreId(metastoreId)
            .parameters(ApplicationParameterArgs.builder()
                .name(applicationParametersName)
                .value(applicationParametersValue)
                .build())
            .poolId(testPool.id())
            .privateEndpointId(testPrivateEndpoint.id())
            .type(applicationType)
            .warehouseBucketUri(applicationWarehouseBucketUri)
            .terminateRunsOnDeletion(true)
            .build());
    }
}
resources:
  testApplication:
    type: oci:DataFlow:Application
    name: test_application
    properties:
      compartmentId: ${compartmentId}
      displayName: ${applicationDisplayName}
      driverShape: ${applicationDriverShape}
      executorShape: ${applicationExecutorShape}
      language: ${applicationLanguage}
      numExecutors: ${applicationNumExecutors}
      sparkVersion: ${applicationSparkVersion}
      applicationLogConfig:
        logGroupId: ${testLogGroup.id}
        logId: ${testLog.id}
      archiveUri: ${applicationArchiveUri}
      arguments: ${applicationArguments}
      className: ${applicationClassName}
      configuration: ${applicationConfiguration}
      definedTags:
        Operations.CostCenter: '42'
      description: ${applicationDescription}
      driverShapeConfig:
        memoryInGbs: ${applicationDriverShapeConfigMemoryInGbs}
        ocpus: ${applicationDriverShapeConfigOcpus}
      execute: ${applicationExecute}
      executorShapeConfig:
        memoryInGbs: ${applicationExecutorShapeConfigMemoryInGbs}
        ocpus: ${applicationExecutorShapeConfigOcpus}
      fileUri: ${applicationFileUri}
      freeformTags:
        Department: Finance
      idleTimeoutInMinutes: ${applicationIdleTimeoutInMinutes}
      logsBucketUri: ${applicationLogsBucketUri}
      maxDurationInMinutes: ${applicationMaxDurationInMinutes}
      metastoreId: ${metastoreId}
      parameters:
        - name: ${applicationParametersName}
          value: ${applicationParametersValue}
      poolId: ${testPool.id}
      privateEndpointId: ${testPrivateEndpoint.id}
      type: ${applicationType}
      warehouseBucketUri: ${applicationWarehouseBucketUri}
      terminateRunsOnDeletion: true
Create Application Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Application(name: string, args: ApplicationArgs, opts?: CustomResourceOptions);@overload
def Application(resource_name: str,
                args: ApplicationArgs,
                opts: Optional[ResourceOptions] = None)
@overload
def Application(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                display_name: Optional[str] = None,
                spark_version: Optional[str] = None,
                num_executors: Optional[int] = None,
                language: Optional[str] = None,
                compartment_id: Optional[str] = None,
                executor_shape: Optional[str] = None,
                driver_shape: Optional[str] = None,
                description: Optional[str] = None,
                logs_bucket_uri: Optional[str] = None,
                defined_tags: Optional[Mapping[str, str]] = None,
                driver_shape_config: Optional[ApplicationDriverShapeConfigArgs] = None,
                execute: Optional[str] = None,
                configuration: Optional[Mapping[str, str]] = None,
                executor_shape_config: Optional[ApplicationExecutorShapeConfigArgs] = None,
                file_uri: Optional[str] = None,
                freeform_tags: Optional[Mapping[str, str]] = None,
                idle_timeout_in_minutes: Optional[str] = None,
                class_name: Optional[str] = None,
                application_log_config: Optional[ApplicationApplicationLogConfigArgs] = None,
                max_duration_in_minutes: Optional[str] = None,
                metastore_id: Optional[str] = None,
                arguments: Optional[Sequence[str]] = None,
                parameters: Optional[Sequence[ApplicationParameterArgs]] = None,
                pool_id: Optional[str] = None,
                private_endpoint_id: Optional[str] = None,
                archive_uri: Optional[str] = None,
                terminate_runs_on_deletion: Optional[bool] = None,
                type: Optional[str] = None,
                warehouse_bucket_uri: Optional[str] = None)func NewApplication(ctx *Context, name string, args ApplicationArgs, opts ...ResourceOption) (*Application, error)public Application(string name, ApplicationArgs args, CustomResourceOptions? opts = null)
public Application(String name, ApplicationArgs args)
public Application(String name, ApplicationArgs args, CustomResourceOptions options)
type: oci:DataFlow:Application
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ApplicationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ApplicationArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ApplicationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ApplicationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ApplicationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var applicationResource = new Oci.DataFlow.Application("applicationResource", new()
{
    DisplayName = "string",
    SparkVersion = "string",
    NumExecutors = 0,
    Language = "string",
    CompartmentId = "string",
    ExecutorShape = "string",
    DriverShape = "string",
    Description = "string",
    LogsBucketUri = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    DriverShapeConfig = new Oci.DataFlow.Inputs.ApplicationDriverShapeConfigArgs
    {
        MemoryInGbs = 0,
        Ocpus = 0,
    },
    Execute = "string",
    Configuration = 
    {
        { "string", "string" },
    },
    ExecutorShapeConfig = new Oci.DataFlow.Inputs.ApplicationExecutorShapeConfigArgs
    {
        MemoryInGbs = 0,
        Ocpus = 0,
    },
    FileUri = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
    IdleTimeoutInMinutes = "string",
    ClassName = "string",
    ApplicationLogConfig = new Oci.DataFlow.Inputs.ApplicationApplicationLogConfigArgs
    {
        LogGroupId = "string",
        LogId = "string",
    },
    MaxDurationInMinutes = "string",
    MetastoreId = "string",
    Arguments = new[]
    {
        "string",
    },
    Parameters = new[]
    {
        new Oci.DataFlow.Inputs.ApplicationParameterArgs
        {
            Name = "string",
            Value = "string",
        },
    },
    PoolId = "string",
    PrivateEndpointId = "string",
    ArchiveUri = "string",
    TerminateRunsOnDeletion = false,
    Type = "string",
    WarehouseBucketUri = "string",
});
example, err := dataflow.NewApplication(ctx, "applicationResource", &dataflow.ApplicationArgs{
	DisplayName:   pulumi.String("string"),
	SparkVersion:  pulumi.String("string"),
	NumExecutors:  pulumi.Int(0),
	Language:      pulumi.String("string"),
	CompartmentId: pulumi.String("string"),
	ExecutorShape: pulumi.String("string"),
	DriverShape:   pulumi.String("string"),
	Description:   pulumi.String("string"),
	LogsBucketUri: pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	DriverShapeConfig: &dataflow.ApplicationDriverShapeConfigArgs{
		MemoryInGbs: pulumi.Float64(0),
		Ocpus:       pulumi.Float64(0),
	},
	Execute: pulumi.String("string"),
	Configuration: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	ExecutorShapeConfig: &dataflow.ApplicationExecutorShapeConfigArgs{
		MemoryInGbs: pulumi.Float64(0),
		Ocpus:       pulumi.Float64(0),
	},
	FileUri: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	IdleTimeoutInMinutes: pulumi.String("string"),
	ClassName:            pulumi.String("string"),
	ApplicationLogConfig: &dataflow.ApplicationApplicationLogConfigArgs{
		LogGroupId: pulumi.String("string"),
		LogId:      pulumi.String("string"),
	},
	MaxDurationInMinutes: pulumi.String("string"),
	MetastoreId:          pulumi.String("string"),
	Arguments: pulumi.StringArray{
		pulumi.String("string"),
	},
	Parameters: dataflow.ApplicationParameterArray{
		&dataflow.ApplicationParameterArgs{
			Name:  pulumi.String("string"),
			Value: pulumi.String("string"),
		},
	},
	PoolId:                  pulumi.String("string"),
	PrivateEndpointId:       pulumi.String("string"),
	ArchiveUri:              pulumi.String("string"),
	TerminateRunsOnDeletion: pulumi.Bool(false),
	Type:                    pulumi.String("string"),
	WarehouseBucketUri:      pulumi.String("string"),
})
var applicationResource = new com.pulumi.oci.DataFlow.Application("applicationResource", com.pulumi.oci.DataFlow.ApplicationArgs.builder()
    .displayName("string")
    .sparkVersion("string")
    .numExecutors(0)
    .language("string")
    .compartmentId("string")
    .executorShape("string")
    .driverShape("string")
    .description("string")
    .logsBucketUri("string")
    .definedTags(Map.of("string", "string"))
    .driverShapeConfig(ApplicationDriverShapeConfigArgs.builder()
        .memoryInGbs(0.0)
        .ocpus(0.0)
        .build())
    .execute("string")
    .configuration(Map.of("string", "string"))
    .executorShapeConfig(ApplicationExecutorShapeConfigArgs.builder()
        .memoryInGbs(0.0)
        .ocpus(0.0)
        .build())
    .fileUri("string")
    .freeformTags(Map.of("string", "string"))
    .idleTimeoutInMinutes("string")
    .className("string")
    .applicationLogConfig(ApplicationApplicationLogConfigArgs.builder()
        .logGroupId("string")
        .logId("string")
        .build())
    .maxDurationInMinutes("string")
    .metastoreId("string")
    .arguments("string")
    .parameters(ApplicationParameterArgs.builder()
        .name("string")
        .value("string")
        .build())
    .poolId("string")
    .privateEndpointId("string")
    .archiveUri("string")
    .terminateRunsOnDeletion(false)
    .type("string")
    .warehouseBucketUri("string")
    .build());
application_resource = oci.data_flow.Application("applicationResource",
    display_name="string",
    spark_version="string",
    num_executors=0,
    language="string",
    compartment_id="string",
    executor_shape="string",
    driver_shape="string",
    description="string",
    logs_bucket_uri="string",
    defined_tags={
        "string": "string",
    },
    driver_shape_config={
        "memory_in_gbs": 0,
        "ocpus": 0,
    },
    execute="string",
    configuration={
        "string": "string",
    },
    executor_shape_config={
        "memory_in_gbs": 0,
        "ocpus": 0,
    },
    file_uri="string",
    freeform_tags={
        "string": "string",
    },
    idle_timeout_in_minutes="string",
    class_name="string",
    application_log_config={
        "log_group_id": "string",
        "log_id": "string",
    },
    max_duration_in_minutes="string",
    metastore_id="string",
    arguments=["string"],
    parameters=[{
        "name": "string",
        "value": "string",
    }],
    pool_id="string",
    private_endpoint_id="string",
    archive_uri="string",
    terminate_runs_on_deletion=False,
    type="string",
    warehouse_bucket_uri="string")
const applicationResource = new oci.dataflow.Application("applicationResource", {
    displayName: "string",
    sparkVersion: "string",
    numExecutors: 0,
    language: "string",
    compartmentId: "string",
    executorShape: "string",
    driverShape: "string",
    description: "string",
    logsBucketUri: "string",
    definedTags: {
        string: "string",
    },
    driverShapeConfig: {
        memoryInGbs: 0,
        ocpus: 0,
    },
    execute: "string",
    configuration: {
        string: "string",
    },
    executorShapeConfig: {
        memoryInGbs: 0,
        ocpus: 0,
    },
    fileUri: "string",
    freeformTags: {
        string: "string",
    },
    idleTimeoutInMinutes: "string",
    className: "string",
    applicationLogConfig: {
        logGroupId: "string",
        logId: "string",
    },
    maxDurationInMinutes: "string",
    metastoreId: "string",
    arguments: ["string"],
    parameters: [{
        name: "string",
        value: "string",
    }],
    poolId: "string",
    privateEndpointId: "string",
    archiveUri: "string",
    terminateRunsOnDeletion: false,
    type: "string",
    warehouseBucketUri: "string",
});
type: oci:DataFlow:Application
properties:
    applicationLogConfig:
        logGroupId: string
        logId: string
    archiveUri: string
    arguments:
        - string
    className: string
    compartmentId: string
    configuration:
        string: string
    definedTags:
        string: string
    description: string
    displayName: string
    driverShape: string
    driverShapeConfig:
        memoryInGbs: 0
        ocpus: 0
    execute: string
    executorShape: string
    executorShapeConfig:
        memoryInGbs: 0
        ocpus: 0
    fileUri: string
    freeformTags:
        string: string
    idleTimeoutInMinutes: string
    language: string
    logsBucketUri: string
    maxDurationInMinutes: string
    metastoreId: string
    numExecutors: 0
    parameters:
        - name: string
          value: string
    poolId: string
    privateEndpointId: string
    sparkVersion: string
    terminateRunsOnDeletion: false
    type: string
    warehouseBucketUri: string
Application Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Application resource accepts the following input properties:
- CompartmentId string
- (Updatable) The OCID of a compartment.
- DisplayName string
- (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
- DriverShape string
- (Updatable) The VM shape for the driver. Sets the driver cores and memory.
- ExecutorShape string
- (Updatable) The VM shape for the executors. Sets the executor cores and memory.
- Language string
- (Updatable) The Spark language.
- NumExecutors int
- (Updatable) The number of executor VMs requested.
- SparkVersion string
- (Updatable) The Spark version utilized to run the application.
- ApplicationLog ApplicationConfig Application Log Config 
- (Updatable) Logging details of Application logs for Data Flow Run.
- ArchiveUri string
- (Updatable) 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.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- Arguments List<string>
- (Updatable) 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, wherenameis 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"
- ClassName string
- (Updatable) The class for the application.
- Configuration Dictionary<string, string>
- (Updatable) 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.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- Description string
- (Updatable) A user-friendly description. Avoid entering confidential information.
- DriverShape ApplicationConfig Driver Shape Config 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- Execute string
- (Updatable) 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 10Note: 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.
- ExecutorShape ApplicationConfig Executor Shape Config 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- FileUri string
- (Updatable) An Oracle Cloud Infrastructure URI of the file containing the application to execute. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- Dictionary<string, string>
- (Updatable) 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"}
- IdleTimeout stringIn Minutes 
- (Updatable) 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)
- LogsBucket stringUri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- MaxDuration stringIn Minutes 
- (Updatable) 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_PROGRESSstate.
- MetastoreId string
- (Updatable) The OCID of Oracle Cloud Infrastructure Hive Metastore.
- Parameters
List<ApplicationParameter> 
- (Updatable) 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}"} ]
- PoolId string
- (Updatable) The OCID of a pool. Unique Id to indentify a dataflow pool resource.
- PrivateEndpoint stringId 
- (Updatable) The OCID of a private endpoint.
- TerminateRuns boolOn Deletion 
- A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Type string
- The Spark application processing type.
- WarehouseBucket stringUri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- CompartmentId string
- (Updatable) The OCID of a compartment.
- DisplayName string
- (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
- DriverShape string
- (Updatable) The VM shape for the driver. Sets the driver cores and memory.
- ExecutorShape string
- (Updatable) The VM shape for the executors. Sets the executor cores and memory.
- Language string
- (Updatable) The Spark language.
- NumExecutors int
- (Updatable) The number of executor VMs requested.
- SparkVersion string
- (Updatable) The Spark version utilized to run the application.
- ApplicationLog ApplicationConfig Application Log Config Args 
- (Updatable) Logging details of Application logs for Data Flow Run.
- ArchiveUri string
- (Updatable) 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.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- Arguments []string
- (Updatable) 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, wherenameis 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"
- ClassName string
- (Updatable) The class for the application.
- Configuration map[string]string
- (Updatable) 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.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- Description string
- (Updatable) A user-friendly description. Avoid entering confidential information.
- DriverShape ApplicationConfig Driver Shape Config Args 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- Execute string
- (Updatable) 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 10Note: 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.
- ExecutorShape ApplicationConfig Executor Shape Config Args 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- FileUri string
- (Updatable) An Oracle Cloud Infrastructure URI of the file containing the application to execute. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- map[string]string
- (Updatable) 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"}
- IdleTimeout stringIn Minutes 
- (Updatable) 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)
- LogsBucket stringUri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- MaxDuration stringIn Minutes 
- (Updatable) 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_PROGRESSstate.
- MetastoreId string
- (Updatable) The OCID of Oracle Cloud Infrastructure Hive Metastore.
- Parameters
[]ApplicationParameter Args 
- (Updatable) 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}"} ]
- PoolId string
- (Updatable) The OCID of a pool. Unique Id to indentify a dataflow pool resource.
- PrivateEndpoint stringId 
- (Updatable) The OCID of a private endpoint.
- TerminateRuns boolOn Deletion 
- A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Type string
- The Spark application processing type.
- WarehouseBucket stringUri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- compartmentId String
- (Updatable) The OCID of a compartment.
- displayName String
- (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
- driverShape String
- (Updatable) The VM shape for the driver. Sets the driver cores and memory.
- executorShape String
- (Updatable) The VM shape for the executors. Sets the executor cores and memory.
- language String
- (Updatable) The Spark language.
- numExecutors Integer
- (Updatable) The number of executor VMs requested.
- sparkVersion String
- (Updatable) The Spark version utilized to run the application.
- applicationLog ApplicationConfig Application Log Config 
- (Updatable) Logging details of Application logs for Data Flow Run.
- archiveUri String
- (Updatable) 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.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- arguments List<String>
- (Updatable) 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, wherenameis 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"
- className String
- (Updatable) The class for the application.
- configuration Map<String,String>
- (Updatable) 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.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description String
- (Updatable) A user-friendly description. Avoid entering confidential information.
- driverShape ApplicationConfig Driver Shape Config 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- execute String
- (Updatable) 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 10Note: 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.
- executorShape ApplicationConfig Executor Shape Config 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- fileUri String
- (Updatable) An Oracle Cloud Infrastructure URI of the file containing the application to execute. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- Map<String,String>
- (Updatable) 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"}
- idleTimeout StringIn Minutes 
- (Updatable) 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)
- logsBucket StringUri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- maxDuration StringIn Minutes 
- (Updatable) 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_PROGRESSstate.
- metastoreId String
- (Updatable) The OCID of Oracle Cloud Infrastructure Hive Metastore.
- parameters
List<ApplicationParameter> 
- (Updatable) 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}"} ]
- poolId String
- (Updatable) The OCID of a pool. Unique Id to indentify a dataflow pool resource.
- privateEndpoint StringId 
- (Updatable) The OCID of a private endpoint.
- terminateRuns BooleanOn Deletion 
- A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- type String
- The Spark application processing type.
- warehouseBucket StringUri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- compartmentId string
- (Updatable) The OCID of a compartment.
- displayName string
- (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
- driverShape string
- (Updatable) The VM shape for the driver. Sets the driver cores and memory.
- executorShape string
- (Updatable) The VM shape for the executors. Sets the executor cores and memory.
- language string
- (Updatable) The Spark language.
- numExecutors number
- (Updatable) The number of executor VMs requested.
- sparkVersion string
- (Updatable) The Spark version utilized to run the application.
- applicationLog ApplicationConfig Application Log Config 
- (Updatable) Logging details of Application logs for Data Flow Run.
- archiveUri string
- (Updatable) 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.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- arguments string[]
- (Updatable) 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, wherenameis 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"
- className string
- (Updatable) The class for the application.
- configuration {[key: string]: string}
- (Updatable) 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.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description string
- (Updatable) A user-friendly description. Avoid entering confidential information.
- driverShape ApplicationConfig Driver Shape Config 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- execute string
- (Updatable) 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 10Note: 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.
- executorShape ApplicationConfig Executor Shape Config 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- fileUri string
- (Updatable) An Oracle Cloud Infrastructure URI of the file containing the application to execute. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- {[key: string]: string}
- (Updatable) 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"}
- idleTimeout stringIn Minutes 
- (Updatable) 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)
- logsBucket stringUri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- maxDuration stringIn Minutes 
- (Updatable) 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_PROGRESSstate.
- metastoreId string
- (Updatable) The OCID of Oracle Cloud Infrastructure Hive Metastore.
- parameters
ApplicationParameter[] 
- (Updatable) 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}"} ]
- poolId string
- (Updatable) The OCID of a pool. Unique Id to indentify a dataflow pool resource.
- privateEndpoint stringId 
- (Updatable) The OCID of a private endpoint.
- terminateRuns booleanOn Deletion 
- A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- type string
- The Spark application processing type.
- warehouseBucket stringUri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- compartment_id str
- (Updatable) The OCID of a compartment.
- display_name str
- (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
- driver_shape str
- (Updatable) The VM shape for the driver. Sets the driver cores and memory.
- executor_shape str
- (Updatable) The VM shape for the executors. Sets the executor cores and memory.
- language str
- (Updatable) The Spark language.
- num_executors int
- (Updatable) The number of executor VMs requested.
- spark_version str
- (Updatable) The Spark version utilized to run the application.
- application_log_ Applicationconfig Application Log Config Args 
- (Updatable) Logging details of Application logs for Data Flow Run.
- archive_uri str
- (Updatable) 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.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- arguments Sequence[str]
- (Updatable) 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, wherenameis 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"
- class_name str
- (Updatable) The class for the application.
- configuration Mapping[str, str]
- (Updatable) 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.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description str
- (Updatable) A user-friendly description. Avoid entering confidential information.
- driver_shape_ Applicationconfig Driver Shape Config Args 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- execute str
- (Updatable) 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 10Note: 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.
- executor_shape_ Applicationconfig Executor Shape Config Args 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- file_uri str
- (Updatable) An Oracle Cloud Infrastructure URI of the file containing the application to execute. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- Mapping[str, str]
- (Updatable) 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"}
- idle_timeout_ strin_ minutes 
- (Updatable) 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)
- logs_bucket_ struri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- max_duration_ strin_ minutes 
- (Updatable) 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_PROGRESSstate.
- metastore_id str
- (Updatable) The OCID of Oracle Cloud Infrastructure Hive Metastore.
- parameters
Sequence[ApplicationParameter Args] 
- (Updatable) 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}"} ]
- pool_id str
- (Updatable) The OCID of a pool. Unique Id to indentify a dataflow pool resource.
- private_endpoint_ strid 
- (Updatable) The OCID of a private endpoint.
- terminate_runs_ boolon_ deletion 
- A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- type str
- The Spark application processing type.
- warehouse_bucket_ struri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- compartmentId String
- (Updatable) The OCID of a compartment.
- displayName String
- (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
- driverShape String
- (Updatable) The VM shape for the driver. Sets the driver cores and memory.
- executorShape String
- (Updatable) The VM shape for the executors. Sets the executor cores and memory.
- language String
- (Updatable) The Spark language.
- numExecutors Number
- (Updatable) The number of executor VMs requested.
- sparkVersion String
- (Updatable) The Spark version utilized to run the application.
- applicationLog Property MapConfig 
- (Updatable) Logging details of Application logs for Data Flow Run.
- archiveUri String
- (Updatable) 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.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- arguments List<String>
- (Updatable) 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, wherenameis 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"
- className String
- (Updatable) The class for the application.
- configuration Map<String>
- (Updatable) 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.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description String
- (Updatable) A user-friendly description. Avoid entering confidential information.
- driverShape Property MapConfig 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- execute String
- (Updatable) 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 10Note: 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.
- executorShape Property MapConfig 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- fileUri String
- (Updatable) An Oracle Cloud Infrastructure URI of the file containing the application to execute. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- Map<String>
- (Updatable) 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"}
- idleTimeout StringIn Minutes 
- (Updatable) 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)
- logsBucket StringUri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- maxDuration StringIn Minutes 
- (Updatable) 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_PROGRESSstate.
- metastoreId String
- (Updatable) The OCID of Oracle Cloud Infrastructure Hive Metastore.
- parameters List<Property Map>
- (Updatable) 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}"} ]
- poolId String
- (Updatable) The OCID of a pool. Unique Id to indentify a dataflow pool resource.
- privateEndpoint StringId 
- (Updatable) The OCID of a private endpoint.
- terminateRuns BooleanOn Deletion 
- A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- type String
- The Spark application processing type.
- warehouseBucket StringUri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
Outputs
All input properties are implicitly available as output properties. Additionally, the Application resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- OwnerPrincipal stringId 
- The OCID of the user who created the resource.
- OwnerUser stringName 
- The username of the user who created the resource. If the username of the owner does not exist, nullwill be returned and the caller should refer to the ownerPrincipalId value instead.
- State string
- The current state of this application.
- TimeCreated string
- The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- TimeUpdated string
- The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- Id string
- The provider-assigned unique ID for this managed resource.
- OwnerPrincipal stringId 
- The OCID of the user who created the resource.
- OwnerUser stringName 
- The username of the user who created the resource. If the username of the owner does not exist, nullwill be returned and the caller should refer to the ownerPrincipalId value instead.
- State string
- The current state of this application.
- TimeCreated string
- The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- TimeUpdated string
- The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- id String
- The provider-assigned unique ID for this managed resource.
- ownerPrincipal StringId 
- The OCID of the user who created the resource.
- ownerUser StringName 
- The username of the user who created the resource. If the username of the owner does not exist, nullwill be returned and the caller should refer to the ownerPrincipalId value instead.
- state String
- The current state of this application.
- timeCreated String
- The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- timeUpdated String
- The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- id string
- The provider-assigned unique ID for this managed resource.
- ownerPrincipal stringId 
- The OCID of the user who created the resource.
- ownerUser stringName 
- The username of the user who created the resource. If the username of the owner does not exist, nullwill be returned and the caller should refer to the ownerPrincipalId value instead.
- state string
- The current state of this application.
- timeCreated string
- The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- timeUpdated string
- The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- id str
- The provider-assigned unique ID for this managed resource.
- owner_principal_ strid 
- The OCID of the user who created the resource.
- owner_user_ strname 
- The username of the user who created the resource. If the username of the owner does not exist, nullwill be returned and the caller should refer to the ownerPrincipalId value instead.
- state str
- The current state of this application.
- time_created str
- The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- time_updated str
- The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- id String
- The provider-assigned unique ID for this managed resource.
- ownerPrincipal StringId 
- The OCID of the user who created the resource.
- ownerUser StringName 
- The username of the user who created the resource. If the username of the owner does not exist, nullwill be returned and the caller should refer to the ownerPrincipalId value instead.
- state String
- The current state of this application.
- timeCreated String
- The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- timeUpdated String
- The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
Look up Existing Application Resource
Get an existing Application resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ApplicationState, opts?: CustomResourceOptions): Application@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        application_log_config: Optional[ApplicationApplicationLogConfigArgs] = None,
        archive_uri: Optional[str] = None,
        arguments: Optional[Sequence[str]] = None,
        class_name: Optional[str] = None,
        compartment_id: Optional[str] = None,
        configuration: Optional[Mapping[str, str]] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        driver_shape: Optional[str] = None,
        driver_shape_config: Optional[ApplicationDriverShapeConfigArgs] = None,
        execute: Optional[str] = None,
        executor_shape: Optional[str] = None,
        executor_shape_config: Optional[ApplicationExecutorShapeConfigArgs] = None,
        file_uri: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        idle_timeout_in_minutes: Optional[str] = None,
        language: Optional[str] = None,
        logs_bucket_uri: Optional[str] = None,
        max_duration_in_minutes: Optional[str] = None,
        metastore_id: Optional[str] = None,
        num_executors: Optional[int] = None,
        owner_principal_id: Optional[str] = None,
        owner_user_name: Optional[str] = None,
        parameters: Optional[Sequence[ApplicationParameterArgs]] = None,
        pool_id: Optional[str] = None,
        private_endpoint_id: Optional[str] = None,
        spark_version: Optional[str] = None,
        state: Optional[str] = None,
        terminate_runs_on_deletion: Optional[bool] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None,
        type: Optional[str] = None,
        warehouse_bucket_uri: Optional[str] = None) -> Applicationfunc GetApplication(ctx *Context, name string, id IDInput, state *ApplicationState, opts ...ResourceOption) (*Application, error)public static Application Get(string name, Input<string> id, ApplicationState? state, CustomResourceOptions? opts = null)public static Application get(String name, Output<String> id, ApplicationState state, CustomResourceOptions options)resources:  _:    type: oci:DataFlow:Application    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- ApplicationLog ApplicationConfig Application Log Config 
- (Updatable) Logging details of Application logs for Data Flow Run.
- ArchiveUri string
- (Updatable) 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.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- Arguments List<string>
- (Updatable) 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, wherenameis 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"
- ClassName string
- (Updatable) The class for the application.
- CompartmentId string
- (Updatable) The OCID of a compartment.
- Configuration Dictionary<string, string>
- (Updatable) 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.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- Description string
- (Updatable) A user-friendly description. Avoid entering confidential information.
- DisplayName string
- (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
- DriverShape string
- (Updatable) The VM shape for the driver. Sets the driver cores and memory.
- DriverShape ApplicationConfig Driver Shape Config 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- Execute string
- (Updatable) 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 10Note: 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.
- ExecutorShape string
- (Updatable) The VM shape for the executors. Sets the executor cores and memory.
- ExecutorShape ApplicationConfig Executor Shape Config 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- FileUri string
- (Updatable) An Oracle Cloud Infrastructure URI of the file containing the application to execute. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- Dictionary<string, string>
- (Updatable) 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"}
- IdleTimeout stringIn Minutes 
- (Updatable) 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)
- Language string
- (Updatable) The Spark language.
- LogsBucket stringUri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- MaxDuration stringIn Minutes 
- (Updatable) 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_PROGRESSstate.
- MetastoreId string
- (Updatable) The OCID of Oracle Cloud Infrastructure Hive Metastore.
- NumExecutors int
- (Updatable) The number of executor VMs requested.
- OwnerPrincipal stringId 
- The OCID of the user who created the resource.
- OwnerUser stringName 
- The username of the user who created the resource. If the username of the owner does not exist, nullwill be returned and the caller should refer to the ownerPrincipalId value instead.
- Parameters
List<ApplicationParameter> 
- (Updatable) 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}"} ]
- PoolId string
- (Updatable) The OCID of a pool. Unique Id to indentify a dataflow pool resource.
- PrivateEndpoint stringId 
- (Updatable) The OCID of a private endpoint.
- SparkVersion string
- (Updatable) The Spark version utilized to run the application.
- State string
- The current state of this application.
- TerminateRuns boolOn Deletion 
- A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- TimeCreated string
- The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- TimeUpdated string
- The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- Type string
- The Spark application processing type.
- WarehouseBucket stringUri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- ApplicationLog ApplicationConfig Application Log Config Args 
- (Updatable) Logging details of Application logs for Data Flow Run.
- ArchiveUri string
- (Updatable) 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.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- Arguments []string
- (Updatable) 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, wherenameis 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"
- ClassName string
- (Updatable) The class for the application.
- CompartmentId string
- (Updatable) The OCID of a compartment.
- Configuration map[string]string
- (Updatable) 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.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- Description string
- (Updatable) A user-friendly description. Avoid entering confidential information.
- DisplayName string
- (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
- DriverShape string
- (Updatable) The VM shape for the driver. Sets the driver cores and memory.
- DriverShape ApplicationConfig Driver Shape Config Args 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- Execute string
- (Updatable) 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 10Note: 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.
- ExecutorShape string
- (Updatable) The VM shape for the executors. Sets the executor cores and memory.
- ExecutorShape ApplicationConfig Executor Shape Config Args 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- FileUri string
- (Updatable) An Oracle Cloud Infrastructure URI of the file containing the application to execute. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- map[string]string
- (Updatable) 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"}
- IdleTimeout stringIn Minutes 
- (Updatable) 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)
- Language string
- (Updatable) The Spark language.
- LogsBucket stringUri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- MaxDuration stringIn Minutes 
- (Updatable) 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_PROGRESSstate.
- MetastoreId string
- (Updatable) The OCID of Oracle Cloud Infrastructure Hive Metastore.
- NumExecutors int
- (Updatable) The number of executor VMs requested.
- OwnerPrincipal stringId 
- The OCID of the user who created the resource.
- OwnerUser stringName 
- The username of the user who created the resource. If the username of the owner does not exist, nullwill be returned and the caller should refer to the ownerPrincipalId value instead.
- Parameters
[]ApplicationParameter Args 
- (Updatable) 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}"} ]
- PoolId string
- (Updatable) The OCID of a pool. Unique Id to indentify a dataflow pool resource.
- PrivateEndpoint stringId 
- (Updatable) The OCID of a private endpoint.
- SparkVersion string
- (Updatable) The Spark version utilized to run the application.
- State string
- The current state of this application.
- TerminateRuns boolOn Deletion 
- A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- TimeCreated string
- The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- TimeUpdated string
- The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- Type string
- The Spark application processing type.
- WarehouseBucket stringUri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- applicationLog ApplicationConfig Application Log Config 
- (Updatable) Logging details of Application logs for Data Flow Run.
- archiveUri String
- (Updatable) 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.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- arguments List<String>
- (Updatable) 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, wherenameis 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"
- className String
- (Updatable) The class for the application.
- compartmentId String
- (Updatable) The OCID of a compartment.
- configuration Map<String,String>
- (Updatable) 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.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description String
- (Updatable) A user-friendly description. Avoid entering confidential information.
- displayName String
- (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
- driverShape String
- (Updatable) The VM shape for the driver. Sets the driver cores and memory.
- driverShape ApplicationConfig Driver Shape Config 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- execute String
- (Updatable) 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 10Note: 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.
- executorShape String
- (Updatable) The VM shape for the executors. Sets the executor cores and memory.
- executorShape ApplicationConfig Executor Shape Config 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- fileUri String
- (Updatable) An Oracle Cloud Infrastructure URI of the file containing the application to execute. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- Map<String,String>
- (Updatable) 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"}
- idleTimeout StringIn Minutes 
- (Updatable) 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)
- language String
- (Updatable) The Spark language.
- logsBucket StringUri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- maxDuration StringIn Minutes 
- (Updatable) 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_PROGRESSstate.
- metastoreId String
- (Updatable) The OCID of Oracle Cloud Infrastructure Hive Metastore.
- numExecutors Integer
- (Updatable) The number of executor VMs requested.
- ownerPrincipal StringId 
- The OCID of the user who created the resource.
- ownerUser StringName 
- The username of the user who created the resource. If the username of the owner does not exist, nullwill be returned and the caller should refer to the ownerPrincipalId value instead.
- parameters
List<ApplicationParameter> 
- (Updatable) 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}"} ]
- poolId String
- (Updatable) The OCID of a pool. Unique Id to indentify a dataflow pool resource.
- privateEndpoint StringId 
- (Updatable) The OCID of a private endpoint.
- sparkVersion String
- (Updatable) The Spark version utilized to run the application.
- state String
- The current state of this application.
- terminateRuns BooleanOn Deletion 
- A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- timeCreated String
- The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- timeUpdated String
- The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- type String
- The Spark application processing type.
- warehouseBucket StringUri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- applicationLog ApplicationConfig Application Log Config 
- (Updatable) Logging details of Application logs for Data Flow Run.
- archiveUri string
- (Updatable) 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.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- arguments string[]
- (Updatable) 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, wherenameis 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"
- className string
- (Updatable) The class for the application.
- compartmentId string
- (Updatable) The OCID of a compartment.
- configuration {[key: string]: string}
- (Updatable) 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.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description string
- (Updatable) A user-friendly description. Avoid entering confidential information.
- displayName string
- (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
- driverShape string
- (Updatable) The VM shape for the driver. Sets the driver cores and memory.
- driverShape ApplicationConfig Driver Shape Config 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- execute string
- (Updatable) 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 10Note: 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.
- executorShape string
- (Updatable) The VM shape for the executors. Sets the executor cores and memory.
- executorShape ApplicationConfig Executor Shape Config 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- fileUri string
- (Updatable) An Oracle Cloud Infrastructure URI of the file containing the application to execute. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- {[key: string]: string}
- (Updatable) 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"}
- idleTimeout stringIn Minutes 
- (Updatable) 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)
- language string
- (Updatable) The Spark language.
- logsBucket stringUri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- maxDuration stringIn Minutes 
- (Updatable) 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_PROGRESSstate.
- metastoreId string
- (Updatable) The OCID of Oracle Cloud Infrastructure Hive Metastore.
- numExecutors number
- (Updatable) The number of executor VMs requested.
- ownerPrincipal stringId 
- The OCID of the user who created the resource.
- ownerUser stringName 
- The username of the user who created the resource. If the username of the owner does not exist, nullwill be returned and the caller should refer to the ownerPrincipalId value instead.
- parameters
ApplicationParameter[] 
- (Updatable) 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}"} ]
- poolId string
- (Updatable) The OCID of a pool. Unique Id to indentify a dataflow pool resource.
- privateEndpoint stringId 
- (Updatable) The OCID of a private endpoint.
- sparkVersion string
- (Updatable) The Spark version utilized to run the application.
- state string
- The current state of this application.
- terminateRuns booleanOn Deletion 
- A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- timeCreated string
- The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- timeUpdated string
- The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- type string
- The Spark application processing type.
- warehouseBucket stringUri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- application_log_ Applicationconfig Application Log Config Args 
- (Updatable) Logging details of Application logs for Data Flow Run.
- archive_uri str
- (Updatable) 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.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- arguments Sequence[str]
- (Updatable) 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, wherenameis 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"
- class_name str
- (Updatable) The class for the application.
- compartment_id str
- (Updatable) The OCID of a compartment.
- configuration Mapping[str, str]
- (Updatable) 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.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description str
- (Updatable) A user-friendly description. Avoid entering confidential information.
- display_name str
- (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
- driver_shape str
- (Updatable) The VM shape for the driver. Sets the driver cores and memory.
- driver_shape_ Applicationconfig Driver Shape Config Args 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- execute str
- (Updatable) 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 10Note: 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.
- executor_shape str
- (Updatable) The VM shape for the executors. Sets the executor cores and memory.
- executor_shape_ Applicationconfig Executor Shape Config Args 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- file_uri str
- (Updatable) An Oracle Cloud Infrastructure URI of the file containing the application to execute. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- Mapping[str, str]
- (Updatable) 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"}
- idle_timeout_ strin_ minutes 
- (Updatable) 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)
- language str
- (Updatable) The Spark language.
- logs_bucket_ struri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- max_duration_ strin_ minutes 
- (Updatable) 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_PROGRESSstate.
- metastore_id str
- (Updatable) The OCID of Oracle Cloud Infrastructure Hive Metastore.
- num_executors int
- (Updatable) The number of executor VMs requested.
- owner_principal_ strid 
- The OCID of the user who created the resource.
- owner_user_ strname 
- The username of the user who created the resource. If the username of the owner does not exist, nullwill be returned and the caller should refer to the ownerPrincipalId value instead.
- parameters
Sequence[ApplicationParameter Args] 
- (Updatable) 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}"} ]
- pool_id str
- (Updatable) The OCID of a pool. Unique Id to indentify a dataflow pool resource.
- private_endpoint_ strid 
- (Updatable) The OCID of a private endpoint.
- spark_version str
- (Updatable) The Spark version utilized to run the application.
- state str
- The current state of this application.
- terminate_runs_ boolon_ deletion 
- A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- time_created str
- The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- time_updated str
- The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- type str
- The Spark application processing type.
- warehouse_bucket_ struri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- applicationLog Property MapConfig 
- (Updatable) Logging details of Application logs for Data Flow Run.
- archiveUri String
- (Updatable) 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.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- arguments List<String>
- (Updatable) 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, wherenameis 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"
- className String
- (Updatable) The class for the application.
- compartmentId String
- (Updatable) The OCID of a compartment.
- configuration Map<String>
- (Updatable) 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.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- description String
- (Updatable) A user-friendly description. Avoid entering confidential information.
- displayName String
- (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
- driverShape String
- (Updatable) The VM shape for the driver. Sets the driver cores and memory.
- driverShape Property MapConfig 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- execute String
- (Updatable) 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 10Note: 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.
- executorShape String
- (Updatable) The VM shape for the executors. Sets the executor cores and memory.
- executorShape Property MapConfig 
- (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
- fileUri String
- (Updatable) An Oracle Cloud Infrastructure URI of the file containing the application to execute. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- Map<String>
- (Updatable) 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"}
- idleTimeout StringIn Minutes 
- (Updatable) 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)
- language String
- (Updatable) The Spark language.
- logsBucket StringUri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- maxDuration StringIn Minutes 
- (Updatable) 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_PROGRESSstate.
- metastoreId String
- (Updatable) The OCID of Oracle Cloud Infrastructure Hive Metastore.
- numExecutors Number
- (Updatable) The number of executor VMs requested.
- ownerPrincipal StringId 
- The OCID of the user who created the resource.
- ownerUser StringName 
- The username of the user who created the resource. If the username of the owner does not exist, nullwill be returned and the caller should refer to the ownerPrincipalId value instead.
- parameters List<Property Map>
- (Updatable) 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}"} ]
- poolId String
- (Updatable) The OCID of a pool. Unique Id to indentify a dataflow pool resource.
- privateEndpoint StringId 
- (Updatable) The OCID of a private endpoint.
- sparkVersion String
- (Updatable) The Spark version utilized to run the application.
- state String
- The current state of this application.
- terminateRuns BooleanOn Deletion 
- A boolean flag which indicates whether related non-terminal Run(s) for the Application should be terminated along with Application deletion or not. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- timeCreated String
- The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- timeUpdated String
- The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- type String
- The Spark application processing type.
- warehouseBucket StringUri 
- (Updatable) An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
Supporting Types
ApplicationApplicationLogConfig, ApplicationApplicationLogConfigArgs        
- LogGroup stringId 
- (Updatable) The log group id for where log objects will be for Data Flow Runs.
- LogId string
- (Updatable) The log id of the log object the Application Logs of Data Flow Run will be shipped to.
- LogGroup stringId 
- (Updatable) The log group id for where log objects will be for Data Flow Runs.
- LogId string
- (Updatable) The log id of the log object the Application Logs of Data Flow Run will be shipped to.
- logGroup StringId 
- (Updatable) The log group id for where log objects will be for Data Flow Runs.
- logId String
- (Updatable) The log id of the log object the Application Logs of Data Flow Run will be shipped to.
- logGroup stringId 
- (Updatable) The log group id for where log objects will be for Data Flow Runs.
- logId string
- (Updatable) The log id of the log object the Application Logs of Data Flow Run will be shipped to.
- log_group_ strid 
- (Updatable) The log group id for where log objects will be for Data Flow Runs.
- log_id str
- (Updatable) The log id of the log object the Application Logs of Data Flow Run will be shipped to.
- logGroup StringId 
- (Updatable) The log group id for where log objects will be for Data Flow Runs.
- logId String
- (Updatable) The log id of the log object the Application Logs of Data Flow Run will be shipped to.
ApplicationDriverShapeConfig, ApplicationDriverShapeConfigArgs        
- MemoryIn doubleGbs 
- (Updatable) The amount of memory used for the driver or executors.
- Ocpus double
- (Updatable) The total number of OCPUs used for the driver or executors. See here for details.
- MemoryIn float64Gbs 
- (Updatable) The amount of memory used for the driver or executors.
- Ocpus float64
- (Updatable) The total number of OCPUs used for the driver or executors. See here for details.
- memoryIn DoubleGbs 
- (Updatable) The amount of memory used for the driver or executors.
- ocpus Double
- (Updatable) The total number of OCPUs used for the driver or executors. See here for details.
- memoryIn numberGbs 
- (Updatable) The amount of memory used for the driver or executors.
- ocpus number
- (Updatable) The total number of OCPUs used for the driver or executors. See here for details.
- memory_in_ floatgbs 
- (Updatable) The amount of memory used for the driver or executors.
- ocpus float
- (Updatable) The total number of OCPUs used for the driver or executors. See here for details.
- memoryIn NumberGbs 
- (Updatable) The amount of memory used for the driver or executors.
- ocpus Number
- (Updatable) The total number of OCPUs used for the driver or executors. See here for details.
ApplicationExecutorShapeConfig, ApplicationExecutorShapeConfigArgs        
- MemoryIn doubleGbs 
- (Updatable) The amount of memory used for the driver or executors.
- Ocpus double
- (Updatable) The total number of OCPUs used for the driver or executors. See here for details.
- MemoryIn float64Gbs 
- (Updatable) The amount of memory used for the driver or executors.
- Ocpus float64
- (Updatable) The total number of OCPUs used for the driver or executors. See here for details.
- memoryIn DoubleGbs 
- (Updatable) The amount of memory used for the driver or executors.
- ocpus Double
- (Updatable) The total number of OCPUs used for the driver or executors. See here for details.
- memoryIn numberGbs 
- (Updatable) The amount of memory used for the driver or executors.
- ocpus number
- (Updatable) The total number of OCPUs used for the driver or executors. See here for details.
- memory_in_ floatgbs 
- (Updatable) The amount of memory used for the driver or executors.
- ocpus float
- (Updatable) The total number of OCPUs used for the driver or executors. See here for details.
- memoryIn NumberGbs 
- (Updatable) The amount of memory used for the driver or executors.
- ocpus Number
- (Updatable) The total number of OCPUs used for the driver or executors. See here for details.
ApplicationParameter, ApplicationParameterArgs    
- Name string
- (Updatable) The name of the parameter. It must be a string of one or more word characters (a-z, A-Z, 0-9, _). Examples: "iterations", "input_file"
- Value string
- (Updatable) The value of the parameter. It must be a string of 0 or more characters of any kind. Examples: "" (empty string), "10", "mydata.xml", "${x}"
- Name string
- (Updatable) The name of the parameter. It must be a string of one or more word characters (a-z, A-Z, 0-9, _). Examples: "iterations", "input_file"
- Value string
- (Updatable) The value of the parameter. It must be a string of 0 or more characters of any kind. Examples: "" (empty string), "10", "mydata.xml", "${x}"
- name String
- (Updatable) The name of the parameter. It must be a string of one or more word characters (a-z, A-Z, 0-9, _). Examples: "iterations", "input_file"
- value String
- (Updatable) The value of the parameter. It must be a string of 0 or more characters of any kind. Examples: "" (empty string), "10", "mydata.xml", "${x}"
- name string
- (Updatable) The name of the parameter. It must be a string of one or more word characters (a-z, A-Z, 0-9, _). Examples: "iterations", "input_file"
- value string
- (Updatable) The value of the parameter. It must be a string of 0 or more characters of any kind. Examples: "" (empty string), "10", "mydata.xml", "${x}"
- name str
- (Updatable) The name of the parameter. It must be a string of one or more word characters (a-z, A-Z, 0-9, _). Examples: "iterations", "input_file"
- value str
- (Updatable) The value of the parameter. It must be a string of 0 or more characters of any kind. Examples: "" (empty string), "10", "mydata.xml", "${x}"
- name String
- (Updatable) The name of the parameter. It must be a string of one or more word characters (a-z, A-Z, 0-9, _). Examples: "iterations", "input_file"
- value String
- (Updatable) The value of the parameter. It must be a string of 0 or more characters of any kind. Examples: "" (empty string), "10", "mydata.xml", "${x}"
Import
Applications can be imported using the id, e.g.
$ pulumi import oci:DataFlow/application:Application test_application "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.