Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.29 KB

BastionConfigReplyObj.md

File metadata and controls

34 lines (25 loc) · 1.29 KB

BastionConfigReplyObj

Properties

Name Type Description Notes
api_gateway_url str [optional]
cluster_id str [optional]
gator_cluster_id int [optional]
var_global BastionGlobalConf [optional]
ssh_bastion SshBastionConf [optional]
web_bastion WebBastionConf [optional]

Example

from akeyless.models.bastion_config_reply_obj import BastionConfigReplyObj

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

# convert the object into a dict
bastion_config_reply_obj_dict = bastion_config_reply_obj_instance.to_dict()
# create an instance of BastionConfigReplyObj from a dict
bastion_config_reply_obj_from_dict = BastionConfigReplyObj.from_dict(bastion_config_reply_obj_dict)

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