ポート一覧取得
Description
ポートの一覧を取得します。
Request URL
Network API GET /v2.0/ports
Request Json
This operation does not accept a request body.
Request Parameters
Parameter | Value | Style | Description |
---|---|---|---|
X-Auth-Token | トークン | header | トークンの情報を指定します。トークンの発行方法は、トークン発行 にてご確認ください。 |
Response Code
Success
200
Example
Request
curl -X GET \
-H "Accept: application/json" \
-H "X-Auth-Token: トークン" \
https://networking.c3j1.conoha.io/v2.0/ports
Response
{
"ports": [
{
"id": "ポートID",
"name": "ポート名",
"network_id": "ネットワークID",
"tenant_id": "テナントID",
"mac_address": "**:**:**:**:**:**",
"admin_state_up": true,
"status": "ACTIVE",
"device_id": "8d9d4a0c-4d69-4315-908e-bfaf28e73803",
"device_owner": "compute:cell1-az1",
"fixed_ips": [
{
"subnet_id": "サブネットID",
"ip_address": "XXX.XXX.XXX.XXX"
},
{
"subnet_id": "サブネットID",
"ip_address": "****:****:****:****:***:***:***:***"
}
],
"project_id": "テナントID",
"security_groups": [
"セキュリティグループID"
],
"allowed_address_pairs": [
{
"mac_address": "**:**:**:**:**:**",
"ip_address": "****:****:****:****:***:***:***:***/124"
}
],
"extra_dhcp_opts": [],
"binding:vnic_type": "normal"
}
]
}
ConoHaにて提供しておりますAPIにつきましては、クラウド基盤として採用しておりますOpenStackの機能にて実装しておりますので、詳細な情報や使い方はOpenStackのドキュメントにてご確認ください。