| Total Complexity | 2 |
| Total Lines | 8 |
| Duplicated Lines | 0 % |
| 1 | # Licensed to the StackStorm, Inc ('StackStorm') under one or more |
||
| 19 | class GetCA(ICSPBaseActions): |
||
| 20 | def run(self, connection_details): |
||
| 21 | if connection_details: |
||
| 22 | self.setConnection(connection_details) |
||
| 23 | self.getSessionID() |
||
| 24 | endpoint = "/rest/certificates/ca" |
||
| 25 | |||
| 26 | return self.icspGET(endpoint) |
||
| 27 |