Show / Hide Table of Contents

Class DeployPluginsDetails

The information required to deploy new Management Agent Plugins.

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

Properties

AgentCompartmentId

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

Management Agent Compartment Identifier

Remarks

Required

AgentIds

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

List of Agent identifiers

Remarks

Required

PluginIds

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

Plugin Id

Remarks

Required

In this article
Back to top