Files
pyGoEdge-UserPanel/reference/goedge 文档/DNSService.md
2025-11-18 03:36:49 +08:00

41 lines
664 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# DNSService
> 域名解析服务
---
## findAllDNSIssues
> 查找问题
- 角色:`admin`
- HTTP`POST https://backend.dooki.cloud/DNSService/findAllDNSIssues`
- RPC`rpc findAllDNSIssues (FindAllDNSIssuesRequest) returns (FindAllDNSIssuesResponse);`
**请求对象 (`FindAllDNSIssuesRequest`)**
```json
{
"nodeClusterId": "int64 // 集群ID"
}
```
**响应对象 (`FindAllDNSIssuesResponse`)**
```json
{
"issues": "[]DNSIssue"
}
```
**调用示例**
```bash
curl -X POST "https://backend.dooki.cloud/DNSService/findAllDNSIssues" \
-H "Content-Type: application/json" \
-H "X-Edge-Access-Token: <YOUR_TOKEN>" \
-d '{
...
}'
```
---