Classic/VPC 환경에서 이용 가능합니다.
멀티파트 업로드의 파트 목록을 조회합니다.
요청
요청 형식을 설명합니다. 요청 형식은 다음과 같습니다.
메서드 | URI |
---|---|
GET | /{Key} |
요청 헤더
Ncloud Storage API에서 공통으로 사용하는 헤더에 대한 정보는 Ncloud Storage 요청 헤더를 참조해 주십시오.
요청 경로 파라미터
요청 경로 파라미터에 대한 설명은 다음과 같습니다.
필드 | 타입 | 필수 여부 | 설명 |
---|---|---|---|
Key |
String | Required | 객체 이름 |
요청 쿼리 파라미터
요청 쿼리 파라미터에 대한 설명은 다음과 같습니다.
필드 | 타입 | 필수 여부 | 설명 |
---|---|---|---|
max-parts |
String | Optional | 페이지당 항목 수
|
part-number-marker |
String | Optional | 조회 시작 기준
|
uploadId |
String | Required | 멀티파트 업로드 아이디 |
요청 예시
요청 예시는 다음과 같습니다.
GET /object.csv?uploadId=b169de1a-****-****-****-9cc2c464a269 HTTP/1.1
Host: bucket.kr.ncloudstorage.com
응답
응답 형식을 설명합니다.
응답 헤더
Ncloud Storage API에서 공통으로 사용하는 헤더에 대한 정보는 Ncloud Storage 응답 헤더를 참조해 주십시오.
응답 바디
응답 바디에 대한 설명은 다음과 같습니다.
필드 | 타입 | 필수 여부 | 설명 |
---|---|---|---|
ListPartsResult |
Object | - | 파트 목록 조회 결과 |
ListPartsResult.Bucket |
String | - | 버킷 이름 |
ListPartsResult.Key |
Object | - | 객체 이름 |
ListPartsResult.UploadId |
String | - | 멀티파트 업로드 아이디
|
ListPartsResult.StorageClass |
String | - | 스토리지 클래스
|
ListPartsResult.PartNumberMarker |
Integer | - | 조회 시작 기준 |
ListPartsResult.NextPartNumberMarker |
Integer | - | 다음 조회 기준
|
ListPartsResult.MaxParts |
Integer | - | 페이지당 항목 수 |
ListPartsResult.IsTruncated |
Boolean | - | 이후 페이지 존재 여부
|
ListPartsResult.Part |
Array | - | 파트 목록 |
Part
Part
에 대한 설명은 다음과 같습니다.
필드 | 타입 | 필수 여부 | 설명 |
---|---|---|---|
PartNumber |
Integer | - | 파트 번호 |
LastModified |
String | - | 마지막 수정 일시
|
ETag |
String | - | 파트 고유 식별자(Entity Tag) |
Size |
Integer | - | 파트 크기(Byte) |
응답 상태 코드
Ncloud Storage API에서 공통으로 사용하는 응답 상태 코드에 대한 정보는 Ncloud Storage 응답 상태 코드를 참조해 주십시오.
응답 예시
응답 예시는 다음과 같습니다.
HTTP/1.1 200 OK
<?xml version="1.0" encoding="UTF-8"?>
<ListPartsResult>
<Bucket>bucket</Bucket>
<Key>object.csv</Key>
<UploadId>b169de1a-****-****-****-9cc2c464a269</UploadId>
<StorageClass>STANDARD</StorageClass>
<PartNumberMarker>1</PartNumberMarker>
<NextPartNumberMarker>2</NextPartNumberMarker>
<MaxParts>1000</MaxParts>
<IsTruncated>false</IsTruncated>
<Part>
<PartNumber>2</PartNumber>
<LastModified>2025-04-25T07:36:16Z</LastModified>
<ETag>"d41d8cd98f0**********998ecf8427e"</ETag>
<Size>0</Size>
</Part>
</ListPartsResult>