Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

DeleteGroup.md

File metadata and controls

32 lines (23 loc) · 1.13 KB

DeleteGroup

Properties

Name Type Description Notes
var_json bool Set output format to JSON [optional] [default to False]
name str Group name
token str Authentication token (see `/auth` and `/configure`) [optional]
uid_token str The universal identity token, Required only for universal_identity authentication [optional]

Example

from akeyless.models.delete_group import DeleteGroup

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

# convert the object into a dict
delete_group_dict = delete_group_instance.to_dict()
# create an instance of DeleteGroup from a dict
delete_group_from_dict = DeleteGroup.from_dict(delete_group_dict)

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