ServiceNow 数据 (API) 到 Google Cloud Platform

ServiceNow data (API) to Google Cloud Platform

首先,很抱歉,如果我没有解释所有超级技术性的内容,我会尽力而为。

我有 ServiceNow REST API(一个 link 的凭据,每天以 JSON 格式提取数据)。

我想在 Google 云平台 (GCP) 中使用每周或每天提取数据并将其存储在 GCP 产品中的产品。在那之后,我想整理数据,也许是在另一个 GCP 产品中。

我的问题:

  1. 我应该使用哪个 GCP 产品来提取 ServiceNow 数据?
  2. 我该怎么做?我需要编写代码还是只使用 Dataflow 之类的东西?
  3. 我应该使用哪个 GCP 产品来存储和整理数据?

感谢您的帮助

你需要的执行顺序是这样的:

  1. 使用 API 凭据设置 Secret Manager 条目,您将使用这些凭据连接并授权 ServiceNow API。

  2. 您可以使用 Cloud Workflows 从 ServiceNow API 获取数据。 Workflows 有一个片段可以从 Secret Manager 中提取授权密钥。它还与 GCP 之外的任何 public API 集成,因此您可以连接和使用 ServiceNow API.

  3. 您以后可以扩展您的 Cloud Workflow 以包含多个步骤,并且您可以将数据写入 BigQuery. Why BigQuery? Because it integrates nicely with other services like Dataprep for data wrangling, or any other pure code solution like Dataflow or Cloud Functions

  4. 要定期调用您的 Cloud Workflows,您可以设置一个 Cloud Scheduler