Name |
Type |
Description |
Notes |
access_id |
str |
|
[optional] |
client_type |
str |
|
[optional] |
cluster_unique_id |
int |
|
[optional] |
connection_type |
str |
|
[optional] |
end_time |
datetime |
|
[optional] |
error_msg |
str |
|
[optional] |
gateway_info |
GatewayNameInfo |
|
[optional] |
instance_id |
str |
|
[optional] |
secret_name |
str |
|
[optional] |
session_id |
str |
|
[optional] |
start_time |
datetime |
|
[optional] |
status |
str |
|
[optional] |
target_host |
str |
|
[optional] |
ttl |
str |
|
[optional] |
user_identifier |
str |
|
[optional] |
from akeyless.models.sra_session_entry_out import SraSessionEntryOut
# TODO update the JSON string below
json = "{}"
# create an instance of SraSessionEntryOut from a JSON string
sra_session_entry_out_instance = SraSessionEntryOut.from_json(json)
# print the JSON string representation of the object
print(SraSessionEntryOut.to_json())
# convert the object into a dict
sra_session_entry_out_dict = sra_session_entry_out_instance.to_dict()
# create an instance of SraSessionEntryOut from a dict
sra_session_entry_out_from_dict = SraSessionEntryOut.from_dict(sra_session_entry_out_dict)
[Back to Model list] [Back to API list] [Back to README]