Update a Private Link
Updates information for an existing private link within your Fivetran account.
Request schema
Path parameters
The unique identifier for the private link within the Fivetran system
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Request
Databricks for AWS
The name of your connection service.
PATCH /v1/private-links/private_link_id HTTP/1.1
Accept: application/json
Authorization: Basic REPLACE_BASIC_AUTH
Content-Type: application/json
Host: api.fivetran.com
Content-Length: 78
{
"config": {
"connection_service_name": "connection_service_name"
}
}
Responses
Successful response schema
Response status code
Response status text
The unique identifier for the private link within the Fivetran system.
Private link name
Data processing location. This is where Fivetran will operate and run computation on data.
The name for the service type within the Fivetran system.
Private link state
The timestamp of the time the private link was created in your account
The actor who created the private link
Private link cloud provider
Private link state summary
Databricks for AWS
The name of your connection service.
{
"code": "Success",
"message": "Operation performed.",
"data": {
"id": "private_link_id",
"name": "PrivateLinkName",
"region": "AWS_US_EAST_1",
"service": "DATABRICKS_AWS",
"state": "OK",
"account_id": "string",
"created_at": "2023-12-01T15:43:29.013729Z",
"created_by": "user_id",
"cloud_provider": "AWS",
"state_summary": "...",
"config": {
"connection_service_name": "connection_service_name"
}
}
}