mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-05-20 09:30:42 +08:00
41 lines
964 B
YAML
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
|