Skip to content

Commit 2cc3612

Browse files
author
AWS
committed
AWS IoT FleetWise Update: This release adds an optional listResponseScope request parameter in certain list API requests to limit the response to metadata only.
1 parent 46969f7 commit 2cc3612

File tree

2 files changed

+41
-6
lines changed

2 files changed

+41
-6
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": "This release adds an optional listResponseScope request parameter in certain list API requests to limit the response to metadata only."
6+
}

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

Lines changed: 35 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2096,7 +2096,7 @@
20962096
"DataDestinationConfigs":{
20972097
"type":"list",
20982098
"member":{"shape":"DataDestinationConfig"},
2099-
"max":1,
2099+
"max":3,
21002100
"min":1
21012101
},
21022102
"DataExtraDimensionNodePathList":{
@@ -2380,7 +2380,7 @@
23802380
"members":{
23812381
"identifier":{
23822382
"shape":"ResourceIdentifier",
2383-
"documentation":"<p>A unique, service-generated identifier.</p>"
2383+
"documentation":"<p>The unique ID of the state template.</p>"
23842384
}
23852385
}
23862386
},
@@ -2928,7 +2928,7 @@
29282928
"members":{
29292929
"identifier":{
29302930
"shape":"ResourceIdentifier",
2931-
"documentation":"<p>A unique, service-generated identifier.</p>"
2931+
"documentation":"<p>The unique ID of the state template.</p>"
29322932
}
29332933
}
29342934
},
@@ -3313,6 +3313,10 @@
33133313
"status":{
33143314
"shape":"statusStr",
33153315
"documentation":"<p>An optional parameter to filter the results by the status of each created campaign in your account. The status can be one of: <code>CREATING</code>, <code>WAITING_FOR_APPROVAL</code>, <code>RUNNING</code>, or <code>SUSPENDED</code>.</p>"
3316+
},
3317+
"listResponseScope":{
3318+
"shape":"ListResponseScope",
3319+
"documentation":"<p>When you set the <code>listResponseScope</code> parameter to <code>METADATA_ONLY</code>, the list response includes: campaign name, Amazon Resource Name (ARN), creation time, and last modification time.</p>"
33163320
}
33173321
}
33183322
},
@@ -3405,6 +3409,10 @@
34053409
"maxResults":{
34063410
"shape":"maxResults",
34073411
"documentation":"<p>The maximum number of items to return, between 1 and 100, inclusive.</p>"
3412+
},
3413+
"listResponseScope":{
3414+
"shape":"ListResponseScope",
3415+
"documentation":"<p>When you set the <code>listResponseScope</code> parameter to <code>METADATA_ONLY</code>, the list response includes: decoder manifest name, Amazon Resource Name (ARN), creation time, and last modification time.</p>"
34083416
}
34093417
}
34103418
},
@@ -3462,6 +3470,10 @@
34623470
"maxResults":{
34633471
"shape":"maxResults",
34643472
"documentation":"<p>The maximum number of items to return, between 1 and 100, inclusive.</p>"
3473+
},
3474+
"listResponseScope":{
3475+
"shape":"ListResponseScope",
3476+
"documentation":"<p>When you set the <code>listResponseScope</code> parameter to <code>METADATA_ONLY</code>, the list response includes: fleet ID, Amazon Resource Name (ARN), creation time, and last modification time.</p>"
34653477
}
34663478
}
34673479
},
@@ -3523,6 +3535,10 @@
35233535
"maxResults":{
35243536
"shape":"maxResults",
35253537
"documentation":"<p>The maximum number of items to return, between 1 and 100, inclusive.</p>"
3538+
},
3539+
"listResponseScope":{
3540+
"shape":"ListResponseScope",
3541+
"documentation":"<p>When you set the <code>listResponseScope</code> parameter to <code>METADATA_ONLY</code>, the list response includes: model manifest name, Amazon Resource Name (ARN), creation time, and last modification time.</p>"
35263542
}
35273543
}
35283544
},
@@ -3539,6 +3555,10 @@
35393555
}
35403556
}
35413557
},
3558+
"ListResponseScope":{
3559+
"type":"string",
3560+
"enum":["METADATA_ONLY"]
3561+
},
35423562
"ListSignalCatalogNodesRequest":{
35433563
"type":"structure",
35443564
"required":["name"],
@@ -3610,6 +3630,10 @@
36103630
"maxResults":{
36113631
"shape":"maxResults",
36123632
"documentation":"<p>The maximum number of items to return, between 1 and 100, inclusive.</p>"
3633+
},
3634+
"listResponseScope":{
3635+
"shape":"ListResponseScope",
3636+
"documentation":"<p>When you set the <code>listResponseScope</code> parameter to <code>METADATA_ONLY</code>, the list response includes: state template ID, Amazon Resource Name (ARN), creation time, and last modification time.</p>"
36133637
}
36143638
}
36153639
},
@@ -3698,6 +3722,10 @@
36983722
"maxResults":{
36993723
"shape":"listVehiclesMaxResults",
37003724
"documentation":"<p>The maximum number of items to return, between 1 and 100, inclusive.</p>"
3725+
},
3726+
"listResponseScope":{
3727+
"shape":"ListResponseScope",
3728+
"documentation":"<p>When you set the <code>listResponseScope</code> parameter to <code>METADATA_ONLY</code>, the list response includes: vehicle name, Amazon Resource Name (ARN), creation time, and last modification time.</p>"
37013729
}
37023730
}
37033731
},
@@ -4589,7 +4617,8 @@
45894617
"type":"list",
45904618
"member":{"shape":"SignalFetchInformation"},
45914619
"max":2,
4592-
"min":1
4620+
"min":1,
4621+
"sensitive":true
45934622
},
45944623
"SignalInformation":{
45954624
"type":"structure",
@@ -4648,7 +4677,7 @@
46484677
"members":{
46494678
"identifier":{
46504679
"shape":"ResourceIdentifier",
4651-
"documentation":"<p>A unique, service-generated identifier.</p>"
4680+
"documentation":"<p>The unique ID of the state template.</p>"
46524681
},
46534682
"stateTemplateUpdateStrategy":{"shape":"StateTemplateUpdateStrategy"}
46544683
},
@@ -5388,7 +5417,7 @@
53885417
"members":{
53895418
"identifier":{
53905419
"shape":"ResourceIdentifier",
5391-
"documentation":"<p>A unique, service-generated identifier.</p>"
5420+
"documentation":"<p>The unique ID of the state template.</p>"
53925421
},
53935422
"description":{
53945423
"shape":"description",

0 commit comments

Comments
 (0)