Show / Hide Table of Contents

Class PrivateEndpointOutboundConnection

Details required for creating Private Endpoint Outbound Connection (ReverseConnection).

Inheritance
object
OutboundConnection
PrivateEndpointOutboundConnection
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IntegrationService.Models
Assembly: OCI.DotNetSDK.Integration.dll
Syntax
public class PrivateEndpointOutboundConnection : OutboundConnection

Properties

NsgIds

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

One or more Network security group Ids. This is an optional argument.

SubnetId

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

Customer Private Network VCN Subnet OCID. This is a required argument.

Remarks

Required

In this article
Back to top