PurviewLineages.GetLineageGraph Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtenha informações de linhagem da entidade especificada pelo GUID.
public virtual Azure.Response GetLineageGraph (string guid, string direction, int? depth = default, int? width = default, bool? includeParent = default, bool? getDerivedLineage = default, Azure.RequestContext context = default);
abstract member GetLineageGraph : string * string * Nullable<int> * Nullable<int> * Nullable<bool> * Nullable<bool> * Azure.RequestContext -> Azure.Response
override this.GetLineageGraph : string * string * Nullable<int> * Nullable<int> * Nullable<bool> * Nullable<bool> * Azure.RequestContext -> Azure.Response
Public Overridable Function GetLineageGraph (guid As String, direction As String, Optional depth As Nullable(Of Integer) = Nothing, Optional width As Nullable(Of Integer) = Nothing, Optional includeParent As Nullable(Of Boolean) = Nothing, Optional getDerivedLineage As Nullable(Of Boolean) = Nothing, Optional context As RequestContext = Nothing) As Response
Parâmetros
- guid
- String
O identificador global exclusivo da entidade.
- direction
- String
A direção da linhagem, que pode ser INPUT, OUTPUT ou BOTH. Valores permitidos: "BOTH" | "INPUT" | "OUTPUT".
- context
- RequestContext
O contexto de solicitação, que pode substituir comportamentos padrão na solicitação por chamada.
Retornos
Exceções
guid
ou direction
é nulo.
guid
é uma cadeia de caracteres vazia e era esperado que não estivesse vazio.
Comentários
Esquema para Response Body
:
{
baseEntityGuid: string,
guidEntityMap: Dictionary<string, AtlasEntityHeader>,
widthCounts: Dictionary<string, Dictionary<string, AnyObject>>,
lineageDepth: number,
lineageWidth: number,
includeParent: boolean,
childrenCount: number,
lineageDirection: "INPUT" | "OUTPUT" | "BOTH",
parentRelations: [
{
childEntityId: string,
relationshipId: string,
parentEntityId: string
}
],
relations: [
{
fromEntityId: string,
relationshipId: string,
toEntityId: string
}
]
}
Esquema para Response Error
:
{
requestId: string,
errorCode: string,
errorMessage: string
}
Aplica-se a
Azure SDK for .NET