Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.19 KB

File metadata and controls

30 lines (24 loc) · 1.19 KB

Akeyless::KubernetesAccessRules

Properties

Name Type Description Notes
alg String [optional]
audience String Audience is an optional Kubernetes jwt claim to verify [optional]
bound_namespaces Array<String> A list of namespaces that the authentication is restricted to. [optional]
bound_pod_names Array<String> A list of pods names that the authentication is restricted to. [optional]
bound_service_account_names Array<String> A list of service account names that the authentication is restricted to. [optional]
gen_key_pair String Generate public/private key (the private key is required for the K8S Auth Config in the Akeyless Gateway) [optional]
pub_key String The public key value of the Kubernetes auth method configuration in the Akeyless Gateway. [optional]

Example

require 'akeyless'

instance = Akeyless::KubernetesAccessRules.new(
  alg: null,
  audience: null,
  bound_namespaces: null,
  bound_pod_names: null,
  bound_service_account_names: null,
  gen_key_pair: null,
  pub_key: null
)