@@ -170,6 +170,62 @@ var messagesEn = map[string]util.Message{
170170 RC : 500 ,
171171 Action : "Wait for file share deletion" ,
172172 },
173+ "ListSubnetsFailed" : {
174+ Code : "ListSubnetsFailed" ,
175+ Description : "Unable to fetch list of subnets." ,
176+ Type : util .RetrivalFailed ,
177+ RC : 500 ,
178+ Action : "Unable to list subnets. Run 'ibmcloud is subnets' to list available subnets in your account." ,
179+ },
180+ "NextSubnetPageParsingError" : {
181+ Code : "NextSubnetPageParsingError" ,
182+ Description : "The next field '%s' specified in the next parameter of the list subnet call could not be parsed." ,
183+ Type : util .RetrivalFailed ,
184+ RC : 500 ,
185+ Action : "Please verify that the next field is correct." ,
186+ },
187+ "StartSubnetIDEmpty" : {
188+ Code : "StartSubnetIDEmpty" ,
189+ Description : "The start '%s' specified in the next parameter of the list subnet call is empty." ,
190+ Type : util .RetrivalFailed ,
191+ RC : 500 ,
192+ Action : "Please verify that the start field is correct." ,
193+ },
194+ "SubnetFindFailedWithZoneAndSubnetID" : {
195+ Code : "SubnetFindFailedWithZoneAndSubnetID" ,
196+ Description : "A subnet with the specified zone '%s' and available cluster subnet list '%s' could not be found." ,
197+ Type : util .RetrivalFailed ,
198+ RC : 404 ,
199+ Action : "Verify that the subnet from the cluster subnet list exists. Run 'ibmcloud is subnets' to list available subnets in your account." ,
200+ },
201+ "ListSecurityGroupsFailed" : {
202+ Code : "ListSecurityGroupsFailed" ,
203+ Description : "Unable to fetch list of securityGroups." ,
204+ Type : util .RetrivalFailed ,
205+ RC : 500 ,
206+ Action : "Unable to list securityGroups. Run 'ibmcloud is securityGroups' to list available securityGroups in your account." ,
207+ },
208+ "NextSecurityGroupPageParsingError" : {
209+ Code : "NextSecurityGroupPageParsingError" ,
210+ Description : "The next field '%s' specified in the next parameter of the list securityGroup call could not be parsed." ,
211+ Type : util .RetrivalFailed ,
212+ RC : 500 ,
213+ Action : "Please verify that the next field is correct." ,
214+ },
215+ "StartSecurityGroupIDEmpty" : {
216+ Code : "StartSecurityGroupIDEmpty" ,
217+ Description : "The start '%s' specified in the next parameter of the list securityGroup call is empty." ,
218+ Type : util .RetrivalFailed ,
219+ RC : 500 ,
220+ Action : "Please verify that the start field is correct." ,
221+ },
222+ "SecurityGroupFindFailedWithVPCAndSecurityGroupName" : {
223+ Code : "SecurityGroupFindFailedWithVPCAndSecurityGroupName" ,
224+ Description : "A securityGroup with the specified cluster securityGroup name '%s' could not be found." ,
225+ Type : util .RetrivalFailed ,
226+ RC : 404 ,
227+ Action : "Verify that the securityGroup from the cluster securityGroup list exists. Run 'ibmcloud is securityGroups' to list available securityGroups in your account." ,
228+ },
173229 "ListVolumesFailed" : {
174230 Code : "ListVolumesFailed" ,
175231 Description : "Unable to fetch list of file shares." ,
0 commit comments