Skip to main content

monitors_marketplace_saas_resource_details

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

Overview

Namemonitors_marketplace_saas_resource_details
TypeResource
Idazure_isv.dynatrace.monitors_marketplace_saas_resource_details

Fields

The following fields are returned by SELECT queries:

ARM operation completed successfully.

NameDatatypeDescription
marketplaceSaaSResourceIdstringId of the Marketplace SaaS Resource
marketplaceSubscriptionStatusstringMarketplace subscription status
planIdstringId of the plan

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionIdGet 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.

NameDatatypeDescription
subscriptionIdstringThe ID of the target subscription.

SELECT examples

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
;