Package com.google.cloud.deploy.v1
Interface PredeployJobOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PredeployJob,PredeployJob.Builder
public interface PredeployJobOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetActions(int index)Output only.com.google.protobuf.ByteStringgetActionsBytes(int index)Output only.intgetActionsCount()Output only.List<String>getActionsList()Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getActionsList
List<String> getActionsList()
Output only. The custom actions that the predeploy Job executes.
repeated string actions = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- A list containing the actions.
-
getActionsCount
int getActionsCount()
Output only. The custom actions that the predeploy Job executes.
repeated string actions = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The count of actions.
-
getActions
String getActions(int index)
Output only. The custom actions that the predeploy Job executes.
repeated string actions = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];- Parameters:
index- The index of the element to return.- Returns:
- The actions at the given index.
-
getActionsBytes
com.google.protobuf.ByteString getActionsBytes(int index)
Output only. The custom actions that the predeploy Job executes.
repeated string actions = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the actions at the given index.
-
-