Commit 76773a8 Theophilus Okwugwuni
authored
1 parent 97a2830 commit 76773a8 Copy full SHA for 76773a8
File tree 4 files changed +22
-1
lines changed
4 files changed +22
-1
lines changed Original file line number Diff line number Diff line change
1
+ - @ diogopms @ skirsten @ philipkrueck @ theocod3s
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @genesiscloud/genesiscloud-js" ,
3
- "version" : " 0.1 .0" ,
3
+ "version" : " 1.0 .0" ,
4
4
"description" : " JavaScript client for the Genesis Cloud API" ,
5
5
"main" : " dist/index.js" ,
6
6
"type" : " commonjs" ,
Original file line number Diff line number Diff line change @@ -423,6 +423,12 @@ export const $Instance = {
423
423
hostname : {
424
424
$ref : "#/components/schemas/Instance.Hostname" ,
425
425
} ,
426
+ reservation_id : {
427
+ type : "string" ,
428
+ description :
429
+ "The unique ID of the reservation the instance is associated with." ,
430
+ nullable : true ,
431
+ } ,
426
432
type : {
427
433
$ref : "#/components/schemas/Instance.Type" ,
428
434
} ,
Original file line number Diff line number Diff line change @@ -235,6 +235,10 @@ export type Instance = {
235
235
id : string ;
236
236
name : Instance_Name ;
237
237
hostname : Instance_Hostname ;
238
+ /**
239
+ * The unique ID of the reservation the instance is associated with.
240
+ */
241
+ reservation_id ?: string | null ;
238
242
type : Instance_Type ;
239
243
os_type : OSType ;
240
244
/**
@@ -1039,6 +1043,11 @@ export type $OpenApiTs = {
1039
1043
hostname : Instance_Hostname ;
1040
1044
type : Instance_Type ;
1041
1045
image : ImageId ;
1046
+ /**
1047
+ * The unique ID of the reservation the instance is associated with.
1048
+ *
1049
+ */
1050
+ reservation_id ?: string ;
1042
1051
/**
1043
1052
* An array of ssh key ids.
1044
1053
* This should not be provided if `password` authentication method is desired.
@@ -1128,6 +1137,11 @@ export type $OpenApiTs = {
1128
1137
requestBody : {
1129
1138
name ?: Instance_Name ;
1130
1139
is_protected ?: Instance_IsProtected ;
1140
+ /**
1141
+ * The unique ID of the reservation the instance is associated with.
1142
+ *
1143
+ */
1144
+ reservation_id ?: string ;
1131
1145
security_groups ?: Instance_SecurityGroupIds ;
1132
1146
/**
1133
1147
* The instance's volumes IDs.
You can’t perform that action at this time.
0 commit comments