Show / Hide Table of Contents

Class BulkUnpinAttributeDetail

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

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

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 unpinned.

Remarks

Required

AttributeNameSpace

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

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

In this article
Back to top