Show / Hide Table of Contents

Class BulkActivateAttributeDetail

Object that contains the details about a single attribute in the bulk request to be activated. The attributeNameSpace and unit are optional parameters, and the attributeNameSpace will default to TRACES if it is not passed in.

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

Properties

AttributeName

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

Name of the attribute to be activated.

Remarks

Required

AttributeNameSpace

Declaration
[JsonProperty(PropertyName = "attributeNameSpace")]
[JsonConverter(typeof(StringEnumConverter))]
public BulkActivateAttributeDetail.AttributeNameSpaceEnum? AttributeNameSpace { get; set; }
Property Value
Type Description
BulkActivateAttributeDetail.AttributeNameSpaceEnum?

Namespace of the attribute to be activated. The attributeNameSpace will default to TRACES if it is not passed in.

AttributeType

Declaration
[Required(ErrorMessage = "AttributeType is required.")]
[JsonProperty(PropertyName = "attributeType")]
[JsonConverter(typeof(StringEnumConverter))]
public BulkActivateAttributeDetail.AttributeTypeEnum? AttributeType { get; set; }
Property Value
Type Description
BulkActivateAttributeDetail.AttributeTypeEnum?

Type of the attribute to be activated.

Remarks

Required

Unit

Declaration
[JsonProperty(PropertyName = "unit")]
[JsonConverter(typeof(StringEnumConverter))]
public BulkActivateAttributeDetail.UnitEnum? Unit { get; set; }
Property Value
Type Description
BulkActivateAttributeDetail.UnitEnum?

Unit of the attribute to be updated.

In this article
Back to top