Bläddra i källkod

Api getTopicList add a new return value.

sdk-team 6 år sedan
förälder
incheckning
59abf975af

+ 3 - 0
ChangeLog.txt

@@ -1,3 +1,6 @@
+2019-08-22 Version: 1.60.116
+- Api getTopicList add a new return value.
+
 2019-08-21 Version: 1.60.115
 - Supported for CPFS new feature of client evict.
 

+ 12 - 11
services/alikafka/struct_instance_vo.go

@@ -17,15 +17,16 @@ package alikafka
 
 // InstanceVO is a nested struct in alikafka response
 type InstanceVO struct {
-	InstanceId    string `json:"InstanceId" xml:"InstanceId"`
-	RegionId      string `json:"RegionId" xml:"RegionId"`
-	ServiceStatus int    `json:"ServiceStatus" xml:"ServiceStatus"`
-	VpcId         string `json:"VpcId" xml:"VpcId"`
-	VSwitchId     string `json:"VSwitchId" xml:"VSwitchId"`
-	EndPoint      string `json:"EndPoint" xml:"EndPoint"`
-	CreateTime    int64  `json:"CreateTime" xml:"CreateTime"`
-	ExpiredTime   int64  `json:"ExpiredTime" xml:"ExpiredTime"`
-	DeployType    int    `json:"DeployType" xml:"DeployType"`
-	SslEndPoint   string `json:"SslEndPoint" xml:"SslEndPoint"`
-	Name          string `json:"Name" xml:"Name"`
+	InstanceId               string                   `json:"InstanceId" xml:"InstanceId"`
+	RegionId                 string                   `json:"RegionId" xml:"RegionId"`
+	ServiceStatus            int                      `json:"ServiceStatus" xml:"ServiceStatus"`
+	VpcId                    string                   `json:"VpcId" xml:"VpcId"`
+	VSwitchId                string                   `json:"VSwitchId" xml:"VSwitchId"`
+	EndPoint                 string                   `json:"EndPoint" xml:"EndPoint"`
+	CreateTime               int64                    `json:"CreateTime" xml:"CreateTime"`
+	ExpiredTime              int64                    `json:"ExpiredTime" xml:"ExpiredTime"`
+	DeployType               int                      `json:"DeployType" xml:"DeployType"`
+	SslEndPoint              string                   `json:"SslEndPoint" xml:"SslEndPoint"`
+	Name                     string                   `json:"Name" xml:"Name"`
+	UpgradeServiceDetailInfo UpgradeServiceDetailInfo `json:"UpgradeServiceDetailInfo" xml:"UpgradeServiceDetailInfo"`
 }

+ 21 - 0
services/alikafka/struct_upgrade_service_detail_info.go

@@ -0,0 +1,21 @@
+package alikafka
+
+//Licensed under the Apache License, Version 2.0 (the "License");
+//you may not use this file except in compliance with the License.
+//You may obtain a copy of the License at
+//
+//http://www.apache.org/licenses/LICENSE-2.0
+//
+//Unless required by applicable law or agreed to in writing, software
+//distributed under the License is distributed on an "AS IS" BASIS,
+//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+//See the License for the specific language governing permissions and
+//limitations under the License.
+//
+// Code generated by Alibaba Cloud SDK Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is regenerated.
+
+// UpgradeServiceDetailInfo is a nested struct in alikafka response
+type UpgradeServiceDetailInfo struct {
+	UpgradeServiceDetailInfoVO []UpgradeServiceDetailInfoVO `json:"UpgradeServiceDetailInfoVO" xml:"UpgradeServiceDetailInfoVO"`
+}

+ 21 - 0
services/alikafka/struct_upgrade_service_detail_info_vo.go

@@ -0,0 +1,21 @@
+package alikafka
+
+//Licensed under the Apache License, Version 2.0 (the "License");
+//you may not use this file except in compliance with the License.
+//You may obtain a copy of the License at
+//
+//http://www.apache.org/licenses/LICENSE-2.0
+//
+//Unless required by applicable law or agreed to in writing, software
+//distributed under the License is distributed on an "AS IS" BASIS,
+//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+//See the License for the specific language governing permissions and
+//limitations under the License.
+//
+// Code generated by Alibaba Cloud SDK Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is regenerated.
+
+// UpgradeServiceDetailInfoVO is a nested struct in alikafka response
+type UpgradeServiceDetailInfoVO struct {
+	Current2OpenSourceVersion string `json:"Current2OpenSourceVersion" xml:"Current2OpenSourceVersion"`
+}