グローバルIPアドレス情報一覧取得
API情報
| API種別 | メソッド | URI | 対象 | 名称 | 実行 |
|---|---|---|---|---|---|
| 設定 | GET | /:GisServiceCode/virtual-servers/:IvmServiceCode/global-ipaddresses.json | 仮想サーバ | グローバルIPアドレス情報一覧取得 | 同期 |
- 指定した仮想サーバIvmServiceCodeに割り当てられたグローバルIPアドレスの一覧を取得します
リクエストパラメータ
| パラメータ | 必須 | 意味 | 値 | |
|---|---|---|---|---|
| URL | GisServiceCode | ○ | P2契約のサービスコード | gis######## |
| IvmServiceCode | ○ | 仮想サーバのサービスコード | ivm######## |
レスポンス
| フィールド | タイプ | 意味 | 値 |
|---|---|---|---|
| IpAddressList | Array | IPアドレス情報 | オブジェクトの配列 |
| IPv4.IpAddress | String | 割り当てられたIPv4アドレス | IPv4アドレス |
| IPv4.Type | String | アドレス管理 | "Managed" |
| IPv4.DomainName | String | 逆引きドメイン名 | 文字列 |
| IPv6.IpAddress | String | 割り当てられたIPv6アドレス | IPv6アドレス |
| IPv6.Type | String | アドレス管理 | "Managed" |
制限
- 特になし
サンプル
リクエストボディ
無し
レスポンス (JSON)
{ |
"RequestId": "xxxxxxxx-xxxxxxxx-xxxxxxxx-xxxxxxxx-xxxxxxxx", |
"IpAddressList": [ |
{ |
"IPv4": { |
"IpAddress": "203.0.113.11", |
"Type": "Managed", |
"DomainName": "11.113.0.203.rev.iijgio.jp" |
}, |
"IPv6": { |
"IpAddress": "2001:0db8:0000:0000:0000:0000:0000:000b", |
"Type": "Unmanaged" |
} |
}, |
{ |
"IPv4": { |
"IpAddress": "203.0.113.12", |
"Type": "Unmanaged", |
"DomainName": "12.113.0.203.rev.iijgio.jp" |
}, |
"IPv6": { |
"IpAddress": "2001:0db8:0000:0000:0000:0000:0000:000c", |
"Type": "Unmanaged" |
} |
} |
] |
} |