(self)
| 177 | return response.json() |
| 178 | |
| 179 | def get_secret_providers(self): |
| 180 | url = "/v1/secret-provider" |
| 181 | api_response = self.getJsonHelper(url) |
| 182 | return api_response |
| 183 | |
| 184 | def get_organization_errors(self, org_name): |
| 185 | """Gets the errors for the organization. |
no test coverage detected