1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataFlow
  5. Application
Oracle Cloud Infrastructure v1.29.0 published on Thursday, Mar 28, 2024 by Pulumi

oci.DataFlow.Application

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.29.0 published on Thursday, Mar 28, 2024 by Pulumi

    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("testApplication", {
        compartmentId: _var.compartment_id,
        displayName: _var.application_display_name,
        driverShape: _var.application_driver_shape,
        executorShape: _var.application_executor_shape,
        language: _var.application_language,
        numExecutors: _var.application_num_executors,
        sparkVersion: _var.application_spark_version,
        applicationLogConfig: {
            logGroupId: oci_logging_log_group.test_log_group.id,
            logId: oci_logging_log.test_log.id,
        },
        archiveUri: _var.application_archive_uri,
        arguments: _var.application_arguments,
        className: _var.application_class_name,
        configuration: _var.application_configuration,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        description: _var.application_description,
        driverShapeConfig: {
            memoryInGbs: _var.application_driver_shape_config_memory_in_gbs,
            ocpus: _var.application_driver_shape_config_ocpus,
        },
        execute: _var.application_execute,
        executorShapeConfig: {
            memoryInGbs: _var.application_executor_shape_config_memory_in_gbs,
            ocpus: _var.application_executor_shape_config_ocpus,
        },
        fileUri: _var.application_file_uri,
        freeformTags: {
            Department: "Finance",
        },
        idleTimeoutInMinutes: _var.application_idle_timeout_in_minutes,
        logsBucketUri: _var.application_logs_bucket_uri,
        maxDurationInMinutes: _var.application_max_duration_in_minutes,
        metastoreId: _var.metastore_id,
        parameters: [{
            name: _var.application_parameters_name,
            value: _var.application_parameters_value,
        }],
        poolId: oci_dataflow_pool.test_pool.id,
        privateEndpointId: oci_dataflow_private_endpoint.test_private_endpoint.id,
        type: _var.application_type,
        warehouseBucketUri: _var.application_warehouse_bucket_uri,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_application = oci.data_flow.Application("testApplication",
        compartment_id=var["compartment_id"],
        display_name=var["application_display_name"],
        driver_shape=var["application_driver_shape"],
        executor_shape=var["application_executor_shape"],
        language=var["application_language"],
        num_executors=var["application_num_executors"],
        spark_version=var["application_spark_version"],
        application_log_config=oci.data_flow.ApplicationApplicationLogConfigArgs(
            log_group_id=oci_logging_log_group["test_log_group"]["id"],
            log_id=oci_logging_log["test_log"]["id"],
        ),
        archive_uri=var["application_archive_uri"],
        arguments=var["application_arguments"],
        class_name=var["application_class_name"],
        configuration=var["application_configuration"],
        defined_tags={
            "Operations.CostCenter": "42",
        },
        description=var["application_description"],
        driver_shape_config=oci.data_flow.ApplicationDriverShapeConfigArgs(
            memory_in_gbs=var["application_driver_shape_config_memory_in_gbs"],
            ocpus=var["application_driver_shape_config_ocpus"],
        ),
        execute=var["application_execute"],
        executor_shape_config=oci.data_flow.ApplicationExecutorShapeConfigArgs(
            memory_in_gbs=var["application_executor_shape_config_memory_in_gbs"],
            ocpus=var["application_executor_shape_config_ocpus"],
        ),
        file_uri=var["application_file_uri"],
        freeform_tags={
            "Department": "Finance",
        },
        idle_timeout_in_minutes=var["application_idle_timeout_in_minutes"],
        logs_bucket_uri=var["application_logs_bucket_uri"],
        max_duration_in_minutes=var["application_max_duration_in_minutes"],
        metastore_id=var["metastore_id"],
        parameters=[oci.data_flow.ApplicationParameterArgs(
            name=var["application_parameters_name"],
            value=var["application_parameters_value"],
        )],
        pool_id=oci_dataflow_pool["test_pool"]["id"],
        private_endpoint_id=oci_dataflow_private_endpoint["test_private_endpoint"]["id"],
        type=var["application_type"],
        warehouse_bucket_uri=var["application_warehouse_bucket_uri"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/DataFlow"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := DataFlow.NewApplication(ctx, "testApplication", &DataFlow.ApplicationArgs{
    			CompartmentId: pulumi.Any(_var.Compartment_id),
    			DisplayName:   pulumi.Any(_var.Application_display_name),
    			DriverShape:   pulumi.Any(_var.Application_driver_shape),
    			ExecutorShape: pulumi.Any(_var.Application_executor_shape),
    			Language:      pulumi.Any(_var.Application_language),
    			NumExecutors:  pulumi.Any(_var.Application_num_executors),
    			SparkVersion:  pulumi.Any(_var.Application_spark_version),
    			ApplicationLogConfig: &dataflow.ApplicationApplicationLogConfigArgs{
    				LogGroupId: pulumi.Any(oci_logging_log_group.Test_log_group.Id),
    				LogId:      pulumi.Any(oci_logging_log.Test_log.Id),
    			},
    			ArchiveUri:    pulumi.Any(_var.Application_archive_uri),
    			Arguments:     pulumi.Any(_var.Application_arguments),
    			ClassName:     pulumi.Any(_var.Application_class_name),
    			Configuration: pulumi.Any(_var.Application_configuration),
    			DefinedTags: pulumi.Map{
    				"Operations.CostCenter": pulumi.Any("42"),
    			},
    			Description: pulumi.Any(_var.Application_description),
    			DriverShapeConfig: &dataflow.ApplicationDriverShapeConfigArgs{
    				MemoryInGbs: pulumi.Any(_var.Application_driver_shape_config_memory_in_gbs),
    				Ocpus:       pulumi.Any(_var.Application_driver_shape_config_ocpus),
    			},
    			Execute: pulumi.Any(_var.Application_execute),
    			ExecutorShapeConfig: &dataflow.ApplicationExecutorShapeConfigArgs{
    				MemoryInGbs: pulumi.Any(_var.Application_executor_shape_config_memory_in_gbs),
    				Ocpus:       pulumi.Any(_var.Application_executor_shape_config_ocpus),
    			},
    			FileUri: pulumi.Any(_var.Application_file_uri),
    			FreeformTags: pulumi.Map{
    				"Department": pulumi.Any("Finance"),
    			},
    			IdleTimeoutInMinutes: pulumi.Any(_var.Application_idle_timeout_in_minutes),
    			LogsBucketUri:        pulumi.Any(_var.Application_logs_bucket_uri),
    			MaxDurationInMinutes: pulumi.Any(_var.Application_max_duration_in_minutes),
    			MetastoreId:          pulumi.Any(_var.Metastore_id),
    			Parameters: dataflow.ApplicationParameterArray{
    				&dataflow.ApplicationParameterArgs{
    					Name:  pulumi.Any(_var.Application_parameters_name),
    					Value: pulumi.Any(_var.Application_parameters_value),
    				},
    			},
    			PoolId:             pulumi.Any(oci_dataflow_pool.Test_pool.Id),
    			PrivateEndpointId:  pulumi.Any(oci_dataflow_private_endpoint.Test_private_endpoint.Id),
    			Type:               pulumi.Any(_var.Application_type),
    			WarehouseBucketUri: pulumi.Any(_var.Application_warehouse_bucket_uri),
    		})
    		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("testApplication", new()
        {
            CompartmentId = @var.Compartment_id,
            DisplayName = @var.Application_display_name,
            DriverShape = @var.Application_driver_shape,
            ExecutorShape = @var.Application_executor_shape,
            Language = @var.Application_language,
            NumExecutors = @var.Application_num_executors,
            SparkVersion = @var.Application_spark_version,
            ApplicationLogConfig = new Oci.DataFlow.Inputs.ApplicationApplicationLogConfigArgs
            {
                LogGroupId = oci_logging_log_group.Test_log_group.Id,
                LogId = oci_logging_log.Test_log.Id,
            },
            ArchiveUri = @var.Application_archive_uri,
            Arguments = @var.Application_arguments,
            ClassName = @var.Application_class_name,
            Configuration = @var.Application_configuration,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            Description = @var.Application_description,
            DriverShapeConfig = new Oci.DataFlow.Inputs.ApplicationDriverShapeConfigArgs
            {
                MemoryInGbs = @var.Application_driver_shape_config_memory_in_gbs,
                Ocpus = @var.Application_driver_shape_config_ocpus,
            },
            Execute = @var.Application_execute,
            ExecutorShapeConfig = new Oci.DataFlow.Inputs.ApplicationExecutorShapeConfigArgs
            {
                MemoryInGbs = @var.Application_executor_shape_config_memory_in_gbs,
                Ocpus = @var.Application_executor_shape_config_ocpus,
            },
            FileUri = @var.Application_file_uri,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
            IdleTimeoutInMinutes = @var.Application_idle_timeout_in_minutes,
            LogsBucketUri = @var.Application_logs_bucket_uri,
            MaxDurationInMinutes = @var.Application_max_duration_in_minutes,
            MetastoreId = @var.Metastore_id,
            Parameters = new[]
            {
                new Oci.DataFlow.Inputs.ApplicationParameterArgs
                {
                    Name = @var.Application_parameters_name,
                    Value = @var.Application_parameters_value,
                },
            },
            PoolId = oci_dataflow_pool.Test_pool.Id,
            PrivateEndpointId = oci_dataflow_private_endpoint.Test_private_endpoint.Id,
            Type = @var.Application_type,
            WarehouseBucketUri = @var.Application_warehouse_bucket_uri,
        });
    
    });
    
    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(var_.compartment_id())
                .displayName(var_.application_display_name())
                .driverShape(var_.application_driver_shape())
                .executorShape(var_.application_executor_shape())
                .language(var_.application_language())
                .numExecutors(var_.application_num_executors())
                .sparkVersion(var_.application_spark_version())
                .applicationLogConfig(ApplicationApplicationLogConfigArgs.builder()
                    .logGroupId(oci_logging_log_group.test_log_group().id())
                    .logId(oci_logging_log.test_log().id())
                    .build())
                .archiveUri(var_.application_archive_uri())
                .arguments(var_.application_arguments())
                .className(var_.application_class_name())
                .configuration(var_.application_configuration())
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .description(var_.application_description())
                .driverShapeConfig(ApplicationDriverShapeConfigArgs.builder()
                    .memoryInGbs(var_.application_driver_shape_config_memory_in_gbs())
                    .ocpus(var_.application_driver_shape_config_ocpus())
                    .build())
                .execute(var_.application_execute())
                .executorShapeConfig(ApplicationExecutorShapeConfigArgs.builder()
                    .memoryInGbs(var_.application_executor_shape_config_memory_in_gbs())
                    .ocpus(var_.application_executor_shape_config_ocpus())
                    .build())
                .fileUri(var_.application_file_uri())
                .freeformTags(Map.of("Department", "Finance"))
                .idleTimeoutInMinutes(var_.application_idle_timeout_in_minutes())
                .logsBucketUri(var_.application_logs_bucket_uri())
                .maxDurationInMinutes(var_.application_max_duration_in_minutes())
                .metastoreId(var_.metastore_id())
                .parameters(ApplicationParameterArgs.builder()
                    .name(var_.application_parameters_name())
                    .value(var_.application_parameters_value())
                    .build())
                .poolId(oci_dataflow_pool.test_pool().id())
                .privateEndpointId(oci_dataflow_private_endpoint.test_private_endpoint().id())
                .type(var_.application_type())
                .warehouseBucketUri(var_.application_warehouse_bucket_uri())
                .build());
    
        }
    }
    
    resources:
      testApplication:
        type: oci:DataFlow:Application
        properties:
          #Required
          compartmentId: ${var.compartment_id}
          displayName: ${var.application_display_name}
          driverShape: ${var.application_driver_shape}
          executorShape: ${var.application_executor_shape}
          language: ${var.application_language}
          numExecutors: ${var.application_num_executors}
          sparkVersion: ${var.application_spark_version}
          applicationLogConfig:
            logGroupId: ${oci_logging_log_group.test_log_group.id}
            logId: ${oci_logging_log.test_log.id}
          archiveUri: ${var.application_archive_uri}
          arguments: ${var.application_arguments}
          className: ${var.application_class_name}
          configuration: ${var.application_configuration}
          definedTags:
            Operations.CostCenter: '42'
          description: ${var.application_description}
          driverShapeConfig:
            memoryInGbs: ${var.application_driver_shape_config_memory_in_gbs}
            ocpus: ${var.application_driver_shape_config_ocpus}
          execute: ${var.application_execute}
          executorShapeConfig:
            memoryInGbs: ${var.application_executor_shape_config_memory_in_gbs}
            ocpus: ${var.application_executor_shape_config_ocpus}
          fileUri: ${var.application_file_uri}
          freeformTags:
            Department: Finance
          idleTimeoutInMinutes: ${var.application_idle_timeout_in_minutes}
          logsBucketUri: ${var.application_logs_bucket_uri}
          maxDurationInMinutes: ${var.application_max_duration_in_minutes}
          metastoreId: ${var.metastore_id}
          parameters:
            - name: ${var.application_parameters_name}
              value: ${var.application_parameters_value}
          poolId: ${oci_dataflow_pool.test_pool.id}
          privateEndpointId: ${oci_dataflow_private_endpoint.test_private_endpoint.id}
          type: ${var.application_type}
          warehouseBucketUri: ${var.application_warehouse_bucket_uri}
    

    Create Application Resource

    new Application(name: string, args: ApplicationArgs, opts?: CustomResourceOptions);
    @overload
    def Application(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    application_log_config: Optional[_dataflow.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, Any]] = None,
                    defined_tags: Optional[Mapping[str, Any]] = None,
                    description: Optional[str] = None,
                    display_name: Optional[str] = None,
                    driver_shape: Optional[str] = None,
                    driver_shape_config: Optional[_dataflow.ApplicationDriverShapeConfigArgs] = None,
                    execute: Optional[str] = None,
                    executor_shape: Optional[str] = None,
                    executor_shape_config: Optional[_dataflow.ApplicationExecutorShapeConfigArgs] = None,
                    file_uri: Optional[str] = None,
                    freeform_tags: Optional[Mapping[str, Any]] = 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,
                    parameters: Optional[Sequence[_dataflow.ApplicationParameterArgs]] = None,
                    pool_id: Optional[str] = None,
                    private_endpoint_id: Optional[str] = None,
                    spark_version: Optional[str] = None,
                    type: Optional[str] = None,
                    warehouse_bucket_uri: Optional[str] = None)
    @overload
    def Application(resource_name: str,
                    args: ApplicationArgs,
                    opts: Optional[ResourceOptions] = 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.
    
    
    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.

    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

    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.
    ApplicationLogConfig ApplicationApplicationLogConfig
    (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, where name is the name of the parameter. Example: [ "--input", "${input_file}", "--name", "John Doe" ] If "input_file" has a value of "mydata.xml", then the value above will be translated to --input mydata.xml --name "John Doe"
    ClassName string
    (Updatable) The class for the application.
    Configuration Dictionary<string, object>
    (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.
    DefinedTags Dictionary<string, object>
    (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.
    DriverShapeConfig ApplicationDriverShapeConfig
    (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 10 Note: If execute is specified together with applicationId, className, configuration, fileUri, language, arguments, parameters during application create/update, or run create/submit, Data Flow service will use derived information from execute input only.
    ExecutorShapeConfig ApplicationExecutorShapeConfig
    (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.
    FreeformTags Dictionary<string, object>
    (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"}
    IdleTimeoutInMinutes string
    (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)
    LogsBucketUri string
    (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.
    MaxDurationInMinutes string
    (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_PROGRESS state.
    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.
    PrivateEndpointId string
    (Updatable) The OCID of a private endpoint.
    Type string
    The Spark application processing type.
    WarehouseBucketUri string

    (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.

    ** 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

    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.
    ApplicationLogConfig ApplicationApplicationLogConfigArgs
    (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, where name is the name of the parameter. Example: [ "--input", "${input_file}", "--name", "John Doe" ] If "input_file" has a value of "mydata.xml", then the value above will be translated to --input mydata.xml --name "John Doe"
    ClassName string
    (Updatable) The class for the application.
    Configuration map[string]interface{}
    (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.
    DefinedTags map[string]interface{}
    (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.
    DriverShapeConfig ApplicationDriverShapeConfigArgs
    (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 10 Note: If execute is specified together with applicationId, className, configuration, fileUri, language, arguments, parameters during application create/update, or run create/submit, Data Flow service will use derived information from execute input only.
    ExecutorShapeConfig ApplicationExecutorShapeConfigArgs
    (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.
    FreeformTags map[string]interface{}
    (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"}
    IdleTimeoutInMinutes string
    (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)
    LogsBucketUri string
    (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.
    MaxDurationInMinutes string
    (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_PROGRESS state.
    MetastoreId string
    (Updatable) The OCID of Oracle Cloud Infrastructure Hive Metastore.
    Parameters []ApplicationParameterArgs
    (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.
    PrivateEndpointId string
    (Updatable) The OCID of a private endpoint.
    Type string
    The Spark application processing type.
    WarehouseBucketUri string

    (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.

    ** 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

    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.
    applicationLogConfig ApplicationApplicationLogConfig
    (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, where name is the name of the parameter. Example: [ "--input", "${input_file}", "--name", "John Doe" ] If "input_file" has a value of "mydata.xml", then the value above will be translated to --input mydata.xml --name "John Doe"
    className String
    (Updatable) The class for the application.
    configuration Map<String,Object>
    (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.
    definedTags Map<String,Object>
    (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.
    driverShapeConfig ApplicationDriverShapeConfig
    (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 10 Note: If execute is specified together with applicationId, className, configuration, fileUri, language, arguments, parameters during application create/update, or run create/submit, Data Flow service will use derived information from execute input only.
    executorShapeConfig ApplicationExecutorShapeConfig
    (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.
    freeformTags Map<String,Object>
    (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"}
    idleTimeoutInMinutes String
    (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)
    logsBucketUri String
    (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.
    maxDurationInMinutes String
    (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_PROGRESS state.
    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.
    privateEndpointId String
    (Updatable) The OCID of a private endpoint.
    type String
    The Spark application processing type.
    warehouseBucketUri String

    (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.

    ** 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

    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.
    applicationLogConfig ApplicationApplicationLogConfig
    (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, where name is the name of the parameter. Example: [ "--input", "${input_file}", "--name", "John Doe" ] If "input_file" has a value of "mydata.xml", then the value above will be translated to --input mydata.xml --name "John Doe"
    className string
    (Updatable) The class for the application.
    configuration {[key: string]: any}
    (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.
    definedTags {[key: string]: any}
    (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.
    driverShapeConfig ApplicationDriverShapeConfig
    (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 10 Note: If execute is specified together with applicationId, className, configuration, fileUri, language, arguments, parameters during application create/update, or run create/submit, Data Flow service will use derived information from execute input only.
    executorShapeConfig ApplicationExecutorShapeConfig
    (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.
    freeformTags {[key: string]: any}
    (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"}
    idleTimeoutInMinutes string
    (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)
    logsBucketUri string
    (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.
    maxDurationInMinutes string
    (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_PROGRESS state.
    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.
    privateEndpointId string
    (Updatable) The OCID of a private endpoint.
    type string
    The Spark application processing type.
    warehouseBucketUri string

    (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.

    ** 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

    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_config ApplicationApplicationLogConfigArgs
    (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, where name is the name of the parameter. Example: [ "--input", "${input_file}", "--name", "John Doe" ] If "input_file" has a value of "mydata.xml", then the value above will be translated to --input mydata.xml --name "John Doe"
    class_name str
    (Updatable) The class for the application.
    configuration Mapping[str, Any]
    (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.
    defined_tags Mapping[str, Any]
    (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_config ApplicationDriverShapeConfigArgs
    (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 10 Note: If execute is specified together with applicationId, className, configuration, fileUri, language, arguments, parameters during application create/update, or run create/submit, Data Flow service will use derived information from execute input only.
    executor_shape_config ApplicationExecutorShapeConfigArgs
    (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.
    freeform_tags Mapping[str, Any]
    (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_in_minutes str
    (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_uri str
    (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_in_minutes str
    (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_PROGRESS state.
    metastore_id str
    (Updatable) The OCID of Oracle Cloud Infrastructure Hive Metastore.
    parameters ApplicationParameterArgs]
    (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_id str
    (Updatable) The OCID of a private endpoint.
    type str
    The Spark application processing type.
    warehouse_bucket_uri str

    (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.

    ** 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

    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.
    applicationLogConfig Property Map
    (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, where name is the name of the parameter. Example: [ "--input", "${input_file}", "--name", "John Doe" ] If "input_file" has a value of "mydata.xml", then the value above will be translated to --input mydata.xml --name "John Doe"
    className String
    (Updatable) The class for the application.
    configuration Map<Any>
    (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.
    definedTags Map<Any>
    (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.
    driverShapeConfig Property Map
    (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 10 Note: If execute is specified together with applicationId, className, configuration, fileUri, language, arguments, parameters during application create/update, or run create/submit, Data Flow service will use derived information from execute input only.
    executorShapeConfig Property Map
    (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.
    freeformTags Map<Any>
    (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"}
    idleTimeoutInMinutes String
    (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)
    logsBucketUri String
    (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.
    maxDurationInMinutes String
    (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_PROGRESS state.
    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.
    privateEndpointId String
    (Updatable) The OCID of a private endpoint.
    type String
    The Spark application processing type.
    warehouseBucketUri String

    (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.

    ** 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

    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.
    OwnerPrincipalId string
    The OCID of the user who created the resource.
    OwnerUserName string
    The username of the user who created the resource. If the username of the owner does not exist, null will 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.
    OwnerPrincipalId string
    The OCID of the user who created the resource.
    OwnerUserName string
    The username of the user who created the resource. If the username of the owner does not exist, null will 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.
    ownerPrincipalId String
    The OCID of the user who created the resource.
    ownerUserName String
    The username of the user who created the resource. If the username of the owner does not exist, null will 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.
    ownerPrincipalId string
    The OCID of the user who created the resource.
    ownerUserName string
    The username of the user who created the resource. If the username of the owner does not exist, null will 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_id str
    The OCID of the user who created the resource.
    owner_user_name str
    The username of the user who created the resource. If the username of the owner does not exist, null will 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.
    ownerPrincipalId String
    The OCID of the user who created the resource.
    ownerUserName String
    The username of the user who created the resource. If the username of the owner does not exist, null will 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[_dataflow.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, Any]] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            driver_shape: Optional[str] = None,
            driver_shape_config: Optional[_dataflow.ApplicationDriverShapeConfigArgs] = None,
            execute: Optional[str] = None,
            executor_shape: Optional[str] = None,
            executor_shape_config: Optional[_dataflow.ApplicationExecutorShapeConfigArgs] = None,
            file_uri: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = 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[_dataflow.ApplicationParameterArgs]] = None,
            pool_id: Optional[str] = None,
            private_endpoint_id: Optional[str] = None,
            spark_version: Optional[str] = None,
            state: Optional[str] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None,
            type: Optional[str] = None,
            warehouse_bucket_uri: Optional[str] = None) -> Application
    func 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)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    ApplicationLogConfig ApplicationApplicationLogConfig
    (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, where name is the name of the parameter. Example: [ "--input", "${input_file}", "--name", "John Doe" ] If "input_file" has a value of "mydata.xml", then the value above will be translated to --input mydata.xml --name "John Doe"
    ClassName string
    (Updatable) The class for the application.
    CompartmentId string
    (Updatable) The OCID of a compartment.
    Configuration Dictionary<string, object>
    (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.
    DefinedTags Dictionary<string, object>
    (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.
    DriverShapeConfig ApplicationDriverShapeConfig
    (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 10 Note: If execute is specified together with applicationId, className, configuration, fileUri, language, arguments, parameters during application create/update, or run create/submit, Data Flow service will use derived information from execute input only.
    ExecutorShape string
    (Updatable) The VM shape for the executors. Sets the executor cores and memory.
    ExecutorShapeConfig ApplicationExecutorShapeConfig
    (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.
    FreeformTags Dictionary<string, object>
    (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"}
    IdleTimeoutInMinutes string
    (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.
    LogsBucketUri string
    (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.
    MaxDurationInMinutes string
    (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_PROGRESS state.
    MetastoreId string
    (Updatable) The OCID of Oracle Cloud Infrastructure Hive Metastore.
    NumExecutors int
    (Updatable) The number of executor VMs requested.
    OwnerPrincipalId string
    The OCID of the user who created the resource.
    OwnerUserName string
    The username of the user who created the resource. If the username of the owner does not exist, null will 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.
    PrivateEndpointId string
    (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.
    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.
    WarehouseBucketUri string

    (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.

    ** 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

    ApplicationLogConfig ApplicationApplicationLogConfigArgs
    (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, where name is the name of the parameter. Example: [ "--input", "${input_file}", "--name", "John Doe" ] If "input_file" has a value of "mydata.xml", then the value above will be translated to --input mydata.xml --name "John Doe"
    ClassName string
    (Updatable) The class for the application.
    CompartmentId string
    (Updatable) The OCID of a compartment.
    Configuration map[string]interface{}
    (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.
    DefinedTags map[string]interface{}
    (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.
    DriverShapeConfig ApplicationDriverShapeConfigArgs
    (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 10 Note: If execute is specified together with applicationId, className, configuration, fileUri, language, arguments, parameters during application create/update, or run create/submit, Data Flow service will use derived information from execute input only.
    ExecutorShape string
    (Updatable) The VM shape for the executors. Sets the executor cores and memory.
    ExecutorShapeConfig ApplicationExecutorShapeConfigArgs
    (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.
    FreeformTags map[string]interface{}
    (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"}
    IdleTimeoutInMinutes string
    (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.
    LogsBucketUri string
    (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.
    MaxDurationInMinutes string
    (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_PROGRESS state.
    MetastoreId string
    (Updatable) The OCID of Oracle Cloud Infrastructure Hive Metastore.
    NumExecutors int
    (Updatable) The number of executor VMs requested.
    OwnerPrincipalId string
    The OCID of the user who created the resource.
    OwnerUserName string
    The username of the user who created the resource. If the username of the owner does not exist, null will be returned and the caller should refer to the ownerPrincipalId value instead.
    Parameters []ApplicationParameterArgs
    (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.
    PrivateEndpointId string
    (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.
    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.
    WarehouseBucketUri string

    (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.

    ** 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

    applicationLogConfig ApplicationApplicationLogConfig
    (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, where name is the name of the parameter. Example: [ "--input", "${input_file}", "--name", "John Doe" ] If "input_file" has a value of "mydata.xml", then the value above will be translated to --input mydata.xml --name "John Doe"
    className String
    (Updatable) The class for the application.
    compartmentId String
    (Updatable) The OCID of a compartment.
    configuration Map<String,Object>
    (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.
    definedTags Map<String,Object>
    (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.
    driverShapeConfig ApplicationDriverShapeConfig
    (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 10 Note: If execute is specified together with applicationId, className, configuration, fileUri, language, arguments, parameters during application create/update, or run create/submit, Data Flow service will use derived information from execute input only.
    executorShape String
    (Updatable) The VM shape for the executors. Sets the executor cores and memory.
    executorShapeConfig ApplicationExecutorShapeConfig
    (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.
    freeformTags Map<String,Object>
    (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"}
    idleTimeoutInMinutes String
    (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.
    logsBucketUri String
    (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.
    maxDurationInMinutes String
    (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_PROGRESS state.
    metastoreId String
    (Updatable) The OCID of Oracle Cloud Infrastructure Hive Metastore.
    numExecutors Integer
    (Updatable) The number of executor VMs requested.
    ownerPrincipalId String
    The OCID of the user who created the resource.
    ownerUserName String
    The username of the user who created the resource. If the username of the owner does not exist, null will 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.
    privateEndpointId String
    (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.
    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.
    warehouseBucketUri String

    (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.

    ** 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

    applicationLogConfig ApplicationApplicationLogConfig
    (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, where name is the name of the parameter. Example: [ "--input", "${input_file}", "--name", "John Doe" ] If "input_file" has a value of "mydata.xml", then the value above will be translated to --input mydata.xml --name "John Doe"
    className string
    (Updatable) The class for the application.
    compartmentId string
    (Updatable) The OCID of a compartment.
    configuration {[key: string]: any}
    (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.
    definedTags {[key: string]: any}
    (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.
    driverShapeConfig ApplicationDriverShapeConfig
    (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 10 Note: If execute is specified together with applicationId, className, configuration, fileUri, language, arguments, parameters during application create/update, or run create/submit, Data Flow service will use derived information from execute input only.
    executorShape string
    (Updatable) The VM shape for the executors. Sets the executor cores and memory.
    executorShapeConfig ApplicationExecutorShapeConfig
    (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.
    freeformTags {[key: string]: any}
    (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"}
    idleTimeoutInMinutes string
    (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.
    logsBucketUri string
    (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.
    maxDurationInMinutes string
    (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_PROGRESS state.
    metastoreId string
    (Updatable) The OCID of Oracle Cloud Infrastructure Hive Metastore.
    numExecutors number
    (Updatable) The number of executor VMs requested.
    ownerPrincipalId string
    The OCID of the user who created the resource.
    ownerUserName string
    The username of the user who created the resource. If the username of the owner does not exist, null will 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.
    privateEndpointId string
    (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.
    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.
    warehouseBucketUri string

    (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.

    ** 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

    application_log_config ApplicationApplicationLogConfigArgs
    (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, where name is the name of the parameter. Example: [ "--input", "${input_file}", "--name", "John Doe" ] If "input_file" has a value of "mydata.xml", then the value above will be translated to --input mydata.xml --name "John Doe"
    class_name str
    (Updatable) The class for the application.
    compartment_id str
    (Updatable) The OCID of a compartment.
    configuration Mapping[str, Any]
    (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.
    defined_tags Mapping[str, Any]
    (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_config ApplicationDriverShapeConfigArgs
    (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 10 Note: If execute is specified together with applicationId, className, configuration, fileUri, language, arguments, parameters during application create/update, or run create/submit, Data Flow service will use derived information from execute input only.
    executor_shape str
    (Updatable) The VM shape for the executors. Sets the executor cores and memory.
    executor_shape_config ApplicationExecutorShapeConfigArgs
    (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.
    freeform_tags Mapping[str, Any]
    (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_in_minutes str
    (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_uri str
    (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_in_minutes str
    (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_PROGRESS state.
    metastore_id str
    (Updatable) The OCID of Oracle Cloud Infrastructure Hive Metastore.
    num_executors int
    (Updatable) The number of executor VMs requested.
    owner_principal_id str
    The OCID of the user who created the resource.
    owner_user_name str
    The username of the user who created the resource. If the username of the owner does not exist, null will be returned and the caller should refer to the ownerPrincipalId value instead.
    parameters ApplicationParameterArgs]
    (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_id str
    (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.
    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_uri str

    (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.

    ** 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

    applicationLogConfig Property Map
    (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, where name is the name of the parameter. Example: [ "--input", "${input_file}", "--name", "John Doe" ] If "input_file" has a value of "mydata.xml", then the value above will be translated to --input mydata.xml --name "John Doe"
    className String
    (Updatable) The class for the application.
    compartmentId String
    (Updatable) The OCID of a compartment.
    configuration Map<Any>
    (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.
    definedTags Map<Any>
    (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.
    driverShapeConfig Property Map
    (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 10 Note: If execute is specified together with applicationId, className, configuration, fileUri, language, arguments, parameters during application create/update, or run create/submit, Data Flow service will use derived information from execute input only.
    executorShape String
    (Updatable) The VM shape for the executors. Sets the executor cores and memory.
    executorShapeConfig Property Map
    (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.
    freeformTags Map<Any>
    (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"}
    idleTimeoutInMinutes String
    (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.
    logsBucketUri String
    (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.
    maxDurationInMinutes String
    (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_PROGRESS state.
    metastoreId String
    (Updatable) The OCID of Oracle Cloud Infrastructure Hive Metastore.
    numExecutors Number
    (Updatable) The number of executor VMs requested.
    ownerPrincipalId String
    The OCID of the user who created the resource.
    ownerUserName String
    The username of the user who created the resource. If the username of the owner does not exist, null will 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.
    privateEndpointId String
    (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.
    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.
    warehouseBucketUri String

    (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.

    ** 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

    Supporting Types

    ApplicationApplicationLogConfig, ApplicationApplicationLogConfigArgs

    LogGroupId string
    (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.
    LogGroupId string
    (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.
    logGroupId String
    (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.
    logGroupId string
    (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_id str
    (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.
    logGroupId String
    (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

    MemoryInGbs double
    (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.
    MemoryInGbs float64
    (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.
    memoryInGbs Double
    (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.
    memoryInGbs number
    (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_gbs float
    (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.
    memoryInGbs Number
    (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

    MemoryInGbs double
    (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.
    MemoryInGbs float64
    (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.
    memoryInGbs Double
    (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.
    memoryInGbs number
    (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_gbs float
    (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.
    memoryInGbs Number
    (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"
    

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.29.0 published on Thursday, Mar 28, 2024 by Pulumi