Show / Hide Table of Contents

Class Network

Network configuration of the batch context.

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

Properties

NsgIds

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

A list of OCIDs of associated network security groups.

Remarks

Required

SubnetId

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

OCID of associated subnet.

Remarks

Required

Vnics

Declaration
[Required(ErrorMessage = "Vnics is required.")]
[JsonProperty(PropertyName = "vnics")]
public List<Vnic> Vnics { get; set; }
Property Value
Type Description
List<Vnic>

A list of private endpoint's VNICs.

Remarks

Required

In this article
Back to top