aws-sdk-iotsitewise 1.82.0 → 1.83.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: e4e9fe27efe811eb4bb9191c754c10f25a877527f0587da682dd5ce5cb774b2a
4
- data.tar.gz: 55a9b6367309105e6cf3d4db2912fb158d6d03497992d1407eb8947e19c70501
3
+ metadata.gz: 9b96be05e85cade8dc44f4e77be13cf4158e093501becda09cb9b0671f29d2d3
4
+ data.tar.gz: f1e4ca934a6dd25f668407334dd45bff4a06b682a3ea4ed9e1e53eefdaf61d9d
5
5
  SHA512:
6
- metadata.gz: 58e174b75e006a0701ea21768323b451b82ef392ae2a196234c4f9cbb66be6496cc9bb7d2ce32c679a80830f96ffe381d3c89bad2621d1d9d5faba94837391dd
7
- data.tar.gz: 3afaf0623eb15702011490182ad2162f36a0a4fe6aa493d7827ed4175868cfdc0302a666237a1befc70f3f47474b010ab1629d06e4158ab9cbeb6bdc43fd598e
6
+ metadata.gz: 9e2281f7d0e3b195e9ee5d38868f5cea5928d1275808206b0b62b25b7f30cd1a6eb2137dbde7741020e4d920a5308c0fd93724d2949bd92cc8cce9f427146e1e
7
+ data.tar.gz: adf11fc07ac987eff94add8754b868e3bd8d63f2e7f51ca76c0380ecaec0ac62804f8e9ae1df0f6ae6dc46eedf120e2567ad729a732e0ef97372f0871c542d69
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.83.0 (2025-03-04)
5
+ ------------------
6
+
7
+ * Feature - AWS IoT SiteWise now supports MQTT-enabled, V3 gateways. Configure data destinations for real-time ingestion into AWS IoT SiteWise or buffered ingestion using Amazon S3 storage. You can also use path filters for precise data collection from specific MQTT topics.
8
+
4
9
  1.82.0 (2025-02-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.82.0
1
+ 1.83.0
@@ -1999,6 +1999,21 @@ module Aws::IoTSiteWise
1999
1999
  # The gateway's platform. You can only specify one platform in a
2000
2000
  # gateway.
2001
2001
  #
2002
+ # @option params [String] :gateway_version
2003
+ # The version of the gateway to create. Specify `3` to create an
2004
+ # MQTT-enabled, V3 gateway and `2` To create a Classic streams, V2
2005
+ # gateway. If the version isn't specified, a Classic streams, V2
2006
+ # gateway is created by default.
2007
+ #
2008
+ # We recommend creating an MQTT-enabled, V3 gateway for self-hosted
2009
+ # gateways. SiteWise Edge gateways on Siemens Industrial Edge should use
2010
+ # gateway version `2`. For more information on gateway versions, see [
2011
+ # Self-host a SiteWise Edge gateway with IoT Greengrass V2][1].
2012
+ #
2013
+ #
2014
+ #
2015
+ # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/gw-self-host-gg2.html
2016
+ #
2002
2017
  # @option params [Hash<String,String>] :tags
2003
2018
  # A list of key-value pairs that contain metadata for the gateway. For
2004
2019
  # more information, see [Tagging your IoT SiteWise resources][1] in the
@@ -2023,11 +2038,13 @@ module Aws::IoTSiteWise
2023
2038
  # },
2024
2039
  # greengrass_v2: {
2025
2040
  # core_device_thing_name: "CoreDeviceThingName", # required
2041
+ # core_device_operating_system: "LINUX_AARCH64", # accepts LINUX_AARCH64, LINUX_AMD64, WINDOWS_AMD64
2026
2042
  # },
2027
2043
  # siemens_ie: {
2028
2044
  # iot_core_thing_name: "IotCoreThingName", # required
2029
2045
  # },
2030
2046
  # },
2047
+ # gateway_version: "GatewayVersion",
2031
2048
  # tags: {
2032
2049
  # "TagKey" => "TagValue",
2033
2050
  # },
@@ -3645,6 +3662,7 @@ module Aws::IoTSiteWise
3645
3662
  # * {Types::DescribeGatewayResponse#gateway_name #gateway_name} => String
3646
3663
  # * {Types::DescribeGatewayResponse#gateway_arn #gateway_arn} => String
3647
3664
  # * {Types::DescribeGatewayResponse#gateway_platform #gateway_platform} => Types::GatewayPlatform
3665
+ # * {Types::DescribeGatewayResponse#gateway_version #gateway_version} => String
3648
3666
  # * {Types::DescribeGatewayResponse#gateway_capability_summaries #gateway_capability_summaries} => Array&lt;Types::GatewayCapabilitySummary&gt;
3649
3667
  # * {Types::DescribeGatewayResponse#creation_date #creation_date} => Time
3650
3668
  # * {Types::DescribeGatewayResponse#last_update_date #last_update_date} => Time
@@ -3662,7 +3680,9 @@ module Aws::IoTSiteWise
3662
3680
  # resp.gateway_arn #=> String
3663
3681
  # resp.gateway_platform.greengrass.group_arn #=> String
3664
3682
  # resp.gateway_platform.greengrass_v2.core_device_thing_name #=> String
3683
+ # resp.gateway_platform.greengrass_v2.core_device_operating_system #=> String, one of "LINUX_AARCH64", "LINUX_AMD64", "WINDOWS_AMD64"
3665
3684
  # resp.gateway_platform.siemens_ie.iot_core_thing_name #=> String
3685
+ # resp.gateway_version #=> String
3666
3686
  # resp.gateway_capability_summaries #=> Array
3667
3687
  # resp.gateway_capability_summaries[0].capability_namespace #=> String
3668
3688
  # resp.gateway_capability_summaries[0].capability_sync_status #=> String, one of "IN_SYNC", "OUT_OF_SYNC", "SYNC_FAILED", "UNKNOWN", "NOT_APPLICABLE"
@@ -5809,7 +5829,9 @@ module Aws::IoTSiteWise
5809
5829
  # resp.gateway_summaries[0].gateway_name #=> String
5810
5830
  # resp.gateway_summaries[0].gateway_platform.greengrass.group_arn #=> String
5811
5831
  # resp.gateway_summaries[0].gateway_platform.greengrass_v2.core_device_thing_name #=> String
5832
+ # resp.gateway_summaries[0].gateway_platform.greengrass_v2.core_device_operating_system #=> String, one of "LINUX_AARCH64", "LINUX_AMD64", "WINDOWS_AMD64"
5812
5833
  # resp.gateway_summaries[0].gateway_platform.siemens_ie.iot_core_thing_name #=> String
5834
+ # resp.gateway_summaries[0].gateway_version #=> String
5813
5835
  # resp.gateway_summaries[0].gateway_capability_summaries #=> Array
5814
5836
  # resp.gateway_summaries[0].gateway_capability_summaries[0].capability_namespace #=> String
5815
5837
  # resp.gateway_summaries[0].gateway_capability_summaries[0].capability_sync_status #=> String, one of "IN_SYNC", "OUT_OF_SYNC", "SYNC_FAILED", "UNKNOWN", "NOT_APPLICABLE"
@@ -7431,7 +7453,7 @@ module Aws::IoTSiteWise
7431
7453
  tracer: tracer
7432
7454
  )
7433
7455
  context[:gem_name] = 'aws-sdk-iotsitewise'
7434
- context[:gem_version] = '1.82.0'
7456
+ context[:gem_version] = '1.83.0'
7435
7457
  Seahorse::Client::Request.new(handlers, context)
7436
7458
  end
7437
7459
 
@@ -174,6 +174,7 @@ module Aws::IoTSiteWise
174
174
  ConflictingOperationException = Shapes::StructureShape.new(name: 'ConflictingOperationException')
175
175
  Content = Shapes::StructureShape.new(name: 'Content')
176
176
  ConversationId = Shapes::StringShape.new(name: 'ConversationId')
177
+ CoreDeviceOperatingSystem = Shapes::StringShape.new(name: 'CoreDeviceOperatingSystem')
177
178
  CoreDeviceThingName = Shapes::StringShape.new(name: 'CoreDeviceThingName')
178
179
  CreateAccessPolicyRequest = Shapes::StructureShape.new(name: 'CreateAccessPolicyRequest')
179
180
  CreateAccessPolicyResponse = Shapes::StructureShape.new(name: 'CreateAccessPolicyResponse')
@@ -307,6 +308,7 @@ module Aws::IoTSiteWise
307
308
  GatewayPlatform = Shapes::StructureShape.new(name: 'GatewayPlatform')
308
309
  GatewaySummaries = Shapes::ListShape.new(name: 'GatewaySummaries')
309
310
  GatewaySummary = Shapes::StructureShape.new(name: 'GatewaySummary')
311
+ GatewayVersion = Shapes::StringShape.new(name: 'GatewayVersion')
310
312
  GetAssetPropertyAggregatesRequest = Shapes::StructureShape.new(name: 'GetAssetPropertyAggregatesRequest')
311
313
  GetAssetPropertyAggregatesResponse = Shapes::StructureShape.new(name: 'GetAssetPropertyAggregatesResponse')
312
314
  GetAssetPropertyValueAggregatesMaxResults = Shapes::IntegerShape.new(name: 'GetAssetPropertyValueAggregatesMaxResults')
@@ -1179,6 +1181,7 @@ module Aws::IoTSiteWise
1179
1181
 
1180
1182
  CreateGatewayRequest.add_member(:gateway_name, Shapes::ShapeRef.new(shape: GatewayName, required: true, location_name: "gatewayName"))
1181
1183
  CreateGatewayRequest.add_member(:gateway_platform, Shapes::ShapeRef.new(shape: GatewayPlatform, required: true, location_name: "gatewayPlatform"))
1184
+ CreateGatewayRequest.add_member(:gateway_version, Shapes::ShapeRef.new(shape: GatewayVersion, location_name: "gatewayVersion"))
1182
1185
  CreateGatewayRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1183
1186
  CreateGatewayRequest.struct_class = Types::CreateGatewayRequest
1184
1187
 
@@ -1511,6 +1514,7 @@ module Aws::IoTSiteWise
1511
1514
  DescribeGatewayResponse.add_member(:gateway_name, Shapes::ShapeRef.new(shape: GatewayName, required: true, location_name: "gatewayName"))
1512
1515
  DescribeGatewayResponse.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "gatewayArn"))
1513
1516
  DescribeGatewayResponse.add_member(:gateway_platform, Shapes::ShapeRef.new(shape: GatewayPlatform, location_name: "gatewayPlatform"))
1517
+ DescribeGatewayResponse.add_member(:gateway_version, Shapes::ShapeRef.new(shape: GatewayVersion, location_name: "gatewayVersion"))
1514
1518
  DescribeGatewayResponse.add_member(:gateway_capability_summaries, Shapes::ShapeRef.new(shape: GatewayCapabilitySummaries, required: true, location_name: "gatewayCapabilitySummaries"))
1515
1519
  DescribeGatewayResponse.add_member(:creation_date, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "creationDate"))
1516
1520
  DescribeGatewayResponse.add_member(:last_update_date, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdateDate"))
@@ -1667,6 +1671,7 @@ module Aws::IoTSiteWise
1667
1671
  GatewaySummary.add_member(:gateway_id, Shapes::ShapeRef.new(shape: ID, required: true, location_name: "gatewayId"))
1668
1672
  GatewaySummary.add_member(:gateway_name, Shapes::ShapeRef.new(shape: GatewayName, required: true, location_name: "gatewayName"))
1669
1673
  GatewaySummary.add_member(:gateway_platform, Shapes::ShapeRef.new(shape: GatewayPlatform, location_name: "gatewayPlatform"))
1674
+ GatewaySummary.add_member(:gateway_version, Shapes::ShapeRef.new(shape: GatewayVersion, location_name: "gatewayVersion"))
1670
1675
  GatewaySummary.add_member(:gateway_capability_summaries, Shapes::ShapeRef.new(shape: GatewayCapabilitySummaries, location_name: "gatewayCapabilitySummaries"))
1671
1676
  GatewaySummary.add_member(:creation_date, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "creationDate"))
1672
1677
  GatewaySummary.add_member(:last_update_date, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdateDate"))
@@ -1735,6 +1740,7 @@ module Aws::IoTSiteWise
1735
1740
  Greengrass.struct_class = Types::Greengrass
1736
1741
 
1737
1742
  GreengrassV2.add_member(:core_device_thing_name, Shapes::ShapeRef.new(shape: CoreDeviceThingName, required: true, location_name: "coreDeviceThingName"))
1743
+ GreengrassV2.add_member(:core_device_operating_system, Shapes::ShapeRef.new(shape: CoreDeviceOperatingSystem, location_name: "coreDeviceOperatingSystem"))
1738
1744
  GreengrassV2.struct_class = Types::GreengrassV2
1739
1745
 
1740
1746
  GroupIdentity.add_member(:id, Shapes::ShapeRef.new(shape: IdentityId, required: true, location_name: "id"))
@@ -3232,6 +3232,22 @@ module Aws::IoTSiteWise
3232
3232
  # gateway.
3233
3233
  # @return [Types::GatewayPlatform]
3234
3234
  #
3235
+ # @!attribute [rw] gateway_version
3236
+ # The version of the gateway to create. Specify `3` to create an
3237
+ # MQTT-enabled, V3 gateway and `2` To create a Classic streams, V2
3238
+ # gateway. If the version isn't specified, a Classic streams, V2
3239
+ # gateway is created by default.
3240
+ #
3241
+ # We recommend creating an MQTT-enabled, V3 gateway for self-hosted
3242
+ # gateways. SiteWise Edge gateways on Siemens Industrial Edge should
3243
+ # use gateway version `2`. For more information on gateway versions,
3244
+ # see [ Self-host a SiteWise Edge gateway with IoT Greengrass V2][1].
3245
+ #
3246
+ #
3247
+ #
3248
+ # [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/gw-self-host-gg2.html
3249
+ # @return [String]
3250
+ #
3235
3251
  # @!attribute [rw] tags
3236
3252
  # A list of key-value pairs that contain metadata for the gateway. For
3237
3253
  # more information, see [Tagging your IoT SiteWise resources][1] in
@@ -3245,6 +3261,7 @@ module Aws::IoTSiteWise
3245
3261
  class CreateGatewayRequest < Struct.new(
3246
3262
  :gateway_name,
3247
3263
  :gateway_platform,
3264
+ :gateway_version,
3248
3265
  :tags)
3249
3266
  SENSITIVE = []
3250
3267
  include Aws::Structure
@@ -5060,6 +5077,12 @@ module Aws::IoTSiteWise
5060
5077
  # The gateway's platform.
5061
5078
  # @return [Types::GatewayPlatform]
5062
5079
  #
5080
+ # @!attribute [rw] gateway_version
5081
+ # The version of the gateway. A value of `3` indicates an
5082
+ # MQTT-enabled, V3 gateway, while `2` indicates a Classic streams, V2
5083
+ # gateway.
5084
+ # @return [String]
5085
+ #
5063
5086
  # @!attribute [rw] gateway_capability_summaries
5064
5087
  # A list of gateway capability summaries that each contain a namespace
5065
5088
  # and status. Each gateway capability defines data sources for the
@@ -5084,6 +5107,7 @@ module Aws::IoTSiteWise
5084
5107
  :gateway_name,
5085
5108
  :gateway_arn,
5086
5109
  :gateway_platform,
5110
+ :gateway_version,
5087
5111
  :gateway_capability_summaries,
5088
5112
  :creation_date,
5089
5113
  :last_update_date)
@@ -5880,6 +5904,12 @@ module Aws::IoTSiteWise
5880
5904
  # Contains a gateway's platform information.
5881
5905
  # @return [Types::GatewayPlatform]
5882
5906
  #
5907
+ # @!attribute [rw] gateway_version
5908
+ # The version of the gateway. A value of `3` indicates an
5909
+ # MQTT-enabled, V3 gateway, while `2` indicates a Classic streams, V2
5910
+ # gateway.
5911
+ # @return [String]
5912
+ #
5883
5913
  # @!attribute [rw] gateway_capability_summaries
5884
5914
  # A list of gateway capability summaries that each contain a namespace
5885
5915
  # and status. Each gateway capability defines data sources for the
@@ -5903,6 +5933,7 @@ module Aws::IoTSiteWise
5903
5933
  :gateway_id,
5904
5934
  :gateway_name,
5905
5935
  :gateway_platform,
5936
+ :gateway_version,
5906
5937
  :gateway_capability_summaries,
5907
5938
  :creation_date,
5908
5939
  :last_update_date)
@@ -6325,8 +6356,13 @@ module Aws::IoTSiteWise
6325
6356
  # The name of the IoT thing for your IoT Greengrass V2 core device.
6326
6357
  # @return [String]
6327
6358
  #
6359
+ # @!attribute [rw] core_device_operating_system
6360
+ # The operating system of the core device in IoT Greengrass V2.
6361
+ # @return [String]
6362
+ #
6328
6363
  class GreengrassV2 < Struct.new(
6329
- :core_device_thing_name)
6364
+ :core_device_thing_name,
6365
+ :core_device_operating_system)
6330
6366
  SENSITIVE = []
6331
6367
  include Aws::Structure
6332
6368
  end
@@ -56,7 +56,7 @@ module Aws::IoTSiteWise
56
56
  autoload :Endpoints, 'aws-sdk-iotsitewise/endpoints'
57
57
  autoload :EventStreams, 'aws-sdk-iotsitewise/event_streams'
58
58
 
59
- GEM_VERSION = '1.82.0'
59
+ GEM_VERSION = '1.83.0'
60
60
 
61
61
  end
62
62
 
data/sig/client.rbs CHANGED
@@ -653,12 +653,14 @@ module Aws
653
653
  group_arn: ::String
654
654
  }?,
655
655
  greengrass_v2: {
656
- core_device_thing_name: ::String
656
+ core_device_thing_name: ::String,
657
+ core_device_operating_system: ("LINUX_AARCH64" | "LINUX_AMD64" | "WINDOWS_AMD64")?
657
658
  }?,
658
659
  siemens_ie: {
659
660
  iot_core_thing_name: ::String
660
661
  }?
661
662
  },
663
+ ?gateway_version: ::String,
662
664
  ?tags: Hash[::String, ::String]
663
665
  ) -> _CreateGatewayResponseSuccess
664
666
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGatewayResponseSuccess
@@ -1027,6 +1029,7 @@ module Aws
1027
1029
  def gateway_name: () -> ::String
1028
1030
  def gateway_arn: () -> ::String
1029
1031
  def gateway_platform: () -> Types::GatewayPlatform
1032
+ def gateway_version: () -> ::String
1030
1033
  def gateway_capability_summaries: () -> ::Array[Types::GatewayCapabilitySummary]
1031
1034
  def creation_date: () -> ::Time
1032
1035
  def last_update_date: () -> ::Time
data/sig/types.rbs CHANGED
@@ -728,6 +728,7 @@ module Aws::IoTSiteWise
728
728
  class CreateGatewayRequest
729
729
  attr_accessor gateway_name: ::String
730
730
  attr_accessor gateway_platform: Types::GatewayPlatform
731
+ attr_accessor gateway_version: ::String
731
732
  attr_accessor tags: ::Hash[::String, ::String]
732
733
  SENSITIVE: []
733
734
  end
@@ -1164,6 +1165,7 @@ module Aws::IoTSiteWise
1164
1165
  attr_accessor gateway_name: ::String
1165
1166
  attr_accessor gateway_arn: ::String
1166
1167
  attr_accessor gateway_platform: Types::GatewayPlatform
1168
+ attr_accessor gateway_version: ::String
1167
1169
  attr_accessor gateway_capability_summaries: ::Array[Types::GatewayCapabilitySummary]
1168
1170
  attr_accessor creation_date: ::Time
1169
1171
  attr_accessor last_update_date: ::Time
@@ -1360,6 +1362,7 @@ module Aws::IoTSiteWise
1360
1362
  attr_accessor gateway_id: ::String
1361
1363
  attr_accessor gateway_name: ::String
1362
1364
  attr_accessor gateway_platform: Types::GatewayPlatform
1365
+ attr_accessor gateway_version: ::String
1363
1366
  attr_accessor gateway_capability_summaries: ::Array[Types::GatewayCapabilitySummary]
1364
1367
  attr_accessor creation_date: ::Time
1365
1368
  attr_accessor last_update_date: ::Time
@@ -1448,6 +1451,7 @@ module Aws::IoTSiteWise
1448
1451
 
1449
1452
  class GreengrassV2
1450
1453
  attr_accessor core_device_thing_name: ::String
1454
+ attr_accessor core_device_operating_system: ("LINUX_AARCH64" | "LINUX_AMD64" | "WINDOWS_AMD64")
1451
1455
  SENSITIVE: []
1452
1456
  end
1453
1457
 
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.82.0
4
+ version: 1.83.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: 2025-02-18 00:00:00.000000000 Z
11
+ date: 2025-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core