Show / Hide Table of Contents

Class UpdateManagedComputeClusterInstanceConfigurationDetails

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

Inheritance
object
UpdateManagedComputeClusterInstanceConfigurationDetails
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 UpdateManagedComputeClusterInstanceConfigurationDetails

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

InstanceShapeDetails

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