Skip to content

Commit

Permalink
feat: remove AliasResponse from utils
Browse files Browse the repository at this point in the history
  • Loading branch information
johnson2427 committed May 2, 2024
1 parent f6e6c9b commit 78cac41
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions ape_aws/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,3 @@ def _convert_der_to_rsv(
r = r.to_bytes(32, byteorder='big')
s = s.to_bytes(32, byteorder='big')
return dict(v=v, r=r, s=s)


class AliasResponse(BaseModel):
alias: str = Field(alias="AliasName")
arn: str = Field(alias="AliasArn")
key_id: str = Field(alias="TargetKeyId")
creation: datetime = Field(alias="CreationDate")
last_updated: datetime = Field(alias="LastUpdatedDate")

0 comments on commit 78cac41

Please sign in to comment.