Feat: Machine Identity support

This commit is contained in:
Daniel Hougaard
2024-03-06 02:21:26 +01:00
parent f8f2b2574d
commit 83bbf9599d

View File

@@ -6,6 +6,16 @@ type ServiceAccountDetails struct {
PrivateKey string
}
type MachineIdentityDetails struct {
ClientId string
ClientSecret string
}
type UpdateAttributes struct {
Modified bool
ETag string
}
type SingleEnvironmentVariable struct {
Key string `json:"key"`
Value string `json:"value"`