File tree 2 files changed +15
-0
lines changed
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -423,6 +423,9 @@ export const $Instance = {
423
423
hostname : {
424
424
$ref : "#/components/schemas/Instance.Hostname" ,
425
425
} ,
426
+ dns_name : {
427
+ $ref : "#/components/schemas/Instance.DNSName" ,
428
+ } ,
426
429
reservation_id : {
427
430
type : "string" ,
428
431
description :
@@ -554,6 +557,7 @@ export const $Instance = {
554
557
"id" ,
555
558
"name" ,
556
559
"hostname" ,
560
+ "dns_name" ,
557
561
"type" ,
558
562
"os_type" ,
559
563
"public_ip" ,
@@ -580,6 +584,11 @@ export const $Instance_Hostname = {
580
584
description : "The hostname of your instance." ,
581
585
} as const ;
582
586
587
+ export const $Instance_DNSName = {
588
+ type : "string" ,
589
+ description : "The dns name of your instance." ,
590
+ } as const ;
591
+
583
592
export const $ImageId = {
584
593
type : "string" ,
585
594
description :
Original file line number Diff line number Diff line change @@ -235,6 +235,7 @@ export type Instance = {
235
235
id : string ;
236
236
name : Instance_Name ;
237
237
hostname : Instance_Hostname ;
238
+ dns_name : Instance_DNSName ;
238
239
/**
239
240
* The unique ID of the reservation the instance is associated with.
240
241
*/
@@ -324,6 +325,11 @@ export type Instance_Name = string;
324
325
*/
325
326
export type Instance_Hostname = string ;
326
327
328
+ /**
329
+ * The dns name of your instance.
330
+ */
331
+ export type Instance_DNSName = string ;
332
+
327
333
/**
328
334
* A unique number that can be used to identify and reference a specific image.
329
335
*/
You can’t perform that action at this time.
0 commit comments