Skip to main content

scale_units_from_json

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

Overview

Namescale_units_from_json
TypeResource
Idazure_stack.fabric_admin.scale_units_from_json

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
createinsertsubscriptionId, resourceGroupName, location, scaleUnitAdd a new scale unit.

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
locationstringThe name of Azure region.
resourceGroupNamestringName of the resource group.
scaleUnitstringName of the scale units.
subscriptionIdstringThe ID of the target subscription.

INSERT examples

Add a new scale unit.

INSERT INTO azure_stack.fabric_admin.scale_units_from_json (
data__clusterName,
data__physicalNodes,
data__torSwitchBgpAsn,
data__softwareBgpAsn,
data__torSwitchBgpPeerIp,
data__infrastructureNetwork,
data__storageNetwork,
data__netQosPriority,
subscriptionId,
resourceGroupName,
location,
scaleUnit
)
SELECT
'{{ clusterName }}',
'{{ physicalNodes }}',
'{{ torSwitchBgpAsn }}',
'{{ softwareBgpAsn }}',
'{{ torSwitchBgpPeerIp }}',
'{{ infrastructureNetwork }}',
'{{ storageNetwork }}',
{{ netQosPriority }},
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ location }}',
'{{ scaleUnit }}'
;