Connectors task
TheConnectors task lets you quickly and securely connect to the various Google Cloud services and other business applications from your integration using the out-of-the-box connectors available inIntegration Connectors.
For the list of all the supported connectors for Application Integration, seeConnector reference.Important: Integration Connectors is a billable component of Google Cloud. For information about the costs and charges of using Integration Connectors, seeIntegration Connectors pricing.Before you begin
- Make sure that you have the Connectors Admin (
roles/connectors.admin) IAM role granted on your Google Cloud project. For information about granting roles, seeManage access. - Learn about the general concepts ofIntegration Connectors.
- To connect to Google Cloud services and other business applications using a connector, ensure that you haveattached a user-managed service account to your integration. If your integration does not have user-managed service account configured, then by default thedefault service account (
service-PROJECT_NUMBER@gcp-sa-integrations.iam.gserviceaccount.com) is used for authentication. - Ensure that your service account has the required IAM role. For information about granting roles to a service account, seeManage access to service accounts.
Add a Connectors task
To add the Connectors task to your integration, do the following:
- In the Google Cloud console, go to theApplication Integration page.
- In the navigation menu, clickIntegrations.
TheIntegrations page appears listing all the integrations available in the Google Cloud project.
- Select an existing integration or clickCreate integration to create a new one.
If you are creating a new integration:
- Enter a name and description in theCreate Integration pane.
- Select a region for the integration.Note: TheRegions dropdown only lists the regions provisioned in your Google Cloud project. To provision a new region, clickEnable Region. SeeEnable new region for more information.
- Select a service account for the integration. You can change or update the service account details of an integration any time from theIntegration summary pane in the integration toolbar.Note: The option to select a service account is displayed only if you have enabled integration governance for the selected region.
- ClickCreate. The newly created integration opens in theintegration editor.
- In theintegration editor navigation bar, clickTasks to view the list of available tasks and connectors.
- If you want to configure a new connection, click and place theConnectors element in the integration editor. Then, clickConfigure connector to configure the connection.


- If you have an existing connection, click theConnectors tab to view the recently created connections. You can also search for a connector, connection, or task by entering the name in theSearch field.

- Click and place the configuredConnectors element in the integration editor. For information about how to configure a connector task, seeConfigure the Connectors task.

Configure the Connectors task
To configure aConnectors task, do the following:Note: Configuration details such as authentication will vary depending upon the connection type.
- Click theConnectors task element on the designer to view theConnectors task configuration pane.
Optionally, click to rename the task name.
- ClickConfigure connector.
- You can either select an existing connection in the region orcreate a new connection. To configure an existing connection, complete the following steps in theConnectors Task Editor page.
The following image shows a sample layout of theConnectors Task Editor page.


- In theSelect connection section, select the region of the connection.
- Choose an existing connection from the list of available connections in the selected region.
- ClickNext.
- From theType list, selectEntities orActions.
- If you selectEntities, the list of supported entities for the connection is displayed in theSet entities/actions section. Select an entity followed by theOperation that you want to perform on that entity.
- If you selectActions, the list of supported actions for the connection is displayed in theSet entities/actions column. Select an action for the connection. The supported entities and actions are based on the connector type. For the list of all the supported connectors for Application Integration, seeConnector reference. To view the supported actions and entities for a connector, see the specific connector documentation.
If the connector supports custom SQL queries, you can select theExecute custom query option from theActions list. For information about how to add custom SQL query for your connector, seeAction: Execute custom SQL query.
- ClickDone to complete the connection configuration and close the pane.
Configure task input and output variables
TheConnectors task configuration pane displaysTask Input andTask Outputvariables that are automatically generated based on theEntity and Operation orAction selected in theConfigure connector task dialog. These variables are configurable and are accessible as inputs to the current task, as outputs to subsequent tasks, or as conditionals in the current integration.
To configure theTask Input orTask Output variables, click the respective variable to open theConfigure Variable pane and perform the following steps:
- Enter the variable value in theDefault Value field.
- (Optional) SelectUse as an input to integration orUse as an output to integration.
- ClickSave.
For more information about the input and output parameters of theConnectors task, seeEntity operations.
Configure authentication override
To enable the connection to accept different backend authentication dynamically during runtime, ensure that in Integration Connectors, you have selected theEnable Authentication Override option for your connection.
To configure the authentication override, do the following:
- Click the connectors task element on the designer to view theConnectors task configuration pane.
- Expand theTask input section. TheEnd user credentials field is set to a
dynamicAuthConfigvariable.

Then, do the following:
- Click the
dynamicAuthConfigvariable. TheEdit variable pane appears.For overriding the authentication, you must provide the authentication values when youtest the integration.


To do so, follow these steps:
- From theVariable type list, selectInput to Integration.
- In theJSON schema options, you can verify the authentication type configured for the connection. Use this schema to override the authentication value when youtest the integration.


Alternatively, you can pass the authentication as the HTTP header by selecting theUse HTTPS Header for Auth Config checkbox in theTask input section of theConnectors task configuration pane.
The dynamic authentication header should be in the following JSON format:
{"task1":{"oauth2_auth_code_flow.access_token":"token_value"},"task2":{"oauth2_auth_code_flow.userename":"username_value"}}
In this format,
taskNcorresponds to the Task ID inintegrationVersion.

- Click the
Entity operations and actions
You can perform CRUD (Create, Read, Update, Delete) operationson the entities of a connector. Each of these entity operations has a different set of input and output parameters. The following table lists the input and output parameters for the various entity operations.
| Operation name | Input parameters | Output parameters |
|---|---|---|
| List |
|
|
| Get | entityId | connectorOutputPayload |
| Note: You can use theGet operation only to fetch a single record from a table that has a primary key. Alternately, you can use theList operation with afilterClause. | ||
| Create | connectorInputPayload | connectorOutputPayload |
| Update |
| connectorOutputPayload |
| Delete |
| N/A |
Input parameters
The following table describes the input parameters for the various entity operations.
| Parameter name | Data type | Description |
|---|---|---|
| entityId | String | A unique identifier of the row that you want to access. Normally, the For example, to get a specific row from a MySQL table, the entityId is not mandatory for BigQuery. This field is empty when a BigQuery table doesn't have a primary key. |
| connectorInputPayload | JSON | The actual data to be added or updated in an entity. The following example shows the JSON snippet of a row data to be added in a table:{"employee_first_name": "John","employee_emailID": "test-05@test.com"}In this example, |
| filterClause | String | Restricts the result of the operations based on a condition. For more information about adding a filter clause, seeAdd a filter for an operation. |
| listEntitiesPageSize | Integer | Specifies the number of results that should be returned in a page. A page is a logical grouping of the records in a result set. The concept of a page is useful when you are expecting a large number of records in the result set. If the result set is large, theConnectors task might fail, as there is a limit on the data size that theConnectors task can process. By breaking down the result set into smaller chunks, you can avoid this issue. For example, if you are expecting 1000 records in your result set, you can set the
|
| listEntitiesPageToken | String | A page identifier (token) that lets you access a specific page. You can get the value of a page token from the |
| listEntitiesSortByColumns | String array | The column name by which you want to sort the result set. |
Output parameters
The following table describes the output parameters for the various entity operations.
| Parameter name | Data type | Description |
|---|---|---|
| connectorOutputPayload | JSON | The output of an operation in JSON format. |
| listEntitiesNextPageToken | String | A system generated identifier for a page. You can think of the token as a pointer by which you can access a particular page of the result set. If you have broken down your result set into multiple pages by setting the For example, consider you have set the If your result set has a large number of pages, you can consider using theWhile Loop task to get the next page and using theData Mapping task to automatically assign page token values to the |
Filter clause for entity operations
You can restrict the records that are processed by theConnectors task using theFilter clause variable, which is available as aTask Input. For example, in the case of adelete operation, you can add a filter clause to delete records with a specificorderId.
A filter clause can be applied only for the following entity operations:
- List
- Delete
- Update
When you select any of these operations, theTask Input section of theConnectors task displays theFilter clause field automatically.
Add a filter clause
To add a filter clause, perform the following steps:
- Click theConnectors task element on the designer to view theConnectors task configuration pane.
- Expand theTask Input section and click thefilterClause(Connectors) string variable.
TheConfigure Variable dialog appears.
- Enter the filter clause (following theclause syntax) in theDefault Value field.
- ClickSave.
Filter clause syntax and examples
A filter clause has the following format:
FIELD_NAMECONDITIONFILTER_VALUE
Examples
OwnerId='0053t000007941XAAQ'
PoNumber <2345
OrderNumber=00110ANDStatusCode='Draft'
TotalAmount >2500
ShippingPostalCode=94043ORShippingPostalCode=77002
Use of variables in filter clause
You can't directly use an integration variable in a filter clause. If you want to use an integration variable, you must first configure aData Mapping task to create a mapping between the integration variable and the filter clause.The following table shows a sample mapping between an integration variable and thefilterClause(Connectors) variable:
| Input | Output |
|---|---|
PRIMARY_KEY_ID = ' .CONCAT(INTEGRATION_VARIABLE) .CONCAT(') | filterClause(Connectors) |
PRIMARY_KEY_ID = ' is entered as aValue in the input row.Action: Execute custom SQL query
To create a custom query, follow these steps:
- Follow the detailed instructions to add a connectors task.
- When youconfigure the connector task, in the type of action you want to perform, selectActions.
- In theAction list, selectExecute custom query, and then clickDone.


- Expand theTask input section, and then do the following:
- In theTimeout after field, enter the number of seconds to wait till the query executes.
Default value:
180seconds. - In theMaximum number of rows field, enter the maximum number of rows to be returned from the database.
Default value:
25. - To update the custom query, clickEdit Custom Script. TheScript editor dialog opens.


- In theScript editor dialog, enter the SQL query and clickSave.
You can use a question mark (?) in a SQL statement to represent a single parameter that must be specified in the query parameters list. For example, the following SQL query selects all rows from the
Employeestable that matches the values specified for theLastNamecolumn: Note: Data manipulation language (DML) and data definition language (DDL) statements are supported.SELECT * FROM Employees where LastName=?
- If you've used question marks in your SQL query, you must add the parameter by clicking+ Add Parameter Name for each question mark. While executing the integration, these parameters replace the question marks (?) in the SQL query sequentially. For example, if you have added three question marks (?), then you must add three parameters in order of sequence.


To add query parameters, do the following:
- From theType list, select the data type of the parameter.
- In theValue field, enter the value of the parameter.
- To add multiple parameters, click+ Add Query Parameter.
TheExecute custom query action does not support array variables.
- In theTimeout after field, enter the number of seconds to wait till the query executes.
Schema refresh
All entities and actions have an associated schema. For example, an action schema includes parameter details such as parameter names and their corresponding data types. The schema (metadata) for entities and actions is fetched by the connection at runtime from your backend. If there are any updates to the schema, such updates won't be automatically reflected in your existing connections; you must manually refresh the schema. To view the updated schema in your existing connector tasks, follow these steps:- In Integration Connectors, open theConnection details page of the connection, and then clickRefresh connection schema.
- In Application Integration, you mustreconfigure your existing connector task for the same connection.
Inline connection creation
You can use theConnectors task to directly create a new connection inIntegration Connectors.
Before you begin
Create new connection
To create a new connection from Application Integration, perform the following steps:
- Click theConnectors task element on the designer to view theConnectors task configuration pane.
- ClickConfigure connector.
TheConnectors Task Editor page appears.
- Skip theRegion field.
- ClickConnection and select theCreate Connection option from the drop-down menu.
- Complete the following steps in theCreate Connection pane:Note: The following instructions are the generic steps to create a connection. While the majority of the steps remain the same for all connection types, a few additional steps or details related to authentication might vary.
We recommend that you also view the respective connection type documentation inIntegration Connectors.
- In theLocation step, choose the location for the connection.
- ClickRegion and select a location from the drop-down list.
- ClickNext.
- In theConnection Details step, provide details about the connection:
- Connector: Select the type of connector that you want to create from the drop-down list. For information about the list of supported connectors, seeAll Integration Connectors.
- Connector version: Choose an available version of the selected Connector type from the drop-down list.
- Connection Name: Enter a name for the Connection instance.Note: Connection names must meet the following criteria:
- Connection names can use letters, numbers, or hyphens.
- Letters must be lower-case.
- Connection names must begin with a letter and end with a letter or number.
- Connection names cannot exceed 63 characters.
- (Optional) Enter aDescription for the connection instance.
- (Optional) CheckEnable Cloud Logging to store the log data for the connection instance.
- Service Account: Select a service account that has therequired roles.
- (Optional) ClickAdvanced settings to configure the connection node settings.
For more information, see the respective connection documentation inIntegration Connectors.
- (Optional) Click+ ADD LABEL to add a label to the connection in the form of a key/value pair.
- ClickNext.
- In theAuthentication step, provide the authentication details for the connection.
- TheAuthentication methods populated during this step are based on the type of connection being created.
Different connection types use different authentication methods. For more information, see theConfigure authentication section of the respective connection documentation inIntegration Connectors.
- ClickNext.
- TheAuthentication methods populated during this step are based on the type of connection being created.
- Review: Review your connection and authentication details.
- ClickCreate.
- In theLocation step, choose the location for the connection.
Best practices
- For information about the usage limits that apply to theConnectors task, seeUsage limits.
- For information about how to troubleshoot a failedConnectors task, seeUse logs to troubleshoot and trace connector failures.
Error handling strategy
An error handling strategy for a task specifies the action to take if the task fails due to atemporary error. For information about how to use an error handling strategy, and to know about the different types of error handling strategies, seeError handling strategies.
Pricing
The Cloud Pub/Sub trigger and Salesforce trigger don't require you to create aconnector. However, if you use theConnectors task to connect to Pub/Sub or Salesforce, then you are billed for the connector usage. For information about pricing, seeApplication Integration pricing.
Quotas and limits
For information about quotas and limits, seeQuotas and limits.
What's next
- Learn aboutall tasks and triggers.
- Learn how totest and publish an integration.
- Learn abouterror handling.
- Learn aboutintegration execution logs.
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2026-02-19 UTC.