Skip to main content

organizations

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

Overview

Nameorganizations
TypeResource
Idazure_isv.newrelic.organizations

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 organizations

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 organizations

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