@@ -909,6 +909,14 @@ func Provider() *schema.Provider {
909909 "GOOGLE_WORKFLOWS_CUSTOM_ENDPOINT" ,
910910 }, DefaultBasePaths [WorkflowsBasePathKey ]),
911911 },
912+ "workstations_custom_endpoint" : {
913+ Type : schema .TypeString ,
914+ Optional : true ,
915+ ValidateFunc : validateCustomEndpoint ,
916+ DefaultFunc : schema .MultiEnvDefaultFunc ([]string {
917+ "GOOGLE_WORKSTATIONS_CUSTOM_ENDPOINT" ,
918+ }, DefaultBasePaths [WorkstationsBasePathKey ]),
919+ },
912920
913921 // Handwritten Products / Versioned / Atypical Entries
914922 CloudBillingCustomEndpointEntryKey : CloudBillingCustomEndpointEntry ,
@@ -1089,9 +1097,9 @@ func Provider() *schema.Provider {
10891097 return provider
10901098}
10911099
1092- // Generated resources: 297
1100+ // Generated resources: 298
10931101// Generated IAM resources: 201
1094- // Total generated resources: 498
1102+ // Total generated resources: 499
10951103func ResourceMap () map [string ]* schema.Resource {
10961104 resourceMap , _ := ResourceMapWithErrors ()
10971105 return resourceMap
@@ -1598,6 +1606,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
15981606 "google_vertex_ai_index" : resourceVertexAIIndex (),
15991607 "google_vpc_access_connector" : resourceVPCAccessConnector (),
16001608 "google_workflows_workflow" : resourceWorkflowsWorkflow (),
1609+ "google_workstations_workstation_cluster" : resourceWorkstationsWorkstationCluster (),
16011610 },
16021611 map [string ]* schema.Resource {
16031612 // ####### START handwritten resources ###########
@@ -1924,6 +1933,7 @@ func providerConfigure(ctx context.Context, d *schema.ResourceData, p *schema.Pr
19241933 config .VertexAIBasePath = d .Get ("vertex_ai_custom_endpoint" ).(string )
19251934 config .VPCAccessBasePath = d .Get ("vpc_access_custom_endpoint" ).(string )
19261935 config .WorkflowsBasePath = d .Get ("workflows_custom_endpoint" ).(string )
1936+ config .WorkstationsBasePath = d .Get ("workstations_custom_endpoint" ).(string )
19271937
19281938 // Handwritten Products / Versioned / Atypical Entries
19291939 config .CloudBillingBasePath = d .Get (CloudBillingCustomEndpointEntryKey ).(string )
0 commit comments