Show / Hide Table of Contents

Class ManagedComputeClusterInstanceConfigurationDetails

The compute target instance configuration details for managed compute cluster type compute target.

Inheritance
object
ManagedComputeClusterInstanceConfigurationDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatascienceService.Models
Assembly: OCI.DotNetSDK.Datascience.dll
Syntax
public class ManagedComputeClusterInstanceConfigurationDetails

Properties

BootVolumeSizeInGBs

Declaration
[JsonProperty(PropertyName = "bootVolumeSizeInGBs")]
public int? BootVolumeSizeInGBs { get; set; }
Property Value
Type Description
int?

The size of the boot volume to attach to the instance.

InstanceShape

Declaration
[Required(ErrorMessage = "InstanceShape is required.")]
[JsonProperty(PropertyName = "instanceShape")]
public string InstanceShape { get; set; }
Property Value
Type Description
string

The shape used to launch the instances in compute target. Supported shapes can be retrieved using compute target shapes api.

Remarks

Required

InstanceShapeDetails

Declaration
[JsonProperty(PropertyName = "instanceShapeDetails")]
public ManagedComputeClusterInstanceShapeDetails InstanceShapeDetails { get; set; }
Property Value
Type Description
ManagedComputeClusterInstanceShapeDetails
In this article
Back to top