basic list proxy functionality (#905)

This commit is contained in:
bmc-msft
2021-05-24 13:24:22 -04:00
committed by GitHub
parent 2241dcc7a4
commit 7952f16032
4 changed files with 60 additions and 24 deletions

View File

@ -1468,6 +1468,9 @@ class ScalesetProxy(Endpoint):
),
)
def list(self) -> responses.ProxyList:
return self._req_model("GET", responses.ProxyList, data=requests.ProxyGet())
class Command:
def __init__(self, onefuzz: "Onefuzz", logger: logging.Logger):