Show / Hide Table of Contents

Class BulkUpdateAttributeDetail

Object that contains the details about a single attribute in the bulk request for which properties are to be updated.

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

Properties

AttributeName

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

Name of the attribute for which notes are to be updated.

Remarks

Required

AttributeNameSpace

Declaration
[JsonProperty(PropertyName = "attributeNameSpace")]
[JsonConverter(typeof(StringEnumConverter))]
public BulkUpdateAttributeDetail.AttributeNameSpaceEnum? AttributeNameSpace { get; set; }
Property Value
Type Description
BulkUpdateAttributeDetail.AttributeNameSpaceEnum?

Namespace of the attribute for which the properties are to be updated.

Unit

Declaration
[JsonProperty(PropertyName = "unit")]
[JsonConverter(typeof(StringEnumConverter))]
public BulkUpdateAttributeDetail.UnitEnum? Unit { get; set; }
Property Value
Type Description
BulkUpdateAttributeDetail.UnitEnum?

Unit of the attribute to be updated.

In this article
Back to top