organizations
Creates, updates, deletes, gets or lists an organizations resource.
Overview
| Name | organizations |
| Type | Resource |
| Id | azure_isv.newrelic.organizations |
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 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.
| 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 organizations
SELECT
properties
FROM azure_isv.newrelic.organizations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND userEmail = '{{ userEmail }}' -- required
AND location = '{{ location }}' -- required
;