mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-07 02:59:50 +01:00
77e9fc38c7
Signed-off-by: danfengliu <danfengl@vmware.com>
17 lines
566 B
Python
17 lines
566 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import time
|
|
import base
|
|
import v2_swagger_client
|
|
from v2_swagger_client.rest import ApiException
|
|
|
|
class Scan(base.Base, object):
|
|
def __init__(self):
|
|
super(Scan,self).__init__(api_type = "scan")
|
|
|
|
def scan_artifact(self, project_name, repo_name, reference, expect_status_code = 202, **kwargs):
|
|
client = self._get_client(**kwargs)
|
|
data, status_code, _ = client.scan_artifact_with_http_info(project_name, repo_name, reference)
|
|
base._assert_status_code(expect_status_code, status_code)
|
|
return data
|