Show / Hide Table of Contents

Class Plugin

An Oracle Cloud Agent plugin.

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

Properties

LastUpdateTime

Declaration
[JsonProperty(PropertyName = "lastUpdateTime")]
public DateTime? LastUpdateTime { get; set; }
Property Value
Type Description
DateTime?

The last updated time of the plugin, in UTC.

Message

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

An optional message from the plugin.

Name

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

The plugin name.

Remarks

Required

Status

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

The plugin status.

Remarks

Required

Version

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

The plugin version.

Remarks

Required

In this article
Back to top