Show / Hide Table of Contents

Class BulkUpdateAttributeNotesDetail

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

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

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 BulkUpdateAttributeNotesDetail.AttributeNameSpaceEnum? AttributeNameSpace { get; set; }
Property Value
Type Description
BulkUpdateAttributeNotesDetail.AttributeNameSpaceEnum?

Namespace of the attribute for which the notes are to be updated. The attributeNameSpace will default to TRACES if it is not passed in.

Notes

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

Notes to be updated. The size of notes cannot exceed 1000 chars.

Remarks

Required

In this article
Back to top