Show / Hide Table of Contents

Class BulkUpdateAttributeStatus

Response of a bulk update attribute operation.

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

Properties

AttributeStatuses

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

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

Remarks

Required

BulkUpdateAttributeMetadata

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

Required

In this article
Back to top