Package com.google.cloud.deploy.v1
Interface MultiTargetOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MultiTarget
,MultiTarget.Builder
public interface MultiTargetOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getTargetIds(int index)
Required.com.google.protobuf.ByteString
getTargetIdsBytes(int index)
Required.int
getTargetIdsCount()
Required.List<String>
getTargetIdsList()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTargetIdsList
List<String> getTargetIdsList()
Required. The target_ids of this multiTarget.
repeated string target_ids = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- A list containing the targetIds.
-
getTargetIdsCount
int getTargetIdsCount()
Required. The target_ids of this multiTarget.
repeated string target_ids = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The count of targetIds.
-
getTargetIds
String getTargetIds(int index)
Required. The target_ids of this multiTarget.
repeated string target_ids = 1 [(.google.api.field_behavior) = REQUIRED];
- Parameters:
index
- The index of the element to return.- Returns:
- The targetIds at the given index.
-
getTargetIdsBytes
com.google.protobuf.ByteString getTargetIdsBytes(int index)
Required. The target_ids of this multiTarget.
repeated string target_ids = 1 [(.google.api.field_behavior) = REQUIRED];
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the targetIds at the given index.
-
-