Skip to content

Commit 0ed95ff

Browse files
committed
Release of Version 1.6.0
1 parent 0d1ad92 commit 0ed95ff

48 files changed

Lines changed: 13767 additions & 4492 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
CHANGELOG
33
=========
44

5+
1.6.0
6+
=====
7+
Stream manager supports automatic data export to AWS S3 and AWS IoT SiteWise, provides new API method to update existing streams, and pause or resume exporting.
8+
Support Python3.8 lambda runtime.
9+
510
1.5.0
611
=====
712

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ As new features are added to AWS IoT Greengrass, newer versions of the AWS IoT G
7070
+-------------+------------------------+
7171
| 1.10.x | 1.0.x-1.5.x |
7272
+-------------+------------------------+
73+
| 1.11.x | 1.0.x-1.6.x |
74+
+-------------+------------------------+
7375

7476
==============
7577
Stream Manager

docs/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: b47998532a53416a32a84e3eaee97038
3+
config: 080f03067e86a18925b920088836fb92
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/_apidoc/greengrasssdk.IoTDataPlane.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>greengrasssdk.IoTDataPlane module &mdash; Greengrass Core Python SDK 1.5.0 documentation</title>
11+
<title>greengrasssdk.IoTDataPlane module &mdash; Greengrass Core Python SDK 1.6.0 documentation</title>
1212

1313

1414

@@ -56,7 +56,7 @@
5656

5757

5858
<div class="version">
59-
1.5.0
59+
1.6.0
6060
</div>
6161

6262

@@ -297,7 +297,7 @@
297297

298298
<div role="contentinfo">
299299
<p>
300-
&copy; Copyright 2019, Amazon.com.
300+
&copy; Copyright 2020, Amazon.com.
301301

302302
</p>
303303
</div>
@@ -319,7 +319,7 @@
319319
<script type="text/javascript">
320320
var DOCUMENTATION_OPTIONS = {
321321
URL_ROOT:'../',
322-
VERSION:'1.5.0',
322+
VERSION:'1.6.0',
323323
LANGUAGE:'None',
324324
COLLAPSE_INDEX:false,
325325
FILE_SUFFIX:'.html',

docs/_apidoc/greengrasssdk.Lambda.html

Lines changed: 54 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>greengrasssdk.Lambda module &mdash; Greengrass Core Python SDK 1.5.0 documentation</title>
11+
<title>greengrasssdk.Lambda module &mdash; Greengrass Core Python SDK 1.6.0 documentation</title>
1212

1313

1414

@@ -56,7 +56,7 @@
5656

5757

5858
<div class="version">
59-
1.5.0
59+
1.6.0
6060
</div>
6161

6262

@@ -157,12 +157,60 @@
157157

158158
<dl class="class">
159159
<dt id="greengrasssdk.Lambda.Client">
160-
<em class="property">class </em><code class="descclassname">greengrasssdk.Lambda.</code><code class="descname">Client</code><span class="sig-paren">(</span><em>endpoint='localhost'</em>, <em>port=8000</em><span class="sig-paren">)</span><a class="reference internal" href="../_modules/greengrasssdk/Lambda.html#Client"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#greengrasssdk.Lambda.Client" title="Permalink to this definition"></a></dt>
160+
<em class="property">class </em><code class="descclassname">greengrasssdk.Lambda.</code><code class="descname">Client</code><span class="sig-paren">(</span><em>endpoint='localhost'</em>, <em>port=None</em><span class="sig-paren">)</span><a class="reference internal" href="../_modules/greengrasssdk/Lambda.html#Client"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#greengrasssdk.Lambda.Client" title="Permalink to this definition"></a></dt>
161161
<dd><p>Bases: <code class="xref py py-class docutils literal notranslate"><span class="pre">object</span></code></p>
162162
<dl class="method">
163163
<dt id="greengrasssdk.Lambda.Client.invoke">
164164
<code class="descname">invoke</code><span class="sig-paren">(</span><em>**kwargs</em><span class="sig-paren">)</span><a class="reference internal" href="../_modules/greengrasssdk/Lambda.html#Client.invoke"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#greengrasssdk.Lambda.Client.invoke" title="Permalink to this definition"></a></dt>
165-
<dd></dd></dl>
165+
<dd><p>Invokes Lambda function of the given name.</p>
166+
<table class="docutils field-list" frame="void" rules="none">
167+
<col class="field-name" />
168+
<col class="field-body" />
169+
<tbody valign="top">
170+
<tr class="field-odd field"><th class="field-name" colspan="2">Keyword Arguments:</th></tr>
171+
<tr class="field-odd field"><td>&#160;</td><td class="field-body"><ul class="first simple">
172+
<li><em>ClientContext</em> (<code class="docutils literal notranslate"><span class="pre">bytes</span></code>) –
173+
Optional Base64-encoded data about the invoking client to pass to the Lambda function</li>
174+
<li><em>FunctionName</em> (<code class="docutils literal notranslate"><span class="pre">string</span></code>) –
175+
[REQUIRED]
176+
The Amazon Resource Name (ARN) of the Lambda function to invoke. Name formats:<ul>
177+
<li>Qualified ARN - The function ARN with the version suffix. e.g. arn:aws:lambda:aws-region:acct-id:function:helloworld:1</li>
178+
<li>Unqualified ARN - The function ARN without the version suffix. e.g. arn:aws:lambda:aws-region:acct-id:function:helloworld</li>
179+
</ul>
180+
</li>
181+
<li><em>InvocationType</em> (<code class="docutils literal notranslate"><span class="pre">string</span></code>) –
182+
Choose from the following options.<ul>
183+
<li><code class="docutils literal notranslate"><span class="pre">RequestResponse</span></code> (default) - Invoke the Lambda synchronously. Block until the function returns a response or times out.</li>
184+
<li><code class="docutils literal notranslate"><span class="pre">Event</span></code> - Invoke the Lambda asynchronously. The response only includes empty payload.</li>
185+
</ul>
186+
</li>
187+
<li><em>Payload</em> (<code class="docutils literal notranslate"><span class="pre">bytes</span></code>) –
188+
Optional input for the Lambda function to invoke.</li>
189+
<li><em>Qualifier</em> (<code class="docutils literal notranslate"><span class="pre">string</span></code>) –
190+
Optional parameter to specify a Lambda function version if it was not included in the FunctionName field.
191+
If you specify a function version, the API uses the qualified function ARN to invoke a specific Lambda function.</li>
192+
</ul>
193+
</td>
194+
</tr>
195+
<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body"><p class="first last"><p>(<code class="docutils literal notranslate"><span class="pre">dict</span></code>) –
196+
* <em>FunctionError</em> (<code class="docutils literal notranslate"><span class="pre">string</span></code>) –</p>
197+
<blockquote>
198+
<div><p>If present, indicates that an error occurred while executing the Lambda function. If an error occurred,
199+
this field will have one of two values, <code class="docutils literal notranslate"><span class="pre">Handled</span></code> or <code class="docutils literal notranslate"><span class="pre">Unhandled</span></code>. <code class="docutils literal notranslate"><span class="pre">Handled</span></code> errors are errors that are reported by the function
200+
while the <code class="docutils literal notranslate"><span class="pre">Unhandled</span></code> errors are those detected and reported by Greengrass Core.
201+
<code class="docutils literal notranslate"><span class="pre">Unhandled</span></code> errors include out of memory errors and function timeouts. Error details are provided in the Payload.</p>
202+
</div></blockquote>
203+
<ul class="simple">
204+
<li><em>Payload</em> (<code class="docutils literal notranslate"><span class="pre">bytes</span> <span class="pre">or</span> <span class="pre">StreamingBody</span> <span class="pre">object</span></code>) –
205+
It is the result returned by the Lambda function. This is present only if the invocation type is <code class="docutils literal notranslate"><span class="pre">RequestResponse</span></code>.
206+
In the event of a function error this field contains a message describing the error.</li>
207+
</ul>
208+
</p>
209+
</td>
210+
</tr>
211+
</tbody>
212+
</table>
213+
</dd></dl>
166214

167215
</dd></dl>
168216

@@ -199,7 +247,7 @@
199247

200248
<div role="contentinfo">
201249
<p>
202-
&copy; Copyright 2019, Amazon.com.
250+
&copy; Copyright 2020, Amazon.com.
203251

204252
</p>
205253
</div>
@@ -221,7 +269,7 @@
221269
<script type="text/javascript">
222270
var DOCUMENTATION_OPTIONS = {
223271
URL_ROOT:'../',
224-
VERSION:'1.5.0',
272+
VERSION:'1.6.0',
225273
LANGUAGE:'None',
226274
COLLAPSE_INDEX:false,
227275
FILE_SUFFIX:'.html',

docs/_apidoc/greengrasssdk.SecretsManager.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>greengrasssdk.SecretsManager module &mdash; Greengrass Core Python SDK 1.5.0 documentation</title>
11+
<title>greengrasssdk.SecretsManager module &mdash; Greengrass Core Python SDK 1.6.0 documentation</title>
1212

1313

1414

@@ -56,7 +56,7 @@
5656

5757

5858
<div class="version">
59-
1.5.0
59+
1.6.0
6060
</div>
6161

6262

@@ -254,7 +254,7 @@
254254

255255
<div role="contentinfo">
256256
<p>
257-
&copy; Copyright 2019, Amazon.com.
257+
&copy; Copyright 2020, Amazon.com.
258258

259259
</p>
260260
</div>
@@ -276,7 +276,7 @@
276276
<script type="text/javascript">
277277
var DOCUMENTATION_OPTIONS = {
278278
URL_ROOT:'../',
279-
VERSION:'1.5.0',
279+
VERSION:'1.6.0',
280280
LANGUAGE:'None',
281281
COLLAPSE_INDEX:false,
282282
FILE_SUFFIX:'.html',

docs/_apidoc/greengrasssdk.client.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>greengrasssdk.client module &mdash; Greengrass Core Python SDK 1.5.0 documentation</title>
11+
<title>greengrasssdk.client module &mdash; Greengrass Core Python SDK 1.6.0 documentation</title>
1212

1313

1414

@@ -56,7 +56,7 @@
5656

5757

5858
<div class="version">
59-
1.5.0
59+
1.6.0
6060
</div>
6161

6262

@@ -167,7 +167,7 @@
167167

168168
<div role="contentinfo">
169169
<p>
170-
&copy; Copyright 2019, Amazon.com.
170+
&copy; Copyright 2020, Amazon.com.
171171

172172
</p>
173173
</div>
@@ -189,7 +189,7 @@
189189
<script type="text/javascript">
190190
var DOCUMENTATION_OPTIONS = {
191191
URL_ROOT:'../',
192-
VERSION:'1.5.0',
192+
VERSION:'1.6.0',
193193
LANGUAGE:'None',
194194
COLLAPSE_INDEX:false,
195195
FILE_SUFFIX:'.html',

docs/_apidoc/greengrasssdk.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>greengrasssdk package &mdash; Greengrass Core Python SDK 1.5.0 documentation</title>
11+
<title>greengrasssdk package &mdash; Greengrass Core Python SDK 1.6.0 documentation</title>
1212

1313

1414

@@ -56,7 +56,7 @@
5656

5757

5858
<div class="version">
59-
1.5.0
59+
1.6.0
6060
</div>
6161

6262

@@ -166,6 +166,7 @@ <h2>Subpackages<a class="headerlink" href="#subpackages" title="Permalink to thi
166166
<li class="toctree-l3"><a class="reference internal" href="greengrasssdk.stream_manager.exceptions.html">greengrasssdk.stream_manager.exceptions module</a></li>
167167
<li class="toctree-l3"><a class="reference internal" href="greengrasssdk.stream_manager.streammanagerclient.html">greengrasssdk.stream_manager.streammanagerclient module</a></li>
168168
<li class="toctree-l3"><a class="reference internal" href="greengrasssdk.stream_manager.util.html">greengrasssdk.stream_manager.util module</a></li>
169+
<li class="toctree-l3"><a class="reference internal" href="greengrasssdk.stream_manager.utilinternal.html">greengrasssdk.stream_manager.utilinternal module</a></li>
169170
</ul>
170171
</li>
171172
</ul>
@@ -204,7 +205,7 @@ <h2>Submodules<a class="headerlink" href="#submodules" title="Permalink to this
204205

205206
<div role="contentinfo">
206207
<p>
207-
&copy; Copyright 2019, Amazon.com.
208+
&copy; Copyright 2020, Amazon.com.
208209

209210
</p>
210211
</div>
@@ -226,7 +227,7 @@ <h2>Submodules<a class="headerlink" href="#submodules" title="Permalink to this
226227
<script type="text/javascript">
227228
var DOCUMENTATION_OPTIONS = {
228229
URL_ROOT:'../',
229-
VERSION:'1.5.0',
230+
VERSION:'1.6.0',
230231
LANGUAGE:'None',
231232
COLLAPSE_INDEX:false,
232233
FILE_SUFFIX:'.html',

0 commit comments

Comments
 (0)