uidCreateChildToken is a command that creates a new child token using Akeyless Universal Identity.
Name | Type | Description | Notes |
---|---|---|---|
auth_method_name | str | The universal identity auth method name, required only when uid-token is not provided | [optional] |
child_deny_inheritance | bool | Deny from new child to create their own children | [optional] |
child_deny_rotate | bool | Deny from new child to rotate | [optional] |
child_ttl | int | New child token ttl | [optional] |
comment | str | Deprecated - use description | [optional] |
description | str | Description of the object | [optional] |
var_json | bool | Set output format to JSON | [optional] [default to False] |
token | str | Authentication token (see `/auth` and `/configure`) | [optional] |
uid_token | str | The universal identity token, Required only for universal_identity authentication | [optional] |
uid_token_id | str | The ID of the uid-token, required only when uid-token is not provided | [optional] |
from akeyless.models.uid_create_child_token import UidCreateChildToken
# TODO update the JSON string below
json = "{}"
# create an instance of UidCreateChildToken from a JSON string
uid_create_child_token_instance = UidCreateChildToken.from_json(json)
# print the JSON string representation of the object
print(UidCreateChildToken.to_json())
# convert the object into a dict
uid_create_child_token_dict = uid_create_child_token_instance.to_dict()
# create an instance of UidCreateChildToken from a dict
uid_create_child_token_from_dict = UidCreateChildToken.from_dict(uid_create_child_token_dict)