WIP
This commit is contained in:
Binary file not shown.
@@ -24,6 +24,39 @@ model Audit {
|
||||
response String?
|
||||
}
|
||||
|
||||
model IamRole {
|
||||
id String @id
|
||||
path String?
|
||||
name String
|
||||
assumeRolePolicy String?
|
||||
description String?
|
||||
maxSessionDuration Int?
|
||||
permissionBoundaryArn String?
|
||||
lastUsedDate DateTime?
|
||||
lastUsedRegion String?
|
||||
accountId String
|
||||
createdAt DateTime @default(now())
|
||||
|
||||
@@unique([accountId, name])
|
||||
}
|
||||
|
||||
model IamPolicy {
|
||||
id String
|
||||
version Int @default(1)
|
||||
isDefault Boolean
|
||||
path String?
|
||||
name String
|
||||
description String?
|
||||
policy String
|
||||
isAttachable Boolean @default(false)
|
||||
accountId String
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @updatedAt
|
||||
|
||||
@@id([id, version])
|
||||
@@unique([accountId, path, name])
|
||||
}
|
||||
|
||||
model KmsAlias {
|
||||
name String
|
||||
accountId String
|
||||
|
||||
Reference in New Issue
Block a user