Interface RunPipelineRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RunPipelineRequest
,RunPipelineRequest.Builder
public interface RunPipelineRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsLabels(String key)
User-defined labels to associate with the returned operation.Map<String,String>
getLabels()
Deprecated.int
getLabelsCount()
User-defined labels to associate with the returned operation.Map<String,String>
getLabelsMap()
User-defined labels to associate with the returned operation.String
getLabelsOrDefault(String key, String defaultValue)
User-defined labels to associate with the returned operation.String
getLabelsOrThrow(String key)
User-defined labels to associate with the returned operation.String
getParent()
The project and location that this request should be executed against.com.google.protobuf.ByteString
getParentBytes()
The project and location that this request should be executed against.Pipeline
getPipeline()
Required.PipelineOrBuilder
getPipelineOrBuilder()
Required.String
getPubSubTopic()
The name of an existing Pub/Sub topic.com.google.protobuf.ByteString
getPubSubTopicBytes()
The name of an existing Pub/Sub topic.boolean
hasPipeline()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
The project and location that this request should be executed against.
string parent = 4;
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
The project and location that this request should be executed against.
string parent = 4;
- Returns:
- The bytes for parent.
-
hasPipeline
boolean hasPipeline()
Required. The description of the pipeline to run.
.google.cloud.lifesciences.v2beta.Pipeline pipeline = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the pipeline field is set.
-
getPipeline
Pipeline getPipeline()
Required. The description of the pipeline to run.
.google.cloud.lifesciences.v2beta.Pipeline pipeline = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The pipeline.
-
getPipelineOrBuilder
PipelineOrBuilder getPipelineOrBuilder()
Required. The description of the pipeline to run.
.google.cloud.lifesciences.v2beta.Pipeline pipeline = 1 [(.google.api.field_behavior) = REQUIRED];
-
getLabelsCount
int getLabelsCount()
User-defined labels to associate with the returned operation. These labels are not propagated to any Google Cloud Platform resources used by the operation, and can be modified at any time. To associate labels with resources created while executing the operation, see the appropriate resource message (for example, `VirtualMachine`).
map<string, string> labels = 2;
-
containsLabels
boolean containsLabels(String key)
User-defined labels to associate with the returned operation. These labels are not propagated to any Google Cloud Platform resources used by the operation, and can be modified at any time. To associate labels with resources created while executing the operation, see the appropriate resource message (for example, `VirtualMachine`).
map<string, string> labels = 2;
-
getLabels
@Deprecated Map<String,String> getLabels()
Deprecated.UsegetLabelsMap()
instead.
-
getLabelsMap
Map<String,String> getLabelsMap()
User-defined labels to associate with the returned operation. These labels are not propagated to any Google Cloud Platform resources used by the operation, and can be modified at any time. To associate labels with resources created while executing the operation, see the appropriate resource message (for example, `VirtualMachine`).
map<string, string> labels = 2;
-
getLabelsOrDefault
String getLabelsOrDefault(String key, String defaultValue)
User-defined labels to associate with the returned operation. These labels are not propagated to any Google Cloud Platform resources used by the operation, and can be modified at any time. To associate labels with resources created while executing the operation, see the appropriate resource message (for example, `VirtualMachine`).
map<string, string> labels = 2;
-
getLabelsOrThrow
String getLabelsOrThrow(String key)
User-defined labels to associate with the returned operation. These labels are not propagated to any Google Cloud Platform resources used by the operation, and can be modified at any time. To associate labels with resources created while executing the operation, see the appropriate resource message (for example, `VirtualMachine`).
map<string, string> labels = 2;
-
getPubSubTopic
String getPubSubTopic()
The name of an existing Pub/Sub topic. The server will publish messages to this topic whenever the status of the operation changes. The Life Sciences Service Agent account must have publisher permissions to the specified topic or notifications will not be sent.
string pub_sub_topic = 3;
- Returns:
- The pubSubTopic.
-
getPubSubTopicBytes
com.google.protobuf.ByteString getPubSubTopicBytes()
The name of an existing Pub/Sub topic. The server will publish messages to this topic whenever the status of the operation changes. The Life Sciences Service Agent account must have publisher permissions to the specified topic or notifications will not be sent.
string pub_sub_topic = 3;
- Returns:
- The bytes for pubSubTopic.
-
-