mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
43 lines
866 B
Go
43 lines
866 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"`
|
|
SecretPath string `json:"secretPath"`
|
|
Type string `json:"type"`
|
|
ID string `json:"id"`
|
|
}
|
|
|
|
type SecretTemplateOptions struct {
|
|
Value string `json:"value"`
|
|
SecretPath string `json:"secretPath"`
|
|
}
|
|
|
|
type Project struct {
|
|
ID string `json:"id"`
|
|
Name string `json:"name"`
|
|
Slug string `json:"slug"`
|
|
OrgID string `json:"orgId"`
|
|
Environments []struct {
|
|
Name string `json:"name"`
|
|
Slug string `json:"slug"`
|
|
ID string `json:"id"`
|
|
}
|
|
}
|