├── .gitignore ├── BappDescription.html ├── BappManifest.bmf ├── BappModules ├── boto │ ├── __init__.py │ ├── auth.py │ ├── auth_handler.py │ ├── awslambda │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── layer1.py │ ├── beanstalk │ │ ├── __init__.py │ │ ├── exception.py │ │ ├── layer1.py │ │ ├── response.py │ │ └── wrapper.py │ ├── cacerts │ │ ├── __init__.py │ │ └── cacerts.txt │ ├── cloudformation │ │ ├── __init__.py │ │ ├── connection.py │ │ ├── stack.py │ │ └── template.py │ ├── cloudfront │ │ ├── __init__.py │ │ ├── distribution.py │ │ ├── exception.py │ │ ├── identity.py │ │ ├── invalidation.py │ │ ├── logging.py │ │ ├── object.py │ │ ├── origin.py │ │ └── signers.py │ ├── cloudhsm │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── layer1.py │ ├── cloudsearch │ │ ├── __init__.py │ │ ├── document.py │ │ ├── domain.py │ │ ├── layer1.py │ │ ├── layer2.py │ │ ├── optionstatus.py │ │ ├── search.py │ │ └── sourceattribute.py │ ├── cloudsearch2 │ │ ├── __init__.py │ │ ├── document.py │ │ ├── domain.py │ │ ├── exceptions.py │ │ ├── layer1.py │ │ ├── layer2.py │ │ ├── optionstatus.py │ │ └── search.py │ ├── cloudsearchdomain │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── layer1.py │ ├── cloudtrail │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── layer1.py │ ├── codedeploy │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── layer1.py │ ├── cognito │ │ ├── __init__.py │ │ ├── identity │ │ │ ├── __init__.py │ │ │ ├── exceptions.py │ │ │ └── layer1.py │ │ └── sync │ │ │ ├── __init__.py │ │ │ ├── exceptions.py │ │ │ └── layer1.py │ ├── compat.py │ ├── configservice │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── layer1.py │ ├── connection.py │ ├── contrib │ │ ├── __init__.py │ │ └── ymlmessage.py │ ├── datapipeline │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── layer1.py │ ├── directconnect │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── layer1.py │ ├── dynamodb │ │ ├── __init__.py │ │ ├── batch.py │ │ ├── condition.py │ │ ├── exceptions.py │ │ ├── item.py │ │ ├── layer1.py │ │ ├── layer2.py │ │ ├── schema.py │ │ ├── table.py │ │ └── types.py │ ├── dynamodb2 │ │ ├── __init__.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── items.py │ │ ├── layer1.py │ │ ├── results.py │ │ ├── table.py │ │ └── types.py │ ├── ec2 │ │ ├── __init__.py │ │ ├── address.py │ │ ├── attributes.py │ │ ├── autoscale │ │ │ ├── __init__.py │ │ │ ├── activity.py │ │ │ ├── group.py │ │ │ ├── instance.py │ │ │ ├── launchconfig.py │ │ │ ├── limits.py │ │ │ ├── policy.py │ │ │ ├── request.py │ │ │ ├── scheduled.py │ │ │ └── tag.py │ │ ├── blockdevicemapping.py │ │ ├── bundleinstance.py │ │ ├── buyreservation.py │ │ ├── cloudwatch │ │ │ ├── __init__.py │ │ │ ├── alarm.py │ │ │ ├── datapoint.py │ │ │ ├── dimension.py │ │ │ ├── listelement.py │ │ │ └── metric.py │ │ ├── connection.py │ │ ├── ec2object.py │ │ ├── elb │ │ │ ├── __init__.py │ │ │ ├── attributes.py │ │ │ ├── healthcheck.py │ │ │ ├── instancestate.py │ │ │ ├── listelement.py │ │ │ ├── listener.py │ │ │ ├── loadbalancer.py │ │ │ ├── policies.py │ │ │ └── securitygroup.py │ │ ├── group.py │ │ ├── image.py │ │ ├── instance.py │ │ ├── instanceinfo.py │ │ ├── instancestatus.py │ │ ├── instancetype.py │ │ ├── keypair.py │ │ ├── launchspecification.py │ │ ├── networkinterface.py │ │ ├── placementgroup.py │ │ ├── regioninfo.py │ │ ├── reservedinstance.py │ │ ├── securitygroup.py │ │ ├── snapshot.py │ │ ├── spotdatafeedsubscription.py │ │ ├── spotinstancerequest.py │ │ ├── spotpricehistory.py │ │ ├── tag.py │ │ ├── volume.py │ │ ├── volumestatus.py │ │ └── zone.py │ ├── ec2containerservice │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── layer1.py │ ├── ecs │ │ ├── __init__.py │ │ └── item.py │ ├── elasticache │ │ ├── __init__.py │ │ └── layer1.py │ ├── elastictranscoder │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── layer1.py │ ├── emr │ │ ├── __init__.py │ │ ├── bootstrap_action.py │ │ ├── connection.py │ │ ├── emrobject.py │ │ ├── instance_group.py │ │ └── step.py │ ├── endpoints.json │ ├── endpoints.py │ ├── exception.py │ ├── file │ │ ├── README │ │ ├── __init__.py │ │ ├── bucket.py │ │ ├── connection.py │ │ ├── key.py │ │ └── simpleresultset.py │ ├── fps │ │ ├── __init__.py │ │ ├── connection.py │ │ ├── exception.py │ │ └── response.py │ ├── glacier │ │ ├── __init__.py │ │ ├── concurrent.py │ │ ├── exceptions.py │ │ ├── job.py │ │ ├── layer1.py │ │ ├── layer2.py │ │ ├── response.py │ │ ├── utils.py │ │ ├── vault.py │ │ └── writer.py │ ├── gs │ │ ├── __init__.py │ │ ├── acl.py │ │ ├── bucket.py │ │ ├── bucketlistresultset.py │ │ ├── connection.py │ │ ├── cors.py │ │ ├── key.py │ │ ├── lifecycle.py │ │ ├── resumable_upload_handler.py │ │ └── user.py │ ├── handler.py │ ├── https_connection.py │ ├── iam │ │ ├── __init__.py │ │ ├── connection.py │ │ └── summarymap.py │ ├── jsonresponse.py │ ├── kinesis │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── layer1.py │ ├── kms │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── layer1.py │ ├── logs │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── layer1.py │ ├── machinelearning │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── layer1.py │ ├── manage │ │ ├── __init__.py │ │ ├── cmdshell.py │ │ ├── propget.py │ │ ├── server.py │ │ ├── task.py │ │ ├── test_manage.py │ │ └── volume.py │ ├── mashups │ │ ├── __init__.py │ │ ├── interactive.py │ │ ├── iobject.py │ │ ├── order.py │ │ └── server.py │ ├── mturk │ │ ├── __init__.py │ │ ├── connection.py │ │ ├── layoutparam.py │ │ ├── notification.py │ │ ├── price.py │ │ ├── qualification.py │ │ └── question.py │ ├── mws │ │ ├── __init__.py │ │ ├── connection.py │ │ ├── exception.py │ │ └── response.py │ ├── opsworks │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── layer1.py │ ├── plugin.py │ ├── provider.py │ ├── pyami │ │ ├── __init__.py │ │ ├── bootstrap.py │ │ ├── config.py │ │ ├── copybot.cfg │ │ ├── copybot.py │ │ ├── helloworld.py │ │ ├── installers │ │ │ ├── __init__.py │ │ │ └── ubuntu │ │ │ │ ├── __init__.py │ │ │ │ ├── apache.py │ │ │ │ ├── ebs.py │ │ │ │ ├── installer.py │ │ │ │ ├── mysql.py │ │ │ │ └── trac.py │ │ ├── launch_ami.py │ │ ├── scriptbase.py │ │ └── startup.py │ ├── rds │ │ ├── __init__.py │ │ ├── dbinstance.py │ │ ├── dbsecuritygroup.py │ │ ├── dbsnapshot.py │ │ ├── dbsubnetgroup.py │ │ ├── event.py │ │ ├── logfile.py │ │ ├── optiongroup.py │ │ ├── parametergroup.py │ │ ├── regioninfo.py │ │ ├── statusinfo.py │ │ └── vpcsecuritygroupmembership.py │ ├── rds2 │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── layer1.py │ ├── redshift │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── layer1.py │ ├── regioninfo.py │ ├── requestlog.py │ ├── resultset.py │ ├── roboto │ │ ├── __init__.py │ │ ├── awsqueryrequest.py │ │ ├── awsqueryservice.py │ │ └── param.py │ ├── route53 │ │ ├── __init__.py │ │ ├── connection.py │ │ ├── domains │ │ │ ├── __init__.py │ │ │ ├── exceptions.py │ │ │ └── layer1.py │ │ ├── exception.py │ │ ├── healthcheck.py │ │ ├── hostedzone.py │ │ ├── record.py │ │ ├── status.py │ │ └── zone.py │ ├── s3 │ │ ├── __init__.py │ │ ├── acl.py │ │ ├── bucket.py │ │ ├── bucketlistresultset.py │ │ ├── bucketlogging.py │ │ ├── connection.py │ │ ├── cors.py │ │ ├── deletemarker.py │ │ ├── key.py │ │ ├── keyfile.py │ │ ├── lifecycle.py │ │ ├── multidelete.py │ │ ├── multipart.py │ │ ├── prefix.py │ │ ├── resumable_download_handler.py │ │ ├── tagging.py │ │ ├── user.py │ │ └── website.py │ ├── sdb │ │ ├── __init__.py │ │ ├── connection.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── blob.py │ │ │ ├── key.py │ │ │ ├── manager │ │ │ │ ├── __init__.py │ │ │ │ ├── sdbmanager.py │ │ │ │ └── xmlmanager.py │ │ │ ├── model.py │ │ │ ├── property.py │ │ │ ├── query.py │ │ │ ├── sequence.py │ │ │ └── test_db.py │ │ ├── domain.py │ │ ├── item.py │ │ ├── queryresultset.py │ │ └── regioninfo.py │ ├── services │ │ ├── __init__.py │ │ ├── bs.py │ │ ├── message.py │ │ ├── result.py │ │ ├── service.py │ │ ├── servicedef.py │ │ ├── sonofmmm.cfg │ │ ├── sonofmmm.py │ │ └── submit.py │ ├── ses │ │ ├── __init__.py │ │ ├── connection.py │ │ └── exceptions.py │ ├── sns │ │ ├── __init__.py │ │ └── connection.py │ ├── sqs │ │ ├── __init__.py │ │ ├── attributes.py │ │ ├── batchresults.py │ │ ├── bigmessage.py │ │ ├── connection.py │ │ ├── jsonmessage.py │ │ ├── message.py │ │ ├── messageattributes.py │ │ ├── queue.py │ │ └── regioninfo.py │ ├── storage_uri.py │ ├── sts │ │ ├── __init__.py │ │ ├── connection.py │ │ └── credentials.py │ ├── support │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── layer1.py │ ├── swf │ │ ├── __init__.py │ │ ├── exceptions.py │ │ ├── layer1.py │ │ ├── layer1_decisions.py │ │ └── layer2.py │ ├── utils.py │ ├── vendored │ │ ├── __init__.py │ │ ├── regions │ │ │ ├── __init__.py │ │ │ ├── exceptions.py │ │ │ └── regions.py │ │ └── six.py │ └── vpc │ │ ├── __init__.py │ │ ├── customergateway.py │ │ ├── dhcpoptions.py │ │ ├── internetgateway.py │ │ ├── networkacl.py │ │ ├── routetable.py │ │ ├── subnet.py │ │ ├── vpc.py │ │ ├── vpc_peering_connection.py │ │ ├── vpnconnection.py │ │ └── vpngateway.py ├── boto3 │ ├── __init__.py │ ├── compat.py │ ├── data │ │ ├── cloudformation │ │ │ └── 2010-05-15 │ │ │ │ └── resources-1.json │ │ ├── cloudwatch │ │ │ └── 2010-08-01 │ │ │ │ └── resources-1.json │ │ ├── dynamodb │ │ │ └── 2012-08-10 │ │ │ │ └── resources-1.json │ │ ├── ec2 │ │ │ ├── 2014-10-01 │ │ │ │ └── resources-1.json │ │ │ ├── 2015-03-01 │ │ │ │ └── resources-1.json │ │ │ ├── 2015-04-15 │ │ │ │ └── resources-1.json │ │ │ ├── 2015-10-01 │ │ │ │ └── resources-1.json │ │ │ ├── 2016-04-01 │ │ │ │ └── resources-1.json │ │ │ ├── 2016-09-15 │ │ │ │ └── resources-1.json │ │ │ └── 2016-11-15 │ │ │ │ └── resources-1.json │ │ ├── glacier │ │ │ └── 2012-06-01 │ │ │ │ └── resources-1.json │ │ ├── iam │ │ │ └── 2010-05-08 │ │ │ │ └── resources-1.json │ │ ├── opsworks │ │ │ └── 2013-02-18 │ │ │ │ └── resources-1.json │ │ ├── s3 │ │ │ └── 2006-03-01 │ │ │ │ └── resources-1.json │ │ ├── sns │ │ │ └── 2010-03-31 │ │ │ │ └── resources-1.json │ │ └── sqs │ │ │ └── 2012-11-05 │ │ │ └── resources-1.json │ ├── docs │ │ ├── __init__.py │ │ ├── action.py │ │ ├── attr.py │ │ ├── base.py │ │ ├── client.py │ │ ├── collection.py │ │ ├── docstring.py │ │ ├── method.py │ │ ├── resource.py │ │ ├── service.py │ │ ├── subresource.py │ │ ├── utils.py │ │ └── waiter.py │ ├── dynamodb │ │ ├── __init__.py │ │ ├── conditions.py │ │ ├── table.py │ │ ├── transform.py │ │ └── types.py │ ├── ec2 │ │ ├── __init__.py │ │ ├── createtags.py │ │ └── deletetags.py │ ├── examples │ │ ├── cloudfront.rst │ │ └── s3.rst │ ├── exceptions.py │ ├── resources │ │ ├── __init__.py │ │ ├── action.py │ │ ├── base.py │ │ ├── collection.py │ │ ├── factory.py │ │ ├── model.py │ │ ├── params.py │ │ └── response.py │ ├── s3 │ │ ├── __init__.py │ │ ├── inject.py │ │ └── transfer.py │ ├── session.py │ └── utils.py ├── botocore │ ├── __init__.py │ ├── args.py │ ├── auth.py │ ├── awsrequest.py │ ├── client.py │ ├── compat.py │ ├── config.py │ ├── configloader.py │ ├── credentials.py │ ├── data │ │ ├── _retry.json │ │ ├── acm │ │ │ └── 2015-12-08 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── apigateway │ │ │ └── 2015-07-09 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── application-autoscaling │ │ │ └── 2016-02-06 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── appstream │ │ │ └── 2016-12-01 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── athena │ │ │ └── 2017-05-18 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── autoscaling │ │ │ └── 2011-01-01 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── batch │ │ │ └── 2016-08-10 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── budgets │ │ │ └── 2016-10-20 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── ce │ │ │ └── 2017-10-25 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── clouddirectory │ │ │ └── 2016-05-10 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── cloudformation │ │ │ └── 2010-05-15 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── cloudfront │ │ │ ├── 2014-05-31 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ ├── 2014-10-21 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ ├── 2014-11-06 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ ├── 2015-04-17 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ ├── 2015-07-27 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ ├── 2015-09-17 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ ├── 2016-01-13 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ ├── 2016-01-28 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ ├── 2016-08-01 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ ├── 2016-08-20 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ ├── 2016-09-07 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ ├── 2016-09-29 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ ├── 2016-11-25 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ └── 2017-03-25 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── cloudhsm │ │ │ └── 2014-05-30 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── cloudhsmv2 │ │ │ └── 2017-04-28 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── cloudsearch │ │ │ ├── 2011-02-01 │ │ │ │ └── service-2.json │ │ │ └── 2013-01-01 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── cloudsearchdomain │ │ │ └── 2013-01-01 │ │ │ │ ├── examples-1.json │ │ │ │ └── service-2.json │ │ ├── cloudtrail │ │ │ └── 2013-11-01 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── cloudwatch │ │ │ └── 2010-08-01 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── codebuild │ │ │ └── 2016-10-06 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── codecommit │ │ │ └── 2015-04-13 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── codedeploy │ │ │ └── 2014-10-06 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── codepipeline │ │ │ └── 2015-07-09 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── codestar │ │ │ └── 2017-04-19 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── cognito-identity │ │ │ └── 2014-06-30 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── cognito-idp │ │ │ └── 2016-04-18 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── cognito-sync │ │ │ └── 2014-06-30 │ │ │ │ └── service-2.json │ │ ├── config │ │ │ └── 2014-11-12 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── cur │ │ │ └── 2017-01-06 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── datapipeline │ │ │ └── 2012-10-29 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── dax │ │ │ └── 2017-04-19 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── devicefarm │ │ │ └── 2015-06-23 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── directconnect │ │ │ └── 2012-10-25 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── discovery │ │ │ └── 2015-11-01 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── dms │ │ │ └── 2016-01-01 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── ds │ │ │ └── 2015-04-16 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── dynamodb │ │ │ └── 2012-08-10 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── dynamodbstreams │ │ │ └── 2012-08-10 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── ec2 │ │ │ ├── 2014-09-01 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ ├── 2014-10-01 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ ├── 2015-03-01 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ ├── 2015-04-15 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ ├── 2015-10-01 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ ├── 2016-04-01 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ ├── 2016-09-15 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ └── 2016-11-15 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── ecr │ │ │ └── 2015-09-21 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── ecs │ │ │ └── 2014-11-13 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── efs │ │ │ └── 2015-02-01 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── elasticache │ │ │ ├── 2014-09-30 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ └── 2015-02-02 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── elasticbeanstalk │ │ │ └── 2010-12-01 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── elastictranscoder │ │ │ └── 2012-09-25 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── elb │ │ │ └── 2012-06-01 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── elbv2 │ │ │ └── 2015-12-01 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── emr │ │ │ └── 2009-03-31 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── endpoints.json │ │ ├── es │ │ │ └── 2015-01-01 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── events │ │ │ ├── 2014-02-03 │ │ │ │ └── service-2.json │ │ │ └── 2015-10-07 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── firehose │ │ │ └── 2015-08-04 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── gamelift │ │ │ └── 2015-10-01 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── glacier │ │ │ └── 2012-06-01 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── glue │ │ │ └── 2017-03-31 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── greengrass │ │ │ └── 2017-06-07 │ │ │ │ └── service-2.json │ │ ├── health │ │ │ └── 2016-08-04 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── iam │ │ │ └── 2010-05-08 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── importexport │ │ │ └── 2010-06-01 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── inspector │ │ │ ├── 2015-08-18 │ │ │ │ └── service-2.json │ │ │ └── 2016-02-16 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── iot-data │ │ │ └── 2015-05-28 │ │ │ │ └── service-2.json │ │ ├── iot │ │ │ └── 2015-05-28 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── kinesis │ │ │ └── 2013-12-02 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── kinesisanalytics │ │ │ └── 2015-08-14 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── kms │ │ │ └── 2014-11-01 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── lambda │ │ │ ├── 2014-11-11 │ │ │ │ └── service-2.json │ │ │ └── 2015-03-31 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── lex-models │ │ │ └── 2017-04-19 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── lex-runtime │ │ │ └── 2016-11-28 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── lightsail │ │ │ └── 2016-11-28 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── logs │ │ │ └── 2014-03-28 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── machinelearning │ │ │ └── 2014-12-12 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── marketplace-entitlement │ │ │ └── 2017-01-11 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── marketplacecommerceanalytics │ │ │ └── 2015-07-01 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── meteringmarketplace │ │ │ └── 2016-01-14 │ │ │ │ ├── examples-1.json │ │ │ │ └── service-2.json │ │ ├── mgh │ │ │ └── 2017-05-31 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── mobile │ │ │ └── 2017-07-01 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── mturk │ │ │ └── 2017-01-17 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── opsworks │ │ │ └── 2013-02-18 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── opsworkscm │ │ │ └── 2016-11-01 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── organizations │ │ │ └── 2016-11-28 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── pinpoint │ │ │ └── 2016-12-01 │ │ │ │ ├── examples-1.json │ │ │ │ └── service-2.json │ │ ├── polly │ │ │ └── 2016-06-10 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── pricing │ │ │ └── 2017-10-15 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── rds │ │ │ ├── 2014-09-01 │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ │ └── 2014-10-31 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ ├── service-2.sdk-extras.json │ │ │ │ └── waiters-2.json │ │ ├── redshift │ │ │ └── 2012-12-01 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── rekognition │ │ │ └── 2016-06-27 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── resourcegroupstaggingapi │ │ │ └── 2017-01-26 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── route53 │ │ │ └── 2013-04-01 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── route53domains │ │ │ └── 2014-05-15 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── s3 │ │ │ └── 2006-03-01 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── sdb │ │ │ └── 2009-04-15 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── servicecatalog │ │ │ └── 2015-12-10 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── ses │ │ │ └── 2010-12-01 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ ├── service-2.json │ │ │ │ └── waiters-2.json │ │ ├── shield │ │ │ └── 2016-06-02 │ │ │ │ ├── examples-1.json │ │ │ │ └── service-2.json │ │ ├── sms │ │ │ └── 2016-10-24 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── snowball │ │ │ └── 2016-06-30 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── sns │ │ │ └── 2010-03-31 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── sqs │ │ │ └── 2012-11-05 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── ssm │ │ │ └── 2014-11-06 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── stepfunctions │ │ │ └── 2016-11-23 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── storagegateway │ │ │ └── 2013-06-30 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── sts │ │ │ └── 2011-06-15 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── support │ │ │ └── 2013-04-15 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── swf │ │ │ └── 2012-01-25 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── waf-regional │ │ │ └── 2016-11-28 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── waf │ │ │ └── 2015-08-24 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── workdocs │ │ │ └── 2016-05-01 │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ ├── workspaces │ │ │ └── 2015-04-08 │ │ │ │ ├── examples-1.json │ │ │ │ ├── paginators-1.json │ │ │ │ └── service-2.json │ │ └── xray │ │ │ └── 2016-04-12 │ │ │ ├── examples-1.json │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── docs │ │ ├── __init__.py │ │ ├── bcdoc │ │ │ ├── __init__.py │ │ │ ├── docevents.py │ │ │ ├── docstringparser.py │ │ │ ├── restdoc.py │ │ │ ├── style.py │ │ │ └── textwriter.py │ │ ├── client.py │ │ ├── docstring.py │ │ ├── example.py │ │ ├── method.py │ │ ├── paginator.py │ │ ├── params.py │ │ ├── service.py │ │ ├── shape.py │ │ ├── sharedexample.py │ │ ├── utils.py │ │ └── waiter.py │ ├── endpoint.py │ ├── errorfactory.py │ ├── exceptions.py │ ├── handlers.py │ ├── history.py │ ├── hooks.py │ ├── loaders.py │ ├── model.py │ ├── paginate.py │ ├── parsers.py │ ├── regions.py │ ├── response.py │ ├── retryhandler.py │ ├── serialize.py │ ├── session.py │ ├── signers.py │ ├── stub.py │ ├── translate.py │ ├── utils.py │ ├── validate.py │ ├── vendored │ │ ├── __init__.py │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── adapters.py │ │ │ ├── api.py │ │ │ ├── auth.py │ │ │ ├── cacert.pem │ │ │ ├── certs.py │ │ │ ├── compat.py │ │ │ ├── cookies.py │ │ │ ├── exceptions.py │ │ │ ├── hooks.py │ │ │ ├── models.py │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── chardet │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── big5freq.py │ │ │ │ │ ├── big5prober.py │ │ │ │ │ ├── chardetect.py │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ ├── codingstatemachine.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── cp949prober.py │ │ │ │ │ ├── escprober.py │ │ │ │ │ ├── escsm.py │ │ │ │ │ ├── eucjpprober.py │ │ │ │ │ ├── euckrfreq.py │ │ │ │ │ ├── euckrprober.py │ │ │ │ │ ├── euctwfreq.py │ │ │ │ │ ├── euctwprober.py │ │ │ │ │ ├── gb2312freq.py │ │ │ │ │ ├── gb2312prober.py │ │ │ │ │ ├── hebrewprober.py │ │ │ │ │ ├── jisfreq.py │ │ │ │ │ ├── jpcntx.py │ │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ │ ├── langgreekmodel.py │ │ │ │ │ ├── langhebrewmodel.py │ │ │ │ │ ├── langhungarianmodel.py │ │ │ │ │ ├── langthaimodel.py │ │ │ │ │ ├── latin1prober.py │ │ │ │ │ ├── mbcharsetprober.py │ │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ │ ├── mbcssm.py │ │ │ │ │ ├── sbcharsetprober.py │ │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ │ ├── sjisprober.py │ │ │ │ │ ├── universaldetector.py │ │ │ │ │ └── utf8prober.py │ │ │ │ └── urllib3 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _collections.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ └── pyopenssl.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── fields.py │ │ │ │ │ ├── filepost.py │ │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ordered_dict.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _implementation.py │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── ssl_.py │ │ │ │ │ ├── timeout.py │ │ │ │ │ └── url.py │ │ │ ├── sessions.py │ │ │ ├── status_codes.py │ │ │ ├── structures.py │ │ │ └── utils.py │ │ └── six.py │ └── waiter.py ├── concurrent │ ├── __init__.py │ └── futures │ │ ├── __init__.py │ │ ├── _base.py │ │ ├── process.py │ │ └── thread.py ├── dateutil │ ├── __init__.py │ ├── _common.py │ ├── _version.py │ ├── easter.py │ ├── parser │ │ ├── __init__.py │ │ ├── _parser.py │ │ └── isoparser.py │ ├── relativedelta.py │ ├── rrule.py │ ├── tz │ │ ├── __init__.py │ │ ├── _common.py │ │ ├── _factories.py │ │ ├── tz.py │ │ └── win.py │ ├── tzwin.py │ ├── utils.py │ └── zoneinfo │ │ ├── __init__.py │ │ ├── dateutil-zoneinfo.tar.gz │ │ └── rebuild.py ├── docutils │ ├── __init__.py │ ├── _compat.py │ ├── core.py │ ├── examples.py │ ├── frontend.py │ ├── io.py │ ├── languages │ │ ├── __init__.py │ │ ├── af.py │ │ ├── ca.py │ │ ├── cs.py │ │ ├── da.py │ │ ├── de.py │ │ ├── en.py │ │ ├── eo.py │ │ ├── es.py │ │ ├── fa.py │ │ ├── fi.py │ │ ├── fr.py │ │ ├── gl.py │ │ ├── he.py │ │ ├── it.py │ │ ├── ja.py │ │ ├── lt.py │ │ ├── lv.py │ │ ├── nl.py │ │ ├── pl.py │ │ ├── pt_br.py │ │ ├── ru.py │ │ ├── sk.py │ │ ├── sv.py │ │ ├── zh_cn.py │ │ └── zh_tw.py │ ├── nodes.py │ ├── parsers │ │ ├── __init__.py │ │ ├── null.py │ │ └── rst │ │ │ ├── __init__.py │ │ │ ├── directives │ │ │ ├── __init__.py │ │ │ ├── admonitions.py │ │ │ ├── body.py │ │ │ ├── html.py │ │ │ ├── images.py │ │ │ ├── misc.py │ │ │ ├── parts.py │ │ │ ├── references.py │ │ │ └── tables.py │ │ │ ├── include │ │ │ ├── README.txt │ │ │ ├── isoamsa.txt │ │ │ ├── isoamsb.txt │ │ │ ├── isoamsc.txt │ │ │ ├── isoamsn.txt │ │ │ ├── isoamso.txt │ │ │ ├── isoamsr.txt │ │ │ ├── isobox.txt │ │ │ ├── isocyr1.txt │ │ │ ├── isocyr2.txt │ │ │ ├── isodia.txt │ │ │ ├── isogrk1.txt │ │ │ ├── isogrk2.txt │ │ │ ├── isogrk3.txt │ │ │ ├── isogrk4-wide.txt │ │ │ ├── isogrk4.txt │ │ │ ├── isolat1.txt │ │ │ ├── isolat2.txt │ │ │ ├── isomfrk-wide.txt │ │ │ ├── isomfrk.txt │ │ │ ├── isomopf-wide.txt │ │ │ ├── isomopf.txt │ │ │ ├── isomscr-wide.txt │ │ │ ├── isomscr.txt │ │ │ ├── isonum.txt │ │ │ ├── isopub.txt │ │ │ ├── isotech.txt │ │ │ ├── mmlalias.txt │ │ │ ├── mmlextra-wide.txt │ │ │ ├── mmlextra.txt │ │ │ ├── s5defs.txt │ │ │ ├── xhtml1-lat1.txt │ │ │ ├── xhtml1-special.txt │ │ │ └── xhtml1-symbol.txt │ │ │ ├── languages │ │ │ ├── __init__.py │ │ │ ├── af.py │ │ │ ├── ca.py │ │ │ ├── cs.py │ │ │ ├── da.py │ │ │ ├── de.py │ │ │ ├── en.py │ │ │ ├── eo.py │ │ │ ├── es.py │ │ │ ├── fa.py │ │ │ ├── fi.py │ │ │ ├── fr.py │ │ │ ├── gl.py │ │ │ ├── he.py │ │ │ ├── it.py │ │ │ ├── ja.py │ │ │ ├── lt.py │ │ │ ├── lv.py │ │ │ ├── nl.py │ │ │ ├── pl.py │ │ │ ├── pt_br.py │ │ │ ├── ru.py │ │ │ ├── sk.py │ │ │ ├── sv.py │ │ │ ├── zh_cn.py │ │ │ └── zh_tw.py │ │ │ ├── roles.py │ │ │ ├── states.py │ │ │ └── tableparser.py │ ├── readers │ │ ├── __init__.py │ │ ├── doctree.py │ │ ├── pep.py │ │ └── standalone.py │ ├── statemachine.py │ ├── transforms │ │ ├── __init__.py │ │ ├── components.py │ │ ├── frontmatter.py │ │ ├── misc.py │ │ ├── parts.py │ │ ├── peps.py │ │ ├── references.py │ │ ├── universal.py │ │ └── writer_aux.py │ ├── utils │ │ ├── __init__.py │ │ ├── code_analyzer.py │ │ ├── error_reporting.py │ │ ├── math │ │ │ ├── __init__.py │ │ │ ├── latex2mathml.py │ │ │ ├── math2html.py │ │ │ ├── tex2mathml_extern.py │ │ │ ├── tex2unichar.py │ │ │ └── unichar2tex.py │ │ ├── punctuation_chars.py │ │ ├── roman.py │ │ ├── smartquotes.py │ │ └── urischemes.py │ └── writers │ │ ├── __init__.py │ │ ├── _html_base.py │ │ ├── docutils_xml.py │ │ ├── html4css1 │ │ ├── __init__.py │ │ ├── html4css1.css │ │ └── template.txt │ │ ├── html5_polyglot │ │ ├── __init__.py │ │ ├── math.css │ │ ├── minimal.css │ │ ├── plain.css │ │ └── template.txt │ │ ├── latex2e │ │ ├── __init__.py │ │ ├── default.tex │ │ ├── titlepage.tex │ │ └── xelatex.tex │ │ ├── manpage.py │ │ ├── null.py │ │ ├── odf_odt │ │ ├── __init__.py │ │ ├── pygmentsformatter.py │ │ └── styles.odt │ │ ├── pep_html │ │ ├── __init__.py │ │ ├── pep.css │ │ └── template.txt │ │ ├── pseudoxml.py │ │ ├── s5_html │ │ ├── __init__.py │ │ └── themes │ │ │ ├── README.txt │ │ │ ├── big-black │ │ │ ├── __base__ │ │ │ ├── framing.css │ │ │ └── pretty.css │ │ │ ├── big-white │ │ │ ├── framing.css │ │ │ └── pretty.css │ │ │ ├── default │ │ │ ├── blank.gif │ │ │ ├── framing.css │ │ │ ├── iepngfix.htc │ │ │ ├── opera.css │ │ │ ├── outline.css │ │ │ ├── pretty.css │ │ │ ├── print.css │ │ │ ├── s5-core.css │ │ │ ├── slides.css │ │ │ └── slides.js │ │ │ ├── medium-black │ │ │ ├── __base__ │ │ │ └── pretty.css │ │ │ ├── medium-white │ │ │ ├── framing.css │ │ │ └── pretty.css │ │ │ ├── small-black │ │ │ ├── __base__ │ │ │ └── pretty.css │ │ │ └── small-white │ │ │ ├── framing.css │ │ │ └── pretty.css │ │ └── xetex │ │ └── __init__.py ├── jmespath │ ├── __init__.py │ ├── ast.py │ ├── compat.py │ ├── exceptions.py │ ├── functions.py │ ├── lexer.py │ ├── parser.py │ └── visitor.py ├── s3transfer │ ├── __init__.py │ ├── bandwidth.py │ ├── compat.py │ ├── copies.py │ ├── delete.py │ ├── download.py │ ├── exceptions.py │ ├── futures.py │ ├── manager.py │ ├── subscribers.py │ ├── tasks.py │ ├── upload.py │ └── utils.py └── six.py ├── LICENSE ├── README.md ├── cf_checks.py ├── main.py ├── scan.py └── screenshots ├── GS_bucket_misconfiguration.png ├── S3_bucket_misconfiguration.png ├── excessive_signed_url.png ├── settings.png └── settings_thumb.png /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | *.class 4 | *.pyc 5 | -------------------------------------------------------------------------------- /BappDescription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappDescription.html -------------------------------------------------------------------------------- /BappManifest.bmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappManifest.bmf -------------------------------------------------------------------------------- /BappModules/boto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/auth.py -------------------------------------------------------------------------------- /BappModules/boto/auth_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/auth_handler.py -------------------------------------------------------------------------------- /BappModules/boto/awslambda/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/awslambda/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/awslambda/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/awslambda/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/awslambda/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/awslambda/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/beanstalk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/beanstalk/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/beanstalk/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/beanstalk/exception.py -------------------------------------------------------------------------------- /BappModules/boto/beanstalk/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/beanstalk/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/beanstalk/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/beanstalk/response.py -------------------------------------------------------------------------------- /BappModules/boto/beanstalk/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/beanstalk/wrapper.py -------------------------------------------------------------------------------- /BappModules/boto/cacerts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cacerts/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/cacerts/cacerts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cacerts/cacerts.txt -------------------------------------------------------------------------------- /BappModules/boto/cloudformation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudformation/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/cloudformation/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudformation/connection.py -------------------------------------------------------------------------------- /BappModules/boto/cloudformation/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudformation/stack.py -------------------------------------------------------------------------------- /BappModules/boto/cloudformation/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudformation/template.py -------------------------------------------------------------------------------- /BappModules/boto/cloudfront/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudfront/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/cloudfront/distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudfront/distribution.py -------------------------------------------------------------------------------- /BappModules/boto/cloudfront/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudfront/exception.py -------------------------------------------------------------------------------- /BappModules/boto/cloudfront/identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudfront/identity.py -------------------------------------------------------------------------------- /BappModules/boto/cloudfront/invalidation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudfront/invalidation.py -------------------------------------------------------------------------------- /BappModules/boto/cloudfront/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudfront/logging.py -------------------------------------------------------------------------------- /BappModules/boto/cloudfront/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudfront/object.py -------------------------------------------------------------------------------- /BappModules/boto/cloudfront/origin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudfront/origin.py -------------------------------------------------------------------------------- /BappModules/boto/cloudfront/signers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudfront/signers.py -------------------------------------------------------------------------------- /BappModules/boto/cloudhsm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudhsm/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/cloudhsm/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudhsm/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/cloudhsm/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudhsm/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/cloudsearch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudsearch/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/cloudsearch/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudsearch/document.py -------------------------------------------------------------------------------- /BappModules/boto/cloudsearch/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudsearch/domain.py -------------------------------------------------------------------------------- /BappModules/boto/cloudsearch/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudsearch/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/cloudsearch/layer2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudsearch/layer2.py -------------------------------------------------------------------------------- /BappModules/boto/cloudsearch/optionstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudsearch/optionstatus.py -------------------------------------------------------------------------------- /BappModules/boto/cloudsearch/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudsearch/search.py -------------------------------------------------------------------------------- /BappModules/boto/cloudsearch/sourceattribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudsearch/sourceattribute.py -------------------------------------------------------------------------------- /BappModules/boto/cloudsearch2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudsearch2/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/cloudsearch2/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudsearch2/document.py -------------------------------------------------------------------------------- /BappModules/boto/cloudsearch2/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudsearch2/domain.py -------------------------------------------------------------------------------- /BappModules/boto/cloudsearch2/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudsearch2/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/cloudsearch2/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudsearch2/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/cloudsearch2/layer2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudsearch2/layer2.py -------------------------------------------------------------------------------- /BappModules/boto/cloudsearch2/optionstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudsearch2/optionstatus.py -------------------------------------------------------------------------------- /BappModules/boto/cloudsearch2/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudsearch2/search.py -------------------------------------------------------------------------------- /BappModules/boto/cloudsearchdomain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudsearchdomain/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/cloudsearchdomain/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudsearchdomain/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/cloudsearchdomain/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudsearchdomain/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/cloudtrail/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudtrail/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/cloudtrail/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudtrail/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/cloudtrail/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cloudtrail/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/codedeploy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/codedeploy/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/codedeploy/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/codedeploy/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/codedeploy/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/codedeploy/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/cognito/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cognito/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/cognito/identity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cognito/identity/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/cognito/identity/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cognito/identity/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/cognito/identity/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cognito/identity/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/cognito/sync/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cognito/sync/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/cognito/sync/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cognito/sync/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/cognito/sync/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/cognito/sync/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/compat.py -------------------------------------------------------------------------------- /BappModules/boto/configservice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/configservice/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/configservice/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/configservice/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/configservice/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/configservice/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/connection.py -------------------------------------------------------------------------------- /BappModules/boto/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/contrib/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/contrib/ymlmessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/contrib/ymlmessage.py -------------------------------------------------------------------------------- /BappModules/boto/datapipeline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/datapipeline/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/datapipeline/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/datapipeline/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/datapipeline/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/datapipeline/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/directconnect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/directconnect/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/directconnect/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/directconnect/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/directconnect/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/directconnect/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/dynamodb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/dynamodb/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/dynamodb/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/dynamodb/batch.py -------------------------------------------------------------------------------- /BappModules/boto/dynamodb/condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/dynamodb/condition.py -------------------------------------------------------------------------------- /BappModules/boto/dynamodb/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/dynamodb/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/dynamodb/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/dynamodb/item.py -------------------------------------------------------------------------------- /BappModules/boto/dynamodb/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/dynamodb/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/dynamodb/layer2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/dynamodb/layer2.py -------------------------------------------------------------------------------- /BappModules/boto/dynamodb/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/dynamodb/schema.py -------------------------------------------------------------------------------- /BappModules/boto/dynamodb/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/dynamodb/table.py -------------------------------------------------------------------------------- /BappModules/boto/dynamodb/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/dynamodb/types.py -------------------------------------------------------------------------------- /BappModules/boto/dynamodb2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/dynamodb2/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/dynamodb2/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/dynamodb2/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/dynamodb2/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/dynamodb2/fields.py -------------------------------------------------------------------------------- /BappModules/boto/dynamodb2/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/dynamodb2/items.py -------------------------------------------------------------------------------- /BappModules/boto/dynamodb2/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/dynamodb2/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/dynamodb2/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/dynamodb2/results.py -------------------------------------------------------------------------------- /BappModules/boto/dynamodb2/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/dynamodb2/table.py -------------------------------------------------------------------------------- /BappModules/boto/dynamodb2/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/dynamodb2/types.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/address.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/attributes.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/autoscale/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/autoscale/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/autoscale/activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/autoscale/activity.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/autoscale/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/autoscale/group.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/autoscale/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/autoscale/instance.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/autoscale/launchconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/autoscale/launchconfig.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/autoscale/limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/autoscale/limits.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/autoscale/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/autoscale/policy.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/autoscale/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/autoscale/request.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/autoscale/scheduled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/autoscale/scheduled.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/autoscale/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/autoscale/tag.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/blockdevicemapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/blockdevicemapping.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/bundleinstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/bundleinstance.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/buyreservation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/buyreservation.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/cloudwatch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/cloudwatch/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/cloudwatch/alarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/cloudwatch/alarm.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/cloudwatch/datapoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/cloudwatch/datapoint.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/cloudwatch/dimension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/cloudwatch/dimension.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/cloudwatch/listelement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/cloudwatch/listelement.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/cloudwatch/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/cloudwatch/metric.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/connection.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/ec2object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/ec2object.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/elb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/elb/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/elb/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/elb/attributes.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/elb/healthcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/elb/healthcheck.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/elb/instancestate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/elb/instancestate.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/elb/listelement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/elb/listelement.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/elb/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/elb/listener.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/elb/loadbalancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/elb/loadbalancer.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/elb/policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/elb/policies.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/elb/securitygroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/elb/securitygroup.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/group.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/image.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/instance.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/instanceinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/instanceinfo.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/instancestatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/instancestatus.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/instancetype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/instancetype.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/keypair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/keypair.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/launchspecification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/launchspecification.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/networkinterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/networkinterface.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/placementgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/placementgroup.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/regioninfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/regioninfo.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/reservedinstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/reservedinstance.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/securitygroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/securitygroup.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/snapshot.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/spotdatafeedsubscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/spotdatafeedsubscription.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/spotinstancerequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/spotinstancerequest.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/spotpricehistory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/spotpricehistory.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/tag.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/volume.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/volumestatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/volumestatus.py -------------------------------------------------------------------------------- /BappModules/boto/ec2/zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2/zone.py -------------------------------------------------------------------------------- /BappModules/boto/ec2containerservice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2containerservice/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/ec2containerservice/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2containerservice/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/ec2containerservice/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ec2containerservice/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/ecs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ecs/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/ecs/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ecs/item.py -------------------------------------------------------------------------------- /BappModules/boto/elasticache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/elasticache/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/elasticache/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/elasticache/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/elastictranscoder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/elastictranscoder/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/elastictranscoder/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/elastictranscoder/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/elastictranscoder/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/elastictranscoder/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/emr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/emr/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/emr/bootstrap_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/emr/bootstrap_action.py -------------------------------------------------------------------------------- /BappModules/boto/emr/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/emr/connection.py -------------------------------------------------------------------------------- /BappModules/boto/emr/emrobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/emr/emrobject.py -------------------------------------------------------------------------------- /BappModules/boto/emr/instance_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/emr/instance_group.py -------------------------------------------------------------------------------- /BappModules/boto/emr/step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/emr/step.py -------------------------------------------------------------------------------- /BappModules/boto/endpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/endpoints.json -------------------------------------------------------------------------------- /BappModules/boto/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/endpoints.py -------------------------------------------------------------------------------- /BappModules/boto/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/exception.py -------------------------------------------------------------------------------- /BappModules/boto/file/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/file/README -------------------------------------------------------------------------------- /BappModules/boto/file/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/file/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/file/bucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/file/bucket.py -------------------------------------------------------------------------------- /BappModules/boto/file/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/file/connection.py -------------------------------------------------------------------------------- /BappModules/boto/file/key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/file/key.py -------------------------------------------------------------------------------- /BappModules/boto/file/simpleresultset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/file/simpleresultset.py -------------------------------------------------------------------------------- /BappModules/boto/fps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/fps/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/fps/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/fps/connection.py -------------------------------------------------------------------------------- /BappModules/boto/fps/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/fps/exception.py -------------------------------------------------------------------------------- /BappModules/boto/fps/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/fps/response.py -------------------------------------------------------------------------------- /BappModules/boto/glacier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/glacier/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/glacier/concurrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/glacier/concurrent.py -------------------------------------------------------------------------------- /BappModules/boto/glacier/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/glacier/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/glacier/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/glacier/job.py -------------------------------------------------------------------------------- /BappModules/boto/glacier/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/glacier/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/glacier/layer2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/glacier/layer2.py -------------------------------------------------------------------------------- /BappModules/boto/glacier/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/glacier/response.py -------------------------------------------------------------------------------- /BappModules/boto/glacier/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/glacier/utils.py -------------------------------------------------------------------------------- /BappModules/boto/glacier/vault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/glacier/vault.py -------------------------------------------------------------------------------- /BappModules/boto/glacier/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/glacier/writer.py -------------------------------------------------------------------------------- /BappModules/boto/gs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/gs/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/gs/acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/gs/acl.py -------------------------------------------------------------------------------- /BappModules/boto/gs/bucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/gs/bucket.py -------------------------------------------------------------------------------- /BappModules/boto/gs/bucketlistresultset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/gs/bucketlistresultset.py -------------------------------------------------------------------------------- /BappModules/boto/gs/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/gs/connection.py -------------------------------------------------------------------------------- /BappModules/boto/gs/cors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/gs/cors.py -------------------------------------------------------------------------------- /BappModules/boto/gs/key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/gs/key.py -------------------------------------------------------------------------------- /BappModules/boto/gs/lifecycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/gs/lifecycle.py -------------------------------------------------------------------------------- /BappModules/boto/gs/resumable_upload_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/gs/resumable_upload_handler.py -------------------------------------------------------------------------------- /BappModules/boto/gs/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/gs/user.py -------------------------------------------------------------------------------- /BappModules/boto/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/handler.py -------------------------------------------------------------------------------- /BappModules/boto/https_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/https_connection.py -------------------------------------------------------------------------------- /BappModules/boto/iam/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/iam/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/iam/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/iam/connection.py -------------------------------------------------------------------------------- /BappModules/boto/iam/summarymap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/iam/summarymap.py -------------------------------------------------------------------------------- /BappModules/boto/jsonresponse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/jsonresponse.py -------------------------------------------------------------------------------- /BappModules/boto/kinesis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/kinesis/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/kinesis/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/kinesis/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/kinesis/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/kinesis/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/kms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/kms/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/kms/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/kms/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/kms/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/kms/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/logs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/logs/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/logs/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/logs/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/logs/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/logs/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/machinelearning/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/machinelearning/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/machinelearning/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/machinelearning/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/machinelearning/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/machinelearning/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/manage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/manage/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/manage/cmdshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/manage/cmdshell.py -------------------------------------------------------------------------------- /BappModules/boto/manage/propget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/manage/propget.py -------------------------------------------------------------------------------- /BappModules/boto/manage/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/manage/server.py -------------------------------------------------------------------------------- /BappModules/boto/manage/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/manage/task.py -------------------------------------------------------------------------------- /BappModules/boto/manage/test_manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/manage/test_manage.py -------------------------------------------------------------------------------- /BappModules/boto/manage/volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/manage/volume.py -------------------------------------------------------------------------------- /BappModules/boto/mashups/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/mashups/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/mashups/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/mashups/interactive.py -------------------------------------------------------------------------------- /BappModules/boto/mashups/iobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/mashups/iobject.py -------------------------------------------------------------------------------- /BappModules/boto/mashups/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/mashups/order.py -------------------------------------------------------------------------------- /BappModules/boto/mashups/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/mashups/server.py -------------------------------------------------------------------------------- /BappModules/boto/mturk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/mturk/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/mturk/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/mturk/connection.py -------------------------------------------------------------------------------- /BappModules/boto/mturk/layoutparam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/mturk/layoutparam.py -------------------------------------------------------------------------------- /BappModules/boto/mturk/notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/mturk/notification.py -------------------------------------------------------------------------------- /BappModules/boto/mturk/price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/mturk/price.py -------------------------------------------------------------------------------- /BappModules/boto/mturk/qualification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/mturk/qualification.py -------------------------------------------------------------------------------- /BappModules/boto/mturk/question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/mturk/question.py -------------------------------------------------------------------------------- /BappModules/boto/mws/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/mws/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/mws/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/mws/connection.py -------------------------------------------------------------------------------- /BappModules/boto/mws/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/mws/exception.py -------------------------------------------------------------------------------- /BappModules/boto/mws/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/mws/response.py -------------------------------------------------------------------------------- /BappModules/boto/opsworks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/opsworks/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/opsworks/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/opsworks/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/opsworks/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/opsworks/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/plugin.py -------------------------------------------------------------------------------- /BappModules/boto/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/provider.py -------------------------------------------------------------------------------- /BappModules/boto/pyami/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/pyami/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/pyami/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/pyami/bootstrap.py -------------------------------------------------------------------------------- /BappModules/boto/pyami/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/pyami/config.py -------------------------------------------------------------------------------- /BappModules/boto/pyami/copybot.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/pyami/copybot.cfg -------------------------------------------------------------------------------- /BappModules/boto/pyami/copybot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/pyami/copybot.py -------------------------------------------------------------------------------- /BappModules/boto/pyami/helloworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/pyami/helloworld.py -------------------------------------------------------------------------------- /BappModules/boto/pyami/installers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/pyami/installers/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/pyami/installers/ubuntu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/pyami/installers/ubuntu/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/pyami/installers/ubuntu/apache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/pyami/installers/ubuntu/apache.py -------------------------------------------------------------------------------- /BappModules/boto/pyami/installers/ubuntu/ebs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/pyami/installers/ubuntu/ebs.py -------------------------------------------------------------------------------- /BappModules/boto/pyami/installers/ubuntu/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/pyami/installers/ubuntu/installer.py -------------------------------------------------------------------------------- /BappModules/boto/pyami/installers/ubuntu/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/pyami/installers/ubuntu/mysql.py -------------------------------------------------------------------------------- /BappModules/boto/pyami/installers/ubuntu/trac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/pyami/installers/ubuntu/trac.py -------------------------------------------------------------------------------- /BappModules/boto/pyami/launch_ami.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/pyami/launch_ami.py -------------------------------------------------------------------------------- /BappModules/boto/pyami/scriptbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/pyami/scriptbase.py -------------------------------------------------------------------------------- /BappModules/boto/pyami/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/pyami/startup.py -------------------------------------------------------------------------------- /BappModules/boto/rds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/rds/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/rds/dbinstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/rds/dbinstance.py -------------------------------------------------------------------------------- /BappModules/boto/rds/dbsecuritygroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/rds/dbsecuritygroup.py -------------------------------------------------------------------------------- /BappModules/boto/rds/dbsnapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/rds/dbsnapshot.py -------------------------------------------------------------------------------- /BappModules/boto/rds/dbsubnetgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/rds/dbsubnetgroup.py -------------------------------------------------------------------------------- /BappModules/boto/rds/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/rds/event.py -------------------------------------------------------------------------------- /BappModules/boto/rds/logfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/rds/logfile.py -------------------------------------------------------------------------------- /BappModules/boto/rds/optiongroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/rds/optiongroup.py -------------------------------------------------------------------------------- /BappModules/boto/rds/parametergroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/rds/parametergroup.py -------------------------------------------------------------------------------- /BappModules/boto/rds/regioninfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/rds/regioninfo.py -------------------------------------------------------------------------------- /BappModules/boto/rds/statusinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/rds/statusinfo.py -------------------------------------------------------------------------------- /BappModules/boto/rds/vpcsecuritygroupmembership.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/rds/vpcsecuritygroupmembership.py -------------------------------------------------------------------------------- /BappModules/boto/rds2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/rds2/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/rds2/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/rds2/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/rds2/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/rds2/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/redshift/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/redshift/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/redshift/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/redshift/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/redshift/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/redshift/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/regioninfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/regioninfo.py -------------------------------------------------------------------------------- /BappModules/boto/requestlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/requestlog.py -------------------------------------------------------------------------------- /BappModules/boto/resultset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/resultset.py -------------------------------------------------------------------------------- /BappModules/boto/roboto/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /BappModules/boto/roboto/awsqueryrequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/roboto/awsqueryrequest.py -------------------------------------------------------------------------------- /BappModules/boto/roboto/awsqueryservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/roboto/awsqueryservice.py -------------------------------------------------------------------------------- /BappModules/boto/roboto/param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/roboto/param.py -------------------------------------------------------------------------------- /BappModules/boto/route53/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/route53/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/route53/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/route53/connection.py -------------------------------------------------------------------------------- /BappModules/boto/route53/domains/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/route53/domains/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/route53/domains/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/route53/domains/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/route53/domains/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/route53/domains/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/route53/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/route53/exception.py -------------------------------------------------------------------------------- /BappModules/boto/route53/healthcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/route53/healthcheck.py -------------------------------------------------------------------------------- /BappModules/boto/route53/hostedzone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/route53/hostedzone.py -------------------------------------------------------------------------------- /BappModules/boto/route53/record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/route53/record.py -------------------------------------------------------------------------------- /BappModules/boto/route53/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/route53/status.py -------------------------------------------------------------------------------- /BappModules/boto/route53/zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/route53/zone.py -------------------------------------------------------------------------------- /BappModules/boto/s3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/s3/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/s3/acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/s3/acl.py -------------------------------------------------------------------------------- /BappModules/boto/s3/bucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/s3/bucket.py -------------------------------------------------------------------------------- /BappModules/boto/s3/bucketlistresultset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/s3/bucketlistresultset.py -------------------------------------------------------------------------------- /BappModules/boto/s3/bucketlogging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/s3/bucketlogging.py -------------------------------------------------------------------------------- /BappModules/boto/s3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/s3/connection.py -------------------------------------------------------------------------------- /BappModules/boto/s3/cors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/s3/cors.py -------------------------------------------------------------------------------- /BappModules/boto/s3/deletemarker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/s3/deletemarker.py -------------------------------------------------------------------------------- /BappModules/boto/s3/key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/s3/key.py -------------------------------------------------------------------------------- /BappModules/boto/s3/keyfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/s3/keyfile.py -------------------------------------------------------------------------------- /BappModules/boto/s3/lifecycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/s3/lifecycle.py -------------------------------------------------------------------------------- /BappModules/boto/s3/multidelete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/s3/multidelete.py -------------------------------------------------------------------------------- /BappModules/boto/s3/multipart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/s3/multipart.py -------------------------------------------------------------------------------- /BappModules/boto/s3/prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/s3/prefix.py -------------------------------------------------------------------------------- /BappModules/boto/s3/resumable_download_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/s3/resumable_download_handler.py -------------------------------------------------------------------------------- /BappModules/boto/s3/tagging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/s3/tagging.py -------------------------------------------------------------------------------- /BappModules/boto/s3/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/s3/user.py -------------------------------------------------------------------------------- /BappModules/boto/s3/website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/s3/website.py -------------------------------------------------------------------------------- /BappModules/boto/sdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sdb/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/sdb/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sdb/connection.py -------------------------------------------------------------------------------- /BappModules/boto/sdb/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sdb/db/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/sdb/db/blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sdb/db/blob.py -------------------------------------------------------------------------------- /BappModules/boto/sdb/db/key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sdb/db/key.py -------------------------------------------------------------------------------- /BappModules/boto/sdb/db/manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sdb/db/manager/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/sdb/db/manager/sdbmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sdb/db/manager/sdbmanager.py -------------------------------------------------------------------------------- /BappModules/boto/sdb/db/manager/xmlmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sdb/db/manager/xmlmanager.py -------------------------------------------------------------------------------- /BappModules/boto/sdb/db/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sdb/db/model.py -------------------------------------------------------------------------------- /BappModules/boto/sdb/db/property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sdb/db/property.py -------------------------------------------------------------------------------- /BappModules/boto/sdb/db/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sdb/db/query.py -------------------------------------------------------------------------------- /BappModules/boto/sdb/db/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sdb/db/sequence.py -------------------------------------------------------------------------------- /BappModules/boto/sdb/db/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sdb/db/test_db.py -------------------------------------------------------------------------------- /BappModules/boto/sdb/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sdb/domain.py -------------------------------------------------------------------------------- /BappModules/boto/sdb/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sdb/item.py -------------------------------------------------------------------------------- /BappModules/boto/sdb/queryresultset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sdb/queryresultset.py -------------------------------------------------------------------------------- /BappModules/boto/sdb/regioninfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sdb/regioninfo.py -------------------------------------------------------------------------------- /BappModules/boto/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/services/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/services/bs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/services/bs.py -------------------------------------------------------------------------------- /BappModules/boto/services/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/services/message.py -------------------------------------------------------------------------------- /BappModules/boto/services/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/services/result.py -------------------------------------------------------------------------------- /BappModules/boto/services/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/services/service.py -------------------------------------------------------------------------------- /BappModules/boto/services/servicedef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/services/servicedef.py -------------------------------------------------------------------------------- /BappModules/boto/services/sonofmmm.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/services/sonofmmm.cfg -------------------------------------------------------------------------------- /BappModules/boto/services/sonofmmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/services/sonofmmm.py -------------------------------------------------------------------------------- /BappModules/boto/services/submit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/services/submit.py -------------------------------------------------------------------------------- /BappModules/boto/ses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ses/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/ses/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ses/connection.py -------------------------------------------------------------------------------- /BappModules/boto/ses/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/ses/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/sns/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sns/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/sns/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sns/connection.py -------------------------------------------------------------------------------- /BappModules/boto/sqs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sqs/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/sqs/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sqs/attributes.py -------------------------------------------------------------------------------- /BappModules/boto/sqs/batchresults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sqs/batchresults.py -------------------------------------------------------------------------------- /BappModules/boto/sqs/bigmessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sqs/bigmessage.py -------------------------------------------------------------------------------- /BappModules/boto/sqs/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sqs/connection.py -------------------------------------------------------------------------------- /BappModules/boto/sqs/jsonmessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sqs/jsonmessage.py -------------------------------------------------------------------------------- /BappModules/boto/sqs/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sqs/message.py -------------------------------------------------------------------------------- /BappModules/boto/sqs/messageattributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sqs/messageattributes.py -------------------------------------------------------------------------------- /BappModules/boto/sqs/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sqs/queue.py -------------------------------------------------------------------------------- /BappModules/boto/sqs/regioninfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sqs/regioninfo.py -------------------------------------------------------------------------------- /BappModules/boto/storage_uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/storage_uri.py -------------------------------------------------------------------------------- /BappModules/boto/sts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sts/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/sts/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sts/connection.py -------------------------------------------------------------------------------- /BappModules/boto/sts/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/sts/credentials.py -------------------------------------------------------------------------------- /BappModules/boto/support/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/support/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/support/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/support/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/support/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/support/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/swf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/swf/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/swf/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/swf/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/swf/layer1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/swf/layer1.py -------------------------------------------------------------------------------- /BappModules/boto/swf/layer1_decisions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/swf/layer1_decisions.py -------------------------------------------------------------------------------- /BappModules/boto/swf/layer2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/swf/layer2.py -------------------------------------------------------------------------------- /BappModules/boto/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/utils.py -------------------------------------------------------------------------------- /BappModules/boto/vendored/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BappModules/boto/vendored/regions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/vendored/regions/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/vendored/regions/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/vendored/regions/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto/vendored/regions/regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/vendored/regions/regions.py -------------------------------------------------------------------------------- /BappModules/boto/vendored/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/vendored/six.py -------------------------------------------------------------------------------- /BappModules/boto/vpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/vpc/__init__.py -------------------------------------------------------------------------------- /BappModules/boto/vpc/customergateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/vpc/customergateway.py -------------------------------------------------------------------------------- /BappModules/boto/vpc/dhcpoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/vpc/dhcpoptions.py -------------------------------------------------------------------------------- /BappModules/boto/vpc/internetgateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/vpc/internetgateway.py -------------------------------------------------------------------------------- /BappModules/boto/vpc/networkacl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/vpc/networkacl.py -------------------------------------------------------------------------------- /BappModules/boto/vpc/routetable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/vpc/routetable.py -------------------------------------------------------------------------------- /BappModules/boto/vpc/subnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/vpc/subnet.py -------------------------------------------------------------------------------- /BappModules/boto/vpc/vpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/vpc/vpc.py -------------------------------------------------------------------------------- /BappModules/boto/vpc/vpc_peering_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/vpc/vpc_peering_connection.py -------------------------------------------------------------------------------- /BappModules/boto/vpc/vpnconnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/vpc/vpnconnection.py -------------------------------------------------------------------------------- /BappModules/boto/vpc/vpngateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto/vpc/vpngateway.py -------------------------------------------------------------------------------- /BappModules/boto3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/__init__.py -------------------------------------------------------------------------------- /BappModules/boto3/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/compat.py -------------------------------------------------------------------------------- /BappModules/boto3/data/ec2/2014-10-01/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/data/ec2/2014-10-01/resources-1.json -------------------------------------------------------------------------------- /BappModules/boto3/data/ec2/2015-03-01/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/data/ec2/2015-03-01/resources-1.json -------------------------------------------------------------------------------- /BappModules/boto3/data/ec2/2015-04-15/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/data/ec2/2015-04-15/resources-1.json -------------------------------------------------------------------------------- /BappModules/boto3/data/ec2/2015-10-01/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/data/ec2/2015-10-01/resources-1.json -------------------------------------------------------------------------------- /BappModules/boto3/data/ec2/2016-04-01/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/data/ec2/2016-04-01/resources-1.json -------------------------------------------------------------------------------- /BappModules/boto3/data/ec2/2016-09-15/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/data/ec2/2016-09-15/resources-1.json -------------------------------------------------------------------------------- /BappModules/boto3/data/ec2/2016-11-15/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/data/ec2/2016-11-15/resources-1.json -------------------------------------------------------------------------------- /BappModules/boto3/data/iam/2010-05-08/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/data/iam/2010-05-08/resources-1.json -------------------------------------------------------------------------------- /BappModules/boto3/data/s3/2006-03-01/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/data/s3/2006-03-01/resources-1.json -------------------------------------------------------------------------------- /BappModules/boto3/data/sns/2010-03-31/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/data/sns/2010-03-31/resources-1.json -------------------------------------------------------------------------------- /BappModules/boto3/data/sqs/2012-11-05/resources-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/data/sqs/2012-11-05/resources-1.json -------------------------------------------------------------------------------- /BappModules/boto3/docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/docs/__init__.py -------------------------------------------------------------------------------- /BappModules/boto3/docs/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/docs/action.py -------------------------------------------------------------------------------- /BappModules/boto3/docs/attr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/docs/attr.py -------------------------------------------------------------------------------- /BappModules/boto3/docs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/docs/base.py -------------------------------------------------------------------------------- /BappModules/boto3/docs/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/docs/client.py -------------------------------------------------------------------------------- /BappModules/boto3/docs/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/docs/collection.py -------------------------------------------------------------------------------- /BappModules/boto3/docs/docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/docs/docstring.py -------------------------------------------------------------------------------- /BappModules/boto3/docs/method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/docs/method.py -------------------------------------------------------------------------------- /BappModules/boto3/docs/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/docs/resource.py -------------------------------------------------------------------------------- /BappModules/boto3/docs/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/docs/service.py -------------------------------------------------------------------------------- /BappModules/boto3/docs/subresource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/docs/subresource.py -------------------------------------------------------------------------------- /BappModules/boto3/docs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/docs/utils.py -------------------------------------------------------------------------------- /BappModules/boto3/docs/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/docs/waiter.py -------------------------------------------------------------------------------- /BappModules/boto3/dynamodb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/dynamodb/__init__.py -------------------------------------------------------------------------------- /BappModules/boto3/dynamodb/conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/dynamodb/conditions.py -------------------------------------------------------------------------------- /BappModules/boto3/dynamodb/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/dynamodb/table.py -------------------------------------------------------------------------------- /BappModules/boto3/dynamodb/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/dynamodb/transform.py -------------------------------------------------------------------------------- /BappModules/boto3/dynamodb/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/dynamodb/types.py -------------------------------------------------------------------------------- /BappModules/boto3/ec2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/ec2/__init__.py -------------------------------------------------------------------------------- /BappModules/boto3/ec2/createtags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/ec2/createtags.py -------------------------------------------------------------------------------- /BappModules/boto3/ec2/deletetags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/ec2/deletetags.py -------------------------------------------------------------------------------- /BappModules/boto3/examples/cloudfront.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/examples/cloudfront.rst -------------------------------------------------------------------------------- /BappModules/boto3/examples/s3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/examples/s3.rst -------------------------------------------------------------------------------- /BappModules/boto3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/exceptions.py -------------------------------------------------------------------------------- /BappModules/boto3/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BappModules/boto3/resources/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/resources/action.py -------------------------------------------------------------------------------- /BappModules/boto3/resources/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/resources/base.py -------------------------------------------------------------------------------- /BappModules/boto3/resources/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/resources/collection.py -------------------------------------------------------------------------------- /BappModules/boto3/resources/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/resources/factory.py -------------------------------------------------------------------------------- /BappModules/boto3/resources/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/resources/model.py -------------------------------------------------------------------------------- /BappModules/boto3/resources/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/resources/params.py -------------------------------------------------------------------------------- /BappModules/boto3/resources/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/resources/response.py -------------------------------------------------------------------------------- /BappModules/boto3/s3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/s3/__init__.py -------------------------------------------------------------------------------- /BappModules/boto3/s3/inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/s3/inject.py -------------------------------------------------------------------------------- /BappModules/boto3/s3/transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/s3/transfer.py -------------------------------------------------------------------------------- /BappModules/boto3/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/session.py -------------------------------------------------------------------------------- /BappModules/boto3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/boto3/utils.py -------------------------------------------------------------------------------- /BappModules/botocore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/__init__.py -------------------------------------------------------------------------------- /BappModules/botocore/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/args.py -------------------------------------------------------------------------------- /BappModules/botocore/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/auth.py -------------------------------------------------------------------------------- /BappModules/botocore/awsrequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/awsrequest.py -------------------------------------------------------------------------------- /BappModules/botocore/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/client.py -------------------------------------------------------------------------------- /BappModules/botocore/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/compat.py -------------------------------------------------------------------------------- /BappModules/botocore/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/config.py -------------------------------------------------------------------------------- /BappModules/botocore/configloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/configloader.py -------------------------------------------------------------------------------- /BappModules/botocore/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/credentials.py -------------------------------------------------------------------------------- /BappModules/botocore/data/_retry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/_retry.json -------------------------------------------------------------------------------- /BappModules/botocore/data/acm/2015-12-08/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/acm/2015-12-08/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/appstream/2016-12-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/batch/2016-08-10/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/budgets/2016-10-20/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/ce/2017-10-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/ce/2017-10-25/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ce/2017-10-25/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/clouddirectory/2016-05-10/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/cloudhsm/2014-05-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/cloudhsmv2/2017-04-28/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/cloudsearch/2013-01-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/codepipeline/2015-07-09/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/codestar/2017-04-19/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/cognito-identity/2014-06-30/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/cognito-idp/2016-04-18/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/cur/2017-01-06/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/cur/2017-01-06/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/dax/2017-04-19/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/dax/2017-04-19/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/dax/2017-04-19/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/directconnect/2012-10-25/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/discovery/2015-11-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/dms/2016-01-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/dms/2016-01-01/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/dms/2016-01-01/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ds/2015-04-16/examples-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ds/2015-04-16/examples-1.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ds/2015-04-16/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/ds/2015-04-16/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ds/2015-04-16/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/dynamodbstreams/2012-08-10/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/ec2/2014-09-01/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ec2/2014-09-01/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ec2/2014-09-01/waiters-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ec2/2014-09-01/waiters-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ec2/2014-10-01/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ec2/2014-10-01/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ec2/2014-10-01/waiters-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ec2/2014-10-01/waiters-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ec2/2015-03-01/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ec2/2015-03-01/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ec2/2015-03-01/waiters-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ec2/2015-03-01/waiters-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ec2/2015-04-15/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ec2/2015-04-15/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ec2/2015-04-15/waiters-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ec2/2015-04-15/waiters-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ec2/2015-10-01/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ec2/2015-10-01/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ec2/2015-10-01/waiters-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ec2/2015-10-01/waiters-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ec2/2016-04-01/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ec2/2016-04-01/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ec2/2016-04-01/waiters-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ec2/2016-04-01/waiters-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ec2/2016-09-15/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ec2/2016-09-15/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ec2/2016-09-15/waiters-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ec2/2016-09-15/waiters-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ec2/2016-11-15/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ec2/2016-11-15/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ec2/2016-11-15/waiters-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ec2/2016-11-15/waiters-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ecr/2015-09-21/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ecr/2015-09-21/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ecs/2014-11-13/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ecs/2014-11-13/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ecs/2014-11-13/waiters-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ecs/2014-11-13/waiters-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/efs/2015-02-01/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/efs/2015-02-01/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/elb/2012-06-01/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/elb/2012-06-01/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/elb/2012-06-01/waiters-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/elb/2012-06-01/waiters-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/emr/2009-03-31/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/emr/2009-03-31/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/emr/2009-03-31/waiters-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/emr/2009-03-31/waiters-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/endpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/endpoints.json -------------------------------------------------------------------------------- /BappModules/botocore/data/es/2015-01-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/es/2015-01-01/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/es/2015-01-01/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/events/2015-10-07/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/firehose/2015-08-04/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/gamelift/2015-10-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/glue/2017-03-31/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/iam/2010-05-08/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/iam/2010-05-08/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/iam/2010-05-08/waiters-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/iam/2010-05-08/waiters-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/inspector/2016-02-16/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/iot/2015-05-28/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/iot/2015-05-28/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/kinesisanalytics/2015-08-14/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/kms/2014-11-01/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/kms/2014-11-01/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/lex-models/2017-04-19/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/lex-runtime/2016-11-28/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/marketplace-entitlement/2017-01-11/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/marketplacecommerceanalytics/2015-07-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/mgh/2017-05-31/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/mgh/2017-05-31/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/mgh/2017-05-31/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/mobile/2017-07-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/mturk/2017-01-17/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/opsworkscm/2016-11-01/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/polly/2016-06-10/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/pricing/2017-10-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/rds/2014-09-01/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/rds/2014-09-01/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/rds/2014-09-01/waiters-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/rds/2014-09-01/waiters-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/rds/2014-10-31/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/rds/2014-10-31/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/rds/2014-10-31/waiters-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/rds/2014-10-31/waiters-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/s3/2006-03-01/examples-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/s3/2006-03-01/examples-1.json -------------------------------------------------------------------------------- /BappModules/botocore/data/s3/2006-03-01/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/s3/2006-03-01/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/s3/2006-03-01/waiters-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/s3/2006-03-01/waiters-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/sdb/2009-04-15/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/sdb/2009-04-15/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/servicecatalog/2015-12-10/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/ses/2010-12-01/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ses/2010-12-01/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ses/2010-12-01/waiters-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ses/2010-12-01/waiters-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/sms/2016-10-24/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/sms/2016-10-24/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/sns/2010-03-31/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/sns/2010-03-31/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/sqs/2012-11-05/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/sqs/2012-11-05/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/sqs/2012-11-05/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/ssm/2014-11-06/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/ssm/2014-11-06/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/sts/2011-06-15/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/sts/2011-06-15/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/sts/2011-06-15/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/swf/2012-01-25/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/swf/2012-01-25/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/waf-regional/2016-11-28/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/data/waf/2015-08-24/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/data/waf/2015-08-24/service-2.json -------------------------------------------------------------------------------- /BappModules/botocore/data/xray/2016-04-12/paginators-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "pagination": {} 3 | } 4 | -------------------------------------------------------------------------------- /BappModules/botocore/docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/docs/__init__.py -------------------------------------------------------------------------------- /BappModules/botocore/docs/bcdoc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/docs/bcdoc/__init__.py -------------------------------------------------------------------------------- /BappModules/botocore/docs/bcdoc/docevents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/docs/bcdoc/docevents.py -------------------------------------------------------------------------------- /BappModules/botocore/docs/bcdoc/docstringparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/docs/bcdoc/docstringparser.py -------------------------------------------------------------------------------- /BappModules/botocore/docs/bcdoc/restdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/docs/bcdoc/restdoc.py -------------------------------------------------------------------------------- /BappModules/botocore/docs/bcdoc/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/docs/bcdoc/style.py -------------------------------------------------------------------------------- /BappModules/botocore/docs/bcdoc/textwriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/docs/bcdoc/textwriter.py -------------------------------------------------------------------------------- /BappModules/botocore/docs/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/docs/client.py -------------------------------------------------------------------------------- /BappModules/botocore/docs/docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/docs/docstring.py -------------------------------------------------------------------------------- /BappModules/botocore/docs/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/docs/example.py -------------------------------------------------------------------------------- /BappModules/botocore/docs/method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/docs/method.py -------------------------------------------------------------------------------- /BappModules/botocore/docs/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/docs/paginator.py -------------------------------------------------------------------------------- /BappModules/botocore/docs/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/docs/params.py -------------------------------------------------------------------------------- /BappModules/botocore/docs/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/docs/service.py -------------------------------------------------------------------------------- /BappModules/botocore/docs/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/docs/shape.py -------------------------------------------------------------------------------- /BappModules/botocore/docs/sharedexample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/docs/sharedexample.py -------------------------------------------------------------------------------- /BappModules/botocore/docs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/docs/utils.py -------------------------------------------------------------------------------- /BappModules/botocore/docs/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/docs/waiter.py -------------------------------------------------------------------------------- /BappModules/botocore/endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/endpoint.py -------------------------------------------------------------------------------- /BappModules/botocore/errorfactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/errorfactory.py -------------------------------------------------------------------------------- /BappModules/botocore/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/exceptions.py -------------------------------------------------------------------------------- /BappModules/botocore/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/handlers.py -------------------------------------------------------------------------------- /BappModules/botocore/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/history.py -------------------------------------------------------------------------------- /BappModules/botocore/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/hooks.py -------------------------------------------------------------------------------- /BappModules/botocore/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/loaders.py -------------------------------------------------------------------------------- /BappModules/botocore/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/model.py -------------------------------------------------------------------------------- /BappModules/botocore/paginate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/paginate.py -------------------------------------------------------------------------------- /BappModules/botocore/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/parsers.py -------------------------------------------------------------------------------- /BappModules/botocore/regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/regions.py -------------------------------------------------------------------------------- /BappModules/botocore/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/response.py -------------------------------------------------------------------------------- /BappModules/botocore/retryhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/retryhandler.py -------------------------------------------------------------------------------- /BappModules/botocore/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/serialize.py -------------------------------------------------------------------------------- /BappModules/botocore/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/session.py -------------------------------------------------------------------------------- /BappModules/botocore/signers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/signers.py -------------------------------------------------------------------------------- /BappModules/botocore/stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/stub.py -------------------------------------------------------------------------------- /BappModules/botocore/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/translate.py -------------------------------------------------------------------------------- /BappModules/botocore/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/utils.py -------------------------------------------------------------------------------- /BappModules/botocore/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/validate.py -------------------------------------------------------------------------------- /BappModules/botocore/vendored/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BappModules/botocore/vendored/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/vendored/requests/__init__.py -------------------------------------------------------------------------------- /BappModules/botocore/vendored/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/vendored/requests/adapters.py -------------------------------------------------------------------------------- /BappModules/botocore/vendored/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/vendored/requests/api.py -------------------------------------------------------------------------------- /BappModules/botocore/vendored/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/vendored/requests/auth.py -------------------------------------------------------------------------------- /BappModules/botocore/vendored/requests/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/vendored/requests/cacert.pem -------------------------------------------------------------------------------- /BappModules/botocore/vendored/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/vendored/requests/certs.py -------------------------------------------------------------------------------- /BappModules/botocore/vendored/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/vendored/requests/compat.py -------------------------------------------------------------------------------- /BappModules/botocore/vendored/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/vendored/requests/cookies.py -------------------------------------------------------------------------------- /BappModules/botocore/vendored/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/vendored/requests/exceptions.py -------------------------------------------------------------------------------- /BappModules/botocore/vendored/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/vendored/requests/hooks.py -------------------------------------------------------------------------------- /BappModules/botocore/vendored/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/vendored/requests/models.py -------------------------------------------------------------------------------- /BappModules/botocore/vendored/requests/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BappModules/botocore/vendored/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/vendored/requests/sessions.py -------------------------------------------------------------------------------- /BappModules/botocore/vendored/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/vendored/requests/status_codes.py -------------------------------------------------------------------------------- /BappModules/botocore/vendored/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/vendored/requests/structures.py -------------------------------------------------------------------------------- /BappModules/botocore/vendored/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/vendored/requests/utils.py -------------------------------------------------------------------------------- /BappModules/botocore/vendored/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/vendored/six.py -------------------------------------------------------------------------------- /BappModules/botocore/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/botocore/waiter.py -------------------------------------------------------------------------------- /BappModules/concurrent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/concurrent/__init__.py -------------------------------------------------------------------------------- /BappModules/concurrent/futures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/concurrent/futures/__init__.py -------------------------------------------------------------------------------- /BappModules/concurrent/futures/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/concurrent/futures/_base.py -------------------------------------------------------------------------------- /BappModules/concurrent/futures/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/concurrent/futures/process.py -------------------------------------------------------------------------------- /BappModules/concurrent/futures/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/concurrent/futures/thread.py -------------------------------------------------------------------------------- /BappModules/dateutil/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/dateutil/__init__.py -------------------------------------------------------------------------------- /BappModules/dateutil/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/dateutil/_common.py -------------------------------------------------------------------------------- /BappModules/dateutil/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/dateutil/_version.py -------------------------------------------------------------------------------- /BappModules/dateutil/easter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/dateutil/easter.py -------------------------------------------------------------------------------- /BappModules/dateutil/parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/dateutil/parser/__init__.py -------------------------------------------------------------------------------- /BappModules/dateutil/parser/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/dateutil/parser/_parser.py -------------------------------------------------------------------------------- /BappModules/dateutil/parser/isoparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/dateutil/parser/isoparser.py -------------------------------------------------------------------------------- /BappModules/dateutil/relativedelta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/dateutil/relativedelta.py -------------------------------------------------------------------------------- /BappModules/dateutil/rrule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/dateutil/rrule.py -------------------------------------------------------------------------------- /BappModules/dateutil/tz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/dateutil/tz/__init__.py -------------------------------------------------------------------------------- /BappModules/dateutil/tz/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/dateutil/tz/_common.py -------------------------------------------------------------------------------- /BappModules/dateutil/tz/_factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/dateutil/tz/_factories.py -------------------------------------------------------------------------------- /BappModules/dateutil/tz/tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/dateutil/tz/tz.py -------------------------------------------------------------------------------- /BappModules/dateutil/tz/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/dateutil/tz/win.py -------------------------------------------------------------------------------- /BappModules/dateutil/tzwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/dateutil/tzwin.py -------------------------------------------------------------------------------- /BappModules/dateutil/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/dateutil/utils.py -------------------------------------------------------------------------------- /BappModules/dateutil/zoneinfo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/dateutil/zoneinfo/__init__.py -------------------------------------------------------------------------------- /BappModules/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz -------------------------------------------------------------------------------- /BappModules/dateutil/zoneinfo/rebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/dateutil/zoneinfo/rebuild.py -------------------------------------------------------------------------------- /BappModules/docutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/__init__.py -------------------------------------------------------------------------------- /BappModules/docutils/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/_compat.py -------------------------------------------------------------------------------- /BappModules/docutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/core.py -------------------------------------------------------------------------------- /BappModules/docutils/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/examples.py -------------------------------------------------------------------------------- /BappModules/docutils/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/frontend.py -------------------------------------------------------------------------------- /BappModules/docutils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/io.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/__init__.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/af.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/af.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/ca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/ca.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/cs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/cs.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/da.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/da.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/de.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/en.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/eo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/eo.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/es.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/fa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/fa.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/fi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/fi.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/fr.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/gl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/gl.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/he.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/he.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/it.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/ja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/ja.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/lt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/lt.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/lv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/lv.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/nl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/nl.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/pl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/pl.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/pt_br.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/pt_br.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/ru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/ru.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/sk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/sk.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/sv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/sv.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/zh_cn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/zh_cn.py -------------------------------------------------------------------------------- /BappModules/docutils/languages/zh_tw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/languages/zh_tw.py -------------------------------------------------------------------------------- /BappModules/docutils/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/nodes.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/__init__.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/null.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/__init__.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/directives/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/directives/__init__.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/directives/body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/directives/body.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/directives/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/directives/html.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/directives/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/directives/images.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/directives/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/directives/misc.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/directives/parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/directives/parts.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/directives/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/directives/tables.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/README.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isoamsa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isoamsa.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isoamsb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isoamsb.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isoamsc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isoamsc.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isoamsn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isoamsn.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isoamso.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isoamso.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isoamsr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isoamsr.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isobox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isobox.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isocyr1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isocyr1.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isocyr2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isocyr2.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isodia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isodia.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isogrk1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isogrk1.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isogrk2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isogrk2.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isogrk3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isogrk3.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isogrk4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isogrk4.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isolat1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isolat1.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isolat2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isolat2.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isomfrk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isomfrk.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isomopf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isomopf.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isomscr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isomscr.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isonum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isonum.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isopub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isopub.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/isotech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/isotech.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/mmlalias.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/mmlalias.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/mmlextra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/mmlextra.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/include/s5defs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/include/s5defs.txt -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/__init__.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/af.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/af.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/ca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/ca.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/cs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/cs.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/da.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/da.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/de.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/en.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/eo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/eo.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/es.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/fa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/fa.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/fi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/fi.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/fr.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/gl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/gl.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/he.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/he.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/it.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/ja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/ja.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/lt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/lt.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/lv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/lv.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/nl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/nl.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/pl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/pl.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/pt_br.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/pt_br.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/ru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/ru.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/sk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/sk.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/sv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/sv.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/zh_cn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/zh_cn.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/languages/zh_tw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/languages/zh_tw.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/roles.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/states.py -------------------------------------------------------------------------------- /BappModules/docutils/parsers/rst/tableparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/parsers/rst/tableparser.py -------------------------------------------------------------------------------- /BappModules/docutils/readers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/readers/__init__.py -------------------------------------------------------------------------------- /BappModules/docutils/readers/doctree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/readers/doctree.py -------------------------------------------------------------------------------- /BappModules/docutils/readers/pep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/readers/pep.py -------------------------------------------------------------------------------- /BappModules/docutils/readers/standalone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/readers/standalone.py -------------------------------------------------------------------------------- /BappModules/docutils/statemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/statemachine.py -------------------------------------------------------------------------------- /BappModules/docutils/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/transforms/__init__.py -------------------------------------------------------------------------------- /BappModules/docutils/transforms/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/transforms/components.py -------------------------------------------------------------------------------- /BappModules/docutils/transforms/frontmatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/transforms/frontmatter.py -------------------------------------------------------------------------------- /BappModules/docutils/transforms/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/transforms/misc.py -------------------------------------------------------------------------------- /BappModules/docutils/transforms/parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/transforms/parts.py -------------------------------------------------------------------------------- /BappModules/docutils/transforms/peps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/transforms/peps.py -------------------------------------------------------------------------------- /BappModules/docutils/transforms/references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/transforms/references.py -------------------------------------------------------------------------------- /BappModules/docutils/transforms/universal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/transforms/universal.py -------------------------------------------------------------------------------- /BappModules/docutils/transforms/writer_aux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/transforms/writer_aux.py -------------------------------------------------------------------------------- /BappModules/docutils/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/utils/__init__.py -------------------------------------------------------------------------------- /BappModules/docutils/utils/code_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/utils/code_analyzer.py -------------------------------------------------------------------------------- /BappModules/docutils/utils/error_reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/utils/error_reporting.py -------------------------------------------------------------------------------- /BappModules/docutils/utils/math/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/utils/math/__init__.py -------------------------------------------------------------------------------- /BappModules/docutils/utils/math/latex2mathml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/utils/math/latex2mathml.py -------------------------------------------------------------------------------- /BappModules/docutils/utils/math/math2html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/utils/math/math2html.py -------------------------------------------------------------------------------- /BappModules/docutils/utils/math/tex2mathml_extern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/utils/math/tex2mathml_extern.py -------------------------------------------------------------------------------- /BappModules/docutils/utils/math/tex2unichar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/utils/math/tex2unichar.py -------------------------------------------------------------------------------- /BappModules/docutils/utils/math/unichar2tex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/utils/math/unichar2tex.py -------------------------------------------------------------------------------- /BappModules/docutils/utils/punctuation_chars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/utils/punctuation_chars.py -------------------------------------------------------------------------------- /BappModules/docutils/utils/roman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/utils/roman.py -------------------------------------------------------------------------------- /BappModules/docutils/utils/smartquotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/utils/smartquotes.py -------------------------------------------------------------------------------- /BappModules/docutils/utils/urischemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/utils/urischemes.py -------------------------------------------------------------------------------- /BappModules/docutils/writers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/__init__.py -------------------------------------------------------------------------------- /BappModules/docutils/writers/_html_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/_html_base.py -------------------------------------------------------------------------------- /BappModules/docutils/writers/docutils_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/docutils_xml.py -------------------------------------------------------------------------------- /BappModules/docutils/writers/html4css1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/html4css1/__init__.py -------------------------------------------------------------------------------- /BappModules/docutils/writers/html4css1/html4css1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/html4css1/html4css1.css -------------------------------------------------------------------------------- /BappModules/docutils/writers/html4css1/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/html4css1/template.txt -------------------------------------------------------------------------------- /BappModules/docutils/writers/html5_polyglot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/html5_polyglot/__init__.py -------------------------------------------------------------------------------- /BappModules/docutils/writers/html5_polyglot/math.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/html5_polyglot/math.css -------------------------------------------------------------------------------- /BappModules/docutils/writers/html5_polyglot/minimal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/html5_polyglot/minimal.css -------------------------------------------------------------------------------- /BappModules/docutils/writers/latex2e/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/latex2e/__init__.py -------------------------------------------------------------------------------- /BappModules/docutils/writers/latex2e/default.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/latex2e/default.tex -------------------------------------------------------------------------------- /BappModules/docutils/writers/latex2e/titlepage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/latex2e/titlepage.tex -------------------------------------------------------------------------------- /BappModules/docutils/writers/latex2e/xelatex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/latex2e/xelatex.tex -------------------------------------------------------------------------------- /BappModules/docutils/writers/manpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/manpage.py -------------------------------------------------------------------------------- /BappModules/docutils/writers/null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/null.py -------------------------------------------------------------------------------- /BappModules/docutils/writers/odf_odt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/odf_odt/__init__.py -------------------------------------------------------------------------------- /BappModules/docutils/writers/odf_odt/styles.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/odf_odt/styles.odt -------------------------------------------------------------------------------- /BappModules/docutils/writers/pep_html/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/pep_html/__init__.py -------------------------------------------------------------------------------- /BappModules/docutils/writers/pep_html/pep.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/pep_html/pep.css -------------------------------------------------------------------------------- /BappModules/docutils/writers/pep_html/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/pep_html/template.txt -------------------------------------------------------------------------------- /BappModules/docutils/writers/pseudoxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/pseudoxml.py -------------------------------------------------------------------------------- /BappModules/docutils/writers/s5_html/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/s5_html/__init__.py -------------------------------------------------------------------------------- /BappModules/docutils/writers/xetex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/docutils/writers/xetex/__init__.py -------------------------------------------------------------------------------- /BappModules/jmespath/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/jmespath/__init__.py -------------------------------------------------------------------------------- /BappModules/jmespath/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/jmespath/ast.py -------------------------------------------------------------------------------- /BappModules/jmespath/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/jmespath/compat.py -------------------------------------------------------------------------------- /BappModules/jmespath/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/jmespath/exceptions.py -------------------------------------------------------------------------------- /BappModules/jmespath/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/jmespath/functions.py -------------------------------------------------------------------------------- /BappModules/jmespath/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/jmespath/lexer.py -------------------------------------------------------------------------------- /BappModules/jmespath/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/jmespath/parser.py -------------------------------------------------------------------------------- /BappModules/jmespath/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/jmespath/visitor.py -------------------------------------------------------------------------------- /BappModules/s3transfer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/s3transfer/__init__.py -------------------------------------------------------------------------------- /BappModules/s3transfer/bandwidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/s3transfer/bandwidth.py -------------------------------------------------------------------------------- /BappModules/s3transfer/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/s3transfer/compat.py -------------------------------------------------------------------------------- /BappModules/s3transfer/copies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/s3transfer/copies.py -------------------------------------------------------------------------------- /BappModules/s3transfer/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/s3transfer/delete.py -------------------------------------------------------------------------------- /BappModules/s3transfer/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/s3transfer/download.py -------------------------------------------------------------------------------- /BappModules/s3transfer/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/s3transfer/exceptions.py -------------------------------------------------------------------------------- /BappModules/s3transfer/futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/s3transfer/futures.py -------------------------------------------------------------------------------- /BappModules/s3transfer/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/s3transfer/manager.py -------------------------------------------------------------------------------- /BappModules/s3transfer/subscribers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/s3transfer/subscribers.py -------------------------------------------------------------------------------- /BappModules/s3transfer/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/s3transfer/tasks.py -------------------------------------------------------------------------------- /BappModules/s3transfer/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/s3transfer/upload.py -------------------------------------------------------------------------------- /BappModules/s3transfer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/s3transfer/utils.py -------------------------------------------------------------------------------- /BappModules/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/BappModules/six.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/README.md -------------------------------------------------------------------------------- /cf_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/cf_checks.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/main.py -------------------------------------------------------------------------------- /scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/scan.py -------------------------------------------------------------------------------- /screenshots/GS_bucket_misconfiguration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/screenshots/GS_bucket_misconfiguration.png -------------------------------------------------------------------------------- /screenshots/S3_bucket_misconfiguration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/screenshots/S3_bucket_misconfiguration.png -------------------------------------------------------------------------------- /screenshots/excessive_signed_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/screenshots/excessive_signed_url.png -------------------------------------------------------------------------------- /screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/screenshots/settings.png -------------------------------------------------------------------------------- /screenshots/settings_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtueSecurity/aws-extender/HEAD/screenshots/settings_thumb.png --------------------------------------------------------------------------------