構成データ型の取得
get
/services/{version}/config/types/{type}
必要なロール: ユーザー
構成データ型を取得します。
リクエスト
パス・パラメータ
- version(必須): string
Oracle GoldenGateサービスのAPIバージョン。
指定できる値:[ "v2" ]
レスポンス
サポートされるメディア・タイプ
- application/json
200レスポンス
構成データ型が正常に取得されました。
ルート・スキーマ: Oracle GoldenGate Configuration Data Type
型:
object
タイトル:
Oracle GoldenGate Configuration Data Type
使用可能な追加プロパティ:
ソースの表示
true
- $schema(必須):
指定できる値:
[ "http://json-schema.org/draft-04/schema#" ]
レスポンスの例(application/json)
{
"$schema":"api:standardResponse",
"links":[
{
"href":"http://localhost:11001/services/v2/config/types/custom:config",
"mediaType":"application/json",
"rel":"canonical"
},
{
"href":"http://localhost:11001/services/v2/config/types/custom:config",
"mediaType":"application/json",
"rel":"self"
},
{
"href":"http://localhost:11001/services/v2/metadata-catalog/type",
"mediaType":"application/schema+json",
"rel":"describedby"
}
],
"messages":[
],
"response":{
"$schema":"http://json-schema.org/draft-04/schema#",
"additionalProperties":false,
"id":"custom:config",
"properties":{
"$schema":{
"enum":[
"custom:config"
]
},
"lines":{
"items":{
"maxLength":"4095",
"minLength":"0",
"type":"string"
},
"maxItems":"32767",
"minItems":"0",
"type":"array"
}
},
"required":[
"lines"
],
"title":"Custom Configuration Data",
"type":"object"
}
}