oci.DataFlow.getInvokeRuns
Explore with Pulumi AI
This data source provides the list of Invoke Runs in Oracle Cloud Infrastructure Data Flow service.
Lists all runs of an application in the specified compartment. Only one parameter other than compartmentId may also be included in a query. The query must include compartmentId. If the query does not include compartmentId, or includes compartmentId but two or more other parameters an error is returned.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testInvokeRuns = oci.DataFlow.getInvokeRuns({
    compartmentId: compartmentId,
    applicationId: testApplication.id,
    displayName: invokeRunDisplayName,
    displayNameStartsWith: invokeRunDisplayNameStartsWith,
    ownerPrincipalId: testOwnerPrincipal.id,
    poolId: testPool.id,
    state: invokeRunState,
    timeCreatedGreaterThan: invokeRunTimeCreatedGreaterThan,
});
import pulumi
import pulumi_oci as oci
test_invoke_runs = oci.DataFlow.get_invoke_runs(compartment_id=compartment_id,
    application_id=test_application["id"],
    display_name=invoke_run_display_name,
    display_name_starts_with=invoke_run_display_name_starts_with,
    owner_principal_id=test_owner_principal["id"],
    pool_id=test_pool["id"],
    state=invoke_run_state,
    time_created_greater_than=invoke_run_time_created_greater_than)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/dataflow"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := dataflow.GetInvokeRuns(ctx, &dataflow.GetInvokeRunsArgs{
			CompartmentId:          compartmentId,
			ApplicationId:          pulumi.StringRef(testApplication.Id),
			DisplayName:            pulumi.StringRef(invokeRunDisplayName),
			DisplayNameStartsWith:  pulumi.StringRef(invokeRunDisplayNameStartsWith),
			OwnerPrincipalId:       pulumi.StringRef(testOwnerPrincipal.Id),
			PoolId:                 pulumi.StringRef(testPool.Id),
			State:                  pulumi.StringRef(invokeRunState),
			TimeCreatedGreaterThan: pulumi.StringRef(invokeRunTimeCreatedGreaterThan),
		}, nil)
		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 testInvokeRuns = Oci.DataFlow.GetInvokeRuns.Invoke(new()
    {
        CompartmentId = compartmentId,
        ApplicationId = testApplication.Id,
        DisplayName = invokeRunDisplayName,
        DisplayNameStartsWith = invokeRunDisplayNameStartsWith,
        OwnerPrincipalId = testOwnerPrincipal.Id,
        PoolId = testPool.Id,
        State = invokeRunState,
        TimeCreatedGreaterThan = invokeRunTimeCreatedGreaterThan,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataFlow.DataFlowFunctions;
import com.pulumi.oci.DataFlow.inputs.GetInvokeRunsArgs;
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) {
        final var testInvokeRuns = DataFlowFunctions.getInvokeRuns(GetInvokeRunsArgs.builder()
            .compartmentId(compartmentId)
            .applicationId(testApplication.id())
            .displayName(invokeRunDisplayName)
            .displayNameStartsWith(invokeRunDisplayNameStartsWith)
            .ownerPrincipalId(testOwnerPrincipal.id())
            .poolId(testPool.id())
            .state(invokeRunState)
            .timeCreatedGreaterThan(invokeRunTimeCreatedGreaterThan)
            .build());
    }
}
variables:
  testInvokeRuns:
    fn::invoke:
      function: oci:DataFlow:getInvokeRuns
      arguments:
        compartmentId: ${compartmentId}
        applicationId: ${testApplication.id}
        displayName: ${invokeRunDisplayName}
        displayNameStartsWith: ${invokeRunDisplayNameStartsWith}
        ownerPrincipalId: ${testOwnerPrincipal.id}
        poolId: ${testPool.id}
        state: ${invokeRunState}
        timeCreatedGreaterThan: ${invokeRunTimeCreatedGreaterThan}
Using getInvokeRuns
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getInvokeRuns(args: GetInvokeRunsArgs, opts?: InvokeOptions): Promise<GetInvokeRunsResult>
function getInvokeRunsOutput(args: GetInvokeRunsOutputArgs, opts?: InvokeOptions): Output<GetInvokeRunsResult>def get_invoke_runs(application_id: Optional[str] = None,
                    compartment_id: Optional[str] = None,
                    display_name: Optional[str] = None,
                    display_name_starts_with: Optional[str] = None,
                    filters: Optional[Sequence[GetInvokeRunsFilter]] = None,
                    owner_principal_id: Optional[str] = None,
                    pool_id: Optional[str] = None,
                    state: Optional[str] = None,
                    time_created_greater_than: Optional[str] = None,
                    opts: Optional[InvokeOptions] = None) -> GetInvokeRunsResult
def get_invoke_runs_output(application_id: Optional[pulumi.Input[str]] = None,
                    compartment_id: Optional[pulumi.Input[str]] = None,
                    display_name: Optional[pulumi.Input[str]] = None,
                    display_name_starts_with: Optional[pulumi.Input[str]] = None,
                    filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetInvokeRunsFilterArgs]]]] = None,
                    owner_principal_id: Optional[pulumi.Input[str]] = None,
                    pool_id: Optional[pulumi.Input[str]] = None,
                    state: Optional[pulumi.Input[str]] = None,
                    time_created_greater_than: Optional[pulumi.Input[str]] = None,
                    opts: Optional[InvokeOptions] = None) -> Output[GetInvokeRunsResult]func GetInvokeRuns(ctx *Context, args *GetInvokeRunsArgs, opts ...InvokeOption) (*GetInvokeRunsResult, error)
func GetInvokeRunsOutput(ctx *Context, args *GetInvokeRunsOutputArgs, opts ...InvokeOption) GetInvokeRunsResultOutput> Note: This function is named GetInvokeRuns in the Go SDK.
public static class GetInvokeRuns 
{
    public static Task<GetInvokeRunsResult> InvokeAsync(GetInvokeRunsArgs args, InvokeOptions? opts = null)
    public static Output<GetInvokeRunsResult> Invoke(GetInvokeRunsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetInvokeRunsResult> getInvokeRuns(GetInvokeRunsArgs args, InvokeOptions options)
public static Output<GetInvokeRunsResult> getInvokeRuns(GetInvokeRunsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DataFlow/getInvokeRuns:getInvokeRuns
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The OCID of the compartment.
- ApplicationId string
- The ID of the application.
- DisplayName string
- The query parameter for the Spark application name.
- DisplayName stringStarts With 
- The displayName prefix.
- Filters
List<GetInvoke Runs Filter> 
- OwnerPrincipal stringId 
- The OCID of the user who created the resource.
- PoolId string
- The ID of the pool.
- State string
- The LifecycleState of the run.
- TimeCreated stringGreater Than 
- The epoch time that the resource was created.
- CompartmentId string
- The OCID of the compartment.
- ApplicationId string
- The ID of the application.
- DisplayName string
- The query parameter for the Spark application name.
- DisplayName stringStarts With 
- The displayName prefix.
- Filters
[]GetInvoke Runs Filter 
- OwnerPrincipal stringId 
- The OCID of the user who created the resource.
- PoolId string
- The ID of the pool.
- State string
- The LifecycleState of the run.
- TimeCreated stringGreater Than 
- The epoch time that the resource was created.
- compartmentId String
- The OCID of the compartment.
- applicationId String
- The ID of the application.
- displayName String
- The query parameter for the Spark application name.
- displayName StringStarts With 
- The displayName prefix.
- filters
List<GetInvoke Runs Filter> 
- ownerPrincipal StringId 
- The OCID of the user who created the resource.
- poolId String
- The ID of the pool.
- state String
- The LifecycleState of the run.
- timeCreated StringGreater Than 
- The epoch time that the resource was created.
- compartmentId string
- The OCID of the compartment.
- applicationId string
- The ID of the application.
- displayName string
- The query parameter for the Spark application name.
- displayName stringStarts With 
- The displayName prefix.
- filters
GetInvoke Runs Filter[] 
- ownerPrincipal stringId 
- The OCID of the user who created the resource.
- poolId string
- The ID of the pool.
- state string
- The LifecycleState of the run.
- timeCreated stringGreater Than 
- The epoch time that the resource was created.
- compartment_id str
- The OCID of the compartment.
- application_id str
- The ID of the application.
- display_name str
- The query parameter for the Spark application name.
- display_name_ strstarts_ with 
- The displayName prefix.
- filters
Sequence[GetInvoke Runs Filter] 
- owner_principal_ strid 
- The OCID of the user who created the resource.
- pool_id str
- The ID of the pool.
- state str
- The LifecycleState of the run.
- time_created_ strgreater_ than 
- The epoch time that the resource was created.
- compartmentId String
- The OCID of the compartment.
- applicationId String
- The ID of the application.
- displayName String
- The query parameter for the Spark application name.
- displayName StringStarts With 
- The displayName prefix.
- filters List<Property Map>
- ownerPrincipal StringId 
- The OCID of the user who created the resource.
- poolId String
- The ID of the pool.
- state String
- The LifecycleState of the run.
- timeCreated StringGreater Than 
- The epoch time that the resource was created.
getInvokeRuns Result
The following output properties are available:
- CompartmentId string
- The OCID of a compartment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Runs
List<GetInvoke Runs Run> 
- The list of runs.
- ApplicationId string
- The application ID.
- DisplayName string
- A user-friendly name. This name is not necessarily unique.
- DisplayName stringStarts With 
- Filters
List<GetInvoke Runs Filter> 
- OwnerPrincipal stringId 
- The OCID of the user who created the resource.
- PoolId string
- The OCID of a pool. Unique Id to indentify a dataflow pool resource.
- State string
- The current state of this run.
- TimeCreated stringGreater Than 
- CompartmentId string
- The OCID of a compartment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Runs
[]GetInvoke Runs Run 
- The list of runs.
- ApplicationId string
- The application ID.
- DisplayName string
- A user-friendly name. This name is not necessarily unique.
- DisplayName stringStarts With 
- Filters
[]GetInvoke Runs Filter 
- OwnerPrincipal stringId 
- The OCID of the user who created the resource.
- PoolId string
- The OCID of a pool. Unique Id to indentify a dataflow pool resource.
- State string
- The current state of this run.
- TimeCreated stringGreater Than 
- compartmentId String
- The OCID of a compartment.
- id String
- The provider-assigned unique ID for this managed resource.
- runs
List<GetInvoke Runs Run> 
- The list of runs.
- applicationId String
- The application ID.
- displayName String
- A user-friendly name. This name is not necessarily unique.
- displayName StringStarts With 
- filters
List<GetInvoke Runs Filter> 
- ownerPrincipal StringId 
- The OCID of the user who created the resource.
- poolId String
- The OCID of a pool. Unique Id to indentify a dataflow pool resource.
- state String
- The current state of this run.
- timeCreated StringGreater Than 
- compartmentId string
- The OCID of a compartment.
- id string
- The provider-assigned unique ID for this managed resource.
- runs
GetInvoke Runs Run[] 
- The list of runs.
- applicationId string
- The application ID.
- displayName string
- A user-friendly name. This name is not necessarily unique.
- displayName stringStarts With 
- filters
GetInvoke Runs Filter[] 
- ownerPrincipal stringId 
- The OCID of the user who created the resource.
- poolId string
- The OCID of a pool. Unique Id to indentify a dataflow pool resource.
- state string
- The current state of this run.
- timeCreated stringGreater Than 
- compartment_id str
- The OCID of a compartment.
- id str
- The provider-assigned unique ID for this managed resource.
- runs
Sequence[GetInvoke Runs Run] 
- The list of runs.
- application_id str
- The application ID.
- display_name str
- A user-friendly name. This name is not necessarily unique.
- display_name_ strstarts_ with 
- filters
Sequence[GetInvoke Runs Filter] 
- owner_principal_ strid 
- The OCID of the user who created the resource.
- pool_id str
- The OCID of a pool. Unique Id to indentify a dataflow pool resource.
- state str
- The current state of this run.
- time_created_ strgreater_ than 
- compartmentId String
- The OCID of a compartment.
- id String
- The provider-assigned unique ID for this managed resource.
- runs List<Property Map>
- The list of runs.
- applicationId String
- The application ID.
- displayName String
- A user-friendly name. This name is not necessarily unique.
- displayName StringStarts With 
- filters List<Property Map>
- ownerPrincipal StringId 
- The OCID of the user who created the resource.
- poolId String
- The OCID of a pool. Unique Id to indentify a dataflow pool resource.
- state String
- The current state of this run.
- timeCreated StringGreater Than 
Supporting Types
GetInvokeRunsFilter   
GetInvokeRunsRun   
- ApplicationId string
- The ID of the application.
- ApplicationLog List<GetConfigs Invoke Runs Run Application Log Config> 
- Logging details of Application logs for Data Flow Run.
- ArchiveUri string
- 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>
- The arguments passed to the running application as command line arguments. An argument is either a plain text or a placeholder. Placeholders are replaced using values from the parameters map. Each placeholder specified must be represented in the parameters map else the request (POST or PUT) will fail with a HTTP 400 status code. Placeholders are specified as Service Api Spec, wherenameis the name of the parameter. Example:[ "--input", "${input_file}", "--name", "John Doe" ]If "input_file" has a value of "mydata.xml", then the value above will be translated to--input mydata.xml --name "John Doe"
- Asynchronous bool
- ClassName string
- The class for the application.
- CompartmentId string
- The OCID of the compartment.
- Configuration Dictionary<string, string>
- 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.
- DataRead stringIn Bytes 
- The data read by the run in bytes.
- DataWritten stringIn Bytes 
- The data written by the run in bytes.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- DisplayName string
- The query parameter for the Spark application name.
- DriverShape string
- The VM shape for the driver. Sets the driver cores and memory.
- DriverShape List<GetConfigs Invoke Runs Run Driver Shape Config> 
- This is used to configure the shape of the driver or executor if a flexible shape is used.
- Execute string
- The input used for spark-submit command. For more details see https://spark.apache.org/docs/latest/submitting-applications.html#launching-applications-with-spark-submit. Supported options include --class,--file,--jars,--conf,--py-files, and main application file with arguments. Example:--jars oci://path/to/a.jar,oci://path/to/b.jar --files oci://path/to/a.json,oci://path/to/b.csv --py-files oci://path/to/a.py,oci://path/to/b.py --conf spark.sql.crossJoin.enabled=true --class org.apache.spark.examples.SparkPi oci://path/to/main.jar 10Note: If execute is specified together with applicationId, className, configuration, fileUri, language, arguments, parameters during application create/update, or run create/submit, Data Flow service will use derived information from execute input only.
- ExecutorShape string
- The VM shape for the executors. Sets the executor cores and memory.
- ExecutorShape List<GetConfigs Invoke Runs Run Executor Shape Config> 
- This is used to configure the shape of the driver or executor if a flexible shape is used.
- FileUri string
- An Oracle Cloud Infrastructure URI of the file containing the application to execute. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- Dictionary<string, string>
- 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"}
- Id string
- The ID of a run.
- IdleTimeout stringIn Minutes 
- 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
- The Spark language.
- LifecycleDetails string
- The detailed messages about the lifecycle state.
- LogsBucket stringUri 
- An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- MaxDuration stringIn Minutes 
- The maximum duration in minutes for which an Application should run. Data Flow Run would be terminated once it reaches this duration from the time it transitions to IN_PROGRESSstate.
- MetastoreId string
- The OCID of Oracle Cloud Infrastructure Hive Metastore.
- NumExecutors int
- The number of executor VMs requested.
- OpcParent stringRpt Url 
- OpcRequest stringId 
- Unique Oracle assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
- OwnerPrincipal stringId 
- The OCID of the user who created the resource.
- OwnerUser stringName 
- The username of the user who created the resource. If the username of the owner does not exist, nullwill be returned and the caller should refer to the ownerPrincipalId value instead.
- Parameters
List<GetInvoke Runs Run Parameter> 
- 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
- The ID of the pool.
- PrivateEndpoint List<string>Dns Zones 
- An array of DNS zone names. Example: [ "app.examplecorp.com", "app.examplecorp2.com" ]
- PrivateEndpoint stringId 
- The OCID of a private endpoint.
- PrivateEndpoint intMax Host Count 
- The maximum number of hosts to be accessed through the private endpoint. This value is used to calculate the relevant CIDR block and should be a multiple of 256. If the value is not a multiple of 256, it is rounded up to the next multiple of 256. For example, 300 is rounded up to 512.
- PrivateEndpoint List<string>Nsg Ids 
- An array of network security group OCIDs.
- PrivateEndpoint stringSubnet Id 
- The OCID of a subnet.
- RunDuration stringIn Milliseconds 
- The duration of the run in milliseconds.
- SparkVersion string
- The Spark version utilized to run the application.
- State string
- The LifecycleState of the run.
- 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
- TotalOcpu int
- The total number of oCPU requested by the run.
- Type string
- The Spark application processing type.
- WarehouseBucket stringUri 
- 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.
- ApplicationId string
- The ID of the application.
- ApplicationLog []GetConfigs Invoke Runs Run Application Log Config 
- Logging details of Application logs for Data Flow Run.
- ArchiveUri string
- 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
- The arguments passed to the running application as command line arguments. An argument is either a plain text or a placeholder. Placeholders are replaced using values from the parameters map. Each placeholder specified must be represented in the parameters map else the request (POST or PUT) will fail with a HTTP 400 status code. Placeholders are specified as Service Api Spec, wherenameis the name of the parameter. Example:[ "--input", "${input_file}", "--name", "John Doe" ]If "input_file" has a value of "mydata.xml", then the value above will be translated to--input mydata.xml --name "John Doe"
- Asynchronous bool
- ClassName string
- The class for the application.
- CompartmentId string
- The OCID of the compartment.
- Configuration map[string]string
- 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.
- DataRead stringIn Bytes 
- The data read by the run in bytes.
- DataWritten stringIn Bytes 
- The data written by the run in bytes.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- DisplayName string
- The query parameter for the Spark application name.
- DriverShape string
- The VM shape for the driver. Sets the driver cores and memory.
- DriverShape []GetConfigs Invoke Runs Run Driver Shape Config 
- This is used to configure the shape of the driver or executor if a flexible shape is used.
- Execute string
- The input used for spark-submit command. For more details see https://spark.apache.org/docs/latest/submitting-applications.html#launching-applications-with-spark-submit. Supported options include --class,--file,--jars,--conf,--py-files, and main application file with arguments. Example:--jars oci://path/to/a.jar,oci://path/to/b.jar --files oci://path/to/a.json,oci://path/to/b.csv --py-files oci://path/to/a.py,oci://path/to/b.py --conf spark.sql.crossJoin.enabled=true --class org.apache.spark.examples.SparkPi oci://path/to/main.jar 10Note: If execute is specified together with applicationId, className, configuration, fileUri, language, arguments, parameters during application create/update, or run create/submit, Data Flow service will use derived information from execute input only.
- ExecutorShape string
- The VM shape for the executors. Sets the executor cores and memory.
- ExecutorShape []GetConfigs Invoke Runs Run Executor Shape Config 
- This is used to configure the shape of the driver or executor if a flexible shape is used.
- FileUri string
- An Oracle Cloud Infrastructure URI of the file containing the application to execute. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- map[string]string
- 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"}
- Id string
- The ID of a run.
- IdleTimeout stringIn Minutes 
- 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
- The Spark language.
- LifecycleDetails string
- The detailed messages about the lifecycle state.
- LogsBucket stringUri 
- An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- MaxDuration stringIn Minutes 
- The maximum duration in minutes for which an Application should run. Data Flow Run would be terminated once it reaches this duration from the time it transitions to IN_PROGRESSstate.
- MetastoreId string
- The OCID of Oracle Cloud Infrastructure Hive Metastore.
- NumExecutors int
- The number of executor VMs requested.
- OpcParent stringRpt Url 
- OpcRequest stringId 
- Unique Oracle assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
- OwnerPrincipal stringId 
- The OCID of the user who created the resource.
- OwnerUser stringName 
- The username of the user who created the resource. If the username of the owner does not exist, nullwill be returned and the caller should refer to the ownerPrincipalId value instead.
- Parameters
[]GetInvoke Runs Run Parameter 
- 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
- The ID of the pool.
- PrivateEndpoint []stringDns Zones 
- An array of DNS zone names. Example: [ "app.examplecorp.com", "app.examplecorp2.com" ]
- PrivateEndpoint stringId 
- The OCID of a private endpoint.
- PrivateEndpoint intMax Host Count 
- The maximum number of hosts to be accessed through the private endpoint. This value is used to calculate the relevant CIDR block and should be a multiple of 256. If the value is not a multiple of 256, it is rounded up to the next multiple of 256. For example, 300 is rounded up to 512.
- PrivateEndpoint []stringNsg Ids 
- An array of network security group OCIDs.
- PrivateEndpoint stringSubnet Id 
- The OCID of a subnet.
- RunDuration stringIn Milliseconds 
- The duration of the run in milliseconds.
- SparkVersion string
- The Spark version utilized to run the application.
- State string
- The LifecycleState of the run.
- 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
- TotalOcpu int
- The total number of oCPU requested by the run.
- Type string
- The Spark application processing type.
- WarehouseBucket stringUri 
- 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.
- applicationId String
- The ID of the application.
- applicationLog List<GetConfigs Invoke Runs Run Application Log Config> 
- Logging details of Application logs for Data Flow Run.
- archiveUri String
- 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>
- The arguments passed to the running application as command line arguments. An argument is either a plain text or a placeholder. Placeholders are replaced using values from the parameters map. Each placeholder specified must be represented in the parameters map else the request (POST or PUT) will fail with a HTTP 400 status code. Placeholders are specified as Service Api Spec, wherenameis the name of the parameter. Example:[ "--input", "${input_file}", "--name", "John Doe" ]If "input_file" has a value of "mydata.xml", then the value above will be translated to--input mydata.xml --name "John Doe"
- asynchronous Boolean
- className String
- The class for the application.
- compartmentId String
- The OCID of the compartment.
- configuration Map<String,String>
- 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.
- dataRead StringIn Bytes 
- The data read by the run in bytes.
- dataWritten StringIn Bytes 
- The data written by the run in bytes.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName String
- The query parameter for the Spark application name.
- driverShape String
- The VM shape for the driver. Sets the driver cores and memory.
- driverShape List<GetConfigs Invoke Runs Run Driver Shape Config> 
- This is used to configure the shape of the driver or executor if a flexible shape is used.
- execute String
- The input used for spark-submit command. For more details see https://spark.apache.org/docs/latest/submitting-applications.html#launching-applications-with-spark-submit. Supported options include --class,--file,--jars,--conf,--py-files, and main application file with arguments. Example:--jars oci://path/to/a.jar,oci://path/to/b.jar --files oci://path/to/a.json,oci://path/to/b.csv --py-files oci://path/to/a.py,oci://path/to/b.py --conf spark.sql.crossJoin.enabled=true --class org.apache.spark.examples.SparkPi oci://path/to/main.jar 10Note: If execute is specified together with applicationId, className, configuration, fileUri, language, arguments, parameters during application create/update, or run create/submit, Data Flow service will use derived information from execute input only.
- executorShape String
- The VM shape for the executors. Sets the executor cores and memory.
- executorShape List<GetConfigs Invoke Runs Run Executor Shape Config> 
- This is used to configure the shape of the driver or executor if a flexible shape is used.
- fileUri String
- An Oracle Cloud Infrastructure URI of the file containing the application to execute. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- Map<String,String>
- 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"}
- id String
- The ID of a run.
- idleTimeout StringIn Minutes 
- 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
- The Spark language.
- lifecycleDetails String
- The detailed messages about the lifecycle state.
- logsBucket StringUri 
- An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- maxDuration StringIn Minutes 
- The maximum duration in minutes for which an Application should run. Data Flow Run would be terminated once it reaches this duration from the time it transitions to IN_PROGRESSstate.
- metastoreId String
- The OCID of Oracle Cloud Infrastructure Hive Metastore.
- numExecutors Integer
- The number of executor VMs requested.
- opcParent StringRpt Url 
- opcRequest StringId 
- Unique Oracle assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
- ownerPrincipal StringId 
- The OCID of the user who created the resource.
- ownerUser StringName 
- The username of the user who created the resource. If the username of the owner does not exist, nullwill be returned and the caller should refer to the ownerPrincipalId value instead.
- parameters
List<GetInvoke Runs Run Parameter> 
- 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
- The ID of the pool.
- privateEndpoint List<String>Dns Zones 
- An array of DNS zone names. Example: [ "app.examplecorp.com", "app.examplecorp2.com" ]
- privateEndpoint StringId 
- The OCID of a private endpoint.
- privateEndpoint IntegerMax Host Count 
- The maximum number of hosts to be accessed through the private endpoint. This value is used to calculate the relevant CIDR block and should be a multiple of 256. If the value is not a multiple of 256, it is rounded up to the next multiple of 256. For example, 300 is rounded up to 512.
- privateEndpoint List<String>Nsg Ids 
- An array of network security group OCIDs.
- privateEndpoint StringSubnet Id 
- The OCID of a subnet.
- runDuration StringIn Milliseconds 
- The duration of the run in milliseconds.
- sparkVersion String
- The Spark version utilized to run the application.
- state String
- The LifecycleState of the run.
- 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
- totalOcpu Integer
- The total number of oCPU requested by the run.
- type String
- The Spark application processing type.
- warehouseBucket StringUri 
- 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.
- applicationId string
- The ID of the application.
- applicationLog GetConfigs Invoke Runs Run Application Log Config[] 
- Logging details of Application logs for Data Flow Run.
- archiveUri string
- 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[]
- The arguments passed to the running application as command line arguments. An argument is either a plain text or a placeholder. Placeholders are replaced using values from the parameters map. Each placeholder specified must be represented in the parameters map else the request (POST or PUT) will fail with a HTTP 400 status code. Placeholders are specified as Service Api Spec, wherenameis the name of the parameter. Example:[ "--input", "${input_file}", "--name", "John Doe" ]If "input_file" has a value of "mydata.xml", then the value above will be translated to--input mydata.xml --name "John Doe"
- asynchronous boolean
- className string
- The class for the application.
- compartmentId string
- The OCID of the compartment.
- configuration {[key: string]: string}
- 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.
- dataRead stringIn Bytes 
- The data read by the run in bytes.
- dataWritten stringIn Bytes 
- The data written by the run in bytes.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName string
- The query parameter for the Spark application name.
- driverShape string
- The VM shape for the driver. Sets the driver cores and memory.
- driverShape GetConfigs Invoke Runs Run Driver Shape Config[] 
- This is used to configure the shape of the driver or executor if a flexible shape is used.
- execute string
- The input used for spark-submit command. For more details see https://spark.apache.org/docs/latest/submitting-applications.html#launching-applications-with-spark-submit. Supported options include --class,--file,--jars,--conf,--py-files, and main application file with arguments. Example:--jars oci://path/to/a.jar,oci://path/to/b.jar --files oci://path/to/a.json,oci://path/to/b.csv --py-files oci://path/to/a.py,oci://path/to/b.py --conf spark.sql.crossJoin.enabled=true --class org.apache.spark.examples.SparkPi oci://path/to/main.jar 10Note: If execute is specified together with applicationId, className, configuration, fileUri, language, arguments, parameters during application create/update, or run create/submit, Data Flow service will use derived information from execute input only.
- executorShape string
- The VM shape for the executors. Sets the executor cores and memory.
- executorShape GetConfigs Invoke Runs Run Executor Shape Config[] 
- This is used to configure the shape of the driver or executor if a flexible shape is used.
- fileUri string
- An Oracle Cloud Infrastructure URI of the file containing the application to execute. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- {[key: string]: string}
- 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"}
- id string
- The ID of a run.
- idleTimeout stringIn Minutes 
- 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
- The Spark language.
- lifecycleDetails string
- The detailed messages about the lifecycle state.
- logsBucket stringUri 
- An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- maxDuration stringIn Minutes 
- The maximum duration in minutes for which an Application should run. Data Flow Run would be terminated once it reaches this duration from the time it transitions to IN_PROGRESSstate.
- metastoreId string
- The OCID of Oracle Cloud Infrastructure Hive Metastore.
- numExecutors number
- The number of executor VMs requested.
- opcParent stringRpt Url 
- opcRequest stringId 
- Unique Oracle assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
- ownerPrincipal stringId 
- The OCID of the user who created the resource.
- ownerUser stringName 
- The username of the user who created the resource. If the username of the owner does not exist, nullwill be returned and the caller should refer to the ownerPrincipalId value instead.
- parameters
GetInvoke Runs Run Parameter[] 
- 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
- The ID of the pool.
- privateEndpoint string[]Dns Zones 
- An array of DNS zone names. Example: [ "app.examplecorp.com", "app.examplecorp2.com" ]
- privateEndpoint stringId 
- The OCID of a private endpoint.
- privateEndpoint numberMax Host Count 
- The maximum number of hosts to be accessed through the private endpoint. This value is used to calculate the relevant CIDR block and should be a multiple of 256. If the value is not a multiple of 256, it is rounded up to the next multiple of 256. For example, 300 is rounded up to 512.
- privateEndpoint string[]Nsg Ids 
- An array of network security group OCIDs.
- privateEndpoint stringSubnet Id 
- The OCID of a subnet.
- runDuration stringIn Milliseconds 
- The duration of the run in milliseconds.
- sparkVersion string
- The Spark version utilized to run the application.
- state string
- The LifecycleState of the run.
- 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
- totalOcpu number
- The total number of oCPU requested by the run.
- type string
- The Spark application processing type.
- warehouseBucket stringUri 
- An Oracle Cloud Infrastructure URI of the bucket to be used as default warehouse directory for BATCH SQL runs. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- application_id str
- The ID of the application.
- application_log_ Sequence[Getconfigs Invoke Runs Run Application Log Config] 
- Logging details of Application logs for Data Flow Run.
- archive_uri str
- 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]
- The arguments passed to the running application as command line arguments. An argument is either a plain text or a placeholder. Placeholders are replaced using values from the parameters map. Each placeholder specified must be represented in the parameters map else the request (POST or PUT) will fail with a HTTP 400 status code. Placeholders are specified as Service Api Spec, wherenameis the name of the parameter. Example:[ "--input", "${input_file}", "--name", "John Doe" ]If "input_file" has a value of "mydata.xml", then the value above will be translated to--input mydata.xml --name "John Doe"
- asynchronous bool
- class_name str
- The class for the application.
- compartment_id str
- The OCID of the compartment.
- configuration Mapping[str, str]
- 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.
- data_read_ strin_ bytes 
- The data read by the run in bytes.
- data_written_ strin_ bytes 
- The data written by the run in bytes.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- display_name str
- The query parameter for the Spark application name.
- driver_shape str
- The VM shape for the driver. Sets the driver cores and memory.
- driver_shape_ Sequence[Getconfigs Invoke Runs Run Driver Shape Config] 
- This is used to configure the shape of the driver or executor if a flexible shape is used.
- execute str
- The input used for spark-submit command. For more details see https://spark.apache.org/docs/latest/submitting-applications.html#launching-applications-with-spark-submit. Supported options include --class,--file,--jars,--conf,--py-files, and main application file with arguments. Example:--jars oci://path/to/a.jar,oci://path/to/b.jar --files oci://path/to/a.json,oci://path/to/b.csv --py-files oci://path/to/a.py,oci://path/to/b.py --conf spark.sql.crossJoin.enabled=true --class org.apache.spark.examples.SparkPi oci://path/to/main.jar 10Note: If execute is specified together with applicationId, className, configuration, fileUri, language, arguments, parameters during application create/update, or run create/submit, Data Flow service will use derived information from execute input only.
- executor_shape str
- The VM shape for the executors. Sets the executor cores and memory.
- executor_shape_ Sequence[Getconfigs Invoke Runs Run Executor Shape Config] 
- This is used to configure the shape of the driver or executor if a flexible shape is used.
- file_uri str
- An Oracle Cloud Infrastructure URI of the file containing the application to execute. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- Mapping[str, str]
- 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"}
- id str
- The ID of a run.
- idle_timeout_ strin_ minutes 
- 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
- The Spark language.
- lifecycle_details str
- The detailed messages about the lifecycle state.
- logs_bucket_ struri 
- An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- max_duration_ strin_ minutes 
- The maximum duration in minutes for which an Application should run. Data Flow Run would be terminated once it reaches this duration from the time it transitions to IN_PROGRESSstate.
- metastore_id str
- The OCID of Oracle Cloud Infrastructure Hive Metastore.
- num_executors int
- The number of executor VMs requested.
- opc_parent_ strrpt_ url 
- opc_request_ strid 
- Unique Oracle assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
- owner_principal_ strid 
- The OCID of the user who created the resource.
- owner_user_ strname 
- The username of the user who created the resource. If the username of the owner does not exist, nullwill be returned and the caller should refer to the ownerPrincipalId value instead.
- parameters
Sequence[GetInvoke Runs Run Parameter] 
- 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
- The ID of the pool.
- private_endpoint_ Sequence[str]dns_ zones 
- An array of DNS zone names. Example: [ "app.examplecorp.com", "app.examplecorp2.com" ]
- private_endpoint_ strid 
- The OCID of a private endpoint.
- private_endpoint_ intmax_ host_ count 
- The maximum number of hosts to be accessed through the private endpoint. This value is used to calculate the relevant CIDR block and should be a multiple of 256. If the value is not a multiple of 256, it is rounded up to the next multiple of 256. For example, 300 is rounded up to 512.
- private_endpoint_ Sequence[str]nsg_ ids 
- An array of network security group OCIDs.
- private_endpoint_ strsubnet_ id 
- The OCID of a subnet.
- run_duration_ strin_ milliseconds 
- The duration of the run in milliseconds.
- spark_version str
- The Spark version utilized to run the application.
- state str
- The LifecycleState of the run.
- 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
- total_ocpu int
- The total number of oCPU requested by the run.
- type str
- The Spark application processing type.
- warehouse_bucket_ struri 
- 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.
- applicationId String
- The ID of the application.
- applicationLog List<Property Map>Configs 
- Logging details of Application logs for Data Flow Run.
- archiveUri String
- 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>
- The arguments passed to the running application as command line arguments. An argument is either a plain text or a placeholder. Placeholders are replaced using values from the parameters map. Each placeholder specified must be represented in the parameters map else the request (POST or PUT) will fail with a HTTP 400 status code. Placeholders are specified as Service Api Spec, wherenameis the name of the parameter. Example:[ "--input", "${input_file}", "--name", "John Doe" ]If "input_file" has a value of "mydata.xml", then the value above will be translated to--input mydata.xml --name "John Doe"
- asynchronous Boolean
- className String
- The class for the application.
- compartmentId String
- The OCID of the compartment.
- configuration Map<String>
- 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.
- dataRead StringIn Bytes 
- The data read by the run in bytes.
- dataWritten StringIn Bytes 
- The data written by the run in bytes.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName String
- The query parameter for the Spark application name.
- driverShape String
- The VM shape for the driver. Sets the driver cores and memory.
- driverShape List<Property Map>Configs 
- This is used to configure the shape of the driver or executor if a flexible shape is used.
- execute String
- The input used for spark-submit command. For more details see https://spark.apache.org/docs/latest/submitting-applications.html#launching-applications-with-spark-submit. Supported options include --class,--file,--jars,--conf,--py-files, and main application file with arguments. Example:--jars oci://path/to/a.jar,oci://path/to/b.jar --files oci://path/to/a.json,oci://path/to/b.csv --py-files oci://path/to/a.py,oci://path/to/b.py --conf spark.sql.crossJoin.enabled=true --class org.apache.spark.examples.SparkPi oci://path/to/main.jar 10Note: If execute is specified together with applicationId, className, configuration, fileUri, language, arguments, parameters during application create/update, or run create/submit, Data Flow service will use derived information from execute input only.
- executorShape String
- The VM shape for the executors. Sets the executor cores and memory.
- executorShape List<Property Map>Configs 
- This is used to configure the shape of the driver or executor if a flexible shape is used.
- fileUri String
- An Oracle Cloud Infrastructure URI of the file containing the application to execute. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- Map<String>
- 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"}
- id String
- The ID of a run.
- idleTimeout StringIn Minutes 
- 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
- The Spark language.
- lifecycleDetails String
- The detailed messages about the lifecycle state.
- logsBucket StringUri 
- An Oracle Cloud Infrastructure URI of the bucket where the Spark job logs are to be uploaded. See https://docs.cloud.oracle.com/iaas/Content/API/SDKDocs/hdfsconnector.htm#uriformat.
- maxDuration StringIn Minutes 
- The maximum duration in minutes for which an Application should run. Data Flow Run would be terminated once it reaches this duration from the time it transitions to IN_PROGRESSstate.
- metastoreId String
- The OCID of Oracle Cloud Infrastructure Hive Metastore.
- numExecutors Number
- The number of executor VMs requested.
- opcParent StringRpt Url 
- opcRequest StringId 
- Unique Oracle assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
- ownerPrincipal StringId 
- The OCID of the user who created the resource.
- ownerUser StringName 
- The username of the user who created the resource. If the username of the owner does not exist, nullwill be returned and the caller should refer to the ownerPrincipalId value instead.
- parameters List<Property Map>
- 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
- The ID of the pool.
- privateEndpoint List<String>Dns Zones 
- An array of DNS zone names. Example: [ "app.examplecorp.com", "app.examplecorp2.com" ]
- privateEndpoint StringId 
- The OCID of a private endpoint.
- privateEndpoint NumberMax Host Count 
- The maximum number of hosts to be accessed through the private endpoint. This value is used to calculate the relevant CIDR block and should be a multiple of 256. If the value is not a multiple of 256, it is rounded up to the next multiple of 256. For example, 300 is rounded up to 512.
- privateEndpoint List<String>Nsg Ids 
- An array of network security group OCIDs.
- privateEndpoint StringSubnet Id 
- The OCID of a subnet.
- runDuration StringIn Milliseconds 
- The duration of the run in milliseconds.
- sparkVersion String
- The Spark version utilized to run the application.
- state String
- The LifecycleState of the run.
- 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
- totalOcpu Number
- The total number of oCPU requested by the run.
- type String
- The Spark application processing type.
- warehouseBucket StringUri 
- 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.
GetInvokeRunsRunApplicationLogConfig      
- LogGroup stringId 
- The log group id for where log objects will be for Data Flow Runs.
- LogId string
- The log id of the log object the Application Logs of Data Flow Run will be shipped to.
- LogGroup stringId 
- The log group id for where log objects will be for Data Flow Runs.
- LogId string
- The log id of the log object the Application Logs of Data Flow Run will be shipped to.
- logGroup StringId 
- The log group id for where log objects will be for Data Flow Runs.
- logId String
- The log id of the log object the Application Logs of Data Flow Run will be shipped to.
- logGroup stringId 
- The log group id for where log objects will be for Data Flow Runs.
- logId string
- The log id of the log object the Application Logs of Data Flow Run will be shipped to.
- log_group_ strid 
- The log group id for where log objects will be for Data Flow Runs.
- log_id str
- The log id of the log object the Application Logs of Data Flow Run will be shipped to.
- logGroup StringId 
- The log group id for where log objects will be for Data Flow Runs.
- logId String
- The log id of the log object the Application Logs of Data Flow Run will be shipped to.
GetInvokeRunsRunDriverShapeConfig      
- MemoryIn doubleGbs 
- The amount of memory used for the driver or executors.
- Ocpus double
- The total number of OCPUs used for the driver or executors. See here for details.
- MemoryIn float64Gbs 
- The amount of memory used for the driver or executors.
- Ocpus float64
- The total number of OCPUs used for the driver or executors. See here for details.
- memoryIn DoubleGbs 
- The amount of memory used for the driver or executors.
- ocpus Double
- The total number of OCPUs used for the driver or executors. See here for details.
- memoryIn numberGbs 
- The amount of memory used for the driver or executors.
- ocpus number
- The total number of OCPUs used for the driver or executors. See here for details.
- memory_in_ floatgbs 
- The amount of memory used for the driver or executors.
- ocpus float
- The total number of OCPUs used for the driver or executors. See here for details.
- memoryIn NumberGbs 
- The amount of memory used for the driver or executors.
- ocpus Number
- The total number of OCPUs used for the driver or executors. See here for details.
GetInvokeRunsRunExecutorShapeConfig      
- MemoryIn doubleGbs 
- The amount of memory used for the driver or executors.
- Ocpus double
- The total number of OCPUs used for the driver or executors. See here for details.
- MemoryIn float64Gbs 
- The amount of memory used for the driver or executors.
- Ocpus float64
- The total number of OCPUs used for the driver or executors. See here for details.
- memoryIn DoubleGbs 
- The amount of memory used for the driver or executors.
- ocpus Double
- The total number of OCPUs used for the driver or executors. See here for details.
- memoryIn numberGbs 
- The amount of memory used for the driver or executors.
- ocpus number
- The total number of OCPUs used for the driver or executors. See here for details.
- memory_in_ floatgbs 
- The amount of memory used for the driver or executors.
- ocpus float
- The total number of OCPUs used for the driver or executors. See here for details.
- memoryIn NumberGbs 
- The amount of memory used for the driver or executors.
- ocpus Number
- The total number of OCPUs used for the driver or executors. See here for details.
GetInvokeRunsRunParameter    
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.