HomeSort by relevance Sort by last modified time
    Searched refs:ec2 (Results 1 - 25 of 122) sorted by null

1 2 3 4 5

  /external/libcxx/test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.nonmembers/
lt.pass.cpp 24 const std::error_code ec2(7, std::generic_category());
25 assert(ec1 < ec2);
  /external/libcxx/test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.nonmembers/
lt.pass.cpp 24 const std::error_condition ec2(7, std::generic_category());
25 assert(ec1 < ec2);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.nonmembers/
lt.pass.cpp 24 const std::error_code ec2(7, std::generic_category());
25 assert(ec1 < ec2);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.nonmembers/
lt.pass.cpp 24 const std::error_condition ec2(7, std::generic_category());
25 assert(ec1 < ec2);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/ec2/
test_cert_verification.py 31 import boto.ec2 namespace
35 ec2 = True variable in class:EC2CertVerificationTest
36 regions = boto.ec2.regions()
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/ec2/
test_instancestatus.py 5 from boto.ec2.connection import EC2Connection
8 <DescribeInstanceStatusResponse xmlns="http://ec2.amazonaws.com/doc/2013-02-01/">
18 ec2 = EC2Connection(aws_access_key_id='aws_access_key_id',
23 ec2.make_request = mock.Mock(return_value=mock_response)
24 all_statuses = ec2.get_all_instance_status()
25 self.assertNotIn('IncludeAllInstances', ec2.make_request.call_args[0][1])
29 ec2 = EC2Connection(aws_access_key_id='aws_access_key_id',
34 ec2.make_request = mock.Mock(return_value=mock_response)
35 all_statuses = ec2.get_all_instance_status(include_all_instances=True)
36 self.assertIn('IncludeAllInstances', ec2.make_request.call_args[0][1]
    [all...]
test_connection.py 9 import boto.ec2 namespace
12 from boto.ec2.blockdevicemapping import BlockDeviceType, BlockDeviceMapping
13 from boto.ec2.connection import EC2Connection
14 from boto.ec2.snapshot import Snapshot
15 from boto.ec2.reservedinstance import ReservedInstancesConfiguration
23 self.ec2 = self.service_connection
85 response = self.ec2.get_all_reserved_instances_offerings()
107 self.ec2.get_all_reserved_instances_offerings(
146 response = self.ec2.purchase_reserved_instance_offering(
161 return b"""<CreateImageResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/"
    [all...]
test_instancetype.py 5 import boto.ec2 namespace
7 from boto.ec2.connection import EC2Connection
15 self.ec2 = self.service_connection
22 <DescribeInstanceTypesResponseType xmlns="http://ec2.amazonaws.com/doc/2013-02-01/">
103 response = self.ec2.get_all_instance_types()
test_snapshot.py 4 from boto.ec2.connection import EC2Connection
5 from boto.ec2.snapshot import Snapshot
14 <DescribeSnapshotsResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
test_securitygroup.py 6 from boto.ec2.connection import EC2Connection
7 from boto.ec2.securitygroup import SecurityGroup
11 <DescribeSecurityGroupsResponse xmlns="http://ec2.amazonaws.com/doc/2013-06-15/">
61 <DescribeInstancesResponse xmlns="http://ec2.amazonaws.com/doc/2012-10-01/">
test_instance.py 7 from boto.ec2.connection import EC2Connection
10 <DescribeInstancesResponse xmlns="http://ec2.amazonaws.com/doc/2012-10-01/">
123 <RunInstancesResponse xmlns="http://ec2.amazonaws.com/doc/2012-06-01/">
188 ec2 = EC2Connection(aws_access_key_id='aws_access_key_id',
193 ec2.make_request = mock.Mock(return_value=mock_response)
194 reservation = ec2.run_instances(image_id='ami-12345')
200 # id of the ec2 instance).
test_reservedinstance.py 2 from boto.ec2.connection import EC2Connection
3 from boto.ec2.reservedinstance import ReservedInstance
test_spotinstance.py 3 from boto.ec2.connection import EC2Connection
12 <CancelSpotInstanceRequestsResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
51 <DescribeSpotPriceHistoryResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-15/">
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/ec2/autoscale/
test_cert_verification.py 31 import boto.ec2.autoscale namespace
36 regions = boto.ec2.autoscale.regions()
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/ec2/cloudwatch/
test_cert_verification.py 29 import boto.ec2.cloudwatch namespace
35 regions = boto.ec2.cloudwatch.regions()
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/ec2/elb/
test_cert_verification.py 31 import boto.ec2.elb namespace
36 regions = boto.ec2.elb.regions()
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
kill_instance 7 from boto.ec2 import regions
14 ec2 = boto.connect_ec2(region=region)
17 ec2.terminate_instances([instance_id])
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/manage/
volume.py 28 import boto.ec2 namespace
40 params['region'] = propget.get(prop, choices=boto.ec2.regions)
44 prop = StringProperty(name='zone', verbose_name='EC2 Availability Zone',
45 choices=self.ec2.get_all_zones)
71 self.ec2 = params['region'].connect()
81 region_name = StringProperty(required=True, verbose_name='EC2 Region')
82 zone_name = StringProperty(required=True, verbose_name='EC2 Zone')
101 ec2 = region.connect()
104 ebs_volume = ec2.create_volume(size, zone.name)
106 v.ec2 = ec
    [all...]
server.py 23 High-level abstraction of an EC2 server
26 import boto.ec2 namespace
32 from boto.ec2.zone import Zone
33 from boto.ec2.keypair import KeyPair
66 command += 'ec2-bundle-vol '
82 command += 'ec2-upload-bundle '
85 command += '-a %s ' % self.server.ec2.aws_access_key_id
86 command += '-s %s ' % self.server.ec2.aws_secret_access_key
125 self.image_id = self.server.ec2.register_image(name=prefix, image_location='%s/%s.manifest.xml' % (bucket, prefix))
132 for ami in self.ec2.get_all_images()
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/
buyreservation.py 21 import boto.ec2 namespace
36 prop = StringProperty(name='region', verbose_name='EC2 Region',
37 choices=boto.ec2.regions)
38 params['region'] = propget.get(prop, choices=boto.ec2.regions)
53 prop = StringProperty(name='zone', verbose_name='EC2 Availability Zone',
54 choices=self.ec2.get_all_zones)
59 self.ec2 = params['region'].connect()
68 offerings = obj.ec2.get_all_reserved_instances_offerings(instance_type=params['instance_type'],
regioninfo.py 29 Represents an EC2 Region
34 from boto.ec2.connection import EC2Connection
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/vpc/
test_internetgateway.py 13 <DescribeInternetGatewaysResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
54 <CreateInternetGatewayResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
82 <DeleteInternetGatewayResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
106 <AttachInternetGatewayResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
132 <DetachInternetGatewayResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
test_vpngateway.py 15 <DescribeVpnGatewaysResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
62 <CreateVpnGatewayResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
95 <DeleteVpnGatewayResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
119 <AttachVpnGatewayResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
149 <DetachVpnGatewayResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
174 <DisableVgwRoutePropagationResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
200 <DisableVgwRoutePropagationResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
test_networkacl.py 13 <DescribeNetworkAclsResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
145 <DescribeNetworkAclsResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
191 <DescribeNetworkAclsResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
231 <ReplaceNetworkAclAssociationResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
278 <CreateNetworkAclResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
324 <DeleteNetworkAclResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
348 <CreateNetworkAclEntryResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
401 <ReplaceNetworkAclEntryResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
453 <DeleteNetworkAclEntryResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
480 <DescribeNetworkAclsResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/"
    [all...]
test_vpc.py 6 from boto.ec2.securitygroup import SecurityGroup
10 <DescribeVpcsResponse xmlns="http://ec2.amazonaws.com/doc/2013-02-01/">
49 <CreateVpcResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
86 <DeleteVpcResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
110 <ModifyVpcAttributeResponse xmlns="http://ec2.amazonaws.com/doc/2013-10-01/">
149 <DescribeVpcClassicLinkResponse xmlns="http://ec2.amazonaws.com/doc/2014-09-01/">
211 <AttachClassicLinkVpcResponse xmlns="http://ec2.amazonaws.com/doc/2014-09-01/">
267 <DetachClassicLinkVpcResponse xmlns="http://ec2.amazonaws.com/doc/2014-09-01/">
292 <EnableVpcClassicLinkResponse xmlns="http://ec2.amazonaws.com/doc/2014-09-01/">
315 <DisableVpcClassicLinkResponse xmlns="http://ec2.amazonaws.com/doc/2014-09-01/"
    [all...]

Completed in 907 milliseconds

1 2 3 4 5