Show / Hide Table of Contents

Class UpdatePrivateEndpointDetails

Update details for a private endpoint.

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

Properties

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations": {"CostCenter": "42"}}

Description

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

Description of the private endpoint. Avoid entering confidential information.

DisplayName

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

The private endpoint display name. Avoid entering confidential information.

DnsZones

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

DNS Proxy forwards any DNS FQDN queries over into the consumer DNS resolver if the DNS FQDN is included in the dns zones list otherwise it goes to service provider VCN resolver.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form tags associated with the resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

IsUsedWithConfigurationSourceProvider

Declaration
[JsonProperty(PropertyName = "isUsedWithConfigurationSourceProvider")]
public bool? IsUsedWithConfigurationSourceProvider { get; set; }
Property Value
Type Description
bool?

When true, allows the private endpoint to be used with a configuration source provider.

NsgIdList

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

The OCIDs of network security groups (NSGs) for the private endpoint. Order does not matter.

SubnetId

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

The OCID of the subnet within the VCN for the private endpoint.

VcnId

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

The OCID of the VCN for the private endpoint.

In this article
Back to top