操作组件端口
本篇主要是对组件端口的 openAPI 接口介绍,包含 获取组件端口列表、更新组件端口配置(开启对内、对外端口)、添加端口、删除端口。
获取组件端口
基本信息
请求路径
GET /openapi/v1/teams/{team_id}/regions/{region_name}/apps/{app_id}/services/{service_id}/ports
请求参数
名称 | 位置 | 类型 | 必选 | 中文名 | 说明 |
---|---|---|---|---|---|
app_id | path | integer | 是 | 应用id | |
service_id | path | string | 是 | 应用id | |
team_id | path | string | 是 | 团队id | |
region_name | path | string | 是 | 集群名称 |
返回结果
状态码 | 状态码含义 | 说明 | 数据模型 |
---|---|---|---|
200 | OK | 成功 | 返回模型 |
返回模型
{
"container_port": "int",
"protocol": "string",
"port_alias": "string",
"is_inner_service": "bool",
"is_outer_service": "bool",
"k8s_service_name": "string"
}
属性
名称 | 类型 | 必选 | 约束 | 中文名 | 说明 |
---|---|---|---|---|---|
container_port | int | true | none | ContainerPort | 端口号 |
protocol | string | true | none | Protocol | 端口协议 |
port_alias | string | true | none | Port Alias | 端口别名 |
is_inner_service | boolean | true | none | IS Inner Service | 是否开启对内服务 |
is_outer_service | boolean | true | none | IS Outer Service | 是否开启对外服务 |
k8s_service_name | string | true | none | K8S Service Name | 集群中 service 名称 |
添加组件端口
基本信息
请求路径
POST /openapi/v1/teams/{team_id}/regions/{region_name}/apps/{app_id}/services/{service_id}/ports
Body 请求体示例
{
"port": "80",
"port_alias": "NGINX_PORT",
"protocol": "tcp",
"is_inner_service": True,
}
请求参数
名称 | 位置 | 类型 | 必选 | 中文名 | 说明 |
---|---|---|---|---|---|
app_id | path | integer | 是 | 应用id | |
service_id | path | string | 是 | 应用id | |
team_id | path | string | 是 | 团队id | |
region_name | path | string | 是 | 集群名称 | |
body | body | 请求模型 | 否 | none |