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 IPs or CIDR ranges that access tokens can be used from.
[optional] [default to [{"ipAddress":"0.0.0.0/0"},{"ipAddress":"::/0"}]]
access_token_ttl
int
The lifetime for an acccess token in seconds.
[optional] [default to 2592000]
access_token_max_ttl
int
The maximum lifetime for an acccess token in seconds.
[optional] [default to 2592000]
access_token_num_uses_limit
int
The maximum number of times that an access token can be used.
[optional] [default to 0]
Example
frominfisicalapi_client.models.api_v1_auth_oidc_auth_identities_identity_id_post_requestimportApiV1AuthOidcAuthIdentitiesIdentityIdPostRequest# TODO update the JSON string belowjson="{}"# create an instance of ApiV1AuthOidcAuthIdentitiesIdentityIdPostRequest from a JSON stringapi_v1_auth_oidc_auth_identities_identity_id_post_request_instance=ApiV1AuthOidcAuthIdentitiesIdentityIdPostRequest.from_json(json)
# print the JSON string representation of the objectprintApiV1AuthOidcAuthIdentitiesIdentityIdPostRequest.to_json()
# convert the object into a dictapi_v1_auth_oidc_auth_identities_identity_id_post_request_dict=api_v1_auth_oidc_auth_identities_identity_id_post_request_instance.to_dict()
# create an instance of ApiV1AuthOidcAuthIdentitiesIdentityIdPostRequest from a dictapi_v1_auth_oidc_auth_identities_identity_id_post_request_from_dict=ApiV1AuthOidcAuthIdentitiesIdentityIdPostRequest.from_dict(api_v1_auth_oidc_auth_identities_identity_id_post_request_dict)