@@ -102,6 +102,7 @@ import (
102
102
"github.com/hashicorp/terraform-provider-google/google/services/spanner"
103
103
"github.com/hashicorp/terraform-provider-google/google/services/sql"
104
104
"github.com/hashicorp/terraform-provider-google/google/services/storage"
105
+ "github.com/hashicorp/terraform-provider-google/google/services/storageinsights"
105
106
"github.com/hashicorp/terraform-provider-google/google/services/storagetransfer"
106
107
"github.com/hashicorp/terraform-provider-google/google/services/tags"
107
108
"github.com/hashicorp/terraform-provider-google/google/services/tpu"
@@ -678,6 +679,11 @@ func Provider() *schema.Provider {
678
679
Optional : true ,
679
680
ValidateFunc : transport_tpg .ValidateCustomEndpoint ,
680
681
},
682
+ "storage_insights_custom_endpoint" : {
683
+ Type : schema .TypeString ,
684
+ Optional : true ,
685
+ ValidateFunc : transport_tpg .ValidateCustomEndpoint ,
686
+ },
681
687
"storage_transfer_custom_endpoint" : {
682
688
Type : schema .TypeString ,
683
689
Optional : true ,
@@ -980,9 +986,9 @@ func DatasourceMapWithErrors() (map[string]*schema.Resource, error) {
980
986
})
981
987
}
982
988
983
- // Generated resources: 320
989
+ // Generated resources: 321
984
990
// Generated IAM resources: 207
985
- // Total generated resources: 527
991
+ // Total generated resources: 528
986
992
func ResourceMap () map [string ]* schema.Resource {
987
993
resourceMap , _ := ResourceMapWithErrors ()
988
994
return resourceMap
@@ -1482,6 +1488,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
1482
1488
"google_storage_default_object_access_control" : storage .ResourceStorageDefaultObjectAccessControl (),
1483
1489
"google_storage_hmac_key" : storage .ResourceStorageHmacKey (),
1484
1490
"google_storage_object_access_control" : storage .ResourceStorageObjectAccessControl (),
1491
+ "google_storage_insights_report_config" : storageinsights .ResourceStorageInsightsReportConfig (),
1485
1492
"google_storage_transfer_agent_pool" : storagetransfer .ResourceStorageTransferAgentPool (),
1486
1493
"google_tags_tag_binding" : tags .ResourceTagsTagBinding (),
1487
1494
"google_tags_tag_key" : tags .ResourceTagsTagKey (),
@@ -1834,6 +1841,7 @@ func ProviderConfigure(ctx context.Context, d *schema.ResourceData, p *schema.Pr
1834
1841
config .SpannerBasePath = d .Get ("spanner_custom_endpoint" ).(string )
1835
1842
config .SQLBasePath = d .Get ("sql_custom_endpoint" ).(string )
1836
1843
config .StorageBasePath = d .Get ("storage_custom_endpoint" ).(string )
1844
+ config .StorageInsightsBasePath = d .Get ("storage_insights_custom_endpoint" ).(string )
1837
1845
config .StorageTransferBasePath = d .Get ("storage_transfer_custom_endpoint" ).(string )
1838
1846
config .TagsBasePath = d .Get ("tags_custom_endpoint" ).(string )
1839
1847
config .TPUBasePath = d .Get ("tpu_custom_endpoint" ).(string )
0 commit comments