aws-sdk-iotsecuretunneling 1.22.0 → 1.23.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 +4 -4
- data/CHANGELOG.md +8 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-iotsecuretunneling/client.rb +1 -1
- data/lib/aws-sdk-iotsecuretunneling/endpoint_provider.rb +41 -107
- data/lib/aws-sdk-iotsecuretunneling/types.rb +0 -107
- data/lib/aws-sdk-iotsecuretunneling.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cfed53ff015928ef170654050d4cdde31d5d79ee5e46a3064095bd05f5a4a4c9
|
|
4
|
+
data.tar.gz: 54ba75a785b4ddf1053395ab8827e4f2eed40e835414d237a305476d36b96c05
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 51cb66d64bc8fff9b085af9fff157de8bfc4ff1e0b527d223406dc07082efc15c64c832bed7c45fa548e3cd74deb7d4f6550c926698e1ab0f3fbeeef0c4e59e5
|
|
7
|
+
data.tar.gz: 2352d51bdb3be00d04bef6307f286e4d164510a9133c7b0a7af755b9eff8da9fad0319e93b4ca9f8aefa0259852ffa9236b053a787474d90bb26dd36ace00dd0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.23.0 (2023-01-18)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
|
10
|
+
|
|
4
11
|
1.22.0 (2022-10-25)
|
|
5
12
|
------------------
|
|
6
13
|
|
|
@@ -120,4 +127,4 @@ Unreleased Changes
|
|
|
120
127
|
1.0.0 (2019-11-25)
|
|
121
128
|
------------------
|
|
122
129
|
|
|
123
|
-
* Feature - Initial release of `aws-sdk-iotsecuretunneling`.
|
|
130
|
+
* Feature - Initial release of `aws-sdk-iotsecuretunneling`.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.23.0
|
|
@@ -724,7 +724,7 @@ module Aws::IoTSecureTunneling
|
|
|
724
724
|
params: params,
|
|
725
725
|
config: config)
|
|
726
726
|
context[:gem_name] = 'aws-sdk-iotsecuretunneling'
|
|
727
|
-
context[:gem_version] = '1.
|
|
727
|
+
context[:gem_version] = '1.23.0'
|
|
728
728
|
Seahorse::Client::Request.new(handlers, context)
|
|
729
729
|
end
|
|
730
730
|
|
|
@@ -9,115 +9,49 @@
|
|
|
9
9
|
|
|
10
10
|
module Aws::IoTSecureTunneling
|
|
11
11
|
class EndpointProvider
|
|
12
|
-
def
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
12
|
+
def resolve_endpoint(parameters)
|
|
13
|
+
region = parameters.region
|
|
14
|
+
use_dual_stack = parameters.use_dual_stack
|
|
15
|
+
use_fips = parameters.use_fips
|
|
16
|
+
endpoint = parameters.endpoint
|
|
17
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
|
18
|
+
if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
|
|
19
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
20
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
|
21
|
+
end
|
|
22
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
23
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
|
24
|
+
end
|
|
25
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
|
26
|
+
end
|
|
27
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
29
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.tunneling.iot-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
30
|
+
end
|
|
31
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
32
|
+
end
|
|
33
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
|
35
|
+
if Aws::Endpoints::Matchers.string_equals?("aws", Aws::Endpoints::Matchers.attr(partition_result, "name"))
|
|
36
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.tunneling.iot-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
37
|
+
end
|
|
38
|
+
if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
|
|
39
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.tunneling.iot-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
40
|
+
end
|
|
41
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.tunneling.iot-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
42
|
+
end
|
|
43
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
44
|
+
end
|
|
45
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
46
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
47
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.tunneling.iot.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
48
|
+
end
|
|
49
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
|
50
|
+
end
|
|
51
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.tunneling.iot.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
21
52
|
end
|
|
22
|
-
|
|
23
|
-
end
|
|
53
|
+
raise ArgumentError, 'No endpoint could be resolved'
|
|
24
54
|
|
|
25
|
-
def resolve_endpoint(parameters)
|
|
26
|
-
@provider.resolve_endpoint(parameters)
|
|
27
55
|
end
|
|
28
|
-
|
|
29
|
-
# @api private
|
|
30
|
-
RULES = <<-JSON
|
|
31
|
-
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
|
32
|
-
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
|
|
33
|
-
dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
|
|
34
|
-
cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
|
|
35
|
-
dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
|
|
36
|
-
ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
|
|
37
|
-
ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
|
|
38
|
-
ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
|
|
39
|
-
aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
|
|
40
|
-
OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
|
|
41
|
-
UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
|
|
42
|
-
dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
|
|
43
|
-
UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
|
|
44
|
-
dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
|
|
45
|
-
ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
|
|
46
|
-
IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
|
|
47
|
-
aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
|
|
48
|
-
bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
|
|
49
|
-
ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
|
|
50
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
|
|
51
|
-
cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
|
|
52
|
-
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
|
53
|
-
aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
|
|
54
|
-
cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
|
|
55
|
-
InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
|
|
56
|
-
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
|
57
|
-
UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
|
|
58
|
-
SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
|
|
59
|
-
eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
|
|
60
|
-
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
|
61
|
-
LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
|
|
62
|
-
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
|
|
63
|
-
b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
|
|
64
|
-
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
|
|
65
|
-
RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
|
66
|
-
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
|
67
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
|
68
|
-
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
|
69
|
-
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
|
70
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
|
71
|
-
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
|
72
|
-
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
|
73
|
-
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
|
74
|
-
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
|
75
|
-
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
|
76
|
-
dCI6eyJ1cmwiOiJodHRwczovL2FwaS50dW5uZWxpbmcuaW90LWZpcHMue1Jl
|
|
77
|
-
Z2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9Iiwi
|
|
78
|
-
cHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50
|
|
79
|
-
In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxT
|
|
80
|
-
dGFjayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90
|
|
81
|
-
IHN1cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29u
|
|
82
|
-
ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVm
|
|
83
|
-
IjoiVXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
|
|
84
|
-
ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0
|
|
85
|
-
cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9u
|
|
86
|
-
UmVzdWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJy
|
|
87
|
-
dWxlcyI6W3siY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMi
|
|
88
|
-
Olt7ImNvbmRpdGlvbnMiOlt7ImZuIjoic3RyaW5nRXF1YWxzIiwiYXJndiI6
|
|
89
|
-
WyJhd3MiLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0
|
|
90
|
-
aW9uUmVzdWx0In0sIm5hbWUiXX1dfV0sImVuZHBvaW50Ijp7InVybCI6Imh0
|
|
91
|
-
dHBzOi8vYXBpLnR1bm5lbGluZy5pb3QtZmlwcy57UmVnaW9ufS57UGFydGl0
|
|
92
|
-
aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVy
|
|
93
|
-
cyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifSx7ImNvbmRpdGlvbnMiOlt7ImZu
|
|
94
|
-
Ijoic3RyaW5nRXF1YWxzIiwiYXJndiI6WyJhd3MtdXMtZ292Iix7ImZuIjoi
|
|
95
|
-
Z2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJu
|
|
96
|
-
YW1lIl19XX1dLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2FwaS50dW5u
|
|
97
|
-
ZWxpbmcuaW90LWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNT
|
|
98
|
-
dWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6
|
|
99
|
-
ImVuZHBvaW50In0seyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJs
|
|
100
|
-
IjoiaHR0cHM6Ly9hcGkudHVubmVsaW5nLmlvdC1maXBzLntSZWdpb259LntQ
|
|
101
|
-
YXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJo
|
|
102
|
-
ZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfSx7ImNvbmRpdGlv
|
|
103
|
-
bnMiOltdLCJlcnJvciI6IkZJUFMgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0
|
|
104
|
-
aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBGSVBTIiwidHlwZSI6ImVycm9yIn1d
|
|
105
|
-
fSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3Yi
|
|
106
|
-
Olt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVl
|
|
107
|
-
IiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFs
|
|
108
|
-
cyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVm
|
|
109
|
-
IjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRHVhbFN0YWNrIl19XX1d
|
|
110
|
-
LCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5k
|
|
111
|
-
cG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9hcGkudHVubmVsaW5nLmlvdC57UmVn
|
|
112
|
-
aW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJw
|
|
113
|
-
cm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQi
|
|
114
|
-
fV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRHVhbFN0YWNrIGlzIGVu
|
|
115
|
-
YWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRHVh
|
|
116
|
-
bFN0YWNrIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOltdLCJl
|
|
117
|
-
bmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2FwaS50dW5uZWxpbmcuaW90LntS
|
|
118
|
-
ZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRp
|
|
119
|
-
ZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
|
|
120
|
-
|
|
121
|
-
JSON
|
|
122
56
|
end
|
|
123
57
|
end
|
|
@@ -10,14 +10,6 @@
|
|
|
10
10
|
module Aws::IoTSecureTunneling
|
|
11
11
|
module Types
|
|
12
12
|
|
|
13
|
-
# @note When making an API call, you may pass CloseTunnelRequest
|
|
14
|
-
# data as a hash:
|
|
15
|
-
#
|
|
16
|
-
# {
|
|
17
|
-
# tunnel_id: "TunnelId", # required
|
|
18
|
-
# delete: false,
|
|
19
|
-
# }
|
|
20
|
-
#
|
|
21
13
|
# @!attribute [rw] tunnel_id
|
|
22
14
|
# The ID of the tunnel to close.
|
|
23
15
|
# @return [String]
|
|
@@ -54,13 +46,6 @@ module Aws::IoTSecureTunneling
|
|
|
54
46
|
include Aws::Structure
|
|
55
47
|
end
|
|
56
48
|
|
|
57
|
-
# @note When making an API call, you may pass DescribeTunnelRequest
|
|
58
|
-
# data as a hash:
|
|
59
|
-
#
|
|
60
|
-
# {
|
|
61
|
-
# tunnel_id: "TunnelId", # required
|
|
62
|
-
# }
|
|
63
|
-
#
|
|
64
49
|
# @!attribute [rw] tunnel_id
|
|
65
50
|
# The tunnel to describe.
|
|
66
51
|
# @return [String]
|
|
@@ -83,14 +68,6 @@ module Aws::IoTSecureTunneling
|
|
|
83
68
|
|
|
84
69
|
# The destination configuration.
|
|
85
70
|
#
|
|
86
|
-
# @note When making an API call, you may pass DestinationConfig
|
|
87
|
-
# data as a hash:
|
|
88
|
-
#
|
|
89
|
-
# {
|
|
90
|
-
# thing_name: "ThingName",
|
|
91
|
-
# services: ["Service"], # required
|
|
92
|
-
# }
|
|
93
|
-
#
|
|
94
71
|
# @!attribute [rw] thing_name
|
|
95
72
|
# The name of the IoT thing to which you want to connect.
|
|
96
73
|
# @return [String]
|
|
@@ -121,13 +98,6 @@ module Aws::IoTSecureTunneling
|
|
|
121
98
|
include Aws::Structure
|
|
122
99
|
end
|
|
123
100
|
|
|
124
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
|
125
|
-
# data as a hash:
|
|
126
|
-
#
|
|
127
|
-
# {
|
|
128
|
-
# resource_arn: "AmazonResourceName", # required
|
|
129
|
-
# }
|
|
130
|
-
#
|
|
131
101
|
# @!attribute [rw] resource_arn
|
|
132
102
|
# The resource ARN.
|
|
133
103
|
# @return [String]
|
|
@@ -148,15 +118,6 @@ module Aws::IoTSecureTunneling
|
|
|
148
118
|
include Aws::Structure
|
|
149
119
|
end
|
|
150
120
|
|
|
151
|
-
# @note When making an API call, you may pass ListTunnelsRequest
|
|
152
|
-
# data as a hash:
|
|
153
|
-
#
|
|
154
|
-
# {
|
|
155
|
-
# thing_name: "ThingName",
|
|
156
|
-
# max_results: 1,
|
|
157
|
-
# next_token: "NextToken",
|
|
158
|
-
# }
|
|
159
|
-
#
|
|
160
121
|
# @!attribute [rw] thing_name
|
|
161
122
|
# The name of the IoT thing associated with the destination device.
|
|
162
123
|
# @return [String]
|
|
@@ -196,26 +157,6 @@ module Aws::IoTSecureTunneling
|
|
|
196
157
|
include Aws::Structure
|
|
197
158
|
end
|
|
198
159
|
|
|
199
|
-
# @note When making an API call, you may pass OpenTunnelRequest
|
|
200
|
-
# data as a hash:
|
|
201
|
-
#
|
|
202
|
-
# {
|
|
203
|
-
# description: "Description",
|
|
204
|
-
# tags: [
|
|
205
|
-
# {
|
|
206
|
-
# key: "TagKey", # required
|
|
207
|
-
# value: "TagValue", # required
|
|
208
|
-
# },
|
|
209
|
-
# ],
|
|
210
|
-
# destination_config: {
|
|
211
|
-
# thing_name: "ThingName",
|
|
212
|
-
# services: ["Service"], # required
|
|
213
|
-
# },
|
|
214
|
-
# timeout_config: {
|
|
215
|
-
# max_lifetime_timeout_minutes: 1,
|
|
216
|
-
# },
|
|
217
|
-
# }
|
|
218
|
-
#
|
|
219
160
|
# @!attribute [rw] description
|
|
220
161
|
# A short text description of the tunnel.
|
|
221
162
|
# @return [String]
|
|
@@ -280,18 +221,6 @@ module Aws::IoTSecureTunneling
|
|
|
280
221
|
include Aws::Structure
|
|
281
222
|
end
|
|
282
223
|
|
|
283
|
-
# @note When making an API call, you may pass RotateTunnelAccessTokenRequest
|
|
284
|
-
# data as a hash:
|
|
285
|
-
#
|
|
286
|
-
# {
|
|
287
|
-
# tunnel_id: "TunnelId", # required
|
|
288
|
-
# client_mode: "SOURCE", # required, accepts SOURCE, DESTINATION, ALL
|
|
289
|
-
# destination_config: {
|
|
290
|
-
# thing_name: "ThingName",
|
|
291
|
-
# services: ["Service"], # required
|
|
292
|
-
# },
|
|
293
|
-
# }
|
|
294
|
-
#
|
|
295
224
|
# @!attribute [rw] tunnel_id
|
|
296
225
|
# The tunnel for which you want to rotate the access tokens.
|
|
297
226
|
# @return [String]
|
|
@@ -338,14 +267,6 @@ module Aws::IoTSecureTunneling
|
|
|
338
267
|
# An arbitary key/value pair used to add searchable metadata to secure
|
|
339
268
|
# tunnel resources.
|
|
340
269
|
#
|
|
341
|
-
# @note When making an API call, you may pass Tag
|
|
342
|
-
# data as a hash:
|
|
343
|
-
#
|
|
344
|
-
# {
|
|
345
|
-
# key: "TagKey", # required
|
|
346
|
-
# value: "TagValue", # required
|
|
347
|
-
# }
|
|
348
|
-
#
|
|
349
270
|
# @!attribute [rw] key
|
|
350
271
|
# The key of the tag.
|
|
351
272
|
# @return [String]
|
|
@@ -361,19 +282,6 @@ module Aws::IoTSecureTunneling
|
|
|
361
282
|
include Aws::Structure
|
|
362
283
|
end
|
|
363
284
|
|
|
364
|
-
# @note When making an API call, you may pass TagResourceRequest
|
|
365
|
-
# data as a hash:
|
|
366
|
-
#
|
|
367
|
-
# {
|
|
368
|
-
# resource_arn: "AmazonResourceName", # required
|
|
369
|
-
# tags: [ # required
|
|
370
|
-
# {
|
|
371
|
-
# key: "TagKey", # required
|
|
372
|
-
# value: "TagValue", # required
|
|
373
|
-
# },
|
|
374
|
-
# ],
|
|
375
|
-
# }
|
|
376
|
-
#
|
|
377
285
|
# @!attribute [rw] resource_arn
|
|
378
286
|
# The ARN of the resource.
|
|
379
287
|
# @return [String]
|
|
@@ -393,13 +301,6 @@ module Aws::IoTSecureTunneling
|
|
|
393
301
|
|
|
394
302
|
# Tunnel timeout configuration.
|
|
395
303
|
#
|
|
396
|
-
# @note When making an API call, you may pass TimeoutConfig
|
|
397
|
-
# data as a hash:
|
|
398
|
-
#
|
|
399
|
-
# {
|
|
400
|
-
# max_lifetime_timeout_minutes: 1,
|
|
401
|
-
# }
|
|
402
|
-
#
|
|
403
304
|
# @!attribute [rw] max_lifetime_timeout_minutes
|
|
404
305
|
# The maximum amount of time (in minutes) a tunnel can remain open. If
|
|
405
306
|
# not specified, maxLifetimeTimeoutMinutes defaults to 720 minutes.
|
|
@@ -513,14 +414,6 @@ module Aws::IoTSecureTunneling
|
|
|
513
414
|
include Aws::Structure
|
|
514
415
|
end
|
|
515
416
|
|
|
516
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
|
517
|
-
# data as a hash:
|
|
518
|
-
#
|
|
519
|
-
# {
|
|
520
|
-
# resource_arn: "AmazonResourceName", # required
|
|
521
|
-
# tag_keys: ["TagKey"], # required
|
|
522
|
-
# }
|
|
523
|
-
#
|
|
524
417
|
# @!attribute [rw] resource_arn
|
|
525
418
|
# The resource ARN.
|
|
526
419
|
# @return [String]
|
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.
|
|
4
|
+
version: 1.23.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:
|
|
11
|
+
date: 2023-01-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|