@@ -141,6 +141,14 @@ func Provider() terraform.ResourceProvider {
141141 "GOOGLE_BIG_QUERY_CUSTOM_ENDPOINT" ,
142142 }, BigQueryDefaultBasePath ),
143143 },
144+ "bigquery_connection_custom_endpoint" : {
145+ Type : schema .TypeString ,
146+ Optional : true ,
147+ ValidateFunc : validateCustomEndpoint ,
148+ DefaultFunc : schema .MultiEnvDefaultFunc ([]string {
149+ "GOOGLE_BIGQUERY_CONNECTION_CUSTOM_ENDPOINT" ,
150+ }, BigqueryConnectionDefaultBasePath ),
151+ },
144152 "bigquery_data_transfer_custom_endpoint" : {
145153 Type : schema .TypeString ,
146154 Optional : true ,
@@ -614,9 +622,9 @@ func Provider() terraform.ResourceProvider {
614622 return provider
615623}
616624
617- // Generated resources: 149
625+ // Generated resources: 150
618626// Generated IAM resources: 63
619- // Total generated resources: 212
627+ // Total generated resources: 213
620628func ResourceMap () map [string ]* schema.Resource {
621629 resourceMap , _ := ResourceMapWithErrors ()
622630 return resourceMap
@@ -642,6 +650,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
642650 "google_bigquery_dataset" : resourceBigQueryDataset (),
643651 "google_bigquery_dataset_access" : resourceBigQueryDatasetAccess (),
644652 "google_bigquery_job" : resourceBigQueryJob (),
653+ "google_bigquery_connection" : resourceBigqueryConnectionConnection (),
645654 "google_bigquery_data_transfer_config" : resourceBigqueryDataTransferConfig (),
646655 "google_bigquery_reservation" : resourceBigqueryReservationReservation (),
647656 "google_bigtable_app_profile" : resourceBigtableAppProfile (),
@@ -1006,6 +1015,7 @@ func providerConfigure(d *schema.ResourceData, p *schema.Provider, terraformVers
10061015 config .AppEngineBasePath = d .Get ("app_engine_custom_endpoint" ).(string )
10071016 config .ArtifactRegistryBasePath = d .Get ("artifact_registry_custom_endpoint" ).(string )
10081017 config .BigQueryBasePath = d .Get ("big_query_custom_endpoint" ).(string )
1018+ config .BigqueryConnectionBasePath = d .Get ("bigquery_connection_custom_endpoint" ).(string )
10091019 config .BigqueryDataTransferBasePath = d .Get ("bigquery_data_transfer_custom_endpoint" ).(string )
10101020 config .BigqueryReservationBasePath = d .Get ("bigquery_reservation_custom_endpoint" ).(string )
10111021 config .BigtableBasePath = d .Get ("bigtable_custom_endpoint" ).(string )
0 commit comments