Interface TaskQueueVersionSelectionOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    TaskQueueVersionSelection, TaskQueueVersionSelection.Builder

    @Generated(value="protoc",
               comments="annotations:TaskQueueVersionSelectionOrBuilder.java.pb.meta")
    public interface TaskQueueVersionSelectionOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getAllActive()
      Include all active versions.
      java.lang.String getBuildIds​(int index)
      Include specific Build IDs.
      com.google.protobuf.ByteString getBuildIdsBytes​(int index)
      Include specific Build IDs.
      int getBuildIdsCount()
      Include specific Build IDs.
      java.util.List<java.lang.String> getBuildIdsList()
      Include specific Build IDs.
      boolean getUnversioned()
      Include the unversioned queue.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getBuildIdsList

        java.util.List<java.lang.String> getBuildIdsList()
         Include specific Build IDs.
         
        repeated string build_ids = 1;
        Returns:
        A list containing the buildIds.
      • getBuildIdsCount

        int getBuildIdsCount()
         Include specific Build IDs.
         
        repeated string build_ids = 1;
        Returns:
        The count of buildIds.
      • getBuildIds

        java.lang.String getBuildIds​(int index)
         Include specific Build IDs.
         
        repeated string build_ids = 1;
        Parameters:
        index - The index of the element to return.
        Returns:
        The buildIds at the given index.
      • getBuildIdsBytes

        com.google.protobuf.ByteString getBuildIdsBytes​(int index)
         Include specific Build IDs.
         
        repeated string build_ids = 1;
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the buildIds at the given index.
      • getUnversioned

        boolean getUnversioned()
         Include the unversioned queue.
         
        bool unversioned = 2;
        Returns:
        The unversioned.
      • getAllActive

        boolean getAllActive()
         Include all active versions. A version is considered active if, in the last few minutes,
         it has had new tasks or polls, or it has been the subject of certain task queue API calls.
         
        bool all_active = 3;
        Returns:
        The allActive.