class Azure::Resources::Mgmt::V2016_07_01::Models::TemplateLink
Entity representing the reference to the template.
Attributes
content_version[RW]
@return [String] If included it must match the ContentVersion in the template.
uri[RW]
@return [String] URI referencing the template.
Public Class Methods
mapper()
click to toggle source
Mapper for TemplateLink
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-07-01/generated/azure_mgmt_resources/models/template_link.rb, line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'TemplateLink', type: { name: 'Composite', class_name: 'TemplateLink', model_properties: { uri: { client_side_validation: true, required: true, serialized_name: 'uri', type: { name: 'String' } }, content_version: { client_side_validation: true, required: false, serialized_name: 'contentVersion', type: { name: 'String' } } } } } end