File tree Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,28 @@ paths:
70
70
type : array
71
71
items :
72
72
$ref : ' #/components/schemas/Linode'
73
+ ' /linode/instances/{linodeId} ' :
74
+ parameters :
75
+ - name : linodeId
76
+ in : path
77
+ description : ID of the Linode to look up
78
+ required : true
79
+ schema :
80
+ type : integer
81
+ get :
82
+ description : Get a Linode
83
+ operationId : getLinodeInstance
84
+ security :
85
+ - personalAccessToken : []
86
+ - oauth :
87
+ - ' linodes:view'
88
+ responses :
89
+ ' 200 ' :
90
+ description : Returns a single Linode
91
+ content :
92
+ application/json :
93
+ schema :
94
+ $ref : ' #/components/schemas/Linode'
73
95
components :
74
96
securitySchemes :
75
97
personalAccessToken :
@@ -128,7 +150,13 @@ components:
128
150
status :
129
151
type : string
130
152
description : |
131
- A breif description of this Linode's current state.
153
+ A brief description of this Linode's current state.
132
154
enum :
133
155
- running
134
156
- offline
157
+ hypervisor :
158
+ type : string
159
+ description : The hypervisor this Linode is running under.
160
+ enum :
161
+ - kvm
162
+ - xen
You can’t perform that action at this time.
0 commit comments