システムストレージリソース状態一覧取得

API情報
API種別メソッドURI対象名称実行
契約GET/:GisServiceCode/system-storages.json?Item=ResourceStatus&StartIndex=N&Count=Mシステムストレージシステムストレージリソース状態一覧取得同期
  • 指定したGisServiceCodeに所属するシステムストレージのステータス一覧を取得します


リクエストパラメータ

パラメータ必須意味
URLGisServiceCodeP2契約のサービスコードgis########
クエリストリングItem取得するフィールド"ResourceStatus"
 StartIndex StartIndexだけスキップした位置から情報を取得する数値
 Count 取得する情報の最大数数値
レスポンス
フィールドタイプ意味
SystemStorageListArray オブジェクトの配列
SystemStorageList.ServiceCodeStringシステムストレージのサービスコードiba########, ica########
SystemStorageList.ResourceStatusStringストレージステータス 
エラーコード
  • このAPIに関する個別エラーはありません。
  • 共通エラーコードはエラーレスポンスを参照して下さい


制限
  • 特になし


サンプル

リクエストボディ

無し

レスポンス (JSON)

{
    "RequestId": "xxxxxxxx-xxxxxxxx-xxxxxxxx-xxxxxxxx-xxxxxxxx",
    "SystemStorageList": [
        {
            "ServiceCode": "iba#######1",
            "ResourceStatus": "NotAttached"
        },
        {
            "ServiceCode": "iba#######2",
            "ResourceStatus": "NotAttached"
        },
        {
            "ServiceCode": "iba#######3",
            "ResourceStatus": "NotAttached"
        }
    ]
}