Revert "fix(docs): add APIKey Digest example EE-6199 (#10980)" (#10981)

This reverts commit 7b6e106606.
pull/10734/head^2
Dakota Walsh 2024-01-19 14:02:19 +13:00 committed by GitHub
parent 7b6e106606
commit 36ab4dfb1a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -905,10 +905,10 @@ type (
ID APIKeyID `json:"id" example:"1"`
UserID UserID `json:"userId" example:"1"`
Description string `json:"description" example:"portainer-api-key"`
Prefix string `json:"prefix"` // API key identifier (7 char prefix)
DateCreated int64 `json:"dateCreated"` // Unix timestamp (UTC) when the API key was created
LastUsed int64 `json:"lastUsed"` // Unix timestamp (UTC) when the API key was last used
Digest string `json:"digest,omitempty" example:"b8GuHNH/ZNZ+44Ivkm4sDadzrz7MuiCCeKnvpE14jaw="` // Digest represents SHA256 hash of the raw API key
Prefix string `json:"prefix"` // API key identifier (7 char prefix)
DateCreated int64 `json:"dateCreated"` // Unix timestamp (UTC) when the API key was created
LastUsed int64 `json:"lastUsed"` // Unix timestamp (UTC) when the API key was last used
Digest string `json:"digest,omitempty"` // Digest represents SHA256 hash of the raw API key
}
// Schedule represents a scheduled job.