aws-sdk-iot 1.80.0 → 1.111.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -49,6 +49,7 @@ module Aws::IoT
49
49
  # * {ResourceAlreadyExistsException}
50
50
  # * {ResourceNotFoundException}
51
51
  # * {ResourceRegistrationFailureException}
52
+ # * {ServiceQuotaExceededException}
52
53
  # * {ServiceUnavailableException}
53
54
  # * {SqlParseException}
54
55
  # * {TaskAlreadyExistsException}
@@ -56,6 +57,7 @@ module Aws::IoT
56
57
  # * {TransferAlreadyCompletedException}
57
58
  # * {TransferConflictException}
58
59
  # * {UnauthorizedException}
60
+ # * {ValidationException}
59
61
  # * {VersionConflictException}
60
62
  # * {VersionsLimitExceededException}
61
63
  #
@@ -123,6 +125,11 @@ module Aws::IoT
123
125
  def message
124
126
  @message || @data[:message]
125
127
  end
128
+
129
+ # @return [String]
130
+ def resource_id
131
+ @data[:resource_id]
132
+ end
126
133
  end
127
134
 
128
135
  class ConflictingResourceUpdateException < ServiceError
@@ -405,6 +412,21 @@ module Aws::IoT
405
412
  end
406
413
  end
407
414
 
415
+ class ServiceQuotaExceededException < ServiceError
416
+
417
+ # @param [Seahorse::Client::RequestContext] context
418
+ # @param [String] message
419
+ # @param [Aws::IoT::Types::ServiceQuotaExceededException] data
420
+ def initialize(context, message, data = Aws::EmptyStructure.new)
421
+ super(context, message, data)
422
+ end
423
+
424
+ # @return [String]
425
+ def message
426
+ @message || @data[:message]
427
+ end
428
+ end
429
+
408
430
  class ServiceUnavailableException < ServiceError
409
431
 
410
432
  # @param [Seahorse::Client::RequestContext] context
@@ -510,6 +532,21 @@ module Aws::IoT
510
532
  end
511
533
  end
512
534
 
535
+ class ValidationException < ServiceError
536
+
537
+ # @param [Seahorse::Client::RequestContext] context
538
+ # @param [String] message
539
+ # @param [Aws::IoT::Types::ValidationException] data
540
+ def initialize(context, message, data = Aws::EmptyStructure.new)
541
+ super(context, message, data)
542
+ end
543
+
544
+ # @return [String]
545
+ def message
546
+ @message || @data[:message]
547
+ end
548
+ end
549
+
513
550
  class VersionConflictException < ServiceError
514
551
 
515
552
  # @param [Seahorse::Client::RequestContext] context
@@ -0,0 +1,568 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+
11
+ module Aws::IoT
12
+ module Plugins
13
+ class Endpoints < Seahorse::Client::Plugin
14
+ option(
15
+ :endpoint_provider,
16
+ doc_type: 'Aws::IoT::EndpointProvider',
17
+ docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
+ 'object that responds to `#resolve_endpoint(parameters)` '\
19
+ 'where `parameters` is a Struct similar to '\
20
+ '`Aws::IoT::EndpointParameters`'
21
+ ) do |cfg|
22
+ Aws::IoT::EndpointProvider.new
23
+ end
24
+
25
+ # @api private
26
+ class Handler < Seahorse::Client::Handler
27
+ def call(context)
28
+ # If endpoint was discovered, do not resolve or apply the endpoint.
29
+ unless context[:discovered_endpoint]
30
+ params = parameters_for_operation(context)
31
+ endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
+
33
+ context.http_request.endpoint = endpoint.url
34
+ apply_endpoint_headers(context, endpoint.headers)
35
+ end
36
+
37
+ context[:endpoint_params] = params
38
+ context[:auth_scheme] =
39
+ Aws::Endpoints.resolve_auth_scheme(context, endpoint)
40
+
41
+ @handler.call(context)
42
+ end
43
+
44
+ private
45
+
46
+ def apply_endpoint_headers(context, headers)
47
+ headers.each do |key, values|
48
+ value = values
49
+ .compact
50
+ .map { |s| Seahorse::Util.escape_header_list_string(s.to_s) }
51
+ .join(',')
52
+
53
+ context.http_request.headers[key] = value
54
+ end
55
+ end
56
+
57
+ def parameters_for_operation(context)
58
+ case context.operation_name
59
+ when :accept_certificate_transfer
60
+ Aws::IoT::Endpoints::AcceptCertificateTransfer.build(context)
61
+ when :add_thing_to_billing_group
62
+ Aws::IoT::Endpoints::AddThingToBillingGroup.build(context)
63
+ when :add_thing_to_thing_group
64
+ Aws::IoT::Endpoints::AddThingToThingGroup.build(context)
65
+ when :associate_targets_with_job
66
+ Aws::IoT::Endpoints::AssociateTargetsWithJob.build(context)
67
+ when :attach_policy
68
+ Aws::IoT::Endpoints::AttachPolicy.build(context)
69
+ when :attach_principal_policy
70
+ Aws::IoT::Endpoints::AttachPrincipalPolicy.build(context)
71
+ when :attach_security_profile
72
+ Aws::IoT::Endpoints::AttachSecurityProfile.build(context)
73
+ when :attach_thing_principal
74
+ Aws::IoT::Endpoints::AttachThingPrincipal.build(context)
75
+ when :cancel_audit_mitigation_actions_task
76
+ Aws::IoT::Endpoints::CancelAuditMitigationActionsTask.build(context)
77
+ when :cancel_audit_task
78
+ Aws::IoT::Endpoints::CancelAuditTask.build(context)
79
+ when :cancel_certificate_transfer
80
+ Aws::IoT::Endpoints::CancelCertificateTransfer.build(context)
81
+ when :cancel_detect_mitigation_actions_task
82
+ Aws::IoT::Endpoints::CancelDetectMitigationActionsTask.build(context)
83
+ when :cancel_job
84
+ Aws::IoT::Endpoints::CancelJob.build(context)
85
+ when :cancel_job_execution
86
+ Aws::IoT::Endpoints::CancelJobExecution.build(context)
87
+ when :clear_default_authorizer
88
+ Aws::IoT::Endpoints::ClearDefaultAuthorizer.build(context)
89
+ when :confirm_topic_rule_destination
90
+ Aws::IoT::Endpoints::ConfirmTopicRuleDestination.build(context)
91
+ when :create_audit_suppression
92
+ Aws::IoT::Endpoints::CreateAuditSuppression.build(context)
93
+ when :create_authorizer
94
+ Aws::IoT::Endpoints::CreateAuthorizer.build(context)
95
+ when :create_billing_group
96
+ Aws::IoT::Endpoints::CreateBillingGroup.build(context)
97
+ when :create_certificate_from_csr
98
+ Aws::IoT::Endpoints::CreateCertificateFromCsr.build(context)
99
+ when :create_custom_metric
100
+ Aws::IoT::Endpoints::CreateCustomMetric.build(context)
101
+ when :create_dimension
102
+ Aws::IoT::Endpoints::CreateDimension.build(context)
103
+ when :create_domain_configuration
104
+ Aws::IoT::Endpoints::CreateDomainConfiguration.build(context)
105
+ when :create_dynamic_thing_group
106
+ Aws::IoT::Endpoints::CreateDynamicThingGroup.build(context)
107
+ when :create_fleet_metric
108
+ Aws::IoT::Endpoints::CreateFleetMetric.build(context)
109
+ when :create_job
110
+ Aws::IoT::Endpoints::CreateJob.build(context)
111
+ when :create_job_template
112
+ Aws::IoT::Endpoints::CreateJobTemplate.build(context)
113
+ when :create_keys_and_certificate
114
+ Aws::IoT::Endpoints::CreateKeysAndCertificate.build(context)
115
+ when :create_mitigation_action
116
+ Aws::IoT::Endpoints::CreateMitigationAction.build(context)
117
+ when :create_ota_update
118
+ Aws::IoT::Endpoints::CreateOTAUpdate.build(context)
119
+ when :create_package
120
+ Aws::IoT::Endpoints::CreatePackage.build(context)
121
+ when :create_package_version
122
+ Aws::IoT::Endpoints::CreatePackageVersion.build(context)
123
+ when :create_policy
124
+ Aws::IoT::Endpoints::CreatePolicy.build(context)
125
+ when :create_policy_version
126
+ Aws::IoT::Endpoints::CreatePolicyVersion.build(context)
127
+ when :create_provisioning_claim
128
+ Aws::IoT::Endpoints::CreateProvisioningClaim.build(context)
129
+ when :create_provisioning_template
130
+ Aws::IoT::Endpoints::CreateProvisioningTemplate.build(context)
131
+ when :create_provisioning_template_version
132
+ Aws::IoT::Endpoints::CreateProvisioningTemplateVersion.build(context)
133
+ when :create_role_alias
134
+ Aws::IoT::Endpoints::CreateRoleAlias.build(context)
135
+ when :create_scheduled_audit
136
+ Aws::IoT::Endpoints::CreateScheduledAudit.build(context)
137
+ when :create_security_profile
138
+ Aws::IoT::Endpoints::CreateSecurityProfile.build(context)
139
+ when :create_stream
140
+ Aws::IoT::Endpoints::CreateStream.build(context)
141
+ when :create_thing
142
+ Aws::IoT::Endpoints::CreateThing.build(context)
143
+ when :create_thing_group
144
+ Aws::IoT::Endpoints::CreateThingGroup.build(context)
145
+ when :create_thing_type
146
+ Aws::IoT::Endpoints::CreateThingType.build(context)
147
+ when :create_topic_rule
148
+ Aws::IoT::Endpoints::CreateTopicRule.build(context)
149
+ when :create_topic_rule_destination
150
+ Aws::IoT::Endpoints::CreateTopicRuleDestination.build(context)
151
+ when :delete_account_audit_configuration
152
+ Aws::IoT::Endpoints::DeleteAccountAuditConfiguration.build(context)
153
+ when :delete_audit_suppression
154
+ Aws::IoT::Endpoints::DeleteAuditSuppression.build(context)
155
+ when :delete_authorizer
156
+ Aws::IoT::Endpoints::DeleteAuthorizer.build(context)
157
+ when :delete_billing_group
158
+ Aws::IoT::Endpoints::DeleteBillingGroup.build(context)
159
+ when :delete_ca_certificate
160
+ Aws::IoT::Endpoints::DeleteCACertificate.build(context)
161
+ when :delete_certificate
162
+ Aws::IoT::Endpoints::DeleteCertificate.build(context)
163
+ when :delete_custom_metric
164
+ Aws::IoT::Endpoints::DeleteCustomMetric.build(context)
165
+ when :delete_dimension
166
+ Aws::IoT::Endpoints::DeleteDimension.build(context)
167
+ when :delete_domain_configuration
168
+ Aws::IoT::Endpoints::DeleteDomainConfiguration.build(context)
169
+ when :delete_dynamic_thing_group
170
+ Aws::IoT::Endpoints::DeleteDynamicThingGroup.build(context)
171
+ when :delete_fleet_metric
172
+ Aws::IoT::Endpoints::DeleteFleetMetric.build(context)
173
+ when :delete_job
174
+ Aws::IoT::Endpoints::DeleteJob.build(context)
175
+ when :delete_job_execution
176
+ Aws::IoT::Endpoints::DeleteJobExecution.build(context)
177
+ when :delete_job_template
178
+ Aws::IoT::Endpoints::DeleteJobTemplate.build(context)
179
+ when :delete_mitigation_action
180
+ Aws::IoT::Endpoints::DeleteMitigationAction.build(context)
181
+ when :delete_ota_update
182
+ Aws::IoT::Endpoints::DeleteOTAUpdate.build(context)
183
+ when :delete_package
184
+ Aws::IoT::Endpoints::DeletePackage.build(context)
185
+ when :delete_package_version
186
+ Aws::IoT::Endpoints::DeletePackageVersion.build(context)
187
+ when :delete_policy
188
+ Aws::IoT::Endpoints::DeletePolicy.build(context)
189
+ when :delete_policy_version
190
+ Aws::IoT::Endpoints::DeletePolicyVersion.build(context)
191
+ when :delete_provisioning_template
192
+ Aws::IoT::Endpoints::DeleteProvisioningTemplate.build(context)
193
+ when :delete_provisioning_template_version
194
+ Aws::IoT::Endpoints::DeleteProvisioningTemplateVersion.build(context)
195
+ when :delete_registration_code
196
+ Aws::IoT::Endpoints::DeleteRegistrationCode.build(context)
197
+ when :delete_role_alias
198
+ Aws::IoT::Endpoints::DeleteRoleAlias.build(context)
199
+ when :delete_scheduled_audit
200
+ Aws::IoT::Endpoints::DeleteScheduledAudit.build(context)
201
+ when :delete_security_profile
202
+ Aws::IoT::Endpoints::DeleteSecurityProfile.build(context)
203
+ when :delete_stream
204
+ Aws::IoT::Endpoints::DeleteStream.build(context)
205
+ when :delete_thing
206
+ Aws::IoT::Endpoints::DeleteThing.build(context)
207
+ when :delete_thing_group
208
+ Aws::IoT::Endpoints::DeleteThingGroup.build(context)
209
+ when :delete_thing_type
210
+ Aws::IoT::Endpoints::DeleteThingType.build(context)
211
+ when :delete_topic_rule
212
+ Aws::IoT::Endpoints::DeleteTopicRule.build(context)
213
+ when :delete_topic_rule_destination
214
+ Aws::IoT::Endpoints::DeleteTopicRuleDestination.build(context)
215
+ when :delete_v2_logging_level
216
+ Aws::IoT::Endpoints::DeleteV2LoggingLevel.build(context)
217
+ when :deprecate_thing_type
218
+ Aws::IoT::Endpoints::DeprecateThingType.build(context)
219
+ when :describe_account_audit_configuration
220
+ Aws::IoT::Endpoints::DescribeAccountAuditConfiguration.build(context)
221
+ when :describe_audit_finding
222
+ Aws::IoT::Endpoints::DescribeAuditFinding.build(context)
223
+ when :describe_audit_mitigation_actions_task
224
+ Aws::IoT::Endpoints::DescribeAuditMitigationActionsTask.build(context)
225
+ when :describe_audit_suppression
226
+ Aws::IoT::Endpoints::DescribeAuditSuppression.build(context)
227
+ when :describe_audit_task
228
+ Aws::IoT::Endpoints::DescribeAuditTask.build(context)
229
+ when :describe_authorizer
230
+ Aws::IoT::Endpoints::DescribeAuthorizer.build(context)
231
+ when :describe_billing_group
232
+ Aws::IoT::Endpoints::DescribeBillingGroup.build(context)
233
+ when :describe_ca_certificate
234
+ Aws::IoT::Endpoints::DescribeCACertificate.build(context)
235
+ when :describe_certificate
236
+ Aws::IoT::Endpoints::DescribeCertificate.build(context)
237
+ when :describe_custom_metric
238
+ Aws::IoT::Endpoints::DescribeCustomMetric.build(context)
239
+ when :describe_default_authorizer
240
+ Aws::IoT::Endpoints::DescribeDefaultAuthorizer.build(context)
241
+ when :describe_detect_mitigation_actions_task
242
+ Aws::IoT::Endpoints::DescribeDetectMitigationActionsTask.build(context)
243
+ when :describe_dimension
244
+ Aws::IoT::Endpoints::DescribeDimension.build(context)
245
+ when :describe_domain_configuration
246
+ Aws::IoT::Endpoints::DescribeDomainConfiguration.build(context)
247
+ when :describe_endpoint
248
+ Aws::IoT::Endpoints::DescribeEndpoint.build(context)
249
+ when :describe_event_configurations
250
+ Aws::IoT::Endpoints::DescribeEventConfigurations.build(context)
251
+ when :describe_fleet_metric
252
+ Aws::IoT::Endpoints::DescribeFleetMetric.build(context)
253
+ when :describe_index
254
+ Aws::IoT::Endpoints::DescribeIndex.build(context)
255
+ when :describe_job
256
+ Aws::IoT::Endpoints::DescribeJob.build(context)
257
+ when :describe_job_execution
258
+ Aws::IoT::Endpoints::DescribeJobExecution.build(context)
259
+ when :describe_job_template
260
+ Aws::IoT::Endpoints::DescribeJobTemplate.build(context)
261
+ when :describe_managed_job_template
262
+ Aws::IoT::Endpoints::DescribeManagedJobTemplate.build(context)
263
+ when :describe_mitigation_action
264
+ Aws::IoT::Endpoints::DescribeMitigationAction.build(context)
265
+ when :describe_provisioning_template
266
+ Aws::IoT::Endpoints::DescribeProvisioningTemplate.build(context)
267
+ when :describe_provisioning_template_version
268
+ Aws::IoT::Endpoints::DescribeProvisioningTemplateVersion.build(context)
269
+ when :describe_role_alias
270
+ Aws::IoT::Endpoints::DescribeRoleAlias.build(context)
271
+ when :describe_scheduled_audit
272
+ Aws::IoT::Endpoints::DescribeScheduledAudit.build(context)
273
+ when :describe_security_profile
274
+ Aws::IoT::Endpoints::DescribeSecurityProfile.build(context)
275
+ when :describe_stream
276
+ Aws::IoT::Endpoints::DescribeStream.build(context)
277
+ when :describe_thing
278
+ Aws::IoT::Endpoints::DescribeThing.build(context)
279
+ when :describe_thing_group
280
+ Aws::IoT::Endpoints::DescribeThingGroup.build(context)
281
+ when :describe_thing_registration_task
282
+ Aws::IoT::Endpoints::DescribeThingRegistrationTask.build(context)
283
+ when :describe_thing_type
284
+ Aws::IoT::Endpoints::DescribeThingType.build(context)
285
+ when :detach_policy
286
+ Aws::IoT::Endpoints::DetachPolicy.build(context)
287
+ when :detach_principal_policy
288
+ Aws::IoT::Endpoints::DetachPrincipalPolicy.build(context)
289
+ when :detach_security_profile
290
+ Aws::IoT::Endpoints::DetachSecurityProfile.build(context)
291
+ when :detach_thing_principal
292
+ Aws::IoT::Endpoints::DetachThingPrincipal.build(context)
293
+ when :disable_topic_rule
294
+ Aws::IoT::Endpoints::DisableTopicRule.build(context)
295
+ when :enable_topic_rule
296
+ Aws::IoT::Endpoints::EnableTopicRule.build(context)
297
+ when :get_behavior_model_training_summaries
298
+ Aws::IoT::Endpoints::GetBehaviorModelTrainingSummaries.build(context)
299
+ when :get_buckets_aggregation
300
+ Aws::IoT::Endpoints::GetBucketsAggregation.build(context)
301
+ when :get_cardinality
302
+ Aws::IoT::Endpoints::GetCardinality.build(context)
303
+ when :get_effective_policies
304
+ Aws::IoT::Endpoints::GetEffectivePolicies.build(context)
305
+ when :get_indexing_configuration
306
+ Aws::IoT::Endpoints::GetIndexingConfiguration.build(context)
307
+ when :get_job_document
308
+ Aws::IoT::Endpoints::GetJobDocument.build(context)
309
+ when :get_logging_options
310
+ Aws::IoT::Endpoints::GetLoggingOptions.build(context)
311
+ when :get_ota_update
312
+ Aws::IoT::Endpoints::GetOTAUpdate.build(context)
313
+ when :get_package
314
+ Aws::IoT::Endpoints::GetPackage.build(context)
315
+ when :get_package_configuration
316
+ Aws::IoT::Endpoints::GetPackageConfiguration.build(context)
317
+ when :get_package_version
318
+ Aws::IoT::Endpoints::GetPackageVersion.build(context)
319
+ when :get_percentiles
320
+ Aws::IoT::Endpoints::GetPercentiles.build(context)
321
+ when :get_policy
322
+ Aws::IoT::Endpoints::GetPolicy.build(context)
323
+ when :get_policy_version
324
+ Aws::IoT::Endpoints::GetPolicyVersion.build(context)
325
+ when :get_registration_code
326
+ Aws::IoT::Endpoints::GetRegistrationCode.build(context)
327
+ when :get_statistics
328
+ Aws::IoT::Endpoints::GetStatistics.build(context)
329
+ when :get_topic_rule
330
+ Aws::IoT::Endpoints::GetTopicRule.build(context)
331
+ when :get_topic_rule_destination
332
+ Aws::IoT::Endpoints::GetTopicRuleDestination.build(context)
333
+ when :get_v2_logging_options
334
+ Aws::IoT::Endpoints::GetV2LoggingOptions.build(context)
335
+ when :list_active_violations
336
+ Aws::IoT::Endpoints::ListActiveViolations.build(context)
337
+ when :list_attached_policies
338
+ Aws::IoT::Endpoints::ListAttachedPolicies.build(context)
339
+ when :list_audit_findings
340
+ Aws::IoT::Endpoints::ListAuditFindings.build(context)
341
+ when :list_audit_mitigation_actions_executions
342
+ Aws::IoT::Endpoints::ListAuditMitigationActionsExecutions.build(context)
343
+ when :list_audit_mitigation_actions_tasks
344
+ Aws::IoT::Endpoints::ListAuditMitigationActionsTasks.build(context)
345
+ when :list_audit_suppressions
346
+ Aws::IoT::Endpoints::ListAuditSuppressions.build(context)
347
+ when :list_audit_tasks
348
+ Aws::IoT::Endpoints::ListAuditTasks.build(context)
349
+ when :list_authorizers
350
+ Aws::IoT::Endpoints::ListAuthorizers.build(context)
351
+ when :list_billing_groups
352
+ Aws::IoT::Endpoints::ListBillingGroups.build(context)
353
+ when :list_ca_certificates
354
+ Aws::IoT::Endpoints::ListCACertificates.build(context)
355
+ when :list_certificates
356
+ Aws::IoT::Endpoints::ListCertificates.build(context)
357
+ when :list_certificates_by_ca
358
+ Aws::IoT::Endpoints::ListCertificatesByCA.build(context)
359
+ when :list_custom_metrics
360
+ Aws::IoT::Endpoints::ListCustomMetrics.build(context)
361
+ when :list_detect_mitigation_actions_executions
362
+ Aws::IoT::Endpoints::ListDetectMitigationActionsExecutions.build(context)
363
+ when :list_detect_mitigation_actions_tasks
364
+ Aws::IoT::Endpoints::ListDetectMitigationActionsTasks.build(context)
365
+ when :list_dimensions
366
+ Aws::IoT::Endpoints::ListDimensions.build(context)
367
+ when :list_domain_configurations
368
+ Aws::IoT::Endpoints::ListDomainConfigurations.build(context)
369
+ when :list_fleet_metrics
370
+ Aws::IoT::Endpoints::ListFleetMetrics.build(context)
371
+ when :list_indices
372
+ Aws::IoT::Endpoints::ListIndices.build(context)
373
+ when :list_job_executions_for_job
374
+ Aws::IoT::Endpoints::ListJobExecutionsForJob.build(context)
375
+ when :list_job_executions_for_thing
376
+ Aws::IoT::Endpoints::ListJobExecutionsForThing.build(context)
377
+ when :list_job_templates
378
+ Aws::IoT::Endpoints::ListJobTemplates.build(context)
379
+ when :list_jobs
380
+ Aws::IoT::Endpoints::ListJobs.build(context)
381
+ when :list_managed_job_templates
382
+ Aws::IoT::Endpoints::ListManagedJobTemplates.build(context)
383
+ when :list_metric_values
384
+ Aws::IoT::Endpoints::ListMetricValues.build(context)
385
+ when :list_mitigation_actions
386
+ Aws::IoT::Endpoints::ListMitigationActions.build(context)
387
+ when :list_ota_updates
388
+ Aws::IoT::Endpoints::ListOTAUpdates.build(context)
389
+ when :list_outgoing_certificates
390
+ Aws::IoT::Endpoints::ListOutgoingCertificates.build(context)
391
+ when :list_package_versions
392
+ Aws::IoT::Endpoints::ListPackageVersions.build(context)
393
+ when :list_packages
394
+ Aws::IoT::Endpoints::ListPackages.build(context)
395
+ when :list_policies
396
+ Aws::IoT::Endpoints::ListPolicies.build(context)
397
+ when :list_policy_principals
398
+ Aws::IoT::Endpoints::ListPolicyPrincipals.build(context)
399
+ when :list_policy_versions
400
+ Aws::IoT::Endpoints::ListPolicyVersions.build(context)
401
+ when :list_principal_policies
402
+ Aws::IoT::Endpoints::ListPrincipalPolicies.build(context)
403
+ when :list_principal_things
404
+ Aws::IoT::Endpoints::ListPrincipalThings.build(context)
405
+ when :list_provisioning_template_versions
406
+ Aws::IoT::Endpoints::ListProvisioningTemplateVersions.build(context)
407
+ when :list_provisioning_templates
408
+ Aws::IoT::Endpoints::ListProvisioningTemplates.build(context)
409
+ when :list_related_resources_for_audit_finding
410
+ Aws::IoT::Endpoints::ListRelatedResourcesForAuditFinding.build(context)
411
+ when :list_role_aliases
412
+ Aws::IoT::Endpoints::ListRoleAliases.build(context)
413
+ when :list_scheduled_audits
414
+ Aws::IoT::Endpoints::ListScheduledAudits.build(context)
415
+ when :list_security_profiles
416
+ Aws::IoT::Endpoints::ListSecurityProfiles.build(context)
417
+ when :list_security_profiles_for_target
418
+ Aws::IoT::Endpoints::ListSecurityProfilesForTarget.build(context)
419
+ when :list_streams
420
+ Aws::IoT::Endpoints::ListStreams.build(context)
421
+ when :list_tags_for_resource
422
+ Aws::IoT::Endpoints::ListTagsForResource.build(context)
423
+ when :list_targets_for_policy
424
+ Aws::IoT::Endpoints::ListTargetsForPolicy.build(context)
425
+ when :list_targets_for_security_profile
426
+ Aws::IoT::Endpoints::ListTargetsForSecurityProfile.build(context)
427
+ when :list_thing_groups
428
+ Aws::IoT::Endpoints::ListThingGroups.build(context)
429
+ when :list_thing_groups_for_thing
430
+ Aws::IoT::Endpoints::ListThingGroupsForThing.build(context)
431
+ when :list_thing_principals
432
+ Aws::IoT::Endpoints::ListThingPrincipals.build(context)
433
+ when :list_thing_registration_task_reports
434
+ Aws::IoT::Endpoints::ListThingRegistrationTaskReports.build(context)
435
+ when :list_thing_registration_tasks
436
+ Aws::IoT::Endpoints::ListThingRegistrationTasks.build(context)
437
+ when :list_thing_types
438
+ Aws::IoT::Endpoints::ListThingTypes.build(context)
439
+ when :list_things
440
+ Aws::IoT::Endpoints::ListThings.build(context)
441
+ when :list_things_in_billing_group
442
+ Aws::IoT::Endpoints::ListThingsInBillingGroup.build(context)
443
+ when :list_things_in_thing_group
444
+ Aws::IoT::Endpoints::ListThingsInThingGroup.build(context)
445
+ when :list_topic_rule_destinations
446
+ Aws::IoT::Endpoints::ListTopicRuleDestinations.build(context)
447
+ when :list_topic_rules
448
+ Aws::IoT::Endpoints::ListTopicRules.build(context)
449
+ when :list_v2_logging_levels
450
+ Aws::IoT::Endpoints::ListV2LoggingLevels.build(context)
451
+ when :list_violation_events
452
+ Aws::IoT::Endpoints::ListViolationEvents.build(context)
453
+ when :put_verification_state_on_violation
454
+ Aws::IoT::Endpoints::PutVerificationStateOnViolation.build(context)
455
+ when :register_ca_certificate
456
+ Aws::IoT::Endpoints::RegisterCACertificate.build(context)
457
+ when :register_certificate
458
+ Aws::IoT::Endpoints::RegisterCertificate.build(context)
459
+ when :register_certificate_without_ca
460
+ Aws::IoT::Endpoints::RegisterCertificateWithoutCA.build(context)
461
+ when :register_thing
462
+ Aws::IoT::Endpoints::RegisterThing.build(context)
463
+ when :reject_certificate_transfer
464
+ Aws::IoT::Endpoints::RejectCertificateTransfer.build(context)
465
+ when :remove_thing_from_billing_group
466
+ Aws::IoT::Endpoints::RemoveThingFromBillingGroup.build(context)
467
+ when :remove_thing_from_thing_group
468
+ Aws::IoT::Endpoints::RemoveThingFromThingGroup.build(context)
469
+ when :replace_topic_rule
470
+ Aws::IoT::Endpoints::ReplaceTopicRule.build(context)
471
+ when :search_index
472
+ Aws::IoT::Endpoints::SearchIndex.build(context)
473
+ when :set_default_authorizer
474
+ Aws::IoT::Endpoints::SetDefaultAuthorizer.build(context)
475
+ when :set_default_policy_version
476
+ Aws::IoT::Endpoints::SetDefaultPolicyVersion.build(context)
477
+ when :set_logging_options
478
+ Aws::IoT::Endpoints::SetLoggingOptions.build(context)
479
+ when :set_v2_logging_level
480
+ Aws::IoT::Endpoints::SetV2LoggingLevel.build(context)
481
+ when :set_v2_logging_options
482
+ Aws::IoT::Endpoints::SetV2LoggingOptions.build(context)
483
+ when :start_audit_mitigation_actions_task
484
+ Aws::IoT::Endpoints::StartAuditMitigationActionsTask.build(context)
485
+ when :start_detect_mitigation_actions_task
486
+ Aws::IoT::Endpoints::StartDetectMitigationActionsTask.build(context)
487
+ when :start_on_demand_audit_task
488
+ Aws::IoT::Endpoints::StartOnDemandAuditTask.build(context)
489
+ when :start_thing_registration_task
490
+ Aws::IoT::Endpoints::StartThingRegistrationTask.build(context)
491
+ when :stop_thing_registration_task
492
+ Aws::IoT::Endpoints::StopThingRegistrationTask.build(context)
493
+ when :tag_resource
494
+ Aws::IoT::Endpoints::TagResource.build(context)
495
+ when :test_authorization
496
+ Aws::IoT::Endpoints::TestAuthorization.build(context)
497
+ when :test_invoke_authorizer
498
+ Aws::IoT::Endpoints::TestInvokeAuthorizer.build(context)
499
+ when :transfer_certificate
500
+ Aws::IoT::Endpoints::TransferCertificate.build(context)
501
+ when :untag_resource
502
+ Aws::IoT::Endpoints::UntagResource.build(context)
503
+ when :update_account_audit_configuration
504
+ Aws::IoT::Endpoints::UpdateAccountAuditConfiguration.build(context)
505
+ when :update_audit_suppression
506
+ Aws::IoT::Endpoints::UpdateAuditSuppression.build(context)
507
+ when :update_authorizer
508
+ Aws::IoT::Endpoints::UpdateAuthorizer.build(context)
509
+ when :update_billing_group
510
+ Aws::IoT::Endpoints::UpdateBillingGroup.build(context)
511
+ when :update_ca_certificate
512
+ Aws::IoT::Endpoints::UpdateCACertificate.build(context)
513
+ when :update_certificate
514
+ Aws::IoT::Endpoints::UpdateCertificate.build(context)
515
+ when :update_custom_metric
516
+ Aws::IoT::Endpoints::UpdateCustomMetric.build(context)
517
+ when :update_dimension
518
+ Aws::IoT::Endpoints::UpdateDimension.build(context)
519
+ when :update_domain_configuration
520
+ Aws::IoT::Endpoints::UpdateDomainConfiguration.build(context)
521
+ when :update_dynamic_thing_group
522
+ Aws::IoT::Endpoints::UpdateDynamicThingGroup.build(context)
523
+ when :update_event_configurations
524
+ Aws::IoT::Endpoints::UpdateEventConfigurations.build(context)
525
+ when :update_fleet_metric
526
+ Aws::IoT::Endpoints::UpdateFleetMetric.build(context)
527
+ when :update_indexing_configuration
528
+ Aws::IoT::Endpoints::UpdateIndexingConfiguration.build(context)
529
+ when :update_job
530
+ Aws::IoT::Endpoints::UpdateJob.build(context)
531
+ when :update_mitigation_action
532
+ Aws::IoT::Endpoints::UpdateMitigationAction.build(context)
533
+ when :update_package
534
+ Aws::IoT::Endpoints::UpdatePackage.build(context)
535
+ when :update_package_configuration
536
+ Aws::IoT::Endpoints::UpdatePackageConfiguration.build(context)
537
+ when :update_package_version
538
+ Aws::IoT::Endpoints::UpdatePackageVersion.build(context)
539
+ when :update_provisioning_template
540
+ Aws::IoT::Endpoints::UpdateProvisioningTemplate.build(context)
541
+ when :update_role_alias
542
+ Aws::IoT::Endpoints::UpdateRoleAlias.build(context)
543
+ when :update_scheduled_audit
544
+ Aws::IoT::Endpoints::UpdateScheduledAudit.build(context)
545
+ when :update_security_profile
546
+ Aws::IoT::Endpoints::UpdateSecurityProfile.build(context)
547
+ when :update_stream
548
+ Aws::IoT::Endpoints::UpdateStream.build(context)
549
+ when :update_thing
550
+ Aws::IoT::Endpoints::UpdateThing.build(context)
551
+ when :update_thing_group
552
+ Aws::IoT::Endpoints::UpdateThingGroup.build(context)
553
+ when :update_thing_groups_for_thing
554
+ Aws::IoT::Endpoints::UpdateThingGroupsForThing.build(context)
555
+ when :update_topic_rule_destination
556
+ Aws::IoT::Endpoints::UpdateTopicRuleDestination.build(context)
557
+ when :validate_security_profile_behaviors
558
+ Aws::IoT::Endpoints::ValidateSecurityProfileBehaviors.build(context)
559
+ end
560
+ end
561
+ end
562
+
563
+ def add_handlers(handlers, _config)
564
+ handlers.add(Handler, step: :build, priority: 75)
565
+ end
566
+ end
567
+ end
568
+ end