Skip to main content

gateways_capacities

Creates, updates, deletes, gets or lists a gateways_capacities resource.

Overview

Namegateways_capacities
TypeResource
Idazure.spring_apps.gateways_capacities

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
updateupdatesubscriptionId, resourceGroupName, serviceName, gatewayNameOperation to update an exiting Spring Cloud Gateway capacity.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
gatewayNamestringThe name of Spring Cloud Gateway.
resourceGroupNamestringThe name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
serviceNamestringThe name of the Service resource.
subscriptionIdstringGets subscription ID which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

UPDATE examples

Operation to update an exiting Spring Cloud Gateway capacity.

UPDATE azure.spring_apps.gateways_capacities
SET
data__sku = '{{ sku }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND serviceName = '{{ serviceName }}' --required
AND gatewayName = '{{ gatewayName }}' --required
RETURNING
properties,
sku;