@@ -277,14 +277,6 @@ func Provider() *schema.Provider {
277277 "GOOGLE_CLOUD_BUILD_CUSTOM_ENDPOINT" ,
278278 }, DefaultBasePaths [CloudBuildBasePathKey ]),
279279 },
280- "cloud_deploy_custom_endpoint" : {
281- Type : schema .TypeString ,
282- Optional : true ,
283- ValidateFunc : validateCustomEndpoint ,
284- DefaultFunc : schema .MultiEnvDefaultFunc ([]string {
285- "GOOGLE_CLOUD_DEPLOY_CUSTOM_ENDPOINT" ,
286- }, DefaultBasePaths [CloudDeployBasePathKey ]),
287- },
288280 "cloud_functions_custom_endpoint" : {
289281 Type : schema .TypeString ,
290282 Optional : true ,
@@ -934,9 +926,9 @@ func Provider() *schema.Provider {
934926 return provider
935927}
936928
937- // Generated resources: 249
929+ // Generated resources: 247
938930// Generated IAM resources: 138
939- // Total generated resources: 387
931+ // Total generated resources: 385
940932func ResourceMap () map [string ]* schema.Resource {
941933 resourceMap , _ := ResourceMapWithErrors ()
942934 return resourceMap
@@ -1015,8 +1007,6 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
10151007 "google_cloud_asset_folder_feed" : resourceCloudAssetFolderFeed (),
10161008 "google_cloud_asset_organization_feed" : resourceCloudAssetOrganizationFeed (),
10171009 "google_cloudbuild_trigger" : resourceCloudBuildTrigger (),
1018- "google_cloud_deploy_delivery_pipeline" : resourceCloudDeployDeliveryPipeline (),
1019- "google_cloud_deploy_target" : resourceCloudDeployTarget (),
10201010 "google_cloudfunctions_function_iam_binding" : ResourceIamBinding (CloudFunctionsCloudFunctionIamSchema , CloudFunctionsCloudFunctionIamUpdaterProducer , CloudFunctionsCloudFunctionIdParseFunc ),
10211011 "google_cloudfunctions_function_iam_member" : ResourceIamMember (CloudFunctionsCloudFunctionIamSchema , CloudFunctionsCloudFunctionIamUpdaterProducer , CloudFunctionsCloudFunctionIdParseFunc ),
10221012 "google_cloudfunctions_function_iam_policy" : ResourceIamPolicy (CloudFunctionsCloudFunctionIamSchema , CloudFunctionsCloudFunctionIamUpdaterProducer , CloudFunctionsCloudFunctionIdParseFunc ),
@@ -1605,7 +1595,6 @@ func providerConfigure(ctx context.Context, d *schema.ResourceData, p *schema.Pr
16051595 config .BinaryAuthorizationBasePath = d .Get ("binary_authorization_custom_endpoint" ).(string )
16061596 config .CloudAssetBasePath = d .Get ("cloud_asset_custom_endpoint" ).(string )
16071597 config .CloudBuildBasePath = d .Get ("cloud_build_custom_endpoint" ).(string )
1608- config .CloudDeployBasePath = d .Get ("cloud_deploy_custom_endpoint" ).(string )
16091598 config .CloudFunctionsBasePath = d .Get ("cloud_functions_custom_endpoint" ).(string )
16101599 config .Cloudfunctions2BasePath = d .Get ("cloudfunctions2_custom_endpoint" ).(string )
16111600 config .CloudIdentityBasePath = d .Get ("cloud_identity_custom_endpoint" ).(string )
0 commit comments