Struct gapi_grpc::google::cloud::aiplatform::v1beta1::QueryArtifactLineageSubgraphRequest[][src]

pub struct QueryArtifactLineageSubgraphRequest {
    pub artifact: String,
    pub max_hops: i32,
    pub filter: String,
}

Request message for [MetadataService.QueryArtifactLineageSubgraph][google.cloud.aiplatform.v1beta1.MetadataService.QueryArtifactLineageSubgraph].

Fields

artifact: String

Required. The resource name of the Artifact whose Lineage needs to be retrieved as a LineageSubgraph. Format: projects/{project}/locations/{location}/metadataStores/{metadatastore}/artifacts/{artifact}

The request may error with FAILED_PRECONDITION if the number of Artifacts, the number of Executions, or the number of Events that would be returned for the Context exceeds 1000.

max_hops: i32

Specifies the size of the lineage graph in terms of number of hops from the specified artifact. Negative Value: INVALID_ARGUMENT error is returned 0: Only input artifact is returned. No value: Transitive closure is performed to return the complete graph.

filter: String

Filter specifying the boolean condition for the Artifacts to satisfy in order to be part of the Lineage Subgraph. The syntax to define filter query is based on https://google.aip.dev/160. The supported set of filters include the following:

Each of the above supported filter types can be combined together using logical operators (AND & OR).

For example: display_name = "test" AND metadata.field1.bool_value = true.

Trait Implementations

impl Clone for QueryArtifactLineageSubgraphRequest[src]

impl Debug for QueryArtifactLineageSubgraphRequest[src]

impl Default for QueryArtifactLineageSubgraphRequest[src]

impl Message for QueryArtifactLineageSubgraphRequest[src]

impl PartialEq<QueryArtifactLineageSubgraphRequest> for QueryArtifactLineageSubgraphRequest[src]

impl StructuralPartialEq for QueryArtifactLineageSubgraphRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for QueryArtifactLineageSubgraphRequest

impl Send for QueryArtifactLineageSubgraphRequest

impl Sync for QueryArtifactLineageSubgraphRequest

impl Unpin for QueryArtifactLineageSubgraphRequest

impl UnwindSafe for QueryArtifactLineageSubgraphRequest

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]