monitors_marketplace_saas_resource_details
Creates, updates, deletes, gets or lists a monitors_marketplace_saas_resource_details
resource.
Overview
Name | monitors_marketplace_saas_resource_details |
Type | Resource |
Id | azure_isv.dynatrace.monitors_marketplace_saas_resource_details |
Fields
The following fields are returned by SELECT
queries:
- get
ARM operation completed successfully.
Name | Datatype | Description |
---|---|---|
marketplaceSaaSResourceId | string | Id of the Marketplace SaaS Resource |
marketplaceSubscriptionStatus | string | Marketplace subscription status |
planId | string | Id of the plan |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId | Get Marketplace SaaS resource details of a tenant under a specific subscription |
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 |
---|---|---|
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- get
Get Marketplace SaaS resource details of a tenant under a specific subscription
SELECT
marketplaceSaaSResourceId,
marketplaceSubscriptionStatus,
planId
FROM azure_isv.dynatrace.monitors_marketplace_saas_resource_details
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;