File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ import { registerSsh } from "./ssh.ts";
1717
1818type VMInstance = {
1919 id : string ;
20- instance_group_id : string ;
2120 status : string ;
2221 last_updated_at : string ;
2322} ;
@@ -58,12 +57,10 @@ export function registerVM(program: Command) {
5857 const formattedData = data . map (
5958 ( instance : {
6059 id : string ;
61- instance_group_id : string ;
6260 current_status : string ;
6361 last_updated_at : string ;
6462 } ) : VMInstance => ( {
6563 id : instance . id ,
66- instance_group_id : instance . instance_group_id ,
6764 status : instance . current_status ,
6865 last_updated_at : instance . last_updated_at ,
6966 } ) ,
@@ -76,7 +73,6 @@ export function registerVM(program: Command) {
7673 formattedData . forEach ( ( instance : VMInstance ) => {
7774 table . push ( [
7875 instance . id ,
79- instance . instance_group_id ,
8076 instance . status ,
8177 instance . last_updated_at ,
8278 ] ) ;
You can’t perform that action at this time.
0 commit comments