UpdatePlannedMaintenance
- 印刷する
- PDF
UpdatePlannedMaintenance
- 印刷する
- PDF
記事の要約
この要約は役に立ちましたか?
ご意見ありがとうございます
概要
指定した Planned Maintenanceを変更します。
リクエスト
API URL
URL: https://cw.apigw.ntruss.com/cw_fea/real/cw/api/planned-maintenances/{id}
Method: PUT
リクエストヘッダ
共通の設定に明示されたリクエストヘッダが必要です。
Content-Type: application/json
x-ncp-apigw-signature-v2: {generated signature}
x-ncp-apigw-timestamp: {current timestamp}
x-ncp-iam-access-key: {your iam access key}
リクエストボディ
例
リクエスト例
次は、Planned Maintenance IDが1234567890123456789
の Planned Maintenanceを変更するサンプルコードです。
PUT /cw_fea/real/cw/api/planned-maintenances/1234567890123456789
Host: cw.apigw.ntruss.com
Content-Type: application/json
x-ncp-apigw-signature-v2: {generated signature}
x-ncp-apigw-timestamp: {current timestamp}
x-ncp-iam-access-key: {your iam access key}
Payload:
{
"desc": "",
"dimensions": {
"xxxxxxxxxxxxxxxxxx": [
{
"instanceNo": "{instanceNo}",
"mnt_nm": "/",
"type": "fs"
}
]
},
"endTime": 1721132915000,
"startTime": 1721129400000,
"title": "{title}"
}
レスポンス例
エラーなしで変更が完了した場合、レスポンスボディなしで HTTPコード200が返されます。
この記事は役に立ちましたか?