github.com/NaverCloudPlatform/ncloud-sdk-go-v2@v1.6.13/services/loadbalancer/ssl_certificate.go (about)

     1  /*
     2   * loadbalancer
     3   *
     4   * <br/>https://ncloud.apigw.ntruss.com/loadbalancer/v2
     5   *
     6   * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
     7   */
     8  
     9  package loadbalancer
    10  
    11  type SslCertificate struct {
    12  
    13  	// 인증서명
    14  CertificateName *string `json:"certificateName,omitempty"`
    15  
    16  	// 비밀키
    17  PrivateKey *string `json:"privateKey,omitempty"`
    18  
    19  	// 공개키인증서
    20  PublicKeyCertificate *string `json:"publicKeyCertificate,omitempty"`
    21  
    22  	// chainca
    23  CertificateChain *string `json:"certificateChain,omitempty"`
    24  }