Searched refs:to_port (Results 1 – 4 of 4) sorted by relevance
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/ |
D | securitygroup.py | 97 def add_rule(self, ip_protocol, from_port, to_port, argument 108 rule.to_port = to_port 118 def remove_rule(self, ip_protocol, from_port, to_port, argument 133 if rule.to_port == to_port: 146 def authorize(self, ip_protocol=None, from_port=None, to_port=None, argument 199 to_port, 208 self.add_rule(ip_protocol, from_port, to_port, src_group_name, 213 def revoke(self, ip_protocol=None, from_port=None, to_port=None, argument 239 to_port, 245 self.remove_rule(ip_protocol, from_port, to_port, src_group_name, [all …]
|
D | connection.py | 3043 from_port=None, to_port=None, argument 3090 if to_port: 3091 params['ToPort'] = to_port 3102 from_port=None, to_port=None, argument 3155 if from_port is None and to_port is None and ip_protocol is None: 3179 if to_port is not None: 3180 params['IpPermissions.1.ToPort'] = to_port 3197 to_port=None, argument 3219 if to_port is not None: 3220 params['IpPermissions.1.ToPort'] = to_port [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/vpc/ |
D | networkacl.py | 149 self.to_port = None 152 return 'PortRange:(%s-%s)' % ( self.from_port, self.to_port) 162 self.to_port = value
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/ec2/ |
D | test_securitygroup.py | 197 to_port='8080',
|