1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 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
|
package ecs
import (
"os"
"github.com/denverdino/aliyungo/common"
)
//Modify with your Access Key Id and Access Key Secret
var (
TestAccessKeyId = os.Getenv("AccessKeyId")
TestAccessKeySecret = os.Getenv("AccessKeySecret")
TestSecurityToken = os.Getenv("SecurityToken")
TestRegionID = common.Region(os.Getenv("RegionId"))
TestVpcId = os.Getenv("VpcId")
TestInstanceId = os.Getenv("InstanceId")
TestSecurityGroupId = "MY_TEST_SECURITY_GROUP_ID"
TestImageId = "MY_IMAGE_ID"
TestAccountId = "MY_TEST_ACCOUNT_ID" //Get from https://account.console.aliyun.com
TestInstanceType = "ecs.n4.large"
TestVSwitchID = "MY_TEST_VSWITCHID"
TestIAmRich = false
TestQuick = false
)
var testClient *Client
func NewTestClient() *Client {
if testClient == nil {
testClient = NewClient(TestAccessKeyId, TestAccessKeySecret)
}
return testClient
}
var testDebugClient *Client
func NewTestClientForDebug() *Client {
if testDebugClient == nil {
testDebugClient = NewClient(TestAccessKeyId, TestAccessKeySecret)
testDebugClient.SetDebug(true)
}
return testDebugClient
}
var testVpcDebugClient *Client
func NewVpcTestClientForDebug() *Client {
if testVpcDebugClient == nil {
testVpcDebugClient = NewVPCClient(TestAccessKeyId, TestAccessKeySecret, TestRegionID)
testVpcDebugClient.SetDebug(true)
}
return testVpcDebugClient
}
var testLocationClient *Client
func NetTestLocationClientForDebug() *Client {
if testLocationClient == nil {
testLocationClient = NewECSClient(TestAccessKeyId, TestAccessKeySecret, TestRegionID)
testLocationClient.SetDebug(true)
}
return testLocationClient
}
|