@@ -100,6 +100,7 @@ func Provider() terraform.ResourceProvider {
100
100
// Generated Products
101
101
AccessContextManagerCustomEndpointEntryKey : AccessContextManagerCustomEndpointEntry ,
102
102
AppEngineCustomEndpointEntryKey : AppEngineCustomEndpointEntry ,
103
+ BigqueryDataTransferCustomEndpointEntryKey : BigqueryDataTransferCustomEndpointEntry ,
103
104
BinaryAuthorizationCustomEndpointEntryKey : BinaryAuthorizationCustomEndpointEntry ,
104
105
CloudBuildCustomEndpointEntryKey : CloudBuildCustomEndpointEntry ,
105
106
CloudSchedulerCustomEndpointEntryKey : CloudSchedulerCustomEndpointEntry ,
@@ -211,6 +212,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
211
212
return mergeResourceMaps (
212
213
GeneratedAccessContextManagerResourcesMap ,
213
214
GeneratedAppEngineResourcesMap ,
215
+ GeneratedBigqueryDataTransferResourcesMap ,
214
216
GeneratedBinaryAuthorizationResourcesMap ,
215
217
GeneratedCloudBuildResourcesMap ,
216
218
GeneratedCloudSchedulerResourcesMap ,
@@ -382,6 +384,7 @@ func providerConfigure(d *schema.ResourceData) (interface{}, error) {
382
384
// Generated products
383
385
config .AccessContextManagerBasePath = d .Get (AccessContextManagerCustomEndpointEntryKey ).(string )
384
386
config .AppEngineBasePath = d .Get (AppEngineCustomEndpointEntryKey ).(string )
387
+ config .BigqueryDataTransferBasePath = d .Get (BigqueryDataTransferCustomEndpointEntryKey ).(string )
385
388
config .BinaryAuthorizationBasePath = d .Get (BinaryAuthorizationCustomEndpointEntryKey ).(string )
386
389
config .CloudBuildBasePath = d .Get (CloudBuildCustomEndpointEntryKey ).(string )
387
390
config .CloudSchedulerBasePath = d .Get (CloudSchedulerCustomEndpointEntryKey ).(string )
@@ -420,6 +423,7 @@ func providerConfigure(d *schema.ResourceData) (interface{}, error) {
420
423
config .ServiceNetworkingBasePath = d .Get (ServiceNetworkingCustomEndpointEntryKey ).(string )
421
424
config .ServiceUsageBasePath = d .Get (ServiceUsageCustomEndpointEntryKey ).(string )
422
425
config .BigQueryBasePath = d .Get (BigQueryCustomEndpointEntryKey ).(string )
426
+ config .BigqueryDataTransferBasePath = d .Get (BigqueryDataTransferCustomEndpointEntryKey ).(string )
423
427
config .CloudFunctionsBasePath = d .Get (CloudFunctionsCustomEndpointEntryKey ).(string )
424
428
config .CloudIoTBasePath = d .Get (CloudIoTCustomEndpointEntryKey ).(string )
425
429
config .StorageTransferBasePath = d .Get (StorageTransferCustomEndpointEntryKey ).(string )
@@ -439,6 +443,7 @@ func ConfigureBasePaths(c *Config) {
439
443
// Generated Products
440
444
c .AccessContextManagerBasePath = AccessContextManagerDefaultBasePath
441
445
c .AppEngineBasePath = AppEngineDefaultBasePath
446
+ c .BigqueryDataTransferBasePath = BigqueryDataTransferDefaultBasePath
442
447
c .BinaryAuthorizationBasePath = BinaryAuthorizationDefaultBasePath
443
448
c .CloudBuildBasePath = CloudBuildDefaultBasePath
444
449
c .CloudSchedulerBasePath = CloudSchedulerDefaultBasePath
0 commit comments