Show / Hide Table of Contents

Class TagTemplate

Template for governance rules of type tag.

Inheritance
object
Template
TagTemplate
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GovernancerulescontrolplaneService.Models
Assembly: OCI.DotNetSDK.Governancerulescontrolplane.dll
Syntax
public class TagTemplate : Template

Properties

Description

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

Description of the tag namespace.

Name

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

The name of the tag namespace. It must be unique across all tag namespaces in the tenancy and cannot be changed.

Remarks

Required

TagDefaults

Declaration
[JsonProperty(PropertyName = "tagDefaults")]
public List<TagDefault> TagDefaults { get; set; }
Property Value
Type Description
List<TagDefault>

Tags

Declaration
[JsonProperty(PropertyName = "tags")]
public List<Tag> Tags { get; set; }
Property Value
Type Description
List<Tag>

Represents an array of tags for tag namespace.

In this article
Back to top