github.com/elopio/cli@v6.21.2-0.20160902224010-ea909d1fdb2f+incompatible/commands/v2/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 {"events", "files", "logs"}, 18 {"env", "set-env", "unset-env"}, 19 {"stacks", "stack"}, 20 {"copy-source", "create-app-manifest"}, 21 {"get-health-check", "set-health-check", "enable-ssh", "disable-ssh", "ssh-enabled", "ssh"}, 22 }, 23 }, 24 { 25 CategoryName: "SERVICES:", 26 CommandList: [][]string{ 27 {"marketplace", "services", "service"}, 28 {"create-service", "update-service", "delete-service", "rename-service"}, 29 {"create-service-key", "service-keys", "service-key", "delete-service-key"}, 30 {"bind-service", "unbind-service"}, 31 {"bind-route-service", "unbind-route-service"}, 32 {"create-user-provided-service", "update-user-provided-service"}, 33 }, 34 }, 35 { 36 CategoryName: "ORGS:", 37 CommandList: [][]string{ 38 {"orgs", "org"}, 39 {"create-org", "delete-org", "rename-org"}, 40 }, 41 }, 42 { 43 CategoryName: "SPACES:", 44 CommandList: [][]string{ 45 {"spaces", "space"}, 46 {"create-space", "delete-space", "rename-space"}, 47 {"allow-space-ssh", "disallow-space-ssh", "space-ssh-allowed"}, 48 }, 49 }, 50 { 51 CategoryName: "DOMAINS:", 52 CommandList: [][]string{ 53 {"domains", "create-domain", "delete-domain", "create-shared-domain", "delete-shared-domain"}, 54 {"router-groups"}, 55 }, 56 }, 57 { 58 CategoryName: "ROUTES:", 59 CommandList: [][]string{ 60 {"routes", "create-route", "check-route", "map-route", "unmap-route", "delete-route", "delete-orphaned-routes"}, 61 }, 62 }, 63 { 64 CategoryName: "BUILDPACKS:", 65 CommandList: [][]string{ 66 {"buildpacks", "create-buildpack", "update-buildpack", "rename-buildpack", "delete-buildpack"}, 67 }, 68 }, 69 { 70 CategoryName: "USER ADMIN:", 71 CommandList: [][]string{ 72 {"create-user", "delete-user"}, 73 {"org-users", "set-org-role", "unset-org-role"}, 74 {"space-users", "set-space-role", "unset-space-role"}, 75 }, 76 }, 77 { 78 CategoryName: "ORG ADMIN:", 79 CommandList: [][]string{ 80 {"quotas", "quota", "set-quota"}, 81 {"create-quota", "delete-quota", "update-quota"}, 82 {"share-private-domain", "unshare-private-domain"}, 83 }, 84 }, 85 { 86 CategoryName: "SPACE ADMIN:", 87 CommandList: [][]string{ 88 {"space-quotas", "space-quota"}, 89 {"create-space-quota", "update-space-quota", "delete-space-quota"}, 90 {"set-space-quota", "unset-space-quota"}, 91 }, 92 }, 93 { 94 CategoryName: "SERVICE ADMIN:", 95 CommandList: [][]string{ 96 {"service-auth-tokens", "create-service-auth-token", "update-service-auth-token", "delete-service-auth-token"}, 97 {"service-brokers", "create-service-broker", "update-service-broker", "delete-service-broker", "rename-service-broker"}, 98 {"migrate-service-instances", "purge-service-offering", "purge-service-instance"}, 99 {"service-access", "enable-service-access", "disable-service-access"}, 100 }, 101 }, 102 { 103 CategoryName: "SECURITY GROUP:", 104 CommandList: [][]string{ 105 {"security-group", "security-groups", "create-security-group", "update-security-group", "delete-security-group", "bind-security-group", "unbind-security-group"}, 106 {"bind-staging-security-group", "staging-security-groups", "unbind-staging-security-group"}, 107 {"bind-running-security-group", "running-security-groups", "unbind-running-security-group"}, 108 }, 109 }, 110 { 111 CategoryName: "ENVIRONMENT VARIABLE GROUPS:", 112 CommandList: [][]string{ 113 {"running-environment-variable-group", "staging-environment-variable-group", "set-staging-environment-variable-group", "set-running-environment-variable-group"}, 114 }, 115 }, 116 { 117 CategoryName: "FEATURE FLAGS:", 118 CommandList: [][]string{ 119 {"feature-flags", "feature-flag", "enable-feature-flag", "disable-feature-flag"}, 120 }, 121 }, 122 { 123 CategoryName: "ADVANCED:", 124 CommandList: [][]string{ 125 {"curl", "config", "oauth-token", "ssh-code"}, 126 }, 127 }, 128 { 129 CategoryName: "ADD/REMOVE PLUGIN REPOSITORY:", 130 CommandList: [][]string{ 131 {"add-plugin-repo", "remove-plugin-repo", "list-plugin-repos", "repo-plugins"}, 132 }, 133 }, 134 { 135 CategoryName: "ADD/REMOVE PLUGIN:", 136 CommandList: [][]string{ 137 {"plugins", "install-plugin", "uninstall-plugin"}, 138 }, 139 }, 140 }