jasonfan's picture
Add files using upload-large-folder tool
f31fe4e verified
# coding: utf-8
from typing import Union
from byteddps.cache import Cache
from byteddps.identity import Identity, ZeroTrustIdentity
class Client(object):
_cache: Cache
_file_mod_time: float
_last_update_time: float
_token_key: str
update_interval_secs: int
get_token_from_daemon: bool
infsec_psm: str
infsec_user: str
def get_token(self, force_update: bool) -> str: ...
def parse_token(self, token) -> Union[Identity, ZeroTrustIdentity]: ...
def _get_from_file(self) -> str: ...
def _get_from_agent(self) -> str: ...
def _fresh(self): ...