dapr_components
Creates, updates, deletes, gets or lists a dapr_components resource.
Overview
| Name | dapr_components |
| Type | Resource |
| Id | azure.app.dapr_components |
Fields
The following fields are returned by SELECT queries:
- get
| 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. |
componentType | string | Component type. |
ignoreErrors | boolean | Boolean describing if the component errors are ignores. |
initTimeout | string | Initialization timeout. |
metadata | array | Component metadata. |
scopes | array | Names of container apps that can use this Dapr component. |
secrets | array | Collection of secrets used by a Dapr component. |
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". |
version | string | Component version. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | Get a dapr component. Get a dapr component. | ||
list_raw | exec | Get the Dapr Components for a managed environment. Get the Dapr Components for a managed environment. |
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 |
|---|
SELECT examples
- get
Get a dapr component. Get a dapr component.
SELECT
id,
name,
componentType,
ignoreErrors,
initTimeout,
metadata,
scopes,
secrets,
systemData,
type,
version
FROM azure.app.dapr_components
;
Lifecycle Methods
- list_raw
Get the Dapr Components for a managed environment. Get the Dapr Components for a managed environment.
EXEC azure.app.dapr_components.list_raw
;