Show / Hide Table of Contents

Class InstanceConfiguration

The model deployment instance configuration

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

Properties

InstanceShapeName

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

The shape used to launch the model deployment instances.

Remarks

Required

ModelDeploymentInstanceShapeConfigDetails

Declaration
[JsonProperty(PropertyName = "modelDeploymentInstanceShapeConfigDetails")]
public ModelDeploymentInstanceShapeConfigDetails ModelDeploymentInstanceShapeConfigDetails { get; set; }
Property Value
Type Description
ModelDeploymentInstanceShapeConfigDetails

PrivateEndpointId

Declaration
[JsonProperty(PropertyName = "privateEndpointId")]
public string PrivateEndpointId { get; set; }
Property Value
Type Description
string

The OCID of a Data Science private endpoint.

SubnetId

Declaration
[JsonProperty(PropertyName = "subnetId")]
public string SubnetId { get; set; }
Property Value
Type Description
string

A model deployment instance is provided with a VNIC for network access. This specifies the OCID of the subnet to create a VNIC in. The subnet should be in a VCN with a NAT/SGW gateway for egress.

In this article
Back to top