(orgSlug, realmSlug string)
| 232 | } |
| 233 | |
| 234 | func fetchCredentialsPath(orgSlug, realmSlug string) string { |
| 235 | return "/orgs/" + url.QueryEscape(orgSlug) + "/realms/" + url.QueryEscape(realmSlug) + "/x509/credentials" |
| 236 | } |
| 237 | |
| 238 | func (s *Session) FetchCredentials(ctx context.Context, orgSlug, realmSlug string) ([]Credential, error) { |
| 239 | var creds struct { |
no outgoing calls
no test coverage detected