From 83bbf9599da8a6d1ac55849bba6645f1ba70016e Mon Sep 17 00:00:00 2001 From: Daniel Hougaard <62331820+DanielHougaard@users.noreply.github.com> Date: Wed, 6 Mar 2024 02:21:26 +0100 Subject: [PATCH] Feat: Machine Identity support --- k8-operator/packages/model/model.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/k8-operator/packages/model/model.go b/k8-operator/packages/model/model.go index b7d4780b29..17cbb98359 100644 --- a/k8-operator/packages/model/model.go +++ b/k8-operator/packages/model/model.go @@ -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"`