alicloud/data_source_alicloud_common.go (82 lines of code) (raw):

package alicloud import ( "bytes" "fmt" "github.com/hashicorp/terraform-plugin-sdk/helper/hashcode" "github.com/hashicorp/terraform-plugin-sdk/helper/schema" ) // Generates a hash for the set hash function used by the ID func dataResourceIdHash(ids []string) string { var buf bytes.Buffer for _, id := range ids { buf.WriteString(fmt.Sprintf("%s-", id)) } return fmt.Sprintf("%d", hashcode.String(buf.String())) } func outputInstancesSchema() map[string]*schema.Schema { return map[string]*schema.Schema{ "instance_id": { Type: schema.TypeString, Computed: true, }, "instance_name": { Type: schema.TypeString, Computed: true, }, "description": { Type: schema.TypeString, Computed: true, }, "image_id": { Type: schema.TypeString, Computed: true, }, "region_id": { Type: schema.TypeString, Computed: true, }, "availability_zone": { Type: schema.TypeString, Computed: true, }, "instance_type": { Type: schema.TypeString, Computed: true, }, "vswitch_id": { Type: schema.TypeString, Computed: true, }, "public_ip": { Type: schema.TypeString, Computed: true, }, "private_ip": { Type: schema.TypeString, Computed: true, }, "key_name": { Type: schema.TypeString, Computed: true, }, "status": { Type: schema.TypeString, Computed: true, }, } } func outputShortVpcsSchema() map[string]*schema.Schema { return map[string]*schema.Schema{ "region_id": { Type: schema.TypeString, Computed: true, }, "vpc_id": { Type: schema.TypeString, Computed: true, }, "vpc_name": { Type: schema.TypeString, Computed: true, }, } }