Show / Hide Table of Contents

Class InboundNetworkingConfig

Inbound Networking configuration.

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

Properties

EndpointMode

Declaration
[Required(ErrorMessage = "EndpointMode is required.")]
[JsonProperty(PropertyName = "endpointMode")]
[JsonConverter(typeof(ResponseEnumConverter))]
public InboundNetworkingConfig.EndpointModeEnum? EndpointMode { get; set; }
Property Value
Type Description
InboundNetworkingConfig.EndpointModeEnum?

inbounding from public or private endpoint.

Remarks

Required

PrivateEndpointId

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

The [OCID] of Private Endpoint when endpointMode=Private

In this article
Back to top