Skip to content

Commit 60a66b7

Browse files
committed
add
1 parent 586a58b commit 60a66b7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tencentcloud/services/dlc/resource_tc_dlc_user_vpc_connection.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159,19 +159,19 @@ func resourceTencentCloudDlcUserVpcConnectionRead(d *schema.ResourceData, meta i
159159
}
160160

161161
if respData.UserVpcId != nil {
162-
d.Set("user_vpc_id", respData.UserVpcId)
162+
_ = d.Set("user_vpc_id", respData.UserVpcId)
163163
}
164164

165165
if respData.UserVpcEndpointName != nil {
166-
d.Set("user_vpc_endpoint_name", respData.UserVpcEndpointName)
166+
_ = d.Set("user_vpc_endpoint_name", respData.UserVpcEndpointName)
167167
}
168168

169169
if respData.EngineNetworkId != nil {
170-
d.Set("engine_network_id", respData.EngineNetworkId)
170+
_ = d.Set("engine_network_id", respData.EngineNetworkId)
171171
}
172172

173173
if respData.UserVpcEndpointId != nil {
174-
d.Set("user_vpc_endpoint_id", respData.UserVpcEndpointId)
174+
_ = d.Set("user_vpc_endpoint_id", respData.UserVpcEndpointId)
175175
}
176176

177177
return nil

0 commit comments

Comments
 (0)