Show / Hide Table of Contents

Class Tag

Definition of a tag which is a key-value pair.

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

Properties

TagName

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

Key that specifies the tag name.

Remarks

Required

TagValue

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

Value associated with the tag key.

Remarks

Required

In this article
Back to top