Skip to content

brk: removes linode/instances/$id/kvmify endpoint #73

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions src/data/endpoints/linodes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -603,27 +603,6 @@ endpoints:
https://$api_root/$version/linode/instances/$linode_id/reboot
python: |
my_linode.reboot()
/linode/instances/$id/kvmify:
type: Action
authenticated: true
description: >
Changes a Linode's hypervisor from Xen (legacy) to KVM (modern). Doing this
restarts and migrates your Linode, and can take several minutes depending on
the size of the Linode. Upgrading to KVM has significant performance
improvements. This endpoint will only work for Linodes currently running
on the Xen hypervisor.
methods:
POST:
oauth: linodes:modify
dangerous: true
examples:
curl: |
curl -H "Content-Type: application/json" \
-H "Authorization: Bearer $TOKEN" \
-X POST \
https://$api_root/$version/linode/instances/$linode_id/kvmify
python: |
my_linode.kvmify()
/linode/instances/$id/rescue:
type: Action
authenticated: true
Expand Down
3 changes: 1 addition & 2 deletions src/data/objects/event.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ schema:
subtype: EventStatus
value: finished
description: >
The current status of this event.
The current status of this event.
percent_complete:
type: Integer
value: 20
Expand Down Expand Up @@ -95,7 +95,6 @@ enums:
linode_migrate: Linode migrate
linode_rebuild: Linode rebuild
linode_clone: Linode clone
linode_kvmify: Linode kvmify
disk_create: Disk create
disk_delete: Disk delete
disk_duplicate: Disk duplicate
Expand Down