Lines Matching full:attributes
60 """Print a list of attributes with their types and documentation."""
76 # Show nested attributes reference and recursively display them
78 if attr.type == 'nest' and 'nested-attributes' in attr.yaml:
79 nested_set_name = attr.yaml['nested-attributes']
90 # Recursively show nested attributes
104 if 'request' in mode_spec and 'attributes' in mode_spec['request']:
105 print(f'\n{mode_title} request attributes:')
106 print_attr_list(ynl, mode_spec['request']['attributes'], attr_set)
108 if 'reply' in mode_spec and 'attributes' in mode_spec['reply']:
116 print(f'\n{title} reply attributes:')
117 print_attr_list(ynl, mode_spec['reply']['attributes'], attr_set)
135 if 'attributes' in op.yaml.get('event', {}):
136 print('\nEvent attributes:')
137 print_attr_list(ynl, op.yaml['event']['attributes'], op.attr_set)
145 print('\nNotification attributes:')
146 print_attr_list(ynl, ref_spec['reply']['attributes'], op.attr_set)
195 type=str, help='List attributes for a message / operation')
201 help=('Specify attributes of the message to send '