TemplateLinkResponse

data class TemplateLinkResponse(val contentVersion: String? = null, val id: String? = null, val queryString: String? = null, val relativePath: String? = null, val uri: String? = null)

Entity representing the reference to the template.

Constructors

Link copied to clipboard
constructor(contentVersion: String? = null, id: String? = null, queryString: String? = null, relativePath: String? = null, uri: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val contentVersion: String? = null

If included, must match the ContentVersion in the template.

Link copied to clipboard
val id: String? = null

The resource id of a Template Spec. Use either the id or uri property, but not both.

Link copied to clipboard
val queryString: String? = null

The query string (for example, a SAS token) to be used with the templateLink URI.

Link copied to clipboard
val relativePath: String? = null

The relativePath property can be used to deploy a linked template at a location relative to the parent. If the parent template was linked with a TemplateSpec, this will reference an artifact in the TemplateSpec. If the parent was linked with a URI, the child deployment will be a combination of the parent and relativePath URIs

Link copied to clipboard
val uri: String? = null

The URI of the template to deploy. Use either the uri or id property, but not both.