(self, publicKey, privateKey, boxId, orgId = None, groupId = None,)
| 60 | |
| 61 | class HMACAuth(requests.auth.AuthBase): |
| 62 | def __init__(self, publicKey, privateKey, boxId, orgId = None, groupId = None,): |
| 63 | self.publicKey = publicKey |
| 64 | self.privateKey = privateKey |
| 65 | self.groupId = groupId |
| 66 | self.orgId = orgId |
| 67 | self.boxId = boxId |
| 68 | self.isOnFleet = self.groupId and self.orgId |
| 69 | |
| 70 | def updateFleetInfo(self, orgId = None, groupId = None): |
| 71 | self.groupId = groupId |
nothing calls this directly
no outgoing calls
no test coverage detected