{ "info": { "author": "OpenStack", "author_email": "openstack-discuss@lists.openstack.org", "bugtrack_url": null, "classifiers": [ "Environment :: OpenStack", "Intended Audience :: Information Technology", "Intended Audience :: System Administrators", "License :: OSI Approved :: Apache Software License", "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "========================\nTeam and repository tags\n========================\n\n.. image:: https://governance.openstack.org/tc/badges/ec2-api.svg\n :target: https://governance.openstack.org/tc/reference/tags/index.html\n\n.. Change things from this point on\n\nOpenStack EC2 API README\n------------------------\n\nSupport of EC2 API for OpenStack.\nThis project provides a standalone EC2 API service which pursues two goals:\n\n 1. Implement VPC API\n 2. Create a standalone service for EC2 API support.\n\nInstallation\n============\n\nRun install.sh\n\nThe EC2 API service gets installed on port 8788 by default. It can be changed\nbefore the installation in install.sh script.\n\nThe services afterwards can be started as binaries:\n\n::\n\n /usr/local/bin/ec2-api\n /usr/local/bin/ec2-api-metadata\n /usr/local/bin/ec2-api-s3\n\nor set up as Linux services.\n\nInstallation in devstack:\n\nIn order to install ec2-api with devstack the following should be added to\nthe local.conf or localrc the following line:\n\n::\n\n enable_plugin ec2-api https://opendev.org/openstack/ec2-api\n\nTo configure OpenStack for EC2 API metadata service:\n\nfor Nova-network\n add::\n\n [DEFAULT]\n metadata_port = 8789\n [neutron]\n service_metadata_proxy = True\n\n to /etc/nova.conf\n\n then restart nova-metadata (can be run as part of nova-api service) and\n nova-network services.\n\nfor Neutron\n add::\n\n [DEFAULT]\n nova_metadata_port = 8789\n\n to /etc/neutron/metadata_agent.ini\n\n then restart neutron-metadata service.\n\nS3 server is intended only to support EC2 operations which require S3 server\n(e.g. CreateImage) in OpenStack deployments without regular object storage.\nIt must not be used as a substitution for all-purposes object storage server.\nDo not start it if the deployment has its own object storage or uses a public\none (e.g. AWS S3).\n\nUsage\n=====\n\nDownload aws cli from Amazon.\nCreate configuration file for aws cli in your home directory ~/.aws/config:\n\n::\n\n [default]\n aws_access_key_id = 1b013f18d5ed47ae8ed0fbb8debc036b\n aws_secret_access_key = 9bbc6f270ffd4dfdbe0e896947f41df3\n region = us-east-1\n\nChange the aws_access_key_id and aws_secret_acces_key above to the values\nappropriate for your cloud (can be obtained by \"openstack ec2 credentials list\"\ncommand).\n\nRun aws cli commands using new EC2 API endpoint URL (can be obtained from\nopenstack cli with the new port 8788) like this:\n\naws --endpoint-url http://10.0.2.15:8788 ec2 describe-instances\n\n\nSupported Features and Limitations\n==================================\n\nGeneral:\n * DryRun option is not supported.\n * Some exceptions are not exactly the same as reported by AWS.\n\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| AWS | Command | Functionality | Limitations |\n| Component| | group | |\n+==========+==========================================+=================+========================================+\n| | **bold** - supported, normal - supported | | |\n| | with limitations, *italic* -not supported| | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *AcceptVpcPeeringConnection* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2, VPC | **AllocateAddress** | addresses | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *AllocateHosts* | dedicated hosts | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *AssignIpv6Addresses* | network | not supported |\n| | | interfaces | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | AssignPrivateIpAddresses | network | allowReassignment parameter |\n| | | interfaces | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2, VPC | **AssociateAddress** | addresses | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **AssociateDhcpOptions** | DHCP options | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **AssociateRouteTable** | routes | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *AssociateSubnetCidrBlock* | subnets | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *AssociateVpcCidrBlock* | VPC | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *AttachClassicLinkVpc* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **AttachInternetGateway** | internet | |\n| | | gateways | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **AttachNetworkInterface** | network | |\n| | | interfaces | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2, EBS | **AttachVolume** | volumes | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **AttachVpnGateway** | VPN | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2, VPC | AuthorizeSecurityGroupEgress | security groups | EC2 classic way to pass cidr, protocol,|\n| | | | sourceGroup, ports parameters |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2, VPC | AuthorizeSecurityGroupIngress | security groups | EC2 classic way to pass cidr, protocol,|\n| | | | sourceGroup, ports parameters |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *BundleInstance* | tasks,s3 | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *CancelBundleTask* | tasks,s3 | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *CancelConversionTask* | tasks,s3 | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *CancelExportTask* | tasks,s3 | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *CancelImportTask* | tasks,s3 | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *CancelReservedInstancesListing* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *CancelSpotFleetRequests* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *CancelSpotInstanceRequests* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *ConfirmProductInstance* | product codes | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | *CopyImage* | image | not supported |\n| | | provisioning | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | *CopySnapshot* | snapshots,s3 | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | CreateCustomerGateway | VPC gateways | BGPdynamicrouting |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **CreateDhcpOptions** | DHCP options | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *CreateEgressOnlyInternetGateway* | VPC gateways | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *CreateFlowLogs* | infrastructural | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | CreateImage | images | blockDeviceMapping parameter |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *CreateInstanceExportTask* | tasks,s3 | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **CreateInternetGateway** | VPC gateways | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | **CreateKeyPair** | key pairs | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *CreateNatGateway* | NAT gateways | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *CreateNetworkAcl* | ACL | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *CreateNetworkAclEntry* | ACL | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **CreateNetworkInterface** | network | |\n| | | interfaces | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *CreatePlacementGroup* | clusters | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *CreateReservedInstancesListing* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | CreateRoute | routes | vpcPeeringConnection parameter |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **CreateRouteTable** | routes | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2, VPC | **CreateSecurityGroup** | security groups | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | **CreateSnapshot** | snapshots | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *CreateSpotDatafeedSubscription* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | CreateSubnet | subnets | availabilityZone parameter |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | **CreateTags** | tags | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | CreateVolume | volumes | iops, encrypted, kmsKeyId parameters |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **CreateVpc** | VPC | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *CreateVpcEndpoint* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *CreateVpcPeeringConnection* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | CreateVpnConnection | VPN | BGP dynamic routing |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **CreateVpnConnectionRoute** | VPN | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | CreateVpnGateway | VPN | BGP dynamic routing |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DeleteCustomerGateway** | VPC gateways | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DeleteDhcpOptions** | DHCP options | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DeleteEgressOnlyInternetGateway* | VPC gateways | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DeleteFlowLogs* | infrastructural | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DeleteInternetGateway** | VPC gateways | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | **DeleteKeyPair** | key pairs | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DeleteNatGateway* | NAT gateways | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *DeleteNetworkAcl* | ACL | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *DeleteNetworkAclEntry* | ACL | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DeleteNetworkInterface** | network | |\n| | | interfaces | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | *DeletePlacementGroup* | clusters | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DeleteRoute** | routes | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DeleteRouteTable** | routes | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2, VPC | **DeleteSecurityGroup** | security groups | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | **DeleteSnapshot** | snapshots | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DeleteSpotDatafeedSubscription* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DeleteSubnet** | subnets | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | **DeleteTags** | tags | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | **DeleteVolume** | volumes | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DeleteVpc** | VPC | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *DeleteVpcEndpoints* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *DeleteVpcPeeringConnection* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DeleteVpnConnection** | VPN | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DeleteVpnConnectionRoute** | VPN | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DeleteVpnGateway** | VPN | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | **DeregisterImage** | images | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | DescribeAccountAttributes | infrastructural | vpc-max-security-groups-per-interface, |\n| | | | max-elastic-ips, |\n| | | | vpc-max-elastic-ips attributes |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2, VPC | **DescribeAddresses** | addresses | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | **DescribeAvailabilityZones** | availability | |\n| | | zones | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeBundleTasks* | tasks,s3 | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *DescribeClassicLinkInstances* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeConversionTasks* | tasks,s3 | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DescribeCustomerGateways** | gateways | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DescribeDhcpOptions** | DHCP options | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeEgressOnlyInternetGateways* | VPC gateways | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeExportTasks* | tasks,s3 | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeFlowLogs* | infrastructural | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeHosts* | dedicated hosts | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeIdentityIdFormat* | resource IDs | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeIdFormat* | resource IDs | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | DescribeImageAttribute | images | productCodes, sriovNetSupport |\n| | | | attributes |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | **DescribeImages** | images | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeImportImageTasks* | tasks,s3 | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeImportSnapshotTasks* | tasks,s3 | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | DescribeInstanceAttribute | instances | same limitations as for |\n| | | | ModifyInstanceAttribute |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2, | **DescribeInstances** | instances | |\n| EBS, VPC | | | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeInstanceStatus* | monitoring | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DescribeInternetGateways** | gateways | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | **DescribeKeyPairs** | key pairs | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *DescribeMovingAddresses* | infrastructural | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeNatGateways* | NAT gateways | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *DescribeNetworkAcls* | ACL | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DescribeNetworkInterfaceAttribute** | network | |\n| | | interfaces | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DescribeNetworkInterfaces** | network | |\n| | | interfaces | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | *DescribePlacementGroups* | clusters | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *DescribePrefixLists* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | DescribeRegions | availability | RegionNameparameter |\n| | | zones | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeReservedInstances* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeReservedInstancesListings* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeReservedInstancesModifications* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeReservedInstancesOfferings* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DescribeRouteTables** | routes | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeScheduledInstanceAvailability* | scheduled | not supported |\n| | | instances | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeScheduledInstances* | scheduled | not supported |\n| | | instances | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeSecurityGroupReferences* | security groups | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2, VPC | DescribeSecurityGroups | security groups | cidr, protocol, port, sourceGroup |\n| | | | parameters |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | *DescribeSnapshotAttribute* | snapshots | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | **DescribeSnapshots** | snapshots | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeSpotDatafeedSubscription* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeSpotFleetInstances* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeSpotFleetRequestHistory* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeSpotFleetRequests* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeSpotInstanceRequests* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeSpotPriceHistory* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeStaleSecurityGroups* | security groups | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DescribeSubnets** | subnets | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | **DescribeTags** | tags | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | *DescribeVolumeAttribute* | volumes | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | **DescribeVolumes** | volumes | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeVolumeStatus* | monitoring | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *DescribeVpcAttribute* | VPC | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *DescribeVpcClassicLink* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DescribeVpcClassicLinkDnsSupport* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *DescribeVpcEndpoints* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *DescribeVpcEndpointServices* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *DescribeVpcPeeringConnections* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DescribeVpcs** | VPC | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DescribeVpnConnections** | VPN | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DescribeVpnGateways** | VPN | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *DetachClassicLinkVpc* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DetachInternetGateway** | VPC | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DetachNetworkInterface** | network | |\n| | | interfaces | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2, EBS | DetachVolume | volumes | instance_id, device, force parameters |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DetachVpnGateway** | VPN | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DisableVgwRoutePropagation** | VPN | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *DisableVpcClassicLink* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DisableVpcClassicLinkDnsSupport* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2, VPC | **DisassociateAddress** | addresses | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **DisassociateRouteTable** | routes | |\n| | *DisassociateSubnetCidrBlock* | subnets | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *DisassociateVpcCidrBlock* | VPC | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **EnableVgwRoutePropagation** | VPN | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | *EnableVolumeIO* | monitoring | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *EnableVpcClassicLink* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *EnableVpcClassicLinkDnsSupport* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | **GetConsoleOutput** | instances | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *GetConsoleScreenshot* | instances | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | **GetPasswordData** | instances | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *ImportImage* | tasks,s3 | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *ImportInstance* | tasks,s3 | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | **ImportKeyPair** | keypairs | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *ImportSnapshot* | tasks,s3 | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *ImportVolume* | tasks,s3 | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *ModifyHosts* | dedicated hosts | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *ModifyIdentityIdFormat* | resource IDs | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *ModifyIdFormat* | resource IDs | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | ModifyImageAttribute | images | productCodes attribute |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | ModifyInstanceAttribute | instances | only disableApiTermination, |\n| | | | sourceDestCheck,instanceType supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *ModifyInstancePlacement* | dedicated hosts | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **ModifyNetworkInterfaceAttribute** | network | |\n| | | interfaces | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *ModifyReservedInstances* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | *ModifySnapshotAttribute* | snapshots | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *ModifySpotFleetRequest* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *ModifySubnetAttribute* | subnets | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | *ModifyVolumeAttribute* | volumes | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *ModifyVpcAttribute* | VPC | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *ModifyVpcEndpoint* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *ModifyVpcPeeringConnectionOptions* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *MonitorInstances* | monitoring | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *MoveAddressToVpc* | infrastructural | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *PurchaseReservedInstancesOffering* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *PurchaseScheduledInstances* | scheduled | not supported |\n| | | instances | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | **RebootInstances** | instances | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | RegisterImage | images | virtualizationType, sriovNetSupport |\n| | | | parameters |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *RejectVpcPeeringConnection* | cross-VPC | not supported |\n| | | connectivity | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2, VPC | **ReleaseAddress** | addresses | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *ReleaseHosts* | dedicated hosts | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *ReplaceNetworkAclAssociation* | ACL | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *ReplaceNetworkAclEntry* | ACL | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **ReplaceRoute** | routes | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **ReplaceRouteTableAssociation** | routes | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *ReportInstanceStatus* | monitoring | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *RequestSpotFleet* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *RequestSpotInstances* | market | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | **ResetImageAttribute** | images | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | ResetInstanceAttribute | instances | same limitations as for |\n| | | | ModifyInstanceAttribute |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **ResetNetworkInterfaceAttribute** | network | |\n| | | interfaces | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EBS | *ResetSnapshotAttribute* | snapshots | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | *RestoreAddressToClassic* | infrastructural | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2, VPC | RevokeSecurityGroupEgress | security groups | EC2 classic way to pass cidr, protocol,|\n| | | | sourceGroup, ports parameters |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2, VPC | RevokeSecurityGroupIngress | security groups | EC2 classic way to pass cidr, protocol,|\n| | | | sourceGroup, ports parameters |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2, | RunInstances | instances | placement, block_device_mapping partial|\n| VPC, EBS | | | support, monitoring, |\n| | | | iamInstanceProfile, ebsOptimized, |\n| | | | shutdownInitiatedInstanceBehavior |\n| | | | parameters |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *RunScheduledInstances* | scheduled | not supported |\n| | | instances | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | **StartInstances** | instances | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | **StopInstances** | instances | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| EC2 | **TerminateInstances** | instances | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *UnassignIpv6Addresses* | network | not supported |\n| | | interfaces | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| VPC | **UnassignPrivateIpAddresses** | network | |\n| | | interfaces | |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n| | *UnmonitorInstances* | monitoring | not supported |\n+----------+------------------------------------------+-----------------+----------------------------------------+\n\n\nReferences\n==========\n\nBlueprint:\nhttps://blueprints.launchpad.net/nova/+spec/ec2-api\n\nSpec:\nhttps://review.opendev.org/#/c/147882/\n\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://launchpad.net/ec2-api", "keywords": "", "license": "Apache License, Version 2.0", "maintainer": "", "maintainer_email": "", "name": "ec2-api", "package_url": "https://pypi.org/project/ec2-api/", "platform": "", "project_url": "https://pypi.org/project/ec2-api/", "project_urls": { "Homepage": "https://launchpad.net/ec2-api" }, "release_url": "https://pypi.org/project/ec2-api/9.0.0/", "requires_dist": [ "Babel (!=2.4.0)", "botocore", "cryptography (!=2.0)", "eventlet (!=0.18.3,!=0.20.1,!=0.21.0)", "greenlet", "httplib2", "lxml (!=3.7.0)", "oslo.cache", "oslo.config (!=4.3.0,!=4.4.0)", "oslo.concurrency", "oslo.context", "oslo.db", "oslo.log", "oslo.serialization (!=2.19.1)", "oslo.service (!=1.28.1)", "oslo.utils", "Paste", "PasteDeploy", "pbr (!=2.1.0)", "keystoneauth1", "python-cinderclient", "python-glanceclient", "python-keystoneclient (!=2.1.0)", "python-neutronclient", "python-novaclient", "python-openstackclient", "Routes", "six", "SQLAlchemy (!=1.1.5,!=1.1.6,!=1.1.7,!=1.1.8)", "sqlalchemy-migrate", "WebOb" ], "requires_python": "", "summary": "OpenStack Ec2api Service", "version": "9.0.0" }, "last_serial": 5982973, "releases": { "0.0.1": [], "0.1.0": [ { "comment_text": "", "digests": { "md5": "e4740b938722488bf911280490a0e2c8", "sha256": "ca744d9cf941db70f8a2c059437280df31eb2c7393838f49506c62c688d8253e" }, "downloads": -1, "filename": "ec2_api-0.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "e4740b938722488bf911280490a0e2c8", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 330400, "upload_time": "2015-04-22T13:08:38", "url": "https://files.pythonhosted.org/packages/43/5e/07a540f9ba3b65b5c82967e5444f2f41e70ea7375cdc0f778fa0ef5f9e42/ec2_api-0.1.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9119d44bf1a6de00c1f09b321f8e8a91", "sha256": "f4e2c6082a1043d46900a1a1c98a7d51c4a29821c08bfcdced6d8e75026cdb20" }, "downloads": -1, "filename": "ec2-api-0.1.0.tar.gz", "has_sig": false, "md5_digest": "9119d44bf1a6de00c1f09b321f8e8a91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 276805, "upload_time": "2015-04-22T13:08:42", "url": "https://files.pythonhosted.org/packages/a0/7f/69440961212882637a60376d37b17d81311dbaef4632020e559c2bd7b187/ec2-api-0.1.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "a603d4487ee153a787d6864a78315c84", "sha256": "049e0719588d8c6b18c470202143d3e944541f6885b91c657bbed80e8a5f34bd" }, "downloads": -1, "filename": "ec2_api-0.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "a603d4487ee153a787d6864a78315c84", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 332636, "upload_time": "2015-11-19T12:59:50", "url": "https://files.pythonhosted.org/packages/63/4a/ffe3027c5d7ad29eda5ed5548b66c29abbeabfdbe2c3cf6154f8abd2ce35/ec2_api-0.2.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cd0064e4a87e5d9c9eb24d09a7b74e64", "sha256": "38633f339686b2a5186ed56d8c3076d0249c3cab4f8c8ac3c995aedad85d17df" }, "downloads": -1, "filename": "ec2-api-0.2.0.tar.gz", "has_sig": false, "md5_digest": "cd0064e4a87e5d9c9eb24d09a7b74e64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 277210, "upload_time": "2015-11-19T12:59:55", "url": "https://files.pythonhosted.org/packages/0b/b7/eff1f92a38b8130410486bb78b2762c28c3774da48cde35104097e5f7ade/ec2-api-0.2.0.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "85b9b594b5b9fbbfa86470c8d4bed2fb", "sha256": "97cf3c7d6b01b2912993c60c5c648ab3b660fbd3af67cc1e7596e5b9f414d63d" }, "downloads": -1, "filename": "ec2_api-1.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "85b9b594b5b9fbbfa86470c8d4bed2fb", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 417680, "upload_time": "2015-11-19T14:19:57", "url": "https://files.pythonhosted.org/packages/cf/09/014aac06f581e33038bac0b7d3b2d1930613972b081617fdf1e77d0e5a51/ec2_api-1.0.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a45f1c97749f3861d5505be695cb56c6", "sha256": "8d3b662fe36a74d363d893aeceda497579dae29e100537b761aafeaec4f60998" }, "downloads": -1, "filename": "ec2-api-1.0.0.tar.gz", "has_sig": false, "md5_digest": "a45f1c97749f3861d5505be695cb56c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 337360, "upload_time": "2015-11-19T14:20:24", "url": "https://files.pythonhosted.org/packages/dc/ea/265c509dd7e047d42dbfca047387bb59a4976d5699613ddfc05115cc4fe5/ec2-api-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "94956ec7c48e361da9f7b8810c4c1e0d", "sha256": "e7ed3b6960ed60603d252aedc332f2075d3149512406cf1db57471c262ca8cf7" }, "downloads": -1, "filename": "ec2_api-1.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "94956ec7c48e361da9f7b8810c4c1e0d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 418638, "upload_time": "2015-12-17T12:29:01", "url": "https://files.pythonhosted.org/packages/26/33/4836babb2676053462815745a89ac07d2be0dfbdd33e6fc6a07b828dae80/ec2_api-1.0.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e86b4618d48721e0483671e98b8d5085", "sha256": "daa4a13516da2ba52e1326f5414ce9dc1d4e0403be987774d8ebb8092af23ff1" }, "downloads": -1, "filename": "ec2-api-1.0.1.tar.gz", "has_sig": false, "md5_digest": "e86b4618d48721e0483671e98b8d5085", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 334272, "upload_time": "2015-12-17T12:29:07", "url": "https://files.pythonhosted.org/packages/dc/2b/b96bcc00dbd91f6dcfd274aacdfd6f6610c5d2b2f85ce48c2279d77908cf/ec2-api-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "89b69b363614ce408b8339bb18cd433a", "sha256": "36fda90eb656683c679ffb6e7ff3202c7895af660a49a99204f0a08074865182" }, "downloads": -1, "filename": "ec2_api-1.0.2-py2-none-any.whl", "has_sig": false, "md5_digest": "89b69b363614ce408b8339bb18cd433a", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 418789, "upload_time": "2015-12-17T19:12:48", "url": "https://files.pythonhosted.org/packages/26/f3/8dab4394b5a583370321fb2b72397027036d9ae53d96afa71225a99dfd1f/ec2_api-1.0.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "714803b3471c4dd1b105c3603dca8f61", "sha256": "1fd97930c1956098348f0ff2eb8959cb241662ef7bad90baa9aed7a08ef823f8" }, "downloads": -1, "filename": "ec2-api-1.0.2.tar.gz", "has_sig": false, "md5_digest": "714803b3471c4dd1b105c3603dca8f61", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 338522, "upload_time": "2015-12-17T19:12:55", "url": "https://files.pythonhosted.org/packages/94/ab/778d59620fcc6525b7dd63727d54ecaaf2f7987b8cd23d4d1d3faad5f43b/ec2-api-1.0.2.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "1c87aba49dcc77f6bf18c7683ffa4653", "sha256": "fb6fc65b0d6f497e803724431702ba3161bc5072e986775bc1fee4ab558b696c" }, "downloads": -1, "filename": "ec2_api-2.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "1c87aba49dcc77f6bf18c7683ffa4653", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 403296, "upload_time": "2016-04-21T11:59:32", "url": "https://files.pythonhosted.org/packages/f6/6d/6b8c123a3604b318ffe8c750d407b9e776b6beeb53f3007e1547ad44fc4b/ec2_api-2.0.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bab02f61301d20963e02e189188fb376", "sha256": "70b2be524abbc7221d45587ef2bc9802515f2dba913db9f934a40498c4a7b948" }, "downloads": -1, "filename": "ec2-api-2.0.0.tar.gz", "has_sig": false, "md5_digest": "bab02f61301d20963e02e189188fb376", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 331523, "upload_time": "2016-04-21T11:59:40", "url": "https://files.pythonhosted.org/packages/17/a1/3e36b1d47a265310dff6a759cfd538389086d75f86b5b0f848865e46dd49/ec2-api-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "21d259a506d2c7e2082491792bdc05e7", "sha256": "d9c0e70dc40d1b8a54fa735e20ae127aa5f75d08520930f6b103b8f73c181754" }, "downloads": -1, "filename": "ec2_api-2.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "21d259a506d2c7e2082491792bdc05e7", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 403489, "upload_time": "2017-02-19T16:53:43", "url": "https://files.pythonhosted.org/packages/ed/8a/3333e5ea48064ed9b6b31b299b900a6df6915afb365d15cff44505041fb3/ec2_api-2.0.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5b521a91ac89df7c707179ddc7e1dd58", "sha256": "7542e910c2ea8b6c569dd9607c1dbe03e4fee96d7bed01c73062b62bc91a3825" }, "downloads": -1, "filename": "ec2-api-2.0.1.tar.gz", "has_sig": false, "md5_digest": "5b521a91ac89df7c707179ddc7e1dd58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 328276, "upload_time": "2017-02-19T16:53:46", "url": "https://files.pythonhosted.org/packages/4a/2e/b94cf062adfcd3e83fb697f37caaffd256ef5bd00ab311a71a44c7f9aadc/ec2-api-2.0.1.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "c5a1e9510f3870a2318d3e324c723dff", "sha256": "922ad572a626f2bb515a0510ad1ab15fbb7fa92fe46cab053a0e64c2b7850e0a" }, "downloads": -1, "filename": "ec2_api-3.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "c5a1e9510f3870a2318d3e324c723dff", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 404951, "upload_time": "2016-10-08T09:59:05", "url": "https://files.pythonhosted.org/packages/08/46/e3a7775868248dad61d1eec8725edf21fee131bd9703bb9963c82e766f3a/ec2_api-3.0.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dfd0f167cafce39eff29763ca9843bf2", "sha256": "dc68566275d5c1081a4d42019f8280057c4e63dd70c632571040a69aa55e431d" }, "downloads": -1, "filename": "ec2-api-3.0.0.tar.gz", "has_sig": false, "md5_digest": "dfd0f167cafce39eff29763ca9843bf2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 332755, "upload_time": "2016-10-08T09:59:08", "url": "https://files.pythonhosted.org/packages/73/b4/7facd49a918f31af026152a21273f03beacf4c0f1d211923d877b31596f6/ec2-api-3.0.0.tar.gz" } ], "3.0.2": [ { "comment_text": "", "digests": { "md5": "3847bc2c391a7f6dd7eee15cd3c6681e", "sha256": "fae78cabc31feffdb57550cee1f2700792be06170aacf60b1a51c08315b9bd3b" }, "downloads": -1, "filename": "ec2_api-3.0.2-py2-none-any.whl", "has_sig": false, "md5_digest": "3847bc2c391a7f6dd7eee15cd3c6681e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 404964, "upload_time": "2016-10-12T12:46:00", "url": "https://files.pythonhosted.org/packages/5a/d2/e438913e672eead33bb913a7585f534b3cf7c57dc8172841df4739a1aa03/ec2_api-3.0.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ebac2755877b40ccd1897690957d203d", "sha256": "a8632c956764c67c894224016a6b8324c8ea359c49059509bbb89c47a5dcdf21" }, "downloads": -1, "filename": "ec2-api-3.0.2.tar.gz", "has_sig": false, "md5_digest": "ebac2755877b40ccd1897690957d203d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 332265, "upload_time": "2016-10-12T12:46:04", "url": "https://files.pythonhosted.org/packages/ac/76/c2dcd35e342ffccf0b167549633bf63136df5972c32a163d4fe8dcc46822/ec2-api-3.0.2.tar.gz" } ], "3.0.3": [ { "comment_text": "", "digests": { "md5": "cd9d45aa57b586d17b3c468c99f10a89", "sha256": "150fa540217dbbc39e825fc8530a0eac18ed7bb7d2b4ac495d2a9d781e0696ca" }, "downloads": -1, "filename": "ec2_api-3.0.3-py2-none-any.whl", "has_sig": false, "md5_digest": "cd9d45aa57b586d17b3c468c99f10a89", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 405061, "upload_time": "2017-02-19T16:52:17", "url": "https://files.pythonhosted.org/packages/43/3c/893f2cf068140ba999ce9a0464a4c207df5afc0d677e37e7205ad8c02034/ec2_api-3.0.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a825975987d15bccdccc04196e38cd10", "sha256": "9516bdb0adf8b281868c187933cf3b2fed8319fdf034fb2cdbfe7346ee27abde" }, "downloads": -1, "filename": "ec2-api-3.0.3.tar.gz", "has_sig": false, "md5_digest": "a825975987d15bccdccc04196e38cd10", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 331227, "upload_time": "2017-02-19T16:52:21", "url": "https://files.pythonhosted.org/packages/3c/9d/f258907bfdbda4ac3b3430896678c7d466bff08232931534f9f83a866cbc/ec2-api-3.0.3.tar.gz" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "eee22ba7ae327b4083eaaac78aae7bbb", "sha256": "dcad553bbea3dffff4671bca6fddd7eae73480ff3511c7175676abef53aea41c" }, "downloads": -1, "filename": "ec2_api-4.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "eee22ba7ae327b4083eaaac78aae7bbb", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 416407, "upload_time": "2017-02-19T16:46:32", "url": "https://files.pythonhosted.org/packages/84/ea/5ddf52124c5fd3d87e2ec7576ed371bee8c79acfbc0bcb60cc889f11d3af/ec2_api-4.0.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e692eacc6c9feac9df7d1c231d91c1d6", "sha256": "a723c9e9196c67a56050cce68eaed6c4401d73778b7511067206d0edb8cda471" }, "downloads": -1, "filename": "ec2-api-4.0.0.tar.gz", "has_sig": false, "md5_digest": "e692eacc6c9feac9df7d1c231d91c1d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 360998, "upload_time": "2017-02-19T16:46:34", "url": "https://files.pythonhosted.org/packages/9c/08/cf7f4d62944874f1c8cbe84d55540fbf2db90a0f316ae714f69b37e63f04/ec2-api-4.0.0.tar.gz" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "ea7d65b8fe41bafcbca3424549a17bb7", "sha256": "f960d6c8a77898fb510b620e9a2a1b95d37a3038c27d230fe4750c36ac63bc52" }, "downloads": -1, "filename": "ec2_api-4.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "ea7d65b8fe41bafcbca3424549a17bb7", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 416475, "upload_time": "2017-09-01T15:09:30", "url": "https://files.pythonhosted.org/packages/52/e1/eba4ff67e72fa3e92007e5b789525df1513fa93a3e504998b3b4b6f415f9/ec2_api-4.0.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "84eee73ea9915b5c49c833773c6b311d", "sha256": "fc0699131e14e71cdf953c88de141ec4830caff5a8c36c166a8453caafb16f29" }, "downloads": -1, "filename": "ec2-api-4.0.1.tar.gz", "has_sig": false, "md5_digest": "84eee73ea9915b5c49c833773c6b311d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 359477, "upload_time": "2017-09-01T15:09:33", "url": "https://files.pythonhosted.org/packages/3a/49/73a0369681a6eecaa0c477e6ee8b7b22b01e1a4642042ba2f6d23ed5d4ed/ec2-api-4.0.1.tar.gz" } ], "5.0.0": [ { "comment_text": "", "digests": { "md5": "469c0ce2f4bf5115d4424d614edd7426", "sha256": "bd6fad8d129aff0b5d7e0077cb5955218a07823bd3ea54345fb0302dd1762b83" }, "downloads": -1, "filename": "ec2_api-5.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "469c0ce2f4bf5115d4424d614edd7426", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 423344, "upload_time": "2017-09-02T19:37:08", "url": "https://files.pythonhosted.org/packages/7e/ef/fbc107240b3e3be4688346c9de8eb7ed94f154a25a138c304ff70b071949/ec2_api-5.0.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a65b507ff42bbb89f5f3096a646c7190", "sha256": "70975c650c7a8028a1fcaa89b38ca10d2ae958ffeb2397f54f210395416dae70" }, "downloads": -1, "filename": "ec2-api-5.0.0.tar.gz", "has_sig": false, "md5_digest": "a65b507ff42bbb89f5f3096a646c7190", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 367220, "upload_time": "2017-09-02T19:37:12", "url": "https://files.pythonhosted.org/packages/ed/2a/c3d9bc23f93cdff09f3b7fcc2041780e0dd917246c8dad9a6b45974af248/ec2-api-5.0.0.tar.gz" } ], "6.0.0": [ { "comment_text": "", "digests": { "md5": "e7bfb875d1591740ff176f6f5cfdded8", "sha256": "f74dfe624aeabec7a45744ba57ace37b03868f997c633959ae7a19ffd201cce0" }, "downloads": -1, "filename": "ec2_api-6.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "e7bfb875d1591740ff176f6f5cfdded8", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 420801, "upload_time": "2018-02-26T11:42:28", "url": "https://files.pythonhosted.org/packages/c5/7a/6618a644932590d174cf70377753bbdab520fd7cde86b813944e175b65b6/ec2_api-6.0.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "85ca5728509abf7b6b7180a9b3b4fbcd", "sha256": "1b292c152370f78e7470c32a0d32185f02dbc459c60e1f6b099a4815aa553b39" }, "downloads": -1, "filename": "ec2-api-6.0.0.tar.gz", "has_sig": false, "md5_digest": "85ca5728509abf7b6b7180a9b3b4fbcd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 365462, "upload_time": "2018-02-26T11:42:32", "url": "https://files.pythonhosted.org/packages/e9/b9/09a88e2e24e7c0070a527b438d90917a8ff7dae5bba54e55099049527193/ec2-api-6.0.0.tar.gz" } ], "7.0.0": [ { "comment_text": "", "digests": { "md5": "8ff37a8bb3788f0d7069970be0bf9de9", "sha256": "6c6ac2af7bb4cc5c3137c6c36ffea8dd97fa784561ec19553390c7270279fe3c" }, "downloads": -1, "filename": "ec2_api-7.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "8ff37a8bb3788f0d7069970be0bf9de9", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 304871, "upload_time": "2018-07-30T15:32:22", "url": "https://files.pythonhosted.org/packages/90/68/df5f1c9fea4be9f87cb273f7becb26fd41c1407772f1e95beb9e4c0c83a1/ec2_api-7.0.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6c5d0540d247921e0aeab3c6d21a5e91", "sha256": "c32ed13240fdf5a2755033c7db02bb09b9ccf56e2a98478193f49344ae04af1f" }, "downloads": -1, "filename": "ec2-api-7.0.0.tar.gz", "has_sig": false, "md5_digest": "6c5d0540d247921e0aeab3c6d21a5e91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 301645, "upload_time": "2018-07-30T15:32:27", "url": "https://files.pythonhosted.org/packages/16/34/f913b10a1886d51d566aa1a74aa8cc1fe258f24410cdfb1cb53f920ecc91/ec2-api-7.0.0.tar.gz" } ], "7.1.0": [ { "comment_text": "", "digests": { "md5": "b04483a0fd49b6a2ea3431460c55a9af", "sha256": "de273df2fa20bf4018eeb4c444fccdd8cddc5bb4d0470ed789e219cd55566a31" }, "downloads": -1, "filename": "ec2_api-7.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "b04483a0fd49b6a2ea3431460c55a9af", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 305713, "upload_time": "2018-08-23T15:04:01", "url": "https://files.pythonhosted.org/packages/f1/b9/d67bc061f6d8f9bbc84b6b80ee157816f5802dfa3eafdb95345bb29b2bbf/ec2_api-7.1.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "eead6c22eea723f3f26d5622a2412108", "sha256": "393596e2ab45ba6221e726e841c2ffb189571c6c1a9a36b6443200df98a70bce" }, "downloads": -1, "filename": "ec2-api-7.1.0.tar.gz", "has_sig": false, "md5_digest": "eead6c22eea723f3f26d5622a2412108", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 302567, "upload_time": "2018-08-23T15:04:05", "url": "https://files.pythonhosted.org/packages/cd/9d/53a74dee1c65568c24aaa660b4012a7c9a132e9144e43df7538bd87e36ef/ec2-api-7.1.0.tar.gz" } ], "8.0.0": [ { "comment_text": "", "digests": { "md5": "025f94b5e1c9e510db8b7115fef00547", "sha256": "b455a2e2d0345327acd29711f553623917daec5df66ea4e8f3da289e33cfd69d" }, "downloads": -1, "filename": "ec2_api-8.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "025f94b5e1c9e510db8b7115fef00547", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 310667, "upload_time": "2019-01-23T22:37:47", "url": "https://files.pythonhosted.org/packages/b8/7f/9d9dd1bbb0182bf1fe19f67eca48c4d58408830a2fcd2ecd3a84380255b4/ec2_api-8.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "026cfe8c9b66588bd4326d56cb506be6", "sha256": "4c790337792d0b9e424a5c589788254bde83179ddfc1ef18525e98091c782070" }, "downloads": -1, "filename": "ec2-api-8.0.0.tar.gz", "has_sig": false, "md5_digest": "026cfe8c9b66588bd4326d56cb506be6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 303628, "upload_time": "2019-01-23T22:37:51", "url": "https://files.pythonhosted.org/packages/4d/cb/238eb26abc40517638588e6638b327c32e63d6e8a9c23e1665d8079eab8a/ec2-api-8.0.0.tar.gz" } ], "9.0.0": [ { "comment_text": "", "digests": { "md5": "03d49a31c0098a3d3b542cf4e116bf06", "sha256": "62920d148a67fae2d7f105cef54920004059a1b979cf97700207403d35a12e3c" }, "downloads": -1, "filename": "ec2_api-9.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "03d49a31c0098a3d3b542cf4e116bf06", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 310392, "upload_time": "2019-10-16T12:41:43", "url": "https://files.pythonhosted.org/packages/32/e7/b80eaa6aae24ad5f1b0ca87b1df3a4866e7240609f92c0b8348a25699eda/ec2_api-9.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c1eefdd8f86a5456db1438f651b758cb", "sha256": "e996a233c7302186c1b79733c4e9ded0dee21e7f27045566ab857c17a317edc8" }, "downloads": -1, "filename": "ec2-api-9.0.0.tar.gz", "has_sig": false, "md5_digest": "c1eefdd8f86a5456db1438f651b758cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 302809, "upload_time": "2019-10-16T12:41:48", "url": "https://files.pythonhosted.org/packages/4c/fb/4290d136f5422ff8a8d0a010f14f1d59a8e3331ee4da2df72e2d767f3f6a/ec2-api-9.0.0.tar.gz" } ], "9.0.0.0rc1": [ { "comment_text": "", "digests": { "md5": "75a4bf82866c311a55ad27a38be43e33", "sha256": "6d0fb17d64f5bef6babeb82d621d858632a74266d0c5a9bfefcb215419997ee5" }, "downloads": -1, "filename": "ec2_api-9.0.0.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "75a4bf82866c311a55ad27a38be43e33", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 310473, "upload_time": "2019-09-25T17:37:29", "url": "https://files.pythonhosted.org/packages/f2/ca/ac930659aea456d55994bf4a62961387b500fde7a68a43429f81b9288d36/ec2_api-9.0.0.0rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f69e8fcb7820f06e9e71560f97e86e56", "sha256": "f5ba3d67527812239d9f76bc37b73f46203443b1c7c160ef8f814d36f6daf4b7" }, "downloads": -1, "filename": "ec2-api-9.0.0.0rc1.tar.gz", "has_sig": false, "md5_digest": "f69e8fcb7820f06e9e71560f97e86e56", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 302456, "upload_time": "2019-09-25T17:37:36", "url": "https://files.pythonhosted.org/packages/b7/a1/8bd8236f410335fd6fb3ba9ece53cb520b0785ffd05855fa1d77a5729c9c/ec2-api-9.0.0.0rc1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "03d49a31c0098a3d3b542cf4e116bf06", "sha256": "62920d148a67fae2d7f105cef54920004059a1b979cf97700207403d35a12e3c" }, "downloads": -1, "filename": "ec2_api-9.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "03d49a31c0098a3d3b542cf4e116bf06", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 310392, "upload_time": "2019-10-16T12:41:43", "url": "https://files.pythonhosted.org/packages/32/e7/b80eaa6aae24ad5f1b0ca87b1df3a4866e7240609f92c0b8348a25699eda/ec2_api-9.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c1eefdd8f86a5456db1438f651b758cb", "sha256": "e996a233c7302186c1b79733c4e9ded0dee21e7f27045566ab857c17a317edc8" }, "downloads": -1, "filename": "ec2-api-9.0.0.tar.gz", "has_sig": false, "md5_digest": "c1eefdd8f86a5456db1438f651b758cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 302809, "upload_time": "2019-10-16T12:41:48", "url": "https://files.pythonhosted.org/packages/4c/fb/4290d136f5422ff8a8d0a010f14f1d59a8e3331ee4da2df72e2d767f3f6a/ec2-api-9.0.0.tar.gz" } ] }