github.com/wanddynosios/cli/v8@v8.7.9-0.20240221182337-1a92e3a7017f/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"},
    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", "upgrade-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", "route"},
    68  			{"create-route", "check-route", "map-route", "unmap-route", "delete-route"},
    69  			{"delete-orphaned-routes"},
    70  			{"update-destination"},
    71  			{"share-route", "unshare-route"},
    72  			{"move-route"},
    73  		},
    74  	},
    75  	{
    76  		CategoryName: "NETWORK POLICIES:",
    77  		CommandList: [][]string{
    78  			{"network-policies", "add-network-policy", "remove-network-policy"},
    79  		},
    80  	},
    81  	{
    82  		CategoryName: "BUILDPACKS:",
    83  		CommandList: [][]string{
    84  			{"buildpacks", "create-buildpack", "update-buildpack", "rename-buildpack", "delete-buildpack"},
    85  		},
    86  	},
    87  	{
    88  		CategoryName: "USER ADMIN:",
    89  		CommandList: [][]string{
    90  			{"create-user", "delete-user"},
    91  			{"org-users", "set-org-role", "unset-org-role"},
    92  			{"space-users", "set-space-role", "unset-space-role"},
    93  		},
    94  	},
    95  	{
    96  		CategoryName: "ORG ADMIN:",
    97  		CommandList: [][]string{
    98  			{"org-quotas", "org-quota", "set-org-quota"},
    99  			{"create-org-quota", "delete-org-quota", "update-org-quota"},
   100  			{"share-private-domain", "unshare-private-domain"},
   101  		},
   102  	},
   103  	{
   104  		CategoryName: "SPACE ADMIN:",
   105  		CommandList: [][]string{
   106  			{"space-quotas", "space-quota"},
   107  			{"create-space-quota", "update-space-quota", "delete-space-quota"},
   108  			{"set-space-quota", "unset-space-quota"},
   109  		},
   110  	},
   111  	{
   112  		CategoryName: "SERVICE ADMIN:",
   113  		CommandList: [][]string{
   114  			{"service-brokers", "create-service-broker", "update-service-broker", "delete-service-broker", "rename-service-broker"},
   115  			{"purge-service-offering", "purge-service-instance"},
   116  			{"service-access", "enable-service-access", "disable-service-access"},
   117  		},
   118  	},
   119  	{
   120  		CategoryName: "SECURITY GROUP:",
   121  		CommandList: [][]string{
   122  			{"security-group", "security-groups", "create-security-group", "update-security-group", "delete-security-group", "bind-security-group", "unbind-security-group"},
   123  			{"bind-staging-security-group", "staging-security-groups", "unbind-staging-security-group"},
   124  			{"bind-running-security-group", "running-security-groups", "unbind-running-security-group"},
   125  		},
   126  	},
   127  	{
   128  		CategoryName: "ENVIRONMENT VARIABLE GROUPS:",
   129  		CommandList: [][]string{
   130  			{"running-environment-variable-group", "staging-environment-variable-group", "set-staging-environment-variable-group", "set-running-environment-variable-group"},
   131  		},
   132  	},
   133  	{
   134  		CategoryName: "ISOLATION SEGMENTS:",
   135  		CommandList: [][]string{
   136  			{"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"},
   137  		},
   138  	},
   139  	{
   140  		CategoryName: "FEATURE FLAGS:",
   141  		CommandList: [][]string{
   142  			{"feature-flags", "feature-flag", "enable-feature-flag", "disable-feature-flag"},
   143  		},
   144  	},
   145  	{
   146  		CategoryName: "METADATA:",
   147  		CommandList: [][]string{
   148  			{"labels", "set-label", "unset-label"},
   149  		},
   150  	},
   151  	{
   152  		CategoryName: "ADVANCED:",
   153  		CommandList: [][]string{
   154  			{"curl", "config", "oauth-token", "ssh-code"},
   155  		},
   156  	},
   157  	{
   158  		CategoryName: "ADD/REMOVE PLUGIN REPOSITORY:",
   159  		CommandList: [][]string{
   160  			{"add-plugin-repo", "remove-plugin-repo", "list-plugin-repos", "repo-plugins"},
   161  		},
   162  	},
   163  	{
   164  		CategoryName: "ADD/REMOVE PLUGIN:",
   165  		CommandList: [][]string{
   166  			{"plugins", "install-plugin", "uninstall-plugin"},
   167  		},
   168  	},
   169  }
   170  
   171  var ExperimentalHelpCategoryList = []HelpCategory{
   172  	{
   173  		CategoryName: "EXPERIMENTAL COMMANDS:",
   174  		CommandList: [][]string{
   175  			{"revisions", "revision", "rollback"},
   176  		},
   177  	},
   178  }