File: PkiReadUrlsConfigurationResponse.md

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (26 lines) | stat: -rw-r--r-- 1,562 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# OpenbaoClient::PkiReadUrlsConfigurationResponse

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **crl_distribution_points** | **Array<String>** | Comma-separated list of URLs to be used for the CRL distribution points attribute. See also RFC 5280 Section 4.2.1.13. | [optional] |
| **delta_crl_distribution_points** | **Array<String>** | Comma-separated list of URLs to be used for the Delta CRL distribution points attribute. See also RFC 5280 Section 4.2.1.15 and Section 5.2.6. | [optional] |
| **enable_templating** | **Boolean** | Whether or not to enable templating of the above AIA fields. When templating is enabled the special values '{{issuer_id}}' and '{{cluster_path}}' are available, but the addresses are not checked for URI validity until issuance time. This requires /config/cluster's path to be set on all PR Secondary clusters. | [optional] |
| **issuing_certificates** | **Array<String>** | Comma-separated list of URLs to be used for the issuing certificate attribute. See also RFC 5280 Section 4.2.2.1. | [optional] |
| **ocsp_servers** | **Array<String>** | Comma-separated list of URLs to be used for the OCSP servers attribute. See also RFC 5280 Section 4.2.2.1. | [optional] |

## Example

```ruby
require 'openbao_client'

instance = OpenbaoClient::PkiReadUrlsConfigurationResponse.new(
  crl_distribution_points: null,
  delta_crl_distribution_points: null,
  enable_templating: null,
  issuing_certificates: null,
  ocsp_servers: null
)
```