Skip to main content

product_deployments

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

Overview

Nameproduct_deployments
TypeResource
Idazure_stack.deployment_admin.product_deployments

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringID of the resource.
namestringName of the resource.
eTagstringentity tag
locationstringLocation of the resource.
propertiesobjectProduct deployment resource properties
typestringType of Resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, productIdInvokes bootstrap action on the product deployment
listselectsubscriptionIdInvokes bootstrap action on the product deployment

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

SELECT examples

Invokes bootstrap action on the product deployment

SELECT
id,
name,
eTag,
location,
properties,
type
FROM azure_stack.deployment_admin.product_deployments
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND productId = '{{ productId }}' -- required
;