prefect.cli.cloud.webhook
Command line interface for working with webhooks
create(webhook_name, description=typer.Option('', '--description', '-d', help='Description of the webhook'), template=typer.Option(None, '--template', '-t', help='Jinja2 template expression'))
async
Create a new Cloud webhook
Source code in src/prefect/cli/cloud/webhook.py
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
|
delete(webhook_id)
async
Delete an existing Cloud webhook
Source code in src/prefect/cli/cloud/webhook.py
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
|
get(webhook_id)
async
Retrieve a webhook by ID.
Source code in src/prefect/cli/cloud/webhook.py
56 57 58 59 60 61 62 63 64 65 66 67 |
|
ls()
async
Fetch and list all webhooks in your workspace
Source code in src/prefect/cli/cloud/webhook.py
42 43 44 45 46 47 48 49 50 51 52 53 |
|
rotate(webhook_id)
async
Rotate url for an existing Cloud webhook, in case it has been compromised
Source code in src/prefect/cli/cloud/webhook.py
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
|
toggle(webhook_id)
async
Toggle the enabled status of an existing Cloud webhook
Source code in src/prefect/cli/cloud/webhook.py
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 |
|
update(webhook_id, webhook_name=typer.Option(None, '--name', '-n', help='Webhook name'), description=typer.Option(None, '--description', '-d', help='Description of the webhook'), template=typer.Option(None, '--template', '-t', help='Jinja2 template expression'))
async
Partially update an existing Cloud webhook
Source code in src/prefect/cli/cloud/webhook.py
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
|