Show / Hide Table of Contents

Class ServiceVnicChannel

Specifies the configuration to access private resources in customer tenancy using service managed VNIC.

Inheritance
object
NetworkChannel
ServiceVnicChannel
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class ServiceVnicChannel : NetworkChannel

Properties

NsgIds

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

An array of network security group OCIDs.

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 where private resources exist.

Remarks

Required

In this article
Back to top