Show / Hide Table of Contents

Class UpdatePrivateEndpointDetails

Private endpoint update configuration details.

Inheritance
object
UpdateNetworkEndpointDetails
UpdatePrivateEndpointDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.VisualbuilderService.Models
Assembly: OCI.DotNetSDK.Visualbuilder.dll
Syntax
public class UpdatePrivateEndpointDetails : UpdateNetworkEndpointDetails

Properties

NetworkSecurityGroupIds

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

Network Security Group OCIDs for the Private Endpoint.

SubnetId

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

The subnet OCID for the private endpoint. If provided then a new Private Endpoint will be created and a new Private Endpoint IP may be generated.

In this article
Back to top