public static final class MetadataServiceGrpc.MetadataServiceBlockingStub extends io.grpc.stub.AbstractBlockingStub<MetadataServiceGrpc.MetadataServiceBlockingStub>
Service for reading and writing metadata entries.
| Modifier and Type | Method and Description |
|---|---|
AddContextArtifactsAndExecutionsResponse |
addContextArtifactsAndExecutions(AddContextArtifactsAndExecutionsRequest request)
Adds a set of Artifacts and Executions to a Context.
|
AddContextChildrenResponse |
addContextChildren(AddContextChildrenRequest request)
Adds a set of Contexts as children to a parent Context.
|
AddExecutionEventsResponse |
addExecutionEvents(AddExecutionEventsRequest request)
Adds Events to the specified Execution.
|
protected MetadataServiceGrpc.MetadataServiceBlockingStub |
build(io.grpc.Channel channel,
io.grpc.CallOptions callOptions) |
Artifact |
createArtifact(CreateArtifactRequest request)
Creates an Artifact associated with a MetadataStore.
|
Context |
createContext(CreateContextRequest request)
Creates a Context associated with a MetadataStore.
|
Execution |
createExecution(CreateExecutionRequest request)
Creates an Execution associated with a MetadataStore.
|
MetadataSchema |
createMetadataSchema(CreateMetadataSchemaRequest request)
Creates a MetadataSchema.
|
com.google.longrunning.Operation |
createMetadataStore(CreateMetadataStoreRequest request)
Initializes a MetadataStore, including allocation of resources.
|
com.google.longrunning.Operation |
deleteArtifact(DeleteArtifactRequest request)
Deletes an Artifact.
|
com.google.longrunning.Operation |
deleteContext(DeleteContextRequest request)
Deletes a stored Context.
|
com.google.longrunning.Operation |
deleteExecution(DeleteExecutionRequest request)
Deletes an Execution.
|
com.google.longrunning.Operation |
deleteMetadataStore(DeleteMetadataStoreRequest request)
Deletes a single MetadataStore and all its child resources (Artifacts,
Executions, and Contexts).
|
Artifact |
getArtifact(GetArtifactRequest request)
Retrieves a specific Artifact.
|
Context |
getContext(GetContextRequest request)
Retrieves a specific Context.
|
Execution |
getExecution(GetExecutionRequest request)
Retrieves a specific Execution.
|
MetadataSchema |
getMetadataSchema(GetMetadataSchemaRequest request)
Retrieves a specific MetadataSchema.
|
MetadataStore |
getMetadataStore(GetMetadataStoreRequest request)
Retrieves a specific MetadataStore.
|
ListArtifactsResponse |
listArtifacts(ListArtifactsRequest request)
Lists Artifacts in the MetadataStore.
|
ListContextsResponse |
listContexts(ListContextsRequest request)
Lists Contexts on the MetadataStore.
|
ListExecutionsResponse |
listExecutions(ListExecutionsRequest request)
Lists Executions in the MetadataStore.
|
ListMetadataSchemasResponse |
listMetadataSchemas(ListMetadataSchemasRequest request)
Lists MetadataSchemas.
|
ListMetadataStoresResponse |
listMetadataStores(ListMetadataStoresRequest request)
Lists MetadataStores for a Location.
|
com.google.longrunning.Operation |
purgeArtifacts(PurgeArtifactsRequest request)
Purges Artifacts.
|
com.google.longrunning.Operation |
purgeContexts(PurgeContextsRequest request)
Purges Contexts.
|
com.google.longrunning.Operation |
purgeExecutions(PurgeExecutionsRequest request)
Purges Executions.
|
LineageSubgraph |
queryArtifactLineageSubgraph(QueryArtifactLineageSubgraphRequest request)
Retrieves lineage of an Artifact represented through Artifacts and
Executions connected by Event edges and returned as a LineageSubgraph.
|
LineageSubgraph |
queryContextLineageSubgraph(QueryContextLineageSubgraphRequest request)
Retrieves Artifacts and Executions within the specified Context, connected
by Event edges and returned as a LineageSubgraph.
|
LineageSubgraph |
queryExecutionInputsAndOutputs(QueryExecutionInputsAndOutputsRequest request)
Obtains the set of input and output Artifacts for this Execution, in the
form of LineageSubgraph that also contains the Execution and connecting
Events.
|
RemoveContextChildrenResponse |
removeContextChildren(RemoveContextChildrenRequest request)
Remove a set of children contexts from a parent Context.
|
Artifact |
updateArtifact(UpdateArtifactRequest request)
Updates a stored Artifact.
|
Context |
updateContext(UpdateContextRequest request)
Updates a stored Context.
|
Execution |
updateExecution(UpdateExecutionRequest request)
Updates a stored Execution.
|
protected MetadataServiceGrpc.MetadataServiceBlockingStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
build in class io.grpc.stub.AbstractStub<MetadataServiceGrpc.MetadataServiceBlockingStub>public com.google.longrunning.Operation createMetadataStore(CreateMetadataStoreRequest request)
Initializes a MetadataStore, including allocation of resources.
public MetadataStore getMetadataStore(GetMetadataStoreRequest request)
Retrieves a specific MetadataStore.
public ListMetadataStoresResponse listMetadataStores(ListMetadataStoresRequest request)
Lists MetadataStores for a Location.
public com.google.longrunning.Operation deleteMetadataStore(DeleteMetadataStoreRequest request)
Deletes a single MetadataStore and all its child resources (Artifacts, Executions, and Contexts).
public Artifact createArtifact(CreateArtifactRequest request)
Creates an Artifact associated with a MetadataStore.
public Artifact getArtifact(GetArtifactRequest request)
Retrieves a specific Artifact.
public ListArtifactsResponse listArtifacts(ListArtifactsRequest request)
Lists Artifacts in the MetadataStore.
public Artifact updateArtifact(UpdateArtifactRequest request)
Updates a stored Artifact.
public com.google.longrunning.Operation deleteArtifact(DeleteArtifactRequest request)
Deletes an Artifact.
public com.google.longrunning.Operation purgeArtifacts(PurgeArtifactsRequest request)
Purges Artifacts.
public Context createContext(CreateContextRequest request)
Creates a Context associated with a MetadataStore.
public Context getContext(GetContextRequest request)
Retrieves a specific Context.
public ListContextsResponse listContexts(ListContextsRequest request)
Lists Contexts on the MetadataStore.
public Context updateContext(UpdateContextRequest request)
Updates a stored Context.
public com.google.longrunning.Operation deleteContext(DeleteContextRequest request)
Deletes a stored Context.
public com.google.longrunning.Operation purgeContexts(PurgeContextsRequest request)
Purges Contexts.
public AddContextArtifactsAndExecutionsResponse addContextArtifactsAndExecutions(AddContextArtifactsAndExecutionsRequest request)
Adds a set of Artifacts and Executions to a Context. If any of the Artifacts or Executions have already been added to a Context, they are simply skipped.
public AddContextChildrenResponse addContextChildren(AddContextChildrenRequest request)
Adds a set of Contexts as children to a parent Context. If any of the child Contexts have already been added to the parent Context, they are simply skipped. If this call would create a cycle or cause any Context to have more than 10 parents, the request will fail with an INVALID_ARGUMENT error.
public RemoveContextChildrenResponse removeContextChildren(RemoveContextChildrenRequest request)
Remove a set of children contexts from a parent Context. If any of the child Contexts were NOT added to the parent Context, they are simply skipped.
public LineageSubgraph queryContextLineageSubgraph(QueryContextLineageSubgraphRequest request)
Retrieves Artifacts and Executions within the specified Context, connected by Event edges and returned as a LineageSubgraph.
public Execution createExecution(CreateExecutionRequest request)
Creates an Execution associated with a MetadataStore.
public Execution getExecution(GetExecutionRequest request)
Retrieves a specific Execution.
public ListExecutionsResponse listExecutions(ListExecutionsRequest request)
Lists Executions in the MetadataStore.
public Execution updateExecution(UpdateExecutionRequest request)
Updates a stored Execution.
public com.google.longrunning.Operation deleteExecution(DeleteExecutionRequest request)
Deletes an Execution.
public com.google.longrunning.Operation purgeExecutions(PurgeExecutionsRequest request)
Purges Executions.
public AddExecutionEventsResponse addExecutionEvents(AddExecutionEventsRequest request)
Adds Events to the specified Execution. An Event indicates whether an Artifact was used as an input or output for an Execution. If an Event already exists between the Execution and the Artifact, the Event is skipped.
public LineageSubgraph queryExecutionInputsAndOutputs(QueryExecutionInputsAndOutputsRequest request)
Obtains the set of input and output Artifacts for this Execution, in the form of LineageSubgraph that also contains the Execution and connecting Events.
public MetadataSchema createMetadataSchema(CreateMetadataSchemaRequest request)
Creates a MetadataSchema.
public MetadataSchema getMetadataSchema(GetMetadataSchemaRequest request)
Retrieves a specific MetadataSchema.
public ListMetadataSchemasResponse listMetadataSchemas(ListMetadataSchemasRequest request)
Lists MetadataSchemas.
public LineageSubgraph queryArtifactLineageSubgraph(QueryArtifactLineageSubgraphRequest request)
Retrieves lineage of an Artifact represented through Artifacts and Executions connected by Event edges and returned as a LineageSubgraph.
Copyright © 2024 Google LLC. All rights reserved.