エクスポート¶
GET /api/v1/objc_cfg/{objc_name}/export
概要¶
リソースカタログ設定をエクスポート
ルートパラメーター¶
| パラメーター名 | 型 | 必須 | 説明 |
|---|---|---|---|
| objc_name | string | Y | リソースカタログ設定の名称 |
Query リクエストパラメーター¶
| パラメーター名 | 型 | 必須 | 説明 |
|---|---|---|---|
| sourceType | string | Y | ソースタイプ。デフォルト値は custom_object空を許可: False 有効値: ['object', 'custom_object'] |
パラメーター補足説明¶
リクエスト例¶
curl 'https://openapi.guance.com/api/v1/objc_cfg/test/export?sourceType=custom_object' \
-H 'DF-API-KEY: <DF-API-KEY>' \
--compressed
レスポンス¶
{
"code": 200,
"content": {
"main": [
{
"class": "custom_object",
"source": {
"key": "test",
"name": "test"
},
"groupCfg": {
"name": "demo"
},
"filters": [],
"table": {
"columns": [],
"detail": {
"views": [
{
"keys": {},
"title": "viewer",
"required": true,
"viewName": "NtpQ Monitor View",
"viewType": "dashboard",
"timerange": "default"
}
]
}
},
"fields": [
{
"name": "name"
}
],
"groups": [],
"fills": []
}
],
"title": "test",
"summary": "",
"iconSet": null
},
"errorCode": "",
"message": "",
"success": true,
"traceId": "1713254191261321318"
}