@@ -59,6 +59,7 @@ import (
59
59
"github.com/hashicorp/terraform-provider-google/google/services/dialogflowcx"
60
60
"github.com/hashicorp/terraform-provider-google/google/services/dns"
61
61
"github.com/hashicorp/terraform-provider-google/google/services/documentai"
62
+ "github.com/hashicorp/terraform-provider-google/google/services/documentaiwarehouse"
62
63
"github.com/hashicorp/terraform-provider-google/google/services/essentialcontacts"
63
64
"github.com/hashicorp/terraform-provider-google/google/services/filestore"
64
65
"github.com/hashicorp/terraform-provider-google/google/services/firestore"
@@ -453,6 +454,11 @@ func Provider() *schema.Provider {
453
454
Optional : true ,
454
455
ValidateFunc : transport_tpg .ValidateCustomEndpoint ,
455
456
},
457
+ "document_ai_warehouse_custom_endpoint" : {
458
+ Type : schema .TypeString ,
459
+ Optional : true ,
460
+ ValidateFunc : transport_tpg .ValidateCustomEndpoint ,
461
+ },
456
462
"essential_contacts_custom_endpoint" : {
457
463
Type : schema .TypeString ,
458
464
Optional : true ,
@@ -947,9 +953,9 @@ func DatasourceMapWithErrors() (map[string]*schema.Resource, error) {
947
953
})
948
954
}
949
955
950
- // Generated resources: 303
956
+ // Generated resources: 305
951
957
// Generated IAM resources: 204
952
- // Total generated resources: 507
958
+ // Total generated resources: 509
953
959
func ResourceMap () map [string ]* schema.Resource {
954
960
resourceMap , _ := ResourceMapWithErrors ()
955
961
return resourceMap
@@ -1259,6 +1265,8 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
1259
1265
"google_dns_response_policy_rule" : dns .ResourceDNSResponsePolicyRule (),
1260
1266
"google_document_ai_processor" : documentai .ResourceDocumentAIProcessor (),
1261
1267
"google_document_ai_processor_default_version" : documentai .ResourceDocumentAIProcessorDefaultVersion (),
1268
+ "google_document_ai_warehouse_document_schema" : documentaiwarehouse .ResourceDocumentAIWarehouseDocumentSchema (),
1269
+ "google_document_ai_warehouse_location" : documentaiwarehouse .ResourceDocumentAIWarehouseLocation (),
1262
1270
"google_essential_contacts_contact" : essentialcontacts .ResourceEssentialContactsContact (),
1263
1271
"google_filestore_backup" : filestore .ResourceFilestoreBackup (),
1264
1272
"google_filestore_instance" : filestore .ResourceFilestoreInstance (),
@@ -1736,6 +1744,7 @@ func providerConfigure(ctx context.Context, d *schema.ResourceData, p *schema.Pr
1736
1744
config .DialogflowCXBasePath = d .Get ("dialogflow_cx_custom_endpoint" ).(string )
1737
1745
config .DNSBasePath = d .Get ("dns_custom_endpoint" ).(string )
1738
1746
config .DocumentAIBasePath = d .Get ("document_ai_custom_endpoint" ).(string )
1747
+ config .DocumentAIWarehouseBasePath = d .Get ("document_ai_warehouse_custom_endpoint" ).(string )
1739
1748
config .EssentialContactsBasePath = d .Get ("essential_contacts_custom_endpoint" ).(string )
1740
1749
config .FilestoreBasePath = d .Get ("filestore_custom_endpoint" ).(string )
1741
1750
config .FirestoreBasePath = d .Get ("firestore_custom_endpoint" ).(string )
0 commit comments