Show / Hide Table of Contents

Class BulkUpdateAttributeMetadata

Metadata about the bulk attribute update operation. The bulk attribute update operation is atomic and binary. If the processing of any of the attributes in the bulk attribute update request results in a processing or validation error, then none of the attributes updated.

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

Properties

AttributesUpdated

Declaration
[Required(ErrorMessage = "AttributesUpdated is required.")]
[JsonProperty(PropertyName = "attributesUpdated")]
public int? AttributesUpdated { get; set; }
Property Value
Type Description
int?

Total number attributes (both string and numeric) in TRACES namespace for which properties were updated.

Remarks

Required

OperationStatus

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

Operation status of the bulk update attribute operation. SUCCESS - The bulk attribute update request has succeeded and all the attributes in the request have been updated. The following are error statuses for the bulk update attributes operation. EMPTY_ATTRIBUTE_LIST - The bulk update attributes request object was empty and did not contain any attributes for which properties had to be updated. 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 BulkUpdateAttributeMetadata.OperationTypeEnum? OperationType { get; set; }
Property Value
Type Description
BulkUpdateAttributeMetadata.OperationTypeEnum?

Type of operation.

Remarks

Required

SyntheticAttributesUpdated

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

Total number attributes (both string and numeric) in SYNTHETIC namespace for which properties were updated.

In this article
Back to top