Total Complexity | 1 |
Total Lines | 9 |
Duplicated Lines | 0 % |
1 | # Licensed to the StackStorm, Inc ('StackStorm') under one or more |
||
20 | |||
21 | LOG = logging.getLogger(__name__) |
||
22 | |||
23 | |||
24 | class PolicyType(core.Resource): |
||
25 | _alias = 'Policy-Type' |
||
26 | _display_name = 'Policy type' |
||
27 | _plural = 'PolicyTypes' |
||
28 | _plural_display_name = 'Policy types' |
||
29 | _repr_attributes = ['ref', 'enabled', 'description'] |
||
35 |