mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
17537b033d
* feat: last_used_at for apikeys * add: docs and copy changes * refactor: use br correctly * remove docs * removed more docs
28 lines
746 B
Go
28 lines
746 B
Go
package dtos
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/services/accesscontrol"
|
|
"github.com/grafana/grafana/pkg/services/org"
|
|
)
|
|
|
|
// swagger:model
|
|
type NewApiKeyResult struct {
|
|
// example: 1
|
|
ID int64 `json:"id"`
|
|
// example: grafana
|
|
Name string `json:"name"`
|
|
// example: glsa_yscW25imSKJIuav8zF37RZmnbiDvB05G_fcaaf58a
|
|
Key string `json:"key"`
|
|
}
|
|
|
|
type ApiKeyDTO struct {
|
|
ID int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
Role org.RoleType `json:"role"`
|
|
Expiration *time.Time `json:"expiration,omitempty"`
|
|
LastUsedAt *time.Time `json:"lastUsedAt,omitempty"`
|
|
AccessControl accesscontrol.Metadata `json:"accessControl,omitempty"`
|
|
}
|