You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The secret name (alphanumeric and underscores only).
value
str
The secret value (encrypted at rest, never returned after creation).
Example
fromnotehub_py.models.create_project_secret_requestimportCreateProjectSecretRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateProjectSecretRequest from a JSON stringcreate_project_secret_request_instance=CreateProjectSecretRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateProjectSecretRequest.to_json())
# convert the object into a dictcreate_project_secret_request_dict=create_project_secret_request_instance.to_dict()
# create an instance of CreateProjectSecretRequest from a dictcreate_project_secret_request_from_dict=CreateProjectSecretRequest.from_dict(
create_project_secret_request_dict
)