2018/08/27 - AWS IoT - 3 updated api methods
Changes Update iot client to latest version
{'awsJobExecutionsRolloutConfig': {'maximumPerMinute': 'integer'}, 'files': {'codeSigning': {'startSigningJobParameter': {'destination': {'s3Destination': {'bucket': 'string', 'prefix': 'string'}}, 'signingProfileName': 'string', 'signingProfileParameter': {'certificateArn': 'string', 'certificatePathOnDevice': 'string', 'platform': 'string'}}}, 'fileLocation': {'s3Location': {'bucket': 'string', 'key': 'string', 'version': 'string'}, 'stream': {'fileId': 'integer', 'streamId': 'string'}}}}
Creates an AWS IoT OTAUpdate on a target group of things or groups.
See also: AWS API Documentation
Request Syntax
client.create_ota_update( otaUpdateId='string', description='string', targets=[ 'string', ], targetSelection='CONTINUOUS'|'SNAPSHOT', awsJobExecutionsRolloutConfig={ 'maximumPerMinute': 123 }, files=[ { 'fileName': 'string', 'fileVersion': 'string', 'fileLocation': { 'stream': { 'streamId': 'string', 'fileId': 123 }, 's3Location': { 'bucket': 'string', 'key': 'string', 'version': 'string' } }, 'codeSigning': { 'awsSignerJobId': 'string', 'startSigningJobParameter': { 'signingProfileParameter': { 'certificateArn': 'string', 'platform': 'string', 'certificatePathOnDevice': 'string' }, 'signingProfileName': 'string', 'destination': { 's3Destination': { 'bucket': 'string', 'prefix': 'string' } } }, 'customCodeSigning': { 'signature': { 'inlineDocument': b'bytes' }, 'certificateChain': { 'certificateName': 'string', 'inlineDocument': 'string' }, 'hashAlgorithm': 'string', 'signatureAlgorithm': 'string' } }, 'attributes': { 'string': 'string' } }, ], roleArn='string', additionalParameters={ 'string': 'string' } )
string
[REQUIRED]
The ID of the OTA update to be created.
string
The description of the OTA update.
list
[REQUIRED]
The targeted devices to receive OTA updates.
(string) --
string
Specifies whether the update will continue to run (CONTINUOUS), or will be complete after all the things specified as targets have completed the update (SNAPSHOT). If continuous, the update may also be run on a thing when a change is detected in a target. For example, an update will run on a thing when the thing is added to a target group, even after the update was completed by all things originally in the group. Valid values: CONTINUOUS | SNAPSHOT.
dict
Configuration for the rollout of OTA updates.
maximumPerMinute (integer) --
The maximum number of OTA update job executions started per minute.
list
[REQUIRED]
The files to be streamed by the OTA update.
(dict) --
Describes a file to be associated with an OTA update.
fileName (string) --
The name of the file.
fileVersion (string) --
The file version.
fileLocation (dict) --
The location of the updated firmware.
stream (dict) --
The stream that contains the OTA update.
streamId (string) --
The stream ID.
fileId (integer) --
The ID of a file associated with a stream.
s3Location (dict) --
The location of the updated firmware in S3.
bucket (string) --
The S3 bucket.
key (string) --
The S3 key.
version (string) --
The S3 bucket version.
codeSigning (dict) --
The code signing method of the file.
awsSignerJobId (string) --
The ID of the AWSSignerJob which was created to sign the file.
startSigningJobParameter (dict) --
Describes the code-signing job.
signingProfileParameter (dict) --
Describes the code-signing profile.
certificateArn (string) --
Certificate ARN.
platform (string) --
The hardware platform of your device.
certificatePathOnDevice (string) --
The location of the code-signing certificate on your device.
signingProfileName (string) --
The code-signing profile name.
destination (dict) --
The location to write the code-signed file.
s3Destination (dict) --
Describes the location in S3 of the updated firmware.
bucket (string) --
The S3 bucket that contains the updated firmware.
prefix (string) --
The S3 prefix.
customCodeSigning (dict) --
A custom method for code signing a file.
signature (dict) --
The signature for the file.
inlineDocument (bytes) --
A base64 encoded binary representation of the code signing signature.
certificateChain (dict) --
The certificate chain.
certificateName (string) --
The name of the certificate.
inlineDocument (string) --
A base64 encoded binary representation of the code signing certificate chain.
hashAlgorithm (string) --
The hash algorithm used to code sign the file.
signatureAlgorithm (string) --
The signature algorithm used to code sign the file.
attributes (dict) --
A list of name/attribute pairs.
(string) --
(string) --
string
[REQUIRED]
The IAM role that allows access to the AWS IoT Jobs service.
dict
A list of additional OTA update parameters which are name-value pairs.
(string) --
(string) --
dict
Response Syntax
{ 'otaUpdateId': 'string', 'awsIotJobId': 'string', 'otaUpdateArn': 'string', 'awsIotJobArn': 'string', 'otaUpdateStatus': 'CREATE_PENDING'|'CREATE_IN_PROGRESS'|'CREATE_COMPLETE'|'CREATE_FAILED' }
Response Structure
(dict) --
otaUpdateId (string) --
The OTA update ID.
awsIotJobId (string) --
The AWS IoT job ID associated with the OTA update.
otaUpdateArn (string) --
The OTA update ARN.
awsIotJobArn (string) --
The AWS IoT job ARN associated with the OTA update.
otaUpdateStatus (string) --
The OTA update status.
{'deleteStream': 'boolean', 'forceDeleteAWSJob': 'boolean'}
Delete an OTA update.
See also: AWS API Documentation
Request Syntax
client.delete_ota_update( otaUpdateId='string', deleteStream=True|False, forceDeleteAWSJob=True|False )
string
[REQUIRED]
The OTA update ID to delete.
boolean
Specifies if the stream associated with an OTA update should be deleted when the OTA update is deleted.
boolean
Specifies if the AWS Job associated with the OTA update should be deleted with the OTA update is deleted.
dict
Response Syntax
{}
Response Structure
(dict) --
{'otaUpdateInfo': {'awsJobExecutionsRolloutConfig': {'maximumPerMinute': 'integer'}, 'otaUpdateFiles': {'codeSigning': {'startSigningJobParameter': {'destination': {'s3Destination': {'bucket': 'string', 'prefix': 'string'}}, 'signingProfileName': 'string', 'signingProfileParameter': {'certificateArn': 'string', 'certificatePathOnDevice': 'string', 'platform': 'string'}}}, 'fileLocation': {'s3Location': {'bucket': 'string', 'key': 'string', 'version': 'string'}, 'stream': {'fileId': 'integer', 'streamId': 'string'}}}}}
Gets an OTA update.
See also: AWS API Documentation
Request Syntax
client.get_ota_update( otaUpdateId='string' )
string
[REQUIRED]
The OTA update ID.
dict
Response Syntax
{ 'otaUpdateInfo': { 'otaUpdateId': 'string', 'otaUpdateArn': 'string', 'creationDate': datetime(2015, 1, 1), 'lastModifiedDate': datetime(2015, 1, 1), 'description': 'string', 'targets': [ 'string', ], 'awsJobExecutionsRolloutConfig': { 'maximumPerMinute': 123 }, 'targetSelection': 'CONTINUOUS'|'SNAPSHOT', 'otaUpdateFiles': [ { 'fileName': 'string', 'fileVersion': 'string', 'fileLocation': { 'stream': { 'streamId': 'string', 'fileId': 123 }, 's3Location': { 'bucket': 'string', 'key': 'string', 'version': 'string' } }, 'codeSigning': { 'awsSignerJobId': 'string', 'startSigningJobParameter': { 'signingProfileParameter': { 'certificateArn': 'string', 'platform': 'string', 'certificatePathOnDevice': 'string' }, 'signingProfileName': 'string', 'destination': { 's3Destination': { 'bucket': 'string', 'prefix': 'string' } } }, 'customCodeSigning': { 'signature': { 'inlineDocument': b'bytes' }, 'certificateChain': { 'certificateName': 'string', 'inlineDocument': 'string' }, 'hashAlgorithm': 'string', 'signatureAlgorithm': 'string' } }, 'attributes': { 'string': 'string' } }, ], 'otaUpdateStatus': 'CREATE_PENDING'|'CREATE_IN_PROGRESS'|'CREATE_COMPLETE'|'CREATE_FAILED', 'awsIotJobId': 'string', 'awsIotJobArn': 'string', 'errorInfo': { 'code': 'string', 'message': 'string' }, 'additionalParameters': { 'string': 'string' } } }
Response Structure
(dict) --
otaUpdateInfo (dict) --
The OTA update info.
otaUpdateId (string) --
The OTA update ID.
otaUpdateArn (string) --
The OTA update ARN.
creationDate (datetime) --
The date when the OTA update was created.
lastModifiedDate (datetime) --
The date when the OTA update was last updated.
description (string) --
A description of the OTA update.
targets (list) --
The targets of the OTA update.
(string) --
awsJobExecutionsRolloutConfig (dict) --
Configuration for the rollout of OTA updates.
maximumPerMinute (integer) --
The maximum number of OTA update job executions started per minute.
targetSelection (string) --
Specifies whether the OTA update will continue to run (CONTINUOUS), or will be complete after all those things specified as targets have completed the OTA update (SNAPSHOT). If continuous, the OTA update may also be run on a thing when a change is detected in a target. For example, an OTA update will run on a thing when the thing is added to a target group, even after the OTA update was completed by all things originally in the group.
otaUpdateFiles (list) --
A list of files associated with the OTA update.
(dict) --
Describes a file to be associated with an OTA update.
fileName (string) --
The name of the file.
fileVersion (string) --
The file version.
fileLocation (dict) --
The location of the updated firmware.
stream (dict) --
The stream that contains the OTA update.
streamId (string) --
The stream ID.
fileId (integer) --
The ID of a file associated with a stream.
s3Location (dict) --
The location of the updated firmware in S3.
bucket (string) --
The S3 bucket.
key (string) --
The S3 key.
version (string) --
The S3 bucket version.
codeSigning (dict) --
The code signing method of the file.
awsSignerJobId (string) --
The ID of the AWSSignerJob which was created to sign the file.
startSigningJobParameter (dict) --
Describes the code-signing job.
signingProfileParameter (dict) --
Describes the code-signing profile.
certificateArn (string) --
Certificate ARN.
platform (string) --
The hardware platform of your device.
certificatePathOnDevice (string) --
The location of the code-signing certificate on your device.
signingProfileName (string) --
The code-signing profile name.
destination (dict) --
The location to write the code-signed file.
s3Destination (dict) --
Describes the location in S3 of the updated firmware.
bucket (string) --
The S3 bucket that contains the updated firmware.
prefix (string) --
The S3 prefix.
customCodeSigning (dict) --
A custom method for code signing a file.
signature (dict) --
The signature for the file.
inlineDocument (bytes) --
A base64 encoded binary representation of the code signing signature.
certificateChain (dict) --
The certificate chain.
certificateName (string) --
The name of the certificate.
inlineDocument (string) --
A base64 encoded binary representation of the code signing certificate chain.
hashAlgorithm (string) --
The hash algorithm used to code sign the file.
signatureAlgorithm (string) --
The signature algorithm used to code sign the file.
attributes (dict) --
A list of name/attribute pairs.
(string) --
(string) --
otaUpdateStatus (string) --
The status of the OTA update.
awsIotJobId (string) --
The AWS IoT job ID associated with the OTA update.
awsIotJobArn (string) --
The AWS IoT job ARN associated with the OTA update.
errorInfo (dict) --
Error information associated with the OTA update.
code (string) --
The error code.
message (string) --
The error message.
additionalParameters (dict) --
A collection of name/value pairs
(string) --
(string) --