Show / Hide Table of Contents

Class BulkActivationMetadata

Metadata about the bulk activation operation. The bulk activation operation is atomic and binary. If the processing of any of the attributes in the bulk activation request results in a processing or validation error, then none of the attributes in the request are activated. The bulk activation request succeeds only when all the attributes in the bulk activation request are processed and they get a successful attributeStatus back.

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

Properties

AvailableNumericAttributes

Declaration
[JsonProperty(PropertyName = "availableNumericAttributes")]
public int? AvailableNumericAttributes { get; set; }
Property Value
Type Description
int?

Total number of free slots available to activate numeric attributes in the TRACES namespace in the APM Domain. Note that if a bulk request has succeeded, this number reflects the total number of free slots available for activation of additional numeric attributes in the TRACES namespace in the APM Domain.

AvailableStringAttributes

Declaration
[JsonProperty(PropertyName = "availableStringAttributes")]
public int? AvailableStringAttributes { get; set; }
Property Value
Type Description
int?

Total number of free slots available to activate string attributes in the TRACES namespace in the APM Domain. Note that if a bulk request has succeeded, this number reflects the total number of free slots available for activation of additional string attributes in the TRACES namespace in the APM Domain.

AvailableSyntheticNumericAttributes

Declaration
[JsonProperty(PropertyName = "availableSyntheticNumericAttributes")]
public int? AvailableSyntheticNumericAttributes { get; set; }
Property Value
Type Description
int?

Total number of free slots available to activate numeric attributes in the SYNTHETIC namespace in the APM Domain. Note that if a bulk request has succeeded, this number reflects the total number of free synthetic slots available for activation of additional numeric attributes in the SYNTHETIC namespace in the APM Domain.

AvailableSyntheticStringAttributes

Declaration
[JsonProperty(PropertyName = "availableSyntheticStringAttributes")]
public int? AvailableSyntheticStringAttributes { get; set; }
Property Value
Type Description
int?

Total number of free slots available to activate string attributes in the SYNTHETIC namespace in the APM Domain. Note that if a bulk request has succeeded, this number reflects the total number of free synthetic slots available for activation of additional string attributes in the SYNTHETIC namespace in the APM Domain.

NumericAttributesActivated

Declaration
[JsonProperty(PropertyName = "numericAttributesActivated")]
public int? NumericAttributesActivated { get; set; }
Property Value
Type Description
int?

Total number of numeric attributes in TRACES namespace that were activated.

OperationStatus

Declaration
[Required(ErrorMessage = "OperationStatus is required.")]
[JsonProperty(PropertyName = "operationStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public BulkActivationMetadata.OperationStatusEnum? OperationStatus { get; set; }
Property Value
Type Description
BulkActivationMetadata.OperationStatusEnum?

Operation status of the bulk activation operation. The bulk activation operation could have either a success or an error status as defined below. The following is a success status for the bulk activation operation. SUCCESS - The bulk activation operation has succeeded and all the attributes in the bulk activation request have been activated by this operation or activated earlier. The following are error statuses for the bulk activation operation. Note that none of the attributes (string or numeric) in the bulk request have been activated by this bulk activation operation if any of the below statuses. EMPTY_ATTRIBUTE_LIST - The bulk activation request object was empty and did not contain any attributes to be activated. NUMERIC_ATTRIBUTE_LIMIT_EXCEEDED - The number of numeric attributes in the bulk request exceeded the maximum limit (100) of numeric attributes that could be activated in the APM Domain. STRING_ATTRIBUTE_LIMIT_EXCEEDED - The number of string attributes in the bulk request exceeded the maximum limit (700) of string attributes that could be activated in the APM Domain. INSUFFICIENT_STRING_SPACE - There are not enough free slots available in the APM Domain to activate the string attributes present in the bulk request. INSUFFICIENT_NUMERIC_SPACE - There are not enough free slots available in the APM Domain to activate the numeric attributes present in the bulk request. INVALID_BULK_REQUEST - The bulk request contains invalid attribute(s), or attribute(s) that resulted in a validation error, or an attribute that resulted in a processing error.

Remarks

Required

OperationType

Declaration
[Required(ErrorMessage = "OperationType is required.")]
[JsonProperty(PropertyName = "operationType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public BulkActivationMetadata.OperationTypeEnum? OperationType { get; set; }
Property Value
Type Description
BulkActivationMetadata.OperationTypeEnum?

Type of operation.

Remarks

Required

StringAttributesActivated

Declaration
[JsonProperty(PropertyName = "stringAttributesActivated")]
public int? StringAttributesActivated { get; set; }
Property Value
Type Description
int?

Total number of string attributes in TRACES namespace that were activated.

SyntheticNumericAttributesActivated

Declaration
[JsonProperty(PropertyName = "syntheticNumericAttributesActivated")]
public int? SyntheticNumericAttributesActivated { get; set; }
Property Value
Type Description
int?

Total number of numeric attributes in SYNTHETIC namespace that were activated.

SyntheticStringAttributesActivated

Declaration
[JsonProperty(PropertyName = "syntheticStringAttributesActivated")]
public int? SyntheticStringAttributesActivated { get; set; }
Property Value
Type Description
int?

Total number of string attributes in SYNTHETIC namespace that were activated.

In this article
Back to top