chore: remove plugin list and plugin search commands from docs (#12663)

* chore: remove plugin list and plugin search commands from docs

* chore: update menu.json
This commit is contained in:
Eslam λ Hefnawy 2024-07-09 12:57:54 -07:00 committed by GitHub
parent 47121fcb25
commit d2f09094d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 0 additions and 68 deletions

View File

@ -88,8 +88,6 @@
"rollback": "providers/aws/cli-reference/rollback",
"rollback function": "providers/aws/cli-reference/rollback-function",
"remove": "providers/aws/cli-reference/remove",
"plugin list": "providers/aws/cli-reference/plugin-list",
"plugin search": "providers/aws/cli-reference/plugin-search",
"plugin install": "providers/aws/cli-reference/plugin-install",
"plugin uninstall": "providers/aws/cli-reference/plugin-uninstall",
"generate event": "providers/aws/cli-reference/generate-event",

View File

@ -1,29 +0,0 @@
<!--
title: Serverless Framework Commands - AWS Lambda - Plugin List
menuText: plugin list
menuOrder: 17
description: List all available Serverless plugins
layout: Doc
-->
<!-- DOCS-SITE-LINK:START automatically generated -->
### [Read this on the main serverless docs site](https://www.serverless.com/framework/docs/providers/aws/cli-reference/plugin-list)
<!-- DOCS-SITE-LINK:END -->
# Plugin List
List all available plugins on the terminal. Connected to the [Serverless plugin registry](https://github.com/serverless/plugins).
```bash
serverless plugin list
```
## Options
- _None_
## Provided lifecycle events
- `plugin:list:list`

View File

@ -1,37 +0,0 @@
<!--
title: Serverless Framework Commands - AWS Lambda - Plugin Search
menuText: plugin search
menuOrder: 18
description: Search through all available Serverless plugins
layout: Doc
-->
<!-- DOCS-SITE-LINK:START automatically generated -->
### [Read this on the main serverless docs site](https://www.serverless.com/framework/docs/providers/aws/cli-reference/plugin-search)
<!-- DOCS-SITE-LINK:END -->
# Plugin Search
Search for a specific plugin based on a search query. Connected to the [Serverless plugin registry](https://github.com/serverless/plugins).
```bash
serverless plugin search --query query
```
## Options
- `--query` or `-q` The query you want to use for your search. **Required**.
## Provided lifecycle events
- `plugin:search:search`
## Examples
### Search for a `sqs` plugin
```bash
serverless plugin search --query sqs
```