getNasVolumeSnapshotList
- Print
- PDF
getNasVolumeSnapshotList
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Can be used in a Classic environment.
Overview
Searches the snapshot list of a NAS volume instance.
Request
Request parameter
Parameter name | Requirement status | Type | Restrictions | Description |
---|---|---|---|---|
nasVolumeInstanceNo | Yes | String | - NAS volume instance number to search the snapshot list for nasVolumeInstanceNo: It can be obtained through the getNasVolumeInstanceList action. |
Response
Response data type
- NasVolumeSnapshotList type
NasVolumeSnapshotList extends CommonResponse |
---|
private Integer totalRows; |
private List<NasVolumeSnapshot> nasVolumeSnapshotList = new ArrayList<>(); |
NasVolumeSnapshot |
---|
private String nasVolumeSnapshotName; |
private Date createDate; |
private Long snapshotSize; |
private Boolean isBusy; |
Examples
Request examples
ncloud server getNasVolumeSnapshotList --nasVolumeInstanceNo ***3901
Response examples
<getNasVolumeSnapshotListResponse>
<requestId></requestId>
<returnCode>0</returnCode>
<returnMessage>success</returnMessage>
<totalRows>1</totalRows>
<nasVolumeSnapshotList>
<nasVolumeSnapshot>
<nasVolumeSnapshotName>now.20210916.000000</nasVolumeSnapshotName>
<createDate>2021-09-16T00:00:00+0900</createDate>
<snapshotSize>139264</snapshotSize>
<isBusy>false</isBusy>
</nasVolumeSnapshot>
</nasVolumeSnapshotList>
</getNasVolumeSnapshotListResponse>
Was this article helpful?