mirror of
https://github.com/goharbor/harbor.git
synced 2025-01-01 13:37:47 +01:00
1979d17550
Signed-off-by: danfengliu <danfengl@vmware.com>
25 lines
738 B
Python
25 lines
738 B
Python
import time
|
|
import os
|
|
import sys
|
|
|
|
sys.path.append(os.environ["SWAGGER_CLIENT_PATH"])
|
|
from swagger_client.rest import ApiException
|
|
import swagger_client.models
|
|
from pprint import pprint
|
|
|
|
harbor_server = os.environ["HARBOR_HOST"]
|
|
CLIENT=dict(endpoint="https://"+harbor_server+"/api")
|
|
USER_ROLE=dict(admin=0,normal=1)
|
|
TEARDOWN = True
|
|
|
|
def GetProductApi(username, password, harbor_server= os.environ["HARBOR_HOST"]):
|
|
|
|
cfg = swagger_client.Configuration()
|
|
cfg.host = "https://"+harbor_server+"/api"
|
|
cfg.username = username
|
|
cfg.password = password
|
|
cfg.verify_ssl = False
|
|
cfg.debug = True
|
|
api_client = swagger_client.ApiClient(cfg)
|
|
api_instance = swagger_client.ProductsApi(api_client)
|
|
return api_instance |