Package com.google.cloud.deploy.v1
Interface PostdeployJobOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PostdeployJob
,PostdeployJob.Builder
public interface PostdeployJobOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getActions(int index)
Output only.com.google.protobuf.ByteString
getActionsBytes(int index)
Output only.int
getActionsCount()
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 postdeploy 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 postdeploy 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 postdeploy 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 postdeploy 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.
-
-