-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fluvio-cms now supports updating all the CLI docs as well
- Loading branch information
Showing
121 changed files
with
1,325 additions
and
338 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
--- | ||
title: Cloud Webhook | ||
menu: Webhook | ||
weight: 30 | ||
--- | ||
|
||
The `fluvio cloud webhook` family of commands is used to create, delete, and manage webhook urls in cloud. | ||
|
||
%copy first-line% | ||
```bash | ||
$ fluvio cloud webhook -h | ||
``` | ||
|
||
{{% inline-embed file="embeds/cli/help/fluvio-cloud-webhook.md" %}} | ||
|
||
--- | ||
|
||
## `fluvio cloud webhook create` | ||
|
||
This command is used to create a new webhook url that maps to the current user's topic | ||
|
||
%copy first-line% | ||
```bash | ||
$ fluvio cloud webhook create -h | ||
``` | ||
|
||
{{% inline-embed file="embeds/cli/help/fluvio-cloud-webhook-create.md" %}} | ||
|
||
Example usage: | ||
|
||
%copy first-line% | ||
```bash | ||
$ fluvio cloud webhook create my-webhook-1 --topic my-topic | ||
``` | ||
|
||
--- | ||
|
||
## `fluvio cloud webhook delete` | ||
|
||
This command deletes a webhook url for the current user | ||
|
||
%copy first-line% | ||
```bash | ||
$ fluvio cloud webhook delete -h | ||
``` | ||
|
||
{{% inline-embed file="embeds/cli/help/fluvio-cloud-webhook-delete.md" %}} | ||
|
||
Example usage: | ||
|
||
%copy first-line% | ||
```bash | ||
$ fluvio cloud webhook delete my-webhook-1 | ||
``` | ||
|
||
--- | ||
|
||
## `fluvio cloud webhook list` | ||
|
||
Command to show the webhooks associated with current user. | ||
|
||
%copy first-line% | ||
```bash | ||
$ fluvio cloud webhook list -h | ||
``` | ||
|
||
{{% inline-embed file="embeds/cli/help/fluvio-cloud-webhook-list.md" %}} | ||
|
||
Example usage: | ||
|
||
%copy first-line% | ||
```bash | ||
$ fluvio cloud webhook list | ||
``` | ||
|
||
--- | ||
|
||
## `fluvio cloud webhook update` | ||
|
||
Command to show update mapping details of a webhook url | ||
|
||
%copy first-line% | ||
```bash | ||
$ fluvio cloud webhook update -h | ||
``` | ||
|
||
{{% inline-embed file="embeds/cli/help/fluvio-cloud-webhook-update.md" %}} | ||
|
||
Example usage: | ||
|
||
%copy first-line% | ||
```bash | ||
$ fluvio cloud webhook update --topic different-topic my-webhook | ||
``` |
Oops, something went wrong.