(self, event_name, section, **kwargs)
| 182 | self._example_events.add(example_template % (service_name, name)) |
| 183 | |
| 184 | def hide_param(self, event_name, section, **kwargs): |
| 185 | if event_name in self._example_events: |
| 186 | # Modify the structure value for example events. |
| 187 | section = section.get_section('structure-value') |
| 188 | elif event_name not in self._params_events: |
| 189 | return |
| 190 | if self._parameter_name in section.available_sections: |
| 191 | section.delete_section(self._parameter_name) |
| 192 | |
| 193 | |
| 194 | class AppendParamDocumentation: |