Files
cloudpods/docs/identity/endpoint.yaml
2019-06-29 15:22:39 +08:00

41 lines
964 B
YAML

get:
summary: 获得指定接入点的详情
parameters:
- $ref: '../parameters/endpoint.yaml#/endpoint_id'
responses:
200:
description: 接入点信息
schema:
$ref: "../schemas/endpoint.yaml#/EndpointGetResponse"
tags:
- endpoints
put:
summary: 更新指定接入点的属性
parameters:
- $ref: '../parameters/endpoint.yaml#/endpoint_id'
- name: endpoint
in: body
required: true
schema:
$ref: "../schemas/endpoint.yaml#/EndpointPutRequestInput"
responses:
200:
description: 接入点信息
schema:
$ref: "../schemas/endpoint.yaml#/EndpointGetResponse"
tags:
- endpoints
delete:
summary: 删除指定接入点
parameters:
- $ref: '../parameters/endpoint.yaml#/endpoint_id'
responses:
200:
description: 被删除的接入点信息
schema:
$ref: "../schemas/endpoint.yaml#/EndpointGetResponse"
tags:
- endpoints