You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new host string, host:port pair, or URL to the base of the Kubernetes API server.
[optional]
ca_cert
str
The new PEM-encoded CA cert for the Kubernetes API server.
[optional]
token_reviewer_jwt
str
The new long-lived service account JWT token for Infisical to access the TokenReview API to validate other service account JWT tokens submitted by applications/pods.
[optional]
allowed_namespaces
str
The new comma-separated list of trusted namespaces that service accounts must belong to authenticate with Infisical.
[optional]
allowed_names
str
The new comma-separated list of trusted service account names that can authenticate with Infisical.
[optional]
allowed_audience
str
The new optional audience claim that the service account JWT token must have to authenticate with Infisical.
The new IPs or CIDR ranges that access tokens can be used from.
[optional]
access_token_ttl
int
The new lifetime for an acccess token in seconds.
[optional]
access_token_num_uses_limit
int
The new maximum number of times that an access token can be used.
[optional]
access_token_max_ttl
int
The new maximum lifetime for an acccess token in seconds.
[optional]
Example
frominfisicalapi_client.models.api_v1_auth_kubernetes_auth_identities_identity_id_patch_requestimportApiV1AuthKubernetesAuthIdentitiesIdentityIdPatchRequest# TODO update the JSON string belowjson="{}"# create an instance of ApiV1AuthKubernetesAuthIdentitiesIdentityIdPatchRequest from a JSON stringapi_v1_auth_kubernetes_auth_identities_identity_id_patch_request_instance=ApiV1AuthKubernetesAuthIdentitiesIdentityIdPatchRequest.from_json(json)
# print the JSON string representation of the objectprintApiV1AuthKubernetesAuthIdentitiesIdentityIdPatchRequest.to_json()
# convert the object into a dictapi_v1_auth_kubernetes_auth_identities_identity_id_patch_request_dict=api_v1_auth_kubernetes_auth_identities_identity_id_patch_request_instance.to_dict()
# create an instance of ApiV1AuthKubernetesAuthIdentitiesIdentityIdPatchRequest from a dictapi_v1_auth_kubernetes_auth_identities_identity_id_patch_request_from_dict=ApiV1AuthKubernetesAuthIdentitiesIdentityIdPatchRequest.from_dict(api_v1_auth_kubernetes_auth_identities_identity_id_patch_request_dict)