| Name |
Type |
Description |
Notes |
| auth_method |
Enum |
|
[optional] |
| explicit_proxy |
bool |
This is an authentication profile used along with an explicit proxy |
[optional] |
| idp_type |
Enum |
|
[optional] |
| sgw_name |
str |
The name of the secure gateway |
[optional] |
| sgw_type |
str |
The type of the secure gateway |
[optional] |
| sgw_type_value |
str |
The agent secure gateway type value of the secure gateway type |
[optional] |
from cyperf.models.auth_profile_metadata import AuthProfileMetadata
# TODO update the JSON string below
json = "{}"
# create an instance of AuthProfileMetadata from a JSON string
auth_profile_metadata_instance = AuthProfileMetadata.from_json(json)
# print the JSON string representation of the object
print(AuthProfileMetadata.to_json())
# convert the object into a dict
auth_profile_metadata_dict = auth_profile_metadata_instance.to_dict()
# create an instance of AuthProfileMetadata from a dict
auth_profile_metadata_from_dict = AuthProfileMetadata.from_dict(auth_profile_metadata_dict)
[Back to Model list] [Back to API list] [Back to README]