Class: Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArmTemplate
- Inherits:
-
Resource
- Object
- Resource
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArmTemplate
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/arm_template.rb
Overview
An Azure Resource Manager template.
Instance Attribute Summary collapse
-
#contents ⇒ Object
The contents of the ARM template.
-
#created_date ⇒ DateTime
The creation date of the armTemplate.
-
#description ⇒ String
The description of the ARM template.
-
#display_name ⇒ String
The display name of the ARM template.
-
#icon ⇒ String
The URI to the icon of the ARM template.
-
#parameters_value_files_info ⇒ Array<ParametersValueFileInfo>
information from all azuredeploy.*.parameters.json for the ARM template.
-
#publisher ⇒ String
The publisher of the ARM template.
Attributes inherited from Resource
#id, #location, #name, #tags, #type
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ArmTemplate class as Ruby Hash.
Methods inherited from Resource
Instance Attribute Details
#contents ⇒ Object
Returns The contents of the ARM template.
28 29 30 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/arm_template.rb', line 28 def contents @contents end |
#created_date ⇒ DateTime
Returns The creation date of the armTemplate.
31 32 33 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/arm_template.rb', line 31 def created_date @created_date end |
#description ⇒ String
Returns The description of the ARM template.
19 20 21 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/arm_template.rb', line 19 def description @description end |
#display_name ⇒ String
Returns The display name of the ARM template.
16 17 18 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/arm_template.rb', line 16 def display_name @display_name end |
#icon ⇒ String
Returns The URI to the icon of the ARM template.
25 26 27 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/arm_template.rb', line 25 def icon @icon end |
#parameters_value_files_info ⇒ Array<ParametersValueFileInfo>
information from all azuredeploy.*.parameters.json for the ARM template.
36 37 38 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/arm_template.rb', line 36 def parameters_value_files_info @parameters_value_files_info end |
#publisher ⇒ String
Returns The publisher of the ARM template.
22 23 24 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/arm_template.rb', line 22 def publisher @publisher end |
Class Method Details
.mapper ⇒ Object
Mapper for ArmTemplate class as Ruby Hash. This will be used for serialization/deserialization.
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/arm_template.rb', line 43 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ArmTemplate', type: { name: 'Composite', class_name: 'ArmTemplate', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, location: { client_side_validation: true, required: false, serialized_name: 'location', type: { name: 'String' } }, tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, display_name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.displayName', type: { name: 'String' } }, description: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.description', type: { name: 'String' } }, publisher: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.publisher', type: { name: 'String' } }, icon: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.icon', type: { name: 'String' } }, contents: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.contents', type: { name: 'Object' } }, created_date: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.createdDate', type: { name: 'DateTime' } }, parameters_value_files_info: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.parametersValueFilesInfo', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ParametersValueFileInfoElementType', type: { name: 'Composite', class_name: 'ParametersValueFileInfo' } } } } } } } end |