Skip to content

Commit

Permalink
Adds dualstack endpoint support for IoT Secure Tunneling
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-dotnet-automation committed Jan 6, 2025
1 parent b1ed28c commit a62026b
Show file tree
Hide file tree
Showing 6 changed files with 1,019 additions and 113 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@
"endpointPrefix":"api.tunneling.iot",
"jsonVersion":"1.1",
"protocol":"json",
"protocols":["json"],
"serviceFullName":"AWS IoT Secure Tunneling",
"serviceId":"IoTSecureTunneling",
"signatureVersion":"v4",
"signingName":"IoTSecuredTunneling",
"targetPrefix":"IoTSecuredTunneling",
"uid":"iotsecuretunneling-2018-10-05"
"uid":"iotsecuretunneling-2018-10-05",
"auth":["aws.auth#sigv4"]
},
"operations":{
"CloseTunnel":{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,81 @@
}
],
"rules": [
{
"conditions": [
{
"fn": "stringEquals",
"argv": [
"aws",
{
"fn": "getAttr",
"argv": [
{
"ref": "PartitionResult"
},
"name"
]
}
]
}
],
"endpoint": {
"url": "https://api.iot-tunneling-fips.{Region}.api.aws",
"properties": {},
"headers": {}
},
"type": "endpoint"
},
{
"conditions": [
{
"fn": "stringEquals",
"argv": [
"aws-cn",
{
"fn": "getAttr",
"argv": [
{
"ref": "PartitionResult"
},
"name"
]
}
]
}
],
"endpoint": {
"url": "https://api.iot-tunneling-fips.{Region}.api.amazonwebservices.com.cn",
"properties": {},
"headers": {}
},
"type": "endpoint"
},
{
"conditions": [
{
"fn": "stringEquals",
"argv": [
"aws-us-gov",
{
"fn": "getAttr",
"argv": [
{
"ref": "PartitionResult"
},
"name"
]
}
]
}
],
"endpoint": {
"url": "https://api.iot-tunneling-fips.{Region}.api.aws",
"properties": {},
"headers": {}
},
"type": "endpoint"
},
{
"conditions": [],
"endpoint": {
Expand Down Expand Up @@ -270,6 +345,81 @@
}
],
"rules": [
{
"conditions": [
{
"fn": "stringEquals",
"argv": [
"aws",
{
"fn": "getAttr",
"argv": [
{
"ref": "PartitionResult"
},
"name"
]
}
]
}
],
"endpoint": {
"url": "https://api.iot-tunneling.{Region}.api.aws",
"properties": {},
"headers": {}
},
"type": "endpoint"
},
{
"conditions": [
{
"fn": "stringEquals",
"argv": [
"aws-cn",
{
"fn": "getAttr",
"argv": [
{
"ref": "PartitionResult"
},
"name"
]
}
]
}
],
"endpoint": {
"url": "https://api.iot-tunneling.{Region}.api.amazonwebservices.com.cn",
"properties": {},
"headers": {}
},
"type": "endpoint"
},
{
"conditions": [
{
"fn": "stringEquals",
"argv": [
"aws-us-gov",
{
"fn": "getAttr",
"argv": [
{
"ref": "PartitionResult"
},
"name"
]
}
]
}
],
"endpoint": {
"url": "https://api.iot-tunneling.{Region}.api.aws",
"properties": {},
"headers": {}
},
"type": "endpoint"
},
{
"conditions": [],
"endpoint": {
Expand Down
Loading

0 comments on commit a62026b

Please sign in to comment.