providers/google/docs/connections/gcp_looker.rst
.. Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
.. http://www.apache.org/licenses/LICENSE-2.0
.. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
.. _howto/connection:gcp_looker:
Communication between Airflow and Data Studio (Looker) is done via Looker API <https://docs.looker.com/reference/api-and-integration/api-reference/v4.0>.
To facilitate the API communication, Data Studio operators use Looker SDK <https://pypi.org/project/looker-sdk/> as an API client.
Before calling API, Looker SDK needs to authenticate itself using your Data Studio API credentials.
Obtain your Data Studio API credentials using instructions in the Looker API authentication documentation <https://docs.looker.com/reference/api-and-integration/api-auth#authentication_with_an_sdk>_.
Obtain your Data Studio API path and port as described in the Looker API documentation <https://docs.looker.com/reference/api-and-integration/api-getting-started#looker_api_path_and_port>_.
Setup a Data Studio connection in Airflow.
The HTTP connection type provides connection to Data Studio API.
The :class:~airflow.providers.google.cloud.hooks.looker.LookerHook uses this connection to run
API requests on a Data Studio instance issued by :class:~airflow.providers.google.cloud.operators.looker.LookerStartPdtBuildOperator and :class:~airflow.providers.google.cloud.sensors.looker.LookerCheckPdtBuildSensor.
Host (required) Base URL for Data Studio API. Do not include /api/* in the URL.
Login (required) Data Studio API client id.
Password (required) Data Studio API client secret.
Port (optional) Port for Data Studio API. If hosted on GCP, don't specify the port leaving just the host.
Extra (optional) Specify the extra parameters (as json dictionary) that can be used in Data Studio connection. The following parameters are supported:
* ``verify_ssl`` - Set to false only if testing locally against self-signed certs. Defaults to true if not specified.
* ``timeout`` - Timeout in seconds for HTTP requests. Defaults to 2 minutes (120) seconds if not specified.
Example "extras" field:
.. code-block:: json
{
"verify_ssl": true,
"timeout": 120,
}
A URL configuration example of a Data Studio connection:
.. code-block::
AIRFLOW_CONN_YOUR_CONN_ID='http://YourClientID:YourClientSecret@https%3A%2F%2Fyour.looker.com:19999?verify_ssl=true&timeout=120'