Show / Hide Table of Contents

Class BulkUpdateNotesMetadata

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

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

Properties

AttributesNotesUpdated

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

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

Remarks

Required

OperationStatus

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

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

Type of operation.

Remarks

Required

SyntheticAttributesPinned

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

Total number attributes (both string and numeric) in SYNTHETIC namespace that were pinned.

In this article
Back to top