github.com/sleungcy-sap/cli@v7.1.0+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", "create-app", "revisions"}, 15 {"push", "scale", "delete", "rename"}, 16 {"cancel-deployment"}, 17 {"start", "stop", "restart", "stage-package", "restage", "restart-app-instance"}, 18 {"run-task", "tasks", "terminate-task"}, 19 {"packages", "create-package"}, 20 {"droplets", "set-droplet", "download-droplet"}, 21 {"events", "logs"}, 22 {"env", "set-env", "unset-env"}, 23 {"stacks", "stack"}, 24 {"copy-source", "create-app-manifest"}, 25 {"get-health-check", "set-health-check", "enable-ssh", "disable-ssh", "ssh-enabled", "ssh"}, 26 }, 27 }, 28 { 29 CategoryName: "SERVICES:", 30 CommandList: [][]string{ 31 {"marketplace", "services", "service"}, 32 {"create-service", "update-service", "delete-service", "rename-service"}, 33 {"create-service-key", "service-keys", "service-key", "delete-service-key"}, 34 {"bind-service", "unbind-service"}, 35 {"bind-route-service", "unbind-route-service"}, 36 {"create-user-provided-service", "update-user-provided-service"}, 37 {"share-service", "unshare-service"}, 38 }, 39 }, 40 { 41 CategoryName: "ORGS:", 42 CommandList: [][]string{ 43 {"orgs", "org"}, 44 {"create-org", "delete-org", "rename-org"}, 45 }, 46 }, 47 { 48 CategoryName: "SPACES:", 49 CommandList: [][]string{ 50 {"spaces", "space"}, 51 {"create-space", "delete-space", "rename-space", "apply-manifest"}, 52 {"allow-space-ssh", "disallow-space-ssh", "space-ssh-allowed"}, 53 }, 54 }, 55 { 56 CategoryName: "DOMAINS:", 57 CommandList: [][]string{ 58 {"domains"}, 59 {"create-private-domain", "delete-private-domain"}, 60 {"create-shared-domain", "delete-shared-domain"}, 61 {"router-groups"}, 62 }, 63 }, 64 { 65 CategoryName: "ROUTES:", 66 CommandList: [][]string{ 67 {"routes", "create-route", "check-route", "map-route", "unmap-route", "delete-route", "delete-orphaned-routes"}, 68 }, 69 }, 70 { 71 CategoryName: "NETWORK POLICIES:", 72 CommandList: [][]string{ 73 {"network-policies", "add-network-policy", "remove-network-policy"}, 74 }, 75 }, 76 { 77 CategoryName: "BUILDPACKS:", 78 CommandList: [][]string{ 79 {"buildpacks", "create-buildpack", "update-buildpack", "rename-buildpack", "delete-buildpack"}, 80 }, 81 }, 82 { 83 CategoryName: "USER ADMIN:", 84 CommandList: [][]string{ 85 {"create-user", "delete-user"}, 86 {"org-users", "set-org-role", "unset-org-role"}, 87 {"space-users", "set-space-role", "unset-space-role"}, 88 }, 89 }, 90 { 91 CategoryName: "ORG ADMIN:", 92 CommandList: [][]string{ 93 {"org-quotas", "org-quota", "set-org-quota"}, 94 {"create-org-quota", "delete-org-quota", "update-org-quota"}, 95 {"share-private-domain", "unshare-private-domain"}, 96 }, 97 }, 98 { 99 CategoryName: "SPACE ADMIN:", 100 CommandList: [][]string{ 101 {"space-quotas", "space-quota"}, 102 {"create-space-quota", "update-space-quota", "delete-space-quota"}, 103 {"set-space-quota", "unset-space-quota"}, 104 }, 105 }, 106 { 107 CategoryName: "SERVICE ADMIN:", 108 CommandList: [][]string{ 109 {"service-brokers", "create-service-broker", "update-service-broker", "delete-service-broker", "rename-service-broker"}, 110 {"purge-service-offering", "purge-service-instance"}, 111 {"service-access", "enable-service-access", "disable-service-access"}, 112 }, 113 }, 114 { 115 CategoryName: "SECURITY GROUP:", 116 CommandList: [][]string{ 117 {"security-group", "security-groups", "create-security-group", "update-security-group", "delete-security-group", "bind-security-group", "unbind-security-group"}, 118 {"bind-staging-security-group", "staging-security-groups", "unbind-staging-security-group"}, 119 {"bind-running-security-group", "running-security-groups", "unbind-running-security-group"}, 120 }, 121 }, 122 { 123 CategoryName: "ENVIRONMENT VARIABLE GROUPS:", 124 CommandList: [][]string{ 125 {"running-environment-variable-group", "staging-environment-variable-group", "set-staging-environment-variable-group", "set-running-environment-variable-group"}, 126 }, 127 }, 128 { 129 CategoryName: "ISOLATION SEGMENTS:", 130 CommandList: [][]string{ 131 {"isolation-segments", "create-isolation-segment", "delete-isolation-segment", "enable-org-isolation", "disable-org-isolation", "set-org-default-isolation-segment", "reset-org-default-isolation-segment", "set-space-isolation-segment", "reset-space-isolation-segment"}, 132 }, 133 }, 134 { 135 CategoryName: "FEATURE FLAGS:", 136 CommandList: [][]string{ 137 {"feature-flags", "feature-flag", "enable-feature-flag", "disable-feature-flag"}, 138 }, 139 }, 140 { 141 CategoryName: "METADATA:", 142 CommandList: [][]string{ 143 {"labels", "set-label", "unset-label"}, 144 }, 145 }, 146 { 147 CategoryName: "ADVANCED:", 148 CommandList: [][]string{ 149 {"curl", "config", "oauth-token", "ssh-code"}, 150 }, 151 }, 152 { 153 CategoryName: "ADD/REMOVE PLUGIN REPOSITORY:", 154 CommandList: [][]string{ 155 {"add-plugin-repo", "remove-plugin-repo", "list-plugin-repos", "repo-plugins"}, 156 }, 157 }, 158 { 159 CategoryName: "ADD/REMOVE PLUGIN:", 160 CommandList: [][]string{ 161 {"plugins", "install-plugin", "uninstall-plugin"}, 162 }, 163 }, 164 } 165 166 var ExperimentalHelpCategoryList = []HelpCategory{ 167 { 168 CategoryName: "EXPERIMENTAL COMMANDS:", 169 CommandList: [][]string{ 170 {"rollback"}, 171 }, 172 }, 173 }