Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.37 KB

SetItemState.md

File metadata and controls

34 lines (25 loc) · 1.37 KB

SetItemState

Properties

Name Type Description Notes
desired_state str Desired item state (Enabled, Disabled)
var_json bool Set output format to JSON [optional] [default to False]
name str Current 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]
version int The specific version you want to update: 0=item level state (default) (relevant only for keys) [optional] [default to 0]

Example

from akeyless.models.set_item_state import SetItemState

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

# convert the object into a dict
set_item_state_dict = set_item_state_instance.to_dict()
# create an instance of SetItemState from a dict
set_item_state_from_dict = SetItemState.from_dict(set_item_state_dict)

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