本文整理匯總了Golang中github.com/Azure/azure-sdk-for-go/arm.Client類的典型用法代碼示例。如果您正苦於以下問題:Golang Client類的具體用法?Golang Client怎麽用?Golang Client使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了Client類的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: createResourceGroup
func createResourceGroup(
name, location string,
arm arm.Client) (group resources.ResourceGroup, err error) {
rgc := arm.ResourceGroups()
rpc := arm.Providers()
params := resources.ResourceGroup{Name: &name, Location: &location}
group, err = rgc.CreateOrUpdate(name, params)
if err != nil {
err = fmt.Errorf("Failed to create resource group '%s' in location '%s': '%s'\n", name, location, err.Error())
return
}
fmt.Printf("Created resource group '%s'\n", *group.Name)
if _, err1 := rpc.Register("Microsoft.Storage"); err != nil {
err = fmt.Errorf("Failed to register resource provider 'Microsoft.Storage': '%s'\n", err1.Error())
}
if _, err1 := rpc.Register("Microsoft.Network"); err != nil {
err = fmt.Errorf("Failed to register resource provider 'Microsoft.Network': '%s'\n", err1.Error())
}
if _, err1 := rpc.Register("Microsoft.Compute"); err != nil {
err = fmt.Errorf("Failed to register resource provider 'Microsoft.Compute': '%s'\n", err1.Error())
}
return
}
示例2: createNetworkInterface
func createNetworkInterface(
suffix string,
group resources.ResourceGroup,
subnet network.Subnet,
arm arm.Client) (networkInterface network.Interface, err error) {
pipc := arm.PublicIPAddresses()
nicc := arm.NetworkInterfaces()
groupName := *group.Name
ipName := "ip" + suffix
nicName := "nic" + suffix
pipResult, err := pipc.CreateOrUpdate(
groupName,
ipName,
network.PublicIPAddress{
Location: group.Location,
Properties: &network.PublicIPAddressPropertiesFormat{
PublicIPAllocationMethod: network.Dynamic,
},
})
if err != nil {
err = fmt.Errorf("Failed to create public ip address '%s' in location '%s': '%s'\n", ipName, *group.Location, err.Error())
return
}
nicProps := network.InterfaceIPConfigurationPropertiesFormat{
PublicIPAddress: &pipResult,
Subnet: &subnet}
ipConfigs := make([]network.InterfaceIPConfiguration, 1, 1)
ipConfigs[0] = network.InterfaceIPConfiguration{
Name: to.StringPtr(nicName + "Config"),
Properties: &nicProps,
}
props := network.InterfacePropertiesFormat{IPConfigurations: &ipConfigs}
networkInterface, err = nicc.CreateOrUpdate(
groupName,
nicName,
network.Interface{
Location: group.Location,
Properties: &props,
})
if err != nil {
err = fmt.Errorf("Failed to create network interface '%s' in location '%s': '%s'\n", nicName, *group.Location, err.Error())
}
return
}
示例3: createStorageAccount
func createStorageAccount(
group resources.ResourceGroup,
arm arm.Client) error {
ac := arm.StorageAccounts()
cna, err := ac.CheckNameAvailability(
storage.AccountCheckNameAvailabilityParameters{
Name: group.Name,
Type: to.StringPtr("Microsoft.Storage/storageAccounts")})
if err != nil {
return err
}
if to.Bool(cna.NameAvailable) {
name := *group.Name
props := storage.AccountPropertiesCreateParameters{AccountType: storage.StandardLRS}
_, err = ac.Create(name, name,
storage.AccountCreateParameters{
Location: group.Location,
Properties: &props,
})
if err != nil {
return fmt.Errorf("Failed to create storage account '%s' in location '%s': '%s'\n", name, *group.Location, err.Error())
}
}
return nil
}
示例4: createVirtualMachine
func createVirtualMachine(
group resources.ResourceGroup,
vmName, adminName, adminPassword string,
availSet compute.AvailabilitySet,
networkInterface network.Interface,
arm arm.Client) error {
vmc := arm.VirtualMachines()
netRefs := make([]compute.NetworkInterfaceReference, 1, 1)
netRefs[0] = compute.NetworkInterfaceReference{ID: networkInterface.ID}
groupName := *group.Name
accountName := groupName
vmParams := compute.VirtualMachine{
Location: group.Location,
Properties: &compute.VirtualMachineProperties{
AvailabilitySet: &compute.SubResource{ID: availSet.ID},
HardwareProfile: &compute.HardwareProfile{VMSize: compute.StandardA0},
NetworkProfile: &compute.NetworkProfile{NetworkInterfaces: &netRefs},
StorageProfile: &compute.StorageProfile{
ImageReference: &compute.ImageReference{
Publisher: to.StringPtr("MicrosoftWindowsServer"),
Offer: to.StringPtr("WindowsServer"),
Sku: to.StringPtr("2012-R2-Datacenter"),
Version: to.StringPtr("latest"),
},
OsDisk: &compute.OSDisk{
Name: to.StringPtr("mytestod1"),
CreateOption: compute.FromImage,
Vhd: &compute.VirtualHardDisk{
URI: to.StringPtr("http://" + accountName + ".blob.core.windows.net/vhds/mytestod1.vhd"),
},
},
},
OsProfile: &compute.OSProfile{
AdminUsername: to.StringPtr(adminName),
AdminPassword: to.StringPtr(adminPassword),
ComputerName: to.StringPtr(vmName),
WindowsConfiguration: &compute.WindowsConfiguration{ProvisionVMAgent: to.BoolPtr(true)},
},
},
}
if _, err := vmc.CreateOrUpdate(groupName, vmName, vmParams); err != nil {
return fmt.Errorf("Failed to create virtual machine '%s' in location '%s': '%s'\n", vmName, *group.Location, err.Error())
}
return nil
}
示例5: createNetwork
func createNetwork(
group resources.ResourceGroup,
arm arm.Client) (snetResult network.Subnet, err error) {
vnetc := arm.VirtualNetworks()
snetc := arm.Subnets()
name := *group.Name
vnet := name + "vnet"
subnet := name + "subnet"
snet := network.Subnet{
Name: &subnet,
Properties: &network.SubnetPropertiesFormat{AddressPrefix: to.StringPtr("10.0.0.0/24")}}
snets := make([]network.Subnet, 1, 1)
snets[0] = snet
addrPrefixes := make([]string, 1, 1)
addrPrefixes[0] = "10.0.0.0/16"
address := network.AddressSpace{AddressPrefixes: &addrPrefixes}
nwkProps := network.VirtualNetworkPropertiesFormat{AddressSpace: &address, Subnets: &snets}
_, err = vnetc.CreateOrUpdate(name, vnet, network.VirtualNetwork{Location: group.Location, Properties: &nwkProps})
if err != nil {
err = fmt.Errorf("Failed to create virtual network '%s' in location '%s': '%s'\n", vnet, *group.Location, err.Error())
return
}
snetResult, err = snetc.CreateOrUpdate(name, vnet, subnet, snet)
if err != nil {
err = fmt.Errorf("Failed to create subnet '%s' in location '%s': '%s'\n", subnet, *group.Location, err.Error())
}
return
}
示例6: createResourceGroup
func createResourceGroup(name, location string, arm arm.Client) (group resources.ResourceGroup, err error) {
rgc := arm.ResourceGroups()
params := resources.ResourceGroup{Name: &name, Location: &location}
group, err = rgc.CreateOrUpdate(name, params)
if err != nil {
err = fmt.Errorf("Failed to create resource group '%s' in location '%s': '%s'\n", name, location, err.Error())
return
}
fmt.Printf("Created resource group '%s'\n", *group.Name)
return
}
示例7: createAvailabilitySet
func createAvailabilitySet(
group resources.ResourceGroup,
arm arm.Client) (result compute.AvailabilitySet, err error) {
avsc := arm.AvailabilitySets()
name := *group.Name
result, err = avsc.CreateOrUpdate(name, name+"avset", compute.AvailabilitySet{Location: group.Location})
if err != nil {
err = fmt.Errorf("Failed to create availability set '%s' in location '%s': '%s'\n", name, *group.Location, err.Error())
return
}
return result, nil
}