Show / Hide Table of Contents

Class BulkPinStatus

Response of a bulk attribute pin operation.

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

Properties

AttributeStatuses

Declaration
[Required(ErrorMessage = "AttributeStatuses is required.")]
[JsonProperty(PropertyName = "attributeStatuses")]
public List<AttributePinResponse> AttributeStatuses { get; set; }
Property Value
Type Description
List<AttributePinResponse>

We preserve the order of the attribute items from the bulk pin request in this collection. The ith object in this collection represents the bulk pin operation status of the ith object in the BulkPinAttributeDetails object in the Bulk pin request. If the bulk pin operation results in a processing error or a validation error, the operationStatus property in the BulkPinMetadata object will contain the appropriate bulk error status for the bulk operation.

Remarks

Required

BulkPinMetadata

Declaration
[Required(ErrorMessage = "BulkPinMetadata is required.")]
[JsonProperty(PropertyName = "bulkPinMetadata")]
public BulkPinMetadata BulkPinMetadata { get; set; }
Property Value
Type Description
BulkPinMetadata
Remarks

Required

In this article
Back to top