function stringlengths 11 56k | repo_name stringlengths 5 60 | features list |
|---|---|---|
def _deserialize(self, params):
if params.get("List") is not None:
self.List = []
for item in params.get("List"):
obj = ImageRepoInfo()
obj._deserialize(item)
self.List.append(obj)
self.TotalCount = params.get("TotalCount")
... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param RegistryId: 仓库唯一id
:type RegistryId: int
"""
self.RegistryId = None | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param Name: 仓库名
:type Name: str
:param Username: 用户名
:type Username: str
:param Password: 密码
:type Password: str
:param Url: 仓库url
:type Url: str
:param RegistryType: 仓库类型,列表:harbor
:type RegistryType: str
... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.Name = params.get("Name")
self.Username = params.get("Username")
self.Password = params.get("Password")
self.Url = params.get("Url")
self.RegistryType = params.get("RegistryType")
self.RegistryVersion = params.get("RegistryVersion")
... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
:type RequestId: str
"""
self.RequestId = None | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param Limit: 需要返回的数量,默认为10,最大值为100
:type Limit: int
:param Offset: 偏移量,默认为0。
:type Offset: int
:param Filters: 过滤条件。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.Limit = params.get("Limit")
self.Offset = params.get("Offset")
if params.get("Filters") is not None:
self.Filters = []
for item in params.get("Filters"):
obj = AssetFilters()
obj._deserialize(item)
... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param List: 镜像漏洞列表 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
if params.get("List") is not None:
self.List = []
for item in params.get("List"):
obj = ImageRisk()
obj._deserialize(item)
self.List.append(obj)
self.TotalCount = params.get("TotalCount")
self... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param ExportField: 导出字段
:type ExportField: list of str
:param Limit: 需要返回的数量,默认为10,最大值为100
:type Limit: int
:param Offset: 偏移量,默认为0。
:type Offset: int
:param Filters: 过滤条件。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.ExportField = params.get("ExportField")
self.Limit = params.get("Limit")
self.Offset = params.get("Offset")
if params.get("Filters") is not None:
self.Filters = []
for item in params.get("Filters"):
obj = AssetF... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param DownloadUrl: excel文件下载地址 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.DownloadUrl = params.get("DownloadUrl")
self.RequestId = params.get("RequestId") | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param Images: 需要获取进度的镜像列表
:type Images: list of ImageInfo
:param All: 是否获取全部镜像
:type All: bool
:param Id: 需要获取进度的镜像列表Id
:type Id: list of int non-negative
"""
self.Images = None
self.All = None
self.Id = No... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param ImageTotal: 镜像个数
:type ImageTotal: int
:param ImageScanCnt: 扫描镜像个数
:type ImageScanCnt: int
:param ImageStatus: 扫描进度列表 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.ImageTotal = params.get("ImageTotal")
self.ImageScanCnt = params.get("ImageScanCnt")
if params.get("ImageStatus") is not None:
self.ImageStatus = []
for item in params.get("ImageStatus"):
obj = ImageProgress()
... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
:type RequestId: str
"""
self.RequestId = None | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param ExportField: 导出字段
:type ExportField: list of str
:param Limit: 需要返回的数量,默认为10,最大值为100
:type Limit: int
:param Offset: 偏移量,默认为0。
:type Offset: int
:param Filters: 过滤条件。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.ExportField = params.get("ExportField")
self.Limit = params.get("Limit")
self.Offset = params.get("Offset")
if params.get("Filters") is not None:
self.Filters = []
for item in params.get("Filters"):
obj = AssetF... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param DownloadUrl: excel文件下载地址 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.DownloadUrl = params.get("DownloadUrl")
self.RequestId = params.get("RequestId") | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param Limit: 需要返回的数量,默认为10,最大值为100
:type Limit: int
:param Offset: 偏移量,默认为0。
:type Offset: int
:param Filters: 过滤条件。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.Limit = params.get("Limit")
self.Offset = params.get("Offset")
if params.get("Filters") is not None:
self.Filters = []
for item in params.get("Filters"):
obj = AssetFilters()
obj._deserialize(item)
... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param List: 镜像漏洞列表 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
if params.get("List") is not None:
self.List = []
for item in params.get("List"):
obj = ImageVirus()
obj._deserialize(item)
self.List.append(obj)
self.TotalCount = params.get("TotalCount")
sel... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param ExportField: 导出字段
:type ExportField: list of str
:param Limit: 需要返回的数量,默认为10,最大值为100
:type Limit: int
:param Offset: 偏移量,默认为0。
:type Offset: int
:param Filters: 过滤条件。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.ExportField = params.get("ExportField")
self.Limit = params.get("Limit")
self.Offset = params.get("Offset")
if params.get("Filters") is not None:
self.Filters = []
for item in params.get("Filters"):
obj = AssetF... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param DownloadUrl: excel文件下载地址 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.DownloadUrl = params.get("DownloadUrl")
self.RequestId = params.get("RequestId") | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param Limit: 需要返回的数量,默认为10,最大值为100
:type Limit: int
:param Offset: 偏移量,默认为0。
:type Offset: int
:param Filters: 过滤条件。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.Limit = params.get("Limit")
self.Offset = params.get("Offset")
if params.get("Filters") is not None:
self.Filters = []
for item in params.get("Filters"):
obj = AssetFilters()
obj._deserialize(item)
... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param List: 镜像漏洞列表 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
if params.get("List") is not None:
self.List = []
for item in params.get("List"):
obj = ImageVul()
obj._deserialize(item)
self.List.append(obj)
self.TotalCount = params.get("TotalCount")
self.... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param ExportField: 导出字段
:type ExportField: list of str
:param ImageID: 镜像id
:type ImageID: str
:param Filters: 过滤条件。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.ExportField = params.get("ExportField")
self.ImageID = params.get("ImageID")
if params.get("Filters") is not None:
self.Filters = []
for item in params.get("Filters"):
obj = AssetFilters()
obj._deseriali... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param DownloadUrl: excel文件下载地址
:type DownloadUrl: str
:param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
:type RequestId: str
"""
self.DownloadUrl = None
self.RequestId = None | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param ImageID: 镜像id
:type ImageID: str
:param Limit: 需要返回的数量,默认为10,最大值为100
:type Limit: int
:param Offset: 偏移量,默认为0。
:type Offset: int
:param Filters: 过滤条件。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.ImageID = params.get("ImageID")
self.Limit = params.get("Limit")
self.Offset = params.get("Offset")
if params.get("Filters") is not None:
self.Filters = []
for item in params.get("Filters"):
obj = AssetFilters()... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param List: 镜像病毒列表
:type List: list of ImageRiskInfo
:param TotalCount: 总数量
:type TotalCount: int
:param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
:type RequestId: str
"""
self.List = None
self.TotalCou... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param Enable: 开关
:type Enable: bool
:param ScanTime: 扫描时刻(完整时间;后端按0时区解析时分秒)
:type ScanTime: str
:param ScanPeriod: 扫描间隔
:type ScanPeriod: int
:param ScanVirus: 扫描木马
:type ScanVirus: bool
:param ScanRisk: 扫描敏感信息
... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param TaskID: 任务id
:type TaskID: str
"""
self.TaskID = None | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param ImageTotal: 镜像个数
:type ImageTotal: int
:param ImageScanCnt: 扫描镜像个数
:type ImageScanCnt: int
:param Status: 扫描状态
:type Status: str
:param Schedule: 扫描进度 ImageScanCnt/ImageTotal *100
:type Schedule: int
:param S... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param TaskID: 任务id
:type TaskID: str
:param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
:type RequestId: str
"""
self.TaskID = None
self.RequestId = None | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param Limit: 需要返回的数量,默认为10,最大值为100
:type Limit: int
:param Offset: 偏移量,默认为0。
:type Offset: int
:param Filters: 过滤条件。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.Limit = params.get("Limit")
self.Offset = params.get("Offset")
if params.get("Filters") is not None:
self.Filters = []
for item in params.get("Filters"):
obj = AssetFilters()
obj._deserialize(item)
... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param List: 镜像列表
:type List: list of AssetSimpleImageInfo
:param TotalCount: 总数量
:type TotalCount: int
:param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
:type RequestId: str
"""
self.List = None
self.Tot... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param ExportField: 列表支持字段
:type ExportField: list of str
:param ImageID: 镜像id
:type ImageID: str
:param Filters: 过滤条件。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.ExportField = params.get("ExportField")
self.ImageID = params.get("ImageID")
if params.get("Filters") is not None:
self.Filters = []
for item in params.get("Filters"):
obj = AssetFilters()
obj._deseriali... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param DownloadUrl: excel文件下载地址
:type DownloadUrl: str
:param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
:type RequestId: str
"""
self.DownloadUrl = None
self.RequestId = None | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param ImageID: 镜像id
:type ImageID: str
:param Limit: 需要返回的数量,默认为10,最大值为100
:type Limit: int
:param Offset: 偏移量,默认为0。
:type Offset: int
:param Filters: 过滤条件。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.ImageID = params.get("ImageID")
self.Limit = params.get("Limit")
self.Offset = params.get("Offset")
if params.get("Filters") is not None:
self.Filters = []
for item in params.get("Filters"):
obj = AssetFilters()... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param List: 镜像病毒列表
:type List: list of ImageVirusInfo
:param TotalCount: 总数量
:type TotalCount: int
:param VirusScanStatus: 病毒扫描状态 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
if params.get("List") is not None:
self.List = []
for item in params.get("List"):
obj = ImageVirusInfo()
obj._deserialize(item)
self.List.append(obj)
self.TotalCount = params.get("TotalCount")
... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param ExportField: 导出字段
:type ExportField: list of str
:param ImageID: 镜像id
:type ImageID: str
:param Limit: 需要返回的数量,默认为10,最大值为100
:type Limit: int
:param Offset: 偏移量,默认为0。
:type Offset: int
:param Filters: 过滤条件。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.ExportField = params.get("ExportField")
self.ImageID = params.get("ImageID")
self.Limit = params.get("Limit")
self.Offset = params.get("Offset")
if params.get("Filters") is not None:
self.Filters = []
for item in params... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param DownloadUrl: excel文件下载地址
:type DownloadUrl: str
:param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
:type RequestId: str
"""
self.DownloadUrl = None
self.RequestId = None | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param ImageID: 镜像id
:type ImageID: str
:param Limit: 需要返回的数量,默认为10,最大值为100
:type Limit: int
:param Offset: 偏移量,默认为0。
:type Offset: int
:param Filters: 过滤条件。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.ImageID = params.get("ImageID")
self.Limit = params.get("Limit")
self.Offset = params.get("Offset")
if params.get("Filters") is not None:
self.Filters = []
for item in params.get("Filters"):
obj = AssetFilters()... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param List: 镜像漏洞列表
:type List: list of ImagesVul
:param TotalCount: 总数量
:type TotalCount: int
:param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
:type RequestId: str
"""
self.List = None
self.TotalCount =... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param Limit: 需要返回的数量,默认为10,最大值为100
:type Limit: int
:param Offset: 偏移量,默认为0。
:type Offset: int
:param Filters: 过滤条件。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.Limit = params.get("Limit")
self.Offset = params.get("Offset")
if params.get("Filters") is not None:
self.Filters = []
for item in params.get("Filters"):
obj = AssetFilters()
obj._deserialize(item)
... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param List: 端口列表
:type List: list of PortInfo
:param TotalCount: 总数量
:type TotalCount: int
:param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
:type RequestId: str
"""
self.List = None
self.TotalCount = No... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param Limit: 需要返回的数量,默认为10,最大值为100
:type Limit: int
:param Offset: 偏移量,默认为0。
:type Offset: int
:param Filters: 过滤条件。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.Limit = params.get("Limit")
self.Offset = params.get("Offset")
if params.get("Filters") is not None:
self.Filters = []
for item in params.get("Filters"):
obj = AssetFilters()
obj._deserialize(item)
... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param List: 端口列表
:type List: list of ProcessInfo
:param TotalCount: 总数量
:type TotalCount: int
:param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
:type RequestId: str
"""
self.List = None
self.TotalCount =... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param AppCnt: 应用个数
:type AppCnt: int
:param ContainerCnt: 容器个数
:type ContainerCnt: int
:param ContainerPause: 暂停的容器个数
:type ContainerPause: int
:param ContainerRunning: 运行的容器个数
:type ContainerRunning: int
:param Co... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param Limit: 需要返回的数量,默认为10,最大值为100
:type Limit: int
:param Offset: 偏移量,默认为0。
:type Offset: int
:param Filters: 过滤条件。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.Limit = params.get("Limit")
self.Offset = params.get("Offset")
if params.get("Filters") is not None:
self.Filters = []
for item in params.get("Filters"):
obj = AssetFilters()
obj._deserialize(item)
... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param List: 主机列表
:type List: list of ServiceInfo
:param TotalCount: 总数量
:type TotalCount: int
:param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
:type RequestId: str
"""
self.List = None
self.TotalCount =... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param Offset: 偏移量
:type Offset: int
:param Limit: 每次查询的最大记录数量
:type Limit: int
:param Filters: Name 可取值:risk_level风险等级, risk_target检查对象,风险对象,risk_type风险类别,risk_attri检测项所属的风险类型
:type Filters: list of ComplianceFilters
"""
s... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param ClusterCheckItems: 检查项详情数组
:type ClusterCheckItems: list of ClusterCheckItem
:param TotalCount: 检查项总数
:type TotalCount: int
:param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
:type RequestId: str
"""
self.C... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param ClusterId: 集群id
:type ClusterId: str
"""
self.ClusterId = None | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param ClusterId: 集群id
:type ClusterId: str
:param ClusterName: 集群名字
:type ClusterName: str
:param ScanTaskProgress: 当前集群扫描任务的进度,100表示扫描完成.
:type ScanTaskProgress: int
:param ClusterVersion: 集群版本
:type ClusterVersion: str
... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param TotalCount: 集群总数
:type TotalCount: int
:param RiskClusterCount: 有风险的集群数量
:type RiskClusterCount: int
:param UncheckClusterCount: 未检查的集群数量
:type UncheckClusterCount: int
:param ManagedClusterCount: 托管集群数量
:type Manage... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param CustomerAssetId: 客户资产ID。
:type CustomerAssetId: int
"""
self.CustomerAssetId = None | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param AssetDetailInfo: 某资产的详情。
:type AssetDetailInfo: :class:`tencentcloud.tcss.v20201101.models.ComplianceAssetDetailInfo`
:param ContainerDetailInfo: 当资产为容器时,返回此字段。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
if params.get("AssetDetailInfo") is not None:
self.AssetDetailInfo = ComplianceAssetDetailInfo()
self.AssetDetailInfo._deserialize(params.get("AssetDetailInfo"))
if params.get("ContainerDetailInfo") is not None:
self.ContainerDetailInfo... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param AssetTypeSet: 资产类型列表。
:type AssetTypeSet: list of str
:param Offset: 起始偏移量,默认为0。
:type Offset: int
:param Limit: 返回的数据量,默认为10,最大为100。
:type Limit: int
:param Filters: 查询过滤器
:type Filters: list of ComplianceFilters
... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param TotalCount: 返回资产的总数。
:type TotalCount: int
:param AssetInfoList: 返回各类资产的列表。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.TotalCount = params.get("TotalCount")
if params.get("AssetInfoList") is not None:
self.AssetInfoList = []
for item in params.get("AssetInfoList"):
obj = ComplianceAssetInfo()
obj._deserialize(item)
... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param CustomerAssetId: 客户资产的ID。
:type CustomerAssetId: int
:param Offset: 起始偏移量,默认为0。
:type Offset: int
:param Limit: 要获取的数据量,默认为10,最大为100。
:type Limit: int
:param Filters: 过滤器列表。Name字段支持 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.CustomerAssetId = params.get("CustomerAssetId")
self.Offset = params.get("Offset")
self.Limit = params.get("Limit")
if params.get("Filters") is not None:
self.Filters = []
for item in params.get("Filters"):
obj ... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param TotalCount: 返回检测项的总数。如果用户未启用基线检查,此处返回0。
:type TotalCount: int
:param AssetPolicyItemList: 返回某个资产下的检测项的列表。
:type AssetPolicyItemList: list of ComplianceAssetPolicyItem
:param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
:typ... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param AssetType: 资产的类型,取值为: | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.AssetType = params.get("AssetType")
self.Offset = params.get("Offset")
self.Limit = params.get("Limit")
memeber_set = set(params.keys())
for name, value in vars(self).items():
if name in memeber_set:
memeber_set.rem... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param TotalCount: 定时任务的总量。
:type TotalCount: int
:param PeriodTaskSet: 定时任务信息的列表
:type PeriodTaskSet: list of CompliancePeriodTask
:param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
:type RequestId: str
"""
self.... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param CustomerPolicyItemId: DescribeComplianceTaskPolicyItemSummaryList返回的CustomerPolicyItemId,表示检测项的ID。
:type CustomerPolicyItemId: int
:param Offset: 起始偏移量,默认为0。
:type Offset: int
:param Limit: 需要返回的数量,默认为10,最大值为100。
:type Limit: int
... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.CustomerPolicyItemId = params.get("CustomerPolicyItemId")
self.Offset = params.get("Offset")
self.Limit = params.get("Limit")
if params.get("Filters") is not None:
self.Filters = []
for item in params.get("Filters"):
... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param AffectedAssetList: 返回各检测项所影响的资产的列表。
:type AffectedAssetList: list of ComplianceAffectedAsset
:param TotalCount: 检测项影响的资产的总数。
:type TotalCount: int
:param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
:type RequestId: str
... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param CustomerPolicyItemId: DescribeComplianceTaskPolicyItemSummaryList返回的CustomerPolicyItemId,表示检测项的ID。
:type CustomerPolicyItemId: int
"""
self.CustomerPolicyItemId = None | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param PolicyItemSummary: 返回各检测项影响的资产的汇总信息。
:type PolicyItemSummary: :class:`tencentcloud.tcss.v20201101.models.CompliancePolicyItemSummary`
:param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
:type RequestId: str
"""
self.PolicyI... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param AssetTypeSet: 资产类型列表。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.AssetTypeSet = params.get("AssetTypeSet")
self.Offset = params.get("Offset")
self.Limit = params.get("Limit")
if params.get("Filters") is not None:
self.Filters = []
for item in params.get("Filters"):
obj = Comp... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param TotalCount: 返回检测失败的资产的总数。
:type TotalCount: int
:param ScanFailedAssetList: 返回各类检测失败的资产的汇总信息的列表。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.TotalCount = params.get("TotalCount")
if params.get("ScanFailedAssetList") is not None:
self.ScanFailedAssetList = []
for item in params.get("ScanFailedAssetList"):
obj = ComplianceScanFailedAsset()
obj._deseria... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param AssetTypeSet: 资产类型列表。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.AssetTypeSet = params.get("AssetTypeSet")
memeber_set = set(params.keys())
for name, value in vars(self).items():
if name in memeber_set:
memeber_set.remove(name)
if len(memeber_set) > 0:
warnings.warn("%s filed... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param Status: 返回用户的状态, | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def _deserialize(self, params):
self.Status = params.get("Status")
if params.get("AssetSummaryList") is not None:
self.AssetSummaryList = []
for item in params.get("AssetSummaryList"):
obj = ComplianceAssetSummary()
obj._deserialize(item)
... | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
def __init__(self):
r"""
:param AssetType: 资产类型。仅查询与指定资产类型相关的检测项。 | tzpBingo/github-trending | [
42,
20,
42,
1,
1504755582
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.