Package version:

Dapr Component.

interface DaprComponent {
    componentType?: string;
    id?: string;
    ignoreErrors?: boolean;
    initTimeout?: string;
    metadata?: DaprMetadata[];
    name?: string;
    scopes?: string[];
    secrets?: Secret[];
    secretStoreComponent?: string;
    serviceComponentBind?: DaprComponentServiceBinding[];
    systemData?: SystemData;
    type?: string;
    version?: string;
}

Hierarchy (view full)

Properties

componentType?: string

Component type

id?: string

Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" NOTE: This property will not be serialized. It can only be populated by the server.

ignoreErrors?: boolean

Boolean describing if the component errors are ignores

initTimeout?: string

Initialization timeout

metadata?: DaprMetadata[]

Component metadata

name?: string

The name of the resource NOTE: This property will not be serialized. It can only be populated by the server.

scopes?: string[]

Names of container apps that can use this Dapr component

secrets?: Secret[]

Collection of secrets used by a Dapr component

secretStoreComponent?: string

Name of a Dapr component to retrieve component secrets from

serviceComponentBind?: DaprComponentServiceBinding[]

List of container app services that are bound to the Dapr component

systemData?: SystemData

Azure Resource Manager metadata containing createdBy and modifiedBy information. NOTE: This property will not be serialized. It can only be populated by the server.

type?: string

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" NOTE: This property will not be serialized. It can only be populated by the server.

version?: string

Component version