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.

asked 5 years ago227 views
2 Answers
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

answered 5 years ago
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
answered 5 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions