Show / Hide Table of Contents

Class TemplateSummary

Summary information for a template.

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

Properties

CompartmentId

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

The OCID of the compartment containing this template.

Description

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

Brief description of the template.

DisplayName

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

Human-readable display name for the template.

Id

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

Unique identifier of the specified template.

IsFreeTier

Declaration
[JsonProperty(PropertyName = "isFreeTier")]
public bool? IsFreeTier { get; set; }
Property Value
Type Description
bool?

whether the template will work for free tier tenancy.

LifecycleState

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

The current lifecycle state of the template. Allowable values:

  • ACTIVE

TimeCreated

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

The date and time at which the template was created. Format is defined by RFC3339. Example: 2020-11-25T21:10:29.600Z

In this article
Back to top