product_deployments
Creates, updates, deletes, gets or lists a product_deployments
resource.
Overview
Name | product_deployments |
Type | Resource |
Id | azure_stack.deployment_admin.product_deployments |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Name | Datatype | Description |
---|---|---|
id | string | ID of the resource. |
name | string | Name of the resource. |
eTag | string | entity tag |
location | string | Location of the resource. |
properties | object | Product deployment resource properties |
type | string | Type of Resource. |
Name | Datatype | Description |
---|---|---|
id | string | ID of the resource. |
name | string | Name of the resource. |
eTag | string | entity tag |
location | string | Location of the resource. |
properties | object | Product deployment resource properties |
type | string | Type of Resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , productId | Invokes bootstrap action on the product deployment | |
list | select | subscriptionId | Invokes 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.
Name | Datatype | Description |
---|---|---|
productId | string | The product identifier. |
subscriptionId | string | Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- get
- list
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
;
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
;