async getHealth()

in packages/enterprise-search/src/api/enterprise/api.ts [35:40]


  async getHealth (this: That, params?: T.GetHealthRequest, options?: TransportRequestOptions): Promise<T.GetHealthResponse> {
    return await this.transport.request<T.GetHealthResponse>({
      method: 'GET',
      path: '/api/ent/v1/internal/health'
    }, options)
  }