github.com/NaverCloudPlatform/ncloud-sdk-go-v2@v1.6.13/services/vserver/block_storage_snapshot_instance.go (about) 1 /* 2 * vserver 3 * 4 * VPC Compute 관련 API<br/>https://ncloud.apigw.ntruss.com/vserver/v2 5 * 6 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) 7 */ 8 9 package vserver 10 11 type BlockStorageSnapshotInstance struct { 12 13 // 블록스토리지스냅샷인스턴스번호 14 BlockStorageSnapshotInstanceNo *string `json:"blockStorageSnapshotInstanceNo,omitempty"` 15 16 // 블록스토리지스냅샷이름 17 BlockStorageSnapshotName *string `json:"blockStorageSnapshotName,omitempty"` 18 19 // 블록스토리지스냅샷볼륨사이즈 20 BlockStorageSnapshotVolumeSize *int64 `json:"blockStorageSnapshotVolumeSize,omitempty"` 21 22 // 원본블록스토리지인스턴스번호 23 OriginalBlockStorageInstanceNo *string `json:"originalBlockStorageInstanceNo,omitempty"` 24 25 // 블록스토리지스냅샷인스턴스상태 26 BlockStorageSnapshotInstanceStatus *CommonCode `json:"blockStorageSnapshotInstanceStatus,omitempty"` 27 28 // 블록스토리지스냅샷인스턴스OP 29 BlockStorageSnapshotInstanceOperation *CommonCode `json:"blockStorageSnapshotInstanceOperation,omitempty"` 30 31 // 블록스토리지스냅샷인스턴스상태이름 32 BlockStorageSnapshotInstanceStatusName *string `json:"blockStorageSnapshotInstanceStatusName,omitempty"` 33 34 // 생성일시 35 CreateDate *string `json:"createDate,omitempty"` 36 37 // 원본블록스토리지볼륨암호화여부 38 IsEncryptedOriginalBlockStorageVolume *bool `json:"isEncryptedOriginalBlockStorageVolume,omitempty"` 39 40 // 블록스토리지스냅샷설명 41 BlockStorageSnapshotDescription *string `json:"blockStorageSnapshotDescription,omitempty"` 42 43 // 스냅샷유형 44 SnapshotType *CommonCode `json:"snapshotType,omitempty"` 45 46 // 베이스스냅샷인스턴스번호 47 BaseSnapshotInstanceNo *string `json:"baseSnapshotInstanceNo,omitempty"` 48 49 // 스냅샷일련Depth 50 SnapshotChainDepth *int32 `json:"snapshotChainDepth,omitempty"` 51 }