Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cli-generation-checksum
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9c39902d7e866613dbfe066caee3af50081e703e9c114393bf66abdba6abc3e7
95a34e2970dcde24e8baa0ceaf78d25d36a143fe81a6d8fdfb5c8be80e26dcf7
9 changes: 9 additions & 0 deletions cmd/lint/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ var properNouns = []string{
"Connect",
"Control Center",
"CRL",
"Cloud Notifications",
"Data Encryption Key",
"Databricks",
"DEK",
Expand Down Expand Up @@ -214,12 +215,16 @@ var properNouns = []string{
"Tableflow",
"Unified Stream Manager",
"USM",
"Webhook",
"ZooKeeper™",
// cli-tfgen:lint-properNouns — DO NOT REMOVE (verified by TestCliTfgenMarkers)
}

// vocabWords are words that don't appear in the US dictionary, but are Confluent-related words.
var vocabWords = []string{
"24h",
"30d",
"7d",
"a2a",
"ack",
"acks",
Expand Down Expand Up @@ -299,7 +304,10 @@ var vocabWords = []string{
"jsonschema",
"jwks",
"JWT",
"crns",
"eg",
"enum",
"integrations",
"kafka",
"kek",
"keychain",
Expand Down Expand Up @@ -387,6 +395,7 @@ var vocabWords = []string{
"vv",
"vvv",
"vvvv",
"webhook",
"whitelist",
"wikipedia",
"workspace",
Expand Down
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ require (
github.com/confluentinc/ccloud-sdk-go-v2/networking-gateway v0.7.0
github.com/confluentinc/ccloud-sdk-go-v2/networking-ip v0.2.0
github.com/confluentinc/ccloud-sdk-go-v2/networking-privatelink v0.3.0
github.com/confluentinc/ccloud-sdk-go-v2/notifications v0.1.0
github.com/confluentinc/ccloud-sdk-go-v2/org v0.14.0
github.com/confluentinc/ccloud-sdk-go-v2/provider-integration v0.2.0
github.com/confluentinc/ccloud-sdk-go-v2/rtce v0.1.0
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,8 @@ github.com/confluentinc/ccloud-sdk-go-v2/networking-ip v0.2.0 h1:ZHNF2DeqVlNPuKG
github.com/confluentinc/ccloud-sdk-go-v2/networking-ip v0.2.0/go.mod h1:KTShFBZA7WG8LcxlWjJpoZFdWkJ+uOw3dDuwAHs5eKU=
github.com/confluentinc/ccloud-sdk-go-v2/networking-privatelink v0.3.0 h1:mC0E1nKUt57AxMM4Lpdfd+KA/YZwJVwro9ER+dCUFi8=
github.com/confluentinc/ccloud-sdk-go-v2/networking-privatelink v0.3.0/go.mod h1:GIHF2cYOUKx+6ycYokr4i8E4cuNBC22xqvO/IhqZ31U=
github.com/confluentinc/ccloud-sdk-go-v2/notifications v0.1.0 h1:LidTP8SPc9g3Cw56eW73kCbB9JbKZ5iJ0UkgmG6Gn9I=
github.com/confluentinc/ccloud-sdk-go-v2/notifications v0.1.0/go.mod h1:VpOjD3MKw8uRUNhwBEkEbH1a+JTs50FiNANMh0LYOQ8=
github.com/confluentinc/ccloud-sdk-go-v2/org v0.14.0 h1:n+4lb+CFCExljsp4Goyb4JTDL/UibGUhT0k++5JNhw8=
github.com/confluentinc/ccloud-sdk-go-v2/org v0.14.0/go.mod h1:z+7wtFzDczbMGda7AG7w14BGE3pQSjaFYhNbvkZAlOs=
github.com/confluentinc/ccloud-sdk-go-v2/provider-integration v0.2.0 h1:UN2a+aqYhk95ro+wVLkeB/8W7n+UV2KsE3jNFbbDCSw=
Expand Down
2 changes: 2 additions & 0 deletions internal/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ import (
"github.com/confluentinc/cli/v4/internal/login"
"github.com/confluentinc/cli/v4/internal/logout"
"github.com/confluentinc/cli/v4/internal/network"
"github.com/confluentinc/cli/v4/internal/notifications"
"github.com/confluentinc/cli/v4/internal/organization"
"github.com/confluentinc/cli/v4/internal/plugin"
"github.com/confluentinc/cli/v4/internal/prompt"
Expand Down Expand Up @@ -128,6 +129,7 @@ func NewConfluentCommand(cfg *config.Config) *cobra.Command {
cmd.AddCommand(login.New(cfg, prerunner, ccloudClientFactory, mdsClientManager, loginCredentialsManager, loginOrganizationManager, authTokenHandler))
cmd.AddCommand(logout.New(cfg, prerunner, authTokenHandler))
cmd.AddCommand(network.New(cfg, prerunner))
cmd.AddCommand(notifications.New(cfg, prerunner))
cmd.AddCommand(organization.New(cfg, prerunner))
cmd.AddCommand(plugin.New(cfg, prerunner))
cmd.AddCommand(prompt.New(cfg))
Expand Down
29 changes: 29 additions & 0 deletions internal/notifications/command.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

103 changes: 103 additions & 0 deletions internal/notifications/command_integration.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

112 changes: 112 additions & 0 deletions internal/notifications/command_integration_create.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

47 changes: 47 additions & 0 deletions internal/notifications/command_integration_delete.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading