Show / Hide Table of Contents

Class BulkPinAttributeDetail

Object that contains the details about a single attribute in the bulk request to be pinned.

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

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 to be pinned.

Remarks

Required

AttributeNameSpace

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

Namespace of the attribute to be pinned. The attributeNameSpace will default to TRACES if it is not passed in.

In this article
Back to top