Browse Source

Generated 2019-01-01 for Cms.

sdk-team 5 years ago
parent
commit
5782982976

+ 4 - 0
ChangeLog.txt

@@ -1,3 +1,7 @@
+2020-01-15 Version: v1.60.336
+- Generated 2019-01-01 for `Cms`.
+- Fix parameter issues for label synchronization group.
+
 2020-01-15 Version: v1.60.335
 - Generated 2015-12-15 for `CS`.
 - Support A csk.

+ 0 - 1
services/cms/create_dynamic_tag_group.go

@@ -87,7 +87,6 @@ type CreateDynamicTagGroupRequest struct {
 
 // CreateDynamicTagGroupMatchExpress is a repeated param struct in CreateDynamicTagGroupRequest
 type CreateDynamicTagGroupMatchExpress struct {
-	TagName               string `name:"TagName"`
 	TagValue              string `name:"TagValue"`
 	TagValueMatchFunction string `name:"TagValueMatchFunction"`
 }

+ 1 - 1
services/cms/delete_dynamic_tag_group.go

@@ -76,7 +76,7 @@ func (client *Client) DeleteDynamicTagGroupWithCallback(request *DeleteDynamicTa
 // DeleteDynamicTagGroupRequest is the request struct for api DeleteDynamicTagGroup
 type DeleteDynamicTagGroupRequest struct {
 	*requests.RpcRequest
-	DynamicTagGroupId string `position:"Query" name:"DynamicTagGroupId"`
+	DynamicTagRuleId string `position:"Query" name:"DynamicTagRuleId"`
 }
 
 // DeleteDynamicTagGroupResponse is the response struct for api DeleteDynamicTagGroup

+ 1 - 1
services/cms/describe_monitor_groups.go

@@ -78,6 +78,7 @@ type DescribeMonitorGroupsRequest struct {
 	*requests.RpcRequest
 	SelectContactGroups    requests.Boolean            `position:"Query" name:"SelectContactGroups"`
 	IncludeTemplateHistory requests.Boolean            `position:"Query" name:"IncludeTemplateHistory"`
+	DynamicTagRuleId       string                      `position:"Query" name:"DynamicTagRuleId"`
 	Type                   string                      `position:"Query" name:"Type"`
 	PageNumber             requests.Integer            `position:"Query" name:"PageNumber"`
 	PageSize               requests.Integer            `position:"Query" name:"PageSize"`
@@ -86,7 +87,6 @@ type DescribeMonitorGroupsRequest struct {
 	GroupId                string                      `position:"Query" name:"GroupId"`
 	GroupName              string                      `position:"Query" name:"GroupName"`
 	InstanceId             string                      `position:"Query" name:"InstanceId"`
-	DynamicTagGroupId      string                      `position:"Query" name:"DynamicTagGroupId"`
 }
 
 // DescribeMonitorGroupsTag is a repeated param struct in DescribeMonitorGroupsRequest

+ 0 - 1
services/cms/struct_match_express_item.go

@@ -19,7 +19,6 @@ package cms
 type MatchExpressItem struct {
 	Name                  string `json:"Name" xml:"Name"`
 	Value                 string `json:"Value" xml:"Value"`
-	TagName               string `json:"TagName" xml:"TagName"`
 	TagValueMatchFunction string `json:"TagValueMatchFunction" xml:"TagValueMatchFunction"`
 	Function              string `json:"Function" xml:"Function"`
 	TagValue              string `json:"TagValue" xml:"TagValue"`

+ 1 - 1
services/cms/struct_tag_group.go

@@ -17,7 +17,7 @@ package cms
 
 // TagGroup is a nested struct in cms response
 type TagGroup struct {
-	DynamicTagGroupId          string                                   `json:"DynamicTagGroupId" xml:"DynamicTagGroupId"`
+	DynamicTagRuleId           string                                   `json:"DynamicTagRuleId" xml:"DynamicTagRuleId"`
 	TagKey                     string                                   `json:"TagKey" xml:"TagKey"`
 	RegionId                   string                                   `json:"RegionId" xml:"RegionId"`
 	MatchExpressFilterRelation string                                   `json:"MatchExpressFilterRelation" xml:"MatchExpressFilterRelation"`