--- title: "getCloudMssqlLogBackupFileList" slug: "cli-vmssql-getcloudmssqllogbackupfilelist" updated: 2026-06-25T09:10:29Z published: 2026-06-25T09:10:29Z canonical: "cli-fin.ncloud-docs.com/cli-vmssql-getcloudmssqllogbackupfilelist" --- > ## 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. # getCloudMssqlLogBackupFileList Cloud DB for MSSQL 인스턴스의 로그 백업 파일 목록을 조회합니다. ## 명령어 명령어 구문은 다음과 같습니다. ``` ncloud vmssql getCloudMssqlLogBackupFileList [regionCode] [cloudMssqlInstanceNo] [databaseName] [backupSetId] [output] ``` ### 파라미터 파라미터에 대한 설명은 다음과 같습니다. | 파라미터 | 타입 | 필수 여부 | 설명 | 제약 사항 | | -------------------- | ------- | --------- | ------------------------------------------------------------ | --------- | | regionCode | String | N | 리전 코드
  • regionCode는 [getRegionList](/docs/cli-vserver-server-common-getregionlist) 액션을 통해 획득
  • default: getRegionList 조회 결과의 첫 번째 리전을 선택
  • | - | | cloudMssqlInstanceNo | String | Y | 백업 상세 정보를 조회할 Cloud DB for MSSQL 인스턴스 번호
  • cloudMssqlInstanceNo는 [getCloudMssqlInstanceList](/docs/cli-vmssql-getcloudmssqlinstancelist) 액션을 통해 획득
  • | - | | databaseName | String | Y | DB 명 | - | | backupSetId | String | Y | 백업 ID | - | | output | String | N | 응답 결과의 포맷 타입
  • options: xml \| json
  • default: json
  • | - | ## 응답 ### 응답 데이터 타입 - CloudMssqlLogBackupFileList 타입 | CloudMssqlLogBackupFileList extends CommonResponse | 설명 | | ------------------------------------------------------------ | --------------------------------- | | private Integer totalRows; | 조회된 목록의 총 개수 | | private List<cloudMssqlLogBackupFile> CloudMssqlLogBackupFileList = new ArrayList<>(); | Cloud DB for MSSQL 로그 백업 파일 목록 | - cloudMssqlLogBackupFile 타입 | cloudMssqlLogBackupFile | 설명 | |------------------------------|-----------------------| | private String fileName; | 파일 이름 | | private String fullFileName; | full 파일 이름 | | private Date startTime; | 시작 일시 | | private Date endTime; | 종료 일시 | | private Long fileSize; | 파일 크기 | ## 예시 호출과 응답 예시를 설명합니다. ### 호출 예시 호출 예시는 다음과 같습니다. ```http ncloud vmssql getCloudMssqlLogBackupFileList --regionCode FKR --cloudMssqlInstanceNo ***890 --databaseName msdb --backupSetId 12 ``` ### 응답 예시 응답 예시는 다음과 같습니다. #### 응답 결과 포맷 타입(output)이 json인 경우 응답 결과 포맷 타입(output)이 json인 경우는 다음과 같습니다. ```JSON { "getCloudMssqlLogBackupFileListResponse": { "totalRows":1, "cloudMssqlLogBackupFileList: ": [ { "fileName": "msdb_20240807_02****.full", "fullFileName": "Z:\\cmssql_backup\\user_idx_276****\\cmssql_10-0-2520_m-3***-001\\msdb_20240807_172525.log", "startTime": "2024-08-07T17:25:25+0900", "endTime": "2024-08-07T17:25:25+0900", "fileSize": 620280 } ], "requestId": "93697d3d-****-****-****-953e20c67075", "returnCode": "0", "returnMessage": "success" } } ``` #### 응답 결과 포맷 타입(responseFormatType)이 xml인 경우 응답 결과 포맷 타입(responseFormatType)이 xml인 경우는 다음과 같습니다. ```XML 93697d3d-****-****-****-953e20c67075 0 success 1 msdb_20240701_02****.full Z:\cmssql_backup\user_idx_276****\cmssql_10-0-2520_m-3***-001\msdb_20240807_172525.log 2024-08-07T17:25:25+0900 2024-08-07T17:25:25+0900 620280 ```