Skip to main content

deployment_licenses

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

Overview

Namedeployment_licenses
TypeResource
Idazure_stack.azure_stack.deployment_licenses

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
createinsertsubscriptionIdCreates a license that can be used to deploy an Azure Stack device.

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
subscriptionIdstringSubscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

INSERT examples

Creates a license that can be used to deploy an Azure Stack device.

INSERT INTO azure_stack.azure_stack.deployment_licenses (
data__verificationVersion,
subscriptionId
)
SELECT
'{{ verificationVersion }}',
'{{ subscriptionId }}'
RETURNING
signature,
temporaryLicenseChain
;