Show / Hide Table of Contents

Class CreatePrivateEndpointDetails

Creation details for a private endpoint.

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

Properties

CompartmentId

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

The OCID of the compartment containing this private endpoint.

Remarks

Required

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
[Required(ErrorMessage = "DisplayName is required.")]
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

The private endpoint display name. Avoid entering confidential information.

Remarks

Required

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
[Required(ErrorMessage = "SubnetId is required.")]
[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.

Remarks

Required

VcnId

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

The OCID of the VCN for the private endpoint.

Remarks

Required

In this article
Back to top