aws-sdk-iotmanagedintegrations 1.0.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.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-iotmanagedintegrations/client.rb +2964 -0
- data/lib/aws-sdk-iotmanagedintegrations/client_api.rb +2020 -0
- data/lib/aws-sdk-iotmanagedintegrations/customizations.rb +0 -0
- data/lib/aws-sdk-iotmanagedintegrations/endpoint_parameters.rb +59 -0
- data/lib/aws-sdk-iotmanagedintegrations/endpoint_provider.rb +32 -0
- data/lib/aws-sdk-iotmanagedintegrations/endpoints.rb +20 -0
- data/lib/aws-sdk-iotmanagedintegrations/errors.rb +198 -0
- data/lib/aws-sdk-iotmanagedintegrations/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-iotmanagedintegrations/resource.rb +26 -0
- data/lib/aws-sdk-iotmanagedintegrations/types.rb +3327 -0
- data/lib/aws-sdk-iotmanagedintegrations.rb +61 -0
- data/sig/client.rbs +917 -0
- data/sig/errors.rbs +46 -0
- data/sig/resource.rbs +84 -0
- data/sig/types.rbs +1045 -0
- data/sig/waiters.rbs +13 -0
- metadata +99 -0
@@ -0,0 +1,61 @@
|
|
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
|
+
require 'aws-sdk-core'
|
12
|
+
require 'aws-sigv4'
|
13
|
+
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:iotmanagedintegrations)
|
15
|
+
|
16
|
+
# This module provides support for Managed integrations for AWS IoT Device Management. This module is available in the
|
17
|
+
# `aws-sdk-iotmanagedintegrations` gem.
|
18
|
+
#
|
19
|
+
# # Client
|
20
|
+
#
|
21
|
+
# The {Client} class provides one method for each API operation. Operation
|
22
|
+
# methods each accept a hash of request parameters and return a response
|
23
|
+
# structure.
|
24
|
+
#
|
25
|
+
# io_t_managed_integrations = Aws::IoTManagedIntegrations::Client.new
|
26
|
+
# resp = io_t_managed_integrations.create_credential_locker(params)
|
27
|
+
#
|
28
|
+
# See {Client} for more information.
|
29
|
+
#
|
30
|
+
# # Errors
|
31
|
+
#
|
32
|
+
# Errors returned from Managed integrations for AWS IoT Device Management are defined in the
|
33
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
34
|
+
#
|
35
|
+
# begin
|
36
|
+
# # do stuff
|
37
|
+
# rescue Aws::IoTManagedIntegrations::Errors::ServiceError
|
38
|
+
# # rescues all Managed integrations for AWS IoT Device Management API errors
|
39
|
+
# end
|
40
|
+
#
|
41
|
+
# See {Errors} for more information.
|
42
|
+
#
|
43
|
+
# @!group service
|
44
|
+
module Aws::IoTManagedIntegrations
|
45
|
+
autoload :Types, 'aws-sdk-iotmanagedintegrations/types'
|
46
|
+
autoload :ClientApi, 'aws-sdk-iotmanagedintegrations/client_api'
|
47
|
+
module Plugins
|
48
|
+
autoload :Endpoints, 'aws-sdk-iotmanagedintegrations/plugins/endpoints.rb'
|
49
|
+
end
|
50
|
+
autoload :Client, 'aws-sdk-iotmanagedintegrations/client'
|
51
|
+
autoload :Errors, 'aws-sdk-iotmanagedintegrations/errors'
|
52
|
+
autoload :Resource, 'aws-sdk-iotmanagedintegrations/resource'
|
53
|
+
autoload :EndpointParameters, 'aws-sdk-iotmanagedintegrations/endpoint_parameters'
|
54
|
+
autoload :EndpointProvider, 'aws-sdk-iotmanagedintegrations/endpoint_provider'
|
55
|
+
autoload :Endpoints, 'aws-sdk-iotmanagedintegrations/endpoints'
|
56
|
+
|
57
|
+
GEM_VERSION = '1.0.0'
|
58
|
+
|
59
|
+
end
|
60
|
+
|
61
|
+
require_relative 'aws-sdk-iotmanagedintegrations/customizations'
|