github.com/dcarley/cf-cli@v6.24.1-0.20170220111324-4225ff346898+incompatible/command/common/internal/help_all_display.go (about) 1 package internal 2 3 var HelpCategoryList = []HelpCategory{ 4 { 5 CategoryName: "GETTING STARTED:", 6 CommandList: [][]string{ 7 {"help", "version", "login", "logout", "passwd", "target"}, 8 {"api", "auth"}, 9 }, 10 }, 11 { 12 CategoryName: "APPS:", 13 CommandList: [][]string{ 14 {"apps", "app"}, 15 {"push", "scale", "delete", "rename"}, 16 {"start", "stop", "restart", "restage", "restart-app-instance"}, 17 {"run-task", "tasks", "terminate-task"}, 18 {"events", "files", "logs"}, 19 {"env", "set-env", "unset-env"}, 20 {"stacks", "stack"}, 21 {"copy-source", "create-app-manifest"}, 22 {"get-health-check", "set-health-check", "enable-ssh", "disable-ssh", "ssh-enabled", "ssh"}, 23 }, 24 }, 25 { 26 CategoryName: "SERVICES:", 27 CommandList: [][]string{ 28 {"marketplace", "services", "service"}, 29 {"create-service", "update-service", "delete-service", "rename-service"}, 30 {"create-service-key", "service-keys", "service-key", "delete-service-key"}, 31 {"bind-service", "unbind-service"}, 32 {"bind-route-service", "unbind-route-service"}, 33 {"create-user-provided-service", "update-user-provided-service"}, 34 }, 35 }, 36 { 37 CategoryName: "ORGS:", 38 CommandList: [][]string{ 39 {"orgs", "org"}, 40 {"create-org", "delete-org", "rename-org"}, 41 }, 42 }, 43 { 44 CategoryName: "SPACES:", 45 CommandList: [][]string{ 46 {"spaces", "space"}, 47 {"create-space", "delete-space", "rename-space"}, 48 {"allow-space-ssh", "disallow-space-ssh", "space-ssh-allowed"}, 49 }, 50 }, 51 { 52 CategoryName: "DOMAINS:", 53 CommandList: [][]string{ 54 {"domains", "create-domain", "delete-domain", "create-shared-domain", "delete-shared-domain"}, 55 {"router-groups"}, 56 }, 57 }, 58 { 59 CategoryName: "ROUTES:", 60 CommandList: [][]string{ 61 {"routes", "create-route", "check-route", "map-route", "unmap-route", "delete-route", "delete-orphaned-routes"}, 62 }, 63 }, 64 { 65 CategoryName: "BUILDPACKS:", 66 CommandList: [][]string{ 67 {"buildpacks", "create-buildpack", "update-buildpack", "rename-buildpack", "delete-buildpack"}, 68 }, 69 }, 70 { 71 CategoryName: "USER ADMIN:", 72 CommandList: [][]string{ 73 {"create-user", "delete-user"}, 74 {"org-users", "set-org-role", "unset-org-role"}, 75 {"space-users", "set-space-role", "unset-space-role"}, 76 }, 77 }, 78 { 79 CategoryName: "ORG ADMIN:", 80 CommandList: [][]string{ 81 {"quotas", "quota", "set-quota"}, 82 {"create-quota", "delete-quota", "update-quota"}, 83 {"share-private-domain", "unshare-private-domain"}, 84 }, 85 }, 86 { 87 CategoryName: "SPACE ADMIN:", 88 CommandList: [][]string{ 89 {"space-quotas", "space-quota"}, 90 {"create-space-quota", "update-space-quota", "delete-space-quota"}, 91 {"set-space-quota", "unset-space-quota"}, 92 }, 93 }, 94 { 95 CategoryName: "SERVICE ADMIN:", 96 CommandList: [][]string{ 97 {"service-auth-tokens", "create-service-auth-token", "update-service-auth-token", "delete-service-auth-token"}, 98 {"service-brokers", "create-service-broker", "update-service-broker", "delete-service-broker", "rename-service-broker"}, 99 {"migrate-service-instances", "purge-service-offering", "purge-service-instance"}, 100 {"service-access", "enable-service-access", "disable-service-access"}, 101 }, 102 }, 103 { 104 CategoryName: "SECURITY GROUP:", 105 CommandList: [][]string{ 106 {"security-group", "security-groups", "create-security-group", "update-security-group", "delete-security-group", "bind-security-group", "unbind-security-group"}, 107 {"bind-staging-security-group", "staging-security-groups", "unbind-staging-security-group"}, 108 {"bind-running-security-group", "running-security-groups", "unbind-running-security-group"}, 109 }, 110 }, 111 { 112 CategoryName: "ENVIRONMENT VARIABLE GROUPS:", 113 CommandList: [][]string{ 114 {"running-environment-variable-group", "staging-environment-variable-group", "set-staging-environment-variable-group", "set-running-environment-variable-group"}, 115 }, 116 }, 117 { 118 CategoryName: "FEATURE FLAGS:", 119 CommandList: [][]string{ 120 {"feature-flags", "feature-flag", "enable-feature-flag", "disable-feature-flag"}, 121 }, 122 }, 123 { 124 CategoryName: "ADVANCED:", 125 CommandList: [][]string{ 126 {"curl", "config", "oauth-token", "ssh-code"}, 127 }, 128 }, 129 { 130 CategoryName: "ADD/REMOVE PLUGIN REPOSITORY:", 131 CommandList: [][]string{ 132 {"add-plugin-repo", "remove-plugin-repo", "list-plugin-repos", "repo-plugins"}, 133 }, 134 }, 135 { 136 CategoryName: "ADD/REMOVE PLUGIN:", 137 CommandList: [][]string{ 138 {"plugins", "install-plugin", "uninstall-plugin"}, 139 }, 140 }, 141 }