Skip to content

Commit

Permalink
Merge branch 'release-0.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgtaylor committed Nov 21, 2014
2 parents 3835f8e + b13677b commit c0e1e42
Show file tree
Hide file tree
Showing 22 changed files with 975 additions and 460 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
Changelog
=========

0.0.2 - 2014-11-20
------------------

* Adds resources for
`AWS CloudFormation <http://aws.amazon.com/cloudformation/>`_ and
`AWS OpsWorks <http://aws.amazon.com/opsworks/>`_.
* Update to Botocore 0.73.0 and JMESPath 0.5.0
* Adds support for
`AWS CodeDeploy <http://aws.amazon.com/codedeploy/>`_,
`AWS Config <http://aws.amazon.com/config/>`_,
`AWS KMS <http://aws.amazon.com/kms/>`_,
`AWS Lambda <http://aws.amazon.com/lambda/>`_.
* Make requests with a customized HTTP user-agent

0.0.1 - 2014-11-11
------------------

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Boto 3 - The AWS SDK for Python
===============================

|Build Status| |Coverage| |Docs|
|Build Status| |Coverage| |Docs| |Version| |Python Versions|

Boto is the Amazon Web Services (AWS) Software Development Kit (SDK) for
Python, which allows Python developers to write software that makes use
Expand Down
2 changes: 1 addition & 1 deletion boto3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


__author__ = 'Amazon Web Services'
__version__ = '0.0.1'
__version__ = '0.0.2'


# The default Boto3 session; autoloaded when needed.
Expand Down
147 changes: 147 additions & 0 deletions boto3/data/resources/cloudformation-2010-05-15.resources.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
{
"service": {
"actions": {
"CreateStack": {
"request": { "operation": "CreateStack" },
"resource": {
"type": "Stack",
"identifiers": [
{ "target": "Name", "sourceType": "requestParameter", "source": "StackName" }
]
}
}
},
"hasMany": {
"Stacks": {
"request": { "operation": "DescribeStacks" },
"resource": {
"type": "Stack",
"identifiers": [
{ "target": "Name", "sourceType": "responsePath", "source": "Stacks[].StackName" }
]
}
}
}
},
"resources": {
"Event": {
"identifiers": [
{ "name": "Id" }
],
"shape": "StackEvent"
},
"Stack": {
"identifiers": [
{ "name": "Name" }
],
"shape": "Stack",
"load": {
"request": {
"operation": "DescribeStacks",
"params": [
{ "target": "StackName", "sourceType": "identifier", "source": "Name" }
]
},
"path": "Stacks[0]"
},
"actions": {
"CancelUpdate": {
"request": {
"operation": "CancelUpdateStack",
"params": [
{ "target": "StackName", "sourceType": "identifier", "source": "Name" }
]
}
},
"Delete": {
"request": {
"operation": "DeleteStack",
"params": [
{ "target": "StackName", "sourceType": "identifier", "source": "Name" }
]
}
},
"Update": {
"request": {
"operation": "UpdateStack",
"params": [
{ "target": "StackName", "sourceType": "identifier", "source": "Name" }
]
}
}
},
"hasMany": {
"Events": {
"request": {
"operation": "DescribeStackEvents",
"params": [
{ "target": "StackName", "sourceType": "identifier", "source": "Name" }
]
},
"resource": {
"type": "Event",
"identifiers": [
{ "target": "Id", "sourceType": "responsePath", "source": "StackEvents[].EventId" }
],
"path": "StackEvents[]"
}
},
"ResourceSummaries": {
"request": {
"operation": "ListStackResources",
"params": [
{ "target": "StackName", "sourceType": "identifier", "source": "Name" }
]
},
"resource": {
"type": "StackResourceSummary",
"identifiers": [
{ "target": "LogicalId", "sourceType": "responsePath", "source": "StackResourceSummaries[].LogicalResourceId" },
{ "target": "StackName", "sourceType": "requestParameter", "source": "StackName" }
],
"path": "StackResourceSummaries[]"
}
}
},
"subResources": {
"resources": [ "StackResource" ],
"identifiers": { "Name": "StackName" }
}
},
"StackResource": {
"identifiers": [
{ "name": "LogicalId" },
{ "name": "StackName" }
],
"shape": "StackResourceDetail",
"load": {
"request": {
"operation": "DescribeStackResource",
"params": [
{ "target": "LogicalResourceId", "sourceType": "identifier", "source": "LogicalId" },
{ "target": "StackName", "sourceType": "identifier", "source": "StackName" }
]
},
"path": "StackResourceDetail"
}
},
"StackResourceSummary": {
"identifiers": [
{ "name": "LogicalId" },
{ "name": "StackName" }
],
"shape": "StackResourceSummary",
"belongsTo": {
"Resource": {
"resource": {
"type": "StackResource",
"identifiers": [
{ "target": "LogicalId", "sourceType": "identifier", "source": "LogicalId" },
{ "target": "StackName", "sourceType": "identifier", "source": "StackName" }
]
}
}
}
}
}
}
Loading

0 comments on commit c0e1e42

Please sign in to comment.