aws-sdk-iot 1.55.0 → 1.60.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 16b8ccb716f5a53cdf0f013fdaf4a09d59da2d5902806a8ff687f573dda576c5
4
- data.tar.gz: '03634198ecb61beeffc0df618f74f0c8f19f5a399d4cbcbc50444614f976901f'
3
+ metadata.gz: 776f23406e1409292b2e9acd105288a7c9d9d4e7b47e7e347509b499302b8ec6
4
+ data.tar.gz: 570efe63fb2356ea0fe385a439ca216628da15cab9c3d1507f46b6af723df4aa
5
5
  SHA512:
6
- metadata.gz: 7b3ea90abb67abd0967523aef15fb651c44086cfe3bbc7b878ff70000c62d55751469b7c1fb48a9f8569374292f7c7054a1151a7248bbf7a789092007f977855
7
- data.tar.gz: 628bf676fc8c3f32d9b38bc63fb0bcef5b59d0f785464c383920056042bd67b6d9f90de8cef197936d0d8f57e508a11fa8c3d81a3a74ae37d92d2c2b2cecd352
6
+ metadata.gz: 405418302ae30a6607dc926fb1b9739ccddc708e9aacf56ad249fb538d9df73aaee1d2305e022f6e3a313d357c51a61422091649c35838f6c2957f2134ddff54
7
+ data.tar.gz: b00c6a971f42168b716caa9147c159d2d6e7496347678461e87799f9317fb004e1d5e45c899364389b90b9d51aac527f500a55d0079ce15ced7c2b8a08729bec
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  require 'aws-sdk-core'
11
12
  require 'aws-sigv4'
12
13
 
@@ -44,9 +45,9 @@ require_relative 'aws-sdk-iot/customizations'
44
45
  #
45
46
  # See {Errors} for more information.
46
47
  #
47
- # @service
48
+ # @!group service
48
49
  module Aws::IoT
49
50
 
50
- GEM_VERSION = '1.55.0'
51
+ GEM_VERSION = '1.60.0'
51
52
 
52
53
  end
@@ -85,13 +85,28 @@ module Aws::IoT
85
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
86
86
  # credentials.
87
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
88
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
89
103
  # from an EC2 IMDS on an EC2 instance.
90
104
  #
91
- # * `Aws::SharedCredentials` - Used for loading credentials from a
92
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
93
107
  #
94
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
95
110
  #
96
111
  # When `:credentials` are not configured directly, the following
97
112
  # locations will be searched for credentials:
@@ -101,10 +116,10 @@ module Aws::IoT
101
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
102
117
  # * `~/.aws/credentials`
103
118
  # * `~/.aws/config`
104
- # * EC2 IMDS instance profile - When used by default, the timeouts are
105
- # very aggressive. Construct and pass an instance of
106
- # `Aws::InstanceProfileCredentails` to enable retries and extended
107
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
108
123
  #
109
124
  # @option options [required, String] :region
110
125
  # The AWS region to connect to. The configured `:region` is
@@ -433,6 +448,19 @@ module Aws::IoT
433
448
  # An optional comment string describing why the job was associated with
434
449
  # the targets.
435
450
  #
451
+ # @option params [String] :namespace_id
452
+ # The namespace used to indicate that a job is a customer-managed job.
453
+ #
454
+ # When you specify a value for this parameter, AWS IoT Core sends jobs
455
+ # notifications to MQTT topics that contain the value in the following
456
+ # format.
457
+ #
458
+ # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
459
+ #
460
+ # <note markdown="1"> The `namespaceId` feature is in public preview.
461
+ #
462
+ # </note>
463
+ #
436
464
  # @return [Types::AssociateTargetsWithJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
437
465
  #
438
466
  # * {Types::AssociateTargetsWithJobResponse#job_arn #job_arn} => String
@@ -445,6 +473,7 @@ module Aws::IoT
445
473
  # targets: ["TargetArn"], # required
446
474
  # job_id: "JobId", # required
447
475
  # comment: "Comment",
476
+ # namespace_id: "NamespaceId",
448
477
  # })
449
478
  #
450
479
  # @example Response structure
@@ -1332,6 +1361,19 @@ module Aws::IoT
1332
1361
  # @option params [Array<Types::Tag>] :tags
1333
1362
  # Metadata which can be used to manage the job.
1334
1363
  #
1364
+ # @option params [String] :namespace_id
1365
+ # The namespace used to indicate that a job is a customer-managed job.
1366
+ #
1367
+ # When you specify a value for this parameter, AWS IoT Core sends jobs
1368
+ # notifications to MQTT topics that contain the value in the following
1369
+ # format.
1370
+ #
1371
+ # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
1372
+ #
1373
+ # <note markdown="1"> The `namespaceId` feature is in public preview.
1374
+ #
1375
+ # </note>
1376
+ #
1335
1377
  # @return [Types::CreateJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1336
1378
  #
1337
1379
  # * {Types::CreateJobResponse#job_arn #job_arn} => String
@@ -1381,6 +1423,7 @@ module Aws::IoT
1381
1423
  # value: "TagValue",
1382
1424
  # },
1383
1425
  # ],
1426
+ # namespace_id: "NamespaceId",
1384
1427
  # })
1385
1428
  #
1386
1429
  # @example Response structure
@@ -2086,13 +2129,13 @@ module Aws::IoT
2086
2129
  # (thing) violates a behavior.
2087
2130
  #
2088
2131
  # @option params [Array<String>] :additional_metrics_to_retain
2132
+ # *Please use CreateSecurityProfileRequest$additionalMetricsToRetainV2
2133
+ # instead.*
2134
+ #
2089
2135
  # A list of metrics whose data is retained (stored). By default, data is
2090
2136
  # retained for any metric used in the profile's `behaviors`, but it is
2091
2137
  # also retained for any metric specified here.
2092
2138
  #
2093
- # **Note:** This API field is deprecated. Please use
2094
- # CreateSecurityProfileRequest$additionalMetricsToRetainV2 instead.
2095
- #
2096
2139
  # @option params [Array<Types::MetricToRetain>] :additional_metrics_to_retain_v2
2097
2140
  # A list of metrics whose data is retained (stored). By default, data is
2098
2141
  # retained for any metric used in the profile's `behaviors`, but it is
@@ -2572,6 +2615,21 @@ module Aws::IoT
2572
2615
  # state_machine_name: "StateMachineName", # required
2573
2616
  # role_arn: "AwsArn", # required
2574
2617
  # },
2618
+ # timestream: {
2619
+ # role_arn: "AwsArn", # required
2620
+ # database_name: "TimestreamDatabaseName", # required
2621
+ # table_name: "TimestreamTableName", # required
2622
+ # dimensions: [ # required
2623
+ # {
2624
+ # name: "TimestreamDimensionName", # required
2625
+ # value: "TimestreamDimensionValue", # required
2626
+ # },
2627
+ # ],
2628
+ # timestamp: {
2629
+ # value: "TimestreamTimestampValue", # required
2630
+ # unit: "TimestreamTimestampUnit", # required
2631
+ # },
2632
+ # },
2575
2633
  # http: {
2576
2634
  # url: "Url", # required
2577
2635
  # confirmation_url: "Url",
@@ -2716,6 +2774,21 @@ module Aws::IoT
2716
2774
  # state_machine_name: "StateMachineName", # required
2717
2775
  # role_arn: "AwsArn", # required
2718
2776
  # },
2777
+ # timestream: {
2778
+ # role_arn: "AwsArn", # required
2779
+ # database_name: "TimestreamDatabaseName", # required
2780
+ # table_name: "TimestreamTableName", # required
2781
+ # dimensions: [ # required
2782
+ # {
2783
+ # name: "TimestreamDimensionName", # required
2784
+ # value: "TimestreamDimensionValue", # required
2785
+ # },
2786
+ # ],
2787
+ # timestamp: {
2788
+ # value: "TimestreamTimestampValue", # required
2789
+ # unit: "TimestreamTimestampUnit", # required
2790
+ # },
2791
+ # },
2719
2792
  # http: {
2720
2793
  # url: "Url", # required
2721
2794
  # confirmation_url: "Url",
@@ -3041,6 +3114,19 @@ module Aws::IoT
3041
3114
  #
3042
3115
  # </note>
3043
3116
  #
3117
+ # @option params [String] :namespace_id
3118
+ # The namespace used to indicate that a job is a customer-managed job.
3119
+ #
3120
+ # When you specify a value for this parameter, AWS IoT Core sends jobs
3121
+ # notifications to MQTT topics that contain the value in the following
3122
+ # format.
3123
+ #
3124
+ # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
3125
+ #
3126
+ # <note markdown="1"> The `namespaceId` feature is in public preview.
3127
+ #
3128
+ # </note>
3129
+ #
3044
3130
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3045
3131
  #
3046
3132
  # @example Request syntax with placeholder values
@@ -3048,6 +3134,7 @@ module Aws::IoT
3048
3134
  # resp = client.delete_job({
3049
3135
  # job_id: "JobId", # required
3050
3136
  # force: false,
3137
+ # namespace_id: "NamespaceId",
3051
3138
  # })
3052
3139
  #
3053
3140
  # @overload delete_job(params = {})
@@ -3087,6 +3174,19 @@ module Aws::IoT
3087
3174
  #
3088
3175
  # </note>
3089
3176
  #
3177
+ # @option params [String] :namespace_id
3178
+ # The namespace used to indicate that a job is a customer-managed job.
3179
+ #
3180
+ # When you specify a value for this parameter, AWS IoT Core sends jobs
3181
+ # notifications to MQTT topics that contain the value in the following
3182
+ # format.
3183
+ #
3184
+ # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
3185
+ #
3186
+ # <note markdown="1"> The `namespaceId` feature is in public preview.
3187
+ #
3188
+ # </note>
3189
+ #
3090
3190
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3091
3191
  #
3092
3192
  # @example Request syntax with placeholder values
@@ -3096,6 +3196,7 @@ module Aws::IoT
3096
3196
  # thing_name: "ThingName", # required
3097
3197
  # execution_number: 1, # required
3098
3198
  # force: false,
3199
+ # namespace_id: "NamespaceId",
3099
3200
  # })
3100
3201
  #
3101
3202
  # @overload delete_job_execution(params = {})
@@ -4029,6 +4130,7 @@ module Aws::IoT
4029
4130
  # * {Types::DescribeDomainConfigurationResponse#domain_configuration_status #domain_configuration_status} => String
4030
4131
  # * {Types::DescribeDomainConfigurationResponse#service_type #service_type} => String
4031
4132
  # * {Types::DescribeDomainConfigurationResponse#domain_type #domain_type} => String
4133
+ # * {Types::DescribeDomainConfigurationResponse#last_status_change_date #last_status_change_date} => Time
4032
4134
  #
4033
4135
  # @example Request syntax with placeholder values
4034
4136
  #
@@ -4050,6 +4152,7 @@ module Aws::IoT
4050
4152
  # resp.domain_configuration_status #=> String, one of "ENABLED", "DISABLED"
4051
4153
  # resp.service_type #=> String, one of "DATA", "CREDENTIAL_PROVIDER", "JOBS"
4052
4154
  # resp.domain_type #=> String, one of "ENDPOINT", "AWS_MANAGED", "CUSTOMER_MANAGED"
4155
+ # resp.last_status_change_date #=> Time
4053
4156
  #
4054
4157
  # @overload describe_domain_configuration(params = {})
4055
4158
  # @param [Hash] params ({})
@@ -4215,6 +4318,7 @@ module Aws::IoT
4215
4318
  # resp.job.job_process_details.number_of_removed_things #=> Integer
4216
4319
  # resp.job.job_process_details.number_of_timed_out_things #=> Integer
4217
4320
  # resp.job.timeout_config.in_progress_timeout_in_minutes #=> Integer
4321
+ # resp.job.namespace_id #=> String
4218
4322
  #
4219
4323
  # @overload describe_job(params = {})
4220
4324
  # @param [Hash] params ({})
@@ -5434,6 +5538,14 @@ module Aws::IoT
5434
5538
  # resp.rule.actions[0].step_functions.execution_name_prefix #=> String
5435
5539
  # resp.rule.actions[0].step_functions.state_machine_name #=> String
5436
5540
  # resp.rule.actions[0].step_functions.role_arn #=> String
5541
+ # resp.rule.actions[0].timestream.role_arn #=> String
5542
+ # resp.rule.actions[0].timestream.database_name #=> String
5543
+ # resp.rule.actions[0].timestream.table_name #=> String
5544
+ # resp.rule.actions[0].timestream.dimensions #=> Array
5545
+ # resp.rule.actions[0].timestream.dimensions[0].name #=> String
5546
+ # resp.rule.actions[0].timestream.dimensions[0].value #=> String
5547
+ # resp.rule.actions[0].timestream.timestamp.value #=> String
5548
+ # resp.rule.actions[0].timestream.timestamp.unit #=> String
5437
5549
  # resp.rule.actions[0].http.url #=> String
5438
5550
  # resp.rule.actions[0].http.confirmation_url #=> String
5439
5551
  # resp.rule.actions[0].http.headers #=> Array
@@ -5518,6 +5630,14 @@ module Aws::IoT
5518
5630
  # resp.rule.error_action.step_functions.execution_name_prefix #=> String
5519
5631
  # resp.rule.error_action.step_functions.state_machine_name #=> String
5520
5632
  # resp.rule.error_action.step_functions.role_arn #=> String
5633
+ # resp.rule.error_action.timestream.role_arn #=> String
5634
+ # resp.rule.error_action.timestream.database_name #=> String
5635
+ # resp.rule.error_action.timestream.table_name #=> String
5636
+ # resp.rule.error_action.timestream.dimensions #=> Array
5637
+ # resp.rule.error_action.timestream.dimensions[0].name #=> String
5638
+ # resp.rule.error_action.timestream.dimensions[0].value #=> String
5639
+ # resp.rule.error_action.timestream.timestamp.value #=> String
5640
+ # resp.rule.error_action.timestream.timestamp.unit #=> String
5521
5641
  # resp.rule.error_action.http.url #=> String
5522
5642
  # resp.rule.error_action.http.confirmation_url #=> String
5523
5643
  # resp.rule.error_action.http.headers #=> Array
@@ -5703,7 +5823,7 @@ module Aws::IoT
5703
5823
 
5704
5824
  # Lists the findings (results) of a Device Defender audit or of the
5705
5825
  # audits performed during a specified time period. (Findings are
5706
- # retained for 180 days.)
5826
+ # retained for 90 days.)
5707
5827
  #
5708
5828
  # @option params [String] :task_id
5709
5829
  # A filter to limit results to the audit with the specified ID. You must
@@ -6021,7 +6141,7 @@ module Aws::IoT
6021
6141
  #
6022
6142
  # @option params [required, Time,DateTime,Date,Integer,String] :start_time
6023
6143
  # The beginning of the time period. Audit information is retained for a
6024
- # limited time (180 days). Requesting a start time prior to what is
6144
+ # limited time (90 days). Requesting a start time prior to what is
6025
6145
  # retained results in an "InvalidRequestException".
6026
6146
  #
6027
6147
  # @option params [required, Time,DateTime,Date,Integer,String] :end_time
@@ -6476,6 +6596,19 @@ module Aws::IoT
6476
6596
  # An optional filter that lets you search for jobs that have the
6477
6597
  # specified status.
6478
6598
  #
6599
+ # @option params [String] :namespace_id
6600
+ # The namespace used to indicate that a job is a customer-managed job.
6601
+ #
6602
+ # When you specify a value for this parameter, AWS IoT Core sends jobs
6603
+ # notifications to MQTT topics that contain the value in the following
6604
+ # format.
6605
+ #
6606
+ # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
6607
+ #
6608
+ # <note markdown="1"> The `namespaceId` feature is in public preview.
6609
+ #
6610
+ # </note>
6611
+ #
6479
6612
  # @option params [Integer] :max_results
6480
6613
  # The maximum number of results to be returned per request.
6481
6614
  #
@@ -6494,6 +6627,7 @@ module Aws::IoT
6494
6627
  # resp = client.list_job_executions_for_thing({
6495
6628
  # thing_name: "ThingName", # required
6496
6629
  # status: "QUEUED", # accepts QUEUED, IN_PROGRESS, SUCCEEDED, FAILED, TIMED_OUT, REJECTED, REMOVED, CANCELED
6630
+ # namespace_id: "NamespaceId",
6497
6631
  # max_results: 1,
6498
6632
  # next_token: "NextToken",
6499
6633
  # })
@@ -6544,6 +6678,19 @@ module Aws::IoT
6544
6678
  # A filter that limits the returned jobs to those for the specified
6545
6679
  # group.
6546
6680
  #
6681
+ # @option params [String] :namespace_id
6682
+ # The namespace used to indicate that a job is a customer-managed job.
6683
+ #
6684
+ # When you specify a value for this parameter, AWS IoT Core sends jobs
6685
+ # notifications to MQTT topics that contain the value in the following
6686
+ # format.
6687
+ #
6688
+ # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
6689
+ #
6690
+ # <note markdown="1"> The `namespaceId` feature is in public preview.
6691
+ #
6692
+ # </note>
6693
+ #
6547
6694
  # @return [Types::ListJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6548
6695
  #
6549
6696
  # * {Types::ListJobsResponse#jobs #jobs} => Array&lt;Types::JobSummary&gt;
@@ -6560,6 +6707,7 @@ module Aws::IoT
6560
6707
  # next_token: "NextToken",
6561
6708
  # thing_group_name: "ThingGroupName",
6562
6709
  # thing_group_id: "ThingGroupId",
6710
+ # namespace_id: "NamespaceId",
6563
6711
  # })
6564
6712
  #
6565
6713
  # @example Response structure
@@ -8390,6 +8538,21 @@ module Aws::IoT
8390
8538
  # state_machine_name: "StateMachineName", # required
8391
8539
  # role_arn: "AwsArn", # required
8392
8540
  # },
8541
+ # timestream: {
8542
+ # role_arn: "AwsArn", # required
8543
+ # database_name: "TimestreamDatabaseName", # required
8544
+ # table_name: "TimestreamTableName", # required
8545
+ # dimensions: [ # required
8546
+ # {
8547
+ # name: "TimestreamDimensionName", # required
8548
+ # value: "TimestreamDimensionValue", # required
8549
+ # },
8550
+ # ],
8551
+ # timestamp: {
8552
+ # value: "TimestreamTimestampValue", # required
8553
+ # unit: "TimestreamTimestampUnit", # required
8554
+ # },
8555
+ # },
8393
8556
  # http: {
8394
8557
  # url: "Url", # required
8395
8558
  # confirmation_url: "Url",
@@ -8534,6 +8697,21 @@ module Aws::IoT
8534
8697
  # state_machine_name: "StateMachineName", # required
8535
8698
  # role_arn: "AwsArn", # required
8536
8699
  # },
8700
+ # timestream: {
8701
+ # role_arn: "AwsArn", # required
8702
+ # database_name: "TimestreamDatabaseName", # required
8703
+ # table_name: "TimestreamTableName", # required
8704
+ # dimensions: [ # required
8705
+ # {
8706
+ # name: "TimestreamDimensionName", # required
8707
+ # value: "TimestreamDimensionValue", # required
8708
+ # },
8709
+ # ],
8710
+ # timestamp: {
8711
+ # value: "TimestreamTimestampValue", # required
8712
+ # unit: "TimestreamTimestampUnit", # required
8713
+ # },
8714
+ # },
8537
8715
  # http: {
8538
8716
  # url: "Url", # required
8539
8717
  # confirmation_url: "Url",
@@ -9690,6 +9868,19 @@ module Aws::IoT
9690
9868
  # terminal state before the time expires, it will be automatically set
9691
9869
  # to `TIMED_OUT`.
9692
9870
  #
9871
+ # @option params [String] :namespace_id
9872
+ # The namespace used to indicate that a job is a customer-managed job.
9873
+ #
9874
+ # When you specify a value for this parameter, AWS IoT Core sends jobs
9875
+ # notifications to MQTT topics that contain the value in the following
9876
+ # format.
9877
+ #
9878
+ # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
9879
+ #
9880
+ # <note markdown="1"> The `namespaceId` feature is in public preview.
9881
+ #
9882
+ # </note>
9883
+ #
9693
9884
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
9694
9885
  #
9695
9886
  # @example Request syntax with placeholder values
@@ -9725,6 +9916,7 @@ module Aws::IoT
9725
9916
  # timeout_config: {
9726
9917
  # in_progress_timeout_in_minutes: 1,
9727
9918
  # },
9919
+ # namespace_id: "NamespaceId",
9728
9920
  # })
9729
9921
  #
9730
9922
  # @overload update_job(params = {})
@@ -9948,13 +10140,13 @@ module Aws::IoT
9948
10140
  # Where the alerts are sent. (Alerts are always sent to the console.)
9949
10141
  #
9950
10142
  # @option params [Array<String>] :additional_metrics_to_retain
10143
+ # *Please use UpdateSecurityProfileRequest$additionalMetricsToRetainV2
10144
+ # instead.*
10145
+ #
9951
10146
  # A list of metrics whose data is retained (stored). By default, data is
9952
10147
  # retained for any metric used in the profile's `behaviors`, but it is
9953
10148
  # also retained for any metric specified here.
9954
10149
  #
9955
- # **Note:** This API field is deprecated. Please use
9956
- # UpdateSecurityProfileRequest$additionalMetricsToRetainV2 instead.
9957
- #
9958
10150
  # @option params [Array<Types::MetricToRetain>] :additional_metrics_to_retain_v2
9959
10151
  # A list of metrics whose data is retained (stored). By default, data is
9960
10152
  # retained for any metric used in the profile's behaviors, but it is
@@ -10392,7 +10584,7 @@ module Aws::IoT
10392
10584
  params: params,
10393
10585
  config: config)
10394
10586
  context[:gem_name] = 'aws-sdk-iot'
10395
- context[:gem_version] = '1.55.0'
10587
+ context[:gem_version] = '1.60.0'
10396
10588
  Seahorse::Client::Request.new(handlers, context)
10397
10589
  end
10398
10590