Skip to content

Commit 3d0f85b

Browse files
Add support for Database Migration Services Private Connections (#9149) (#16104)
[upstream:7d6aeb1700346f7e8eda62f7b31da8ddd0d61b36] Signed-off-by: Modular Magician <[email protected]>
1 parent afae604 commit 3d0f85b

6 files changed

+955
-2
lines changed

.changelog/9149.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:new-resource
2+
`google_database_migration_service_private_connection`
3+
```

google/provider/provider.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -996,9 +996,9 @@ func DatasourceMapWithErrors() (map[string]*schema.Resource, error) {
996996
})
997997
}
998998

999-
// Generated resources: 325
999+
// Generated resources: 326
10001000
// Generated IAM resources: 207
1001-
// Total generated resources: 532
1001+
// Total generated resources: 533
10021002
func ResourceMap() map[string]*schema.Resource {
10031003
resourceMap, _ := ResourceMapWithErrors()
10041004
return resourceMap
@@ -1235,6 +1235,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
12351235
"google_container_attached_cluster": containerattached.ResourceContainerAttachedCluster(),
12361236
"google_billing_project_info": corebilling.ResourceCoreBillingProjectInfo(),
12371237
"google_database_migration_service_connection_profile": databasemigrationservice.ResourceDatabaseMigrationServiceConnectionProfile(),
1238+
"google_database_migration_service_private_connection": databasemigrationservice.ResourceDatabaseMigrationServicePrivateConnection(),
12381239
"google_data_catalog_entry": datacatalog.ResourceDataCatalogEntry(),
12391240
"google_data_catalog_entry_group": datacatalog.ResourceDataCatalogEntryGroup(),
12401241
"google_data_catalog_entry_group_iam_binding": tpgiamresource.ResourceIamBinding(datacatalog.DataCatalogEntryGroupIamSchema, datacatalog.DataCatalogEntryGroupIamUpdaterProducer, datacatalog.DataCatalogEntryGroupIdParseFunc),

0 commit comments

Comments
 (0)