OperationOptions extend EventHandlerOptions with a provided service, connector, and operation.
Signature:
export interface OperationOptions<Service extends string = string, Connector extends string = string, Operation extends string = string> extends EventHandlerOptions
Extends: EventHandlerOptions
Properties
| Property | Type | Description |
|---|---|---|
| connector | Connector | Firebase Data Connect connector ID |
| operation | Operation | Name of the operation |
| region | SupportedRegion | string | Expression<string> | ResetValue | Region where functions should be deployed. Defaults to us-central1. |
| service | Service | Firebase Data Connect service ID |
dataconnect.OperationOptions.connector
Firebase Data Connect connector ID
Signature:
connector?: Connector;
dataconnect.OperationOptions.operation
Name of the operation
Signature:
operation?: Operation;
dataconnect.OperationOptions.region
Region where functions should be deployed. Defaults to us-central1.
Signature:
region?: SupportedRegion | string | Expression<string> | ResetValue;
dataconnect.OperationOptions.service
Firebase Data Connect service ID
Signature:
service?: Service;