Skip to content
This repository has been archived by the owner on Aug 5, 2021. It is now read-only.

Commit

Permalink
add enableVolumeIO
Browse files Browse the repository at this point in the history
  • Loading branch information
Genki Sugawara committed Mar 27, 2012
1 parent e7510b1 commit a84fa81
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions ec2ui/content/ec2ui/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -3036,4 +3036,18 @@ var ec2ui_controller = {
}
},

enableVolumeIO : function (volumeId, callback) {
var params = [
['VolumeId', volumeId],
];

ec2_httpclient.queryEC2("EnableVolumeIO", params, this, true, "onCompleteEnableVolumeIO", callback);
},

onCompleteEnableVolumeIO : function (objResponse) {
if (objResponse.callback) {
objResponse.callback();
}
},

};

0 comments on commit a84fa81

Please sign in to comment.