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.
Inherited Members
Namespace: Oci.ApmtracesService.Models
Assembly: OCI.DotNetSDK.Apmtraces.dll
Syntax
public class BulkActivateAttributeDetail
Properties
AttributeExpression
Declaration
[JsonProperty(PropertyName = "attributeExpression")]
public string AttributeExpression { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Attribute expression if this attribute is an alias |
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. If unit is not specified, it defaults to NONE. |