File: KubernetesGenerateCredentialsRequest.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 (24 lines) | stat: -rw-r--r-- 918 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
# 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
)
```