Show / Hide Table of Contents

Class AutoActivateStatus

Status of autoactivation for the given data key in the APM Domain.

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

Properties

DataKey

Declaration
[Required(ErrorMessage = "DataKey is required.")]
[JsonProperty(PropertyName = "dataKey")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AutoActivateStatus.DataKeyEnum? DataKey { get; set; }
Property Value
Type Description
AutoActivateStatus.DataKeyEnum?

Data key type for which auto-activate needs needs to be turned on or off.

Remarks

Required

State

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

State of autoactivation in this APM Domain. If "ON" auto-activate is set to true, if "OFF" auto-activate is set to false.

Remarks

Required

In this article
Back to top