Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Resource ¶
type Resource struct { APIVersion string `json:"apiVersion"` Type string `json:"type"` Name string `json:"name"` Location string `json:"location,omitempty"` Tags map[string]string `json:"tags,omitempty"` Comments string `json:"comments,omitempty"` DependsOn []string `json:"dependsOn,omitempty"` Properties interface{} `json:"properties,omitempty"` Resources []Resource `json:"resources,omitempty"` // Non-uniform attributes. StorageSku *storage.Sku `json:"sku,omitempty"` }
Resource describes a template resource. For information on the individual fields, see https://azure.microsoft.com/en-us/documentation/articles/resource-group-authoring-templates/.
type Template ¶
type Template struct { // Resources contains the definitions of resources that will // be created by the template. Resources []Resource `json:"resources"` }
Template represents an Azure Resource Manager (ARM) Template. See: https://azure.microsoft.com/en-us/documentation/articles/resource-group-authoring-templates/
Click to show internal directories.
Click to hide internal directories.