Show / Hide Table of Contents

Class Agent

Information about the agent.

Inheritance
object
Agent
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 Agent

Properties

DisplayName

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

The name of the agent.

Remarks

Required

JavaSecurityStatus

Declaration
[Required(ErrorMessage = "JavaSecurityStatus is required.")]
[JsonProperty(PropertyName = "javaSecurityStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public JreSecurityStatus? JavaSecurityStatus { get; set; }
Property Value
Type Description
JreSecurityStatus?

The security status of the Java Runtime.

Remarks

Required

JavaVersion

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

The java version.

Remarks

Required

Plugins

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

A list of plugins installed on this agent.

Remarks

Required

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AgentType? Type { get; set; }
Property Value
Type Description
AgentType?

The agent type.

Remarks

Required

In this article
Back to top