Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.15 KB

File metadata and controls

32 lines (23 loc) · 1.15 KB

UriRoleMappingConfig

Defines the application Gatekeeper configuration, if enabled (i.e. secured: true.

Properties

Name Type Description Notes
uri str
roles List[str] Roles allowed to access the present uri [optional]
white_listed bool [optional]

Example

from cloudharness_model.models.uri_role_mapping_config import UriRoleMappingConfig

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

# convert the object into a dict
uri_role_mapping_config_dict = uri_role_mapping_config_instance.to_dict()
# create an instance of UriRoleMappingConfig from a dict
uri_role_mapping_config_from_dict = UriRoleMappingConfig.from_dict(uri_role_mapping_config_dict)

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