FW+LBリソース状態一覧取得
API情報
API種別 | メソッド | URI | 対象 | 名称 | 実行 |
---|---|---|---|---|---|
設定 | GET | /:GisServiceCode/fw-lbs.json?Item=ResourceStatus&StartIndex=N&Count=M | FW+LB | FW+LBリソース状態一覧取得 | 同期 |
- 指定したP2契約GisServiceCodeに所属するFW+LBのステータス一覧を取得します
リクエストパラメータ
パラメータ | 必須 | 意味 | 値 | |
---|---|---|---|---|
URL | GisServiceCode | ○ | P2契約のサービスコード | gis######## |
クエリストリング | Item | ○ | 取得するフィールド | "ResourceStatus" |
StartIndex | StartIndexだけスキップした位置から情報を取得する | 数値 | ||
Count | 取得する情報の最大数 | 数値 |
レスポンス
フィールド | タイプ | 意味 | 値 |
---|---|---|---|
FwLbList.ServiceCode | String | FW+LB 専有タイプのサービスコード | ifl######## |
FwLbList.ResourceStatus | String | FW+LB 専有タイプステータス | |
FwLbList.HostList.Master | String | マスターならばYes, スレーブならばNo | "Yes" "No" |
FwLbList.HostList.ResourceStatus | String | FW+LB 専有タイプステータス |
制限
- 特になし
サンプル
リクエストボディ
無し
レスポンス (JSON)
{ "RequestId": "xxxxxxxx-xxxxxxxx-xxxxxxxx-xxxxxxxx-xxxxxxxx", "FwLbList": [ { "ServiceCode": "ifl#######1", "ResourceStatus": "Configured", "HostList": [ { "Master": "Yes", "ResourceStatus": "Running" } ] }, { "ServiceCode": "ifl#######2", "ResourceStatus": "Configured", "HostList": [ { "Master": "Yes", "ResourceStatus": "Running" }, { "Master": "No", "ResourceStatus": "Running" } ] }, { "ServiceCode": "ifl#######3", "ResourceStatus": "Initialized", "HostList": [ { "Master": "Yes", "ResourceStatus": "Running" } ] } ] }