e6b9ded949
* API: Add service account routes to the swagger
27 lines
672 B
Go
27 lines
672 B
Go
package dtos
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/services/accesscontrol"
|
|
)
|
|
|
|
// 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 models.RoleType `json:"role"`
|
|
Expiration *time.Time `json:"expiration,omitempty"`
|
|
AccessControl accesscontrol.Metadata `json:"accessControl,omitempty"`
|
|
}
|