Show / Hide Table of Contents

Class UpdateUnifiedAgentConfigurationDetails

Update Object for the Unified Agent configuration.

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

Properties

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example: {"Operations": {"CostCenter": "42"}}

Description

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

Description for this resource.

DisplayName

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

The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.

Remarks

Required

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

GroupAssociation

Declaration
[JsonProperty(PropertyName = "groupAssociation")]
public GroupAssociationDetails GroupAssociation { get; set; }
Property Value
Type Description
GroupAssociationDetails

IsEnabled

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

Whether or not this resource is currently enabled.

Remarks

Required

ServiceConfiguration

Declaration
[Required(ErrorMessage = "ServiceConfiguration is required.")]
[JsonProperty(PropertyName = "serviceConfiguration")]
public UnifiedAgentServiceConfigurationDetails ServiceConfiguration { get; set; }
Property Value
Type Description
UnifiedAgentServiceConfigurationDetails
Remarks

Required

In this article
Back to top