Skip to content

Commit 5539223

Browse files
committed
Support API DescribeUserBuyVersion.
1 parent bf03c7d commit 5539223

File tree

2 files changed

+52
-4
lines changed

2 files changed

+52
-4
lines changed

ChangeLog.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
2024-09-24 Version: v6.2.0
2+
- Support API DescribeUserBuyVersion.
3+
- Update API AddAddressBook: update param AddressList.
4+
- Update API DeleteControlPolicyTemplate: update response param.
5+
- Update API DescribeAssetRiskList: update param IpAddrList.
6+
- Update API DescribeInternetOpenIp: update response param.
7+
- Update API DescribeOutgoingDestinationIP: update response param.
8+
- Update API DescribeOutgoingDomain: update response param.
9+
- Update API DescribePostpayTrafficDetail: add param RegionNo.
10+
- Update API DescribePostpayTrafficDetail: update response param.
11+
12+
113
2024-09-24 Version: v6.1.0
214
- Support API DescribeUserBuyVersion.
315
- Update API AddAddressBook: update param AddressList.

client/client.go

Lines changed: 40 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11756,6 +11756,7 @@ type DescribeOutgoingDestinationIPResponseBodyDstIPList struct {
1175611756
AddressGroupList []*DescribeOutgoingDestinationIPResponseBodyDstIPListAddressGroupList `json:"AddressGroupList,omitempty" xml:"AddressGroupList,omitempty" type:"Repeated"`
1175711757
// The application ports.
1175811758
ApplicationPortList []*DescribeOutgoingDestinationIPResponseBodyDstIPListApplicationPortList `json:"ApplicationPortList,omitempty" xml:"ApplicationPortList,omitempty" type:"Repeated"`
11759+
AssetCount *int64 `json:"AssetCount,omitempty" xml:"AssetCount,omitempty"`
1175911760
// The type of the tag. Valid values:
1176011761
//
1176111762
// - **Suspicious**
@@ -11835,13 +11836,15 @@ type DescribeOutgoingDestinationIPResponseBodyDstIPList struct {
1183511836
// example:
1183611837
//
1183711838
// true
11838-
IsMarkNormal *bool `json:"IsMarkNormal,omitempty" xml:"IsMarkNormal,omitempty"`
11839+
IsMarkNormal *bool `json:"IsMarkNormal,omitempty" xml:"IsMarkNormal,omitempty"`
11840+
LocationName *string `json:"LocationName,omitempty" xml:"LocationName,omitempty"`
1183911841
// The outbound traffic. Unit: bytes.
1184011842
//
1184111843
// example:
1184211844
//
1184311845
// 965
11844-
OutBytes *int64 `json:"OutBytes,omitempty" xml:"OutBytes,omitempty"`
11846+
OutBytes *int64 `json:"OutBytes,omitempty" xml:"OutBytes,omitempty"`
11847+
PrivateAssetCount *int64 `json:"PrivateAssetCount,omitempty" xml:"PrivateAssetCount,omitempty"`
1184511848
// The UUID of the access control policy.
1184611849
//
1184711850
// example:
@@ -11921,6 +11924,11 @@ func (s *DescribeOutgoingDestinationIPResponseBodyDstIPList) SetApplicationPortL
1192111924
return s
1192211925
}
1192311926

11927+
func (s *DescribeOutgoingDestinationIPResponseBodyDstIPList) SetAssetCount(v int64) *DescribeOutgoingDestinationIPResponseBodyDstIPList {
11928+
s.AssetCount = &v
11929+
return s
11930+
}
11931+
1192411932
func (s *DescribeOutgoingDestinationIPResponseBodyDstIPList) SetCategoryClassId(v string) *DescribeOutgoingDestinationIPResponseBodyDstIPList {
1192511933
s.CategoryClassId = &v
1192611934
return s
@@ -11966,11 +11974,21 @@ func (s *DescribeOutgoingDestinationIPResponseBodyDstIPList) SetIsMarkNormal(v b
1196611974
return s
1196711975
}
1196811976

11977+
func (s *DescribeOutgoingDestinationIPResponseBodyDstIPList) SetLocationName(v string) *DescribeOutgoingDestinationIPResponseBodyDstIPList {
11978+
s.LocationName = &v
11979+
return s
11980+
}
11981+
1196911982
func (s *DescribeOutgoingDestinationIPResponseBodyDstIPList) SetOutBytes(v int64) *DescribeOutgoingDestinationIPResponseBodyDstIPList {
1197011983
s.OutBytes = &v
1197111984
return s
1197211985
}
1197311986

11987+
func (s *DescribeOutgoingDestinationIPResponseBodyDstIPList) SetPrivateAssetCount(v int64) *DescribeOutgoingDestinationIPResponseBodyDstIPList {
11988+
s.PrivateAssetCount = &v
11989+
return s
11990+
}
11991+
1197411992
func (s *DescribeOutgoingDestinationIPResponseBodyDstIPList) SetRuleId(v string) *DescribeOutgoingDestinationIPResponseBodyDstIPList {
1197511993
s.RuleId = &v
1197611994
return s
@@ -12525,7 +12543,9 @@ type DescribeOutgoingDomainResponseBodyDomainList struct {
1252512543
// example:
1252612544
//
1252712545
// fdad-fdafa-dafa-dfa****
12528-
AddressGroupUUID *string `json:"AddressGroupUUID,omitempty" xml:"AddressGroupUUID,omitempty"`
12546+
AddressGroupUUID *string `json:"AddressGroupUUID,omitempty" xml:"AddressGroupUUID,omitempty"`
12547+
ApplicationNameList []*string `json:"ApplicationNameList,omitempty" xml:"ApplicationNameList,omitempty" type:"Repeated"`
12548+
AssetCount *int64 `json:"AssetCount,omitempty" xml:"AssetCount,omitempty"`
1252912549
// The website service.
1253012550
//
1253112551
// example:
@@ -12623,7 +12643,8 @@ type DescribeOutgoingDomainResponseBodyDomainList struct {
1262312643
// example:
1262412644
//
1262512645
// 4582
12626-
OutBytes *int64 `json:"OutBytes,omitempty" xml:"OutBytes,omitempty"`
12646+
OutBytes *int64 `json:"OutBytes,omitempty" xml:"OutBytes,omitempty"`
12647+
PrivateAssetCount *int64 `json:"PrivateAssetCount,omitempty" xml:"PrivateAssetCount,omitempty"`
1262712648
// The ID of the access control policy.
1262812649
//
1262912650
// example:
@@ -12703,6 +12724,16 @@ func (s *DescribeOutgoingDomainResponseBodyDomainList) SetAddressGroupUUID(v str
1270312724
return s
1270412725
}
1270512726

12727+
func (s *DescribeOutgoingDomainResponseBodyDomainList) SetApplicationNameList(v []*string) *DescribeOutgoingDomainResponseBodyDomainList {
12728+
s.ApplicationNameList = v
12729+
return s
12730+
}
12731+
12732+
func (s *DescribeOutgoingDomainResponseBodyDomainList) SetAssetCount(v int64) *DescribeOutgoingDomainResponseBodyDomainList {
12733+
s.AssetCount = &v
12734+
return s
12735+
}
12736+
1270612737
func (s *DescribeOutgoingDomainResponseBodyDomainList) SetBusiness(v string) *DescribeOutgoingDomainResponseBodyDomainList {
1270712738
s.Business = &v
1270812739
return s
@@ -12763,6 +12794,11 @@ func (s *DescribeOutgoingDomainResponseBodyDomainList) SetOutBytes(v int64) *Des
1276312794
return s
1276412795
}
1276512796

12797+
func (s *DescribeOutgoingDomainResponseBodyDomainList) SetPrivateAssetCount(v int64) *DescribeOutgoingDomainResponseBodyDomainList {
12798+
s.PrivateAssetCount = &v
12799+
return s
12800+
}
12801+
1276612802
func (s *DescribeOutgoingDomainResponseBodyDomainList) SetRuleId(v string) *DescribeOutgoingDomainResponseBodyDomainList {
1276712803
s.RuleId = &v
1276812804
return s

0 commit comments

Comments
 (0)