aws-sdk-iotsitewise 1.45.0 → 1.47.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotsitewise/client.rb +190 -25
- data/lib/aws-sdk-iotsitewise/client_api.rb +98 -0
- data/lib/aws-sdk-iotsitewise/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-iotsitewise/endpoint_provider.rb +112 -0
- data/lib/aws-sdk-iotsitewise/endpoints.rb +1037 -0
- data/lib/aws-sdk-iotsitewise/plugins/endpoints.rb +214 -0
- data/lib/aws-sdk-iotsitewise/types.rb +286 -41
- data/lib/aws-sdk-iotsitewise.rb +5 -1
- metadata +8 -4
@@ -18,8 +18,8 @@ module Aws::IoTSiteWise
|
|
18
18
|
# @return [String]
|
19
19
|
#
|
20
20
|
# @!attribute [rw] identity
|
21
|
-
# The identity (an
|
22
|
-
#
|
21
|
+
# The identity (an IAM Identity Center user, an IAM Identity Center
|
22
|
+
# group, or an IAM user).
|
23
23
|
# @return [Types::Identity]
|
24
24
|
#
|
25
25
|
# @!attribute [rw] resource
|
@@ -180,11 +180,16 @@ module Aws::IoTSiteWise
|
|
180
180
|
# The asset properties that this composite model defines.
|
181
181
|
# @return [Array<Types::AssetProperty>]
|
182
182
|
#
|
183
|
+
# @!attribute [rw] id
|
184
|
+
# The ID of the asset composite model.
|
185
|
+
# @return [String]
|
186
|
+
#
|
183
187
|
class AssetCompositeModel < Struct.new(
|
184
188
|
:name,
|
185
189
|
:description,
|
186
190
|
:type,
|
187
|
-
:properties
|
191
|
+
:properties,
|
192
|
+
:id)
|
188
193
|
SENSITIVE = []
|
189
194
|
include Aws::Structure
|
190
195
|
end
|
@@ -324,6 +329,7 @@ module Aws::IoTSiteWise
|
|
324
329
|
# },
|
325
330
|
# },
|
326
331
|
# ],
|
332
|
+
# id: "ID",
|
327
333
|
# }
|
328
334
|
#
|
329
335
|
# @!attribute [rw] name
|
@@ -343,11 +349,16 @@ module Aws::IoTSiteWise
|
|
343
349
|
# The asset property definitions for this composite model.
|
344
350
|
# @return [Array<Types::AssetModelProperty>]
|
345
351
|
#
|
352
|
+
# @!attribute [rw] id
|
353
|
+
# The ID of the asset model composite model.
|
354
|
+
# @return [String]
|
355
|
+
#
|
346
356
|
class AssetModelCompositeModel < Struct.new(
|
347
357
|
:name,
|
348
358
|
:description,
|
349
359
|
:type,
|
350
|
-
:properties
|
360
|
+
:properties,
|
361
|
+
:id)
|
351
362
|
SENSITIVE = []
|
352
363
|
include Aws::Structure
|
353
364
|
end
|
@@ -726,6 +737,51 @@ module Aws::IoTSiteWise
|
|
726
737
|
include Aws::Structure
|
727
738
|
end
|
728
739
|
|
740
|
+
# Contains a summary of a property associated with a model.
|
741
|
+
#
|
742
|
+
# @!attribute [rw] id
|
743
|
+
# The ID of the property.
|
744
|
+
# @return [String]
|
745
|
+
#
|
746
|
+
# @!attribute [rw] name
|
747
|
+
# The name of the property.
|
748
|
+
# @return [String]
|
749
|
+
#
|
750
|
+
# @!attribute [rw] data_type
|
751
|
+
# The data type of the property.
|
752
|
+
# @return [String]
|
753
|
+
#
|
754
|
+
# @!attribute [rw] data_type_spec
|
755
|
+
# The data type of the structure for this property. This parameter
|
756
|
+
# exists on properties that have the `STRUCT` data type.
|
757
|
+
# @return [String]
|
758
|
+
#
|
759
|
+
# @!attribute [rw] unit
|
760
|
+
# The unit (such as `Newtons` or `RPM`) of the property.
|
761
|
+
# @return [String]
|
762
|
+
#
|
763
|
+
# @!attribute [rw] type
|
764
|
+
# Contains a property type, which can be one of `attribute`,
|
765
|
+
# `measurement`, `metric`, or `transform`.
|
766
|
+
# @return [Types::PropertyType]
|
767
|
+
#
|
768
|
+
# @!attribute [rw] asset_model_composite_model_id
|
769
|
+
# The ID of the composite model that contains the asset model
|
770
|
+
# property.
|
771
|
+
# @return [String]
|
772
|
+
#
|
773
|
+
class AssetModelPropertySummary < Struct.new(
|
774
|
+
:id,
|
775
|
+
:name,
|
776
|
+
:data_type,
|
777
|
+
:data_type_spec,
|
778
|
+
:unit,
|
779
|
+
:type,
|
780
|
+
:asset_model_composite_model_id)
|
781
|
+
SENSITIVE = []
|
782
|
+
include Aws::Structure
|
783
|
+
end
|
784
|
+
|
729
785
|
# Contains current status information for an asset model. For more
|
730
786
|
# information, see [Asset and model states][1] in the *IoT SiteWise User
|
731
787
|
# Guide*.
|
@@ -853,6 +909,54 @@ module Aws::IoTSiteWise
|
|
853
909
|
include Aws::Structure
|
854
910
|
end
|
855
911
|
|
912
|
+
# Contains a summary of a property associated with an asset.
|
913
|
+
#
|
914
|
+
# @!attribute [rw] id
|
915
|
+
# The ID of the property.
|
916
|
+
# @return [String]
|
917
|
+
#
|
918
|
+
# @!attribute [rw] alias
|
919
|
+
# The alias that identifies the property, such as an OPC-UA server
|
920
|
+
# data stream path (for example,
|
921
|
+
# `/company/windfarm/3/turbine/7/temperature`). For more information,
|
922
|
+
# see [Mapping industrial data streams to asset properties][1] in the
|
923
|
+
# *IoT SiteWise User Guide*.
|
924
|
+
#
|
925
|
+
#
|
926
|
+
#
|
927
|
+
# [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/connect-data-streams.html
|
928
|
+
# @return [String]
|
929
|
+
#
|
930
|
+
# @!attribute [rw] unit
|
931
|
+
# The unit of measure (such as Newtons or RPM) of the asset property.
|
932
|
+
# @return [String]
|
933
|
+
#
|
934
|
+
# @!attribute [rw] notification
|
935
|
+
# Contains asset property value notification information. When the
|
936
|
+
# notification state is enabled, IoT SiteWise publishes property value
|
937
|
+
# updates to a unique MQTT topic. For more information, see
|
938
|
+
# [Interacting with other services][1] in the *IoT SiteWise User
|
939
|
+
# Guide*.
|
940
|
+
#
|
941
|
+
#
|
942
|
+
#
|
943
|
+
# [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/interact-with-other-services.html
|
944
|
+
# @return [Types::PropertyNotification]
|
945
|
+
#
|
946
|
+
# @!attribute [rw] asset_composite_model_id
|
947
|
+
# The ID of the composite model that contains the asset property.
|
948
|
+
# @return [String]
|
949
|
+
#
|
950
|
+
class AssetPropertySummary < Struct.new(
|
951
|
+
:id,
|
952
|
+
:alias,
|
953
|
+
:unit,
|
954
|
+
:notification,
|
955
|
+
:asset_composite_model_id)
|
956
|
+
SENSITIVE = []
|
957
|
+
include Aws::Structure
|
958
|
+
end
|
959
|
+
|
856
960
|
# Contains asset property value information.
|
857
961
|
#
|
858
962
|
# @note When making an API call, you may pass AssetPropertyValue
|
@@ -2141,10 +2245,15 @@ module Aws::IoTSiteWise
|
|
2141
2245
|
# Contains asset property information.
|
2142
2246
|
# @return [Types::Property]
|
2143
2247
|
#
|
2248
|
+
# @!attribute [rw] id
|
2249
|
+
# The ID of the composite model that contains the property.
|
2250
|
+
# @return [String]
|
2251
|
+
#
|
2144
2252
|
class CompositeModelProperty < Struct.new(
|
2145
2253
|
:name,
|
2146
2254
|
:type,
|
2147
|
-
:asset_property
|
2255
|
+
:asset_property,
|
2256
|
+
:id)
|
2148
2257
|
SENSITIVE = []
|
2149
2258
|
include Aws::Structure
|
2150
2259
|
end
|
@@ -2240,8 +2349,8 @@ module Aws::IoTSiteWise
|
|
2240
2349
|
# }
|
2241
2350
|
#
|
2242
2351
|
# @!attribute [rw] access_policy_identity
|
2243
|
-
# The identity for this access policy. Choose an
|
2244
|
-
#
|
2352
|
+
# The identity for this access policy. Choose an IAM Identity Center
|
2353
|
+
# user, an IAM Identity Center group, or an IAM user.
|
2245
2354
|
# @return [Types::Identity]
|
2246
2355
|
#
|
2247
2356
|
# @!attribute [rw] access_policy_resource
|
@@ -2965,11 +3074,11 @@ module Aws::IoTSiteWise
|
|
2965
3074
|
# The service to use to authenticate users to the portal. Choose from
|
2966
3075
|
# the following options:
|
2967
3076
|
#
|
2968
|
-
# * `SSO` – The portal uses
|
2969
|
-
# authenticate users and manage user permissions. Before
|
2970
|
-
# create a portal that uses
|
2971
|
-
#
|
2972
|
-
#
|
3077
|
+
# * `SSO` – The portal uses IAM Identity Center (successor to Single
|
3078
|
+
# Sign-On) to authenticate users and manage user permissions. Before
|
3079
|
+
# you can create a portal that uses IAM Identity Center, you must
|
3080
|
+
# enable IAM Identity Center. For more information, see [Enabling
|
3081
|
+
# IAM Identity Center][1] in the *IoT SiteWise User Guide*. This
|
2973
3082
|
# option is only available in Amazon Web Services Regions other than
|
2974
3083
|
# the China Regions.
|
2975
3084
|
#
|
@@ -3041,8 +3150,8 @@ module Aws::IoTSiteWise
|
|
3041
3150
|
#
|
3042
3151
|
# @!attribute [rw] portal_start_url
|
3043
3152
|
# The URL for the IoT SiteWise Monitor portal. You can use this URL to
|
3044
|
-
# access portals that use
|
3045
|
-
#
|
3153
|
+
# access portals that use IAM Identity Center for authentication. For
|
3154
|
+
# portals that use IAM for authentication, you must use the IoT
|
3046
3155
|
# SiteWise console to get a URL that you can use to access the portal.
|
3047
3156
|
# @return [String]
|
3048
3157
|
#
|
@@ -3052,8 +3161,8 @@ module Aws::IoTSiteWise
|
|
3052
3161
|
# @return [Types::PortalStatus]
|
3053
3162
|
#
|
3054
3163
|
# @!attribute [rw] sso_application_id
|
3055
|
-
# The associated
|
3056
|
-
# uses
|
3164
|
+
# The associated IAM Identity Center application ID, if the portal
|
3165
|
+
# uses IAM Identity Center.
|
3057
3166
|
# @return [String]
|
3058
3167
|
#
|
3059
3168
|
class CreatePortalResponse < Struct.new(
|
@@ -3525,8 +3634,8 @@ module Aws::IoTSiteWise
|
|
3525
3634
|
# @return [String]
|
3526
3635
|
#
|
3527
3636
|
# @!attribute [rw] access_policy_identity
|
3528
|
-
# The identity (
|
3529
|
-
#
|
3637
|
+
# The identity (IAM Identity Center user, IAM Identity Center group,
|
3638
|
+
# or IAM user) to which this access policy applies.
|
3530
3639
|
# @return [Types::Identity]
|
3531
3640
|
#
|
3532
3641
|
# @!attribute [rw] access_policy_resource
|
@@ -3564,14 +3673,20 @@ module Aws::IoTSiteWise
|
|
3564
3673
|
#
|
3565
3674
|
# {
|
3566
3675
|
# asset_model_id: "ID", # required
|
3676
|
+
# exclude_properties: false,
|
3567
3677
|
# }
|
3568
3678
|
#
|
3569
3679
|
# @!attribute [rw] asset_model_id
|
3570
3680
|
# The ID of the asset model.
|
3571
3681
|
# @return [String]
|
3572
3682
|
#
|
3683
|
+
# @!attribute [rw] exclude_properties
|
3684
|
+
# Whether or not to exclude asset model properties from the response.
|
3685
|
+
# @return [Boolean]
|
3686
|
+
#
|
3573
3687
|
class DescribeAssetModelRequest < Struct.new(
|
3574
|
-
:asset_model_id
|
3688
|
+
:asset_model_id,
|
3689
|
+
:exclude_properties)
|
3575
3690
|
SENSITIVE = []
|
3576
3691
|
include Aws::Structure
|
3577
3692
|
end
|
@@ -3708,14 +3823,20 @@ module Aws::IoTSiteWise
|
|
3708
3823
|
#
|
3709
3824
|
# {
|
3710
3825
|
# asset_id: "ID", # required
|
3826
|
+
# exclude_properties: false,
|
3711
3827
|
# }
|
3712
3828
|
#
|
3713
3829
|
# @!attribute [rw] asset_id
|
3714
3830
|
# The ID of the asset.
|
3715
3831
|
# @return [String]
|
3716
3832
|
#
|
3833
|
+
# @!attribute [rw] exclude_properties
|
3834
|
+
# Whether or not to exclude asset properties from the response.
|
3835
|
+
# @return [Boolean]
|
3836
|
+
#
|
3717
3837
|
class DescribeAssetRequest < Struct.new(
|
3718
|
-
:asset_id
|
3838
|
+
:asset_id,
|
3839
|
+
:exclude_properties)
|
3719
3840
|
SENSITIVE = []
|
3720
3841
|
include Aws::Structure
|
3721
3842
|
end
|
@@ -4176,16 +4297,15 @@ module Aws::IoTSiteWise
|
|
4176
4297
|
# @return [String]
|
4177
4298
|
#
|
4178
4299
|
# @!attribute [rw] portal_client_id
|
4179
|
-
# The
|
4180
|
-
#
|
4181
|
-
#
|
4182
|
-
# to authenticate users.
|
4300
|
+
# The IAM Identity Center application generated client ID (used with
|
4301
|
+
# IAM Identity Center APIs). IoT SiteWise includes `portalClientId`
|
4302
|
+
# for only portals that use IAM Identity Center to authenticate users.
|
4183
4303
|
# @return [String]
|
4184
4304
|
#
|
4185
4305
|
# @!attribute [rw] portal_start_url
|
4186
4306
|
# The URL for the IoT SiteWise Monitor portal. You can use this URL to
|
4187
|
-
# access portals that use
|
4188
|
-
#
|
4307
|
+
# access portals that use IAM Identity Center for authentication. For
|
4308
|
+
# portals that use IAM for authentication, you must use the IoT
|
4189
4309
|
# SiteWise console to get a URL that you can use to access the portal.
|
4190
4310
|
# @return [String]
|
4191
4311
|
#
|
@@ -5334,7 +5454,7 @@ module Aws::IoTSiteWise
|
|
5334
5454
|
# }
|
5335
5455
|
#
|
5336
5456
|
# @!attribute [rw] id
|
5337
|
-
# The
|
5457
|
+
# The IAM Identity Center ID of the group.
|
5338
5458
|
# @return [String]
|
5339
5459
|
#
|
5340
5460
|
class GroupIdentity < Struct.new(
|
@@ -5404,10 +5524,10 @@ module Aws::IoTSiteWise
|
|
5404
5524
|
|
5405
5525
|
# Contains an identity that can access an IoT SiteWise Monitor resource.
|
5406
5526
|
#
|
5407
|
-
# <note markdown="1"> Currently, you can't use Amazon Web Services APIs to retrieve
|
5408
|
-
#
|
5409
|
-
#
|
5410
|
-
#
|
5527
|
+
# <note markdown="1"> Currently, you can't use Amazon Web Services APIs to retrieve IAM
|
5528
|
+
# Identity Center identity IDs. You can find the IAM Identity Center
|
5529
|
+
# identity IDs in the URL of user and group pages in the [IAM Identity
|
5530
|
+
# Center console][1].
|
5411
5531
|
#
|
5412
5532
|
# </note>
|
5413
5533
|
#
|
@@ -5434,11 +5554,11 @@ module Aws::IoTSiteWise
|
|
5434
5554
|
# }
|
5435
5555
|
#
|
5436
5556
|
# @!attribute [rw] user
|
5437
|
-
# An
|
5557
|
+
# An IAM Identity Center user identity.
|
5438
5558
|
# @return [Types::UserIdentity]
|
5439
5559
|
#
|
5440
5560
|
# @!attribute [rw] group
|
5441
|
-
# An
|
5561
|
+
# An IAM Identity Center group identity.
|
5442
5562
|
# @return [Types::GroupIdentity]
|
5443
5563
|
#
|
5444
5564
|
# @!attribute [rw] iam_user
|
@@ -5679,9 +5799,9 @@ module Aws::IoTSiteWise
|
|
5679
5799
|
# }
|
5680
5800
|
#
|
5681
5801
|
# @!attribute [rw] identity_type
|
5682
|
-
# The type of identity (
|
5683
|
-
#
|
5684
|
-
#
|
5802
|
+
# The type of identity (IAM Identity Center user, IAM Identity Center
|
5803
|
+
# group, or IAM user). This parameter is required if you specify
|
5804
|
+
# `identityId`.
|
5685
5805
|
# @return [String]
|
5686
5806
|
#
|
5687
5807
|
# @!attribute [rw] identity_id
|
@@ -5747,6 +5867,68 @@ module Aws::IoTSiteWise
|
|
5747
5867
|
include Aws::Structure
|
5748
5868
|
end
|
5749
5869
|
|
5870
|
+
# @note When making an API call, you may pass ListAssetModelPropertiesRequest
|
5871
|
+
# data as a hash:
|
5872
|
+
#
|
5873
|
+
# {
|
5874
|
+
# asset_model_id: "ID", # required
|
5875
|
+
# next_token: "NextToken",
|
5876
|
+
# max_results: 1,
|
5877
|
+
# filter: "ALL", # accepts ALL, BASE
|
5878
|
+
# }
|
5879
|
+
#
|
5880
|
+
# @!attribute [rw] asset_model_id
|
5881
|
+
# The ID of the asset model.
|
5882
|
+
# @return [String]
|
5883
|
+
#
|
5884
|
+
# @!attribute [rw] next_token
|
5885
|
+
# The token to be used for the next set of paginated results.
|
5886
|
+
# @return [String]
|
5887
|
+
#
|
5888
|
+
# @!attribute [rw] max_results
|
5889
|
+
# The maximum number of results to return for each paginated request.
|
5890
|
+
# If not specified, the default value is 50.
|
5891
|
+
# @return [Integer]
|
5892
|
+
#
|
5893
|
+
# @!attribute [rw] filter
|
5894
|
+
# Filters the requested list of asset model properties. You can choose
|
5895
|
+
# one of the following options:
|
5896
|
+
#
|
5897
|
+
# * `ALL` – The list includes all asset model properties for a given
|
5898
|
+
# asset model ID.
|
5899
|
+
#
|
5900
|
+
# * `BASE` – The list includes only base asset model properties for a
|
5901
|
+
# given asset model ID.
|
5902
|
+
#
|
5903
|
+
# Default: `BASE`
|
5904
|
+
# @return [String]
|
5905
|
+
#
|
5906
|
+
class ListAssetModelPropertiesRequest < Struct.new(
|
5907
|
+
:asset_model_id,
|
5908
|
+
:next_token,
|
5909
|
+
:max_results,
|
5910
|
+
:filter)
|
5911
|
+
SENSITIVE = []
|
5912
|
+
include Aws::Structure
|
5913
|
+
end
|
5914
|
+
|
5915
|
+
# @!attribute [rw] asset_model_property_summaries
|
5916
|
+
# A list that summarizes the properties associated with the specified
|
5917
|
+
# asset model.
|
5918
|
+
# @return [Array<Types::AssetModelPropertySummary>]
|
5919
|
+
#
|
5920
|
+
# @!attribute [rw] next_token
|
5921
|
+
# The token for the next set of results, or null if there are no
|
5922
|
+
# additional results.
|
5923
|
+
# @return [String]
|
5924
|
+
#
|
5925
|
+
class ListAssetModelPropertiesResponse < Struct.new(
|
5926
|
+
:asset_model_property_summaries,
|
5927
|
+
:next_token)
|
5928
|
+
SENSITIVE = []
|
5929
|
+
include Aws::Structure
|
5930
|
+
end
|
5931
|
+
|
5750
5932
|
# @note When making an API call, you may pass ListAssetModelsRequest
|
5751
5933
|
# data as a hash:
|
5752
5934
|
#
|
@@ -5788,6 +5970,68 @@ module Aws::IoTSiteWise
|
|
5788
5970
|
include Aws::Structure
|
5789
5971
|
end
|
5790
5972
|
|
5973
|
+
# @note When making an API call, you may pass ListAssetPropertiesRequest
|
5974
|
+
# data as a hash:
|
5975
|
+
#
|
5976
|
+
# {
|
5977
|
+
# asset_id: "ID", # required
|
5978
|
+
# next_token: "NextToken",
|
5979
|
+
# max_results: 1,
|
5980
|
+
# filter: "ALL", # accepts ALL, BASE
|
5981
|
+
# }
|
5982
|
+
#
|
5983
|
+
# @!attribute [rw] asset_id
|
5984
|
+
# The ID of the asset.
|
5985
|
+
# @return [String]
|
5986
|
+
#
|
5987
|
+
# @!attribute [rw] next_token
|
5988
|
+
# The token to be used for the next set of paginated results.
|
5989
|
+
# @return [String]
|
5990
|
+
#
|
5991
|
+
# @!attribute [rw] max_results
|
5992
|
+
# The maximum number of results to return for each paginated request.
|
5993
|
+
# If not specified, the default value is 50.
|
5994
|
+
# @return [Integer]
|
5995
|
+
#
|
5996
|
+
# @!attribute [rw] filter
|
5997
|
+
# Filters the requested list of asset properties. You can choose one
|
5998
|
+
# of the following options:
|
5999
|
+
#
|
6000
|
+
# * `ALL` – The list includes all asset properties for a given asset
|
6001
|
+
# model ID.
|
6002
|
+
#
|
6003
|
+
# * `BASE` – The list includes only base asset properties for a given
|
6004
|
+
# asset model ID.
|
6005
|
+
#
|
6006
|
+
# Default: `BASE`
|
6007
|
+
# @return [String]
|
6008
|
+
#
|
6009
|
+
class ListAssetPropertiesRequest < Struct.new(
|
6010
|
+
:asset_id,
|
6011
|
+
:next_token,
|
6012
|
+
:max_results,
|
6013
|
+
:filter)
|
6014
|
+
SENSITIVE = []
|
6015
|
+
include Aws::Structure
|
6016
|
+
end
|
6017
|
+
|
6018
|
+
# @!attribute [rw] asset_property_summaries
|
6019
|
+
# A list that summarizes the properties associated with the specified
|
6020
|
+
# asset.
|
6021
|
+
# @return [Array<Types::AssetPropertySummary>]
|
6022
|
+
#
|
6023
|
+
# @!attribute [rw] next_token
|
6024
|
+
# The token for the next set of results, or null if there are no
|
6025
|
+
# additional results.
|
6026
|
+
# @return [String]
|
6027
|
+
#
|
6028
|
+
class ListAssetPropertiesResponse < Struct.new(
|
6029
|
+
:asset_property_summaries,
|
6030
|
+
:next_token)
|
6031
|
+
SENSITIVE = []
|
6032
|
+
include Aws::Structure
|
6033
|
+
end
|
6034
|
+
|
5791
6035
|
# @note When making an API call, you may pass ListAssetRelationshipsRequest
|
5792
6036
|
# data as a hash:
|
5793
6037
|
#
|
@@ -6651,8 +6895,8 @@ module Aws::IoTSiteWise
|
|
6651
6895
|
#
|
6652
6896
|
# @!attribute [rw] start_url
|
6653
6897
|
# The URL for the IoT SiteWise Monitor portal. You can use this URL to
|
6654
|
-
# access portals that use
|
6655
|
-
#
|
6898
|
+
# access portals that use IAM Identity Center for authentication. For
|
6899
|
+
# portals that use IAM for authentication, you must use the IoT
|
6656
6900
|
# SiteWise console to get a URL that you can use to access the portal.
|
6657
6901
|
# @return [String]
|
6658
6902
|
#
|
@@ -7734,8 +7978,8 @@ module Aws::IoTSiteWise
|
|
7734
7978
|
# @return [String]
|
7735
7979
|
#
|
7736
7980
|
# @!attribute [rw] access_policy_identity
|
7737
|
-
# The identity for this access policy. Choose an
|
7738
|
-
#
|
7981
|
+
# The identity for this access policy. Choose an IAM Identity Center
|
7982
|
+
# user, an IAM Identity Center group, or an IAM user.
|
7739
7983
|
# @return [Types::Identity]
|
7740
7984
|
#
|
7741
7985
|
# @!attribute [rw] access_policy_resource
|
@@ -7908,6 +8152,7 @@ module Aws::IoTSiteWise
|
|
7908
8152
|
# },
|
7909
8153
|
# },
|
7910
8154
|
# ],
|
8155
|
+
# id: "ID",
|
7911
8156
|
# },
|
7912
8157
|
# ],
|
7913
8158
|
# client_token: "ClientToken",
|
@@ -8426,7 +8671,7 @@ module Aws::IoTSiteWise
|
|
8426
8671
|
# }
|
8427
8672
|
#
|
8428
8673
|
# @!attribute [rw] id
|
8429
|
-
# The
|
8674
|
+
# The IAM Identity Center ID of the user.
|
8430
8675
|
# @return [String]
|
8431
8676
|
#
|
8432
8677
|
class UserIdentity < Struct.new(
|
data/lib/aws-sdk-iotsitewise.rb
CHANGED
@@ -13,10 +13,14 @@ require 'aws-sigv4'
|
|
13
13
|
|
14
14
|
require_relative 'aws-sdk-iotsitewise/types'
|
15
15
|
require_relative 'aws-sdk-iotsitewise/client_api'
|
16
|
+
require_relative 'aws-sdk-iotsitewise/plugins/endpoints.rb'
|
16
17
|
require_relative 'aws-sdk-iotsitewise/client'
|
17
18
|
require_relative 'aws-sdk-iotsitewise/errors'
|
18
19
|
require_relative 'aws-sdk-iotsitewise/waiters'
|
19
20
|
require_relative 'aws-sdk-iotsitewise/resource'
|
21
|
+
require_relative 'aws-sdk-iotsitewise/endpoint_parameters'
|
22
|
+
require_relative 'aws-sdk-iotsitewise/endpoint_provider'
|
23
|
+
require_relative 'aws-sdk-iotsitewise/endpoints'
|
20
24
|
require_relative 'aws-sdk-iotsitewise/customizations'
|
21
25
|
|
22
26
|
# This module provides support for AWS IoT SiteWise. This module is available in the
|
@@ -49,6 +53,6 @@ require_relative 'aws-sdk-iotsitewise/customizations'
|
|
49
53
|
# @!group service
|
50
54
|
module Aws::IoTSiteWise
|
51
55
|
|
52
|
-
GEM_VERSION = '1.
|
56
|
+
GEM_VERSION = '1.47.0'
|
53
57
|
|
54
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.
|
4
|
+
version: 1.47.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: 2022-
|
11
|
+
date: 2022-11-02 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.
|
22
|
+
version: 3.165.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.165.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -59,7 +59,11 @@ files:
|
|
59
59
|
- lib/aws-sdk-iotsitewise/client.rb
|
60
60
|
- lib/aws-sdk-iotsitewise/client_api.rb
|
61
61
|
- lib/aws-sdk-iotsitewise/customizations.rb
|
62
|
+
- lib/aws-sdk-iotsitewise/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-iotsitewise/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-iotsitewise/endpoints.rb
|
62
65
|
- lib/aws-sdk-iotsitewise/errors.rb
|
66
|
+
- lib/aws-sdk-iotsitewise/plugins/endpoints.rb
|
63
67
|
- lib/aws-sdk-iotsitewise/resource.rb
|
64
68
|
- lib/aws-sdk-iotsitewise/types.rb
|
65
69
|
- lib/aws-sdk-iotsitewise/waiters.rb
|