File: AppRoleLookUpSecretIdByAccessorResponse.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 (34 lines) | stat: -rw-r--r-- 1,561 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
31
32
33
34
# OpenbaoClient::AppRoleLookUpSecretIdByAccessorResponse

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **cidr_list** | **Array<String>** | List of CIDR blocks enforcing secret IDs to be used from specific set of IP addresses. If 'bound_cidr_list' is set on the role, then the list of CIDR blocks listed here should be a subset of the CIDR blocks listed on the role. | [optional] |
| **creation_time** | **Time** |  | [optional] |
| **expiration_time** | **Time** |  | [optional] |
| **last_updated_time** | **Time** |  | [optional] |
| **metadata** | **Object** |  | [optional] |
| **secret_id_accessor** | **String** | Accessor of the secret ID | [optional] |
| **secret_id_num_uses** | **Integer** | Number of times a secret ID can access the role, after which the secret ID will expire. | [optional] |
| **secret_id_ttl** | **Integer** | Duration in seconds after which the issued secret ID expires. | [optional] |
| **token_bound_cidrs** | **Array<String>** | List of CIDR blocks. If set, specifies the blocks of IP addresses which can use the returned token. Should be a subset of the token CIDR blocks listed on the role, if any. | [optional] |

## Example

```ruby
require 'openbao_client'

instance = OpenbaoClient::AppRoleLookUpSecretIdByAccessorResponse.new(
  cidr_list: null,
  creation_time: null,
  expiration_time: null,
  last_updated_time: null,
  metadata: null,
  secret_id_accessor: null,
  secret_id_num_uses: null,
  secret_id_ttl: null,
  token_bound_cidrs: null
)
```