From 8abf9cf4da8eabe3f2e5628bc426049d21db3f9b Mon Sep 17 00:00:00 2001 From: Josh De Winne Date: Wed, 23 Oct 2024 16:27:01 -0700 Subject: [PATCH] rename ssh_port to direct_ssh_port --- pkg/types/vm.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/types/vm.go b/pkg/types/vm.go index a774317b..ce0b4537 100644 --- a/pkg/types/vm.go +++ b/pkg/types/vm.go @@ -20,8 +20,8 @@ type VM struct { EstimatedCost int64 `json:"estimated_cost"` // Represents estimated credits for this vm based on the TTL - SSHPort int64 `json:"ssh_port,omitempty"` - SSHEndpoint string `json:"ssh_endpoint,omitempty"` + DirectSSHPort int64 `json:"direct_ssh_port,omitempty"` + DirectSSHEndpoint string `json:"direct_ssh_endpoint,omitempty"` Tags []Tag `json:"tags"` }