2016-05-21 02:01:16 -04:00
|
|
|
package template
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/Azure/azure-sdk-for-go/arm/compute"
|
|
|
|
"github.com/Azure/azure-sdk-for-go/arm/network"
|
|
|
|
)
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////
|
|
|
|
// Template
|
|
|
|
type Template struct {
|
|
|
|
Schema *string `json:"$schema"`
|
|
|
|
ContentVersion *string `json:"contentVersion"`
|
|
|
|
Parameters *map[string]Parameters `json:"parameters"`
|
|
|
|
Variables *map[string]string `json:"variables"`
|
|
|
|
Resources *[]Resource `json:"resources"`
|
|
|
|
}
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////
|
|
|
|
// Template > Parameters
|
|
|
|
type Parameters struct {
|
|
|
|
Type *string `json:"type"`
|
|
|
|
DefaultValue *string `json:"defaultValue,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////
|
|
|
|
// Template > Resource
|
|
|
|
type Resource struct {
|
2016-07-29 17:17:33 -04:00
|
|
|
ApiVersion *string `json:"apiVersion"`
|
|
|
|
Name *string `json:"name"`
|
|
|
|
Type *string `json:"type"`
|
|
|
|
Location *string `json:"location,omitempty"`
|
|
|
|
DependsOn *[]string `json:"dependsOn,omitempty"`
|
|
|
|
Properties *Properties `json:"properties,omitempty"`
|
|
|
|
Tags *map[string]*string `json:"tags,omitempty"`
|
|
|
|
Resources *[]Resource `json:"resources,omitempty"`
|
2016-05-21 02:01:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////
|
|
|
|
// Template > Resource > Properties
|
|
|
|
type Properties struct {
|
2016-07-29 17:17:33 -04:00
|
|
|
AccessPolicies *[]AccessPolicies `json:"accessPolicies,omitempty"`
|
|
|
|
AddressSpace *network.AddressSpace `json:"addressSpace,omitempty"`
|
|
|
|
DiagnosticsProfile *compute.DiagnosticsProfile `json:"diagnosticsProfile,omitempty"`
|
|
|
|
DNSSettings *network.PublicIPAddressDNSSettings `json:"dnsSettings,omitempty"`
|
|
|
|
EnabledForDeployment *string `json:"enabledForDeployment,omitempty"`
|
|
|
|
EnabledForTemplateDeployment *string `json:"enabledForTemplateDeployment,omitempty"`
|
|
|
|
HardwareProfile *compute.HardwareProfile `json:"hardwareProfile,omitempty"`
|
|
|
|
IPConfigurations *[]network.IPConfiguration `json:"ipConfigurations,omitempty"`
|
|
|
|
NetworkProfile *compute.NetworkProfile `json:"networkProfile,omitempty"`
|
|
|
|
OsProfile *compute.OSProfile `json:"osProfile,omitempty"`
|
|
|
|
PublicIPAllocatedMethod *network.IPAllocationMethod `json:"publicIPAllocationMethod,omitempty"`
|
|
|
|
Sku *Sku `json:"sku,omitempty"`
|
|
|
|
StorageProfile *compute.StorageProfile `json:"storageProfile,omitempty"`
|
|
|
|
Subnets *[]network.Subnet `json:"subnets,omitempty"`
|
|
|
|
TenantId *string `json:"tenantId,omitempty"`
|
|
|
|
Value *string `json:"value,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type AccessPolicies struct {
|
|
|
|
ObjectId *string `json:"objectId,omitempty"`
|
|
|
|
TenantId *string `json:"tenantId,omitempty"`
|
|
|
|
Permissions *Permissions `json:"permissions,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Permissions struct {
|
|
|
|
Keys *[]string `json:"keys,omitempty"`
|
|
|
|
Secrets *[]string `json:"secrets,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Sku struct {
|
|
|
|
Family *string `json:"family,omitempty"`
|
|
|
|
Name *string `json:"name,omitempty"`
|
2016-05-21 02:01:16 -04:00
|
|
|
}
|