Interface ProcessLinksOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ProcessLinks
,ProcessLinks.Builder
public interface ProcessLinksOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProcessLinkInfo
getLinks(int index)
An array containing link details objects of the links provided in the original request.int
getLinksCount()
An array containing link details objects of the links provided in the original request.List<ProcessLinkInfo>
getLinksList()
An array containing link details objects of the links provided in the original request.ProcessLinkInfoOrBuilder
getLinksOrBuilder(int index)
An array containing link details objects of the links provided in the original request.List<? extends ProcessLinkInfoOrBuilder>
getLinksOrBuilderList()
An array containing link details objects of the links provided in the original request.String
getProcess()
The process name in the format of `projects/{project}/locations/{location}/processes/{process}`.com.google.protobuf.ByteString
getProcessBytes()
The process name in the format of `projects/{project}/locations/{location}/processes/{process}`.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getProcess
String getProcess()
The process name in the format of `projects/{project}/locations/{location}/processes/{process}`.
string process = 1 [(.google.api.resource_reference) = { ... }
- Returns:
- The process.
-
getProcessBytes
com.google.protobuf.ByteString getProcessBytes()
The process name in the format of `projects/{project}/locations/{location}/processes/{process}`.
string process = 1 [(.google.api.resource_reference) = { ... }
- Returns:
- The bytes for process.
-
getLinksList
List<ProcessLinkInfo> getLinksList()
An array containing link details objects of the links provided in the original request. A single process can result in creating multiple links. If any of the links you provide in the request are created by the same process, they all are included in this array.
repeated .google.cloud.datacatalog.lineage.v1.ProcessLinkInfo links = 2;
-
getLinks
ProcessLinkInfo getLinks(int index)
An array containing link details objects of the links provided in the original request. A single process can result in creating multiple links. If any of the links you provide in the request are created by the same process, they all are included in this array.
repeated .google.cloud.datacatalog.lineage.v1.ProcessLinkInfo links = 2;
-
getLinksCount
int getLinksCount()
An array containing link details objects of the links provided in the original request. A single process can result in creating multiple links. If any of the links you provide in the request are created by the same process, they all are included in this array.
repeated .google.cloud.datacatalog.lineage.v1.ProcessLinkInfo links = 2;
-
getLinksOrBuilderList
List<? extends ProcessLinkInfoOrBuilder> getLinksOrBuilderList()
An array containing link details objects of the links provided in the original request. A single process can result in creating multiple links. If any of the links you provide in the request are created by the same process, they all are included in this array.
repeated .google.cloud.datacatalog.lineage.v1.ProcessLinkInfo links = 2;
-
getLinksOrBuilder
ProcessLinkInfoOrBuilder getLinksOrBuilder(int index)
An array containing link details objects of the links provided in the original request. A single process can result in creating multiple links. If any of the links you provide in the request are created by the same process, they all are included in this array.
repeated .google.cloud.datacatalog.lineage.v1.ProcessLinkInfo links = 2;
-
-