setLifetime
- 印刷する
- PDF
setLifetime
- 印刷する
- PDF
記事の要約
この要約は役に立ちましたか?
ご意見ありがとうございます
VPC環境で利用できます。
Data Forestアプリの lifetimeを変更します。
リクエスト
リクエストパラメータ
パラメータ名 | 要否 | タイプ | 制約事項 | 説明 |
---|---|---|---|---|
id | YES | String | 最大22文字まで入力 | - アプリ識別子 UUID(base62) - idは Appsの getList APIを通じて取得可能 |
lifetime | NO | Integer | 300(秒)~604800(秒) | アプリの lifetime(稼働時間) (単位: 秒) |
リクエストヘッダ
リクエストボディ
- JSON
{ "id": "string", "lifetime": 0 }
- XML
<?xml version="1.0" encoding="UTF-8"?> <SetAppLifetimeRequest> <id>string</id> <lifetime>0</lifetime> </SetAppLifetimeRequest>
レスポンス
レスポンスボディ
- JSON
{ "id": "string", "message": "string", "success": true }
- XML
<?xml version="1.0" encoding="UTF-8"?> <SetAppLifetimeResponse> <id>string</id> <message>string</message> <success>true</success> </SetAppLifetimeResponse>
エラーコード
例
リクエスト例
HTTP
POST https://df.apigw.ntruss.com/api/v2/apps/setLifetime HOST: df.apigw.ntruss.com Content-Type: application/json x-ncp-apigw-signature-v2: WTPItrmMIfLUk/UyUIyoQbA/z5hq9o3G8eQMolUzTEo= x-ncp-apigw-timestamp: 1658898041497 x-ncp-iam-access-key: 17F9A6E9F72BD92ED94B { "id": "A4LI7d5mRn1f6M2HxZAEE2", "lifetime": 400 }
BASH
curl -X POST "https://df.apigw.ntruss.com/api/v2/apps/setLifetime" \ -H "accept: application/json" \ -H "Content-Type: application/json" \ -H "x-ncp-apigw-timestamp:1658898041497" \ -H "x-ncp-iam-access-key:17F9A6E9F72BD92ED94B" \ -H "x-ncp-apigw-signature-v2:WTPItrmMIfLUk/UyUIyoQbA/z5hq9o3G8eQMolUzTEo=" \ -d "{ \"id\": \"A4LI7d5mRn1f6M2HxZAEE2\", \"lifetime\": 400}" \
レスポンス例
HTTP
HTTP Status Description 200 OK BASH
{ "success": true, "message": "success", "id": "A4LI7d5mRn1f6M2HxZAEE2" }
この記事は役に立ちましたか?