Files
cloudpods/docs/elasticip/elasticip.yaml
2019-07-24 16:10:06 +08:00

39 lines
910 B
YAML

get:
summary: 获取指定弹性IP详情信息
parameters:
- $ref: "../parameters/elasticip.yaml#/elasticipId"
responses:
200:
description: 弹性IP详情信息
schema:
$ref: "../schemas/elasticip.yaml#/ElasticIpResponse"
tags:
- elasticips
delete:
summary: 删除指定弹性IP
parameters:
- $ref: '../parameters/elasticip.yaml#/elasticipId'
responses:
200:
schema:
$ref: '../schemas/elasticip.yaml#/ElasticIpResponse'
tags:
- elasticips
put:
summary: 更新弹性IP信息
parameters:
- $ref: '../parameters/elasticip.yaml#/elasticipId'
- in: body
name: elasticip
required: true
schema:
$ref: '../schemas/elasticip.yaml#/ElasticIpUpdate'
responses:
200:
description: 弹性IP信息
schema:
$ref: '../schemas/elasticip.yaml#/ElasticIpResponse'
tags:
- elasticips