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

Available in VPC

Overview

It searches the load balancer listener TLS certificate.

Requests

Request parameters

Parameter name Requirement status Type Restrictions Description
regionCode No String - Region code
- Determines the region of the load balancer instance to search the Authentication service.
- regionCode is obtained via the getRegionList action
- Default: Selects the first region of the getRegionList query results
loadBalancerListenerNo Yes Integer - The load balancer listener number to search the list of rules
- loadBalancerListenerNo is obtained via the getLoadBalancerListenerList action

Responses

Response data type

  • loadBalancerListenerCertificateList type
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;

Examples

Request examples

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

Response examples

 <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>