aws-sdk-iotsitewise 1.67.0 → 1.68.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 49066f0eab9d4a565e46fc6cd42eea2e51612d710845f39d1dadf1a87293cc2d
4
- data.tar.gz: c518baef482646c7ce294525fc3cb6219e041ce5709170e446bcb59e683eb9c1
3
+ metadata.gz: 3c5f683e75b3dc915cc40661c27438c56f0ad0331d9ceb122ee1067594b35987
4
+ data.tar.gz: 65a15b2b86d1346d53ee806f088556a29d37cf3d768d099343d1f46f59d22d26
5
5
  SHA512:
6
- metadata.gz: c163b36689455288ef33f11f3e7a3d1d2dce74e82bd11dfa264b5c3e27095d0736790c961e10809de7fc77e6d1225bcf80fb011a5df8203039cfb5ea925d0474
7
- data.tar.gz: 737552d07ccfd21bb6efc37cae0f7100885803c008be4f775585f6fba78f4e41add0cbd6e6e0d6e5484117caf3456e51ecc8360aefcb73506c7c6724d6158499
6
+ metadata.gz: a3b50a3c574b68c114729231ab5faebe24cdf49ad7d3803d62ab9f20393864c27a4060afbe8f7ed3667d5ea239ef7c3a68453fc522bd47cf6310b3f40543fd3d
7
+ data.tar.gz: f39b4ece7cfce5892777b302fd0b2016867ff6eb0826578ba6b7ff080c90ff8b767656fd20db15742c9c2a4585afe2324f005f583946626dc29d01fad261f81c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2024-07-24)
5
+ ------------------
6
+
7
+ * Feature - Adds support for creating SiteWise Edge gateways that run on a Siemens Industrial Edge Device.
8
+
4
9
  1.67.0 (2024-07-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.67.0
1
+ 1.68.0
@@ -1152,7 +1152,7 @@ module Aws::IoTSiteWise
1152
1152
  # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/define-models.html
1153
1153
  #
1154
1154
  # @option params [required, String] :asset_model_name
1155
- # A unique, friendly name for the asset model.
1155
+ # A unique name for the asset model.
1156
1156
  #
1157
1157
  # @option params [String] :asset_model_description
1158
1158
  # A description for the asset model.
@@ -1193,13 +1193,15 @@ module Aws::IoTSiteWise
1193
1193
  #
1194
1194
  # <note markdown="1"> When creating custom composite models, you need to use
1195
1195
  # [CreateAssetModelCompositeModel][1]. For more information, see
1196
- # &lt;LINK&gt;.
1196
+ # [Creating custom composite models (Components)][2] in the *IoT
1197
+ # SiteWise User Guide*.
1197
1198
  #
1198
1199
  # </note>
1199
1200
  #
1200
1201
  #
1201
1202
  #
1202
1203
  # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_CreateAssetModelCompositeModel.html
1204
+ # [2]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/create-custom-composite-models.html
1203
1205
  #
1204
1206
  # @option params [String] :client_token
1205
1207
  # A unique case-sensitive identifier that you can provide to ensure the
@@ -1500,7 +1502,7 @@ module Aws::IoTSiteWise
1500
1502
  # A description for the composite model.
1501
1503
  #
1502
1504
  # @option params [required, String] :asset_model_composite_model_name
1503
- # A unique, friendly name for the composite model.
1505
+ # A unique name for the composite model.
1504
1506
  #
1505
1507
  # @option params [required, String] :asset_model_composite_model_type
1506
1508
  # The composite model type. Valid values are `AWS/ALARM`, `CUSTOM`, or `
@@ -1515,18 +1517,21 @@ module Aws::IoTSiteWise
1515
1517
  # not need to pass this option.**
1516
1518
  #
1517
1519
  # @option params [String] :composed_asset_model_id
1518
- # The ID of a composite model on this asset.
1520
+ # The ID of a component model which is reused to create this composite
1521
+ # model.
1519
1522
  #
1520
1523
  # @option params [Array<Types::AssetModelPropertyDefinition>] :asset_model_composite_model_properties
1521
1524
  # The property definitions of the composite model. For more information,
1522
- # see &lt;LINK&gt;.
1525
+ # see [ Inline custom composite models][1] in the *IoT SiteWise User
1526
+ # Guide*.
1523
1527
  #
1524
1528
  # You can specify up to 200 properties per composite model. For more
1525
- # information, see [Quotas][1] in the *IoT SiteWise User Guide*.
1529
+ # information, see [Quotas][2] in the *IoT SiteWise User Guide*.
1526
1530
  #
1527
1531
  #
1528
1532
  #
1529
- # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html
1533
+ # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/custom-composite-models.html#inline-composite-models
1534
+ # [2]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html
1530
1535
  #
1531
1536
  # @return [Types::CreateAssetModelCompositeModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1532
1537
  #
@@ -1814,7 +1819,7 @@ module Aws::IoTSiteWise
1814
1819
  # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/gateway-connector.html
1815
1820
  #
1816
1821
  # @option params [required, String] :gateway_name
1817
- # A unique, friendly name for the gateway.
1822
+ # A unique name for the gateway.
1818
1823
  #
1819
1824
  # @option params [required, Types::GatewayPlatform] :gateway_platform
1820
1825
  # The gateway's platform. You can only specify one platform in a
@@ -1837,7 +1842,7 @@ module Aws::IoTSiteWise
1837
1842
  # @example Request syntax with placeholder values
1838
1843
  #
1839
1844
  # resp = client.create_gateway({
1840
- # gateway_name: "Name", # required
1845
+ # gateway_name: "GatewayName", # required
1841
1846
  # gateway_platform: { # required
1842
1847
  # greengrass: {
1843
1848
  # group_arn: "ARN", # required
@@ -1845,6 +1850,9 @@ module Aws::IoTSiteWise
1845
1850
  # greengrass_v2: {
1846
1851
  # core_device_thing_name: "CoreDeviceThingName", # required
1847
1852
  # },
1853
+ # siemens_ie: {
1854
+ # iot_core_thing_name: "IotCoreThingName", # required
1855
+ # },
1848
1856
  # },
1849
1857
  # tags: {
1850
1858
  # "TagKey" => "TagValue",
@@ -3300,9 +3308,10 @@ module Aws::IoTSiteWise
3300
3308
  # resp.gateway_arn #=> String
3301
3309
  # resp.gateway_platform.greengrass.group_arn #=> String
3302
3310
  # resp.gateway_platform.greengrass_v2.core_device_thing_name #=> String
3311
+ # resp.gateway_platform.siemens_ie.iot_core_thing_name #=> String
3303
3312
  # resp.gateway_capability_summaries #=> Array
3304
3313
  # resp.gateway_capability_summaries[0].capability_namespace #=> String
3305
- # resp.gateway_capability_summaries[0].capability_sync_status #=> String, one of "IN_SYNC", "OUT_OF_SYNC", "SYNC_FAILED", "UNKNOWN"
3314
+ # resp.gateway_capability_summaries[0].capability_sync_status #=> String, one of "IN_SYNC", "OUT_OF_SYNC", "SYNC_FAILED", "UNKNOWN", "NOT_APPLICABLE"
3306
3315
  # resp.creation_date #=> Time
3307
3316
  # resp.last_update_date #=> Time
3308
3317
  #
@@ -3354,7 +3363,7 @@ module Aws::IoTSiteWise
3354
3363
  # resp.gateway_id #=> String
3355
3364
  # resp.capability_namespace #=> String
3356
3365
  # resp.capability_configuration #=> String
3357
- # resp.capability_sync_status #=> String, one of "IN_SYNC", "OUT_OF_SYNC", "SYNC_FAILED", "UNKNOWN"
3366
+ # resp.capability_sync_status #=> String, one of "IN_SYNC", "OUT_OF_SYNC", "SYNC_FAILED", "UNKNOWN", "NOT_APPLICABLE"
3358
3367
  #
3359
3368
  # @overload describe_gateway_capability_configuration(params = {})
3360
3369
  # @param [Hash] params ({})
@@ -5093,9 +5102,10 @@ module Aws::IoTSiteWise
5093
5102
  # resp.gateway_summaries[0].gateway_name #=> String
5094
5103
  # resp.gateway_summaries[0].gateway_platform.greengrass.group_arn #=> String
5095
5104
  # resp.gateway_summaries[0].gateway_platform.greengrass_v2.core_device_thing_name #=> String
5105
+ # resp.gateway_summaries[0].gateway_platform.siemens_ie.iot_core_thing_name #=> String
5096
5106
  # resp.gateway_summaries[0].gateway_capability_summaries #=> Array
5097
5107
  # resp.gateway_summaries[0].gateway_capability_summaries[0].capability_namespace #=> String
5098
- # resp.gateway_summaries[0].gateway_capability_summaries[0].capability_sync_status #=> String, one of "IN_SYNC", "OUT_OF_SYNC", "SYNC_FAILED", "UNKNOWN"
5108
+ # resp.gateway_summaries[0].gateway_capability_summaries[0].capability_sync_status #=> String, one of "IN_SYNC", "OUT_OF_SYNC", "SYNC_FAILED", "UNKNOWN", "NOT_APPLICABLE"
5099
5109
  # resp.gateway_summaries[0].creation_date #=> Time
5100
5110
  # resp.gateway_summaries[0].last_update_date #=> Time
5101
5111
  # resp.next_token #=> String
@@ -5720,22 +5730,23 @@ module Aws::IoTSiteWise
5720
5730
  # information, see [Updating assets and models][1] in the *IoT SiteWise
5721
5731
  # User Guide*.
5722
5732
  #
5723
- # This operation overwrites the existing model with the provided model.
5724
- # To avoid deleting your asset model's properties or hierarchies, you
5725
- # must include their IDs and definitions in the updated asset model
5726
- # payload. For more information, see [DescribeAssetModel][2].
5733
+ # If you remove a property from an asset model, IoT SiteWise deletes all
5734
+ # previous data for that property. You can’t change the type or data
5735
+ # type of an existing property.
5727
5736
  #
5728
- # If you remove a property from an asset model, IoT SiteWise deletes
5729
- # all
5730
- # previous data for that property. If you remove a hierarchy definition
5731
- # from an asset model, IoT SiteWise disassociates every asset associated
5732
- # with that hierarchy. You can't change the type or data type of an
5733
- # existing property.
5737
+ # To replace an existing asset model property with a new one with the
5738
+ # same `name`, do the following:
5739
+ #
5740
+ # 1. Submit an `UpdateAssetModel` request with the entire existing
5741
+ # property removed.
5742
+ #
5743
+ # 2. Submit a second `UpdateAssetModel` request that includes the new
5744
+ # property. The new asset property will have the same `name` as the
5745
+ # previous one and IoT SiteWise will generate a new unique `id`.
5734
5746
  #
5735
5747
  #
5736
5748
  #
5737
5749
  # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/update-assets-and-models.html
5738
- # [2]: https://docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_DescribeAssetModel.html
5739
5750
  #
5740
5751
  # @option params [required, String] :asset_model_id
5741
5752
  # The ID of the asset model to update. This can be either the actual ID
@@ -5748,7 +5759,7 @@ module Aws::IoTSiteWise
5748
5759
  # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/object-ids.html#external-id-references
5749
5760
  #
5750
5761
  # @option params [required, String] :asset_model_name
5751
- # A unique, friendly name for the asset model.
5762
+ # A unique name for the asset model.
5752
5763
  #
5753
5764
  # @option params [String] :asset_model_description
5754
5765
  # A description for the asset model.
@@ -5790,13 +5801,15 @@ module Aws::IoTSiteWise
5790
5801
  #
5791
5802
  # <note markdown="1"> When creating custom composite models, you need to use
5792
5803
  # [CreateAssetModelCompositeModel][1]. For more information, see
5793
- # &lt;LINK&gt;.
5804
+ # [Creating custom composite models (Components)][2] in the *IoT
5805
+ # SiteWise User Guide*.
5794
5806
  #
5795
5807
  # </note>
5796
5808
  #
5797
5809
  #
5798
5810
  #
5799
5811
  # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_CreateAssetModelCompositeModel.html
5812
+ # [2]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/create-custom-composite-models.html
5800
5813
  #
5801
5814
  # @option params [String] :client_token
5802
5815
  # A unique case-sensitive identifier that you can provide to ensure the
@@ -6062,7 +6075,7 @@ module Aws::IoTSiteWise
6062
6075
  # A description for the composite model.
6063
6076
  #
6064
6077
  # @option params [required, String] :asset_model_composite_model_name
6065
- # A unique, friendly name for the composite model.
6078
+ # A unique name for the composite model.
6066
6079
  #
6067
6080
  # @option params [String] :client_token
6068
6081
  # A unique case-sensitive identifier that you can provide to ensure the
@@ -6074,14 +6087,16 @@ module Aws::IoTSiteWise
6074
6087
  #
6075
6088
  # @option params [Array<Types::AssetModelProperty>] :asset_model_composite_model_properties
6076
6089
  # The property definitions of the composite model. For more information,
6077
- # see &lt;LINK&gt;.
6090
+ # see [ Inline custom composite models][1] in the *IoT SiteWise User
6091
+ # Guide*.
6078
6092
  #
6079
6093
  # You can specify up to 200 properties per composite model. For more
6080
- # information, see [Quotas][1] in the *IoT SiteWise User Guide*.
6094
+ # information, see [Quotas][2] in the *IoT SiteWise User Guide*.
6081
6095
  #
6082
6096
  #
6083
6097
  #
6084
- # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html
6098
+ # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/custom-composite-models.html#inline-composite-models
6099
+ # [2]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html
6085
6100
  #
6086
6101
  # @return [Types::UpdateAssetModelCompositeModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6087
6102
  #
@@ -6342,7 +6357,7 @@ module Aws::IoTSiteWise
6342
6357
  # The ID of the gateway to update.
6343
6358
  #
6344
6359
  # @option params [required, String] :gateway_name
6345
- # A unique, friendly name for the gateway.
6360
+ # A unique name for the gateway.
6346
6361
  #
6347
6362
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
6348
6363
  #
@@ -6350,7 +6365,7 @@ module Aws::IoTSiteWise
6350
6365
  #
6351
6366
  # resp = client.update_gateway({
6352
6367
  # gateway_id: "ID", # required
6353
- # gateway_name: "Name", # required
6368
+ # gateway_name: "GatewayName", # required
6354
6369
  # })
6355
6370
  #
6356
6371
  # @overload update_gateway(params = {})
@@ -6407,7 +6422,7 @@ module Aws::IoTSiteWise
6407
6422
  # @example Response structure
6408
6423
  #
6409
6424
  # resp.capability_namespace #=> String
6410
- # resp.capability_sync_status #=> String, one of "IN_SYNC", "OUT_OF_SYNC", "SYNC_FAILED", "UNKNOWN"
6425
+ # resp.capability_sync_status #=> String, one of "IN_SYNC", "OUT_OF_SYNC", "SYNC_FAILED", "UNKNOWN", "NOT_APPLICABLE"
6411
6426
  #
6412
6427
  # @overload update_gateway_capability_configuration(params = {})
6413
6428
  # @param [Hash] params ({})
@@ -6561,7 +6576,7 @@ module Aws::IoTSiteWise
6561
6576
  params: params,
6562
6577
  config: config)
6563
6578
  context[:gem_name] = 'aws-sdk-iotsitewise'
6564
- context[:gem_version] = '1.67.0'
6579
+ context[:gem_version] = '1.68.0'
6565
6580
  Seahorse::Client::Request.new(handlers, context)
6566
6581
  end
6567
6582
 
@@ -279,6 +279,7 @@ module Aws::IoTSiteWise
279
279
  ForwardingConfigState = Shapes::StringShape.new(name: 'ForwardingConfigState')
280
280
  GatewayCapabilitySummaries = Shapes::ListShape.new(name: 'GatewayCapabilitySummaries')
281
281
  GatewayCapabilitySummary = Shapes::StructureShape.new(name: 'GatewayCapabilitySummary')
282
+ GatewayName = Shapes::StringShape.new(name: 'GatewayName')
282
283
  GatewayPlatform = Shapes::StructureShape.new(name: 'GatewayPlatform')
283
284
  GatewaySummaries = Shapes::ListShape.new(name: 'GatewaySummaries')
284
285
  GatewaySummary = Shapes::StructureShape.new(name: 'GatewaySummary')
@@ -315,6 +316,7 @@ module Aws::IoTSiteWise
315
316
  IntervalInSeconds = Shapes::IntegerShape.new(name: 'IntervalInSeconds')
316
317
  IntervalWindowInSeconds = Shapes::IntegerShape.new(name: 'IntervalWindowInSeconds')
317
318
  InvalidRequestException = Shapes::StructureShape.new(name: 'InvalidRequestException')
319
+ IotCoreThingName = Shapes::StringShape.new(name: 'IotCoreThingName')
318
320
  JobConfiguration = Shapes::StructureShape.new(name: 'JobConfiguration')
319
321
  JobStatus = Shapes::StringShape.new(name: 'JobStatus')
320
322
  JobSummaries = Shapes::ListShape.new(name: 'JobSummaries')
@@ -432,6 +434,7 @@ module Aws::IoTSiteWise
432
434
  ScalarType = Shapes::StringShape.new(name: 'ScalarType')
433
435
  ScalarValue = Shapes::StringShape.new(name: 'ScalarValue')
434
436
  ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
437
+ SiemensIE = Shapes::StructureShape.new(name: 'SiemensIE')
435
438
  StorageType = Shapes::StringShape.new(name: 'StorageType')
436
439
  String = Shapes::StringShape.new(name: 'String')
437
440
  TagKey = Shapes::StringShape.new(name: 'TagKey')
@@ -1095,7 +1098,7 @@ module Aws::IoTSiteWise
1095
1098
  CreateDashboardResponse.add_member(:dashboard_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "dashboardArn"))
1096
1099
  CreateDashboardResponse.struct_class = Types::CreateDashboardResponse
1097
1100
 
1098
- CreateGatewayRequest.add_member(:gateway_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "gatewayName"))
1101
+ CreateGatewayRequest.add_member(:gateway_name, Shapes::ShapeRef.new(shape: GatewayName, required: true, location_name: "gatewayName"))
1099
1102
  CreateGatewayRequest.add_member(:gateway_platform, Shapes::ShapeRef.new(shape: GatewayPlatform, required: true, location_name: "gatewayPlatform"))
1100
1103
  CreateGatewayRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1101
1104
  CreateGatewayRequest.struct_class = Types::CreateGatewayRequest
@@ -1369,7 +1372,7 @@ module Aws::IoTSiteWise
1369
1372
  DescribeGatewayRequest.struct_class = Types::DescribeGatewayRequest
1370
1373
 
1371
1374
  DescribeGatewayResponse.add_member(:gateway_id, Shapes::ShapeRef.new(shape: ID, required: true, location_name: "gatewayId"))
1372
- DescribeGatewayResponse.add_member(:gateway_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "gatewayName"))
1375
+ DescribeGatewayResponse.add_member(:gateway_name, Shapes::ShapeRef.new(shape: GatewayName, required: true, location_name: "gatewayName"))
1373
1376
  DescribeGatewayResponse.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "gatewayArn"))
1374
1377
  DescribeGatewayResponse.add_member(:gateway_platform, Shapes::ShapeRef.new(shape: GatewayPlatform, location_name: "gatewayPlatform"))
1375
1378
  DescribeGatewayResponse.add_member(:gateway_capability_summaries, Shapes::ShapeRef.new(shape: GatewayCapabilitySummaries, required: true, location_name: "gatewayCapabilitySummaries"))
@@ -1516,12 +1519,13 @@ module Aws::IoTSiteWise
1516
1519
 
1517
1520
  GatewayPlatform.add_member(:greengrass, Shapes::ShapeRef.new(shape: Greengrass, location_name: "greengrass"))
1518
1521
  GatewayPlatform.add_member(:greengrass_v2, Shapes::ShapeRef.new(shape: GreengrassV2, location_name: "greengrassV2"))
1522
+ GatewayPlatform.add_member(:siemens_ie, Shapes::ShapeRef.new(shape: SiemensIE, location_name: "siemensIE"))
1519
1523
  GatewayPlatform.struct_class = Types::GatewayPlatform
1520
1524
 
1521
1525
  GatewaySummaries.member = Shapes::ShapeRef.new(shape: GatewaySummary)
1522
1526
 
1523
1527
  GatewaySummary.add_member(:gateway_id, Shapes::ShapeRef.new(shape: ID, required: true, location_name: "gatewayId"))
1524
- GatewaySummary.add_member(:gateway_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "gatewayName"))
1528
+ GatewaySummary.add_member(:gateway_name, Shapes::ShapeRef.new(shape: GatewayName, required: true, location_name: "gatewayName"))
1525
1529
  GatewaySummary.add_member(:gateway_platform, Shapes::ShapeRef.new(shape: GatewayPlatform, location_name: "gatewayPlatform"))
1526
1530
  GatewaySummary.add_member(:gateway_capability_summaries, Shapes::ShapeRef.new(shape: GatewayCapabilitySummaries, location_name: "gatewayCapabilitySummaries"))
1527
1531
  GatewaySummary.add_member(:creation_date, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "creationDate"))
@@ -1970,6 +1974,9 @@ module Aws::IoTSiteWise
1970
1974
  ServiceUnavailableException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "message"))
1971
1975
  ServiceUnavailableException.struct_class = Types::ServiceUnavailableException
1972
1976
 
1977
+ SiemensIE.add_member(:iot_core_thing_name, Shapes::ShapeRef.new(shape: IotCoreThingName, required: true, location_name: "iotCoreThingName"))
1978
+ SiemensIE.struct_class = Types::SiemensIE
1979
+
1973
1980
  TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
1974
1981
 
1975
1982
  TagMap.key = Shapes::ShapeRef.new(shape: TagKey)
@@ -2104,7 +2111,7 @@ module Aws::IoTSiteWise
2104
2111
  UpdateGatewayCapabilityConfigurationResponse.struct_class = Types::UpdateGatewayCapabilityConfigurationResponse
2105
2112
 
2106
2113
  UpdateGatewayRequest.add_member(:gateway_id, Shapes::ShapeRef.new(shape: ID, required: true, location: "uri", location_name: "gatewayId"))
2107
- UpdateGatewayRequest.add_member(:gateway_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "gatewayName"))
2114
+ UpdateGatewayRequest.add_member(:gateway_name, Shapes::ShapeRef.new(shape: GatewayName, required: true, location_name: "gatewayName"))
2108
2115
  UpdateGatewayRequest.struct_class = Types::UpdateGatewayRequest
2109
2116
 
2110
2117
  UpdatePortalRequest.add_member(:portal_id, Shapes::ShapeRef.new(shape: ID, required: true, location: "uri", location_name: "portalId"))
@@ -2556,6 +2563,7 @@ module Aws::IoTSiteWise
2556
2563
  o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2557
2564
  o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
2558
2565
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2566
+ o.errors << Shapes::ShapeRef.new(shape: ConflictingOperationException)
2559
2567
  o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
2560
2568
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2561
2569
  end)
@@ -527,7 +527,7 @@ module Aws::IoTSiteWise
527
527
  # Contains a summary of the composite model.
528
528
  #
529
529
  # @!attribute [rw] id
530
- # The ID of the the composite model that this summary describes..
530
+ # The ID of the composite model that this summary describes..
531
531
  # @return [String]
532
532
  #
533
533
  # @!attribute [rw] external_id
@@ -541,24 +541,16 @@ module Aws::IoTSiteWise
541
541
  # @return [String]
542
542
  #
543
543
  # @!attribute [rw] name
544
- # The name of the the composite model that this summary describes..
544
+ # The name of the composite model that this summary describes..
545
545
  # @return [String]
546
546
  #
547
547
  # @!attribute [rw] type
548
- # The type of asset model.
549
- #
550
- # * **ASSET\_MODEL** – (default) An asset model that you can use to
551
- # create assets. Can't be included as a component in another asset
552
- # model.
553
- #
554
- # * **COMPONENT\_MODEL** – A reusable component that you can include
555
- # in the composite models of other asset models. You can't create
556
- # assets directly from this type of asset model.
548
+ # The composite model type. Valid values are `AWS/ALARM`, `CUSTOM`, or
549
+ # ` AWS/L4E_ANOMALY`.
557
550
  # @return [String]
558
551
  #
559
552
  # @!attribute [rw] description
560
- # The description of the the composite model that this summary
561
- # describes..
553
+ # The description of the composite model that this summary describes..
562
554
  # @return [String]
563
555
  #
564
556
  # @!attribute [rw] path
@@ -2585,7 +2577,7 @@ module Aws::IoTSiteWise
2585
2577
  # @return [String]
2586
2578
  #
2587
2579
  # @!attribute [rw] asset_model_composite_model_name
2588
- # A unique, friendly name for the composite model.
2580
+ # A unique name for the composite model.
2589
2581
  # @return [String]
2590
2582
  #
2591
2583
  # @!attribute [rw] asset_model_composite_model_type
@@ -2603,19 +2595,22 @@ module Aws::IoTSiteWise
2603
2595
  # @return [String]
2604
2596
  #
2605
2597
  # @!attribute [rw] composed_asset_model_id
2606
- # The ID of a composite model on this asset.
2598
+ # The ID of a component model which is reused to create this composite
2599
+ # model.
2607
2600
  # @return [String]
2608
2601
  #
2609
2602
  # @!attribute [rw] asset_model_composite_model_properties
2610
2603
  # The property definitions of the composite model. For more
2611
- # information, see &lt;LINK&gt;.
2604
+ # information, see [ Inline custom composite models][1] in the *IoT
2605
+ # SiteWise User Guide*.
2612
2606
  #
2613
2607
  # You can specify up to 200 properties per composite model. For more
2614
- # information, see [Quotas][1] in the *IoT SiteWise User Guide*.
2608
+ # information, see [Quotas][2] in the *IoT SiteWise User Guide*.
2615
2609
  #
2616
2610
  #
2617
2611
  #
2618
- # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html
2612
+ # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/custom-composite-models.html#inline-composite-models
2613
+ # [2]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html
2619
2614
  # @return [Array<Types::AssetModelPropertyDefinition>]
2620
2615
  #
2621
2616
  class CreateAssetModelCompositeModelRequest < Struct.new(
@@ -2661,7 +2656,7 @@ module Aws::IoTSiteWise
2661
2656
  end
2662
2657
 
2663
2658
  # @!attribute [rw] asset_model_name
2664
- # A unique, friendly name for the asset model.
2659
+ # A unique name for the asset model.
2665
2660
  # @return [String]
2666
2661
  #
2667
2662
  # @!attribute [rw] asset_model_description
@@ -2706,13 +2701,15 @@ module Aws::IoTSiteWise
2706
2701
  #
2707
2702
  # <note markdown="1"> When creating custom composite models, you need to use
2708
2703
  # [CreateAssetModelCompositeModel][1]. For more information, see
2709
- # &lt;LINK&gt;.
2704
+ # [Creating custom composite models (Components)][2] in the *IoT
2705
+ # SiteWise User Guide*.
2710
2706
  #
2711
2707
  # </note>
2712
2708
  #
2713
2709
  #
2714
2710
  #
2715
2711
  # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_CreateAssetModelCompositeModel.html
2712
+ # [2]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/create-custom-composite-models.html
2716
2713
  # @return [Array<Types::AssetModelCompositeModelDefinition>]
2717
2714
  #
2718
2715
  # @!attribute [rw] client_token
@@ -3072,7 +3069,7 @@ module Aws::IoTSiteWise
3072
3069
  end
3073
3070
 
3074
3071
  # @!attribute [rw] gateway_name
3075
- # A unique, friendly name for the gateway.
3072
+ # A unique name for the gateway.
3076
3073
  # @return [String]
3077
3074
  #
3078
3075
  # @!attribute [rw] gateway_platform
@@ -5325,9 +5322,15 @@ module Aws::IoTSiteWise
5325
5322
  # A gateway that runs on IoT Greengrass V2.
5326
5323
  # @return [Types::GreengrassV2]
5327
5324
  #
5325
+ # @!attribute [rw] siemens_ie
5326
+ # A SiteWise Edge gateway that runs on a Siemens Industrial Edge
5327
+ # Device.
5328
+ # @return [Types::SiemensIE]
5329
+ #
5328
5330
  class GatewayPlatform < Struct.new(
5329
5331
  :greengrass,
5330
- :greengrass_v2)
5332
+ :greengrass_v2,
5333
+ :siemens_ie)
5331
5334
  SENSITIVE = []
5332
5335
  include Aws::Structure
5333
5336
  end
@@ -5339,7 +5342,7 @@ module Aws::IoTSiteWise
5339
5342
  # @return [String]
5340
5343
  #
5341
5344
  # @!attribute [rw] gateway_name
5342
- # The name of the asset.
5345
+ # The name of the gateway.
5343
5346
  # @return [String]
5344
5347
  #
5345
5348
  # @!attribute [rw] gateway_platform
@@ -5760,13 +5763,13 @@ module Aws::IoTSiteWise
5760
5763
  # @!attribute [rw] group_arn
5761
5764
  # The [ARN][1] of the Greengrass group. For more information about how
5762
5765
  # to find a group's ARN, see [ListGroups][2] and [GetGroup][3] in the
5763
- # *IoT Greengrass API Reference*.
5766
+ # *IoT Greengrass V1 API Reference*.
5764
5767
  #
5765
5768
  #
5766
5769
  #
5767
5770
  # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
5768
- # [2]: https://docs.aws.amazon.com/greengrass/latest/apireference/listgroups-get.html
5769
- # [3]: https://docs.aws.amazon.com/greengrass/latest/apireference/getgroup-get.html
5771
+ # [2]: https://docs.aws.amazon.com/greengrass/v1/apireference/listgroups-get.html
5772
+ # [3]: https://docs.aws.amazon.com/greengrass/v1/apireference/getgroup-get.html
5770
5773
  # @return [String]
5771
5774
  #
5772
5775
  class Greengrass < Struct.new(
@@ -7724,6 +7727,19 @@ module Aws::IoTSiteWise
7724
7727
  include Aws::Structure
7725
7728
  end
7726
7729
 
7730
+ # Contains details for a SiteWise Edge gateway that runs on a Siemens
7731
+ # Industrial Edge Device.
7732
+ #
7733
+ # @!attribute [rw] iot_core_thing_name
7734
+ # The name of the IoT Thing for your SiteWise Edge gateway.
7735
+ # @return [String]
7736
+ #
7737
+ class SiemensIE < Struct.new(
7738
+ :iot_core_thing_name)
7739
+ SENSITIVE = []
7740
+ include Aws::Structure
7741
+ end
7742
+
7727
7743
  # @!attribute [rw] resource_arn
7728
7744
  # The [ARN][1] of the resource to tag.
7729
7745
  #
@@ -8139,7 +8155,7 @@ module Aws::IoTSiteWise
8139
8155
  # @return [String]
8140
8156
  #
8141
8157
  # @!attribute [rw] asset_model_composite_model_name
8142
- # A unique, friendly name for the composite model.
8158
+ # A unique name for the composite model.
8143
8159
  # @return [String]
8144
8160
  #
8145
8161
  # @!attribute [rw] client_token
@@ -8153,14 +8169,16 @@ module Aws::IoTSiteWise
8153
8169
  #
8154
8170
  # @!attribute [rw] asset_model_composite_model_properties
8155
8171
  # The property definitions of the composite model. For more
8156
- # information, see &lt;LINK&gt;.
8172
+ # information, see [ Inline custom composite models][1] in the *IoT
8173
+ # SiteWise User Guide*.
8157
8174
  #
8158
8175
  # You can specify up to 200 properties per composite model. For more
8159
- # information, see [Quotas][1] in the *IoT SiteWise User Guide*.
8176
+ # information, see [Quotas][2] in the *IoT SiteWise User Guide*.
8160
8177
  #
8161
8178
  #
8162
8179
  #
8163
- # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html
8180
+ # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/custom-composite-models.html#inline-composite-models
8181
+ # [2]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html
8164
8182
  # @return [Array<Types::AssetModelProperty>]
8165
8183
  #
8166
8184
  class UpdateAssetModelCompositeModelRequest < Struct.new(
@@ -8208,7 +8226,7 @@ module Aws::IoTSiteWise
8208
8226
  # @return [String]
8209
8227
  #
8210
8228
  # @!attribute [rw] asset_model_name
8211
- # A unique, friendly name for the asset model.
8229
+ # A unique name for the asset model.
8212
8230
  # @return [String]
8213
8231
  #
8214
8232
  # @!attribute [rw] asset_model_description
@@ -8254,13 +8272,15 @@ module Aws::IoTSiteWise
8254
8272
  #
8255
8273
  # <note markdown="1"> When creating custom composite models, you need to use
8256
8274
  # [CreateAssetModelCompositeModel][1]. For more information, see
8257
- # &lt;LINK&gt;.
8275
+ # [Creating custom composite models (Components)][2] in the *IoT
8276
+ # SiteWise User Guide*.
8258
8277
  #
8259
8278
  # </note>
8260
8279
  #
8261
8280
  #
8262
8281
  #
8263
8282
  # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_CreateAssetModelCompositeModel.html
8283
+ # [2]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/create-custom-composite-models.html
8264
8284
  # @return [Array<Types::AssetModelCompositeModel>]
8265
8285
  #
8266
8286
  # @!attribute [rw] client_token
@@ -8549,7 +8569,7 @@ module Aws::IoTSiteWise
8549
8569
  # @return [String]
8550
8570
  #
8551
8571
  # @!attribute [rw] gateway_name
8552
- # A unique, friendly name for the gateway.
8572
+ # A unique name for the gateway.
8553
8573
  # @return [String]
8554
8574
  #
8555
8575
  class UpdateGatewayRequest < Struct.new(
@@ -8753,8 +8773,7 @@ module Aws::IoTSiteWise
8753
8773
  # @return [String]
8754
8774
  #
8755
8775
  # @!attribute [rw] integer_value
8756
- # Asset property data of type integer (number that's greater than or
8757
- # equal to zero).
8776
+ # Asset property data of type integer (whole number).
8758
8777
  # @return [Integer]
8759
8778
  #
8760
8779
  # @!attribute [rw] double_value
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-iotsitewise/customizations'
53
53
  # @!group service
54
54
  module Aws::IoTSiteWise
55
55
 
56
- GEM_VERSION = '1.67.0'
56
+ GEM_VERSION = '1.68.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -614,6 +614,9 @@ module Aws
614
614
  }?,
615
615
  greengrass_v2: {
616
616
  core_device_thing_name: ::String
617
+ }?,
618
+ siemens_ie: {
619
+ iot_core_thing_name: ::String
617
620
  }?
618
621
  },
619
622
  ?tags: Hash[::String, ::String]
@@ -956,7 +959,7 @@ module Aws
956
959
  def gateway_id: () -> ::String
957
960
  def capability_namespace: () -> ::String
958
961
  def capability_configuration: () -> ::String
959
- def capability_sync_status: () -> ("IN_SYNC" | "OUT_OF_SYNC" | "SYNC_FAILED" | "UNKNOWN")
962
+ def capability_sync_status: () -> ("IN_SYNC" | "OUT_OF_SYNC" | "SYNC_FAILED" | "UNKNOWN" | "NOT_APPLICABLE")
960
963
  end
961
964
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTSiteWise/Client.html#describe_gateway_capability_configuration-instance_method
962
965
  def describe_gateway_capability_configuration: (
@@ -1857,7 +1860,7 @@ module Aws
1857
1860
  interface _UpdateGatewayCapabilityConfigurationResponseSuccess
1858
1861
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGatewayCapabilityConfigurationResponse]
1859
1862
  def capability_namespace: () -> ::String
1860
- def capability_sync_status: () -> ("IN_SYNC" | "OUT_OF_SYNC" | "SYNC_FAILED" | "UNKNOWN")
1863
+ def capability_sync_status: () -> ("IN_SYNC" | "OUT_OF_SYNC" | "SYNC_FAILED" | "UNKNOWN" | "NOT_APPLICABLE")
1861
1864
  end
1862
1865
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTSiteWise/Client.html#update_gateway_capability_configuration-instance_method
1863
1866
  def update_gateway_capability_configuration: (
data/sig/types.rbs CHANGED
@@ -1044,7 +1044,7 @@ module Aws::IoTSiteWise
1044
1044
  attr_accessor gateway_id: ::String
1045
1045
  attr_accessor capability_namespace: ::String
1046
1046
  attr_accessor capability_configuration: ::String
1047
- attr_accessor capability_sync_status: ("IN_SYNC" | "OUT_OF_SYNC" | "SYNC_FAILED" | "UNKNOWN")
1047
+ attr_accessor capability_sync_status: ("IN_SYNC" | "OUT_OF_SYNC" | "SYNC_FAILED" | "UNKNOWN" | "NOT_APPLICABLE")
1048
1048
  SENSITIVE: []
1049
1049
  end
1050
1050
 
@@ -1235,13 +1235,14 @@ module Aws::IoTSiteWise
1235
1235
 
1236
1236
  class GatewayCapabilitySummary
1237
1237
  attr_accessor capability_namespace: ::String
1238
- attr_accessor capability_sync_status: ("IN_SYNC" | "OUT_OF_SYNC" | "SYNC_FAILED" | "UNKNOWN")
1238
+ attr_accessor capability_sync_status: ("IN_SYNC" | "OUT_OF_SYNC" | "SYNC_FAILED" | "UNKNOWN" | "NOT_APPLICABLE")
1239
1239
  SENSITIVE: []
1240
1240
  end
1241
1241
 
1242
1242
  class GatewayPlatform
1243
1243
  attr_accessor greengrass: Types::Greengrass
1244
1244
  attr_accessor greengrass_v2: Types::GreengrassV2
1245
+ attr_accessor siemens_ie: Types::SiemensIE
1245
1246
  SENSITIVE: []
1246
1247
  end
1247
1248
 
@@ -1857,6 +1858,11 @@ module Aws::IoTSiteWise
1857
1858
  SENSITIVE: []
1858
1859
  end
1859
1860
 
1861
+ class SiemensIE
1862
+ attr_accessor iot_core_thing_name: ::String
1863
+ SENSITIVE: []
1864
+ end
1865
+
1860
1866
  class TagResourceRequest
1861
1867
  attr_accessor resource_arn: ::String
1862
1868
  attr_accessor tags: ::Hash[::String, ::String]
@@ -2025,7 +2031,7 @@ module Aws::IoTSiteWise
2025
2031
 
2026
2032
  class UpdateGatewayCapabilityConfigurationResponse
2027
2033
  attr_accessor capability_namespace: ::String
2028
- attr_accessor capability_sync_status: ("IN_SYNC" | "OUT_OF_SYNC" | "SYNC_FAILED" | "UNKNOWN")
2034
+ attr_accessor capability_sync_status: ("IN_SYNC" | "OUT_OF_SYNC" | "SYNC_FAILED" | "UNKNOWN" | "NOT_APPLICABLE")
2029
2035
  SENSITIVE: []
2030
2036
  end
2031
2037
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iotsitewise
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.67.0
4
+ version: 1.68.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: 2024-07-02 00:00:00.000000000 Z
11
+ date: 2024-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core