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