accounts
Creates, updates, deletes, gets or lists an accounts
resource.
Overview
Name | accounts |
Type | Resource |
Id | azure_isv.newrelic.accounts |
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 , userEmail , location | List all the existing accounts |
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 |
---|---|---|
location | string | Location for NewRelic. |
subscriptionId | string | The ID of the target subscription. |
userEmail | string | User Email. |
SELECT
examples
- list
List all the existing accounts
SELECT
properties
FROM azure_isv.newrelic.accounts
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND userEmail = '{{ userEmail }}' -- required
AND location = '{{ location }}' -- required
;