Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.08 KB

BastionGlobalConf.md

File metadata and controls

32 lines (23 loc) · 1.08 KB

BastionGlobalConf

Properties

Name Type Description Notes
allowed_bastion_urls List[str] [optional]
legacy_signing_alg bool [optional]
rdp_username_sub_claim str [optional]
ssh_username_sub_claim str [optional]

Example

from akeyless.models.bastion_global_conf import BastionGlobalConf

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

# convert the object into a dict
bastion_global_conf_dict = bastion_global_conf_instance.to_dict()
# create an instance of BastionGlobalConf from a dict
bastion_global_conf_from_dict = BastionGlobalConf.from_dict(bastion_global_conf_dict)

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