mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-06-23 10:03:53 +08:00
39 lines
910 B
YAML
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 |