Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.59 KB

File metadata and controls

39 lines (30 loc) · 1.59 KB

AuthSettings

Properties

Name Type Description Notes
auth_method AuthMethodType [optional]
auth_param Params [optional]
certificate_file Params The authentication certificate file of the VPN tunnel. [optional]
key_file Params The authentication key file of the VPN tunnel. [optional]
key_file_password str The key file password of the TLS VPN authentication. [optional]
passwords List[str] [optional]
passwords_param Params [optional]
simulated_id_p SimulatedIdP [optional]
usernames List[str] [optional]
usernames_param Params [optional]
links List[APILink] [optional]

Example

from cyperf.models.auth_settings import AuthSettings

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

# convert the object into a dict
auth_settings_dict = auth_settings_instance.to_dict()
# create an instance of AuthSettings from a dict
auth_settings_from_dict = AuthSettings.from_dict(auth_settings_dict)

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