Show / Hide Table of Contents

Class UpdateInstanceAgentConfigDetails

Configuration options for the Oracle Cloud Agent software running on the instance.

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

Properties

AreAllPluginsDisabled

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

Whether Oracle Cloud Agent can run all the available plugins. This includes the management and monitoring plugins.
To get a list of available plugins, use the {@link #listInstanceagentAvailablePlugins(ListInstanceagentAvailablePluginsRequest) listInstanceagentAvailablePlugins} operation in the Oracle Cloud Agent API. For more information about the available plugins, see Managing Plugins with Oracle Cloud Agent.

IsManagementDisabled

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

Whether Oracle Cloud Agent can run all the available management plugins.
These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
The management plugins are controlled by this parameter and by the per-plugin configuration in the pluginsConfig object.

  • If isManagementDisabled is true, all of the management plugins are disabled, regardless of the per-plugin configuration.
  • If isManagementDisabled is false, all of the management plugins are enabled. You can optionally disable individual management plugins by providing a value in the pluginsConfig object.

IsMonitoringDisabled

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

Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins.
These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the pluginsConfig object.

  • If isMonitoringDisabled is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration.
  • If isMonitoringDisabled is false, all of the monitoring plugins are enabled. You can optionally disable individual monitoring plugins by providing a value in the pluginsConfig object.

PluginsConfig

Declaration
[JsonProperty(PropertyName = "pluginsConfig")]
public List<InstanceAgentPluginConfigDetails> PluginsConfig { get; set; }
Property Value
Type Description
List<InstanceAgentPluginConfigDetails>

The configuration of plugins associated with this instance.

In this article
Back to top