Ignoring operations, channels, or schemas

Use x-fern-ignore to exclude specific operations, channels, or schemas from SDK generation:

asyncapi.yml
1operations:
2 debugOperation:
3 action: send
4 channel:
5 $ref: '#/channels/debug'
6 x-fern-ignore: true
7 summary: Debug operation (internal only)
8
9channels:
10 internal/debug:
11 address: internal/debug
12 x-fern-ignore: true
13 messages:
14 DebugMessage:
15 $ref: '#/components/messages/DebugMessage'