Browse Source

R-KVSTORE SDK Auto Released By junjun.zhang,Version:1.28.1

Signed-off-by: yixiong.jxy <yixiong.jxy@alibaba-inc.com>
yixiong.jxy 7 years ago
parent
commit
b113f18269

+ 3 - 0
ChangeLog.txt

@@ -1,3 +1,6 @@
+2018-08-31 Version: 1.28.1
+1, The CreateInstance supported VPC IpAddress.
+
 2018-08-28 Version: 1.28.0
 1, Add new APIs for profiling application performance: GetCloudMetricProfiling, etc.
 2, Add new APIs to support Shifter container applications: AddContainerApp, etc.

+ 1 - 0
services/r-kvstore/create_instance.go

@@ -95,6 +95,7 @@ type CreateInstanceRequest struct {
 	OwnerId              requests.Integer `position:"Query" name:"OwnerId"`
 	Token                string           `position:"Query" name:"Token"`
 	VSwitchId            string           `position:"Query" name:"VSwitchId"`
+	PrivateIpAddress     string           `position:"Query" name:"PrivateIpAddress"`
 	InstanceName         string           `position:"Query" name:"InstanceName"`
 	VpcId                string           `position:"Query" name:"VpcId"`
 	ZoneId               string           `position:"Query" name:"ZoneId"`

+ 1 - 0
services/r-kvstore/describe_regions.go

@@ -80,6 +80,7 @@ type DescribeRegionsRequest struct {
 	SecurityToken        string           `position:"Query" name:"SecurityToken"`
 	ResourceOwnerAccount string           `position:"Query" name:"ResourceOwnerAccount"`
 	OwnerAccount         string           `position:"Query" name:"OwnerAccount"`
+	AcceptLanguage       string           `position:"Query" name:"AcceptLanguage"`
 	OwnerId              requests.Integer `position:"Query" name:"OwnerId"`
 }
 

+ 5 - 3
services/r-kvstore/struct_kv_store_region.go

@@ -17,7 +17,9 @@ package r_kvstore
 
 // KVStoreRegion is a nested struct in r_kvstore response
 type KVStoreRegion struct {
-	RegionId  string `json:"RegionId" xml:"RegionId"`
-	ZoneIds   string `json:"ZoneIds" xml:"ZoneIds"`
-	LocalName string `json:"LocalName" xml:"LocalName"`
+	RegionId       string `json:"RegionId" xml:"RegionId"`
+	ZoneIds        string `json:"ZoneIds" xml:"ZoneIds"`
+	LocalName      string `json:"LocalName" xml:"LocalName"`
+	RegionEndpoint string `json:"RegionEndpoint" xml:"RegionEndpoint"`
+	ZoneIdList     string `json:"ZoneIdList" xml:"ZoneIdList"`
 }