v1

latestOpenAPI 3.0.3Lucid2026-07-14155181312.3 KB
Cloud

Edit Google Cloud Data Source

Edit the metadata of a Google Cloud data source. Metadata refers to any property of the data source that is not related to the data source's cloud data itself.

patch/v1/dataSources/googleCloud/{googleCloudDataSourceId}

Path parameters

googleCloudDataSourceIdstring required

Google Cloud data source ID

Example:googlecloudds_56789

The ID of the Google Cloud data source to edit

Request body

namestring

The new display name to give to the Google Cloud data source

Example request

{
  "name": "Example Google Cloud Data Source - Updated"
}

Response

OK. Returns the edited Google Cloud data source.

dataSourceIdstring required

Google Cloud data source ID

type'googleCloud' required

Example response

{
  "dataSourceId": "googlecloudds_56789",
  "params": {
    "name": "Example Google Cloud Data Source",
    "importType": "serviceAccount",
    "projectIds": [
      "my-google-cloud-project-123"
    ],
    "resourceSelection": [
      "compute.googleapis.com/Instance"
    ]
  }
}