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

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

Methods

NameAccessible byRequired ParamsDescription
createINSERTlocation, resourceGroupName, scaleUnit, subscriptionIdAdd a new scale unit.

INSERT example

Use the following StackQL query and manifest file to create a new scale_units_from_json resource.

/*+ create */
INSERT INTO azure_stack.fabric_admin.scale_units_from_json (
location,
resourceGroupName,
scaleUnit,
subscriptionId,
clusterName,
physicalNodes,
torSwitchBgpAsn,
softwareBgpAsn,
torSwitchBgpPeerIp,
infrastructureNetwork,
storageNetwork,
netQosPriority
)
SELECT
'{{ location }}',
'{{ resourceGroupName }}',
'{{ scaleUnit }}',
'{{ subscriptionId }}',
'{{ clusterName }}',
'{{ physicalNodes }}',
'{{ torSwitchBgpAsn }}',
'{{ softwareBgpAsn }}',
'{{ torSwitchBgpPeerIp }}',
'{{ infrastructureNetwork }}',
'{{ storageNetwork }}',
'{{ netQosPriority }}'
;