add existing things to a Greengrass group

0

We know how to do this via the console as detailed at

https://docs.aws.amazon.com/greengrass/latest/developerguide/device-group.html

and have demoed this for a few, eg. in this video

https://www.youtube.com/watch?v=li3oiabEfD8

but now want to add 100 (later 1000) existing things to a greengrass group.
It is not clear from the API spec what calls to use and I cannot find
it in the guides, blogs, videos, etc.
Would prefer the Python flavor of the API, but at this point I'll take anything.
Thank you.

已提问 5 年前235 查看次数
2 回答
0

Figured it out.
This shows a scenario of 100 sensors to Greengrass.

https://gambitcomm.blogspot.com/2019/10/dynamic-real-time-predictable-testing.html

已回答 5 年前
0

Hi uwegambitcomm,

I am glad you figured it out.

For others that may be running into this issue, Greengrass APIs use versioned resources so it will take several API calls.

You would need to use the following APIs:

GetGroup: https://docs.aws.amazon.com/greengrass/latest/apireference/getgroup-get.html to get the latest version

GetGroupVersion: https://docs.aws.amazon.com/greengrass/latest/apireference/getgroupversion-get.html to get the versioned resources in that group. You will use this to get the device definition version id.

https://docs.aws.amazon.com/greengrass/latest/apireference/getdevicedefinitionversion-get.html - you get the list of devices from the device definition.

https://docs.aws.amazon.com/greengrass/latest/apireference/createdevicedefinitionversion-post.html - you will create a new list of devices using this API and it will return a new device definition id

https://docs.aws.amazon.com/greengrass/latest/apireference/creategroupversion-post.html - you will create a new group version with the new device definition id.

Then you would need to create a deployment using the CreateDeployment api:
https://docs.aws.amazon.com/greengrass/latest/apireference/createdeployment-post.html
This takes the group version id

AWS
Rob
已回答 5 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则