From 1ca895a7617db998831cbf9daebfcea3d6829f44 Mon Sep 17 00:00:00 2001 From: Mahesh N <112473480+mahesh-hpe@users.noreply.github.com> Date: Mon, 10 Jun 2024 16:48:12 +0530 Subject: [PATCH] Revert "Instance Network Schema update" --- pkg/models/instance_tf.go | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkg/models/instance_tf.go b/pkg/models/instance_tf.go index c1bb18e..104b4d6 100644 --- a/pkg/models/instance_tf.go +++ b/pkg/models/instance_tf.go @@ -1,4 +1,4 @@ -// (C) Copyright 2021-2024 Hewlett Packard Enterprise Development LP +// (C) Copyright 2021 Hewlett Packard Enterprise Development LP // This file contains struct models related to terraform, but not the API package models @@ -28,8 +28,9 @@ type TFInstanceVolume struct { } type TFInstanceNetwork struct { - ID int `tf:"id"` - InterfaceID int `tf:"interface_id"` - IsPrimary bool `tf:"is_primary"` - InternalID int `tf:"internal_id"` + ID int `tf:"id"` + InterfaceID int `tf:"interface_id"` + IsPrimary bool `tf:"is_primary"` + InternalID int `tf:"internal_id"` + Name string `tf:"name"` }