-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ebf534d
commit 475be7f
Showing
26 changed files
with
2,199 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Akeyless::CreateAuthMethodOCI | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **access_expires** | **Integer** | Access expiration date in Unix timestamp (select 0 for access without expiry date) | [optional][default to 0] | | ||
| **bound_ips** | **Array<String>** | A CIDR whitelist with the IPs that the access is restricted to | [optional] | | ||
| **description** | **String** | Auth Method description | [optional] | | ||
| **force_sub_claims** | **Boolean** | if true: enforce role-association must include sub claims | [optional] | | ||
| **group_ocid** | **Array<String>** | A list of required groups ocids | | | ||
| **gw_bound_ips** | **Array<String>** | A CIDR whitelist with the GW IPs that the access is restricted to | [optional] | | ||
| **json** | **Boolean** | Set output format to JSON | [optional][default to false] | | ||
| **jwt_ttl** | **Integer** | Jwt TTL | [optional][default to 0] | | ||
| **name** | **String** | Auth Method name | | | ||
| **tenant_ocid** | **String** | The Oracle Cloud tenant ID | | | ||
| **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] | | ||
| **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'akeyless' | ||
|
||
instance = Akeyless::CreateAuthMethodOCI.new( | ||
access_expires: null, | ||
bound_ips: null, | ||
description: null, | ||
force_sub_claims: null, | ||
group_ocid: null, | ||
gw_bound_ips: null, | ||
json: null, | ||
jwt_ttl: null, | ||
name: null, | ||
tenant_ocid: null, | ||
token: null, | ||
uid_token: null | ||
) | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Akeyless::CreateAuthMethodOCIOutput | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **access_id** | **String** | | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'akeyless' | ||
|
||
instance = Akeyless::CreateAuthMethodOCIOutput.new( | ||
access_id: null | ||
) | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Akeyless::OCIAccessRules | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **group_ocids** | **Array<String>** | | [optional] | | ||
| **tenant_ocid** | **String** | | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'akeyless' | ||
|
||
instance = Akeyless::OCIAccessRules.new( | ||
group_ocids: null, | ||
tenant_ocid: null | ||
) | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Akeyless::UpdateAuthMethodOCI | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **access_expires** | **Integer** | Access expiration date in Unix timestamp (select 0 for access without expiry date) | [optional][default to 0] | | ||
| **bound_ips** | **Array<String>** | A CIDR whitelist with the IPs that the access is restricted to | [optional] | | ||
| **description** | **String** | Auth Method description | [optional] | | ||
| **force_sub_claims** | **Boolean** | if true: enforce role-association must include sub claims | [optional] | | ||
| **group_ocid** | **Array<String>** | A list of required groups ocids | | | ||
| **gw_bound_ips** | **Array<String>** | A CIDR whitelist with the GW IPs that the access is restricted to | [optional] | | ||
| **json** | **Boolean** | Set output format to JSON | [optional][default to false] | | ||
| **jwt_ttl** | **Integer** | Jwt TTL | [optional][default to 0] | | ||
| **name** | **String** | Auth Method name | | | ||
| **new_name** | **String** | Auth Method new name | [optional] | | ||
| **tenant_ocid** | **String** | The Oracle Cloud tenant ID | | | ||
| **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] | | ||
| **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'akeyless' | ||
|
||
instance = Akeyless::UpdateAuthMethodOCI.new( | ||
access_expires: null, | ||
bound_ips: null, | ||
description: null, | ||
force_sub_claims: null, | ||
group_ocid: null, | ||
gw_bound_ips: null, | ||
json: null, | ||
jwt_ttl: null, | ||
name: null, | ||
new_name: null, | ||
tenant_ocid: null, | ||
token: null, | ||
uid_token: null | ||
) | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Akeyless::UpdateAuthMethodOCIOutput | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **access_id** | **String** | | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'akeyless' | ||
|
||
instance = Akeyless::UpdateAuthMethodOCIOutput.new( | ||
access_id: null | ||
) | ||
``` | ||
|
Oops, something went wrong.