Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | # Licensed to the StackStorm, Inc ('StackStorm') under one or more |
||
18 | class DisableHeartbeatAction(OpsGenieBaseAction): |
||
19 | def run(self, name): |
||
20 | """ |
||
21 | """ |
||
22 | |||
23 | body = {"apiKey": self.api_key, |
||
24 | "name": name} |
||
25 | |||
26 | data = self._req("POST", |
||
27 | "v1/json/heartbeat/disable", |
||
28 | body=body) |
||
29 | |||
30 | return data |
||
31 |