Show / Hide Table of Contents

Class FleetAgentOsConfiguration

Management Agent Configuration for list of include/exclude file system paths (specific to operating system).

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

Properties

ExcludePaths

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

An array of file system paths (environment variables supported).

Remarks

Required

IncludePaths

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

An array of file system paths (environment variables supported).

Remarks

Required

In this article
Back to top