소스 검색

BSSOPENAPI SDK Auto Released By zuochao,Version:1.53.1

Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
haowei.yao 6 년 전
부모
커밋
d7df553f15
3개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 0
      ChangeLog.txt
  2. 1 1
      services/bssopenapi/struct_data.go
  3. 1 0
      services/bssopenapi/struct_instance.go

+ 3 - 0
ChangeLog.txt

@@ -1,3 +1,6 @@
+2019-02-22 Version: 1.53.1
+1, Fixed QueryAvailableInstances response unmarshal problem
+
 2019-02-21 Version: 1.53.0
 1, New DeleteDeviceGroup interface.
 2, New DeleteDeviceAllGroup interface.

+ 1 - 1
services/bssopenapi/struct_data.go

@@ -42,7 +42,7 @@ type Data struct {
 	NewInvoiceAmount       float64                                `json:"NewInvoiceAmount" xml:"NewInvoiceAmount"`
 	Items                  ItemsInQueryBillOverview               `json:"Items" xml:"Items"`
 	ModuleList             ModuleList                             `json:"ModuleList" xml:"ModuleList"`
-	InstanceList           InstanceList                           `json:"InstanceList" xml:"InstanceList"`
+	InstanceList           []Instance                             `json:"InstanceList" xml:"InstanceList"`
 	OrderList              OrderListInQueryOrders                 `json:"OrderList" xml:"OrderList"`
 	Modules                Modules                                `json:"Modules" xml:"Modules"`
 	Promotions             Promotions                             `json:"Promotions" xml:"Promotions"`

+ 1 - 0
services/bssopenapi/struct_instance.go

@@ -19,6 +19,7 @@ package bssopenapi
 type Instance struct {
 	Region              string `json:"Region" xml:"Region"`
 	ExpectedReleaseTime string `json:"ExpectedReleaseTime" xml:"ExpectedReleaseTime"`
+	PackageType         string `json:"PackageType" xml:"PackageType"`
 	CreateTime          string `json:"CreateTime" xml:"CreateTime"`
 	OwnerId             int    `json:"OwnerId" xml:"OwnerId"`
 	TotalAmount         string `json:"TotalAmount" xml:"TotalAmount"`