from pmfp.utils.endpoint import EndPoint
from ..core import grpc
[文档]class DescService(EndPoint):
"""查看指定grpc的服务详情.
需要本地有`grpcurl`,可以在`https://github.com/fullstorydev/grpcurl/releases`下载安装
"""
[文档] argparse_noflag = "url"
[文档] schema = {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"required": ["url", "service"],
"properties": {
"url": {
"type": "string",
"description": "grpc的服务位置.",
},
"service": {
"type": "string",
"title": "s",
"description": "指定grpc提供的service使用.",
},
"cwd": {
"type": "string",
"description": "执行操作时的操作目录.",
"default": "."
},
"plaintext": {
"type": "boolean",
"title": "p",
"description": "是否不使用TLS加密传输.",
"default": False
},
"insecure": {
"type": "boolean",
"title": "i",
"description": "跳过服务器证书和域验证.",
"default": False
},
"cacert": {
"type": "string",
"title": "a",
"description": "根证书位置."
},
"cert": {
"type": "string",
"title": "e",
"description": "服务证书位置."
},
"key": {
"type": "string",
"title": "k",
"description": "服务证书对应的私钥位置."
},
}
}
[文档]grpc_descservice = grpc.regist_sub(DescService)