aws-sdk-iotsitewise 1.66.0 → 1.68.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 538d88239d051001f971425ec02f522465d6801e426f9059bc94c621bb63b850
4
- data.tar.gz: 16d6ade4be2c3e68950cdeeed6f35776e47a58e79c3999a36843987d87b20a24
3
+ metadata.gz: 3c5f683e75b3dc915cc40661c27438c56f0ad0331d9ceb122ee1067594b35987
4
+ data.tar.gz: 65a15b2b86d1346d53ee806f088556a29d37cf3d768d099343d1f46f59d22d26
5
5
  SHA512:
6
- metadata.gz: cfbbb5666e0e78cc72dbd19ec063e30633cde6339eaa66cc809b45eb7a8060556a0a4cd64d2ddc797202f7950ece1702f84c8f600ca4cf4ddd769337c4d1c955
7
- data.tar.gz: 2d7379379a75d2966996207128d7a62ccb24ef59d30addeb05909646e122243b49e048c66c59bf3d5300d61c59463445d5a67d63b4e886adf04c8fd8c6d669c3
6
+ metadata.gz: a3b50a3c574b68c114729231ab5faebe24cdf49ad7d3803d62ab9f20393864c27a4060afbe8f7ed3667d5ea239ef7c3a68453fc522bd47cf6310b3f40543fd3d
7
+ data.tar.gz: f39b4ece7cfce5892777b302fd0b2016867ff6eb0826578ba6b7ff080c90ff8b767656fd20db15742c9c2a4585afe2324f005f583946626dc29d01fad261f81c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.67.0 (2024-07-02)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.66.0 (2024-06-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.66.0
1
+ 1.68.0
@@ -312,6 +312,15 @@ module Aws::IoTSiteWise
312
312
  #
313
313
  # @option options [String] :session_token
314
314
  #
315
+ # @option options [Array] :sigv4a_signing_region_set
316
+ # A list of regions that should be signed with SigV4a signing. When
317
+ # not passed, a default `:sigv4a_signing_region_set` is searched for
318
+ # in the following locations:
319
+ #
320
+ # * `Aws.config[:sigv4a_signing_region_set]`
321
+ # * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
322
+ # * `~/.aws/config`
323
+ #
315
324
  # @option options [Boolean] :stub_responses (false)
316
325
  # Causes the client to return stubbed responses. By default
317
326
  # fake responses are generated and returned. You can specify
@@ -1143,7 +1152,7 @@ module Aws::IoTSiteWise
1143
1152
  # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/define-models.html
1144
1153
  #
1145
1154
  # @option params [required, String] :asset_model_name
1146
- # A unique, friendly name for the asset model.
1155
+ # A unique name for the asset model.
1147
1156
  #
1148
1157
  # @option params [String] :asset_model_description
1149
1158
  # A description for the asset model.
@@ -1184,13 +1193,15 @@ module Aws::IoTSiteWise
1184
1193
  #
1185
1194
  # <note markdown="1"> When creating custom composite models, you need to use
1186
1195
  # [CreateAssetModelCompositeModel][1]. For more information, see
1187
- # &lt;LINK&gt;.
1196
+ # [Creating custom composite models (Components)][2] in the *IoT
1197
+ # SiteWise User Guide*.
1188
1198
  #
1189
1199
  # </note>
1190
1200
  #
1191
1201
  #
1192
1202
  #
1193
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
1194
1205
  #
1195
1206
  # @option params [String] :client_token
1196
1207
  # A unique case-sensitive identifier that you can provide to ensure the
@@ -1491,7 +1502,7 @@ module Aws::IoTSiteWise
1491
1502
  # A description for the composite model.
1492
1503
  #
1493
1504
  # @option params [required, String] :asset_model_composite_model_name
1494
- # A unique, friendly name for the composite model.
1505
+ # A unique name for the composite model.
1495
1506
  #
1496
1507
  # @option params [required, String] :asset_model_composite_model_type
1497
1508
  # The composite model type. Valid values are `AWS/ALARM`, `CUSTOM`, or `
@@ -1506,18 +1517,21 @@ module Aws::IoTSiteWise
1506
1517
  # not need to pass this option.**
1507
1518
  #
1508
1519
  # @option params [String] :composed_asset_model_id
1509
- # 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.
1510
1522
  #
1511
1523
  # @option params [Array<Types::AssetModelPropertyDefinition>] :asset_model_composite_model_properties
1512
1524
  # The property definitions of the composite model. For more information,
1513
- # see &lt;LINK&gt;.
1525
+ # see [ Inline custom composite models][1] in the *IoT SiteWise User
1526
+ # Guide*.
1514
1527
  #
1515
1528
  # You can specify up to 200 properties per composite model. For more
1516
- # information, see [Quotas][1] in the *IoT SiteWise User Guide*.
1529
+ # information, see [Quotas][2] in the *IoT SiteWise User Guide*.
1517
1530
  #
1518
1531
  #
1519
1532
  #
1520
- # [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
1521
1535
  #
1522
1536
  # @return [Types::CreateAssetModelCompositeModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1523
1537
  #
@@ -1805,7 +1819,7 @@ module Aws::IoTSiteWise
1805
1819
  # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/gateway-connector.html
1806
1820
  #
1807
1821
  # @option params [required, String] :gateway_name
1808
- # A unique, friendly name for the gateway.
1822
+ # A unique name for the gateway.
1809
1823
  #
1810
1824
  # @option params [required, Types::GatewayPlatform] :gateway_platform
1811
1825
  # The gateway's platform. You can only specify one platform in a
@@ -1828,7 +1842,7 @@ module Aws::IoTSiteWise
1828
1842
  # @example Request syntax with placeholder values
1829
1843
  #
1830
1844
  # resp = client.create_gateway({
1831
- # gateway_name: "Name", # required
1845
+ # gateway_name: "GatewayName", # required
1832
1846
  # gateway_platform: { # required
1833
1847
  # greengrass: {
1834
1848
  # group_arn: "ARN", # required
@@ -1836,6 +1850,9 @@ module Aws::IoTSiteWise
1836
1850
  # greengrass_v2: {
1837
1851
  # core_device_thing_name: "CoreDeviceThingName", # required
1838
1852
  # },
1853
+ # siemens_ie: {
1854
+ # iot_core_thing_name: "IotCoreThingName", # required
1855
+ # },
1839
1856
  # },
1840
1857
  # tags: {
1841
1858
  # "TagKey" => "TagValue",
@@ -3291,9 +3308,10 @@ module Aws::IoTSiteWise
3291
3308
  # resp.gateway_arn #=> String
3292
3309
  # resp.gateway_platform.greengrass.group_arn #=> String
3293
3310
  # resp.gateway_platform.greengrass_v2.core_device_thing_name #=> String
3311
+ # resp.gateway_platform.siemens_ie.iot_core_thing_name #=> String
3294
3312
  # resp.gateway_capability_summaries #=> Array
3295
3313
  # resp.gateway_capability_summaries[0].capability_namespace #=> String
3296
- # 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"
3297
3315
  # resp.creation_date #=> Time
3298
3316
  # resp.last_update_date #=> Time
3299
3317
  #
@@ -3345,7 +3363,7 @@ module Aws::IoTSiteWise
3345
3363
  # resp.gateway_id #=> String
3346
3364
  # resp.capability_namespace #=> String
3347
3365
  # resp.capability_configuration #=> String
3348
- # 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"
3349
3367
  #
3350
3368
  # @overload describe_gateway_capability_configuration(params = {})
3351
3369
  # @param [Hash] params ({})
@@ -5084,9 +5102,10 @@ module Aws::IoTSiteWise
5084
5102
  # resp.gateway_summaries[0].gateway_name #=> String
5085
5103
  # resp.gateway_summaries[0].gateway_platform.greengrass.group_arn #=> String
5086
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
5087
5106
  # resp.gateway_summaries[0].gateway_capability_summaries #=> Array
5088
5107
  # resp.gateway_summaries[0].gateway_capability_summaries[0].capability_namespace #=> String
5089
- # 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"
5090
5109
  # resp.gateway_summaries[0].creation_date #=> Time
5091
5110
  # resp.gateway_summaries[0].last_update_date #=> Time
5092
5111
  # resp.next_token #=> String
@@ -5711,22 +5730,23 @@ module Aws::IoTSiteWise
5711
5730
  # information, see [Updating assets and models][1] in the *IoT SiteWise
5712
5731
  # User Guide*.
5713
5732
  #
5714
- # This operation overwrites the existing model with the provided model.
5715
- # To avoid deleting your asset model's properties or hierarchies, you
5716
- # must include their IDs and definitions in the updated asset model
5717
- # 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.
5736
+ #
5737
+ # To replace an existing asset model property with a new one with the
5738
+ # same `name`, do the following:
5718
5739
  #
5719
- # If you remove a property from an asset model, IoT SiteWise deletes
5720
- # all
5721
- # previous data for that property. If you remove a hierarchy definition
5722
- # from an asset model, IoT SiteWise disassociates every asset associated
5723
- # with that hierarchy. You can't change the type or data type of an
5724
- # existing property.
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`.
5725
5746
  #
5726
5747
  #
5727
5748
  #
5728
5749
  # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/update-assets-and-models.html
5729
- # [2]: https://docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_DescribeAssetModel.html
5730
5750
  #
5731
5751
  # @option params [required, String] :asset_model_id
5732
5752
  # The ID of the asset model to update. This can be either the actual ID
@@ -5739,7 +5759,7 @@ module Aws::IoTSiteWise
5739
5759
  # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/object-ids.html#external-id-references
5740
5760
  #
5741
5761
  # @option params [required, String] :asset_model_name
5742
- # A unique, friendly name for the asset model.
5762
+ # A unique name for the asset model.
5743
5763
  #
5744
5764
  # @option params [String] :asset_model_description
5745
5765
  # A description for the asset model.
@@ -5781,13 +5801,15 @@ module Aws::IoTSiteWise
5781
5801
  #
5782
5802
  # <note markdown="1"> When creating custom composite models, you need to use
5783
5803
  # [CreateAssetModelCompositeModel][1]. For more information, see
5784
- # &lt;LINK&gt;.
5804
+ # [Creating custom composite models (Components)][2] in the *IoT
5805
+ # SiteWise User Guide*.
5785
5806
  #
5786
5807
  # </note>
5787
5808
  #
5788
5809
  #
5789
5810
  #
5790
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
5791
5813
  #
5792
5814
  # @option params [String] :client_token
5793
5815
  # A unique case-sensitive identifier that you can provide to ensure the
@@ -6053,7 +6075,7 @@ module Aws::IoTSiteWise
6053
6075
  # A description for the composite model.
6054
6076
  #
6055
6077
  # @option params [required, String] :asset_model_composite_model_name
6056
- # A unique, friendly name for the composite model.
6078
+ # A unique name for the composite model.
6057
6079
  #
6058
6080
  # @option params [String] :client_token
6059
6081
  # A unique case-sensitive identifier that you can provide to ensure the
@@ -6065,14 +6087,16 @@ module Aws::IoTSiteWise
6065
6087
  #
6066
6088
  # @option params [Array<Types::AssetModelProperty>] :asset_model_composite_model_properties
6067
6089
  # The property definitions of the composite model. For more information,
6068
- # see &lt;LINK&gt;.
6090
+ # see [ Inline custom composite models][1] in the *IoT SiteWise User
6091
+ # Guide*.
6069
6092
  #
6070
6093
  # You can specify up to 200 properties per composite model. For more
6071
- # information, see [Quotas][1] in the *IoT SiteWise User Guide*.
6094
+ # information, see [Quotas][2] in the *IoT SiteWise User Guide*.
6072
6095
  #
6073
6096
  #
6074
6097
  #
6075
- # [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
6076
6100
  #
6077
6101
  # @return [Types::UpdateAssetModelCompositeModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6078
6102
  #
@@ -6333,7 +6357,7 @@ module Aws::IoTSiteWise
6333
6357
  # The ID of the gateway to update.
6334
6358
  #
6335
6359
  # @option params [required, String] :gateway_name
6336
- # A unique, friendly name for the gateway.
6360
+ # A unique name for the gateway.
6337
6361
  #
6338
6362
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
6339
6363
  #
@@ -6341,7 +6365,7 @@ module Aws::IoTSiteWise
6341
6365
  #
6342
6366
  # resp = client.update_gateway({
6343
6367
  # gateway_id: "ID", # required
6344
- # gateway_name: "Name", # required
6368
+ # gateway_name: "GatewayName", # required
6345
6369
  # })
6346
6370
  #
6347
6371
  # @overload update_gateway(params = {})
@@ -6398,7 +6422,7 @@ module Aws::IoTSiteWise
6398
6422
  # @example Response structure
6399
6423
  #
6400
6424
  # resp.capability_namespace #=> String
6401
- # 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"
6402
6426
  #
6403
6427
  # @overload update_gateway_capability_configuration(params = {})
6404
6428
  # @param [Hash] params ({})
@@ -6552,7 +6576,7 @@ module Aws::IoTSiteWise
6552
6576
  params: params,
6553
6577
  config: config)
6554
6578
  context[:gem_name] = 'aws-sdk-iotsitewise'
6555
- context[:gem_version] = '1.66.0'
6579
+ context[:gem_version] = '1.68.0'
6556
6580
  Seahorse::Client::Request.new(handlers, context)
6557
6581
  end
6558
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.66.0'
56
+ GEM_VERSION = '1.68.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -48,6 +48,7 @@ module Aws
48
48
  ?sdk_ua_app_id: String,
49
49
  ?secret_access_key: String,
50
50
  ?session_token: String,
51
+ ?sigv4a_signing_region_set: Array[String],
51
52
  ?stub_responses: untyped,
52
53
  ?token_provider: untyped,
53
54
  ?use_dualstack_endpoint: bool,
@@ -613,6 +614,9 @@ module Aws
613
614
  }?,
614
615
  greengrass_v2: {
615
616
  core_device_thing_name: ::String
617
+ }?,
618
+ siemens_ie: {
619
+ iot_core_thing_name: ::String
616
620
  }?
617
621
  },
618
622
  ?tags: Hash[::String, ::String]
@@ -955,7 +959,7 @@ module Aws
955
959
  def gateway_id: () -> ::String
956
960
  def capability_namespace: () -> ::String
957
961
  def capability_configuration: () -> ::String
958
- 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")
959
963
  end
960
964
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTSiteWise/Client.html#describe_gateway_capability_configuration-instance_method
961
965
  def describe_gateway_capability_configuration: (
@@ -1856,7 +1860,7 @@ module Aws
1856
1860
  interface _UpdateGatewayCapabilityConfigurationResponseSuccess
1857
1861
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGatewayCapabilityConfigurationResponse]
1858
1862
  def capability_namespace: () -> ::String
1859
- 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")
1860
1864
  end
1861
1865
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTSiteWise/Client.html#update_gateway_capability_configuration-instance_method
1862
1866
  def update_gateway_capability_configuration: (
data/sig/resource.rbs CHANGED
@@ -48,6 +48,7 @@ module Aws
48
48
  ?sdk_ua_app_id: String,
49
49
  ?secret_access_key: String,
50
50
  ?session_token: String,
51
+ ?sigv4a_signing_region_set: Array[String],
51
52
  ?stub_responses: untyped,
52
53
  ?token_provider: untyped,
53
54
  ?use_dualstack_endpoint: bool,
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.66.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-06-28 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
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.199.0
22
+ version: 3.201.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,21 +29,21 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.199.0
32
+ version: 3.201.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.5'
47
47
  description: Official AWS Ruby gem for AWS IoT SiteWise. This gem is part of the AWS
48
48
  SDK for Ruby.
49
49
  email: