Browse Source

Generated 2017-09-12 for Cbn.

sdk-team 5 years ago
parent
commit
2aaf9c3c52

+ 5 - 0
ChangeLog.txt

@@ -1,3 +1,8 @@
+2020-03-05 Version: v1.61.31
+- Generated 2017-09-12 for `Cbn`.
+- Support flow log.
+- Support route map.
+
 2020-03-05 Version: v1.61.30
 - Generated 2018-04-12 for `EHPC`.
 - Add param InstanceType for ListImages and ListCustomImages.

+ 2 - 0
services/cbn/enable_cen_vbr_health_check.go

@@ -79,12 +79,14 @@ type EnableCenVbrHealthCheckRequest struct {
 	ResourceOwnerId      requests.Integer `position:"Query" name:"ResourceOwnerId"`
 	CenId                string           `position:"Query" name:"CenId"`
 	HealthCheckTargetIp  string           `position:"Query" name:"HealthCheckTargetIp"`
+	HealthyThreshold     requests.Integer `position:"Query" name:"HealthyThreshold"`
 	VbrInstanceOwnerId   requests.Integer `position:"Query" name:"VbrInstanceOwnerId"`
 	VbrInstanceRegionId  string           `position:"Query" name:"VbrInstanceRegionId"`
 	ResourceOwnerAccount string           `position:"Query" name:"ResourceOwnerAccount"`
 	OwnerAccount         string           `position:"Query" name:"OwnerAccount"`
 	OwnerId              requests.Integer `position:"Query" name:"OwnerId"`
 	HealthCheckSourceIp  string           `position:"Query" name:"HealthCheckSourceIp"`
+	HealthCheckInterval  requests.Integer `position:"Query" name:"HealthCheckInterval"`
 	VbrInstanceId        string           `position:"Query" name:"VbrInstanceId"`
 }
 

+ 1 - 0
services/cbn/resolve_and_route_service_in_cen.go

@@ -79,6 +79,7 @@ type ResolveAndRouteServiceInCenRequest struct {
 	ResourceOwnerId      requests.Integer `position:"Query" name:"ResourceOwnerId"`
 	ClientToken          string           `position:"Query" name:"ClientToken"`
 	CenId                string           `position:"Query" name:"CenId"`
+	Description          string           `position:"Query" name:"Description"`
 	UpdateInterval       requests.Integer `position:"Query" name:"UpdateInterval"`
 	Host                 string           `position:"Query" name:"Host"`
 	HostRegionId         string           `position:"Query" name:"HostRegionId"`

+ 2 - 0
services/cbn/struct_route_service_entry.go

@@ -23,5 +23,7 @@ type RouteServiceEntry struct {
 	AccessRegionId string `json:"AccessRegionId" xml:"AccessRegionId"`
 	UpdateInterval string `json:"UpdateInterval" xml:"UpdateInterval"`
 	Status         string `json:"Status" xml:"Status"`
+	HostVpcId      string `json:"HostVpcId" xml:"HostVpcId"`
+	Description    string `json:"Description" xml:"Description"`
 	Cidrs          Cidrs  `json:"Cidrs" xml:"Cidrs"`
 }

+ 2 - 0
services/cbn/struct_vbr_health_check.go

@@ -24,4 +24,6 @@ type VbrHealthCheck struct {
 	HealthCheckSourceIp string `json:"HealthCheckSourceIp" xml:"HealthCheckSourceIp"`
 	HealthCheckTargetIp string `json:"HealthCheckTargetIp" xml:"HealthCheckTargetIp"`
 	Delay               int64  `json:"Delay" xml:"Delay"`
+	HealthCheckInterval int    `json:"HealthCheckInterval" xml:"HealthCheckInterval"`
+	HealthyThreshold    int    `json:"HealthyThreshold" xml:"HealthyThreshold"`
 }