Show / Hide Table of Contents

Class BulkUpdateNotesStatus

Response of a bulk update notes operation.

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

Properties

AttributeStatuses

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

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

Remarks

Required

BulkUpdateNotesMetadata

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

Required

In this article
Back to top