Name |
Type |
Description |
Notes |
var_json |
bool |
Set output format to JSON |
[optional] [default to False] |
name |
str |
Item name |
|
token |
str |
Authentication token (see `/auth` and `/configure`) |
[optional] |
uid_token |
str |
The universal identity token, Required only for universal_identity authentication |
[optional] |
from akeyless.models.get_tags import GetTags
# TODO update the JSON string below
json = "{}"
# create an instance of GetTags from a JSON string
get_tags_instance = GetTags.from_json(json)
# print the JSON string representation of the object
print(GetTags.to_json())
# convert the object into a dict
get_tags_dict = get_tags_instance.to_dict()
# create an instance of GetTags from a dict
get_tags_from_dict = GetTags.from_dict(get_tags_dict)
[Back to Model list] [Back to API list] [Back to README]