Show / Hide Table of Contents

Class AvailablePluginSummary

Information about where a plugin is supported.

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

Properties

IsEnabledByDefault

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

Whether the plugin is enabled or disabled by default.

Remarks

Required

IsSupported

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

Whether the plugin is supported.

Remarks

Required

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

Summary

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

A brief description of the plugin's functionality.

In this article
Back to top