Class DataflowUpdateDetail
Details of the existing dataflow instance to be updated.
Inheritance
DataflowUpdateDetail
Assembly: OCI.DotNetSDK.Dif.dll
Syntax
public class DataflowUpdateDetail
Properties
Connections
Declaration
[JsonProperty(PropertyName = "connections")]
public UpdateDataflowConnections Connections { get; set; }
Property Value
DriverShape
Declaration
[JsonProperty(PropertyName = "driverShape")]
public string DriverShape { get; set; }
Property Value
| Type |
Description |
| string |
The VM shape for the driver. Sets the driver cores and memory.
|
DriverShapeConfig
Declaration
[JsonProperty(PropertyName = "driverShapeConfig")]
public ShapeConfig DriverShapeConfig { get; set; }
Property Value
ExecutorShape
Declaration
[JsonProperty(PropertyName = "executorShape")]
public string ExecutorShape { get; set; }
Property Value
| Type |
Description |
| string |
The VM shape for the executors. Sets the executor cores and memory.
|
ExecutorShapeConfig
Declaration
[JsonProperty(PropertyName = "executorShapeConfig")]
public ShapeConfig ExecutorShapeConfig { get; set; }
Property Value
InstanceId
Declaration
[Required(ErrorMessage = "InstanceId is required.")]
[JsonProperty(PropertyName = "instanceId")]
public string InstanceId { get; set; }
Property Value
| Type |
Description |
| string |
Instance id of the existing dataflow instance to be updated.
|
LogBucketInstanceId
Declaration
[JsonProperty(PropertyName = "logBucketInstanceId")]
public string LogBucketInstanceId { get; set; }
Property Value
| Type |
Description |
| string |
InstanceId of log bucket created as part of objectstorage service in stack. Used for storing application run logs.
|
NumExecutors
Declaration
[JsonProperty(PropertyName = "numExecutors")]
public int? NumExecutors { get; set; }
Property Value
| Type |
Description |
| int? |
The number of executor VMs requested.
|
PrivateEndpointId
Declaration
[JsonProperty(PropertyName = "privateEndpointId")]
public string PrivateEndpointId { get; set; }
Property Value
| Type |
Description |
| string |
OCID of the already provisioned dataflow private endpoint.
|
SparkVersion
Declaration
[JsonProperty(PropertyName = "sparkVersion")]
public string SparkVersion { get; set; }
Property Value
| Type |
Description |
| string |
The Spark version utilized to run the application.
|
WarehouseBucketInstanceId
Declaration
[JsonProperty(PropertyName = "warehouseBucketInstanceId")]
public string WarehouseBucketInstanceId { get; set; }
Property Value
| Type |
Description |
| string |
InstanceId of warehouse bucket created as part of objectstorage service in stack. Mandatory for SQL applications.
|