Show / Hide Table of Contents

Class CreateAgentConfigDetails

Agent configuration for any Agent complying with the OpAMP specification.

Inheritance
object
CreateConfigDetails
CreateAgentConfigDetails
Inherited Members
CreateConfigDetails.FreeformTags
CreateConfigDetails.DefinedTags
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApmconfigService.Models
Assembly: OCI.DotNetSDK.Apmconfig.dll
Syntax
public class CreateAgentConfigDetails : CreateConfigDetails

Properties

Config

Declaration
[JsonProperty(PropertyName = "config")]
public AgentConfigMap Config { get; set; }
Property Value
Type Description
AgentConfigMap

MatchAgentsWithAttributeValue

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

The agent attribute VALUE by which an agent configuration is matched to an agent. Each agent configuration object must specify a different value. The attribute KEY corresponding to this VALUE is in the matchAgentsWithAttributeKey field.

Remarks

Required

Overrides

Declaration
[JsonProperty(PropertyName = "overrides")]
public AgentConfigOverrides Overrides { get; set; }
Property Value
Type Description
AgentConfigOverrides
In this article
Back to top