Show / Hide Table of Contents

Class BulkUnpinMetadata

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

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

Properties

AttributesUnpinned

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

Total number attributes (both string and numeric) in TRACES namespace that were unpinned.

Remarks

Required

OperationStatus

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

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

Type of operation.

Remarks

Required

SyntheticAttributesUnpinned

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

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

In this article
Back to top