Documentation Index

Fetch the complete documentation index at: https://cli.ncloud-docs.com/llms.txt

Use this file to discover all available pages before exploring further.

getLoadBalancerListenerCertificateList

Prev Next

VPC 환경에서 이용 가능합니다.

개요

로드밸런서 리스너 TLS 인증서를 조회합니다.

요청

요청 파라미터

파라미터명 필수 여부 타입 제약 사항 설명
regionCode No String - 리전 코드
- 인증서를 조회할 로드밸런서 인스턴스의 리전(Region) 결정
- regionCode는 getRegionList 액션을 통해서 획득
- Default: getRegionList 조회 결과의 첫 번째 리전을 선택
loadBalancerListenerNo Yes Integer - 규칙 리스트를 조회할 로드밸런서 리스너 번호
- loadBalancerListenerNo는 getLoadBalancerListenerList 액션을 통해서 획득

응답

응답 데이터 타입

  • loadBalancerListenerCertificateList 타입
LoadBalancerInstanceList extends CommonResponse
private Integer totalRows;
private List loadBalancerListenerCertificateList = new ArrayList<>();
loadBalancerListenerCertificate
private String sslCertificateNo;
private String memberNo;
private String loadBalancerDescription;
private String sslCertificateName;
private String domainAddress;
private String validEndDate;
private Boolean isDefault;
private Integer statusCode;
private String statusName;

예시

요청 예시

ncloud vloadbalancer getLoadBalancerListenerCertificateList --regionCode KR --loadBalancerListenerNo ****1

응답 예시

 <getLoadBalancerListenerCertificateListResponse>
     <requestId>959a2fe5-fd1b-459a-9af3-df0e51b68e1g</requestId>
     <returnCode>0</returnCode>
     <returnMessage>success</returnMessage>
     <totalRows>2</totalRows>
     <loadBalancerListenerCertificateList>
         <loadBalancerListenerCertificate>
             <sslCertificateNo>****3</sslCertificateNo>
             <memberNo>**9</memberNo>
             <sslCertificateName>cert1-***</sslCertificateName>
             <domainAddress>www.***.com</domainAddress>
             <validEndDate>2032-10-11 13:48:39</validEndDate>
             <isDefault>true</isDefault>
             <statusCode>1</statusCode>
             <statusName>Normal</statusName>
         </loadBalancerListenerCertificate>
         <loadBalancerListenerCertificate>
             <sslCertificateNo>****3-***</sslCertificateNo>
             <memberNo>**9</memberNo>
             <sslCertificateName>cert1</sslCertificateName>
             <domainAddress>cert1-***</domainAddress>
             <validEndDate>2032-**-** **:**:**</validEndDate>
             <isDefault>false</isDefault>
             <statusCode>1</statusCode>
             <statusName>Normal</statusName>
         </loadBalancerListenerCertificate>
     </loadBalancerListenerCertificateList>
 </getLoadBalancerListenerCertificateListResponse>