@@ -197,6 +197,14 @@ func Provider() *schema.Provider {
197
197
"GOOGLE_BIG_QUERY_CUSTOM_ENDPOINT" ,
198
198
}, DefaultBasePaths [BigQueryBasePathKey ]),
199
199
},
200
+ "bigquery_connection_custom_endpoint" : {
201
+ Type : schema .TypeString ,
202
+ Optional : true ,
203
+ ValidateFunc : validateCustomEndpoint ,
204
+ DefaultFunc : schema .MultiEnvDefaultFunc ([]string {
205
+ "GOOGLE_BIGQUERY_CONNECTION_CUSTOM_ENDPOINT" ,
206
+ }, DefaultBasePaths [BigqueryConnectionBasePathKey ]),
207
+ },
200
208
"bigquery_data_transfer_custom_endpoint" : {
201
209
Type : schema .TypeString ,
202
210
Optional : true ,
@@ -839,9 +847,9 @@ func Provider() *schema.Provider {
839
847
return provider
840
848
}
841
849
842
- // Generated resources: 219
850
+ // Generated resources: 220
843
851
// Generated IAM resources: 108
844
- // Total generated resources: 327
852
+ // Total generated resources: 328
845
853
func ResourceMap () map [string ]* schema.Resource {
846
854
resourceMap , _ := ResourceMapWithErrors ()
847
855
return resourceMap
@@ -890,6 +898,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
890
898
"google_bigquery_table_iam_member" : ResourceIamMember (BigQueryTableIamSchema , BigQueryTableIamUpdaterProducer , BigQueryTableIdParseFunc ),
891
899
"google_bigquery_table_iam_policy" : ResourceIamPolicy (BigQueryTableIamSchema , BigQueryTableIamUpdaterProducer , BigQueryTableIdParseFunc ),
892
900
"google_bigquery_routine" : resourceBigQueryRoutine (),
901
+ "google_bigquery_connection" : resourceBigqueryConnectionConnection (),
893
902
"google_bigquery_data_transfer_config" : resourceBigqueryDataTransferConfig (),
894
903
"google_bigquery_reservation" : resourceBigqueryReservationReservation (),
895
904
"google_bigtable_app_profile" : resourceBigtableAppProfile (),
@@ -1428,6 +1437,7 @@ func providerConfigure(ctx context.Context, d *schema.ResourceData, p *schema.Pr
1428
1437
config .ApigeeBasePath = d .Get ("apigee_custom_endpoint" ).(string )
1429
1438
config .AppEngineBasePath = d .Get ("app_engine_custom_endpoint" ).(string )
1430
1439
config .BigQueryBasePath = d .Get ("big_query_custom_endpoint" ).(string )
1440
+ config .BigqueryConnectionBasePath = d .Get ("bigquery_connection_custom_endpoint" ).(string )
1431
1441
config .BigqueryDataTransferBasePath = d .Get ("bigquery_data_transfer_custom_endpoint" ).(string )
1432
1442
config .BigqueryReservationBasePath = d .Get ("bigquery_reservation_custom_endpoint" ).(string )
1433
1443
config .BigtableBasePath = d .Get ("bigtable_custom_endpoint" ).(string )
0 commit comments