0
資産URL(ADCのテーブルの場所)を使用して表の説明に注釈を付けることができます。私が使用しています紺碧のデータカタログの列タグに注釈を付ける
HTTPリクエストがある:
{table_location_url}/descriptions?api-version=2016-03-30
JSONオブジェクトです:テーブルの
private static string DescriptionJson(string description)
{
return string.Format(@"
{{
""properties"" : {{
""key"": ""{0}"",
""fromSourceSystem"": false,
""description"": ""{1}""
}}
}}
", Guid.NewGuid().ToString("N"), description);
}
注釈の説明は成功です。
今、私は私が悪い要求ERROのR(400)を取得しています、使用してカラムのタグに注釈を付けること
Http request: {table_location_url}/columnTags?api-version=2016-03-30
static string SampleAnnotationJson(string name)
{
return string.Format(@"
{{
""properties"" : {{
""key"": ""{0}"",
""fromSourceSystem"": false,
""columnName"": ""on_hold_text_key"",
""termId"": ""https://1194df16-3ae0-49aa-b48b-5c4da6e13689-imss-data-catalog.api.datacatalog.azure.com/catalogs/IMSS-Data-Catalog/glossaries/IMSS-Data-Catalog/terms/4b8fe89d-c92a-4aee-abe1-691a2cd52458"",
}}
", Guid.NewGuid().ToString("N"));
}
をしようとしています。
何か不足していますか?