getNasVolumeSnapshotConfigurationHistoryList

Prev Next

Classic環境で利用できます。

概要

NASボリュームインスタンスのスナップショット設定履歴を照会します。

リクエスト

リクエストパラメータ

パラメータ名 必須の有無 タイプ 制約事項 説明
nasVolumeInstanceNo Yes String - スナップショット設定履歴を照会するNASボリュームインスタンス番号
nasVolumeInstanceNo:getNasVolumeInstanceListアクションを通じて取得

レスポンス

レスポンスデータのタイプ

  • NasVolumeSnapshotConfigurationHistoryListタイプ
NasVolumeSnapshotConfigurationHistoryList extends CommonResponse
private Integer totalRows;
private List<NasVolumeSnapshotConfigurationHistory> nasVolumeSnapshotConfigurationHistoryList = new ArrayList<>();
NasVolumeSnapshotConfigurationHistory
private String nasVolumeInstanceNo;
private String historySequenceNo;
private CommonCode historyType;
private String ip;
private Date registerDate;
private Float snapshotVolumeConfigurationRatio;
private CommonCode snapshotVolumeConfigPeriodType;
private CommonCode snapshotVolumeConfigDayOfWeekType;
private Integer snapshotVolumeConfigTime;

リクエスト例

ncloud server getNasVolumeSnapshotConfigurationHistoryList --nasVolumeInstanceNo **3901

レスポンス例

<getNasVolumeSnapshotConfigurationHistoryListResponse>
  <requestId></requestId>
  <returnCode>0</returnCode>
  <returnMessage>success</returnMessage>
  <totalRows>1</totalRows>
  <nasVolumeSnapshotConfigurationHistoryList>
    <nasVolumeSnapshotConfigurationHistory>
      <nasVolumeInstanceNo>***3901</nasVolumeInstanceNo>
      <historySequenceNo>***412</historySequenceNo>
      <historyType>
        <code>CREAT</code>
        <codeName>Create</codeName>
      </historyType>
      <ip>***.***.0.1</ip>
      <registerDate>2021-09-16T00:00:00+0900</registerDate>
      <snapshotVolumeConfigurationRatio>10.0</snapshotVolumeConfigurationRatio>
      <snapshotVolumeConfigPeriodType>
        <code>DAY</code>
        <codeName>everyday</codeName>
      </snapshotVolumeConfigPeriodType>
      <snapshotVolumeConfigDayOfWeekType>
        <code>-1</code>
        <codeName>Everyday</codeName>
      </snapshotVolumeConfigDayOfWeekType>
      <snapshotVolumeConfigTime>1</snapshotVolumeConfigTime>
    </nasVolumeSnapshotConfigurationHistory>
  </nasVolumeSnapshotConfigurationHistoryList>
</getNasVolumeSnapshotConfigurationHistoryListResponse>