@@ -57,7 +57,7 @@ func ResourceServiceNetworkingConnection() *schema.Resource {
57
57
DiffSuppressFunc : tpgresource .CompareSelfLinkOrResourceName ,
58
58
Description : `Name of VPC network connected with service producers using VPC peering.` ,
59
59
},
60
- // NOTE(craigatgoogle) : This field is weird, it's required to make the Insert/List calls as a parameter
60
+ // TODO : This field is weird, it's required to make the Insert/List calls as a parameter
61
61
// named "parent", however it's also defined in the response as an output field called "peering", which
62
62
// uses "-" as a delimiter instead of ".". To alleviate user confusion I've opted to model the gcloud
63
63
// CLI's approach, calling the field "service" and accepting the same format as the CLI with the "."
@@ -357,7 +357,7 @@ func resourceServiceNetworkingConnectionImportState(d *schema.ResourceData, meta
357
357
return []* schema.ResourceData {d }, nil
358
358
}
359
359
360
- // NOTE(craigatgoogle) : The Connection resource in this API doesn't have an Id field, so inorder
360
+ // TODO : The Connection resource in this API doesn't have an Id field, so inorder
361
361
// to support the Read method, we create an Id using the tuple(Network, Service).
362
362
type connectionId struct {
363
363
Network string
@@ -395,7 +395,7 @@ func parseConnectionId(id string) (*connectionId, error) {
395
395
}, nil
396
396
}
397
397
398
- // NOTE(craigatgoogle) : An out of band aspect of this API is that it uses a unique formatting of network
398
+ // TODO : An out of band aspect of this API is that it uses a unique formatting of network
399
399
// different from the standard self_link URI. It requires a call to the resource manager to get the project
400
400
// number for the current project.
401
401
func RetrieveServiceNetworkingNetworkName (d * schema.ResourceData , config * transport_tpg.Config , network , userAgent string ) (string , error ) {
@@ -438,7 +438,7 @@ func RetrieveServiceNetworkingNetworkName(d *schema.ResourceData, config *transp
438
438
439
439
const parentServicePattern = "^services/.+$"
440
440
441
- // NOTE(craigatgoogle) : An out of band aspect of this API is that it requires the service name to be
441
+ // TODO : An out of band aspect of this API is that it requires the service name to be
442
442
// formatted as "services/<serviceName>"
443
443
func formatParentService (service string ) string {
444
444
r := regexp .MustCompile (parentServicePattern )
0 commit comments