Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.93 KB

ApiV1AuthTokenAuthIdentitiesIdentityIdPatchRequest.md

File metadata and controls

31 lines (23 loc) · 1.93 KB

ApiV1AuthTokenAuthIdentitiesIdentityIdPatchRequest

Properties

Name Type Description Notes
access_token_trusted_ips List[ApiV1AuthTokenAuthIdentitiesIdentityIdPostRequestAccessTokenTrustedIpsInner] 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

from infisicalapi_client.models.api_v1_auth_token_auth_identities_identity_id_patch_request import ApiV1AuthTokenAuthIdentitiesIdentityIdPatchRequest

# TODO update the JSON string below
json = "{}"
# create an instance of ApiV1AuthTokenAuthIdentitiesIdentityIdPatchRequest from a JSON string
api_v1_auth_token_auth_identities_identity_id_patch_request_instance = ApiV1AuthTokenAuthIdentitiesIdentityIdPatchRequest.from_json(json)
# print the JSON string representation of the object
print ApiV1AuthTokenAuthIdentitiesIdentityIdPatchRequest.to_json()

# convert the object into a dict
api_v1_auth_token_auth_identities_identity_id_patch_request_dict = api_v1_auth_token_auth_identities_identity_id_patch_request_instance.to_dict()
# create an instance of ApiV1AuthTokenAuthIdentitiesIdentityIdPatchRequest from a dict
api_v1_auth_token_auth_identities_identity_id_patch_request_from_dict = ApiV1AuthTokenAuthIdentitiesIdentityIdPatchRequest.from_dict(api_v1_auth_token_auth_identities_identity_id_patch_request_dict)

[Back to Model list] [Back to API list] [Back to README]