Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.19 KB

File metadata and controls

28 lines (20 loc) · 1.19 KB

UpdateEnvironmentVariableRequest

Properties

Name Type Description Notes
value str The secret value that will be encrypted at rest and injected in applicable hook functions at run time.

Example

from onelogin.models.update_environment_variable_request import UpdateEnvironmentVariableRequest

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

# convert the object into a dict
update_environment_variable_request_dict = update_environment_variable_request_instance.to_dict()
# create an instance of UpdateEnvironmentVariableRequest from a dict
update_environment_variable_request_form_dict = update_environment_variable_request.from_dict(update_environment_variable_request_dict)

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