Show / Hide Table of Contents

Class SqlEndpointVcnConfig

The VCN configuration for VCN network type selection.

Inheritance
object
SqlEndpointNetworkConfiguration
SqlEndpointVcnConfig
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataflowService.Models
Assembly: OCI.DotNetSDK.Dataflow.dll
Syntax
public class SqlEndpointVcnConfig : SqlEndpointNetworkConfiguration

Properties

HostNamePrefix

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

The host name prefix.

NsgIds

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

The OCIDs of Network Security Groups (NSGs).

PrivateEndpointIp

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

Ip Address of private endpoint

SubnetId

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

The VCN Subnet OCID.

Remarks

Required

VcnId

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

The VCN OCID.

Remarks

Required

In this article
Back to top