az spring-cloud gateway route-config

Note

This reference is part of the spring-cloud extension for the Azure CLI (version 2.30.0 or higher). The extension will automatically install the first time you run an az spring-cloud gateway route-config command. Learn more about extensions.

Commands to manage gateway route configs in Azure Spring Cloud.

Commands

az spring-cloud gateway route-config create

Create a gateway route config with routing rules of Json array format.

az spring-cloud gateway route-config list

List all existing gateway route configs.

az spring-cloud gateway route-config remove

Delete an existing gateway route config.

az spring-cloud gateway route-config show

Get an existing gateway route config.

az spring-cloud gateway route-config update

Update an existing gateway route config with routing rules of Json array format.

az spring-cloud gateway route-config create

Create a gateway route config with routing rules of Json array format.

az spring-cloud gateway route-config create --name
                                            --resource-group
                                            --service
                                            [--app-name]
                                            [--routes-file]
                                            [--routes-json]

Examples

Create a gateway route config targeting the app in Azure Spring Cloud.

az spring-cloud gateway route-config create -s MyService -g MyResourceGroup --name MyName --app-name MyApp --routes-file MyJson.json

Required Parameters

--name -n

Name of route config.

--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

--service -s

Name of Azure Spring Cloud, you can configure the default service using az configure --defaults spring-cloud=.

Optional Parameters

--app-name

The Azure Spring Cloud app name to configure the route.

--routes-file

The file path of JSON array of API routes.

--routes-json

The JSON array of API routes.

az spring-cloud gateway route-config list

List all existing gateway route configs.

az spring-cloud gateway route-config list --resource-group
                                          --service

Examples

List all existing gateway route configs.

az spring-cloud gateway route-config list -s MyService -g MyResourceGroup

Required Parameters

--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

--service -s

Name of Azure Spring Cloud, you can configure the default service using az configure --defaults spring-cloud=.

az spring-cloud gateway route-config remove

Delete an existing gateway route config.

az spring-cloud gateway route-config remove --name
                                            --resource-group
                                            --service

Examples

Delete an existing gateway route config.

az spring-cloud gateway route-config remove -s MyService -g MyResourceGroup --name MyName

Required Parameters

--name -n

Name of route config.

--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

--service -s

Name of Azure Spring Cloud, you can configure the default service using az configure --defaults spring-cloud=.

az spring-cloud gateway route-config show

Get an existing gateway route config.

az spring-cloud gateway route-config show --name
                                          --resource-group
                                          --service

Examples

Get an existing gateway route config.

az spring-cloud gateway route-config show -s MyService -g MyResourceGroup --name MyName

Required Parameters

--name -n

Name of route config.

--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

--service -s

Name of Azure Spring Cloud, you can configure the default service using az configure --defaults spring-cloud=.

az spring-cloud gateway route-config update

Update an existing gateway route config with routing rules of Json array format.

az spring-cloud gateway route-config update --name
                                            --resource-group
                                            --service
                                            [--app-name]
                                            [--routes-file]
                                            [--routes-json]

Examples

Update an existing gateway route config targeting the app in Azure Spring Cloud.

az spring-cloud gateway route-config update -s MyService -g MyResourceGroup --name MyName --app-name MyApp --routes-file MyJson.json

Required Parameters

--name -n

Name of route config.

--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

--service -s

Name of Azure Spring Cloud, you can configure the default service using az configure --defaults spring-cloud=.

Optional Parameters

--app-name

The Azure Spring Cloud app name to configure the route.

--routes-file

The file path of JSON array of API routes.

--routes-json

The JSON array of API routes.