@@ -113,11 +113,6 @@ Format: organizations/{organization_id}.`,
113113and may be sent on update and delete requests to ensure the client has an up-to-date
114114value before proceeding.` ,
115115 },
116- "self_link" : {
117- Type : schema .TypeString ,
118- Computed : true ,
119- Description : `Server-defined URL of this resource.` ,
120- },
121116 "terraform_labels" : {
122117 Type : schema .TypeMap ,
123118 Computed : true ,
@@ -245,9 +240,6 @@ func resourceNetworkSecuritySecurityProfileGroupRead(d *schema.ResourceData, met
245240 return transport_tpg .HandleNotFoundError (err , d , fmt .Sprintf ("NetworkSecuritySecurityProfileGroup %q" , d .Id ()))
246241 }
247242
248- if err := d .Set ("self_link" , flattenNetworkSecuritySecurityProfileGroupSelfLink (res ["selfLink" ], d , config )); err != nil {
249- return fmt .Errorf ("Error reading SecurityProfileGroup: %s" , err )
250- }
251243 if err := d .Set ("create_time" , flattenNetworkSecuritySecurityProfileGroupCreateTime (res ["createTime" ], d , config )); err != nil {
252244 return fmt .Errorf ("Error reading SecurityProfileGroup: %s" , err )
253245 }
@@ -438,10 +430,6 @@ func resourceNetworkSecuritySecurityProfileGroupImport(d *schema.ResourceData, m
438430 return []* schema.ResourceData {d }, nil
439431}
440432
441- func flattenNetworkSecuritySecurityProfileGroupSelfLink (v interface {}, d * schema.ResourceData , config * transport_tpg.Config ) interface {} {
442- return v
443- }
444-
445433func flattenNetworkSecuritySecurityProfileGroupCreateTime (v interface {}, d * schema.ResourceData , config * transport_tpg.Config ) interface {} {
446434 return v
447435}
0 commit comments