Class StandardTagNamespaceTemplate
The template of the standard tag namespace. This object includes necessary details to create the provided standard tag namespace.
Inherited Members
Namespace: Oci.IdentityService.Models
Assembly: OCI.DotNetSDK.Identity.dll
Syntax
public class StandardTagNamespaceTemplate
Properties
Description
Declaration
[Required(ErrorMessage = "Description is required.")]
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type | Description |
---|---|
string | The default description of the tag namespace that users can use to create the tag namespace |
Remarks
Required
StandardTagNamespaceName
Declaration
[Required(ErrorMessage = "StandardTagNamespaceName is required.")]
[JsonProperty(PropertyName = "standardTagNamespaceName")]
public string StandardTagNamespaceName { get; set; }
Property Value
Type | Description |
---|---|
string | The reserved name of this standard tag namespace |
Remarks
Required
Status
Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
public string Status { get; set; }
Property Value
Type | Description |
---|---|
string | The status of the standard tag namespace |
Remarks
Required
TagDefinitionTemplates
Declaration
[Required(ErrorMessage = "TagDefinitionTemplates is required.")]
[JsonProperty(PropertyName = "tagDefinitionTemplates")]
public List<StandardTagDefinitionTemplate> TagDefinitionTemplates { get; set; }
Property Value
Type | Description |
---|---|
List<StandardTagDefinitionTemplate> | The template of the tag definition. This object includes necessary details to create the provided standard tag definition. |
Remarks
Required