Show / Hide Table of Contents

Class ContainerDnsConfig

DNS settings for containers.

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

Properties

Nameservers

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

IP address of the name server..

Options

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

Options allows certain internal resolver variables to be modified.

Searches

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

Search list for hostname lookup.

In this article
Back to top