github.com/jfrog/jfrog-cli@v1.54.1/docs/bintray/accesskeys/help.go (about)

     1  package accesskeys
     2  
     3  const Description string = "Manage Access Keys."
     4  
     5  var Usage = []string{"jfrog bt acc-keys [command options]",
     6  	"jfrog bt acc-keys [command options] <action> <key ID>"}
     7  
     8  const Arguments string = `	none
     9  		If no arguments are provided, the command provides a list of all access keys active for the subject.
    10  
    11  	action
    12  		Action can be one of:
    13  			create: Creates a new access key
    14  			show: Provides details of the entitlement specified in the --id option.
    15  			update: Updates the entitlement specified in the --id option.
    16  			delete: Deletes the entitlement specified in the --id option.
    17  
    18  	key ID
    19  		The ID of the key on which the action should be performed.`