Show / Hide Table of Contents

Class NetworkConfiguration

A network configuration defines the required network characteristics for the remediation run of the recipe to access the source repository and/or verify build services.

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

Properties

NsgIds

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

The list of Oracle Cloud Identifiers (OCID) corresponding to Network Security Groups.

SubnetId

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

The Oracle Cloud Identifier (OCID) of the subnet.

Remarks

Required

In this article
Back to top