1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
# OpenbaoClient::KubernetesGenerateCredentialsRequest
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **audiences** | **Array<String>** | The intended audiences of the generated credentials | [optional] |
| **cluster_role_binding** | **Boolean** | If true, generate a ClusterRoleBinding to grant permissions across the whole cluster instead of within a namespace. Requires the OpenBao role to have kubernetes_role_type set to ClusterRole. | [optional] |
| **kubernetes_namespace** | **String** | The name of the Kubernetes namespace in which to generate the credentials | |
| **ttl** | **Integer** | The TTL of the generated credentials | [optional] |
## Example
```ruby
require 'openbao_client'
instance = OpenbaoClient::KubernetesGenerateCredentialsRequest.new(
audiences: null,
cluster_role_binding: null,
kubernetes_namespace: null,
ttl: null
)
```
|