From 2f9dce256b9a7af3fad3c2ef5ee58120d921b75e Mon Sep 17 00:00:00 2001 From: Dane Elwell Date: Wed, 13 Nov 2024 11:35:16 +0000 Subject: [PATCH] Remove unnecessary fields from BGW spec model --- pkg/service/ecloud/model.go | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/pkg/service/ecloud/model.go b/pkg/service/ecloud/model.go index 53f66c9..703b17e 100644 --- a/pkg/service/ecloud/model.go +++ b/pkg/service/ecloud/model.go @@ -1068,14 +1068,9 @@ type VPNGatewayUser struct { // BackupGatewaySpecification represents a Backup Gateway specification type BackupGatewaySpecification struct { - ID string `json:"id"` - Name string `json:"name"` - Description string `json:"description"` - CPU int `json:"cpu"` - RAM int `json:"ram"` - IopsID string `json:"iops_id"` - VolumeCapacity int `json:"volume_capacity"` - ImageID string `json:"image_id"` + ID string `json:"id"` + Name string `json:"name"` + Description string `json:"description"` } // BackupGateway represents a Backup Gateway