github.com/morlay/goqcloud@v0.0.0-20181123023149-b00e0b0b9afc/clients/mariadb/describe_db_instance_specs.go (about)

     1  package mariadb
     2  
     3  import (
     4  	github_com_morlay_goqcloud "github.com/morlay/goqcloud"
     5  )
     6  
     7  // 查询云数据库可售卖规格
     8  // https://cloud.tencent.com/document/api/237/16188
     9  
    10  type DescribeDbInstanceSpecsRequest struct {
    11  	// 区域
    12  	Region string `name:"Region"`
    13  }
    14  
    15  func (req *DescribeDbInstanceSpecsRequest) Invoke(client github_com_morlay_goqcloud.Client) (*DescribeDbInstanceSpecsResponse, error) {
    16  	resp := &DescribeDbInstanceSpecsResponse{}
    17  	err := client.Request("mariadb", "DescribeDBInstanceSpecs", "2017-03-12").Do(req, resp)
    18  	return resp, err
    19  }
    20  
    21  type DescribeDbInstanceSpecsResponse struct {
    22  	github_com_morlay_goqcloud.TencentCloudBaseResponse
    23  	// 按机型分类的可售卖规格列表
    24  	Specs []*InstanceSpec `json:"Specs"`
    25  }