IoT / Client / create_ota_update

create_ota_update#

IoT.Client.create_ota_update(**kwargs)#

Creates an IoT OTA update on a target group of things or groups.

Requires permission to access the CreateOTAUpdate action.

See also: AWS API Documentation

Request Syntax

response = client.create_ota_update(
    otaUpdateId='string',
    description='string',
    targets=[
        'string',
    ],
    protocols=[
        'MQTT'|'HTTP',
    ],
    targetSelection='CONTINUOUS'|'SNAPSHOT',
    awsJobExecutionsRolloutConfig={
        'maximumPerMinute': 123,
        'exponentialRate': {
            'baseRatePerMinute': 123,
            'incrementFactor': 123.0,
            'rateIncreaseCriteria': {
                'numberOfNotifiedThings': 123,
                'numberOfSucceededThings': 123
            }
        }
    },
    awsJobPresignedUrlConfig={
        'expiresInSec': 123
    },
    awsJobAbortConfig={
        'abortCriteriaList': [
            {
                'failureType': 'FAILED'|'REJECTED'|'TIMED_OUT'|'ALL',
                'action': 'CANCEL',
                'thresholdPercentage': 123.0,
                'minNumberOfExecutedThings': 123
            },
        ]
    },
    awsJobTimeoutConfig={
        'inProgressTimeoutInMinutes': 123
    },
    files=[
        {
            'fileName': 'string',
            'fileType': 123,
            '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'
    },
    tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
Parameters:
  • otaUpdateId (string) –

    [REQUIRED]

    The ID of the OTA update to be created.

  • description (string) – The description of the OTA update.

  • targets (list) –

    [REQUIRED]

    The devices targeted to receive OTA updates.

    • (string) –

  • protocols (list) –

    The protocol used to transfer the OTA update image. Valid values are [HTTP], [MQTT], [HTTP, MQTT]. When both HTTP and MQTT are specified, the target device can choose the protocol.

    • (string) –

  • targetSelection (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.

  • awsJobExecutionsRolloutConfig (dict) –

    Configuration for the rollout of OTA updates.

    • maximumPerMinute (integer) –

      The maximum number of OTA update job executions started per minute.

    • exponentialRate (dict) –

      The rate of increase for a job rollout. This parameter allows you to define an exponential rate increase for a job rollout.

      • baseRatePerMinute (integer) – [REQUIRED]

        The minimum number of things that will be notified of a pending job, per minute, at the start of the job rollout. This is the initial rate of the rollout.

      • incrementFactor (float) – [REQUIRED]

        The rate of increase for a job rollout. The number of things notified is multiplied by this factor.

      • rateIncreaseCriteria (dict) – [REQUIRED]

        The criteria to initiate the increase in rate of rollout for a job.

        Amazon Web Services IoT Core supports up to one digit after the decimal (for example, 1.5, but not 1.55).

        • numberOfNotifiedThings (integer) –

          When this number of things have been notified, it will initiate an increase in the rollout rate.

        • numberOfSucceededThings (integer) –

          When this number of things have succeeded in their job execution, it will initiate an increase in the rollout rate.

  • awsJobPresignedUrlConfig (dict) –

    Configuration information for pre-signed URLs.

    • expiresInSec (integer) –

      How long (in seconds) pre-signed URLs are valid. Valid values are 60 - 3600, the default value is 1800 seconds. Pre-signed URLs are generated when a request for the job document is received.

  • awsJobAbortConfig (dict) –

    The criteria that determine when and how a job abort takes place.

    • abortCriteriaList (list) – [REQUIRED]

      The list of criteria that determine when and how to abort the job.

      • (dict) –

        The criteria that determine when and how a job abort takes place.

        • failureType (string) – [REQUIRED]

          The type of job execution failures that can initiate a job abort.

        • action (string) – [REQUIRED]

          The type of job action to take to initiate the job abort.

        • thresholdPercentage (float) – [REQUIRED]

          The minimum percentage of job execution failures that must occur to initiate the job abort.

          Amazon Web Services IoT Core supports up to two digits after the decimal (for example, 10.9 and 10.99, but not 10.999).

        • minNumberOfExecutedThings (integer) – [REQUIRED]

          The minimum number of things which must receive job execution notifications before the job can be aborted.

  • awsJobTimeoutConfig (dict) –

    Specifies the amount of time each device has to finish its execution of the job. A timer is started when the job execution status is set to IN_PROGRESS. If the job execution status is not set to another terminal state before the timer expires, it will be automatically set to TIMED_OUT.

    • inProgressTimeoutInMinutes (integer) –

      Specifies the amount of time, in minutes, this device has to finish execution of this job. The timeout interval can be anywhere between 1 minute and 7 days (1 to 10080 minutes). The in progress timer can’t be updated and will apply to all job executions for the job. Whenever a job execution remains in the IN_PROGRESS status for longer than this interval, the job execution will fail and switch to the terminal TIMED_OUT status.

  • files (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.

      • fileType (integer) –

        An integer value you can include in the job document to allow your devices to identify the type of file received from the cloud.

      • 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. You can use a string as the algorithm name if the target over-the-air (OTA) update devices are able to verify the signature that was generated using the same signature algorithm. For example, FreeRTOS uses SHA256 or SHA1, so you can pass either of them based on which was used for generating the signature.

          • signatureAlgorithm (string) –

            The signature algorithm used to code sign the file. You can use a string as the algorithm name if the target over-the-air (OTA) update devices are able to verify the signature that was generated using the same signature algorithm. For example, FreeRTOS uses ECDSA or RSA, so you can pass either of them based on which was used for generating the signature.

      • attributes (dict) –

        A list of name-attribute pairs. They won’t be sent to devices as a part of the Job document.

        • (string) –

          • (string) –

  • roleArn (string) –

    [REQUIRED]

    The IAM role that grants Amazon Web Services IoT Core access to the Amazon S3, IoT jobs and Amazon Web Services Code Signing resources to create an OTA update job.

  • additionalParameters (dict) –

    A list of additional OTA update parameters, which are name-value pairs. They won’t be sent to devices as a part of the Job document.

    • (string) –

      • (string) –

  • tags (list) –

    Metadata which can be used to manage updates.

    • (dict) –

      A set of key/value pairs that are used to manage the resource.

      • Key (string) – [REQUIRED]

        The tag’s key.

      • Value (string) –

        The tag’s value.

Return type:

dict

Returns:

Response Syntax

{
    'otaUpdateId': 'string',
    'awsIotJobId': 'string',
    'otaUpdateArn': 'string',
    'awsIotJobArn': 'string',
    'otaUpdateStatus': 'CREATE_PENDING'|'CREATE_IN_PROGRESS'|'CREATE_COMPLETE'|'CREATE_FAILED'|'DELETE_IN_PROGRESS'|'DELETE_FAILED'
}

Response Structure

  • (dict) –

    • otaUpdateId (string) –

      The OTA update ID.

    • awsIotJobId (string) –

      The IoT job ID associated with the OTA update.

    • otaUpdateArn (string) –

      The OTA update ARN.

    • awsIotJobArn (string) –

      The IoT job ARN associated with the OTA update.

    • otaUpdateStatus (string) –

      The OTA update status.

Exceptions