Class ResourceConfiguration
Properties related to a resource.
Inherited Members
Namespace: Oci.DataintegrationService.Models
Assembly: OCI.DotNetSDK.Dataintegration.dll
Syntax
public class ResourceConfiguration
Properties
DriverShape
Declaration
[Required(ErrorMessage = "DriverShape is required.")]
[JsonProperty(PropertyName = "driverShape")]
public string DriverShape { get; set; }
Property Value
Type | Description |
---|---|
string | The VM shape of the driver used while creating an Oracle Cloud Infrastructure Data Flow application. It sets the driver cores and memory. |
Remarks
Required
ExecutorShape
Declaration
[Required(ErrorMessage = "ExecutorShape is required.")]
[JsonProperty(PropertyName = "executorShape")]
public string ExecutorShape { get; set; }
Property Value
Type | Description |
---|---|
string | The shape of the executor used while creating an Oracle Cloud Infrastructure Data Flow application. It sets the executor cores and memory. |
Remarks
Required
SparkVersion
Declaration
[Required(ErrorMessage = "SparkVersion is required.")]
[JsonProperty(PropertyName = "sparkVersion")]
public string SparkVersion { get; set; }
Property Value
Type | Description |
---|---|
string | The version of the spark used while creating an Oracle Cloud Infrastructure Data Flow application. |
Remarks
Required
TotalExecutors
Declaration
[Required(ErrorMessage = "TotalExecutors is required.")]
[JsonProperty(PropertyName = "totalExecutors")]
public int? TotalExecutors { get; set; }
Property Value
Type | Description |
---|---|
int? | Number of executor VMs requested while creating an Oracle Cloud Infrastructure Data Flow application. |
Remarks
Required