async putCrawlerEntryPoint()

in packages/enterprise-search/src/api/app/api.ts [428:442]


  async putCrawlerEntryPoint (this: That, params: T.PutCrawlerEntryPointRequest, options?: TransportRequestOptions): Promise<T.PutCrawlerEntryPointResponse> {
    const {
      engine_name,
      domain_id,
      entry_point_id,
      body,
      ...querystring
    } = params ?? {}
    return await this.transport.request<T.PutCrawlerEntryPointResponse>({
      method: 'PUT',
      path: `/api/as/v1/engines/${engine_name}/crawler/domains/${domain_id}/entry_points/${entry_point_id}`,
      querystring,
      body: body
    }, options)
  }