@@ -74,6 +74,7 @@ import (
74
74
"github.com/hashicorp/terraform-provider-google/google/services/identityplatform"
75
75
"github.com/hashicorp/terraform-provider-google/google/services/kms"
76
76
"github.com/hashicorp/terraform-provider-google/google/services/logging"
77
+ "github.com/hashicorp/terraform-provider-google/google/services/looker"
77
78
"github.com/hashicorp/terraform-provider-google/google/services/memcache"
78
79
"github.com/hashicorp/terraform-provider-google/google/services/mlengine"
79
80
"github.com/hashicorp/terraform-provider-google/google/services/monitoring"
@@ -527,6 +528,11 @@ func Provider() *schema.Provider {
527
528
Optional : true ,
528
529
ValidateFunc : transport_tpg .ValidateCustomEndpoint ,
529
530
},
531
+ "looker_custom_endpoint" : {
532
+ Type : schema .TypeString ,
533
+ Optional : true ,
534
+ ValidateFunc : transport_tpg .ValidateCustomEndpoint ,
535
+ },
530
536
"memcache_custom_endpoint" : {
531
537
Type : schema .TypeString ,
532
538
Optional : true ,
@@ -939,9 +945,9 @@ func DatasourceMapWithErrors() (map[string]*schema.Resource, error) {
939
945
})
940
946
}
941
947
942
- // Generated resources: 300
948
+ // Generated resources: 301
943
949
// Generated IAM resources: 198
944
- // Total generated resources: 498
950
+ // Total generated resources: 499
945
951
func ResourceMap () map [string ]* schema.Resource {
946
952
resourceMap , _ := ResourceMapWithErrors ()
947
953
return resourceMap
@@ -1327,6 +1333,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
1327
1333
"google_logging_linked_dataset" : logging .ResourceLoggingLinkedDataset (),
1328
1334
"google_logging_log_view" : logging .ResourceLoggingLogView (),
1329
1335
"google_logging_metric" : logging .ResourceLoggingMetric (),
1336
+ "google_looker_instance" : looker .ResourceLookerInstance (),
1330
1337
"google_memcache_instance" : memcache .ResourceMemcacheInstance (),
1331
1338
"google_ml_engine_model" : mlengine .ResourceMLEngineModel (),
1332
1339
"google_monitoring_alert_policy" : monitoring .ResourceMonitoringAlertPolicy (),
@@ -1734,6 +1741,7 @@ func providerConfigure(ctx context.Context, d *schema.ResourceData, p *schema.Pr
1734
1741
config .IdentityPlatformBasePath = d .Get ("identity_platform_custom_endpoint" ).(string )
1735
1742
config .KMSBasePath = d .Get ("kms_custom_endpoint" ).(string )
1736
1743
config .LoggingBasePath = d .Get ("logging_custom_endpoint" ).(string )
1744
+ config .LookerBasePath = d .Get ("looker_custom_endpoint" ).(string )
1737
1745
config .MemcacheBasePath = d .Get ("memcache_custom_endpoint" ).(string )
1738
1746
config .MLEngineBasePath = d .Get ("ml_engine_custom_endpoint" ).(string )
1739
1747
config .MonitoringBasePath = d .Get ("monitoring_custom_endpoint" ).(string )
0 commit comments