Add arns to iot responses (#3634)

Closes #3623
Supersedes #2974
This commit is contained in:
Brian Pandola 2021-01-31 03:02:08 -08:00 committed by GitHub
commit 1037929bf8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View file

@ -67,6 +67,7 @@ class FakeThingType(BaseModel):
"thingTypeId": self.thing_type_id,
"thingTypeProperties": self.thing_type_properties,
"thingTypeMetadata": self.metadata,
"thingTypeArn": self.arn,
}
@ -125,6 +126,7 @@ class FakeThingGroup(BaseModel):
"version": self.version,
"thingGroupProperties": self.thing_group_properties,
"thingGroupMetadata": self.metadata,
"thingGroupArn": self.arn,
}