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