github.com/jfrog/jfrog-cli-go@v1.22.1-0.20200318093948-4826ef344ffd/docs/bintray/entitlements/help.go (about)

     1  package entitlements
     2  
     3  const Description string = "Manage Entitlements."
     4  
     5  var Usage = []string{"jfrog bt ent [command options] <scope>",
     6  	"jfrog bt ent [command options] <action> <action scope>"}
     7  
     8  const Arguments string = `	scope
     9  		A scope can be specified as one of the following:
    10  			- subject/repository.
    11  			- subject/repository/package.
    12  			- subject/repository/package/version.
    13  
    14  	action
    15  		Action can be one of:
    16  			create: Creates a new entitlement with access as specified in the --access option.
    17  			show: Provides details of the entitlement specified in the --id option.
    18  			update: Updates the entitlement specified in the --id option.
    19  			delete: Deletes the entitlement specified in the --id option.
    20  
    21  	action scope
    22  		The scope on which the action is applied as described above.
    23  		In addition, for create, the --access option must be specified.
    24  		For show, update, or delete, the --id option must be specified.`