Defines the application Gatekeeper configuration, if enabled (i.e. secured: true.
| Name | Type | Description | Notes |
|---|---|---|---|
| uri | str | ||
| roles | List[str] | Roles allowed to access the present uri | [optional] |
| white_listed | bool | [optional] |
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)