类 Tiller.ListReleasesRequest.Builder

  • 所有已实现的接口:
    com.google.protobuf.Message.Builder, com.google.protobuf.MessageLite.Builder, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, Tiller.ListReleasesRequestOrBuilder, Cloneable
    封闭类:
    Tiller.ListReleasesRequest

    public static final class Tiller.ListReleasesRequest.Builder
    extends com.google.protobuf.GeneratedMessageV3.Builder<Tiller.ListReleasesRequest.Builder>
    implements Tiller.ListReleasesRequestOrBuilder
     ListReleasesRequest requests a list of releases.
     Releases can be retrieved in chunks by setting limit and offset.
     Releases can be sorted according to a few pre-determined sort stategies.
     
    Protobuf type hapi.services.tiller.ListReleasesRequest
    • 方法详细资料

      • getDescriptor

        public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      • internalGetFieldAccessorTable

        protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
        指定者:
        internalGetFieldAccessorTable 在类中 com.google.protobuf.GeneratedMessageV3.Builder<Tiller.ListReleasesRequest.Builder>
      • getDescriptorForType

        public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
        指定者:
        getDescriptorForType 在接口中 com.google.protobuf.Message.Builder
        指定者:
        getDescriptorForType 在接口中 com.google.protobuf.MessageOrBuilder
        覆盖:
        getDescriptorForType 在类中 com.google.protobuf.GeneratedMessageV3.Builder<Tiller.ListReleasesRequest.Builder>
      • getDefaultInstanceForType

        public Tiller.ListReleasesRequest getDefaultInstanceForType()
        指定者:
        getDefaultInstanceForType 在接口中 com.google.protobuf.MessageLiteOrBuilder
        指定者:
        getDefaultInstanceForType 在接口中 com.google.protobuf.MessageOrBuilder
      • build

        public Tiller.ListReleasesRequest build()
        指定者:
        build 在接口中 com.google.protobuf.Message.Builder
        指定者:
        build 在接口中 com.google.protobuf.MessageLite.Builder
      • buildPartial

        public Tiller.ListReleasesRequest buildPartial()
        指定者:
        buildPartial 在接口中 com.google.protobuf.Message.Builder
        指定者:
        buildPartial 在接口中 com.google.protobuf.MessageLite.Builder
      • isInitialized

        public final boolean isInitialized()
        指定者:
        isInitialized 在接口中 com.google.protobuf.MessageLiteOrBuilder
        覆盖:
        isInitialized 在类中 com.google.protobuf.GeneratedMessageV3.Builder<Tiller.ListReleasesRequest.Builder>
      • mergeFrom

        public Tiller.ListReleasesRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
                                                            com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                                     throws IOException
        指定者:
        mergeFrom 在接口中 com.google.protobuf.Message.Builder
        指定者:
        mergeFrom 在接口中 com.google.protobuf.MessageLite.Builder
        覆盖:
        mergeFrom 在类中 com.google.protobuf.AbstractMessage.Builder<Tiller.ListReleasesRequest.Builder>
        抛出:
        IOException
      • getOffset

        public String getOffset()
         Offset is the last release name that was seen. The next listing
         operation will start with the name after this one.
         Example: If list one returns albert, bernie, carl, and sets 'next: dennis'.
         dennis is the offset. Supplying 'dennis' for the next request should
         cause the next batch to return a set of results starting with 'dennis'.
         
        string offset = 2;
        指定者:
        getOffset 在接口中 Tiller.ListReleasesRequestOrBuilder
      • getOffsetBytes

        public com.google.protobuf.ByteString getOffsetBytes()
         Offset is the last release name that was seen. The next listing
         operation will start with the name after this one.
         Example: If list one returns albert, bernie, carl, and sets 'next: dennis'.
         dennis is the offset. Supplying 'dennis' for the next request should
         cause the next batch to return a set of results starting with 'dennis'.
         
        string offset = 2;
        指定者:
        getOffsetBytes 在接口中 Tiller.ListReleasesRequestOrBuilder
      • setOffset

        public Tiller.ListReleasesRequest.Builder setOffset​(String value)
         Offset is the last release name that was seen. The next listing
         operation will start with the name after this one.
         Example: If list one returns albert, bernie, carl, and sets 'next: dennis'.
         dennis is the offset. Supplying 'dennis' for the next request should
         cause the next batch to return a set of results starting with 'dennis'.
         
        string offset = 2;
      • clearOffset

        public Tiller.ListReleasesRequest.Builder clearOffset()
         Offset is the last release name that was seen. The next listing
         operation will start with the name after this one.
         Example: If list one returns albert, bernie, carl, and sets 'next: dennis'.
         dennis is the offset. Supplying 'dennis' for the next request should
         cause the next batch to return a set of results starting with 'dennis'.
         
        string offset = 2;
      • setOffsetBytes

        public Tiller.ListReleasesRequest.Builder setOffsetBytes​(com.google.protobuf.ByteString value)
         Offset is the last release name that was seen. The next listing
         operation will start with the name after this one.
         Example: If list one returns albert, bernie, carl, and sets 'next: dennis'.
         dennis is the offset. Supplying 'dennis' for the next request should
         cause the next batch to return a set of results starting with 'dennis'.
         
        string offset = 2;
      • getSortByValue

        public int getSortByValue()
         SortBy is the sort field that the ListReleases server should sort data before returning.
         
        .hapi.services.tiller.ListSort.SortBy sort_by = 3;
        指定者:
        getSortByValue 在接口中 Tiller.ListReleasesRequestOrBuilder
      • setSortByValue

        public Tiller.ListReleasesRequest.Builder setSortByValue​(int value)
         SortBy is the sort field that the ListReleases server should sort data before returning.
         
        .hapi.services.tiller.ListSort.SortBy sort_by = 3;
      • clearSortBy

        public Tiller.ListReleasesRequest.Builder clearSortBy()
         SortBy is the sort field that the ListReleases server should sort data before returning.
         
        .hapi.services.tiller.ListSort.SortBy sort_by = 3;
      • getFilter

        public String getFilter()
         Filter is a regular expression used to filter which releases should be listed.
         Anything that matches the regexp will be included in the results.
         
        string filter = 4;
        指定者:
        getFilter 在接口中 Tiller.ListReleasesRequestOrBuilder
      • getFilterBytes

        public com.google.protobuf.ByteString getFilterBytes()
         Filter is a regular expression used to filter which releases should be listed.
         Anything that matches the regexp will be included in the results.
         
        string filter = 4;
        指定者:
        getFilterBytes 在接口中 Tiller.ListReleasesRequestOrBuilder
      • setFilter

        public Tiller.ListReleasesRequest.Builder setFilter​(String value)
         Filter is a regular expression used to filter which releases should be listed.
         Anything that matches the regexp will be included in the results.
         
        string filter = 4;
      • clearFilter

        public Tiller.ListReleasesRequest.Builder clearFilter()
         Filter is a regular expression used to filter which releases should be listed.
         Anything that matches the regexp will be included in the results.
         
        string filter = 4;
      • setFilterBytes

        public Tiller.ListReleasesRequest.Builder setFilterBytes​(com.google.protobuf.ByteString value)
         Filter is a regular expression used to filter which releases should be listed.
         Anything that matches the regexp will be included in the results.
         
        string filter = 4;
      • setSortOrderValue

        public Tiller.ListReleasesRequest.Builder setSortOrderValue​(int value)
         SortOrder is the ordering directive used for sorting.
         
        .hapi.services.tiller.ListSort.SortOrder sort_order = 5;
      • clearSortOrder

        public Tiller.ListReleasesRequest.Builder clearSortOrder()
         SortOrder is the ordering directive used for sorting.
         
        .hapi.services.tiller.ListSort.SortOrder sort_order = 5;
      • clearNamespace

        public Tiller.ListReleasesRequest.Builder clearNamespace()
         Namespace is the filter to select releases only from a specific namespace.
         
        string namespace = 7;
      • setNamespaceBytes

        public Tiller.ListReleasesRequest.Builder setNamespaceBytes​(com.google.protobuf.ByteString value)
         Namespace is the filter to select releases only from a specific namespace.
         
        string namespace = 7;
      • mergeUnknownFields

        public final Tiller.ListReleasesRequest.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
        指定者:
        mergeUnknownFields 在接口中 com.google.protobuf.Message.Builder
        覆盖:
        mergeUnknownFields 在类中 com.google.protobuf.GeneratedMessageV3.Builder<Tiller.ListReleasesRequest.Builder>