deletePolicyStore
inline suspend fun VerifiedPermissionsClient.deletePolicyStore(crossinline block: DeletePolicyStoreRequest.Builder.() -> Unit): DeletePolicyStoreResponse
Deletes the specified policy store.
This operation is idempotent. If you specify a policy store that does not exist, the request response will still return a successful HTTP 200 status code.
Samples
fun main() {
//sampleStart
// The following example deletes the specified policy store.
val resp = verifiedPermissionsClient.deletePolicyStore {
policyStoreId = "C7v5xMplfFH3i3e4Jrzb1a"
}
//sampleEnd
}