Package com.google.cloud.deploy.v1
Interface TargetsPresentConditionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TargetsPresentCondition
,TargetsPresentCondition.Builder
public interface TargetsPresentConditionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getMissingTargets(int index)
The list of Target names that do not exist.com.google.protobuf.ByteString
getMissingTargetsBytes(int index)
The list of Target names that do not exist.int
getMissingTargetsCount()
The list of Target names that do not exist.List<String>
getMissingTargetsList()
The list of Target names that do not exist.boolean
getStatus()
True if there aren't any missing Targets.com.google.protobuf.Timestamp
getUpdateTime()
Last time the condition was updated.com.google.protobuf.TimestampOrBuilder
getUpdateTimeOrBuilder()
Last time the condition was updated.boolean
hasUpdateTime()
Last time the condition was updated.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStatus
boolean getStatus()
True if there aren't any missing Targets.
bool status = 1;
- Returns:
- The status.
-
getMissingTargetsList
List<String> getMissingTargetsList()
The list of Target names that do not exist. For example, projects/{project_id}/locations/{location_name}/targets/{target_name}.
repeated string missing_targets = 2 [(.google.api.resource_reference) = { ... }
- Returns:
- A list containing the missingTargets.
-
getMissingTargetsCount
int getMissingTargetsCount()
The list of Target names that do not exist. For example, projects/{project_id}/locations/{location_name}/targets/{target_name}.
repeated string missing_targets = 2 [(.google.api.resource_reference) = { ... }
- Returns:
- The count of missingTargets.
-
getMissingTargets
String getMissingTargets(int index)
The list of Target names that do not exist. For example, projects/{project_id}/locations/{location_name}/targets/{target_name}.
repeated string missing_targets = 2 [(.google.api.resource_reference) = { ... }
- Parameters:
index
- The index of the element to return.- Returns:
- The missingTargets at the given index.
-
getMissingTargetsBytes
com.google.protobuf.ByteString getMissingTargetsBytes(int index)
The list of Target names that do not exist. For example, projects/{project_id}/locations/{location_name}/targets/{target_name}.
repeated string missing_targets = 2 [(.google.api.resource_reference) = { ... }
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the missingTargets at the given index.
-
hasUpdateTime
boolean hasUpdateTime()
Last time the condition was updated.
.google.protobuf.Timestamp update_time = 4;
- Returns:
- Whether the updateTime field is set.
-
getUpdateTime
com.google.protobuf.Timestamp getUpdateTime()
Last time the condition was updated.
.google.protobuf.Timestamp update_time = 4;
- Returns:
- The updateTime.
-
getUpdateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder()
Last time the condition was updated.
.google.protobuf.Timestamp update_time = 4;
-
-