CD/DVDの挿入

対象の仮想マシンに対してカタログからCD/DVD(ISOイメージ)の挿入を行います。

PUT /api/1.0/vm/{vmId}/action/insertCd

※ vmId :CD/DVD(ISOイメージ)を挿入する対象の仮想マシンID

Request parameters
Name Description Type Data type Required
Authorization Bearer [APIキー] header string True
isoImageId ISOイメージID body string True
Successful Response
Response Code 200 OK
Response Headers Content-type: application/json
Response parameters
Name Description Example Data type
vmId 仮想マシンID 01887c57faef446fb2cca00cef507efa String
実行例
  
    # Execute request
    curl -i -X PUT -H "Authorization:$token" -H "Content-Type:application/json" ¥
    -d '{
      "isoImageId": "3731b54016434219bb2c6a8bc3a3abe2"
    }' ¥
    'https://eastapi.aspire.gcf.whitecloud.jp/api/1.0/vm/510e..5b8..9937/action/insertCd'
  
レスポンス例
  
    {"vmId":" f99daa8cd47e4104bd04dbf134218g12"}