Entity - Get Classifications
GUID で表される特定のエンティティの分類を一覧表示します。
GET {endpoint}/datamap/api/atlas/v2/entity/guid/{guid}/classifications
URI パラメーター
| 名前 | / | 必須 | 型 | 説明 |
|---|---|---|---|---|
|
endpoint
|
path | True |
string (uri) |
|
|
guid
|
path | True |
string |
エンティティのグローバル一意識別子。 |
応答
| 名前 | 型 | 説明 |
|---|---|---|
| 200 OK |
要求は成功しました。 |
|
| Other Status Codes |
予期しないエラー応答。 |
セキュリティ
OAuth2Auth
型:
oauth2
フロー:
implicit
Authorization URL (承認 URL):
https://login.microsoftonline.com/common/oauth2/authorize
スコープ
| 名前 | 説明 |
|---|---|
| https://purview.azure.net/.default |
例
Entity_GetClassifications
要求のサンプル
GET {endpoint}/datamap/api/atlas/v2/entity/guid/67d26de6-771d-1a2d-cb2b-dec4dbd2a9bd/classifications
応答のサンプル
{
"list": [
{
"typeName": "MICROSOFT.FINANCIAL.US.ABA_ROUTING_NUMBER",
"entityGuid": "67d26de6-771d-1a2d-cb2b-dec4dbd2a9bd"
}
],
"startIndex": 0,
"pageSize": 1,
"totalCount": 1,
"sortType": "NONE"
}
定義
| 名前 | 説明 |
|---|---|
|
Atlas |
REST シリアル化のフレンドリ リスト。 |
|
Atlas |
サービスからのエラー応答 |
|
Sort |
並べ替えの種類 |
AtlasClassifications
REST シリアル化のフレンドリ リスト。
| 名前 | 型 | 説明 |
|---|---|---|
| list |
List[] |
オブジェクトの配列。 |
| pageSize |
integer (int32) |
ページのサイズ。 |
| sortBy |
string |
並べ替えられたフィールド。 |
| sortType |
結果を並べ替える必要があるかどうかを指定するには、 "はい" の場合は、asc か desc かに関係なく。 |
|
| startIndex |
integer (int32) |
ページの開始インデックス。 |
| totalCount |
integer (int32) |
アイテムの合計数。 |
AtlasErrorResponse
サービスからのエラー応答
| 名前 | 型 | 説明 |
|---|---|---|
| errorCode |
string |
エラー コード。 |
| errorMessage |
string |
エラー メッセージ。 |
| requestId |
string (uuid) |
要求 ID。 |
SortType
並べ替えの種類
| 値 | 説明 |
|---|---|
| NONE |
並べ替え順序なし |
| ASC |
並べ替えに昇順を使用する |
| DESC |
並べ替えに降順を使用する |