In this page, you learn how to use the Database Migration Service API to manage connection profiles for a PostgreSQL source database and a AlloyDB destination.
There are two ways that you can use the Database Migration Service API. You can make REST API calls or you can use the Google Cloud CLI (CLI).
To see high-level information about using gcloud to manage Database Migration Serviceconnection profiles, click here.
Create a connection profile for a PostgreSQL source database
The following shows a request to create a connection profile for a PostgreSQL source database.
REST
Before using any of the request data,
make the following replacements:
project-id: The project ID
region: The project region
connection-profile-id: The connection profile ID
connection-profile-display-name: The connection profile display name
host-ip-address: The source IP address
username: The database user name
password: The database user password
HTTP method and URL:
POST https://datamigration.googleapis.com/v1/projects/project-id/locations/region/connectionProfiles?connectionProfileId=connection-profile-id
Request JSON body:
To send your request, expand one of these options:
curl (Linux, macOS, or Cloud Shell)
Save the request body in a file named request.json,
and execute the following command:
You should receive a JSON response similar to the following:
gcloud
For more information on using gcloud to retrieve information about your connection profile, click here.
Create a connection profile for a Cloud SQL for PostgreSQL source database
The following shows a request to create a connection profile for a Cloud SQL
for PostgreSQL source database. This example uses a PostgreSQL connection profile because
it connects to the PostgreSQL database engine, and not the Cloud SQL management
layer.
To create the pairing between the source and replica using
Cloud SQL, you must provide the instance ID for your
Cloud SQL database. You can find the instance ID value by using the
databases/list method
of the Cloud SQL Admin API.
REST
Before using any of the request data,
make the following replacements:
project-id: The project ID
region: The project region
connection-profile-id: The connection profile ID
connection-profile-display-name: The connection profile display name
host-ip-address: The source IP address
username: The database user name
password: The database user password
cloud-sql-instance-id: The Cloud SQL instance ID
HTTP method and URL:
POST https://datamigration.googleapis.com/v1/projects/project-id/locations/region/connectionProfiles?connectionProfileId=connection-profile-id
Request JSON body:
To send your request, expand one of these options:
curl (Linux, macOS, or Cloud Shell)
Save the request body in a file named request.json,
and execute the following command:
To see high-level information about using gcloud to create Database Migration Service connection profiles, click here.
Create a connection profile for an AlloyDB for PostgreSQL destination
The following shows a request to create a connection profile for an AlloyDB for PostgreSQL destination.
Database Migration Service uses the information in this request to create a new AlloyDB instance.
REST
Before using any of the request data,
make the following replacements:
project-id: The project ID
region: The project region
connection-profile-id: The connection profile ID
connection-profile-display-name: The connection profile display name
cluster-id: The AlloyDB cluster ID to create
user: The user-name to give the initial user
password: The password to give the initial user
vpc-network: The VPC network the AlloyDB cluster will be connected with
instance-id: The AlloyDB instance ID to create
cpu-count: The number of CPUs to configure the instance with
All data stored within Google Cloud is encrypted at rest using the same hardened key
management systems that we use for our own encrypted data. These key-management systems provide
strict key access controls and auditing, and encrypt user data at rest using AES-256 encryption
standards. No setup, configuration, or management is required. Google Cloud's default
encryption at rest is the best choice for users who don't have specific requirements related to
compliance or locality of cryptographic material.
HTTP method and URL:
POST https://datamigration.googleapis.com/v1/projects/project-id/locations/region/connectionProfiles?connectionProfileId=connection-profile-id
You should receive a JSON response similar to the following:
gcloud
For more information on using gcloud to retrieve information about your connection profile, click here.
List connection profiles
The following shows a request to retrieve information about all of your connection profiles.
REST
Before using any of the request data,
make the following replacements:
project-id: The project ID
region: The project region
You can also filter the list of connection profiles that Database Migration Service retrieves, as follows:
orderBy: Use this filter to retrieve a listing of all connection profiles for a particular region in alphabetical order. For example, the orderBy=name filter returns all connection profiles, alphabetically, by name.
pageSize: Use this filter to specify the maximum number of connection profiles that Database Migration Service retrieves and displays on a page. For example, by setting pageSize=10, Database Migration Service will return up to 10 connection profiles for a page.
If there are more than 10 connection profiles, then they appear on other pages. At the end of each page, a nextPageToken parameter and unique identifier appear. Use the identifier to retrieve the listing of the connection profiles for the following page.
HTTP method and URL:
GET https://datamigration.googleapis.com/v1/projects/project-id/locations/region/connectionProfiles
To send your request, expand one of these options:
You should receive a JSON response similar to the following:
gcloud
For more information on using gcloud to retrieve information about all of your connection profiles, click here.
Update a connection profile
The following shows a request to update the username and password fields of
an existing connection profile. By using the updateMask parameter in the request,
only these fields need to be included in the request body.
REST
Before using any of the request data,
make the following replacements:
project-id: The project ID
region: The project region
connection-profile-id: The connection profile ID
username: The database user name
password: The database user password
HTTP method and URL:
PATCH
Request JSON body:
To send your request, expand one of these options:
curl (Linux, macOS, or Cloud Shell)
Save the request body in a file named request.json,
and execute the following command:
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-03 UTC."],[[["This page explains how to manage connection profiles for PostgreSQL source databases and AlloyDB destinations using the Database Migration Service API, which can be accessed through REST API calls or the Google Cloud CLI."],["You can create connection profiles for PostgreSQL source databases, including Cloud SQL for PostgreSQL, by using provided request examples and specific parameters such as project ID, region, and connection profile details."],["AlloyDB destination connection profiles can be created, and they support the creation of new AlloyDB instances, with options to specify cluster ID, user credentials, VPC network, instance ID, and CPU configuration."],["Connection profile information can be viewed, updated, and listed using the API, and it includes filtering and ordering options for efficient retrieval of information."],["Connection profiles can be deleted, but if there are active migration jobs associated with it, they must be promoted or deleted first, and if it's an AlloyDB instance it can also be cascade-deleted using the API."]]],[]]