mirror of
https://github.com/Infisical/infisical.git
synced 2026-05-02 03:02:03 -04:00
25 lines
422 B
Go
25 lines
422 B
Go
package model
|
|
|
|
type ServiceAccountDetails struct {
|
|
AccessKey string
|
|
PublicKey string
|
|
PrivateKey string
|
|
}
|
|
|
|
type MachineIdentityDetails struct {
|
|
ClientId string
|
|
ClientSecret string
|
|
}
|
|
|
|
type RequestUpdateUpdateDetails struct {
|
|
Modified bool
|
|
ETag string
|
|
}
|
|
|
|
type SingleEnvironmentVariable struct {
|
|
Key string `json:"key"`
|
|
Value string `json:"value"`
|
|
Type string `json:"type"`
|
|
ID string `json:"_id"`
|
|
}
|