Skip to content

Commit

Permalink
Add new API resources names (#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasCAI-mlv authored Jan 26, 2025
1 parent 96e0144 commit 8bbec0d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public class ApiResourcesController {
.namespaced(true)
.synchronizable(true)
.path("connectors")
.names(List.of("connects", "connect", "co"))
.names(List.of("connects", "connect", "co", "connector", "connectors"))
.build();

/**
Expand All @@ -72,7 +72,7 @@ public class ApiResourcesController {
.namespaced(true)
.synchronizable(false)
.path("streams")
.names(List.of("streams", "stream", "st"))
.names(List.of("streams", "stream", "st", "kstream", "kstreams", "ks"))
.build();

/**
Expand Down Expand Up @@ -127,7 +127,7 @@ public class ApiResourcesController {
.namespaced(true)
.synchronizable(false)
.path("connect-clusters")
.names(List.of("connect-clusters", "connect-cluster", "cc"))
.names(List.of("connect-clusters", "connect-cluster", "cc", "kconnect", "kconnects", "kc"))
.build();

/**
Expand Down

0 comments on commit 8bbec0d

Please sign in to comment.