(self)
| 49 | |
| 50 | |
| 51 | def get_secrets(self): |
| 52 | algorithm_id = self.get_algorithm_id() |
| 53 | url = "/v1/algorithms/" + algorithm_id + "/secrets" |
| 54 | api_response = self.client.getJsonHelper(url) |
| 55 | return api_response |
| 56 | |
| 57 | |
| 58 | def set_secret(self, short_name, secret_key, secret_value, description=None): |
nothing calls this directly
no test coverage detected