Alguns produtos e recursos estão sendo renomeados. Os recursos de playbook generativo e de fluxo também estão sendo migrados para um único console consolidado. Confira os detalhes.
Mantenha tudo organizado com as coleções
Salve e categorize o conteúdo com base nas suas preferências.
No momento, seu webhook usa dados codificados na função cruisePlanCoverage.
Nesta etapa do tutorial, você vai criar um banco de dados do Spanner, preenchê-lo com destinos cobertos e atualizar a função para consultar o banco de dados.
Configuração do projeto
É importante que o agente do Dialogflow e o banco de dados
estejam no mesmo projeto.
Essa é a maneira mais fácil de a função ter
acesso seguro ao banco de dados.
Além disso, você precisa ativar a API Spanner.
Antes de criar o banco de dados,
selecione seu projeto no console Google Cloud .
Ao usar o Spanner pela primeira vez,
é necessário criar uma instância,
que é uma alocação de recursos
usados pelos bancos de dados do Spanner nessa instância.
No console Google Cloud , acesse a página Instâncias do Spanner.
Clique em Enviar.
O Google Cloud console retorna à página Visão geral do banco de dados e
mostra que as atualizações do esquema estão em andamento.
Aguarde a conclusão da atualização.
Inserir dados na tabela
Agora que seu banco de dados tem uma tabela,
é necessário adicionar dados a ela.
Para adicionar dados:
Na lista de tabelas na página Visão geral do banco de dados,
clique na tabela "Destinos".
O Google Cloud console mostra a página Esquema da tabela "Destinos".
No menu de navegação à esquerda,
clique em Dados para mostrar a página Dados da tabela "Destinos".
Clique em Inserir.
O Google Cloud console mostra a página Consulta da tabela "Destinations" com uma
nova guia de consulta que contém instruções INSERT e SELECT.
Substitua essas instruções por:
No menu de navegação à esquerda,
clique em Dados novamente para mostrar os dados da tabela de destino.
Confirme se a tabela contém os dados desejados.
Atualizar a função do Cloud para consultar o banco de dados
A função cruisePlanCoverage no código do webhook
verifica se variáveis de ambiente específicas são definidas
com informações para se conectar ao banco de dados.
Se essas variáveis de ambiente não estiverem definidas,
a função vai usar uma lista de destinos codificada em disco.
Agora que você configurou um banco de dados,
atualize a função do Cloud para definir as variáveis de ambiente necessárias:
Clique na função tutorial-telecommunications-webhook para acessar a página de detalhes dela.
Clique em Editar.
Abra a seção Configurações de ambiente de execução, criação e conexões.
Selecione a guia Ambiente de execução.
Adicione as seguintes variáveis na seção "Variáveis de ambiente de execução":
PROJECT_ID: ID do projeto;
SPANNER_INSTANCE_ID: o ID da instância do Spanner (provavelmente tutorial-instance)
SPANNER_DATABASE_ID: o ID do banco de dados do Spanner (provavelmente tutorial-database)
Clique em Próxima.
Clique em Implantar.
Aguarde até que o indicador de status mostre que a função foi implantada.
Testar o agente
Seu agente está pronto para ser testado.
Clique no botão Test Agent no console do Dialogflow
para abrir o simulador.
Tente ter a seguinte conversa com o agente:
Turno de conversa
Você
Agente
1
Olá
Olá! Sou o agente virtual de telecomunicações. Posso ajudar você a resolver dúvidas sobre faturamento e planejamento, solucionar problemas e adicionar planos de viagem e cruzeiros. Como posso ajudar?
2
Quero adicionar um plano de cruzeiro
Vou verificar isso para você. Qual é seu número de telefone conosco?
3
123-123-1234
Quantos dias dura o cruzeiro?
4
7
A opção 1 inclui ligações e mensagens de texto. O custo é de R $[XX] por dia. Mais informações [URL]. A opção 2 inclui ligações, mensagens de texto e dados. O custo é de R $[XX] por dia. Mais informações [URL]. Qual plano de cruzeiro você quer adicionar?
5
Opção 1
Ok. Adicionei esse plano à sua conta. Durante o cruzeiro, você também pode precisar de cobertura em terra. Em que porto você vai parar?
6
Itália
E quantos dias você vai passar lá?
7
3
Ótima notícia! A Itália tem cobertura gratuita em terra. Tudo pronto. Posso ajudar com mais alguma coisa hoje?
Se você examinar o código,
a Itália não está na lista codificada de destinos cobertos.
Isso significa que seu webhook foi conectado ao banco de dados,
que inclui a Itália.
Solução de problemas
O código do webhook inclui instruções de registro.
Se você tiver problemas, tente conferir os registros da sua Função do Cloud.
Se a função não estiver se conectando ao banco de dados
e você encontrar um erro de permissão nos registros,
talvez seja necessário corrigir o papel da conta de serviço padrão
usada pela função.
Esta conta de serviço tem o formato
PROJECT_ID@appspot.gserviceaccount.com.
Você pode corrigir isso de uma das seguintes maneiras:
Se a conta de serviço padrão aparecer na página principal do IAM, mude as permissões da conta de serviço.
A função Editor vai funcionar,
mas talvez você queira uma função mais granular em um cenário de produção.
Se uma conta de serviço padrão não aparecer na página principal do IAM,
conceda o papel necessário
adicionando a conta de serviço como um novo principal.
[[["Fácil de entender","easyToUnderstand","thumb-up"],["Meu problema foi resolvido","solvedMyProblem","thumb-up"],["Outro","otherUp","thumb-up"]],[["Difícil de entender","hardToUnderstand","thumb-down"],["Informações incorretas ou exemplo de código","incorrectInformationOrSampleCode","thumb-down"],["Não contém as informações/amostras de que eu preciso","missingTheInformationSamplesINeed","thumb-down"],["Problema na tradução","translationIssue","thumb-down"],["Outro","otherDown","thumb-down"]],["Última atualização 2025-09-04 UTC."],[[["\u003cp\u003eThis tutorial guides you through setting up a Spanner database to replace hardcoded data in your webhook's \u003ccode\u003ecruisePlanCoverage\u003c/code\u003e function, improving its functionality and data management.\u003c/p\u003e\n"],["\u003cp\u003eYou will create a Spanner instance and database, define a table named "Destinations" with "Destination" and "Covered" columns, and then populate it with data representing covered travel destinations.\u003c/p\u003e\n"],["\u003cp\u003eThe process involves enabling the Spanner API, selecting the project in the Google Cloud console, creating the Spanner instance and database, and defining a table schema.\u003c/p\u003e\n"],["\u003cp\u003eYou'll update your Cloud Function's runtime environment variables with your \u003ccode\u003ePROJECT_ID\u003c/code\u003e, \u003ccode\u003eSPANNER_INSTANCE_ID\u003c/code\u003e, and \u003ccode\u003eSPANNER_DATABASE_ID\u003c/code\u003e to enable it to connect to the newly created database.\u003c/p\u003e\n"],["\u003cp\u003eFinally, you can test the updated agent by having a conversation to verify that it successfully queries the Spanner database instead of using hardcoded data to determine coverage, as demonstrated with Italy.\u003c/p\u003e\n"]]],[],null,["# Query a database\n\nYour webhook currently uses hardcoded data in the `cruisePlanCoverage` function.\nIn this step of the tutorial,\nyou will create a\n[Spanner](/spanner/docs)\ndatabase, populate it with covered destinations,\nand update your function to query the database.\n\nProject configuration\n---------------------\n\nIt is important that your Dialogflow agent and the database\nare both in the same project.\nThis is the easiest way for your function to have\nsecure access to your database.\nAlso, you must enable the Spanner API.\n\n1. Before creating the database,\n select your project from the Google Cloud console.\n\n [Go to project selector](https://console.cloud.google.com/projectselector2/home/dashboard)\n2. Enable the Spanner API for the project.\n\n [Enable the Spanner API](https://console.cloud.google.com/flows/enableapi?apiid=spanner.googleapis.com)\n\nCreate a Spanner instance\n-------------------------\n\nWhen you first use Spanner,\nyou must create an instance,\nwhich is an allocation of resources\nthat are used by Spanner databases in that instance.\n\n1. In the Google Cloud console, go to the **Spanner Instances** page.\n\n [Go to Spanner instances](https://console.cloud.google.com/spanner/instances)\n2. Click **Create instance**.\n\n3. For the instance name, enter **Tutorial Instance**.\n\n4. The instance ID is automatically entered based on the instance name.\n\n5. In **Choose your configuration** ,\n retain the default option **Regional** and select the same region\n [location](/dialogflow/cx/docs/concept/region#avail)\n that you chose when creating the function.\n\n6. In **Allocate compute capacity**,\n enter 100 processing units.\n This provides a minimal capacity for the tutorial.\n\n7. Click **Create** .\n The Google Cloud console displays the **Overview** page for the instance\n you created.\n\nCreate a Spanner database\n-------------------------\n\nNow that you have an instance,\nyou need to create a database.\nTo create a database:\n\n1. In the instance **Overview** page, click **Create database**.\n2. For the database name, enter **tutorial-database**.\n3. Select the **Google Standard SQL** database dialect.\n4. Click **Create** . The Google Cloud console displays the **Overview** page for the database you created.\n\nCreate a table for your database\n--------------------------------\n\nNow that you have a database,\nyou need to create a table for the database.\nTo create a table:\n\n1. In the Tables section of the database **Overview** page, click **Create table**.\n2. In the **Write DDL statements** page, enter:\n\n CREATE TABLE Destinations (\n Destination STRING(1024),\n Covered BOOL,\n ) PRIMARY KEY(Destination);\n\n3. Click **Submit** .\n The Google Cloud console returns to the database **Overview** page and\n shows that **Schema updates** are underway.\n Wait until the update is complete.\n\nInsert data into your table\n---------------------------\n\nNow that your database has a table,\nyou need to add data to the table.\nTo add data:\n\n1. In the list of tables on the database **Overview** page, click the Destinations table. The Google Cloud console displays the Destinations table's **Schema** page.\n2. In the left navigation menu, click **Data** to display the Destinations table's **Data** page.\n3. Click **Insert** .\n The Google Cloud console displays the Destinations table's **Query** page with a\n new query tab that contains `INSERT` and `SELECT` statements.\n Overwrite those statements with the following:\n\n INSERT INTO Destinations (Destination, Covered)\n VALUES('anguilla', TRUE),\n ('canada', TRUE),\n ('china', TRUE),\n ('italy', TRUE),\n ('mexico', TRUE),\n ('spain', FALSE);\n\n4. Click **Run**.\n\n5. In the left navigation menu,\n click **Data** again to display the Destination table's data.\n Confirm that the table contains the desired data.\n\nUpdate the Cloud Function to query the database\n-----------------------------------------------\n\nThe `cruisePlanCoverage` function in the webhook code\nchecks whether specific environment variables are set\nwith information for connecting to the database.\nIf these environment variables are not set,\nthe function uses a hardcoded list of destinations.\n\nNow that you have a database set up,\nupdate your Cloud Function to set required environment variables:\n\n1. Open the Cloud Functions overview page.\n\n [Go to Cloud Functions overview](https://console.cloud.google.com/functions/list)\n2. Click the tutorial-telecommunications-webhook function to go to its details page.\n\n3. Click **Edit**.\n\n4. Open the **Runtime, build and connections settings** section.\n\n5. Select the **Runtime** tab.\n\n6. Add the following variables in the Runtime environment variables section:\n\n - `PROJECT_ID`: your project ID\n - `SPANNER_INSTANCE_ID`: your Spanner instance ID (probably `tutorial-instance`)\n - `SPANNER_DATABASE_ID`: your spanner database ID (probably `tutorial-database`)\n7. Click **Next**.\n\n8. Click **Deploy**.\n\n9. Wait until the status indicator shows that the function\n has successfully deployed.\n\nTest your agent\n---------------\n\nYour agent is now ready to try.\nClick the **Test Agent** button from the Dialogflow console\nto open the simulator.\nAttempt to have the following conversation with the agent:\n\nIf you examine the code,\nItaly is not in the hardcoded list of covered destinations.\nThis means that your webhook has successfully connected to the database,\nwhich does include Italy.\n\nTroubleshooting\n---------------\n\nThe webhook code includes logging statements.\nIf you are having issues, try viewing the logs for your Cloud Function.\n\nIf your function is not connecting to the database,\nand you see a permission error in the logs,\nyou may need to fix the role for the default service account\nused by your function.\nThis service account is of the form\n\u003cvar translate=\"no\"\u003ePROJECT_ID\u003c/var\u003e`@appspot.gserviceaccount.com`.\nYou can fix this in one of the following ways:\n\n- If the default service account is shown on the IAM main page,\n [change permissions for the service account](/functions/docs/securing/function-identity#default).\n The *Editor* role will work,\n but you may want a more granular role in a production scenario.\n\n [Go to the IAM main page](https://console.cloud.google.com/iam-admin/iam)\n- If the a default service account is not shown on the IAM main page,\n [grant the required role](/iam/docs/grant-role-console#grant_an_iam_role)\n by adding the service account as a new principal.\n\n- Alternatively, you can\n [use a service account that you create](/functions/docs/securing/function-identity#individual).\n\nMore information\n----------------\n\nFor more information about the steps above, see:\n\n- [Using Cloud Spanner with Cloud Functions](/functions/docs/tutorials/use-cloud-spanner)\n- [Create and query a database by using the Google Cloud console](/spanner/docs/create-query-database-console)\n- [Google Standard SQL data definition language](/spanner/docs/reference/standard-sql/data-definition-language)\n- [Google Standard SQL data manipulation language](/spanner/docs/reference/standard-sql/dml-syntax)"]]