---
title: "getNasVolumeSnapshotConfigurationHistoryList"
slug: "cli-vnas-snapshot-getnasvolumesnapshotconfigurationhistorylist"
tags: ["NAS", "Snapshots"]
updated: 2026-04-23T09:05:01Z
published: 2026-04-23T09:07:37Z
canonical: "cli-fin.ncloud-docs.com/cli-vnas-snapshot-getnasvolumesnapshotconfigurationhistorylist"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://cli-fin.ncloud-docs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# getNasVolumeSnapshotConfigurationHistoryList

## 개요

NAS 볼륨 인스턴스의 스냅샷 설정 이력을 조회합니다.

## 요청

### 요청 파라미터

| 파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 |
| --- | --- | --- | --- | --- |
| regionCode | No | String |  | - 리전 코드 스냅샷 설정 이력을 조회할 NAS 볼륨 인스턴스의 리전(Region) 결정 regionCode : [getRegionList](/docs/cli-vserver-server-common-getregionlist) 액션을 통해 획득 Default : getRegionList 조회 결과의 첫 번째 리전 선택 |
| nasVolumeInstanceNo | Yes | String |  | - 스냅샷 설정 이력을 조회할 NAS 볼륨 인스턴스 번호 nasVolumeInstanceNo : [getNasVolumeInstanceList](/docs/cli-vnas-volume-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 vnas getNasVolumeSnapshotConfigurationHistoryList --regionCode FKR --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>
```
