creation_supported
Creates, updates, deletes, gets or lists a creation_supported resource.
Overview
| Name | creation_supported |
| Type | Resource |
| Id | azure_isv.datadog.creation_supported |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
name | string | The ARM id of the subscription. |
creationSupported | boolean | Indicates if selected subscription supports Datadog resource creation, if not it is already being monitored for the selected organization via multi subscription feature. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscription_id, datadogOrganizationId | Informs if the current subscription is being already monitored for selected Datadog organization. Informs if the current subscription is being already monitored for selected Datadog organization. | |
list_raw | exec | subscription_id, datadogOrganizationId | Informs if the current subscription is being already monitored for selected Datadog organization. Informs if the current subscription is being already monitored for selected Datadog organization. |
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 |
|---|---|---|
datadogOrganizationId | string | Datadog Organization Id. Required. |
subscription_id | string |
SELECT examples
- get
Informs if the current subscription is being already monitored for selected Datadog organization. Informs if the current subscription is being already monitored for selected Datadog organization.
SELECT
name,
creationSupported
FROM azure_isv.datadog.creation_supported
WHERE subscription_id = '{{ subscription_id }}' -- required
AND datadogOrganizationId = '{{ datadogOrganizationId }}' -- required
;
Lifecycle Methods
- list_raw
Informs if the current subscription is being already monitored for selected Datadog organization. Informs if the current subscription is being already monitored for selected Datadog organization.
EXEC azure_isv.datadog.creation_supported.list_raw
@subscription_id='{{ subscription_id }}' --required,
@datadogOrganizationId='{{ datadogOrganizationId }}' --required
;