Show / Hide Table of Contents

Class Configuration

The configuration for service.

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

Properties

DiscoveryInterval

Declaration
[Required(ErrorMessage = "DiscoveryInterval is required.")]
[JsonProperty(PropertyName = "discoveryInterval")]
public int? DiscoveryInterval { get; set; }
Property Value
Type Description
int?

Frequency of domain discovery to be run on the service. The unit is in hours.

Remarks

Required

DomainSearchPaths

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

The whitelisted paths which domain discovery are run against.

Remarks

Required

In this article
Back to top