Interface StoreProto.Store.SubscriptionOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getExclude()
      All matches with exclude enabled will be filtered out instead of added
      String getName()
      Name of the desired feature set.
      com.google.protobuf.ByteString getNameBytes()
      Name of the desired feature set.
      String getProject()
      Name of project that the feature sets belongs to.
      com.google.protobuf.ByteString getProjectBytes()
      Name of project that the feature sets belongs to.
      • 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

      • getProject

        String getProject()
         Name of project that the feature sets belongs to. This can be one of
         - [project_name]
         - *
         If an asterisk is provided, filtering on projects will be disabled. All projects will
         be matched. It is NOT possible to provide an asterisk with a string in order to do
         pattern matching.
         
        string project = 3;
        Returns:
        The project.
      • getProjectBytes

        com.google.protobuf.ByteString getProjectBytes()
         Name of project that the feature sets belongs to. This can be one of
         - [project_name]
         - *
         If an asterisk is provided, filtering on projects will be disabled. All projects will
         be matched. It is NOT possible to provide an asterisk with a string in order to do
         pattern matching.
         
        string project = 3;
        Returns:
        The bytes for project.
      • getName

        String getName()
         Name of the desired feature set. Asterisks can be used as wildcards in the name.
         Matching on names is only permitted if a specific project is defined. It is disallowed
         If the project name is set to "*"
         e.g.
         - * can be used to match all feature sets
         - my-feature-set* can be used to match all features prefixed by "my-feature-set"
         - my-feature-set-6 can be used to select a single feature set
         
        string name = 1;
        Returns:
        The name.
      • getNameBytes

        com.google.protobuf.ByteString getNameBytes()
         Name of the desired feature set. Asterisks can be used as wildcards in the name.
         Matching on names is only permitted if a specific project is defined. It is disallowed
         If the project name is set to "*"
         e.g.
         - * can be used to match all feature sets
         - my-feature-set* can be used to match all features prefixed by "my-feature-set"
         - my-feature-set-6 can be used to select a single feature set
         
        string name = 1;
        Returns:
        The bytes for name.
      • getExclude

        boolean getExclude()
         All matches with exclude enabled will be filtered out instead of added
         
        bool exclude = 4;
        Returns:
        The exclude.