Skip to main content

plans

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

Overview

Nameplans
TypeResource
Idazure_isv.newrelic.plans

Fields

The following fields are returned by SELECT queries:

ARM operation completed successfully.

NameDatatypeDescription
propertiesobjectThe resource-specific properties for this resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionIdaccountId, organizationIdList plans data

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.
accountIdstringAccount Id.
organizationIdstringOrganization Id.

SELECT examples

List plans data

SELECT
properties
FROM azure_isv.newrelic.plans
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND accountId = '{{ accountId }}'
AND organizationId = '{{ organizationId }}'
;