Skip to main content

accounts

Creates, updates, deletes, gets or lists an accounts resource.

Overview

Nameaccounts
TypeResource
Idazure_isv.newrelic.accounts

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
listselectsubscriptionId, userEmail, locationList 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.

NameDatatypeDescription
locationstringLocation for NewRelic.
subscriptionIdstringThe ID of the target subscription.
userEmailstringUser Email.

SELECT examples

List all the existing accounts

SELECT
properties
FROM azure_isv.newrelic.accounts
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND userEmail = '{{ userEmail }}' -- required
AND location = '{{ location }}' -- required
;