GreengrassV2 / Client / create_deployment

create_deployment#

GreengrassV2.Client.create_deployment(**kwargs)#

Creates a continuous deployment for a target, which is a Greengrass core device or group of core devices. When you add a new core device to a group of core devices that has a deployment, IoT Greengrass deploys that group’s deployment to the new device.

You can define one deployment for each target. When you create a new deployment for a target that has an existing deployment, you replace the previous deployment. IoT Greengrass applies the new deployment to the target devices.

Every deployment has a revision number that indicates how many deployment revisions you define for a target. Use this operation to create a new revision of an existing deployment.

For more information, see the Create deployments in the IoT Greengrass V2 Developer Guide.

See also: AWS API Documentation

Request Syntax

response = client.create_deployment(
    targetArn='string',
    deploymentName='string',
    components={
        'string': {
            'componentVersion': 'string',
            'configurationUpdate': {
                'merge': 'string',
                'reset': [
                    'string',
                ]
            },
            'runWith': {
                'posixUser': 'string',
                'systemResourceLimits': {
                    'memory': 123,
                    'cpus': 123.0
                },
                'windowsUser': 'string'
            }
        }
    },
    iotJobConfiguration={
        'jobExecutionsRolloutConfig': {
            'exponentialRate': {
                'baseRatePerMinute': 123,
                'incrementFactor': 123.0,
                'rateIncreaseCriteria': {
                    'numberOfNotifiedThings': 123,
                    'numberOfSucceededThings': 123
                }
            },
            'maximumPerMinute': 123
        },
        'abortConfig': {
            'criteriaList': [
                {
                    'failureType': 'FAILED'|'REJECTED'|'TIMED_OUT'|'ALL',
                    'action': 'CANCEL',
                    'thresholdPercentage': 123.0,
                    'minNumberOfExecutedThings': 123
                },
            ]
        },
        'timeoutConfig': {
            'inProgressTimeoutInMinutes': 123
        }
    },
    deploymentPolicies={
        'failureHandlingPolicy': 'ROLLBACK'|'DO_NOTHING',
        'componentUpdatePolicy': {
            'timeoutInSeconds': 123,
            'action': 'NOTIFY_COMPONENTS'|'SKIP_NOTIFY_COMPONENTS'
        },
        'configurationValidationPolicy': {
            'timeoutInSeconds': 123
        }
    },
    parentTargetArn='string',
    tags={
        'string': 'string'
    },
    clientToken='string'
)
Parameters:
  • targetArn (string) –

    [REQUIRED]

    The ARN of the target IoT thing or thing group. When creating a subdeployment, the targetARN can only be a thing group.

  • deploymentName (string) – The name of the deployment.

  • components (dict) –

    The components to deploy. This is a dictionary, where each key is the name of a component, and each key’s value is the version and configuration to deploy for that component.

    • (string) –

      • (dict) –

        Contains information about a component to deploy.

        • componentVersion (string) –

          The version of the component.

        • configurationUpdate (dict) –

          The configuration updates to deploy for the component. You can define reset updates and merge updates. A reset updates the keys that you specify to the default configuration for the component. A merge updates the core device’s component configuration with the keys and values that you specify. The IoT Greengrass Core software applies reset updates before it applies merge updates. For more information, see Update component configurations in the IoT Greengrass V2 Developer Guide.

          • merge (string) –

            A serialized JSON string that contains the configuration object to merge to target devices. The core device merges this configuration with the component’s existing configuration. If this is the first time a component deploys on a device, the core device merges this configuration with the component’s default configuration. This means that the core device keeps it’s existing configuration for keys and values that you don’t specify in this object. For more information, see Merge configuration updates in the IoT Greengrass V2 Developer Guide.

          • reset (list) –

            The list of configuration nodes to reset to default values on target devices. Use JSON pointers to specify each node to reset. JSON pointers start with a forward slash ( /) and use forward slashes to separate the key for each level in the object. For more information, see the JSON pointer specification and Reset configuration updates in the IoT Greengrass V2 Developer Guide.

            • (string) –

        • runWith (dict) –

          The system user and group that the IoT Greengrass Core software uses to run component processes on the core device. If you omit this parameter, the IoT Greengrass Core software uses the system user and group that you configure for the core device. For more information, see Configure the user and group that run components in the IoT Greengrass V2 Developer Guide.

          • posixUser (string) –

            The POSIX system user and, optionally, group to use to run this component on Linux core devices. The user, and group if specified, must exist on each Linux core device. Specify the user and group separated by a colon ( :) in the following format: user:group. The group is optional. If you don’t specify a group, the IoT Greengrass Core software uses the primary user for the group.

            If you omit this parameter, the IoT Greengrass Core software uses the default system user and group that you configure on the Greengrass nucleus component. For more information, see Configure the user and group that run components.

          • systemResourceLimits (dict) –

            The system resource limits to apply to this component’s process on the core device. IoT Greengrass currently supports this feature on only Linux core devices.

            If you omit this parameter, the IoT Greengrass Core software uses the default system resource limits that you configure on the Greengrass nucleus component. For more information, see Configure system resource limits for components.

            • memory (integer) –

              The maximum amount of RAM, expressed in kilobytes, that a component’s processes can use on the core device.

            • cpus (float) –

              The maximum amount of CPU time that a component’s processes can use on the core device. A core device’s total CPU time is equivalent to the device’s number of CPU cores. For example, on a core device with 4 CPU cores, you can set this value to 2 to limit the component’s processes to 50 percent usage of each CPU core. On a device with 1 CPU core, you can set this value to 0.25 to limit the component’s processes to 25 percent usage of the CPU. If you set this value to a number greater than the number of CPU cores, the IoT Greengrass Core software doesn’t limit the component’s CPU usage.

          • windowsUser (string) –

            The Windows user to use to run this component on Windows core devices. The user must exist on each Windows core device, and its name and password must be in the LocalSystem account’s Credentials Manager instance.

            If you omit this parameter, the IoT Greengrass Core software uses the default Windows user that you configure on the Greengrass nucleus component. For more information, see Configure the user and group that run components.

  • iotJobConfiguration (dict) –

    The job configuration for the deployment configuration. The job configuration specifies the rollout, timeout, and stop configurations for the deployment configuration.

    • jobExecutionsRolloutConfig (dict) –

      The rollout configuration for the job. This configuration defines the rate at which the job rolls out to the fleet of target devices.

      • exponentialRate (dict) –

        The exponential rate to increase the job rollout rate.

        • baseRatePerMinute (integer) – [REQUIRED]

          The minimum number of devices that receive a pending job notification, per minute, when the job starts. This parameter defines the initial rollout rate of the job.

        • incrementFactor (float) – [REQUIRED]

          The exponential factor to increase the rollout rate for the job.

          This parameter supports up to one digit after the decimal (for example, you can specify 1.5, but not 1.55).

        • rateIncreaseCriteria (dict) – [REQUIRED]

          The criteria to increase the rollout rate for the job.

          • numberOfNotifiedThings (integer) –

            The number of devices to receive the job notification before the rollout rate increases.

          • numberOfSucceededThings (integer) –

            The number of devices to successfully run the configuration job before the rollout rate increases.

      • maximumPerMinute (integer) –

        The maximum number of devices that receive a pending job notification, per minute.

    • abortConfig (dict) –

      The stop configuration for the job. This configuration defines when and how to stop a job rollout.

      • criteriaList (list) – [REQUIRED]

        The list of criteria that define when and how to cancel the configuration deployment.

        • (dict) –

          Contains criteria that define when and how to cancel a job.

          The deployment stops if the following conditions are true:

          • The number of things that receive the deployment exceeds the minNumberOfExecutedThings.

          • The percentage of failures with type failureType exceeds the thresholdPercentage.

          • failureType (string) – [REQUIRED]

            The type of job deployment failure that can cancel a job.

          • action (string) – [REQUIRED]

            The action to perform when the criteria are met.

          • thresholdPercentage (float) – [REQUIRED]

            The minimum percentage of failureType failures that occur before the job can cancel.

            This parameter supports up to two digits after the decimal (for example, you can specify 10.9 or 10.99, but not 10.999).

          • minNumberOfExecutedThings (integer) – [REQUIRED]

            The minimum number of things that receive the configuration before the job can cancel.

    • timeoutConfig (dict) –

      The timeout configuration for the job. This configuration defines the amount of time each device has to complete the job.

      • inProgressTimeoutInMinutes (integer) –

        The amount of time, in minutes, that devices have to complete the job. The timer starts when the job status is set to IN_PROGRESS. If the job status doesn’t change to a terminal state before the time expires, then the job status is set to TIMED_OUT.

        The timeout interval must be between 1 minute and 7 days (10080 minutes).

  • deploymentPolicies (dict) –

    The deployment policies for the deployment. These policies define how the deployment updates components and handles failure.

    • failureHandlingPolicy (string) –

      The failure handling policy for the configuration deployment. This policy defines what to do if the deployment fails.

      Default: ROLLBACK

    • componentUpdatePolicy (dict) –

      The component update policy for the configuration deployment. This policy defines when it’s safe to deploy the configuration to devices.

      • timeoutInSeconds (integer) –

        The amount of time in seconds that each component on a device has to report that it’s safe to update. If the component waits for longer than this timeout, then the deployment proceeds on the device.

        Default: 60

      • action (string) –

        Whether or not to notify components and wait for components to become safe to update. Choose from the following options:

        • NOTIFY_COMPONENTS – The deployment notifies each component before it stops and updates that component. Components can use the SubscribeToComponentUpdates IPC operation to receive these notifications. Then, components can respond with the DeferComponentUpdate IPC operation. For more information, see Create deployments in the IoT Greengrass V2 Developer Guide.

        • SKIP_NOTIFY_COMPONENTS – The deployment doesn’t notify components or wait for them to be safe to update.

        Default: NOTIFY_COMPONENTS

    • configurationValidationPolicy (dict) –

      The configuration validation policy for the configuration deployment. This policy defines how long each component has to validate its configure updates.

      • timeoutInSeconds (integer) –

        The amount of time in seconds that a component can validate its configuration updates. If the validation time exceeds this timeout, then the deployment proceeds for the device.

        Default: 30

  • parentTargetArn (string) – The parent deployment’s target ARN within a subdeployment.

  • tags (dict) –

    A list of key-value pairs that contain metadata for the resource. For more information, see Tag your resources in the IoT Greengrass V2 Developer Guide.

    • (string) –

      • (string) –

  • clientToken (string) –

    A unique, case-sensitive identifier that you can provide to ensure that the request is idempotent. Idempotency means that the request is successfully processed only once, even if you send the request multiple times. When a request succeeds, and you specify the same client token for subsequent successful requests, the IoT Greengrass V2 service returns the successful response that it caches from the previous request. IoT Greengrass V2 caches successful responses for idempotent requests for up to 8 hours.

    This field is autopopulated if not provided.

Return type:

dict

Returns:

Response Syntax

{
    'deploymentId': 'string',
    'iotJobId': 'string',
    'iotJobArn': 'string'
}

Response Structure

  • (dict) –

    • deploymentId (string) –

      The ID of the deployment.

    • iotJobId (string) –

      The ID of the IoT job that applies the deployment to target devices.

    • iotJobArn (string) –

      The ARN of the IoT job that applies the deployment to target devices.

Exceptions