jfrog_delete_permission_target
Remove a permission target from the JFrog platform by specifying its name to manage user access and permissions effectively.
Instructions
Delete a permission target from the JFrog platform
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the permission target to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "The name of the permission target to delete",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}