aws-sdk-iotsitewise 1.48.0 → 1.50.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: 332d456f7874abacaa0e5c9a3c436ec24568634f99c27f70de17c4359f9e7340
4
- data.tar.gz: 9c804624f2014093990ef1c7198662df2978f1b876d9c9d61024f2af1d78d026
3
+ metadata.gz: 99885f7b428a71030f28554b58cc2499e83efd2f5569b6793e399db93bf835e7
4
+ data.tar.gz: be6678b1cfb9e36ca68a2f1eae009be984c9d146db2d5483df65a49ca1c101c0
5
5
  SHA512:
6
- metadata.gz: dc519ef51b201f422e2df5948da486d8ba98365ae9a173a5146402a7df1c7e2c45e35a787441d873b1bf6bf67daba7f4432b3ce20d67a25aa09b1c8d16f8f24c
7
- data.tar.gz: f5877cae94f374cafcd7cd9357b9785cc725685c97b51db2bb81e15e63029e013f6347764b2f8cecc1af0e58aaac721edb74996c613d1f386d071791432340e0
6
+ metadata.gz: 2281d1439daca17ea750187fb0ab99f8ba8ce3a4fee0975f6ceb94a62d67fa38f1ae22eed17ded3f30aa76ded94dc13bc0ea3998bc641bc0e6f432f1717df56e
7
+ data.tar.gz: 4142221fabfb58e0865868b172683c3bb5f99eea21edc72bef2dea7856997ef9217dee060ca0a1ef028fb0ed2f4502851d64cb722a4eded8a9c60e783773b9ba
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.50.0 (2023-05-08)
5
+ ------------------
6
+
7
+ * Feature - Provide support for 20,000 max results for GetAssetPropertyValueHistory/BatchGetAssetPropertyValueHistory and 15 minute aggregate resolution for GetAssetPropertyAggregates/BatchGetAssetPropertyAggregates
8
+
9
+ 1.49.0 (2023-03-21)
10
+ ------------------
11
+
12
+ * Feature - Provide support for tagging of data streams and enabling tag based authorization for property alias
13
+
4
14
  1.48.0 (2023-01-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.48.0
1
+ 1.50.0
@@ -560,10 +560,10 @@ module Aws::IoTSiteWise
560
560
  # The maximum number of results to return for each paginated request. A
561
561
  # result set is returned in the two cases, whichever occurs first.
562
562
  #
563
- # * The size of the result set is less than 1 MB.
563
+ # * The size of the result set is equal to 1 MB.
564
564
  #
565
- # * The number of data points in the result set is less than the value
566
- # of `maxResults`. The maximum value of `maxResults` is 4000.
565
+ # * The number of data points in the result set is equal to the value of
566
+ # `maxResults`. The maximum value of `maxResults` is 4000.
567
567
  #
568
568
  # @return [Types::BatchGetAssetPropertyAggregatesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
569
569
  #
@@ -636,7 +636,7 @@ module Aws::IoTSiteWise
636
636
  #
637
637
  # @option params [required, Array<Types::BatchGetAssetPropertyValueEntry>] :entries
638
638
  # The list of asset property value entries for the batch get request.
639
- # You can specify up to 16 entries per request.
639
+ # You can specify up to 128 entries per request.
640
640
  #
641
641
  # @option params [String] :next_token
642
642
  # The token to be used for the next set of paginated results.
@@ -712,10 +712,10 @@ module Aws::IoTSiteWise
712
712
  # The maximum number of results to return for each paginated request. A
713
713
  # result set is returned in the two cases, whichever occurs first.
714
714
  #
715
- # * The size of the result set is less than 1 MB.
715
+ # * The size of the result set is equal to 4 MB.
716
716
  #
717
- # * The number of data points in the result set is less than the value
718
- # of `maxResults`. The maximum value of `maxResults` is 4000.
717
+ # * The number of data points in the result set is equal to the value of
718
+ # `maxResults`. The maximum value of `maxResults` is 20000.
719
719
  #
720
720
  # @return [Types::BatchGetAssetPropertyValueHistoryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
721
721
  #
@@ -2698,6 +2698,7 @@ module Aws::IoTSiteWise
2698
2698
  # * {Types::DescribeTimeSeriesResponse#data_type_spec #data_type_spec} => String
2699
2699
  # * {Types::DescribeTimeSeriesResponse#time_series_creation_date #time_series_creation_date} => Time
2700
2700
  # * {Types::DescribeTimeSeriesResponse#time_series_last_update_date #time_series_last_update_date} => Time
2701
+ # * {Types::DescribeTimeSeriesResponse#time_series_arn #time_series_arn} => String
2701
2702
  #
2702
2703
  # @example Request syntax with placeholder values
2703
2704
  #
@@ -2717,6 +2718,7 @@ module Aws::IoTSiteWise
2717
2718
  # resp.data_type_spec #=> String
2718
2719
  # resp.time_series_creation_date #=> Time
2719
2720
  # resp.time_series_last_update_date #=> Time
2721
+ # resp.time_series_arn #=> String
2720
2722
  #
2721
2723
  # @overload describe_time_series(params = {})
2722
2724
  # @param [Hash] params ({})
@@ -2867,9 +2869,13 @@ module Aws::IoTSiteWise
2867
2869
  # The token to be used for the next set of paginated results.
2868
2870
  #
2869
2871
  # @option params [Integer] :max_results
2870
- # The maximum number of results to return for each paginated request.
2872
+ # The maximum number of results to return for each paginated request. A
2873
+ # result set is returned in the two cases, whichever occurs first.
2874
+ #
2875
+ # * The size of the result set is equal to 1 MB.
2871
2876
  #
2872
- # Default: 100
2877
+ # * The number of data points in the result set is equal to the value of
2878
+ # `maxResults`. The maximum value of `maxResults` is 250.
2873
2879
  #
2874
2880
  # @return [Types::GetAssetPropertyAggregatesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2875
2881
  #
@@ -3029,9 +3035,13 @@ module Aws::IoTSiteWise
3029
3035
  # The token to be used for the next set of paginated results.
3030
3036
  #
3031
3037
  # @option params [Integer] :max_results
3032
- # The maximum number of results to return for each paginated request.
3038
+ # The maximum number of results to return for each paginated request. A
3039
+ # result set is returned in the two cases, whichever occurs first.
3040
+ #
3041
+ # * The size of the result set is equal to 4 MB.
3033
3042
  #
3034
- # Default: 100
3043
+ # * The number of data points in the result set is equal to the value of
3044
+ # `maxResults`. The maximum value of `maxResults` is 20000.
3035
3045
  #
3036
3046
  # @return [Types::GetAssetPropertyValueHistoryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3037
3047
  #
@@ -4094,6 +4104,7 @@ module Aws::IoTSiteWise
4094
4104
  # resp.time_series_summaries[0].data_type_spec #=> String
4095
4105
  # resp.time_series_summaries[0].time_series_creation_date #=> Time
4096
4106
  # resp.time_series_summaries[0].time_series_last_update_date #=> Time
4107
+ # resp.time_series_summaries[0].time_series_arn #=> String
4097
4108
  # resp.next_token #=> String
4098
4109
  #
4099
4110
  # @overload list_time_series(params = {})
@@ -5026,7 +5037,7 @@ module Aws::IoTSiteWise
5026
5037
  params: params,
5027
5038
  config: config)
5028
5039
  context[:gem_name] = 'aws-sdk-iotsitewise'
5029
- context[:gem_version] = '1.48.0'
5040
+ context[:gem_version] = '1.50.0'
5030
5041
  Seahorse::Client::Request.new(handlers, context)
5031
5042
  end
5032
5043
 
@@ -234,6 +234,8 @@ module Aws::IoTSiteWise
234
234
  GatewaySummary = Shapes::StructureShape.new(name: 'GatewaySummary')
235
235
  GetAssetPropertyAggregatesRequest = Shapes::StructureShape.new(name: 'GetAssetPropertyAggregatesRequest')
236
236
  GetAssetPropertyAggregatesResponse = Shapes::StructureShape.new(name: 'GetAssetPropertyAggregatesResponse')
237
+ GetAssetPropertyValueAggregatesMaxResults = Shapes::IntegerShape.new(name: 'GetAssetPropertyValueAggregatesMaxResults')
238
+ GetAssetPropertyValueHistoryMaxResults = Shapes::IntegerShape.new(name: 'GetAssetPropertyValueHistoryMaxResults')
237
239
  GetAssetPropertyValueHistoryRequest = Shapes::StructureShape.new(name: 'GetAssetPropertyValueHistoryRequest')
238
240
  GetAssetPropertyValueHistoryResponse = Shapes::StructureShape.new(name: 'GetAssetPropertyValueHistoryResponse')
239
241
  GetAssetPropertyValueRequest = Shapes::StructureShape.new(name: 'GetAssetPropertyValueRequest')
@@ -1160,6 +1162,7 @@ module Aws::IoTSiteWise
1160
1162
  DescribeTimeSeriesResponse.add_member(:data_type_spec, Shapes::ShapeRef.new(shape: Name, location_name: "dataTypeSpec"))
1161
1163
  DescribeTimeSeriesResponse.add_member(:time_series_creation_date, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "timeSeriesCreationDate"))
1162
1164
  DescribeTimeSeriesResponse.add_member(:time_series_last_update_date, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "timeSeriesLastUpdateDate"))
1165
+ DescribeTimeSeriesResponse.add_member(:time_series_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "timeSeriesArn"))
1163
1166
  DescribeTimeSeriesResponse.struct_class = Types::DescribeTimeSeriesResponse
1164
1167
 
1165
1168
  DetailedError.add_member(:code, Shapes::ShapeRef.new(shape: DetailedErrorCode, required: true, location_name: "code"))
@@ -1238,7 +1241,7 @@ module Aws::IoTSiteWise
1238
1241
  GetAssetPropertyAggregatesRequest.add_member(:end_date, Shapes::ShapeRef.new(shape: Timestamp, required: true, location: "querystring", location_name: "endDate"))
1239
1242
  GetAssetPropertyAggregatesRequest.add_member(:time_ordering, Shapes::ShapeRef.new(shape: TimeOrdering, location: "querystring", location_name: "timeOrdering"))
1240
1243
  GetAssetPropertyAggregatesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
1241
- GetAssetPropertyAggregatesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
1244
+ GetAssetPropertyAggregatesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: GetAssetPropertyValueAggregatesMaxResults, location: "querystring", location_name: "maxResults"))
1242
1245
  GetAssetPropertyAggregatesRequest.struct_class = Types::GetAssetPropertyAggregatesRequest
1243
1246
 
1244
1247
  GetAssetPropertyAggregatesResponse.add_member(:aggregated_values, Shapes::ShapeRef.new(shape: AggregatedValues, required: true, location_name: "aggregatedValues"))
@@ -1253,7 +1256,7 @@ module Aws::IoTSiteWise
1253
1256
  GetAssetPropertyValueHistoryRequest.add_member(:qualities, Shapes::ShapeRef.new(shape: Qualities, location: "querystring", location_name: "qualities"))
1254
1257
  GetAssetPropertyValueHistoryRequest.add_member(:time_ordering, Shapes::ShapeRef.new(shape: TimeOrdering, location: "querystring", location_name: "timeOrdering"))
1255
1258
  GetAssetPropertyValueHistoryRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
1256
- GetAssetPropertyValueHistoryRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
1259
+ GetAssetPropertyValueHistoryRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: GetAssetPropertyValueHistoryMaxResults, location: "querystring", location_name: "maxResults"))
1257
1260
  GetAssetPropertyValueHistoryRequest.struct_class = Types::GetAssetPropertyValueHistoryRequest
1258
1261
 
1259
1262
  GetAssetPropertyValueHistoryResponse.add_member(:asset_property_value_history, Shapes::ShapeRef.new(shape: AssetPropertyValueHistory, required: true, location_name: "assetPropertyValueHistory"))
@@ -1651,6 +1654,7 @@ module Aws::IoTSiteWise
1651
1654
  TimeSeriesSummary.add_member(:data_type_spec, Shapes::ShapeRef.new(shape: Name, location_name: "dataTypeSpec"))
1652
1655
  TimeSeriesSummary.add_member(:time_series_creation_date, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "timeSeriesCreationDate"))
1653
1656
  TimeSeriesSummary.add_member(:time_series_last_update_date, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "timeSeriesLastUpdateDate"))
1657
+ TimeSeriesSummary.add_member(:time_series_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "timeSeriesArn"))
1654
1658
  TimeSeriesSummary.struct_class = Types::TimeSeriesSummary
1655
1659
 
1656
1660
  Timestamps.member = Shapes::ShapeRef.new(shape: TimeInNanos)
@@ -14,36 +14,39 @@ module Aws::IoTSiteWise
14
14
  use_dual_stack = parameters.use_dual_stack
15
15
  use_fips = parameters.use_fips
16
16
  endpoint = parameters.endpoint
17
- if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
- if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
- raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
- end
22
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
- raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
- end
25
- return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
- end
27
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
- return Aws::Endpoints::Endpoint.new(url: "https://iotsitewise-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
- end
31
- raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
- end
17
+ if Aws::Endpoints::Matchers.set?(endpoint)
33
18
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
- return Aws::Endpoints::Endpoint.new(url: "https://iotsitewise-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
- end
37
- raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
38
20
  end
39
21
  if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
- return Aws::Endpoints::Endpoint.new(url: "https://iotsitewise.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
22
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
23
+ end
24
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
25
+ end
26
+ if Aws::Endpoints::Matchers.set?(region)
27
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
30
+ return Aws::Endpoints::Endpoint.new(url: "https://iotsitewise-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
31
+ end
32
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
+ end
34
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
+ return Aws::Endpoints::Endpoint.new(url: "https://iotsitewise-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
+ end
38
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
39
+ end
40
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
41
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
42
+ return Aws::Endpoints::Endpoint.new(url: "https://iotsitewise.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
43
+ end
44
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
42
45
  end
43
- raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
46
+ return Aws::Endpoints::Endpoint.new(url: "https://iotsitewise.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
44
47
  end
45
- return Aws::Endpoints::Endpoint.new(url: "https://iotsitewise.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
46
48
  end
49
+ raise ArgumentError, "Invalid Configuration: Missing Region"
47
50
  raise ArgumentError, 'No endpoint could be resolved'
48
51
 
49
52
  end
@@ -1168,9 +1168,9 @@ module Aws::IoTSiteWise
1168
1168
  # The maximum number of results to return for each paginated request.
1169
1169
  # A result set is returned in the two cases, whichever occurs first.
1170
1170
  #
1171
- # * The size of the result set is less than 1 MB.
1171
+ # * The size of the result set is equal to 1 MB.
1172
1172
  #
1173
- # * The number of data points in the result set is less than the value
1173
+ # * The number of data points in the result set is equal to the value
1174
1174
  # of `maxResults`. The maximum value of `maxResults` is 4000.
1175
1175
  # @return [Integer]
1176
1176
  #
@@ -1488,10 +1488,10 @@ module Aws::IoTSiteWise
1488
1488
  # The maximum number of results to return for each paginated request.
1489
1489
  # A result set is returned in the two cases, whichever occurs first.
1490
1490
  #
1491
- # * The size of the result set is less than 1 MB.
1491
+ # * The size of the result set is equal to 4 MB.
1492
1492
  #
1493
- # * The number of data points in the result set is less than the value
1494
- # of `maxResults`. The maximum value of `maxResults` is 4000.
1493
+ # * The number of data points in the result set is equal to the value
1494
+ # of `maxResults`. The maximum value of `maxResults` is 20000.
1495
1495
  # @return [Integer]
1496
1496
  #
1497
1497
  class BatchGetAssetPropertyValueHistoryRequest < Struct.new(
@@ -1590,7 +1590,7 @@ module Aws::IoTSiteWise
1590
1590
 
1591
1591
  # @!attribute [rw] entries
1592
1592
  # The list of asset property value entries for the batch get request.
1593
- # You can specify up to 16 entries per request.
1593
+ # You can specify up to 128 entries per request.
1594
1594
  # @return [Array<Types::BatchGetAssetPropertyValueEntry>]
1595
1595
  #
1596
1596
  # @!attribute [rw] next_token
@@ -3654,6 +3654,16 @@ module Aws::IoTSiteWise
3654
3654
  # The date that the time series was last updated, in Unix epoch time.
3655
3655
  # @return [Time]
3656
3656
  #
3657
+ # @!attribute [rw] time_series_arn
3658
+ # The [ARN][1] of the time series, which has the following format.
3659
+ #
3660
+ # `arn:$\{Partition\}:iotsitewise:$\{Region\}:$\{Account\}:time-series/$\{TimeSeriesId\}`
3661
+ #
3662
+ #
3663
+ #
3664
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
3665
+ # @return [String]
3666
+ #
3657
3667
  class DescribeTimeSeriesResponse < Struct.new(
3658
3668
  :asset_id,
3659
3669
  :property_id,
@@ -3662,7 +3672,8 @@ module Aws::IoTSiteWise
3662
3672
  :data_type,
3663
3673
  :data_type_spec,
3664
3674
  :time_series_creation_date,
3665
- :time_series_last_update_date)
3675
+ :time_series_last_update_date,
3676
+ :time_series_arn)
3666
3677
  SENSITIVE = []
3667
3678
  include Aws::Structure
3668
3679
  end
@@ -4014,8 +4025,12 @@ module Aws::IoTSiteWise
4014
4025
  #
4015
4026
  # @!attribute [rw] max_results
4016
4027
  # The maximum number of results to return for each paginated request.
4028
+ # A result set is returned in the two cases, whichever occurs first.
4029
+ #
4030
+ # * The size of the result set is equal to 1 MB.
4017
4031
  #
4018
- # Default: 100
4032
+ # * The number of data points in the result set is equal to the value
4033
+ # of `maxResults`. The maximum value of `maxResults` is 250.
4019
4034
  # @return [Integer]
4020
4035
  #
4021
4036
  class GetAssetPropertyAggregatesRequest < Struct.new(
@@ -4096,8 +4111,12 @@ module Aws::IoTSiteWise
4096
4111
  #
4097
4112
  # @!attribute [rw] max_results
4098
4113
  # The maximum number of results to return for each paginated request.
4114
+ # A result set is returned in the two cases, whichever occurs first.
4115
+ #
4116
+ # * The size of the result set is equal to 4 MB.
4099
4117
  #
4100
- # Default: 100
4118
+ # * The number of data points in the result set is equal to the value
4119
+ # of `maxResults`. The maximum value of `maxResults` is 20000.
4101
4120
  # @return [Integer]
4102
4121
  #
4103
4122
  class GetAssetPropertyValueHistoryRequest < Struct.new(
@@ -6142,6 +6161,16 @@ module Aws::IoTSiteWise
6142
6161
  # The date that the time series was last updated, in Unix epoch time.
6143
6162
  # @return [Time]
6144
6163
  #
6164
+ # @!attribute [rw] time_series_arn
6165
+ # The [ARN][1] of the time series, which has the following format.
6166
+ #
6167
+ # `arn:$\{Partition\}:iotsitewise:$\{Region\}:$\{Account\}:time-series/$\{TimeSeriesId\}`
6168
+ #
6169
+ #
6170
+ #
6171
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
6172
+ # @return [String]
6173
+ #
6145
6174
  class TimeSeriesSummary < Struct.new(
6146
6175
  :asset_id,
6147
6176
  :property_id,
@@ -6150,7 +6179,8 @@ module Aws::IoTSiteWise
6150
6179
  :data_type,
6151
6180
  :data_type_spec,
6152
6181
  :time_series_creation_date,
6153
- :time_series_last_update_date)
6182
+ :time_series_last_update_date,
6183
+ :time_series_arn)
6154
6184
  SENSITIVE = []
6155
6185
  include Aws::Structure
6156
6186
  end
@@ -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.48.0'
56
+ GEM_VERSION = '1.50.0'
57
57
 
58
58
  end
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.48.0
4
+ version: 1.50.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: 2023-01-18 00:00:00.000000000 Z
11
+ date: 2023-05-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core