Skip to content

Commit ef8a699

Browse files
author
awstools
committed
feat(client-iotfleetwise): The following dataTypes have been removed: CUSTOMER_DECODED_INTERFACE in NetworkInterfaceType; CUSTOMER_DECODED_SIGNAL_INFO_IS_NULL in SignalDecoderFailureReason; CUSTOMER_DECODED_SIGNAL_NETWORK_INTERFACE_INFO_IS_NULL in NetworkInterfaceFailureReason; CUSTOMER_DECODED_SIGNAL in SignalDecoderType
1 parent 1853dab commit ef8a699

30 files changed

+945
-767
lines changed

clients/client-iotfleetwise/src/commands/BatchCreateVehicleCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export interface BatchCreateVehicleCommandOutput extends BatchCreateVehicleRespo
5050
* attributes: { // attributesMap
5151
* "<keys>": "STRING_VALUE",
5252
* },
53-
* associationBehavior: "STRING_VALUE",
53+
* associationBehavior: "CreateIotThing" || "ValidateIotThingExists",
5454
* tags: [ // TagList
5555
* { // Tag
5656
* Key: "STRING_VALUE", // required

clients/client-iotfleetwise/src/commands/BatchUpdateVehicleCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export interface BatchUpdateVehicleCommandOutput extends BatchUpdateVehicleRespo
5050
* attributes: { // attributesMap
5151
* "<keys>": "STRING_VALUE",
5252
* },
53-
* attributeUpdateMode: "STRING_VALUE",
53+
* attributeUpdateMode: "Overwrite" || "Merge",
5454
* },
5555
* ],
5656
* };

clients/client-iotfleetwise/src/commands/CreateCampaignCommand.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ export interface CreateCampaignCommandOutput extends CreateCampaignResponse, __M
4848
* startTime: new Date("TIMESTAMP"),
4949
* expiryTime: new Date("TIMESTAMP"),
5050
* postTriggerCollectionDuration: Number("long"),
51-
* diagnosticsMode: "STRING_VALUE",
52-
* spoolingMode: "STRING_VALUE",
53-
* compression: "STRING_VALUE",
51+
* diagnosticsMode: "OFF" || "SEND_ACTIVE_DTCS",
52+
* spoolingMode: "OFF" || "TO_DISK",
53+
* compression: "OFF" || "SNAPPY",
5454
* priority: Number("int"),
5555
* signalsToCollect: [ // SignalInformationList
5656
* { // SignalInformation
@@ -66,7 +66,7 @@ export interface CreateCampaignCommandOutput extends CreateCampaignResponse, __M
6666
* conditionBasedCollectionScheme: { // ConditionBasedCollectionScheme
6767
* expression: "STRING_VALUE", // required
6868
* minimumTriggerIntervalMs: Number("long"),
69-
* triggerMode: "STRING_VALUE",
69+
* triggerMode: "ALWAYS" || "RISING_EDGE",
7070
* conditionLanguageVersion: Number("int"),
7171
* },
7272
* },
@@ -83,8 +83,8 @@ export interface CreateCampaignCommandOutput extends CreateCampaignResponse, __M
8383
* { // DataDestinationConfig Union: only one key present
8484
* s3Config: { // S3Config
8585
* bucketArn: "STRING_VALUE", // required
86-
* dataFormat: "STRING_VALUE",
87-
* storageCompressionFormat: "STRING_VALUE",
86+
* dataFormat: "JSON" || "PARQUET",
87+
* storageCompressionFormat: "NONE" || "GZIP",
8888
* prefix: "STRING_VALUE",
8989
* },
9090
* timestreamConfig: { // TimestreamConfig

clients/client-iotfleetwise/src/commands/CreateDecoderManifestCommand.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export interface CreateDecoderManifestCommandOutput extends CreateDecoderManifes
5757
* signalDecoders: [ // SignalDecoders
5858
* { // SignalDecoder
5959
* fullyQualifiedName: "STRING_VALUE", // required
60-
* type: "STRING_VALUE", // required
60+
* type: "CAN_SIGNAL" || "OBD_SIGNAL" || "MESSAGE_SIGNAL", // required
6161
* interfaceId: "STRING_VALUE", // required
6262
* canSignal: { // CanSignal
6363
* messageId: Number("int"), // required
@@ -85,7 +85,7 @@ export interface CreateDecoderManifestCommandOutput extends CreateDecoderManifes
8585
* structuredMessage: { // StructuredMessage Union: only one key present
8686
* primitiveMessageDefinition: { // PrimitiveMessageDefinition Union: only one key present
8787
* ros2PrimitiveMessageDefinition: { // ROS2PrimitiveMessageDefinition
88-
* primitiveType: "STRING_VALUE", // required
88+
* primitiveType: "BOOL" || "BYTE" || "CHAR" || "FLOAT32" || "FLOAT64" || "INT8" || "UINT8" || "INT16" || "UINT16" || "INT32" || "UINT32" || "INT64" || "UINT64" || "STRING" || "WSTRING", // required
8989
* offset: Number("double"),
9090
* scaling: Number("double"),
9191
* upperBound: Number("long"),
@@ -96,7 +96,7 @@ export interface CreateDecoderManifestCommandOutput extends CreateDecoderManifes
9696
* memberType: {// Union: only one key present
9797
* primitiveMessageDefinition: {// Union: only one key present
9898
* ros2PrimitiveMessageDefinition: {
99-
* primitiveType: "STRING_VALUE", // required
99+
* primitiveType: "BOOL" || "BYTE" || "CHAR" || "FLOAT32" || "FLOAT64" || "INT8" || "UINT8" || "INT16" || "UINT16" || "INT32" || "UINT32" || "INT64" || "UINT64" || "STRING" || "WSTRING", // required
100100
* offset: Number("double"),
101101
* scaling: Number("double"),
102102
* upperBound: Number("long"),
@@ -105,7 +105,7 @@ export interface CreateDecoderManifestCommandOutput extends CreateDecoderManifes
105105
* structuredMessageListDefinition: {
106106
* name: "STRING_VALUE", // required
107107
* memberType: "<StructuredMessage>", // required
108-
* listType: "STRING_VALUE", // required
108+
* listType: "FIXED_CAPACITY" || "DYNAMIC_UNBOUNDED_CAPACITY" || "DYNAMIC_BOUNDED_CAPACITY", // required
109109
* capacity: Number("int"),
110110
* },
111111
* structuredMessageDefinition: [ // StructuredMessageDefinition
@@ -115,7 +115,7 @@ export interface CreateDecoderManifestCommandOutput extends CreateDecoderManifes
115115
* },
116116
* ],
117117
* },
118-
* listType: "STRING_VALUE", // required
118+
* listType: "FIXED_CAPACITY" || "DYNAMIC_UNBOUNDED_CAPACITY" || "DYNAMIC_BOUNDED_CAPACITY", // required
119119
* capacity: Number("int"),
120120
* },
121121
* structuredMessageDefinition: [
@@ -131,7 +131,7 @@ export interface CreateDecoderManifestCommandOutput extends CreateDecoderManifes
131131
* networkInterfaces: [ // NetworkInterfaces
132132
* { // NetworkInterface
133133
* interfaceId: "STRING_VALUE", // required
134-
* type: "STRING_VALUE", // required
134+
* type: "CAN_INTERFACE" || "OBD_INTERFACE" || "VEHICLE_MIDDLEWARE", // required
135135
* canInterface: { // CanInterface
136136
* name: "STRING_VALUE", // required
137137
* protocolName: "STRING_VALUE",
@@ -148,7 +148,7 @@ export interface CreateDecoderManifestCommandOutput extends CreateDecoderManifes
148148
* },
149149
* vehicleMiddleware: { // VehicleMiddleware
150150
* name: "STRING_VALUE", // required
151-
* protocolName: "STRING_VALUE", // required
151+
* protocolName: "ROS_2", // required
152152
* },
153153
* },
154154
* ],

clients/client-iotfleetwise/src/commands/CreateSignalCatalogCommand.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export interface CreateSignalCatalogCommandOutput extends CreateSignalCatalogRes
4949
* },
5050
* sensor: { // Sensor
5151
* fullyQualifiedName: "STRING_VALUE", // required
52-
* dataType: "STRING_VALUE", // required
52+
* dataType: "INT8" || "UINT8" || "INT16" || "UINT16" || "INT32" || "UINT32" || "INT64" || "UINT64" || "BOOLEAN" || "FLOAT" || "DOUBLE" || "STRING" || "UNIX_TIMESTAMP" || "INT8_ARRAY" || "UINT8_ARRAY" || "INT16_ARRAY" || "UINT16_ARRAY" || "INT32_ARRAY" || "UINT32_ARRAY" || "INT64_ARRAY" || "UINT64_ARRAY" || "BOOLEAN_ARRAY" || "FLOAT_ARRAY" || "DOUBLE_ARRAY" || "STRING_ARRAY" || "UNIX_TIMESTAMP_ARRAY" || "UNKNOWN" || "STRUCT" || "STRUCT_ARRAY", // required
5353
* description: "STRING_VALUE",
5454
* unit: "STRING_VALUE",
5555
* allowedValues: [ // listOfStrings
@@ -63,7 +63,7 @@ export interface CreateSignalCatalogCommandOutput extends CreateSignalCatalogRes
6363
* },
6464
* actuator: { // Actuator
6565
* fullyQualifiedName: "STRING_VALUE", // required
66-
* dataType: "STRING_VALUE", // required
66+
* dataType: "INT8" || "UINT8" || "INT16" || "UINT16" || "INT32" || "UINT32" || "INT64" || "UINT64" || "BOOLEAN" || "FLOAT" || "DOUBLE" || "STRING" || "UNIX_TIMESTAMP" || "INT8_ARRAY" || "UINT8_ARRAY" || "INT16_ARRAY" || "UINT16_ARRAY" || "INT32_ARRAY" || "UINT32_ARRAY" || "INT64_ARRAY" || "UINT64_ARRAY" || "BOOLEAN_ARRAY" || "FLOAT_ARRAY" || "DOUBLE_ARRAY" || "STRING_ARRAY" || "UNIX_TIMESTAMP_ARRAY" || "UNKNOWN" || "STRUCT" || "STRUCT_ARRAY", // required
6767
* description: "STRING_VALUE",
6868
* unit: "STRING_VALUE",
6969
* allowedValues: [
@@ -78,7 +78,7 @@ export interface CreateSignalCatalogCommandOutput extends CreateSignalCatalogRes
7878
* },
7979
* attribute: { // Attribute
8080
* fullyQualifiedName: "STRING_VALUE", // required
81-
* dataType: "STRING_VALUE", // required
81+
* dataType: "INT8" || "UINT8" || "INT16" || "UINT16" || "INT32" || "UINT32" || "INT64" || "UINT64" || "BOOLEAN" || "FLOAT" || "DOUBLE" || "STRING" || "UNIX_TIMESTAMP" || "INT8_ARRAY" || "UINT8_ARRAY" || "INT16_ARRAY" || "UINT16_ARRAY" || "INT32_ARRAY" || "UINT32_ARRAY" || "INT64_ARRAY" || "UINT64_ARRAY" || "BOOLEAN_ARRAY" || "FLOAT_ARRAY" || "DOUBLE_ARRAY" || "STRING_ARRAY" || "UNIX_TIMESTAMP_ARRAY" || "UNKNOWN" || "STRUCT" || "STRUCT_ARRAY", // required
8282
* description: "STRING_VALUE",
8383
* unit: "STRING_VALUE",
8484
* allowedValues: [
@@ -99,8 +99,8 @@ export interface CreateSignalCatalogCommandOutput extends CreateSignalCatalogRes
9999
* },
100100
* property: { // CustomProperty
101101
* fullyQualifiedName: "STRING_VALUE", // required
102-
* dataType: "STRING_VALUE", // required
103-
* dataEncoding: "STRING_VALUE",
102+
* dataType: "INT8" || "UINT8" || "INT16" || "UINT16" || "INT32" || "UINT32" || "INT64" || "UINT64" || "BOOLEAN" || "FLOAT" || "DOUBLE" || "STRING" || "UNIX_TIMESTAMP" || "INT8_ARRAY" || "UINT8_ARRAY" || "INT16_ARRAY" || "UINT16_ARRAY" || "INT32_ARRAY" || "UINT32_ARRAY" || "INT64_ARRAY" || "UINT64_ARRAY" || "BOOLEAN_ARRAY" || "FLOAT_ARRAY" || "DOUBLE_ARRAY" || "STRING_ARRAY" || "UNIX_TIMESTAMP_ARRAY" || "UNKNOWN" || "STRUCT" || "STRUCT_ARRAY", // required
103+
* dataEncoding: "BINARY" || "TYPED",
104104
* description: "STRING_VALUE",
105105
* deprecationMessage: "STRING_VALUE",
106106
* comment: "STRING_VALUE",

clients/client-iotfleetwise/src/commands/CreateVehicleCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export interface CreateVehicleCommandOutput extends CreateVehicleResponse, __Met
5050
* attributes: { // attributesMap
5151
* "<keys>": "STRING_VALUE",
5252
* },
53-
* associationBehavior: "STRING_VALUE",
53+
* associationBehavior: "CreateIotThing" || "ValidateIotThingExists",
5454
* tags: [ // TagList
5555
* { // Tag
5656
* Key: "STRING_VALUE", // required

clients/client-iotfleetwise/src/commands/GetCampaignCommand.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ export interface GetCampaignCommandOutput extends GetCampaignResponse, __Metadat
4646
* // description: "STRING_VALUE",
4747
* // signalCatalogArn: "STRING_VALUE",
4848
* // targetArn: "STRING_VALUE",
49-
* // status: "STRING_VALUE",
49+
* // status: "CREATING" || "WAITING_FOR_APPROVAL" || "RUNNING" || "SUSPENDED",
5050
* // startTime: new Date("TIMESTAMP"),
5151
* // expiryTime: new Date("TIMESTAMP"),
5252
* // postTriggerCollectionDuration: Number("long"),
53-
* // diagnosticsMode: "STRING_VALUE",
54-
* // spoolingMode: "STRING_VALUE",
55-
* // compression: "STRING_VALUE",
53+
* // diagnosticsMode: "OFF" || "SEND_ACTIVE_DTCS",
54+
* // spoolingMode: "OFF" || "TO_DISK",
55+
* // compression: "OFF" || "SNAPPY",
5656
* // priority: Number("int"),
5757
* // signalsToCollect: [ // SignalInformationList
5858
* // { // SignalInformation
@@ -68,7 +68,7 @@ export interface GetCampaignCommandOutput extends GetCampaignResponse, __Metadat
6868
* // conditionBasedCollectionScheme: { // ConditionBasedCollectionScheme
6969
* // expression: "STRING_VALUE", // required
7070
* // minimumTriggerIntervalMs: Number("long"),
71-
* // triggerMode: "STRING_VALUE",
71+
* // triggerMode: "ALWAYS" || "RISING_EDGE",
7272
* // conditionLanguageVersion: Number("int"),
7373
* // },
7474
* // },
@@ -81,8 +81,8 @@ export interface GetCampaignCommandOutput extends GetCampaignResponse, __Metadat
8181
* // { // DataDestinationConfig Union: only one key present
8282
* // s3Config: { // S3Config
8383
* // bucketArn: "STRING_VALUE", // required
84-
* // dataFormat: "STRING_VALUE",
85-
* // storageCompressionFormat: "STRING_VALUE",
84+
* // dataFormat: "JSON" || "PARQUET",
85+
* // storageCompressionFormat: "NONE" || "GZIP",
8686
* // prefix: "STRING_VALUE",
8787
* // },
8888
* // timestreamConfig: { // TimestreamConfig

clients/client-iotfleetwise/src/commands/GetDecoderManifestCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export interface GetDecoderManifestCommandOutput extends GetDecoderManifestRespo
4545
* // arn: "STRING_VALUE", // required
4646
* // description: "STRING_VALUE",
4747
* // modelManifestArn: "STRING_VALUE",
48-
* // status: "STRING_VALUE",
48+
* // status: "ACTIVE" || "DRAFT" || "INVALID" || "VALIDATING",
4949
* // creationTime: new Date("TIMESTAMP"), // required
5050
* // lastModificationTime: new Date("TIMESTAMP"), // required
5151
* // message: "STRING_VALUE",

clients/client-iotfleetwise/src/commands/GetEncryptionConfigurationCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ export interface GetEncryptionConfigurationCommandOutput extends GetEncryptionCo
4040
* const response = await client.send(command);
4141
* // { // GetEncryptionConfigurationResponse
4242
* // kmsKeyId: "STRING_VALUE",
43-
* // encryptionStatus: "STRING_VALUE", // required
44-
* // encryptionType: "STRING_VALUE", // required
43+
* // encryptionStatus: "PENDING" || "SUCCESS" || "FAILURE", // required
44+
* // encryptionType: "KMS_BASED_ENCRYPTION" || "FLEETWISE_DEFAULT_ENCRYPTION", // required
4545
* // errorMessage: "STRING_VALUE",
4646
* // creationTime: new Date("TIMESTAMP"),
4747
* // lastModificationTime: new Date("TIMESTAMP"),

clients/client-iotfleetwise/src/commands/GetLoggingOptionsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export interface GetLoggingOptionsCommandOutput extends GetLoggingOptionsRespons
4040
* const response = await client.send(command);
4141
* // { // GetLoggingOptionsResponse
4242
* // cloudWatchLogDelivery: { // CloudWatchLogDeliveryOptions
43-
* // logType: "STRING_VALUE", // required
43+
* // logType: "OFF" || "ERROR", // required
4444
* // logGroupName: "STRING_VALUE",
4545
* // },
4646
* // };

clients/client-iotfleetwise/src/commands/GetModelManifestCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export interface GetModelManifestCommandOutput extends GetModelManifestResponse,
4545
* // arn: "STRING_VALUE", // required
4646
* // description: "STRING_VALUE",
4747
* // signalCatalogArn: "STRING_VALUE",
48-
* // status: "STRING_VALUE",
48+
* // status: "ACTIVE" || "DRAFT" || "INVALID" || "VALIDATING",
4949
* // creationTime: new Date("TIMESTAMP"), // required
5050
* // lastModificationTime: new Date("TIMESTAMP"), // required
5151
* // };

clients/client-iotfleetwise/src/commands/GetRegisterAccountStatusCommand.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,18 +46,18 @@ export interface GetRegisterAccountStatusCommandOutput extends GetRegisterAccoun
4646
* const response = await client.send(command);
4747
* // { // GetRegisterAccountStatusResponse
4848
* // customerAccountId: "STRING_VALUE", // required
49-
* // accountStatus: "STRING_VALUE", // required
49+
* // accountStatus: "REGISTRATION_PENDING" || "REGISTRATION_SUCCESS" || "REGISTRATION_FAILURE", // required
5050
* // timestreamRegistrationResponse: { // TimestreamRegistrationResponse
5151
* // timestreamDatabaseName: "STRING_VALUE", // required
5252
* // timestreamTableName: "STRING_VALUE", // required
5353
* // timestreamDatabaseArn: "STRING_VALUE",
5454
* // timestreamTableArn: "STRING_VALUE",
55-
* // registrationStatus: "STRING_VALUE", // required
55+
* // registrationStatus: "REGISTRATION_PENDING" || "REGISTRATION_SUCCESS" || "REGISTRATION_FAILURE", // required
5656
* // errorMessage: "STRING_VALUE",
5757
* // },
5858
* // iamRegistrationResponse: { // IamRegistrationResponse
5959
* // roleArn: "STRING_VALUE", // required
60-
* // registrationStatus: "STRING_VALUE", // required
60+
* // registrationStatus: "REGISTRATION_PENDING" || "REGISTRATION_SUCCESS" || "REGISTRATION_FAILURE", // required
6161
* // errorMessage: "STRING_VALUE",
6262
* // },
6363
* // creationTime: new Date("TIMESTAMP"), // required

clients/client-iotfleetwise/src/commands/GetVehicleStatusCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export interface GetVehicleStatusCommandOutput extends GetVehicleStatusResponse,
4848
* // { // VehicleStatus
4949
* // campaignName: "STRING_VALUE",
5050
* // vehicleName: "STRING_VALUE",
51-
* // status: "STRING_VALUE",
51+
* // status: "CREATED" || "READY" || "HEALTHY" || "SUSPENDED" || "DELETING",
5252
* // },
5353
* // ],
5454
* // nextToken: "STRING_VALUE",

clients/client-iotfleetwise/src/commands/ListCampaignsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export interface ListCampaignsCommandOutput extends ListCampaignsResponse, __Met
5353
* // description: "STRING_VALUE",
5454
* // signalCatalogArn: "STRING_VALUE",
5555
* // targetArn: "STRING_VALUE",
56-
* // status: "STRING_VALUE",
56+
* // status: "CREATING" || "WAITING_FOR_APPROVAL" || "RUNNING" || "SUSPENDED",
5757
* // creationTime: new Date("TIMESTAMP"), // required
5858
* // lastModificationTime: new Date("TIMESTAMP"), // required
5959
* // },

clients/client-iotfleetwise/src/commands/ListDecoderManifestNetworkInterfacesCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export interface ListDecoderManifestNetworkInterfacesCommandOutput
5757
* // networkInterfaces: [ // NetworkInterfaces
5858
* // { // NetworkInterface
5959
* // interfaceId: "STRING_VALUE", // required
60-
* // type: "STRING_VALUE", // required
60+
* // type: "CAN_INTERFACE" || "OBD_INTERFACE" || "VEHICLE_MIDDLEWARE", // required
6161
* // canInterface: { // CanInterface
6262
* // name: "STRING_VALUE", // required
6363
* // protocolName: "STRING_VALUE",
@@ -74,7 +74,7 @@ export interface ListDecoderManifestNetworkInterfacesCommandOutput
7474
* // },
7575
* // vehicleMiddleware: { // VehicleMiddleware
7676
* // name: "STRING_VALUE", // required
77-
* // protocolName: "STRING_VALUE", // required
77+
* // protocolName: "ROS_2", // required
7878
* // },
7979
* // },
8080
* // ],

clients/client-iotfleetwise/src/commands/ListDecoderManifestSignalsCommand.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export interface ListDecoderManifestSignalsCommandOutput extends ListDecoderMani
4949
* // signalDecoders: [ // SignalDecoders
5050
* // { // SignalDecoder
5151
* // fullyQualifiedName: "STRING_VALUE", // required
52-
* // type: "STRING_VALUE", // required
52+
* // type: "CAN_SIGNAL" || "OBD_SIGNAL" || "MESSAGE_SIGNAL", // required
5353
* // interfaceId: "STRING_VALUE", // required
5454
* // canSignal: { // CanSignal
5555
* // messageId: Number("int"), // required
@@ -77,7 +77,7 @@ export interface ListDecoderManifestSignalsCommandOutput extends ListDecoderMani
7777
* // structuredMessage: { // StructuredMessage Union: only one key present
7878
* // primitiveMessageDefinition: { // PrimitiveMessageDefinition Union: only one key present
7979
* // ros2PrimitiveMessageDefinition: { // ROS2PrimitiveMessageDefinition
80-
* // primitiveType: "STRING_VALUE", // required
80+
* // primitiveType: "BOOL" || "BYTE" || "CHAR" || "FLOAT32" || "FLOAT64" || "INT8" || "UINT8" || "INT16" || "UINT16" || "INT32" || "UINT32" || "INT64" || "UINT64" || "STRING" || "WSTRING", // required
8181
* // offset: Number("double"),
8282
* // scaling: Number("double"),
8383
* // upperBound: Number("long"),
@@ -88,7 +88,7 @@ export interface ListDecoderManifestSignalsCommandOutput extends ListDecoderMani
8888
* // memberType: {// Union: only one key present
8989
* // primitiveMessageDefinition: {// Union: only one key present
9090
* // ros2PrimitiveMessageDefinition: {
91-
* // primitiveType: "STRING_VALUE", // required
91+
* // primitiveType: "BOOL" || "BYTE" || "CHAR" || "FLOAT32" || "FLOAT64" || "INT8" || "UINT8" || "INT16" || "UINT16" || "INT32" || "UINT32" || "INT64" || "UINT64" || "STRING" || "WSTRING", // required
9292
* // offset: Number("double"),
9393
* // scaling: Number("double"),
9494
* // upperBound: Number("long"),
@@ -97,7 +97,7 @@ export interface ListDecoderManifestSignalsCommandOutput extends ListDecoderMani
9797
* // structuredMessageListDefinition: {
9898
* // name: "STRING_VALUE", // required
9999
* // memberType: "<StructuredMessage>", // required
100-
* // listType: "STRING_VALUE", // required
100+
* // listType: "FIXED_CAPACITY" || "DYNAMIC_UNBOUNDED_CAPACITY" || "DYNAMIC_BOUNDED_CAPACITY", // required
101101
* // capacity: Number("int"),
102102
* // },
103103
* // structuredMessageDefinition: [ // StructuredMessageDefinition
@@ -107,7 +107,7 @@ export interface ListDecoderManifestSignalsCommandOutput extends ListDecoderMani
107107
* // },
108108
* // ],
109109
* // },
110-
* // listType: "STRING_VALUE", // required
110+
* // listType: "FIXED_CAPACITY" || "DYNAMIC_UNBOUNDED_CAPACITY" || "DYNAMIC_BOUNDED_CAPACITY", // required
111111
* // capacity: Number("int"),
112112
* // },
113113
* // structuredMessageDefinition: [

0 commit comments

Comments
 (0)