aws-sdk-iotsitewise 1.93.0 → 1.94.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: 57945651416e5cd3dc8dc1f6ad9d62a47000b773ce3c44c31546539c349bb69f
4
- data.tar.gz: 55ab3af225e099ceaec0bca6793ddcb4ab2ffed5245146dd1a69d218723f0ecf
3
+ metadata.gz: 40cb371cdd5b542c15c80ca78d1e7e693b1191d94a12772986a8a733370ae4f9
4
+ data.tar.gz: c5686360e8fbc61d6f43c3a9a20168ceabead9921337e4f7ff8d21e00d85aa53
5
5
  SHA512:
6
- metadata.gz: 758fde22a5fc4d2dc9dc6f247e26707cd0cc36ec0baaaad00e09d692ca80c106eb5c22833cbd7ba29749f3f45160fa8f8e6f3bdeef1d7584d6236c5f4f9b52a7
7
- data.tar.gz: 4553a1f7349fa922bbfca41c6252c74b52173cc286cf16e6c9eae09a472e762bd230a9992a290231bd42802cdb05875b70a3b5e13f83274e272acdee34ed87d4
6
+ metadata.gz: 0dc7493167378fbb00acab0ad65b019d65584d4f6525474d89158cc73e4cd7a16d7c37af0d1c8a2be7156b8d96e566e970323b96862fb73c01fdfc6fc537c052
7
+ data.tar.gz: 9fb3f85cf2edbd17559d4341ed50fda9843d08093e4e3373db19121ebbd5f674dfcf304d144e2496dad628c923597127640e9637b6a528034030ba467091303c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.94.0 (2025-09-08)
5
+ ------------------
6
+
7
+ * Feature - Add ComputationModelVersion support in IoT SiteWise APIs
8
+
4
9
  1.93.0 (2025-08-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.93.0
1
+ 1.94.0
@@ -1031,6 +1031,11 @@ module Aws::IoTSiteWise
1031
1031
  # Identity Center user, IAM Identity Center group, or IAM user) access
1032
1032
  # to the specified IoT SiteWise Monitor portal or project resource.
1033
1033
  #
1034
+ # <note markdown="1"> Support for access policies that use an SSO Group as the identity is
1035
+ # not supported at this time.
1036
+ #
1037
+ # </note>
1038
+ #
1034
1039
  # @option params [required, Types::Identity] :access_policy_identity
1035
1040
  # The identity for this access policy. Choose an IAM Identity Center
1036
1041
  # user, an IAM Identity Center group, or an IAM user.
@@ -3795,6 +3800,9 @@ module Aws::IoTSiteWise
3795
3800
  # @option params [required, String] :computation_model_id
3796
3801
  # The ID of the computation model.
3797
3802
  #
3803
+ # @option params [String] :computation_model_version
3804
+ # The version of the computation model.
3805
+ #
3798
3806
  # @return [Types::DescribeComputationModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3799
3807
  #
3800
3808
  # * {Types::DescribeComputationModelResponse#computation_model_id #computation_model_id} => String
@@ -3813,6 +3821,7 @@ module Aws::IoTSiteWise
3813
3821
  #
3814
3822
  # resp = client.describe_computation_model({
3815
3823
  # computation_model_id: "ID", # required
3824
+ # computation_model_version: "ComputationModelVersionFilter",
3816
3825
  # })
3817
3826
  #
3818
3827
  # @example Response structure
@@ -4591,7 +4600,7 @@ module Aws::IoTSiteWise
4591
4600
  #
4592
4601
  # * Maximum is 20000
4593
4602
  #
4594
- # * Default is 250
4603
+ # * Default is 20000
4595
4604
  #
4596
4605
  # @option params [String] :client_token
4597
4606
  # A unique case-sensitive identifier that you can provide to ensure the
@@ -8337,7 +8346,7 @@ module Aws::IoTSiteWise
8337
8346
  tracer: tracer
8338
8347
  )
8339
8348
  context[:gem_name] = 'aws-sdk-iotsitewise'
8340
- context[:gem_version] = '1.93.0'
8349
+ context[:gem_version] = '1.94.0'
8341
8350
  Seahorse::Client::Request.new(handlers, context)
8342
8351
  end
8343
8352
 
@@ -192,6 +192,7 @@ module Aws::IoTSiteWise
192
192
  ComputationModelSummaries = Shapes::ListShape.new(name: 'ComputationModelSummaries')
193
193
  ComputationModelSummary = Shapes::StructureShape.new(name: 'ComputationModelSummary')
194
194
  ComputationModelType = Shapes::StringShape.new(name: 'ComputationModelType')
195
+ ComputationModelVersionFilter = Shapes::StringShape.new(name: 'ComputationModelVersionFilter')
195
196
  ComputeLocation = Shapes::StringShape.new(name: 'ComputeLocation')
196
197
  ConfigurationErrorDetails = Shapes::StructureShape.new(name: 'ConfigurationErrorDetails')
197
198
  ConfigurationState = Shapes::StringShape.new(name: 'ConfigurationState')
@@ -1684,6 +1685,7 @@ module Aws::IoTSiteWise
1684
1685
  DescribeComputationModelExecutionSummaryResponse.struct_class = Types::DescribeComputationModelExecutionSummaryResponse
1685
1686
 
1686
1687
  DescribeComputationModelRequest.add_member(:computation_model_id, Shapes::ShapeRef.new(shape: ID, required: true, location: "uri", location_name: "computationModelId"))
1688
+ DescribeComputationModelRequest.add_member(:computation_model_version, Shapes::ShapeRef.new(shape: ComputationModelVersionFilter, location: "querystring", location_name: "computationModelVersion"))
1687
1689
  DescribeComputationModelRequest.struct_class = Types::DescribeComputationModelRequest
1688
1690
 
1689
1691
  DescribeComputationModelResponse.add_member(:computation_model_id, Shapes::ShapeRef.new(shape: ID, required: true, location_name: "computationModelId"))
@@ -5442,8 +5442,13 @@ module Aws::IoTSiteWise
5442
5442
  # The ID of the computation model.
5443
5443
  # @return [String]
5444
5444
  #
5445
+ # @!attribute [rw] computation_model_version
5446
+ # The version of the computation model.
5447
+ # @return [String]
5448
+ #
5445
5449
  class DescribeComputationModelRequest < Struct.new(
5446
- :computation_model_id)
5450
+ :computation_model_id,
5451
+ :computation_model_version)
5447
5452
  SENSITIVE = []
5448
5453
  include Aws::Structure
5449
5454
  end
@@ -6509,7 +6514,7 @@ module Aws::IoTSiteWise
6509
6514
  #
6510
6515
  # * Maximum is 20000
6511
6516
  #
6512
- # * Default is 250
6517
+ # * Default is 20000
6513
6518
  # @return [Integer]
6514
6519
  #
6515
6520
  # @!attribute [rw] client_token
@@ -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.93.0'
59
+ GEM_VERSION = '1.94.0'
60
60
 
61
61
  end
62
62
 
data/sig/client.rbs CHANGED
@@ -1070,7 +1070,8 @@ module Aws
1070
1070
  end
1071
1071
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTSiteWise/Client.html#describe_computation_model-instance_method
1072
1072
  def describe_computation_model: (
1073
- computation_model_id: ::String
1073
+ computation_model_id: ::String,
1074
+ ?computation_model_version: ::String
1074
1075
  ) -> _DescribeComputationModelResponseSuccess
1075
1076
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeComputationModelResponseSuccess
1076
1077
 
data/sig/types.rbs CHANGED
@@ -1269,6 +1269,7 @@ module Aws::IoTSiteWise
1269
1269
 
1270
1270
  class DescribeComputationModelRequest
1271
1271
  attr_accessor computation_model_id: ::String
1272
+ attr_accessor computation_model_version: ::String
1272
1273
  SENSITIVE: []
1273
1274
  end
1274
1275
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iotsitewise
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.93.0
4
+ version: 1.94.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services