File: PkiConfigureAcmeRequest.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 (30 lines) | stat: -rw-r--r-- 2,233 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
27
28
29
30
# OpenbaoClient::PkiConfigureAcmeRequest

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **allow_role_ext_key_usage** | **Boolean** | whether the ExtKeyUsage field from a role is used, defaults to false meaning that certificate will be signed with ServerAuth. | [optional][default to false] |
| **allowed_issuers** | **Array<String>** | which issuers are allowed for use with ACME; by default, this will only be the primary (default) issuer | [optional] |
| **allowed_roles** | **Array<String>** | which roles are allowed for use with ACME; by default via '*', these will be all roles including sign-verbatim; when concrete role names are specified, any default_directory_policy role must be included to allow usage of the default acme directories under /pki/acme/directory and /pki/issuer/:issuer_id/acme/directory. | [optional] |
| **default_directory_policy** | **String** | the policy to be used for non-role-qualified ACME requests; by default ACME issuance will be otherwise unrestricted, equivalent to the sign-verbatim endpoint; one may also specify a role to use as this policy, as \"role:<role_name>\", the specified role must be allowed by allowed_roles | [optional][default to 'sign-verbatim'] |
| **dns_resolver** | **String** | DNS resolver to use for domain resolution on this mount. Defaults to using the default system resolver. Must be in the format <host>:<port>, with both parts mandatory. | [optional][default to ''] |
| **eab_policy** | **String** | Specify the policy to use for external account binding behaviour, 'not-required', 'new-account-required' or 'always-required' | [optional][default to 'always-required'] |
| **enabled** | **Boolean** | whether ACME is enabled, defaults to false meaning that clusters will by default not get ACME support | [optional][default to false] |

## Example

```ruby
require 'openbao_client'

instance = OpenbaoClient::PkiConfigureAcmeRequest.new(
  allow_role_ext_key_usage: null,
  allowed_issuers: null,
  allowed_roles: null,
  default_directory_policy: null,
  dns_resolver: null,
  eab_policy: null,
  enabled: null
)
```