Show / Hide Table of Contents

Class ManagementAgentPluginDetails

The information about the current management agent plugins that agent is having.

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

Properties

IsEnabled

Declaration
[JsonProperty(PropertyName = "isEnabled")]
public bool? IsEnabled { get; set; }
Property Value
Type Description
bool?

flag indicating whether the plugin is in enabled mode or disabled mode.

PluginDisplayName

Declaration
[JsonProperty(PropertyName = "pluginDisplayName")]
public string PluginDisplayName { get; set; }
Property Value
Type Description
string

Management Agent Plugin Identifier, can be renamed

PluginId

Declaration
[JsonProperty(PropertyName = "pluginId")]
public string PluginId { get; set; }
Property Value
Type Description
string

Plugin Id

PluginName

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

Management Agent Plugin Name

Remarks

Required

PluginStatus

Declaration
[JsonProperty(PropertyName = "pluginStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PluginStatus? PluginStatus { get; set; }
Property Value
Type Description
PluginStatus?

Plugin Status

PluginStatusMessage

Declaration
[JsonProperty(PropertyName = "pluginStatusMessage")]
public string PluginStatusMessage { get; set; }
Property Value
Type Description
string

Status message of the Plugin

PluginVersion

Declaration
[JsonProperty(PropertyName = "pluginVersion")]
public string PluginVersion { get; set; }
Property Value
Type Description
string

Plugin Version

In this article
Back to top