Show / Hide Table of Contents

Class NetworkConfig

Additional configuration of the user's network.

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

Properties

CidrBlock

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

The CIDR IP address block of the VCN.

IsNatGatewayRequired

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

A boolean flag whether to configure a NAT gateway.

In this article
Back to top