Skip to main content

dapr_components

Creates, updates, deletes, gets or lists a dapr_components resource.

Overview

Namedapr_components
TypeResource
Idazure.app.dapr_components

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
componentTypestringComponent type.
ignoreErrorsbooleanBoolean describing if the component errors are ignores.
initTimeoutstringInitialization timeout.
metadataarrayComponent metadata.
scopesarrayNames of container apps that can use this Dapr component.
secretsarrayCollection of secrets used by a Dapr component.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".
versionstringComponent version.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectGet a dapr component. Get a dapr component.
list_rawexecGet 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.

NameDatatypeDescription

SELECT examples

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

Get the Dapr Components for a managed environment. Get the Dapr Components for a managed environment.

EXEC azure.app.dapr_components.list_raw 

;