Skip to content

Commit 9a3d816

Browse files
committed
Update API DescribeVulList: add response parameters Body.VulRecords.$.ContainerId.
1 parent 5682658 commit 9a3d816

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

sas-20181203/ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2025-11-27 Version: 7.0.2
2+
- Update API DescribeVulList: add response parameters Body.VulRecords.$.ContainerId.
3+
4+
15
2025-11-26 Version: 7.0.1
26
- Update API ChangeCheckConfig: add request parameters ResourceDirectoryAccountId.
37

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '7.0.1'
1+
__version__ = '7.0.2'

sas-20181203/alibabacloud_sas20181203/models.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102252,6 +102252,7 @@ def __init__(
102252102252
alias_name: str = None,
102253102253
auth_version: str = None,
102254102254
bind: bool = None,
102255+
container_id: str = None,
102255102256
extend_content_json: DescribeVulListResponseBodyVulRecordsExtendContentJson = None,
102256102257
first_ts: int = None,
102257102258
group_id: int = None,
@@ -102305,6 +102306,7 @@ def __init__(
102305102306
# * **true**\
102306102307
# * **false**\
102307102308
self.bind = bind
102309+
self.container_id = container_id
102308102310
# The extended information about the vulnerability.
102309102311
self.extend_content_json = extend_content_json
102310102312
# The timestamp when the vulnerability was first detected. Unit: milliseconds.
@@ -102449,6 +102451,8 @@ def to_map(self):
102449102451
result['AuthVersion'] = self.auth_version
102450102452
if self.bind is not None:
102451102453
result['Bind'] = self.bind
102454+
if self.container_id is not None:
102455+
result['ContainerId'] = self.container_id
102452102456
if self.extend_content_json is not None:
102453102457
result['ExtendContentJson'] = self.extend_content_json.to_map()
102454102458
if self.first_ts is not None:
@@ -102531,6 +102535,8 @@ def from_map(self, m: dict = None):
102531102535
self.auth_version = m.get('AuthVersion')
102532102536
if m.get('Bind') is not None:
102533102537
self.bind = m.get('Bind')
102538+
if m.get('ContainerId') is not None:
102539+
self.container_id = m.get('ContainerId')
102534102540
if m.get('ExtendContentJson') is not None:
102535102541
temp_model = DescribeVulListResponseBodyVulRecordsExtendContentJson()
102536102542
self.extend_content_json = temp_model.from_map(m['ExtendContentJson'])

sas-20181203/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"""
2525
setup module for alibabacloud_sas20181203.
2626
27-
Created on 26/11/2025
27+
Created on 27/11/2025
2828
2929
@author: Alibaba Cloud SDK
3030
"""

0 commit comments

Comments
 (0)