aws-sdk-iotsitewise 1.24.0 → 1.28.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: b90440fabc4d937879dbcfff213c2a8114cd5c3017d73255bb092b29c25ddee5
4
- data.tar.gz: 6efeda662d9994377eef27293b783ea7fa767903ec79e1512f10b80a2d5bfc47
3
+ metadata.gz: 4c9005129c3b24336554a0702faf75b104bb691eefa36ccfa0dd1f1ca3421273
4
+ data.tar.gz: 512d96ea8e3c26ccb8ab075b321d38cd925b18c18c4996888c75f611dfa24c03
5
5
  SHA512:
6
- metadata.gz: 05ab000b2bb354e384a067ff9e0136c1b555371b83b2d20626364828e6741bf861143213e6f606eed5d6caffb1d2aea7577154eeaf12f0ad3016c18cc89e1a0d
7
- data.tar.gz: 6bd7960685d92cc3799921231809bff5af4d95d7c75c85b7ce6159503e40d4570f3ecbc0b755ac5f42c13c12904be511d3090861179bd405166aaee728bddf34
6
+ metadata.gz: c9e0685883e9c713f0a06a09b094ceb491976ff9dcb6c84d16a5cfe4d8b63a81d8c8fd1d9e117d4fe03a6ce5cad9a890d2200b586e87955b06e86135f9007401
7
+ data.tar.gz: 4db93479866839475d6fc9c26d3732c20d128901a7d22642135a4b499518f3c51eafb1878381ceaf418e68396eec12b35284af79cee7e38e50e5600a11e5854c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.28.0 (2021-07-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.27.0 (2021-07-29)
10
+ ------------------
11
+
12
+ * Feature - Added support for AWS IoT SiteWise Edge. You can now create an AWS IoT SiteWise gateway that runs on AWS IoT Greengrass V2. With the gateway, you can collect local server and equipment data, process the data, and export the selected data from the edge to the AWS Cloud.
13
+
14
+ 1.26.0 (2021-07-28)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.25.0 (2021-07-15)
20
+ ------------------
21
+
22
+ * Feature - Update the default endpoint for the APIs used to manage asset models, assets, gateways, tags, and account configurations. If you have firewalls with strict egress rules, configure the rules to grant you access to api.iotsitewise.[region].amazonaws.com or api.iotsitewise.[cn-region].amazonaws.com.cn.
23
+
4
24
  1.24.0 (2021-07-07)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.24.0
1
+ 1.28.0
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-iotsitewise/customizations'
49
49
  # @!group service
50
50
  module Aws::IoTSiteWise
51
51
 
52
- GEM_VERSION = '1.24.0'
52
+ GEM_VERSION = '1.28.0'
53
53
 
54
54
  end
@@ -688,6 +688,9 @@ module Aws::IoTSiteWise
688
688
  # resp.asset_status.state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "FAILED"
689
689
  # resp.asset_status.error.code #=> String, one of "VALIDATION_ERROR", "INTERNAL_FAILURE"
690
690
  # resp.asset_status.error.message #=> String
691
+ # resp.asset_status.error.details #=> Array
692
+ # resp.asset_status.error.details[0].code #=> String, one of "INCOMPATIBLE_COMPUTE_LOCATION", "INCOMPATIBLE_FORWARDING_CONFIGURATION"
693
+ # resp.asset_status.error.details[0].message #=> String
691
694
  #
692
695
  # @overload create_asset(params = {})
693
696
  # @param [Hash] params ({})
@@ -785,6 +788,11 @@ module Aws::IoTSiteWise
785
788
  # default_value: "DefaultValue",
786
789
  # },
787
790
  # measurement: {
791
+ # processing_config: {
792
+ # forwarding_config: { # required
793
+ # state: "DISABLED", # required, accepts DISABLED, ENABLED
794
+ # },
795
+ # },
788
796
  # },
789
797
  # transform: {
790
798
  # expression: "Expression", # required
@@ -797,6 +805,12 @@ module Aws::IoTSiteWise
797
805
  # },
798
806
  # },
799
807
  # ],
808
+ # processing_config: {
809
+ # compute_location: "EDGE", # required, accepts EDGE, CLOUD
810
+ # forwarding_config: {
811
+ # state: "DISABLED", # required, accepts DISABLED, ENABLED
812
+ # },
813
+ # },
800
814
  # },
801
815
  # metric: {
802
816
  # expression: "Expression", # required
@@ -814,6 +828,9 @@ module Aws::IoTSiteWise
814
828
  # interval: "Interval", # required
815
829
  # },
816
830
  # },
831
+ # processing_config: {
832
+ # compute_location: "EDGE", # required, accepts EDGE, CLOUD
833
+ # },
817
834
  # },
818
835
  # },
819
836
  # },
@@ -840,6 +857,11 @@ module Aws::IoTSiteWise
840
857
  # default_value: "DefaultValue",
841
858
  # },
842
859
  # measurement: {
860
+ # processing_config: {
861
+ # forwarding_config: { # required
862
+ # state: "DISABLED", # required, accepts DISABLED, ENABLED
863
+ # },
864
+ # },
843
865
  # },
844
866
  # transform: {
845
867
  # expression: "Expression", # required
@@ -852,6 +874,12 @@ module Aws::IoTSiteWise
852
874
  # },
853
875
  # },
854
876
  # ],
877
+ # processing_config: {
878
+ # compute_location: "EDGE", # required, accepts EDGE, CLOUD
879
+ # forwarding_config: {
880
+ # state: "DISABLED", # required, accepts DISABLED, ENABLED
881
+ # },
882
+ # },
855
883
  # },
856
884
  # metric: {
857
885
  # expression: "Expression", # required
@@ -869,6 +897,9 @@ module Aws::IoTSiteWise
869
897
  # interval: "Interval", # required
870
898
  # },
871
899
  # },
900
+ # processing_config: {
901
+ # compute_location: "EDGE", # required, accepts EDGE, CLOUD
902
+ # },
872
903
  # },
873
904
  # },
874
905
  # },
@@ -888,6 +919,9 @@ module Aws::IoTSiteWise
888
919
  # resp.asset_model_status.state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "PROPAGATING", "DELETING", "FAILED"
889
920
  # resp.asset_model_status.error.code #=> String, one of "VALIDATION_ERROR", "INTERNAL_FAILURE"
890
921
  # resp.asset_model_status.error.message #=> String
922
+ # resp.asset_model_status.error.details #=> Array
923
+ # resp.asset_model_status.error.details[0].code #=> String, one of "INCOMPATIBLE_COMPUTE_LOCATION", "INCOMPATIBLE_FORWARDING_CONFIGURATION"
924
+ # resp.asset_model_status.error.details[0].message #=> String
891
925
  #
892
926
  # @overload create_asset_model(params = {})
893
927
  # @param [Hash] params ({})
@@ -998,9 +1032,12 @@ module Aws::IoTSiteWise
998
1032
  # resp = client.create_gateway({
999
1033
  # gateway_name: "Name", # required
1000
1034
  # gateway_platform: { # required
1001
- # greengrass: { # required
1035
+ # greengrass: {
1002
1036
  # group_arn: "ARN", # required
1003
1037
  # },
1038
+ # greengrass_v2: {
1039
+ # core_device_thing_name: "CoreDeviceThingName", # required
1040
+ # },
1004
1041
  # },
1005
1042
  # tags: {
1006
1043
  # "TagKey" => "TagValue",
@@ -1296,6 +1333,9 @@ module Aws::IoTSiteWise
1296
1333
  # resp.asset_status.state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "FAILED"
1297
1334
  # resp.asset_status.error.code #=> String, one of "VALIDATION_ERROR", "INTERNAL_FAILURE"
1298
1335
  # resp.asset_status.error.message #=> String
1336
+ # resp.asset_status.error.details #=> Array
1337
+ # resp.asset_status.error.details[0].code #=> String, one of "INCOMPATIBLE_COMPUTE_LOCATION", "INCOMPATIBLE_FORWARDING_CONFIGURATION"
1338
+ # resp.asset_status.error.details[0].message #=> String
1299
1339
  #
1300
1340
  # @overload delete_asset(params = {})
1301
1341
  # @param [Hash] params ({})
@@ -1342,6 +1382,9 @@ module Aws::IoTSiteWise
1342
1382
  # resp.asset_model_status.state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "PROPAGATING", "DELETING", "FAILED"
1343
1383
  # resp.asset_model_status.error.code #=> String, one of "VALIDATION_ERROR", "INTERNAL_FAILURE"
1344
1384
  # resp.asset_model_status.error.message #=> String
1385
+ # resp.asset_model_status.error.details #=> Array
1386
+ # resp.asset_model_status.error.details[0].code #=> String, one of "INCOMPATIBLE_COMPUTE_LOCATION", "INCOMPATIBLE_FORWARDING_CONFIGURATION"
1387
+ # resp.asset_model_status.error.details[0].message #=> String
1345
1388
  #
1346
1389
  # @overload delete_asset_model(params = {})
1347
1390
  # @param [Hash] params ({})
@@ -1569,6 +1612,9 @@ module Aws::IoTSiteWise
1569
1612
  # resp.asset_status.state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "FAILED"
1570
1613
  # resp.asset_status.error.code #=> String, one of "VALIDATION_ERROR", "INTERNAL_FAILURE"
1571
1614
  # resp.asset_status.error.message #=> String
1615
+ # resp.asset_status.error.details #=> Array
1616
+ # resp.asset_status.error.details[0].code #=> String, one of "INCOMPATIBLE_COMPUTE_LOCATION", "INCOMPATIBLE_FORWARDING_CONFIGURATION"
1617
+ # resp.asset_status.error.details[0].message #=> String
1572
1618
  #
1573
1619
  #
1574
1620
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -1620,17 +1666,21 @@ module Aws::IoTSiteWise
1620
1666
  # resp.asset_model_properties[0].data_type_spec #=> String
1621
1667
  # resp.asset_model_properties[0].unit #=> String
1622
1668
  # resp.asset_model_properties[0].type.attribute.default_value #=> String
1669
+ # resp.asset_model_properties[0].type.measurement.processing_config.forwarding_config.state #=> String, one of "DISABLED", "ENABLED"
1623
1670
  # resp.asset_model_properties[0].type.transform.expression #=> String
1624
1671
  # resp.asset_model_properties[0].type.transform.variables #=> Array
1625
1672
  # resp.asset_model_properties[0].type.transform.variables[0].name #=> String
1626
1673
  # resp.asset_model_properties[0].type.transform.variables[0].value.property_id #=> String
1627
1674
  # resp.asset_model_properties[0].type.transform.variables[0].value.hierarchy_id #=> String
1675
+ # resp.asset_model_properties[0].type.transform.processing_config.compute_location #=> String, one of "EDGE", "CLOUD"
1676
+ # resp.asset_model_properties[0].type.transform.processing_config.forwarding_config.state #=> String, one of "DISABLED", "ENABLED"
1628
1677
  # resp.asset_model_properties[0].type.metric.expression #=> String
1629
1678
  # resp.asset_model_properties[0].type.metric.variables #=> Array
1630
1679
  # resp.asset_model_properties[0].type.metric.variables[0].name #=> String
1631
1680
  # resp.asset_model_properties[0].type.metric.variables[0].value.property_id #=> String
1632
1681
  # resp.asset_model_properties[0].type.metric.variables[0].value.hierarchy_id #=> String
1633
1682
  # resp.asset_model_properties[0].type.metric.window.tumbling.interval #=> String
1683
+ # resp.asset_model_properties[0].type.metric.processing_config.compute_location #=> String, one of "EDGE", "CLOUD"
1634
1684
  # resp.asset_model_hierarchies #=> Array
1635
1685
  # resp.asset_model_hierarchies[0].id #=> String
1636
1686
  # resp.asset_model_hierarchies[0].name #=> String
@@ -1646,22 +1696,29 @@ module Aws::IoTSiteWise
1646
1696
  # resp.asset_model_composite_models[0].properties[0].data_type_spec #=> String
1647
1697
  # resp.asset_model_composite_models[0].properties[0].unit #=> String
1648
1698
  # resp.asset_model_composite_models[0].properties[0].type.attribute.default_value #=> String
1699
+ # resp.asset_model_composite_models[0].properties[0].type.measurement.processing_config.forwarding_config.state #=> String, one of "DISABLED", "ENABLED"
1649
1700
  # resp.asset_model_composite_models[0].properties[0].type.transform.expression #=> String
1650
1701
  # resp.asset_model_composite_models[0].properties[0].type.transform.variables #=> Array
1651
1702
  # resp.asset_model_composite_models[0].properties[0].type.transform.variables[0].name #=> String
1652
1703
  # resp.asset_model_composite_models[0].properties[0].type.transform.variables[0].value.property_id #=> String
1653
1704
  # resp.asset_model_composite_models[0].properties[0].type.transform.variables[0].value.hierarchy_id #=> String
1705
+ # resp.asset_model_composite_models[0].properties[0].type.transform.processing_config.compute_location #=> String, one of "EDGE", "CLOUD"
1706
+ # resp.asset_model_composite_models[0].properties[0].type.transform.processing_config.forwarding_config.state #=> String, one of "DISABLED", "ENABLED"
1654
1707
  # resp.asset_model_composite_models[0].properties[0].type.metric.expression #=> String
1655
1708
  # resp.asset_model_composite_models[0].properties[0].type.metric.variables #=> Array
1656
1709
  # resp.asset_model_composite_models[0].properties[0].type.metric.variables[0].name #=> String
1657
1710
  # resp.asset_model_composite_models[0].properties[0].type.metric.variables[0].value.property_id #=> String
1658
1711
  # resp.asset_model_composite_models[0].properties[0].type.metric.variables[0].value.hierarchy_id #=> String
1659
1712
  # resp.asset_model_composite_models[0].properties[0].type.metric.window.tumbling.interval #=> String
1713
+ # resp.asset_model_composite_models[0].properties[0].type.metric.processing_config.compute_location #=> String, one of "EDGE", "CLOUD"
1660
1714
  # resp.asset_model_creation_date #=> Time
1661
1715
  # resp.asset_model_last_update_date #=> Time
1662
1716
  # resp.asset_model_status.state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "PROPAGATING", "DELETING", "FAILED"
1663
1717
  # resp.asset_model_status.error.code #=> String, one of "VALIDATION_ERROR", "INTERNAL_FAILURE"
1664
1718
  # resp.asset_model_status.error.message #=> String
1719
+ # resp.asset_model_status.error.details #=> Array
1720
+ # resp.asset_model_status.error.details[0].code #=> String, one of "INCOMPATIBLE_COMPUTE_LOCATION", "INCOMPATIBLE_FORWARDING_CONFIGURATION"
1721
+ # resp.asset_model_status.error.details[0].message #=> String
1665
1722
  #
1666
1723
  #
1667
1724
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -1726,17 +1783,21 @@ module Aws::IoTSiteWise
1726
1783
  # resp.asset_property.data_type #=> String, one of "STRING", "INTEGER", "DOUBLE", "BOOLEAN", "STRUCT"
1727
1784
  # resp.asset_property.unit #=> String
1728
1785
  # resp.asset_property.type.attribute.default_value #=> String
1786
+ # resp.asset_property.type.measurement.processing_config.forwarding_config.state #=> String, one of "DISABLED", "ENABLED"
1729
1787
  # resp.asset_property.type.transform.expression #=> String
1730
1788
  # resp.asset_property.type.transform.variables #=> Array
1731
1789
  # resp.asset_property.type.transform.variables[0].name #=> String
1732
1790
  # resp.asset_property.type.transform.variables[0].value.property_id #=> String
1733
1791
  # resp.asset_property.type.transform.variables[0].value.hierarchy_id #=> String
1792
+ # resp.asset_property.type.transform.processing_config.compute_location #=> String, one of "EDGE", "CLOUD"
1793
+ # resp.asset_property.type.transform.processing_config.forwarding_config.state #=> String, one of "DISABLED", "ENABLED"
1734
1794
  # resp.asset_property.type.metric.expression #=> String
1735
1795
  # resp.asset_property.type.metric.variables #=> Array
1736
1796
  # resp.asset_property.type.metric.variables[0].name #=> String
1737
1797
  # resp.asset_property.type.metric.variables[0].value.property_id #=> String
1738
1798
  # resp.asset_property.type.metric.variables[0].value.hierarchy_id #=> String
1739
1799
  # resp.asset_property.type.metric.window.tumbling.interval #=> String
1800
+ # resp.asset_property.type.metric.processing_config.compute_location #=> String, one of "EDGE", "CLOUD"
1740
1801
  # resp.composite_model.name #=> String
1741
1802
  # resp.composite_model.type #=> String
1742
1803
  # resp.composite_model.asset_property.id #=> String
@@ -1747,17 +1808,21 @@ module Aws::IoTSiteWise
1747
1808
  # resp.composite_model.asset_property.data_type #=> String, one of "STRING", "INTEGER", "DOUBLE", "BOOLEAN", "STRUCT"
1748
1809
  # resp.composite_model.asset_property.unit #=> String
1749
1810
  # resp.composite_model.asset_property.type.attribute.default_value #=> String
1811
+ # resp.composite_model.asset_property.type.measurement.processing_config.forwarding_config.state #=> String, one of "DISABLED", "ENABLED"
1750
1812
  # resp.composite_model.asset_property.type.transform.expression #=> String
1751
1813
  # resp.composite_model.asset_property.type.transform.variables #=> Array
1752
1814
  # resp.composite_model.asset_property.type.transform.variables[0].name #=> String
1753
1815
  # resp.composite_model.asset_property.type.transform.variables[0].value.property_id #=> String
1754
1816
  # resp.composite_model.asset_property.type.transform.variables[0].value.hierarchy_id #=> String
1817
+ # resp.composite_model.asset_property.type.transform.processing_config.compute_location #=> String, one of "EDGE", "CLOUD"
1818
+ # resp.composite_model.asset_property.type.transform.processing_config.forwarding_config.state #=> String, one of "DISABLED", "ENABLED"
1755
1819
  # resp.composite_model.asset_property.type.metric.expression #=> String
1756
1820
  # resp.composite_model.asset_property.type.metric.variables #=> Array
1757
1821
  # resp.composite_model.asset_property.type.metric.variables[0].name #=> String
1758
1822
  # resp.composite_model.asset_property.type.metric.variables[0].value.property_id #=> String
1759
1823
  # resp.composite_model.asset_property.type.metric.variables[0].value.hierarchy_id #=> String
1760
1824
  # resp.composite_model.asset_property.type.metric.window.tumbling.interval #=> String
1825
+ # resp.composite_model.asset_property.type.metric.processing_config.compute_location #=> String, one of "EDGE", "CLOUD"
1761
1826
  #
1762
1827
  # @overload describe_asset_property(params = {})
1763
1828
  # @param [Hash] params ({})
@@ -1863,9 +1928,10 @@ module Aws::IoTSiteWise
1863
1928
  # resp.gateway_name #=> String
1864
1929
  # resp.gateway_arn #=> String
1865
1930
  # resp.gateway_platform.greengrass.group_arn #=> String
1931
+ # resp.gateway_platform.greengrass_v2.core_device_thing_name #=> String
1866
1932
  # resp.gateway_capability_summaries #=> Array
1867
1933
  # resp.gateway_capability_summaries[0].capability_namespace #=> String
1868
- # resp.gateway_capability_summaries[0].capability_sync_status #=> String, one of "IN_SYNC", "OUT_OF_SYNC", "SYNC_FAILED"
1934
+ # resp.gateway_capability_summaries[0].capability_sync_status #=> String, one of "IN_SYNC", "OUT_OF_SYNC", "SYNC_FAILED", "UNKNOWN"
1869
1935
  # resp.creation_date #=> Time
1870
1936
  # resp.last_update_date #=> Time
1871
1937
  #
@@ -1917,7 +1983,7 @@ module Aws::IoTSiteWise
1917
1983
  # resp.gateway_id #=> String
1918
1984
  # resp.capability_namespace #=> String
1919
1985
  # resp.capability_configuration #=> String
1920
- # resp.capability_sync_status #=> String, one of "IN_SYNC", "OUT_OF_SYNC", "SYNC_FAILED"
1986
+ # resp.capability_sync_status #=> String, one of "IN_SYNC", "OUT_OF_SYNC", "SYNC_FAILED", "UNKNOWN"
1921
1987
  #
1922
1988
  # @overload describe_gateway_capability_configuration(params = {})
1923
1989
  # @param [Hash] params ({})
@@ -2048,6 +2114,12 @@ module Aws::IoTSiteWise
2048
2114
  # Retrieves information about the storage configuration for IoT
2049
2115
  # SiteWise.
2050
2116
  #
2117
+ # <note markdown="1"> Exporting data to Amazon S3 is currently in preview release and is
2118
+ # subject to change. We recommend that you use this feature only with
2119
+ # test data, and not in production environments.
2120
+ #
2121
+ # </note>
2122
+ #
2051
2123
  # @return [Types::DescribeStorageConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2052
2124
  #
2053
2125
  # * {Types::DescribeStorageConfigurationResponse#storage_type #storage_type} => String
@@ -2609,6 +2681,9 @@ module Aws::IoTSiteWise
2609
2681
  # resp.asset_model_summaries[0].status.state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "PROPAGATING", "DELETING", "FAILED"
2610
2682
  # resp.asset_model_summaries[0].status.error.code #=> String, one of "VALIDATION_ERROR", "INTERNAL_FAILURE"
2611
2683
  # resp.asset_model_summaries[0].status.error.message #=> String
2684
+ # resp.asset_model_summaries[0].status.error.details #=> Array
2685
+ # resp.asset_model_summaries[0].status.error.details[0].code #=> String, one of "INCOMPATIBLE_COMPUTE_LOCATION", "INCOMPATIBLE_FORWARDING_CONFIGURATION"
2686
+ # resp.asset_model_summaries[0].status.error.details[0].message #=> String
2612
2687
  # resp.next_token #=> String
2613
2688
  #
2614
2689
  # @overload list_asset_models(params = {})
@@ -2742,6 +2817,9 @@ module Aws::IoTSiteWise
2742
2817
  # resp.asset_summaries[0].status.state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "FAILED"
2743
2818
  # resp.asset_summaries[0].status.error.code #=> String, one of "VALIDATION_ERROR", "INTERNAL_FAILURE"
2744
2819
  # resp.asset_summaries[0].status.error.message #=> String
2820
+ # resp.asset_summaries[0].status.error.details #=> Array
2821
+ # resp.asset_summaries[0].status.error.details[0].code #=> String, one of "INCOMPATIBLE_COMPUTE_LOCATION", "INCOMPATIBLE_FORWARDING_CONFIGURATION"
2822
+ # resp.asset_summaries[0].status.error.details[0].message #=> String
2745
2823
  # resp.asset_summaries[0].hierarchies #=> Array
2746
2824
  # resp.asset_summaries[0].hierarchies[0].id #=> String
2747
2825
  # resp.asset_summaries[0].hierarchies[0].name #=> String
@@ -2830,6 +2908,9 @@ module Aws::IoTSiteWise
2830
2908
  # resp.asset_summaries[0].status.state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "FAILED"
2831
2909
  # resp.asset_summaries[0].status.error.code #=> String, one of "VALIDATION_ERROR", "INTERNAL_FAILURE"
2832
2910
  # resp.asset_summaries[0].status.error.message #=> String
2911
+ # resp.asset_summaries[0].status.error.details #=> Array
2912
+ # resp.asset_summaries[0].status.error.details[0].code #=> String, one of "INCOMPATIBLE_COMPUTE_LOCATION", "INCOMPATIBLE_FORWARDING_CONFIGURATION"
2913
+ # resp.asset_summaries[0].status.error.details[0].message #=> String
2833
2914
  # resp.asset_summaries[0].hierarchies #=> Array
2834
2915
  # resp.asset_summaries[0].hierarchies[0].id #=> String
2835
2916
  # resp.asset_summaries[0].hierarchies[0].name #=> String
@@ -2917,9 +2998,11 @@ module Aws::IoTSiteWise
2917
2998
  # resp.gateway_summaries #=> Array
2918
2999
  # resp.gateway_summaries[0].gateway_id #=> String
2919
3000
  # resp.gateway_summaries[0].gateway_name #=> String
3001
+ # resp.gateway_summaries[0].gateway_platform.greengrass.group_arn #=> String
3002
+ # resp.gateway_summaries[0].gateway_platform.greengrass_v2.core_device_thing_name #=> String
2920
3003
  # resp.gateway_summaries[0].gateway_capability_summaries #=> Array
2921
3004
  # resp.gateway_summaries[0].gateway_capability_summaries[0].capability_namespace #=> String
2922
- # resp.gateway_summaries[0].gateway_capability_summaries[0].capability_sync_status #=> String, one of "IN_SYNC", "OUT_OF_SYNC", "SYNC_FAILED"
3005
+ # resp.gateway_summaries[0].gateway_capability_summaries[0].capability_sync_status #=> String, one of "IN_SYNC", "OUT_OF_SYNC", "SYNC_FAILED", "UNKNOWN"
2923
3006
  # resp.gateway_summaries[0].creation_date #=> Time
2924
3007
  # resp.gateway_summaries[0].last_update_date #=> Time
2925
3008
  # resp.next_token #=> String
@@ -3163,6 +3246,12 @@ module Aws::IoTSiteWise
3163
3246
 
3164
3247
  # Configures storage settings for IoT SiteWise.
3165
3248
  #
3249
+ # <note markdown="1"> Exporting data to Amazon S3 is currently in preview release and is
3250
+ # subject to change. We recommend that you use this feature only with
3251
+ # test data, and not in production environments.
3252
+ #
3253
+ # </note>
3254
+ #
3166
3255
  # @option params [required, String] :storage_type
3167
3256
  # The type of storage that you specified for your data. The storage type
3168
3257
  # can be one of the following values:
@@ -3381,6 +3470,9 @@ module Aws::IoTSiteWise
3381
3470
  # resp.asset_status.state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "FAILED"
3382
3471
  # resp.asset_status.error.code #=> String, one of "VALIDATION_ERROR", "INTERNAL_FAILURE"
3383
3472
  # resp.asset_status.error.message #=> String
3473
+ # resp.asset_status.error.details #=> Array
3474
+ # resp.asset_status.error.details[0].code #=> String, one of "INCOMPATIBLE_COMPUTE_LOCATION", "INCOMPATIBLE_FORWARDING_CONFIGURATION"
3475
+ # resp.asset_status.error.details[0].message #=> String
3384
3476
  #
3385
3477
  # @overload update_asset(params = {})
3386
3478
  # @param [Hash] params ({})
@@ -3485,6 +3577,11 @@ module Aws::IoTSiteWise
3485
3577
  # default_value: "DefaultValue",
3486
3578
  # },
3487
3579
  # measurement: {
3580
+ # processing_config: {
3581
+ # forwarding_config: { # required
3582
+ # state: "DISABLED", # required, accepts DISABLED, ENABLED
3583
+ # },
3584
+ # },
3488
3585
  # },
3489
3586
  # transform: {
3490
3587
  # expression: "Expression", # required
@@ -3497,6 +3594,12 @@ module Aws::IoTSiteWise
3497
3594
  # },
3498
3595
  # },
3499
3596
  # ],
3597
+ # processing_config: {
3598
+ # compute_location: "EDGE", # required, accepts EDGE, CLOUD
3599
+ # forwarding_config: {
3600
+ # state: "DISABLED", # required, accepts DISABLED, ENABLED
3601
+ # },
3602
+ # },
3500
3603
  # },
3501
3604
  # metric: {
3502
3605
  # expression: "Expression", # required
@@ -3514,6 +3617,9 @@ module Aws::IoTSiteWise
3514
3617
  # interval: "Interval", # required
3515
3618
  # },
3516
3619
  # },
3620
+ # processing_config: {
3621
+ # compute_location: "EDGE", # required, accepts EDGE, CLOUD
3622
+ # },
3517
3623
  # },
3518
3624
  # },
3519
3625
  # },
@@ -3542,6 +3648,11 @@ module Aws::IoTSiteWise
3542
3648
  # default_value: "DefaultValue",
3543
3649
  # },
3544
3650
  # measurement: {
3651
+ # processing_config: {
3652
+ # forwarding_config: { # required
3653
+ # state: "DISABLED", # required, accepts DISABLED, ENABLED
3654
+ # },
3655
+ # },
3545
3656
  # },
3546
3657
  # transform: {
3547
3658
  # expression: "Expression", # required
@@ -3554,6 +3665,12 @@ module Aws::IoTSiteWise
3554
3665
  # },
3555
3666
  # },
3556
3667
  # ],
3668
+ # processing_config: {
3669
+ # compute_location: "EDGE", # required, accepts EDGE, CLOUD
3670
+ # forwarding_config: {
3671
+ # state: "DISABLED", # required, accepts DISABLED, ENABLED
3672
+ # },
3673
+ # },
3557
3674
  # },
3558
3675
  # metric: {
3559
3676
  # expression: "Expression", # required
@@ -3571,6 +3688,9 @@ module Aws::IoTSiteWise
3571
3688
  # interval: "Interval", # required
3572
3689
  # },
3573
3690
  # },
3691
+ # processing_config: {
3692
+ # compute_location: "EDGE", # required, accepts EDGE, CLOUD
3693
+ # },
3574
3694
  # },
3575
3695
  # },
3576
3696
  # },
@@ -3585,6 +3705,9 @@ module Aws::IoTSiteWise
3585
3705
  # resp.asset_model_status.state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "PROPAGATING", "DELETING", "FAILED"
3586
3706
  # resp.asset_model_status.error.code #=> String, one of "VALIDATION_ERROR", "INTERNAL_FAILURE"
3587
3707
  # resp.asset_model_status.error.message #=> String
3708
+ # resp.asset_model_status.error.details #=> Array
3709
+ # resp.asset_model_status.error.details[0].code #=> String, one of "INCOMPATIBLE_COMPUTE_LOCATION", "INCOMPATIBLE_FORWARDING_CONFIGURATION"
3710
+ # resp.asset_model_status.error.details[0].message #=> String
3588
3711
  #
3589
3712
  # @overload update_asset_model(params = {})
3590
3713
  # @param [Hash] params ({})
@@ -3783,7 +3906,7 @@ module Aws::IoTSiteWise
3783
3906
  # @example Response structure
3784
3907
  #
3785
3908
  # resp.capability_namespace #=> String
3786
- # resp.capability_sync_status #=> String, one of "IN_SYNC", "OUT_OF_SYNC", "SYNC_FAILED"
3909
+ # resp.capability_sync_status #=> String, one of "IN_SYNC", "OUT_OF_SYNC", "SYNC_FAILED", "UNKNOWN"
3787
3910
  #
3788
3911
  # @overload update_gateway_capability_configuration(params = {})
3789
3912
  # @param [Hash] params ({})
@@ -3937,7 +4060,7 @@ module Aws::IoTSiteWise
3937
4060
  params: params,
3938
4061
  config: config)
3939
4062
  context[:gem_name] = 'aws-sdk-iotsitewise'
3940
- context[:gem_version] = '1.24.0'
4063
+ context[:gem_version] = '1.28.0'
3941
4064
  Seahorse::Client::Request.new(handlers, context)
3942
4065
  end
3943
4066