prefect.cli.cloud.webhook
¶
Command line interface for working with webhooks
create
async
¶
Create a new Cloud webhook
Source code in /home/runner/work/docs/docs/prefect_source/src/prefect/cli/cloud/webhook.py
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 106 |
|
delete
async
¶
Delete an existing Cloud webhook
Source code in /home/runner/work/docs/docs/prefect_source/src/prefect/cli/cloud/webhook.py
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
|
get
async
¶
Retrieve a webhook by ID.
Source code in /home/runner/work/docs/docs/prefect_source/src/prefect/cli/cloud/webhook.py
57 58 59 60 61 62 63 64 65 66 67 68 |
|
ls
async
¶
Fetch and list all webhooks in your workspace
Source code in /home/runner/work/docs/docs/prefect_source/src/prefect/cli/cloud/webhook.py
43 44 45 46 47 48 49 50 51 52 53 54 |
|
rotate
async
¶
Rotate url for an existing Cloud webhook, in case it has been compromised
Source code in /home/runner/work/docs/docs/prefect_source/src/prefect/cli/cloud/webhook.py
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
|
toggle
async
¶
Toggle the enabled status of an existing Cloud webhook
Source code in /home/runner/work/docs/docs/prefect_source/src/prefect/cli/cloud/webhook.py
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
|
update
async
¶
Partially update an existing Cloud webhook
Source code in /home/runner/work/docs/docs/prefect_source/src/prefect/cli/cloud/webhook.py
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 177 |
|