Class MilvusServiceClientProperties

java.lang.Object
org.springframework.ai.autoconfigure.vectorstore.milvus.MilvusServiceClientProperties

@ConfigurationProperties("spring.ai.vectorstore.milvus.client") public class MilvusServiceClientProperties extends Object
Parameters for Milvus client connection.
Author:
Christian Tzolov
  • Field Details

    • CONFIG_PREFIX

      public static final String CONFIG_PREFIX
      See Also:
    • secure

      protected boolean secure
      Secure the authorization for this connection, set to True to enable TLS.
  • Constructor Details

    • MilvusServiceClientProperties

      public MilvusServiceClientProperties()
  • Method Details

    • getHost

      public String getHost()
    • setHost

      public void setHost(String host)
    • getPort

      public int getPort()
    • setPort

      public void setPort(int port)
    • getUri

      public String getUri()
    • setUri

      public void setUri(String uri)
    • getToken

      public String getToken()
    • setToken

      public void setToken(String token)
    • getConnectTimeoutMs

      public long getConnectTimeoutMs()
    • setConnectTimeoutMs

      public void setConnectTimeoutMs(long connectTimeoutMs)
    • getKeepAliveTimeMs

      public long getKeepAliveTimeMs()
    • setKeepAliveTimeMs

      public void setKeepAliveTimeMs(long keepAliveTimeMs)
    • getKeepAliveTimeoutMs

      public long getKeepAliveTimeoutMs()
    • setKeepAliveTimeoutMs

      public void setKeepAliveTimeoutMs(long keepAliveTimeoutMs)
    • getRpcDeadlineMs

      public long getRpcDeadlineMs()
    • setRpcDeadlineMs

      public void setRpcDeadlineMs(long rpcDeadlineMs)
    • getClientKeyPath

      public String getClientKeyPath()
    • setClientKeyPath

      public void setClientKeyPath(String clientKeyPath)
    • getClientPemPath

      public String getClientPemPath()
    • setClientPemPath

      public void setClientPemPath(String clientPemPath)
    • getCaPemPath

      public String getCaPemPath()
    • setCaPemPath

      public void setCaPemPath(String caPemPath)
    • getServerPemPath

      public String getServerPemPath()
    • setServerPemPath

      public void setServerPemPath(String serverPemPath)
    • getServerName

      public String getServerName()
    • setServerName

      public void setServerName(String serverName)
    • isSecure

      public boolean isSecure()
    • setSecure

      public void setSecure(boolean secure)
    • getIdleTimeoutMs

      public long getIdleTimeoutMs()
    • setIdleTimeoutMs

      public void setIdleTimeoutMs(long idleTimeoutMs)
    • getUsername

      public String getUsername()
    • setUsername

      public void setUsername(String username)
    • getPassword

      public String getPassword()
    • setPassword

      public void setPassword(String password)