File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -656,6 +656,22 @@ async def get_all_app_backups(self, app_id: str) -> Response:
656656 response : Response = await self .request (route )
657657 return response
658658
659+ async def all_apps_status (self ) -> Response :
660+ route : Router = Router (Endpoint .all_apps_status ())
661+ response : Response = await self .request (route )
662+ return response
663+
664+ async def move_app_file (self , app_id : str , origin : str , dest : str ):
665+ route : Router = Router (Endpoint .move_file (), app_id = app_id )
666+ body = {'path' : origin , 'to' : dest }
667+ response : Response = await self .request (route , json = body )
668+ return response
669+
670+ async def dns_records (self , app_id : str ) -> Response :
671+ route : Router = Router (Endpoint .dns_records (), app_id = app_id )
672+ response : Response = await self .request (route )
673+ return response
674+
659675 @property
660676 def last_response (self ) -> Response | None :
661677 """
You can’t perform that action at this time.
0 commit comments