Show / Hide Table of Contents

Class FolderTagSummary

Summary of a folder tag.

Inheritance
object
FolderTagSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatacatalogService.Models
Assembly: OCI.DotNetSDK.Datacatalog.dll
Syntax
public class FolderTagSummary

Properties

FolderKey

Declaration
[JsonProperty(PropertyName = "folderKey")]
public string FolderKey { get; set; }
Property Value
Type Description
string

The unique key of the parent folder.

GlossaryKey

Declaration
[JsonProperty(PropertyName = "glossaryKey")]
public string GlossaryKey { get; set; }
Property Value
Type Description
string

Unique id of the parent glossary of the term.

Key

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

Unique tag key that is immutable.

Remarks

Required

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LifecycleState? LifecycleState { get; set; }
Property Value
Type Description
LifecycleState?

State of the Tag.

Name

Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

Name of the tag that matches the term name.

TermDescription

Declaration
[JsonProperty(PropertyName = "termDescription")]
public string TermDescription { get; set; }
Property Value
Type Description
string

Description of the related term.

TermKey

Declaration
[JsonProperty(PropertyName = "termKey")]
public string TermKey { get; set; }
Property Value
Type Description
string

Unique key of the related term.

TermPath

Declaration
[JsonProperty(PropertyName = "termPath")]
public string TermPath { get; set; }
Property Value
Type Description
string

Path of the related term.

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time the tag was created, in the format defined by RFC3339. Example: 2019-03-25T21:10:29.600Z

Uri

Declaration
[JsonProperty(PropertyName = "uri")]
public string Uri { get; set; }
Property Value
Type Description
string

URI to the tag instance in the API.

In this article
Back to top