listIdentitySources
inline suspend fun VerifiedPermissionsClient.listIdentitySources(crossinline block: ListIdentitySourcesRequest.Builder.() -> Unit): ListIdentitySourcesResponse
Returns a paginated list of all of the identity sources defined in the specified policy store.
Samples
fun main() {
//sampleStart
// The following example request creates lists the identity sources currently defined in the specified
// policy store.
val resp = verifiedPermissionsClient.listIdentitySources {
policyStoreId = "C7v5xMplfFH3i3e4Jrzb1a"
}
//sampleEnd
}