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

     1  package config
     2  
     3  const Description string = "Configure Artifactory details."
     4  
     5  var Usage = []string{"jfrog rt c [command options] [server ID]",
     6  	"jfrog rt c show [server ID]",
     7  	"jfrog rt c import [Server token]",
     8  	"jfrog rt c export [Server ID]",
     9  	"jfrog rt c [--interactive=<true|false>] delete [server ID]",
    10  	"jfrog rt c [--interactive=<true|false>] clear"}
    11  
    12  const Arguments string = `	server ID
    13  		A unique ID for the new Artifactory server configuration.
    14  
    15  	show
    16  		Shows the stored configuration.
    17  		In case this argument is followed by a configured server ID, then only this server's configurations is shown.
    18  	
    19  	import
    20  		Imports an Artifactory server configuration from a server token. A server token is generated by the "jfrog rt c export [Server ID]" command.
    21  	
    22  	export
    23  		Creates an Artifactory server configuration token. The generated token can be imported by the "jfrog rt c import [Server token]" command.
    24  
    25  	delete
    26  		This argument should be followed by a configured server ID. The configuration for this server ID will be deleted.
    27  
    28  	clear
    29  		Clears all stored configuration.`