Package io.dapr.v1

Interface DaprProtos.GetConfigurationRequestOrBuilder

    • Method Detail

      • getStoreName

        String getStoreName()
         Required. The name of configuration store.
         
        string store_name = 1;
        Returns:
        The storeName.
      • getStoreNameBytes

        com.google.protobuf.ByteString getStoreNameBytes()
         Required. The name of configuration store.
         
        string store_name = 1;
        Returns:
        The bytes for storeName.
      • getKeysList

        List<String> getKeysList()
         Optional. The key of the configuration item to fetch.
         If set, only query for the specified configuration items.
         Empty list means fetch all.
         
        repeated string keys = 2;
        Returns:
        A list containing the keys.
      • getKeysCount

        int getKeysCount()
         Optional. The key of the configuration item to fetch.
         If set, only query for the specified configuration items.
         Empty list means fetch all.
         
        repeated string keys = 2;
        Returns:
        The count of keys.
      • getKeys

        String getKeys​(int index)
         Optional. The key of the configuration item to fetch.
         If set, only query for the specified configuration items.
         Empty list means fetch all.
         
        repeated string keys = 2;
        Parameters:
        index - The index of the element to return.
        Returns:
        The keys at the given index.
      • getKeysBytes

        com.google.protobuf.ByteString getKeysBytes​(int index)
         Optional. The key of the configuration item to fetch.
         If set, only query for the specified configuration items.
         Empty list means fetch all.
         
        repeated string keys = 2;
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the keys at the given index.
      • getMetadataCount

        int getMetadataCount()
         Optional. The metadata which will be sent to configuration store components.
         
        map<string, string> metadata = 3;
      • containsMetadata

        boolean containsMetadata​(String key)
         Optional. The metadata which will be sent to configuration store components.
         
        map<string, string> metadata = 3;
      • getMetadataMap

        Map<String,​String> getMetadataMap()
         Optional. The metadata which will be sent to configuration store components.
         
        map<string, string> metadata = 3;
      • getMetadataOrDefault

        String getMetadataOrDefault​(String key,
                                    String defaultValue)
         Optional. The metadata which will be sent to configuration store components.
         
        map<string, string> metadata = 3;
      • getMetadataOrThrow

        String getMetadataOrThrow​(String key)
         Optional. The metadata which will be sent to configuration store components.
         
        map<string, string> metadata = 3;