aws-sdk-iotsecuretunneling 1.5.0 → 1.10.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: ebee0d13b01c8381e7befa3a2b3e94cb08d6e8e6d296b90677cebb9ac8ebcdf1
4
- data.tar.gz: b4cf5d32968f6e4078c08d91d9b31f394d26dbc40f32386341a9e503087e0f6b
3
+ metadata.gz: 659ef3ccf157a1163410da121db94110f21b2c09a14805b18baad1890c577922
4
+ data.tar.gz: 2a0ecc80e34d99788c8d45b35c054513d411ad774895071b1474014182766e1a
5
5
  SHA512:
6
- metadata.gz: a2d543a0295b354d555011ae6f4fe154fc595e20406828afdfd7de2add1965b51f8308452472372d4643457e73d91fcba67c515cc1a76abc5334ca1f0da4b79b
7
- data.tar.gz: ef1c06f71ed801a9171d8c8471aff741a22c083a53c48320e9ef685e16d2e544b1230c22262de31f0b78aa8042bec318cd2aea3c9948834a4c5532ba383fc437
6
+ metadata.gz: b5ccedff4dfcefa854b9c55637dca81942ad570427788227aeb00063046f811b3c416db3c3b47d384c68af6a4d03156427f944735400f3c7d48ec640a1400026
7
+ data.tar.gz: 7316a46f2e12bf690967433c8f513b7e13c823835196b3310eb0b5dc94b6f814c4ac501ee79cc0a59146c067c1d3703ebfdd1c077e3c02e346348a10148c538d
@@ -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-iotsecuretunneling/customizations'
44
45
  #
45
46
  # See {Errors} for more information.
46
47
  #
47
- # @service
48
+ # @!group service
48
49
  module Aws::IoTSecureTunneling
49
50
 
50
- GEM_VERSION = '1.5.0'
51
+ GEM_VERSION = '1.10.0'
51
52
 
52
53
  end
@@ -85,13 +85,28 @@ module Aws::IoTSecureTunneling
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::IoTSecureTunneling
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
@@ -466,7 +481,7 @@ module Aws::IoTSecureTunneling
466
481
  end
467
482
 
468
483
  # Creates a new tunnel, and returns two client access tokens for clients
469
- # to use to connect to the AWS IoT Secure Tunneling proxy server. .
484
+ # to use to connect to the AWS IoT Secure Tunneling proxy server.
470
485
  #
471
486
  # @option params [String] :description
472
487
  # A short text description of the tunnel.
@@ -498,7 +513,7 @@ module Aws::IoTSecureTunneling
498
513
  # },
499
514
  # ],
500
515
  # destination_config: {
501
- # thing_name: "ThingName", # required
516
+ # thing_name: "ThingName",
502
517
  # services: ["Service"], # required
503
518
  # },
504
519
  # timeout_config: {
@@ -586,7 +601,7 @@ module Aws::IoTSecureTunneling
586
601
  params: params,
587
602
  config: config)
588
603
  context[:gem_name] = 'aws-sdk-iotsecuretunneling'
589
- context[:gem_version] = '1.5.0'
604
+ context[:gem_version] = '1.10.0'
590
605
  Seahorse::Client::Request.new(handlers, context)
591
606
  end
592
607
 
@@ -73,7 +73,7 @@ module Aws::IoTSecureTunneling
73
73
  DescribeTunnelResponse.add_member(:tunnel, Shapes::ShapeRef.new(shape: Tunnel, location_name: "tunnel"))
74
74
  DescribeTunnelResponse.struct_class = Types::DescribeTunnelResponse
75
75
 
76
- DestinationConfig.add_member(:thing_name, Shapes::ShapeRef.new(shape: ThingName, required: true, location_name: "thingName"))
76
+ DestinationConfig.add_member(:thing_name, Shapes::ShapeRef.new(shape: ThingName, location_name: "thingName"))
77
77
  DestinationConfig.add_member(:services, Shapes::ShapeRef.new(shape: ServiceList, required: true, location_name: "services"))
78
78
  DestinationConfig.struct_class = Types::DestinationConfig
79
79
 
@@ -87,7 +87,7 @@ module Aws::IoTSecureTunneling
87
87
  # data as a hash:
88
88
  #
89
89
  # {
90
- # thing_name: "ThingName", # required
90
+ # thing_name: "ThingName",
91
91
  # services: ["Service"], # required
92
92
  # }
93
93
  #
@@ -96,12 +96,11 @@ module Aws::IoTSecureTunneling
96
96
  # @return [String]
97
97
  #
98
98
  # @!attribute [rw] services
99
- # A list of service names that identity the target application.
100
- # Currently, you can only specify a single name. The AWS IoT client
101
- # running on the destination device reads this value and uses it to
102
- # look up a port or an IP address and a port. The AWS IoT client
103
- # instantiates the local proxy which uses this information to connect
104
- # to the destination application.
99
+ # A list of service names that identity the target application. The
100
+ # AWS IoT client running on the destination device reads this value
101
+ # and uses it to look up a port or an IP address and a port. The AWS
102
+ # IoT client instantiates the local proxy which uses this information
103
+ # to connect to the destination application.
105
104
  # @return [Array<String>]
106
105
  #
107
106
  class DestinationConfig < Struct.new(
@@ -205,7 +204,7 @@ module Aws::IoTSecureTunneling
205
204
  # },
206
205
  # ],
207
206
  # destination_config: {
208
- # thing_name: "ThingName", # required
207
+ # thing_name: "ThingName",
209
208
  # services: ["Service"], # required
210
209
  # },
211
210
  # timeout_config: {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iotsecuretunneling
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-23 00:00:00.000000000 Z
11
+ date: 2021-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.99.0
22
+ version: 3.112.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.99.0
32
+ version: 3.112.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement