Skip to content

Commit 552b07e

Browse files
author
AWS
committed
AWS IoT FleetWise Update: Updated error handling for empty resource names in "UpdateSignalCatalog" and "GetModelManifest" operations.
1 parent be9bd3f commit 552b07e

File tree

4 files changed

+27
-28
lines changed

4 files changed

+27
-28
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS IoT FleetWise",
4+
"contributor": "",
5+
"description": "Updated error handling for empty resource names in \"UpdateSignalCatalog\" and \"GetModelManifest\" operations."
6+
}

services/iotfleetwise/src/main/resources/codegen-resources/endpoint-rule-set.json

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,6 @@
5252
"ref": "Endpoint"
5353
}
5454
]
55-
},
56-
{
57-
"fn": "parseURL",
58-
"argv": [
59-
{
60-
"ref": "Endpoint"
61-
}
62-
],
63-
"assign": "url"
6455
}
6556
],
6657
"type": "tree",

services/iotfleetwise/src/main/resources/codegen-resources/endpoint-tests.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
}
99
},
1010
"params": {
11+
"Region": "eu-central-1",
1112
"UseDualStack": true,
12-
"UseFIPS": true,
13-
"Region": "eu-central-1"
13+
"UseFIPS": true
1414
}
1515
},
1616
{
@@ -21,9 +21,9 @@
2121
}
2222
},
2323
"params": {
24+
"Region": "eu-central-1",
2425
"UseDualStack": false,
25-
"UseFIPS": true,
26-
"Region": "eu-central-1"
26+
"UseFIPS": true
2727
}
2828
},
2929
{
@@ -34,9 +34,9 @@
3434
}
3535
},
3636
"params": {
37+
"Region": "eu-central-1",
3738
"UseDualStack": true,
38-
"UseFIPS": false,
39-
"Region": "eu-central-1"
39+
"UseFIPS": false
4040
}
4141
},
4242
{
@@ -47,9 +47,9 @@
4747
}
4848
},
4949
"params": {
50+
"Region": "eu-central-1",
5051
"UseDualStack": false,
51-
"UseFIPS": false,
52-
"Region": "eu-central-1"
52+
"UseFIPS": false
5353
}
5454
},
5555
{
@@ -60,9 +60,9 @@
6060
}
6161
},
6262
"params": {
63+
"Region": "us-east-1",
6364
"UseDualStack": true,
64-
"UseFIPS": true,
65-
"Region": "us-east-1"
65+
"UseFIPS": true
6666
}
6767
},
6868
{
@@ -73,9 +73,9 @@
7373
}
7474
},
7575
"params": {
76+
"Region": "us-east-1",
7677
"UseDualStack": false,
77-
"UseFIPS": true,
78-
"Region": "us-east-1"
78+
"UseFIPS": true
7979
}
8080
},
8181
{
@@ -86,9 +86,9 @@
8686
}
8787
},
8888
"params": {
89+
"Region": "us-east-1",
8990
"UseDualStack": true,
90-
"UseFIPS": false,
91-
"Region": "us-east-1"
91+
"UseFIPS": false
9292
}
9393
},
9494
{
@@ -99,9 +99,9 @@
9999
}
100100
},
101101
"params": {
102+
"Region": "us-east-1",
102103
"UseDualStack": false,
103-
"UseFIPS": false,
104-
"Region": "us-east-1"
104+
"UseFIPS": false
105105
}
106106
},
107107
{
@@ -112,9 +112,9 @@
112112
}
113113
},
114114
"params": {
115+
"Region": "us-east-1",
115116
"UseDualStack": false,
116117
"UseFIPS": false,
117-
"Region": "us-east-1",
118118
"Endpoint": "https://example.com"
119119
}
120120
},
@@ -124,9 +124,9 @@
124124
"error": "Invalid Configuration: FIPS and custom endpoint are not supported"
125125
},
126126
"params": {
127+
"Region": "us-east-1",
127128
"UseDualStack": false,
128129
"UseFIPS": true,
129-
"Region": "us-east-1",
130130
"Endpoint": "https://example.com"
131131
}
132132
},
@@ -136,9 +136,9 @@
136136
"error": "Invalid Configuration: Dualstack and custom endpoint are not supported"
137137
},
138138
"params": {
139+
"Region": "us-east-1",
139140
"UseDualStack": true,
140141
"UseFIPS": false,
141-
"Region": "us-east-1",
142142
"Endpoint": "https://example.com"
143143
}
144144
}

services/iotfleetwise/src/main/resources/codegen-resources/service-2.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -387,6 +387,7 @@
387387
{"shape":"ResourceNotFoundException"},
388388
{"shape":"InternalServerException"},
389389
{"shape":"ThrottlingException"},
390+
{"shape":"ValidationException"},
390391
{"shape":"AccessDeniedException"}
391392
],
392393
"documentation":"<p> Retrieves information about a vehicle model (model manifest). </p>"
@@ -883,6 +884,7 @@
883884
{"shape":"LimitExceededException"},
884885
{"shape":"InvalidNodeException"},
885886
{"shape":"ThrottlingException"},
887+
{"shape":"ValidationException"},
886888
{"shape":"InvalidSignalsException"},
887889
{"shape":"AccessDeniedException"}
888890
],

0 commit comments

Comments
 (0)