plans
Creates, updates, deletes, gets or lists a plans resource.
Overview
| Name | plans |
| Type | Resource |
| Id | azure_isv.newrelic.plans |
Fields
The following fields are returned by SELECT queries:
- list
ARM operation completed successfully.
| Name | Datatype | Description |
|---|---|---|
properties | object | The resource-specific properties for this resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId | accountId, organizationId | List 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.
| Name | Datatype | Description |
|---|---|---|
subscriptionId | string | The ID of the target subscription. |
accountId | string | Account Id. |
organizationId | string | Organization Id. |
SELECT examples
- list
List plans data
SELECT
properties
FROM azure_isv.newrelic.plans
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND accountId = '{{ accountId }}'
AND organizationId = '{{ organizationId }}'
;