Show / Hide Table of Contents

Class NotebookSessionConfigDetails

Details for the notebook session configuration.

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

Properties

BlockStorageSizeInGBs

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

A notebook session instance is provided with a block storage volume. This specifies the size of the volume in GBs.

NotebookSessionShapeConfigDetails

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

PrivateEndpointId

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

The OCID of a Data Science private endpoint.

Shape

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

The shape used to launch the notebook session compute instance. The list of available shapes in a given compartment can be retrieved using the ListNotebookSessionShapes endpoint.

Remarks

Required

SubnetId

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

A notebook session 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 gateway for egress to the internet.

In this article
Back to top