This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package ecs | |
| import ( | |
| "errors" | |
| "github.com/cloudlibz/gocloud/aliauth" | |
| ) | |
| const errCommon = "ali-cloud create node miss required parameter: " | |
| type CreateNode struct { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package ecs | |
| import ( | |
| "errors" | |
| ) | |
| const errCommon = "ali-cloud create node miss required parameter: " | |
| type CreateNode struct { | |
| RegionID string //required |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "test/test/testBuilderPattern/ecs" | |
| "github.com/cloudlibz/gocloud/gocloud" | |
| "fmt" | |
| ) | |
| func main() { | |
| alicloud, _ := gocloud.CloudProvider(gocloud.Aliprovider) |