Show / Hide Table of Contents

Class AutoActivateToggleStatus

Response of a auto-activate toggle operation.

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

Properties

DataKey

Declaration
[Required(ErrorMessage = "DataKey is required.")]
[JsonProperty(PropertyName = "dataKey")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AutoActivateToggleStatus.DataKeyEnum? DataKey { get; set; }
Property Value
Type Description
AutoActivateToggleStatus.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

Status

Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AutoActivateToggleStatus.StatusEnum? Status { get; set; }
Property Value
Type Description
AutoActivateToggleStatus.StatusEnum?

Status of this operation.

Remarks

Required

In this article
Back to top