import { HelpContentsRegistry } from '../../../help/helpContents.registry'; const helpContents: any[] = [ { key: 'trafficGuard.region', contents: '
Required; you can select the wildcard (*) to include all regions.
', }, { key: 'trafficGuard.stack', contents: `Optional; you can use the wildcard (*) to include all stacks (including no stack). To apply the guard only to a cluster without a stack, leave this field blank.
`, }, { key: 'trafficGuard.detail', contents: `Optional; you can use the wildcard (*) to include all stacks (including no detail). To apply the guard only to a cluster without a detail, leave this field blank.
`, }, ]; helpContents.forEach((entry: any) => HelpContentsRegistry.register(entry.key, entry.contents));