plans
Creates, updates, deletes, gets or lists a plans resource.
Overview
| Name | plans |
| Type | Resource |
| Id | azure_isv.newrelicobservability.plans |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
accountCreationSource | string | Source of account creation. Known values are: "LIFTR" and "NEWRELIC". |
orgCreationSource | string | Source of org creation. Known values are: "LIFTR" and "NEWRELIC". |
planData | object | Plan details. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscription_id | accountId, organizationId | Lists the plans data linked to your organization, providing an overview of the available plans. |
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 |
|---|---|---|
subscription_id | string | |
accountId | string | Account Id. Default value is None. |
organizationId | string | Organization Id. Default value is None. |
SELECT examples
- list
Lists the plans data linked to your organization, providing an overview of the available plans.
SELECT
id,
name,
accountCreationSource,
orgCreationSource,
planData,
systemData,
type
FROM azure_isv.newrelicobservability.plans
WHERE subscription_id = '{{ subscription_id }}' -- required
AND accountId = '{{ accountId }}'
AND organizationId = '{{ organizationId }}'
;