Show / Hide Table of Contents

Class TemplateContents

Files that make up the template contents of a template type.

Inheritance
System.Object
TemplateContents
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.DeploymentManagerAlpha.alpha.Data
Assembly: Google.Apis.DeploymentManagerAlpha.alpha.dll
Syntax
public class TemplateContents : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Imports

Import files referenced by the main template.

Declaration
[JsonProperty("imports")]
public virtual IList<ImportFile> Imports { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ImportFile>

Interpreter

Which interpreter (python or jinja) should be used during expansion.

Declaration
[JsonProperty("interpreter")]
public virtual string Interpreter { get; set; }
Property Value
Type Description
System.String

MainTemplate

The filename of the mainTemplate

Declaration
[JsonProperty("mainTemplate")]
public virtual string MainTemplate { get; set; }
Property Value
Type Description
System.String

Schema

The contents of the template schema.

Declaration
[JsonProperty("schema")]
public virtual string Schema { get; set; }
Property Value
Type Description
System.String

Template

The contents of the main template file.

Declaration
[JsonProperty("template")]
public virtual string Template { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top