Show / Hide Table of Contents

Class OutboundNetworkingConfig

Outbound Networking configuration.

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

Properties

CustomSubnetId

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

ocid of customer subnet when networkMode=Custom

NetworkMode

Declaration
[Required(ErrorMessage = "NetworkMode is required.")]
[JsonProperty(PropertyName = "networkMode")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OutboundNetworkingConfig.NetworkModeEnum? NetworkMode { get; set; }
Property Value
Type Description
OutboundNetworkingConfig.NetworkModeEnum?

outbounding to managed internet or customer network.

Remarks

Required

NsgIds

Declaration
[JsonProperty(PropertyName = "nsgIds")]
public List<string> NsgIds { get; set; }
Property Value
Type Description
List<string>

A list of the OCIDs of the network security groups that the private endpoint's VNIC belongs to.

In this article
Back to top