integration_fabrics
Creates, updates, deletes, gets or lists an integration_fabrics resource.
Overview
| Name | integration_fabrics |
| Type | Resource |
| Id | azure.dashboard.integration_fabrics |
Fields
The following fields are returned by SELECT queries:
- get
- 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. |
dataSourceResourceId | string | The resource Id of the Azure resource which is used to configure Grafana data source. E.g., an Azure Monitor Workspace, an Azure Data Explorer cluster, etc. |
location | string | The geo-location where the resource lives. Required. |
provisioningState | string | Provisioning state of the resource. Known values are: "Accepted", "Creating", "Updating", "Deleting", "Succeeded", "Failed", "Canceled", "Deleted", and "NotSpecified". (Accepted, Creating, Updating, Deleting, Succeeded, Failed, Canceled, Deleted, NotSpecified) |
scenarios | array | A list of integration scenarios covered by this integration fabric. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
tags | object | Resource tags. |
targetResourceId | string | The resource Id of the Azure resource being integrated with Azure Managed Grafana. E.g., an Azure Kubernetes Service cluster. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
| 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. |
dataSourceResourceId | string | The resource Id of the Azure resource which is used to configure Grafana data source. E.g., an Azure Monitor Workspace, an Azure Data Explorer cluster, etc. |
location | string | The geo-location where the resource lives. Required. |
provisioningState | string | Provisioning state of the resource. Known values are: "Accepted", "Creating", "Updating", "Deleting", "Succeeded", "Failed", "Canceled", "Deleted", and "NotSpecified". (Accepted, Creating, Updating, Deleting, Succeeded, Failed, Canceled, Deleted, NotSpecified) |
scenarios | array | A list of integration scenarios covered by this integration fabric. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
tags | object | Resource tags. |
targetResourceId | string | The resource Id of the Azure resource being integrated with Azure Managed Grafana. E.g., an Azure Kubernetes Service cluster. |
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 |
|---|---|---|---|---|
get | select | resource_group_name, workspace_name, integration_fabric_name, subscription_id | Get a IntegrationFabric. | |
list | select | resource_group_name, workspace_name, subscription_id | List IntegrationFabric resources by ManagedGrafana. | |
create | insert | resource_group_name, workspace_name, integration_fabric_name, subscription_id, location | Create a IntegrationFabric. | |
update | update | resource_group_name, workspace_name, integration_fabric_name, subscription_id | Update a IntegrationFabric. | |
delete | delete | resource_group_name, workspace_name, integration_fabric_name, subscription_id | Delete a IntegrationFabric. |
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 |
|---|---|---|
integration_fabric_name | string | The integration fabric name of Azure Managed Grafana. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string | |
workspace_name | string | The workspace name of Azure Managed Grafana. Required. |
SELECT examples
- get
- list
Get a IntegrationFabric.
SELECT
id,
name,
dataSourceResourceId,
location,
provisioningState,
scenarios,
systemData,
tags,
targetResourceId,
type
FROM azure.dashboard.integration_fabrics
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND workspace_name = '{{ workspace_name }}' -- required
AND integration_fabric_name = '{{ integration_fabric_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
List IntegrationFabric resources by ManagedGrafana.
SELECT
id,
name,
dataSourceResourceId,
location,
provisioningState,
scenarios,
systemData,
tags,
targetResourceId,
type
FROM azure.dashboard.integration_fabrics
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND workspace_name = '{{ workspace_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
INSERT examples
- create
- Manifest
Create a IntegrationFabric.
INSERT INTO azure.dashboard.integration_fabrics (
tags,
location,
properties,
resource_group_name,
workspace_name,
integration_fabric_name,
subscription_id
)
SELECT
'{{ tags }}',
'{{ location }}' /* required */,
'{{ properties }}',
'{{ resource_group_name }}',
'{{ workspace_name }}',
'{{ integration_fabric_name }}',
'{{ subscription_id }}'
RETURNING
id,
name,
location,
properties,
systemData,
tags,
type
;
# Description fields are for documentation purposes
- name: integration_fabrics
props:
- name: resource_group_name
value: "{{ resource_group_name }}"
description: Required parameter for the integration_fabrics resource.
- name: workspace_name
value: "{{ workspace_name }}"
description: Required parameter for the integration_fabrics resource.
- name: integration_fabric_name
value: "{{ integration_fabric_name }}"
description: Required parameter for the integration_fabrics resource.
- name: subscription_id
value: "{{ subscription_id }}"
description: Required parameter for the integration_fabrics resource.
- name: tags
value: "{{ tags }}"
description: |
Resource tags.
- name: location
value: "{{ location }}"
description: |
The geo-location where the resource lives. Required.
- name: properties
description: |
:vartype properties: ~azure.mgmt.dashboard.models.IntegrationFabricProperties
value:
provisioningState: "{{ provisioningState }}"
targetResourceId: "{{ targetResourceId }}"
dataSourceResourceId: "{{ dataSourceResourceId }}"
scenarios:
- "{{ scenarios }}"
UPDATE examples
- update
Update a IntegrationFabric.
UPDATE azure.dashboard.integration_fabrics
SET
tags = '{{ tags }}',
properties = '{{ properties }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND workspace_name = '{{ workspace_name }}' --required
AND integration_fabric_name = '{{ integration_fabric_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
RETURNING
id,
name,
location,
properties,
systemData,
tags,
type;
DELETE examples
- delete
Delete a IntegrationFabric.
DELETE FROM azure.dashboard.integration_fabrics
WHERE resource_group_name = '{{ resource_group_name }}' --required
AND workspace_name = '{{ workspace_name }}' --required
AND integration_fabric_name = '{{ integration_fabric_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;