사용량 제한 변경
- 인쇄
- PDF
사용량 제한 변경
- 인쇄
- PDF
기사 요약
이 요약이 도움이 되었나요?
의견을 보내 주셔서 감사합니다.
아래 항목에 대해 도메인에 사용량 제한을 설정할 수 있습니다.
- document_upload : 업로드 문서 크기 / uploaded documnet byte
- reindex : 재색인(섹션, 색인 추가 시 발생) 문서 크기 / reindexed document byte
- autocomplete_reindex : 자동완성 적용된 문서의 수 / reindexed document count for autocomplete
- search_response : Search Query 네트워크 사용량 / response size of searching, unit is byte
PUT https://cloudsearch.apigw.ntruss.com/CloudSearch/real/v1/domain/{name}/quota/{type}
요청
요청 파라미터
파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 |
---|---|---|---|---|
name | Yes | string | 생성되어져 있는 Domain 이름 | |
type | Yes | string | 사용량을 제한할 항목 | search_response, document_upload, reindex, autocomplete_reindex |
요청 바디
파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 |
---|---|---|---|---|
interval | Yes | string | 1Month, 1Day | 사용량 초기화 주기 |
quota | Yes | number | 0으로 설정할 경우, 사용량 제한이 해제됩니다. | 제한 사용량 |
응답
응답 Status
HTTP Status | Desc |
---|---|
200 | OK(설정 완료) |
400 | Bad Request |
401 | Unauthorized |
403 | Forbidden |
404 | Not Found |
500 | Internal Server Error |
예시
요청 예시
PUT /CloudSearch/beta/v1/domain/my_service/quota/search_response HTTP/1.1
Host: cloudsearch.apigw.ntruss.com
Content-Type: application/json
x-ncp-iam-access-key: cPMl0CYGgRYvEa8sylCj
x-ncp-apigw-signature-v2: +Ln++MqcKHckKli2y/bB76xLUu8qR9rLvo6j2yIYuYg=
x-ncp-apigw-timestamp: 1551453306138
{
"interval": "1Month",
"quota": 10000000000
}
응답 예시
{"result":"ok"}
이 문서가 도움이 되었습니까?