> For the complete documentation index, see [llms.txt](https://docs.ionos.com/cert-manager-sdk-ruby/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ionos.com/cert-manager-sdk-ruby/models/certificatepropertiesdto.md).

# CertificatePropertiesDto

## Properties

| Name                   | Type       | Description                      | Notes       |
| ---------------------- | ---------- | -------------------------------- | ----------- |
| **name**               | **String** | The certificate name.            | \[optional] |
| **certificate**        | **String** | The certificate body.            | \[optional] |
| **certificate\_chain** | **String** | Optional. The certificate chain. | \[optional] |

## Example

```ruby
require 'ionoscloud-cert-manager'

instance = IonoscloudCertManager::CertificatePropertiesDto.new(
  name: My Certificate,
  certificate: -----BEGIN CERTIFICATE-----MIIE5TCCAs2gAwIBAgIBATANBgkqhkiG9w0BAQsFADA2MQswCQYDVQQGEwJSTzEK-----END CERTIFICATE-----,
  certificate_chain: -----BEGIN CERTIFICATE-----MIIDoTCCAokCFDrAUWffdxWJVz2Axl9lp/4xiUteMA0GCSqGSIb3DQEBCwUAMIGG-----END CERTIFICATE-----
)
```
