* @deprecated Use {@link #createSecurityGroupRule(String, String, String, Integer, Integer)}
*/
public CreateRule createSecurityGroupRule(
Integer parentSecurityGroupId, String ipProtocol, Integer fromPort,
Integer toPort, Integer sourceGroupId) {
SecurityGroupRuleForCreate securityGroupRuleForCreate = new SecurityGroupRuleForCreate(
parentSecurityGroupId, ipProtocol, fromPort, toPort,
sourceGroupId);
return new CreateRule(securityGroupRuleForCreate);
}