File tree Expand file tree Collapse file tree 3 files changed +21
-9
lines changed Expand file tree Collapse file tree 3 files changed +21
-9
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ endpoints:
10
10
methods :
11
11
GET :
12
12
response : image
13
+ paginationKey : images
13
14
oauth : ' images:view'
14
15
description : |
15
16
Returns a list of images.
@@ -38,7 +39,7 @@ endpoints:
38
39
PUT :
39
40
oauth : ' images:modify'
40
41
description : |
41
- Modifies a given image
42
+ Modifies a given image. Only private images belonging to you are modifiable.
42
43
examples :
43
44
curl : |
44
45
curl -H "Content-Type: application/json" \
@@ -54,7 +55,7 @@ endpoints:
54
55
DELETE :
55
56
oauth : ' images:delete'
56
57
description : |
57
- Deletes a given image
58
+ Deletes a given image.Only private images belonging to you are deletable.
58
59
examples :
59
60
curl : |
60
61
curl -H "Authorization: Bearer $TOKEN" \
Original file line number Diff line number Diff line change @@ -1188,13 +1188,14 @@ endpoints:
1188
1188
/linode/distributions :
1189
1189
group : Distributions
1190
1190
description : >
1191
- View the collection of distributions .
1191
+ THIS ENDPOINT IS DEPRECATED. USE /images INSTEAD. Returns information about this distribution .
1192
1192
methods :
1193
1193
GET :
1194
- response : distribution
1194
+ response : image
1195
1195
paginationKey : distributions
1196
1196
description : >
1197
- Returns a list of distributions.
1197
+ THIS ENDPOINT IS DEPRECATED. USE /images INSTEAD. Returns information about this distribution.
1198
+ seeAlso : ["/reference/endpoints/images"]
1198
1199
examples :
1199
1200
curl : |
1200
1201
curl https://$api_root/$version/linode/distributions
@@ -1204,12 +1205,13 @@ endpoints:
1204
1205
group : Distributions
1205
1206
type : resource
1206
1207
description : >
1207
- Returns information about a specific distribution.
1208
+ THIS ENDPOINT IS DEPRECATED. USE /images INSTEAD. Returns information about this distribution.
1208
1209
methods :
1209
1210
GET :
1210
- response : distribution
1211
+ response : image
1211
1212
description : >
1212
- Returns information about this distribution.
1213
+ THIS ENDPOINT IS DEPRECATED. USE /images INSTEAD. Returns information about this distribution.
1214
+ seeAlso : ["/reference/endpoints/images"]
1213
1215
examples :
1214
1216
curl : |
1215
1217
curl https://$api_root/$version/linode/distributions/$distribution_id
Original file line number Diff line number Diff line change 1
1
name : Image
2
2
description : >
3
- Image objects describe an image that was made based off a device on a Linode
3
+ Image objects describe an image that was made based off a device, or an official
4
+ image created by Linode for public use.
4
5
schema :
5
6
id :
6
7
type : Integer
@@ -53,3 +54,11 @@ schema:
53
54
type : String
54
55
value : " 2017-10-19T11:21:01"
55
56
description : The last time this image was used.
57
+ min_deploy_size :
58
+ type : Integer
59
+ value : 1000
60
+ description : The minimum size this image needs to deploy.
61
+ creator :
62
+ type : String
63
+ value : your_username
64
+ description : The name of the user who created this image, or linode for official images.
You can’t perform that action at this time.
0 commit comments