@@ -38,7 +38,6 @@ import (
38
38
"github.com/hashicorp/terraform-provider-google/google/services/cloudfunctions2"
39
39
"github.com/hashicorp/terraform-provider-google/google/services/cloudidentity"
40
40
"github.com/hashicorp/terraform-provider-google/google/services/cloudids"
41
- "github.com/hashicorp/terraform-provider-google/google/services/cloudiot"
42
41
"github.com/hashicorp/terraform-provider-google/google/services/cloudrun"
43
42
"github.com/hashicorp/terraform-provider-google/google/services/cloudrunv2"
44
43
"github.com/hashicorp/terraform-provider-google/google/services/cloudscheduler"
@@ -351,11 +350,6 @@ func Provider() *schema.Provider {
351
350
Optional : true ,
352
351
ValidateFunc : transport_tpg .ValidateCustomEndpoint ,
353
352
},
354
- "cloud_iot_custom_endpoint" : {
355
- Type : schema .TypeString ,
356
- Optional : true ,
357
- ValidateFunc : transport_tpg .ValidateCustomEndpoint ,
358
- },
359
353
"cloud_run_custom_endpoint" : {
360
354
Type : schema .TypeString ,
361
355
Optional : true ,
@@ -887,7 +881,6 @@ func DatasourceMapWithErrors() (map[string]*schema.Resource, error) {
887
881
"google_cloudbuildv2_connection_iam_policy" : tpgiamresource .DataSourceIamPolicy (cloudbuildv2 .Cloudbuildv2ConnectionIamSchema , cloudbuildv2 .Cloudbuildv2ConnectionIamUpdaterProducer ),
888
882
"google_cloudfunctions_function_iam_policy" : tpgiamresource .DataSourceIamPolicy (cloudfunctions .CloudFunctionsCloudFunctionIamSchema , cloudfunctions .CloudFunctionsCloudFunctionIamUpdaterProducer ),
889
883
"google_cloudfunctions2_function_iam_policy" : tpgiamresource .DataSourceIamPolicy (cloudfunctions2 .Cloudfunctions2functionIamSchema , cloudfunctions2 .Cloudfunctions2functionIamUpdaterProducer ),
890
- "google_cloudiot_registry_iam_policy" : tpgiamresource .DataSourceIamPolicy (cloudiot .CloudIotDeviceRegistryIamSchema , cloudiot .CloudIotDeviceRegistryIamUpdaterProducer ),
891
884
"google_cloud_run_service_iam_policy" : tpgiamresource .DataSourceIamPolicy (cloudrun .CloudRunServiceIamSchema , cloudrun .CloudRunServiceIamUpdaterProducer ),
892
885
"google_cloud_run_v2_job_iam_policy" : tpgiamresource .DataSourceIamPolicy (cloudrunv2 .CloudRunV2JobIamSchema , cloudrunv2 .CloudRunV2JobIamUpdaterProducer ),
893
886
"google_cloud_run_v2_service_iam_policy" : tpgiamresource .DataSourceIamPolicy (cloudrunv2 .CloudRunV2ServiceIamSchema , cloudrunv2 .CloudRunV2ServiceIamUpdaterProducer ),
@@ -965,9 +958,9 @@ func DatasourceMapWithErrors() (map[string]*schema.Resource, error) {
965
958
})
966
959
}
967
960
968
- // Generated resources: 306
969
- // Generated IAM resources: 204
970
- // Total generated resources: 510
961
+ // Generated resources: 304
962
+ // Generated IAM resources: 201
963
+ // Total generated resources: 505
971
964
func ResourceMap () map [string ]* schema.Resource {
972
965
resourceMap , _ := ResourceMapWithErrors ()
973
966
return resourceMap
@@ -1089,11 +1082,6 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
1089
1082
"google_cloud_identity_group" : cloudidentity .ResourceCloudIdentityGroup (),
1090
1083
"google_cloud_identity_group_membership" : cloudidentity .ResourceCloudIdentityGroupMembership (),
1091
1084
"google_cloud_ids_endpoint" : cloudids .ResourceCloudIdsEndpoint (),
1092
- "google_cloudiot_device" : cloudiot .ResourceCloudIotDevice (),
1093
- "google_cloudiot_registry" : cloudiot .ResourceCloudIotDeviceRegistry (),
1094
- "google_cloudiot_registry_iam_binding" : tpgiamresource .ResourceIamBinding (cloudiot .CloudIotDeviceRegistryIamSchema , cloudiot .CloudIotDeviceRegistryIamUpdaterProducer , cloudiot .CloudIotDeviceRegistryIdParseFunc ),
1095
- "google_cloudiot_registry_iam_member" : tpgiamresource .ResourceIamMember (cloudiot .CloudIotDeviceRegistryIamSchema , cloudiot .CloudIotDeviceRegistryIamUpdaterProducer , cloudiot .CloudIotDeviceRegistryIdParseFunc ),
1096
- "google_cloudiot_registry_iam_policy" : tpgiamresource .ResourceIamPolicy (cloudiot .CloudIotDeviceRegistryIamSchema , cloudiot .CloudIotDeviceRegistryIamUpdaterProducer , cloudiot .CloudIotDeviceRegistryIdParseFunc ),
1097
1085
"google_cloud_run_domain_mapping" : cloudrun .ResourceCloudRunDomainMapping (),
1098
1086
"google_cloud_run_service" : cloudrun .ResourceCloudRunService (),
1099
1087
"google_cloud_run_service_iam_binding" : tpgiamresource .ResourceIamBinding (cloudrun .CloudRunServiceIamSchema , cloudrun .CloudRunServiceIamUpdaterProducer , cloudrun .CloudRunServiceIdParseFunc ),
@@ -1736,7 +1724,6 @@ func ProviderConfigure(ctx context.Context, d *schema.ResourceData, p *schema.Pr
1736
1724
config .Cloudfunctions2BasePath = d .Get ("cloudfunctions2_custom_endpoint" ).(string )
1737
1725
config .CloudIdentityBasePath = d .Get ("cloud_identity_custom_endpoint" ).(string )
1738
1726
config .CloudIdsBasePath = d .Get ("cloud_ids_custom_endpoint" ).(string )
1739
- config .CloudIotBasePath = d .Get ("cloud_iot_custom_endpoint" ).(string )
1740
1727
config .CloudRunBasePath = d .Get ("cloud_run_custom_endpoint" ).(string )
1741
1728
config .CloudRunV2BasePath = d .Get ("cloud_run_v2_custom_endpoint" ).(string )
1742
1729
config .CloudSchedulerBasePath = d .Get ("cloud_scheduler_custom_endpoint" ).(string )
0 commit comments