Skip to content

Commit 3bb2c77

Browse files
committed
Duplicate Command Fix
1 parent b8efbe4 commit 3bb2c77

1 file changed

Lines changed: 102 additions & 114 deletions

File tree

pkg/commands/commands.go

Lines changed: 102 additions & 114 deletions
Original file line numberDiff line numberDiff line change
@@ -493,63 +493,57 @@ func Define( // nolint:revive // function-length
493493
ngwafVirtualpatchList := virtualpatch.NewListCommand(ngwafVirtualpatchRoot.CmdClause, data)
494494
ngwafVirtualpatchUpdate := virtualpatch.NewUpdateCommand(ngwafVirtualpatchRoot.CmdClause, data)
495495
ngwafVirtualpatchRetrieve := virtualpatch.NewRetrieveCommand(ngwafVirtualpatchRoot.CmdClause, data)
496-
ngwafWorkspacesRoot := workspace.NewRootCommand(ngwafRoot.CmdClause, data)
497-
ngwafWorkspacesCreate := workspace.NewCreateCommand(ngwafWorkspacesRoot.CmdClause, data)
498-
ngwafWorkspacesDelete := workspace.NewDeleteCommand(ngwafWorkspacesRoot.CmdClause, data)
499-
ngwafWorkspacesGet := workspace.NewGetCommand(ngwafWorkspacesRoot.CmdClause, data)
500-
ngwafWorkspacesList := workspace.NewListCommand(ngwafWorkspacesRoot.CmdClause, data)
501-
ngwafWorkspacesUpdate := workspace.NewUpdateCommand(ngwafWorkspacesRoot.CmdClause, data)
502-
ngwafWorkspacesAlertRoot := alert.NewRootCommand(ngwafWorkspacesRoot.CmdClause, data)
503-
ngwafWorkspacesAlertDatadogRoot := workspaceAlertDatadog.NewRootCommand(ngwafWorkspacesAlertRoot.CmdClause, data)
504-
ngwafWorkspacesAlertDatadogCreate := workspaceAlertDatadog.NewCreateCommand(ngwafWorkspacesAlertDatadogRoot.CmdClause, data)
505-
ngwafWorkspacesAlertDatadogDelete := workspaceAlertDatadog.NewDeleteCommand(ngwafWorkspacesAlertDatadogRoot.CmdClause, data)
506-
ngwafWorkspacesAlertDatadogGet := workspaceAlertDatadog.NewGetCommand(ngwafWorkspacesAlertDatadogRoot.CmdClause, data)
507-
ngwafWorkspacesAlertDatadogList := workspaceAlertDatadog.NewListCommand(ngwafWorkspacesAlertDatadogRoot.CmdClause, data)
508-
ngwafWorkspacesAlertDatadogUpdate := workspaceAlertDatadog.NewUpdateCommand(ngwafWorkspacesAlertDatadogRoot.CmdClause, data)
509-
ngwafWorkspacesAlertJiraRoot := workspaceAlertJira.NewRootCommand(ngwafWorkspacesAlertRoot.CmdClause, data)
510-
ngwafWorkspacesAlertJiraCreate := workspaceAlertJira.NewCreateCommand(ngwafWorkspacesAlertJiraRoot.CmdClause, data)
511-
ngwafWorkspacesAlertJiraDelete := workspaceAlertJira.NewDeleteCommand(ngwafWorkspacesAlertJiraRoot.CmdClause, data)
512-
ngwafWorkspacesAlertJiraGet := workspaceAlertJira.NewGetCommand(ngwafWorkspacesAlertJiraRoot.CmdClause, data)
513-
ngwafWorkspacesAlertJiraList := workspaceAlertJira.NewListCommand(ngwafWorkspacesAlertJiraRoot.CmdClause, data)
514-
ngwafWorkspacesAlertJiraUpdate := workspaceAlertJira.NewUpdateCommand(ngwafWorkspacesAlertJiraRoot.CmdClause, data)
515-
ngwafWorkspacesAlertMailinglistRoot := workspaceAlertMailinglist.NewRootCommand(ngwafWorkspacesAlertRoot.CmdClause, data)
516-
ngwafWorkspacesAlertMailinglistCreate := workspaceAlertMailinglist.NewCreateCommand(ngwafWorkspacesAlertMailinglistRoot.CmdClause, data)
517-
ngwafWorkspacesAlertMailinglistDelete := workspaceAlertMailinglist.NewDeleteCommand(ngwafWorkspacesAlertMailinglistRoot.CmdClause, data)
518-
ngwafWorkspacesAlertMailinglistGet := workspaceAlertMailinglist.NewGetCommand(ngwafWorkspacesAlertMailinglistRoot.CmdClause, data)
519-
ngwafWorkspacesAlertMailinglistList := workspaceAlertMailinglist.NewListCommand(ngwafWorkspacesAlertMailinglistRoot.CmdClause, data)
520-
ngwafWorkspacesAlertMailinglistUpdate := workspaceAlertMailinglist.NewUpdateCommand(ngwafWorkspacesAlertMailinglistRoot.CmdClause, data)
521-
ngwafWorkspacesAlertMicrosoftteamsRoot := workspaceAlertMicrosoftteams.NewRootCommand(ngwafWorkspacesAlertRoot.CmdClause, data)
522-
ngwafWorkspacesAlertMicrosoftteamsCreate := workspaceAlertMicrosoftteams.NewCreateCommand(ngwafWorkspacesAlertMicrosoftteamsRoot.CmdClause, data)
523-
ngwafWorkspacesAlertMicrosoftteamsDelete := workspaceAlertMicrosoftteams.NewDeleteCommand(ngwafWorkspacesAlertMicrosoftteamsRoot.CmdClause, data)
524-
ngwafWorkspacesAlertMicrosoftteamsGet := workspaceAlertMicrosoftteams.NewGetCommand(ngwafWorkspacesAlertMicrosoftteamsRoot.CmdClause, data)
525-
ngwafWorkspacesAlertMicrosoftteamsList := workspaceAlertMicrosoftteams.NewListCommand(ngwafWorkspacesAlertMicrosoftteamsRoot.CmdClause, data)
526-
ngwafWorkspacesAlertMicrosoftteamsUpdate := workspaceAlertMicrosoftteams.NewUpdateCommand(ngwafWorkspacesAlertMicrosoftteamsRoot.CmdClause, data)
527-
ngwafWorkspacesAlertOpsgenieRoot := workspaceAlertOpsgenie.NewRootCommand(ngwafWorkspacesAlertRoot.CmdClause, data)
528-
ngwafWorkspacesAlertOpsgenieCreate := workspaceAlertOpsgenie.NewCreateCommand(ngwafWorkspacesAlertOpsgenieRoot.CmdClause, data)
529-
ngwafWorkspacesAlertOpsgenieDelete := workspaceAlertOpsgenie.NewDeleteCommand(ngwafWorkspacesAlertOpsgenieRoot.CmdClause, data)
530-
ngwafWorkspacesAlertOpsgenieGet := workspaceAlertOpsgenie.NewGetCommand(ngwafWorkspacesAlertOpsgenieRoot.CmdClause, data)
531-
ngwafWorkspacesAlertOpsgenieList := workspaceAlertOpsgenie.NewListCommand(ngwafWorkspacesAlertOpsgenieRoot.CmdClause, data)
532-
ngwafWorkspacesAlertOpsgenieUpdate := workspaceAlertOpsgenie.NewUpdateCommand(ngwafWorkspacesAlertOpsgenieRoot.CmdClause, data)
533-
ngwafWorkspacesAlertPagerdutyRoot := workspaceAlertPagerduty.NewRootCommand(ngwafWorkspacesAlertRoot.CmdClause, data)
534-
ngwafWorkspacesAlertPagerdutyCreate := workspaceAlertPagerduty.NewCreateCommand(ngwafWorkspacesAlertPagerdutyRoot.CmdClause, data)
535-
ngwafWorkspacesAlertPagerdutyDelete := workspaceAlertPagerduty.NewDeleteCommand(ngwafWorkspacesAlertPagerdutyRoot.CmdClause, data)
536-
ngwafWorkspacesAlertPagerdutyGet := workspaceAlertPagerduty.NewGetCommand(ngwafWorkspacesAlertPagerdutyRoot.CmdClause, data)
537-
ngwafWorkspacesAlertPagerdutyList := workspaceAlertPagerduty.NewListCommand(ngwafWorkspacesAlertPagerdutyRoot.CmdClause, data)
538-
ngwafWorkspacesAlertPagerdutyUpdate := workspaceAlertPagerduty.NewUpdateCommand(ngwafWorkspacesAlertPagerdutyRoot.CmdClause, data)
539-
ngwafWorkspacesAlertSlackRoot := workspaceAlertSlack.NewRootCommand(ngwafWorkspacesAlertRoot.CmdClause, data)
540-
ngwafWorkspacesAlertSlackCreate := workspaceAlertSlack.NewCreateCommand(ngwafWorkspacesAlertSlackRoot.CmdClause, data)
541-
ngwafWorkspacesAlertSlackDelete := workspaceAlertSlack.NewDeleteCommand(ngwafWorkspacesAlertSlackRoot.CmdClause, data)
542-
ngwafWorkspacesAlertSlackGet := workspaceAlertSlack.NewGetCommand(ngwafWorkspacesAlertSlackRoot.CmdClause, data)
543-
ngwafWorkspacesAlertSlackList := workspaceAlertSlack.NewListCommand(ngwafWorkspacesAlertSlackRoot.CmdClause, data)
544-
ngwafWorkspacesAlertSlackUpdate := workspaceAlertSlack.NewUpdateCommand(ngwafWorkspacesAlertSlackRoot.CmdClause, data)
545-
ngwafWorkspacesAlertWebhookRoot := workspaceAlertWebhook.NewRootCommand(ngwafWorkspacesAlertRoot.CmdClause, data)
546-
ngwafWorkspacesAlertWebhookCreate := workspaceAlertWebhook.NewCreateCommand(ngwafWorkspacesAlertWebhookRoot.CmdClause, data)
547-
ngwafWorkspacesAlertWebhookDelete := workspaceAlertWebhook.NewDeleteCommand(ngwafWorkspacesAlertWebhookRoot.CmdClause, data)
548-
ngwafWorkspacesAlertWebhookGet := workspaceAlertWebhook.NewGetCommand(ngwafWorkspacesAlertWebhookRoot.CmdClause, data)
549-
ngwafWorkspacesAlertWebhookGetSigningKey := workspaceAlertWebhook.NewGetSigningKeyCommand(ngwafWorkspacesAlertWebhookRoot.CmdClause, data)
550-
ngwafWorkspacesAlertWebhookList := workspaceAlertWebhook.NewListCommand(ngwafWorkspacesAlertWebhookRoot.CmdClause, data)
551-
ngwafWorkspacesAlertWebhookRotateSigningKey := workspaceAlertWebhook.NewRotateSigningKeyCommand(ngwafWorkspacesAlertWebhookRoot.CmdClause, data)
552-
ngwafWorkspacesAlertWebhookUpdate := workspaceAlertWebhook.NewUpdateCommand(ngwafWorkspacesAlertWebhookRoot.CmdClause, data)
496+
ngwafWorkspaceAlertRoot := alert.NewRootCommand(ngwafWorkspaceRoot.CmdClause, data)
497+
ngwafWorkspaceAlertDatadogRoot := workspaceAlertDatadog.NewRootCommand(ngwafWorkspaceAlertRoot.CmdClause, data)
498+
ngwafWorkspaceAlertDatadogCreate := workspaceAlertDatadog.NewCreateCommand(ngwafWorkspaceAlertDatadogRoot.CmdClause, data)
499+
ngwafWorkspaceAlertDatadogDelete := workspaceAlertDatadog.NewDeleteCommand(ngwafWorkspaceAlertDatadogRoot.CmdClause, data)
500+
ngwafWorkspaceAlertDatadogGet := workspaceAlertDatadog.NewGetCommand(ngwafWorkspaceAlertDatadogRoot.CmdClause, data)
501+
ngwafWorkspaceAlertDatadogList := workspaceAlertDatadog.NewListCommand(ngwafWorkspaceAlertDatadogRoot.CmdClause, data)
502+
ngwafWorkspaceAlertDatadogUpdate := workspaceAlertDatadog.NewUpdateCommand(ngwafWorkspaceAlertDatadogRoot.CmdClause, data)
503+
ngwafWorkspaceAlertJiraRoot := workspaceAlertJira.NewRootCommand(ngwafWorkspaceAlertRoot.CmdClause, data)
504+
ngwafWorkspaceAlertJiraCreate := workspaceAlertJira.NewCreateCommand(ngwafWorkspaceAlertJiraRoot.CmdClause, data)
505+
ngwafWorkspaceAlertJiraDelete := workspaceAlertJira.NewDeleteCommand(ngwafWorkspaceAlertJiraRoot.CmdClause, data)
506+
ngwafWorkspaceAlertJiraGet := workspaceAlertJira.NewGetCommand(ngwafWorkspaceAlertJiraRoot.CmdClause, data)
507+
ngwafWorkspaceAlertJiraList := workspaceAlertJira.NewListCommand(ngwafWorkspaceAlertJiraRoot.CmdClause, data)
508+
ngwafWorkspaceAlertJiraUpdate := workspaceAlertJira.NewUpdateCommand(ngwafWorkspaceAlertJiraRoot.CmdClause, data)
509+
ngwafWorkspaceAlertMailinglistRoot := workspaceAlertMailinglist.NewRootCommand(ngwafWorkspaceAlertRoot.CmdClause, data)
510+
ngwafWorkspaceAlertMailinglistCreate := workspaceAlertMailinglist.NewCreateCommand(ngwafWorkspaceAlertMailinglistRoot.CmdClause, data)
511+
ngwafWorkspaceAlertMailinglistDelete := workspaceAlertMailinglist.NewDeleteCommand(ngwafWorkspaceAlertMailinglistRoot.CmdClause, data)
512+
ngwafWorkspaceAlertMailinglistGet := workspaceAlertMailinglist.NewGetCommand(ngwafWorkspaceAlertMailinglistRoot.CmdClause, data)
513+
ngwafWorkspaceAlertMailinglistList := workspaceAlertMailinglist.NewListCommand(ngwafWorkspaceAlertMailinglistRoot.CmdClause, data)
514+
ngwafWorkspaceAlertMailinglistUpdate := workspaceAlertMailinglist.NewUpdateCommand(ngwafWorkspaceAlertMailinglistRoot.CmdClause, data)
515+
ngwafWorkspaceAlertMicrosoftteamsRoot := workspaceAlertMicrosoftteams.NewRootCommand(ngwafWorkspaceAlertRoot.CmdClause, data)
516+
ngwafWorkspaceAlertMicrosoftteamsCreate := workspaceAlertMicrosoftteams.NewCreateCommand(ngwafWorkspaceAlertMicrosoftteamsRoot.CmdClause, data)
517+
ngwafWorkspaceAlertMicrosoftteamsDelete := workspaceAlertMicrosoftteams.NewDeleteCommand(ngwafWorkspaceAlertMicrosoftteamsRoot.CmdClause, data)
518+
ngwafWorkspaceAlertMicrosoftteamsGet := workspaceAlertMicrosoftteams.NewGetCommand(ngwafWorkspaceAlertMicrosoftteamsRoot.CmdClause, data)
519+
ngwafWorkspaceAlertMicrosoftteamsList := workspaceAlertMicrosoftteams.NewListCommand(ngwafWorkspaceAlertMicrosoftteamsRoot.CmdClause, data)
520+
ngwafWorkspaceAlertMicrosoftteamsUpdate := workspaceAlertMicrosoftteams.NewUpdateCommand(ngwafWorkspaceAlertMicrosoftteamsRoot.CmdClause, data)
521+
ngwafWorkspaceAlertOpsgenieRoot := workspaceAlertOpsgenie.NewRootCommand(ngwafWorkspaceAlertRoot.CmdClause, data)
522+
ngwafWorkspaceAlertOpsgenieCreate := workspaceAlertOpsgenie.NewCreateCommand(ngwafWorkspaceAlertOpsgenieRoot.CmdClause, data)
523+
ngwafWorkspaceAlertOpsgenieDelete := workspaceAlertOpsgenie.NewDeleteCommand(ngwafWorkspaceAlertOpsgenieRoot.CmdClause, data)
524+
ngwafWorkspaceAlertOpsgenieGet := workspaceAlertOpsgenie.NewGetCommand(ngwafWorkspaceAlertOpsgenieRoot.CmdClause, data)
525+
ngwafWorkspaceAlertOpsgenieList := workspaceAlertOpsgenie.NewListCommand(ngwafWorkspaceAlertOpsgenieRoot.CmdClause, data)
526+
ngwafWorkspaceAlertOpsgenieUpdate := workspaceAlertOpsgenie.NewUpdateCommand(ngwafWorkspaceAlertOpsgenieRoot.CmdClause, data)
527+
ngwafWorkspaceAlertPagerdutyRoot := workspaceAlertPagerduty.NewRootCommand(ngwafWorkspaceAlertRoot.CmdClause, data)
528+
ngwafWorkspaceAlertPagerdutyCreate := workspaceAlertPagerduty.NewCreateCommand(ngwafWorkspaceAlertPagerdutyRoot.CmdClause, data)
529+
ngwafWorkspaceAlertPagerdutyDelete := workspaceAlertPagerduty.NewDeleteCommand(ngwafWorkspaceAlertPagerdutyRoot.CmdClause, data)
530+
ngwafWorkspaceAlertPagerdutyGet := workspaceAlertPagerduty.NewGetCommand(ngwafWorkspaceAlertPagerdutyRoot.CmdClause, data)
531+
ngwafWorkspaceAlertPagerdutyList := workspaceAlertPagerduty.NewListCommand(ngwafWorkspaceAlertPagerdutyRoot.CmdClause, data)
532+
ngwafWorkspaceAlertPagerdutyUpdate := workspaceAlertPagerduty.NewUpdateCommand(ngwafWorkspaceAlertPagerdutyRoot.CmdClause, data)
533+
ngwafWorkspaceAlertSlackRoot := workspaceAlertSlack.NewRootCommand(ngwafWorkspaceAlertRoot.CmdClause, data)
534+
ngwafWorkspaceAlertSlackCreate := workspaceAlertSlack.NewCreateCommand(ngwafWorkspaceAlertSlackRoot.CmdClause, data)
535+
ngwafWorkspaceAlertSlackDelete := workspaceAlertSlack.NewDeleteCommand(ngwafWorkspaceAlertSlackRoot.CmdClause, data)
536+
ngwafWorkspaceAlertSlackGet := workspaceAlertSlack.NewGetCommand(ngwafWorkspaceAlertSlackRoot.CmdClause, data)
537+
ngwafWorkspaceAlertSlackList := workspaceAlertSlack.NewListCommand(ngwafWorkspaceAlertSlackRoot.CmdClause, data)
538+
ngwafWorkspaceAlertSlackUpdate := workspaceAlertSlack.NewUpdateCommand(ngwafWorkspaceAlertSlackRoot.CmdClause, data)
539+
ngwafWorkspaceAlertWebhookRoot := workspaceAlertWebhook.NewRootCommand(ngwafWorkspaceAlertRoot.CmdClause, data)
540+
ngwafWorkspaceAlertWebhookCreate := workspaceAlertWebhook.NewCreateCommand(ngwafWorkspaceAlertWebhookRoot.CmdClause, data)
541+
ngwafWorkspaceAlertWebhookDelete := workspaceAlertWebhook.NewDeleteCommand(ngwafWorkspaceAlertWebhookRoot.CmdClause, data)
542+
ngwafWorkspaceAlertWebhookGet := workspaceAlertWebhook.NewGetCommand(ngwafWorkspaceAlertWebhookRoot.CmdClause, data)
543+
ngwafWorkspaceAlertWebhookGetSigningKey := workspaceAlertWebhook.NewGetSigningKeyCommand(ngwafWorkspaceAlertWebhookRoot.CmdClause, data)
544+
ngwafWorkspaceAlertWebhookList := workspaceAlertWebhook.NewListCommand(ngwafWorkspaceAlertWebhookRoot.CmdClause, data)
545+
ngwafWorkspaceAlertWebhookRotateSigningKey := workspaceAlertWebhook.NewRotateSigningKeyCommand(ngwafWorkspaceAlertWebhookRoot.CmdClause, data)
546+
ngwafWorkspaceAlertWebhookUpdate := workspaceAlertWebhook.NewUpdateCommand(ngwafWorkspaceAlertWebhookRoot.CmdClause, data)
553547
objectStorageRoot := objectstorage.NewRootCommand(app, data)
554548
objectStorageAccesskeysRoot := accesskeys.NewRootCommand(objectStorageRoot.CmdClause, data)
555549
objectStorageAccesskeysCreate := accesskeys.NewCreateCommand(objectStorageAccesskeysRoot.CmdClause, data)
@@ -1038,63 +1032,57 @@ func Define( // nolint:revive // function-length
10381032
ngwafVirtualpatchRetrieve,
10391033
ngwafVirtualpatchRoot,
10401034
ngwafVirtualpatchUpdate,
1041-
ngwafWorkspacesRoot,
1042-
ngwafWorkspacesCreate,
1043-
ngwafWorkspacesDelete,
1044-
ngwafWorkspacesGet,
1045-
ngwafWorkspacesList,
1046-
ngwafWorkspacesUpdate,
1047-
ngwafWorkspacesAlertRoot,
1048-
ngwafWorkspacesAlertDatadogRoot,
1049-
ngwafWorkspacesAlertDatadogCreate,
1050-
ngwafWorkspacesAlertDatadogDelete,
1051-
ngwafWorkspacesAlertDatadogGet,
1052-
ngwafWorkspacesAlertDatadogList,
1053-
ngwafWorkspacesAlertDatadogUpdate,
1054-
ngwafWorkspacesAlertJiraRoot,
1055-
ngwafWorkspacesAlertJiraCreate,
1056-
ngwafWorkspacesAlertJiraDelete,
1057-
ngwafWorkspacesAlertJiraGet,
1058-
ngwafWorkspacesAlertJiraList,
1059-
ngwafWorkspacesAlertJiraUpdate,
1060-
ngwafWorkspacesAlertMailinglistRoot,
1061-
ngwafWorkspacesAlertMailinglistCreate,
1062-
ngwafWorkspacesAlertMailinglistDelete,
1063-
ngwafWorkspacesAlertMailinglistGet,
1064-
ngwafWorkspacesAlertMailinglistList,
1065-
ngwafWorkspacesAlertMailinglistUpdate,
1066-
ngwafWorkspacesAlertMicrosoftteamsRoot,
1067-
ngwafWorkspacesAlertMicrosoftteamsCreate,
1068-
ngwafWorkspacesAlertMicrosoftteamsDelete,
1069-
ngwafWorkspacesAlertMicrosoftteamsGet,
1070-
ngwafWorkspacesAlertMicrosoftteamsList,
1071-
ngwafWorkspacesAlertMicrosoftteamsUpdate,
1072-
ngwafWorkspacesAlertOpsgenieRoot,
1073-
ngwafWorkspacesAlertOpsgenieCreate,
1074-
ngwafWorkspacesAlertOpsgenieDelete,
1075-
ngwafWorkspacesAlertOpsgenieGet,
1076-
ngwafWorkspacesAlertOpsgenieList,
1077-
ngwafWorkspacesAlertOpsgenieUpdate,
1078-
ngwafWorkspacesAlertPagerdutyRoot,
1079-
ngwafWorkspacesAlertPagerdutyCreate,
1080-
ngwafWorkspacesAlertPagerdutyDelete,
1081-
ngwafWorkspacesAlertPagerdutyGet,
1082-
ngwafWorkspacesAlertPagerdutyList,
1083-
ngwafWorkspacesAlertPagerdutyUpdate,
1084-
ngwafWorkspacesAlertSlackRoot,
1085-
ngwafWorkspacesAlertSlackCreate,
1086-
ngwafWorkspacesAlertSlackDelete,
1087-
ngwafWorkspacesAlertSlackGet,
1088-
ngwafWorkspacesAlertSlackList,
1089-
ngwafWorkspacesAlertSlackUpdate,
1090-
ngwafWorkspacesAlertWebhookRoot,
1091-
ngwafWorkspacesAlertWebhookCreate,
1092-
ngwafWorkspacesAlertWebhookDelete,
1093-
ngwafWorkspacesAlertWebhookGet,
1094-
ngwafWorkspacesAlertWebhookGetSigningKey,
1095-
ngwafWorkspacesAlertWebhookList,
1096-
ngwafWorkspacesAlertWebhookRotateSigningKey,
1097-
ngwafWorkspacesAlertWebhookUpdate,
1035+
ngwafWorkspaceAlertRoot,
1036+
ngwafWorkspaceAlertDatadogRoot,
1037+
ngwafWorkspaceAlertDatadogCreate,
1038+
ngwafWorkspaceAlertDatadogDelete,
1039+
ngwafWorkspaceAlertDatadogGet,
1040+
ngwafWorkspaceAlertDatadogList,
1041+
ngwafWorkspaceAlertDatadogUpdate,
1042+
ngwafWorkspaceAlertJiraRoot,
1043+
ngwafWorkspaceAlertJiraCreate,
1044+
ngwafWorkspaceAlertJiraDelete,
1045+
ngwafWorkspaceAlertJiraGet,
1046+
ngwafWorkspaceAlertJiraList,
1047+
ngwafWorkspaceAlertJiraUpdate,
1048+
ngwafWorkspaceAlertMailinglistRoot,
1049+
ngwafWorkspaceAlertMailinglistCreate,
1050+
ngwafWorkspaceAlertMailinglistDelete,
1051+
ngwafWorkspaceAlertMailinglistGet,
1052+
ngwafWorkspaceAlertMailinglistList,
1053+
ngwafWorkspaceAlertMailinglistUpdate,
1054+
ngwafWorkspaceAlertMicrosoftteamsRoot,
1055+
ngwafWorkspaceAlertMicrosoftteamsCreate,
1056+
ngwafWorkspaceAlertMicrosoftteamsDelete,
1057+
ngwafWorkspaceAlertMicrosoftteamsGet,
1058+
ngwafWorkspaceAlertMicrosoftteamsList,
1059+
ngwafWorkspaceAlertMicrosoftteamsUpdate,
1060+
ngwafWorkspaceAlertOpsgenieRoot,
1061+
ngwafWorkspaceAlertOpsgenieCreate,
1062+
ngwafWorkspaceAlertOpsgenieDelete,
1063+
ngwafWorkspaceAlertOpsgenieGet,
1064+
ngwafWorkspaceAlertOpsgenieList,
1065+
ngwafWorkspaceAlertOpsgenieUpdate,
1066+
ngwafWorkspaceAlertPagerdutyRoot,
1067+
ngwafWorkspaceAlertPagerdutyCreate,
1068+
ngwafWorkspaceAlertPagerdutyDelete,
1069+
ngwafWorkspaceAlertPagerdutyGet,
1070+
ngwafWorkspaceAlertPagerdutyList,
1071+
ngwafWorkspaceAlertPagerdutyUpdate,
1072+
ngwafWorkspaceAlertSlackRoot,
1073+
ngwafWorkspaceAlertSlackCreate,
1074+
ngwafWorkspaceAlertSlackDelete,
1075+
ngwafWorkspaceAlertSlackGet,
1076+
ngwafWorkspaceAlertSlackList,
1077+
ngwafWorkspaceAlertSlackUpdate,
1078+
ngwafWorkspaceAlertWebhookRoot,
1079+
ngwafWorkspaceAlertWebhookCreate,
1080+
ngwafWorkspaceAlertWebhookDelete,
1081+
ngwafWorkspaceAlertWebhookGet,
1082+
ngwafWorkspaceAlertWebhookGetSigningKey,
1083+
ngwafWorkspaceAlertWebhookList,
1084+
ngwafWorkspaceAlertWebhookRotateSigningKey,
1085+
ngwafWorkspaceAlertWebhookUpdate,
10981086
ngwafWorkspaceRoot,
10991087
ngwafWorkspaceCreate,
11001088
ngwafWorkspaceDelete,

0 commit comments

Comments
 (0)