github.com/orange-cloudfoundry/cli@v7.1.0+incompatible/command/v6/create_user_provided_service_command.go (about) 1 package v6 2 3 import ( 4 "code.cloudfoundry.org/cli/command" 5 "code.cloudfoundry.org/cli/command/flag" 6 "code.cloudfoundry.org/cli/command/translatableerror" 7 ) 8 9 type CreateUserProvidedServiceCommand struct { 10 RequiredArgs flag.ServiceInstance `positional-args:"yes"` 11 SyslogDrainURL string `short:"l" description:"URL to which logs for bound applications will be streamed"` 12 Credentials string `short:"p" description:"Credentials, provided inline or in a file, to be exposed in the VCAP_SERVICES environment variable for bound applications"` 13 RouteServiceURL string `short:"r" description:"URL to which requests for bound routes will be forwarded. Scheme for this URL must be https"` 14 Tags string `short:"t" description:"User provided tags"` 15 usage interface{} `usage:"CF_NAME create-user-provided-service SERVICE_INSTANCE [-p CREDENTIALS] [-l SYSLOG_DRAIN_URL] [-r ROUTE_SERVICE_URL] [-t TAGS]\n\n Pass comma separated credential parameter names to enable interactive mode:\n CF_NAME create-user-provided-service SERVICE_INSTANCE -p \"comma, separated, parameter, names\"\n\n Pass credential parameters as JSON to create a service non-interactively:\n CF_NAME create-user-provided-service SERVICE_INSTANCE -p '{\"key1\":\"value1\",\"key2\":\"value2\"}'\n\n Specify a path to a file containing JSON:\n CF_NAME create-user-provided-service SERVICE_INSTANCE -p PATH_TO_FILE\n\nEXAMPLES:\n CF_NAME create-user-provided-service my-db-mine -p \"username, password\"\n CF_NAME create-user-provided-service my-db-mine -p /path/to/credentials.json\n CF_NAME create-user-provided-service my-db-mine -t \"list, of, tags\"\n CF_NAME create-user-provided-service my-drain-service -l syslog://example.com\n CF_NAME create-user-provided-service my-route-service -r https://example.com\n\n Linux/Mac:\n CF_NAME create-user-provided-service my-db-mine -p '{\"username\":\"admin\",\"password\":\"pa55woRD\"}'\n\n Windows Command Line:\n CF_NAME create-user-provided-service my-db-mine -p \"{\\\"username\\\":\\\"admin\\\",\\\"password\\\":\\\"pa55woRD\\\"}\"\n\n Windows PowerShell:\n CF_NAME create-user-provided-service my-db-mine -p '{\\\"username\\\":\\\"admin\\\",\\\"password\\\":\\\"pa55woRD\\\"}'"` 16 relatedCommands interface{} `related_commands:"bind-service, services"` 17 } 18 19 func (CreateUserProvidedServiceCommand) Setup(config command.Config, ui command.UI) error { 20 return nil 21 } 22 23 func (CreateUserProvidedServiceCommand) Execute(args []string) error { 24 return translatableerror.UnrefactoredCommandError{} 25 }