66
66
// prefix-converted (should be "md5OfBody")
67
67
{"MD5Of" , "MD5Of" , "md5Of" , regexp .MustCompile ("M[dD]5Of" , regexp .None )},
68
68
// Prevent "MultipartUpload" from becoming "MultIPartUpload"
69
- {"Ip" , "IP" , "ip" , regexp .MustCompile ("Ip(?!art)" , regexp .None )},
69
+ // and "IPAM" from becoming "IPam"
70
+ {"Ip" , "IP" , "ip" , regexp .MustCompile ("Ip(?!art|am)" , regexp .None )},
70
71
// Model fields containing AMI will always capitalize the 'A' hence we don't
71
72
// have to look for words starting with a lowercase 'A'
72
73
{"Amis" , "AMIs" , "amis" , regexp .MustCompile ("Amis" , regexp .None )},
@@ -110,6 +111,7 @@ var (
110
111
// Prevent "IOPS" from becoming "IOps"
111
112
{"Io" , "IO" , "io" , regexp .MustCompile ("Io(?!ps)" , regexp .None )},
112
113
{"Iops" , "IOPS" , "iops" , nil },
114
+ {"Ipam" , "IPAM" , "ipam" , nil },
113
115
{"Json" , "JSON" , "json" , nil },
114
116
{"Jwt" , "JWT" , "jwt" , nil },
115
117
{"Kms" , "KMS" , "kms" , nil },
@@ -133,6 +135,7 @@ var (
133
135
{"Ssl" , "SSL" , "ssl" , nil },
134
136
{"Tcp" , "TCP" , "tcp" , nil },
135
137
{"Tde" , "TDE" , "tde" , nil },
138
+ {"Tpm" , "TPM" , "tpm" , nil },
136
139
{"Tls" , "TLS" , "tls" , nil },
137
140
{"Udp" , "UDP" , "udp" , nil },
138
141
// Need to prevent "security" from becoming "SecURIty"
0 commit comments