aws-sdk-iotsitewise 1.75.0 → 1.77.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotsitewise/client.rb +2 -2
- data/lib/aws-sdk-iotsitewise/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-iotsitewise/endpoints.rb +2 -922
- data/lib/aws-sdk-iotsitewise/plugins/endpoints.rb +1 -174
- data/lib/aws-sdk-iotsitewise/types.rb +19 -19
- data/lib/aws-sdk-iotsitewise.rb +1 -1
- metadata +4 -4
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
27
27
|
class Handler < Seahorse::Client::Handler
|
28
28
|
def call(context)
|
29
29
|
unless context[:discovered_endpoint]
|
30
|
-
params = parameters_for_operation(context)
|
30
|
+
params = Aws::IoTSiteWise::Endpoints.parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
@@ -67,179 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
67
67
|
context.http_request.headers[key] = value
|
68
68
|
end
|
69
69
|
end
|
70
|
-
|
71
|
-
def parameters_for_operation(context)
|
72
|
-
case context.operation_name
|
73
|
-
when :associate_assets
|
74
|
-
Aws::IoTSiteWise::Endpoints::AssociateAssets.build(context)
|
75
|
-
when :associate_time_series_to_asset_property
|
76
|
-
Aws::IoTSiteWise::Endpoints::AssociateTimeSeriesToAssetProperty.build(context)
|
77
|
-
when :batch_associate_project_assets
|
78
|
-
Aws::IoTSiteWise::Endpoints::BatchAssociateProjectAssets.build(context)
|
79
|
-
when :batch_disassociate_project_assets
|
80
|
-
Aws::IoTSiteWise::Endpoints::BatchDisassociateProjectAssets.build(context)
|
81
|
-
when :batch_get_asset_property_aggregates
|
82
|
-
Aws::IoTSiteWise::Endpoints::BatchGetAssetPropertyAggregates.build(context)
|
83
|
-
when :batch_get_asset_property_value
|
84
|
-
Aws::IoTSiteWise::Endpoints::BatchGetAssetPropertyValue.build(context)
|
85
|
-
when :batch_get_asset_property_value_history
|
86
|
-
Aws::IoTSiteWise::Endpoints::BatchGetAssetPropertyValueHistory.build(context)
|
87
|
-
when :batch_put_asset_property_value
|
88
|
-
Aws::IoTSiteWise::Endpoints::BatchPutAssetPropertyValue.build(context)
|
89
|
-
when :create_access_policy
|
90
|
-
Aws::IoTSiteWise::Endpoints::CreateAccessPolicy.build(context)
|
91
|
-
when :create_asset
|
92
|
-
Aws::IoTSiteWise::Endpoints::CreateAsset.build(context)
|
93
|
-
when :create_asset_model
|
94
|
-
Aws::IoTSiteWise::Endpoints::CreateAssetModel.build(context)
|
95
|
-
when :create_asset_model_composite_model
|
96
|
-
Aws::IoTSiteWise::Endpoints::CreateAssetModelCompositeModel.build(context)
|
97
|
-
when :create_bulk_import_job
|
98
|
-
Aws::IoTSiteWise::Endpoints::CreateBulkImportJob.build(context)
|
99
|
-
when :create_dashboard
|
100
|
-
Aws::IoTSiteWise::Endpoints::CreateDashboard.build(context)
|
101
|
-
when :create_gateway
|
102
|
-
Aws::IoTSiteWise::Endpoints::CreateGateway.build(context)
|
103
|
-
when :create_portal
|
104
|
-
Aws::IoTSiteWise::Endpoints::CreatePortal.build(context)
|
105
|
-
when :create_project
|
106
|
-
Aws::IoTSiteWise::Endpoints::CreateProject.build(context)
|
107
|
-
when :delete_access_policy
|
108
|
-
Aws::IoTSiteWise::Endpoints::DeleteAccessPolicy.build(context)
|
109
|
-
when :delete_asset
|
110
|
-
Aws::IoTSiteWise::Endpoints::DeleteAsset.build(context)
|
111
|
-
when :delete_asset_model
|
112
|
-
Aws::IoTSiteWise::Endpoints::DeleteAssetModel.build(context)
|
113
|
-
when :delete_asset_model_composite_model
|
114
|
-
Aws::IoTSiteWise::Endpoints::DeleteAssetModelCompositeModel.build(context)
|
115
|
-
when :delete_dashboard
|
116
|
-
Aws::IoTSiteWise::Endpoints::DeleteDashboard.build(context)
|
117
|
-
when :delete_gateway
|
118
|
-
Aws::IoTSiteWise::Endpoints::DeleteGateway.build(context)
|
119
|
-
when :delete_portal
|
120
|
-
Aws::IoTSiteWise::Endpoints::DeletePortal.build(context)
|
121
|
-
when :delete_project
|
122
|
-
Aws::IoTSiteWise::Endpoints::DeleteProject.build(context)
|
123
|
-
when :delete_time_series
|
124
|
-
Aws::IoTSiteWise::Endpoints::DeleteTimeSeries.build(context)
|
125
|
-
when :describe_access_policy
|
126
|
-
Aws::IoTSiteWise::Endpoints::DescribeAccessPolicy.build(context)
|
127
|
-
when :describe_action
|
128
|
-
Aws::IoTSiteWise::Endpoints::DescribeAction.build(context)
|
129
|
-
when :describe_asset
|
130
|
-
Aws::IoTSiteWise::Endpoints::DescribeAsset.build(context)
|
131
|
-
when :describe_asset_composite_model
|
132
|
-
Aws::IoTSiteWise::Endpoints::DescribeAssetCompositeModel.build(context)
|
133
|
-
when :describe_asset_model
|
134
|
-
Aws::IoTSiteWise::Endpoints::DescribeAssetModel.build(context)
|
135
|
-
when :describe_asset_model_composite_model
|
136
|
-
Aws::IoTSiteWise::Endpoints::DescribeAssetModelCompositeModel.build(context)
|
137
|
-
when :describe_asset_property
|
138
|
-
Aws::IoTSiteWise::Endpoints::DescribeAssetProperty.build(context)
|
139
|
-
when :describe_bulk_import_job
|
140
|
-
Aws::IoTSiteWise::Endpoints::DescribeBulkImportJob.build(context)
|
141
|
-
when :describe_dashboard
|
142
|
-
Aws::IoTSiteWise::Endpoints::DescribeDashboard.build(context)
|
143
|
-
when :describe_default_encryption_configuration
|
144
|
-
Aws::IoTSiteWise::Endpoints::DescribeDefaultEncryptionConfiguration.build(context)
|
145
|
-
when :describe_gateway
|
146
|
-
Aws::IoTSiteWise::Endpoints::DescribeGateway.build(context)
|
147
|
-
when :describe_gateway_capability_configuration
|
148
|
-
Aws::IoTSiteWise::Endpoints::DescribeGatewayCapabilityConfiguration.build(context)
|
149
|
-
when :describe_logging_options
|
150
|
-
Aws::IoTSiteWise::Endpoints::DescribeLoggingOptions.build(context)
|
151
|
-
when :describe_portal
|
152
|
-
Aws::IoTSiteWise::Endpoints::DescribePortal.build(context)
|
153
|
-
when :describe_project
|
154
|
-
Aws::IoTSiteWise::Endpoints::DescribeProject.build(context)
|
155
|
-
when :describe_storage_configuration
|
156
|
-
Aws::IoTSiteWise::Endpoints::DescribeStorageConfiguration.build(context)
|
157
|
-
when :describe_time_series
|
158
|
-
Aws::IoTSiteWise::Endpoints::DescribeTimeSeries.build(context)
|
159
|
-
when :disassociate_assets
|
160
|
-
Aws::IoTSiteWise::Endpoints::DisassociateAssets.build(context)
|
161
|
-
when :disassociate_time_series_from_asset_property
|
162
|
-
Aws::IoTSiteWise::Endpoints::DisassociateTimeSeriesFromAssetProperty.build(context)
|
163
|
-
when :execute_action
|
164
|
-
Aws::IoTSiteWise::Endpoints::ExecuteAction.build(context)
|
165
|
-
when :execute_query
|
166
|
-
Aws::IoTSiteWise::Endpoints::ExecuteQuery.build(context)
|
167
|
-
when :get_asset_property_aggregates
|
168
|
-
Aws::IoTSiteWise::Endpoints::GetAssetPropertyAggregates.build(context)
|
169
|
-
when :get_asset_property_value
|
170
|
-
Aws::IoTSiteWise::Endpoints::GetAssetPropertyValue.build(context)
|
171
|
-
when :get_asset_property_value_history
|
172
|
-
Aws::IoTSiteWise::Endpoints::GetAssetPropertyValueHistory.build(context)
|
173
|
-
when :get_interpolated_asset_property_values
|
174
|
-
Aws::IoTSiteWise::Endpoints::GetInterpolatedAssetPropertyValues.build(context)
|
175
|
-
when :list_access_policies
|
176
|
-
Aws::IoTSiteWise::Endpoints::ListAccessPolicies.build(context)
|
177
|
-
when :list_actions
|
178
|
-
Aws::IoTSiteWise::Endpoints::ListActions.build(context)
|
179
|
-
when :list_asset_model_composite_models
|
180
|
-
Aws::IoTSiteWise::Endpoints::ListAssetModelCompositeModels.build(context)
|
181
|
-
when :list_asset_model_properties
|
182
|
-
Aws::IoTSiteWise::Endpoints::ListAssetModelProperties.build(context)
|
183
|
-
when :list_asset_models
|
184
|
-
Aws::IoTSiteWise::Endpoints::ListAssetModels.build(context)
|
185
|
-
when :list_asset_properties
|
186
|
-
Aws::IoTSiteWise::Endpoints::ListAssetProperties.build(context)
|
187
|
-
when :list_asset_relationships
|
188
|
-
Aws::IoTSiteWise::Endpoints::ListAssetRelationships.build(context)
|
189
|
-
when :list_assets
|
190
|
-
Aws::IoTSiteWise::Endpoints::ListAssets.build(context)
|
191
|
-
when :list_associated_assets
|
192
|
-
Aws::IoTSiteWise::Endpoints::ListAssociatedAssets.build(context)
|
193
|
-
when :list_bulk_import_jobs
|
194
|
-
Aws::IoTSiteWise::Endpoints::ListBulkImportJobs.build(context)
|
195
|
-
when :list_composition_relationships
|
196
|
-
Aws::IoTSiteWise::Endpoints::ListCompositionRelationships.build(context)
|
197
|
-
when :list_dashboards
|
198
|
-
Aws::IoTSiteWise::Endpoints::ListDashboards.build(context)
|
199
|
-
when :list_gateways
|
200
|
-
Aws::IoTSiteWise::Endpoints::ListGateways.build(context)
|
201
|
-
when :list_portals
|
202
|
-
Aws::IoTSiteWise::Endpoints::ListPortals.build(context)
|
203
|
-
when :list_project_assets
|
204
|
-
Aws::IoTSiteWise::Endpoints::ListProjectAssets.build(context)
|
205
|
-
when :list_projects
|
206
|
-
Aws::IoTSiteWise::Endpoints::ListProjects.build(context)
|
207
|
-
when :list_tags_for_resource
|
208
|
-
Aws::IoTSiteWise::Endpoints::ListTagsForResource.build(context)
|
209
|
-
when :list_time_series
|
210
|
-
Aws::IoTSiteWise::Endpoints::ListTimeSeries.build(context)
|
211
|
-
when :put_default_encryption_configuration
|
212
|
-
Aws::IoTSiteWise::Endpoints::PutDefaultEncryptionConfiguration.build(context)
|
213
|
-
when :put_logging_options
|
214
|
-
Aws::IoTSiteWise::Endpoints::PutLoggingOptions.build(context)
|
215
|
-
when :put_storage_configuration
|
216
|
-
Aws::IoTSiteWise::Endpoints::PutStorageConfiguration.build(context)
|
217
|
-
when :tag_resource
|
218
|
-
Aws::IoTSiteWise::Endpoints::TagResource.build(context)
|
219
|
-
when :untag_resource
|
220
|
-
Aws::IoTSiteWise::Endpoints::UntagResource.build(context)
|
221
|
-
when :update_access_policy
|
222
|
-
Aws::IoTSiteWise::Endpoints::UpdateAccessPolicy.build(context)
|
223
|
-
when :update_asset
|
224
|
-
Aws::IoTSiteWise::Endpoints::UpdateAsset.build(context)
|
225
|
-
when :update_asset_model
|
226
|
-
Aws::IoTSiteWise::Endpoints::UpdateAssetModel.build(context)
|
227
|
-
when :update_asset_model_composite_model
|
228
|
-
Aws::IoTSiteWise::Endpoints::UpdateAssetModelCompositeModel.build(context)
|
229
|
-
when :update_asset_property
|
230
|
-
Aws::IoTSiteWise::Endpoints::UpdateAssetProperty.build(context)
|
231
|
-
when :update_dashboard
|
232
|
-
Aws::IoTSiteWise::Endpoints::UpdateDashboard.build(context)
|
233
|
-
when :update_gateway
|
234
|
-
Aws::IoTSiteWise::Endpoints::UpdateGateway.build(context)
|
235
|
-
when :update_gateway_capability_configuration
|
236
|
-
Aws::IoTSiteWise::Endpoints::UpdateGatewayCapabilityConfiguration.build(context)
|
237
|
-
when :update_portal
|
238
|
-
Aws::IoTSiteWise::Endpoints::UpdatePortal.build(context)
|
239
|
-
when :update_project
|
240
|
-
Aws::IoTSiteWise::Endpoints::UpdateProject.build(context)
|
241
|
-
end
|
242
|
-
end
|
243
70
|
end
|
244
71
|
|
245
72
|
def add_handlers(handlers, _config)
|
@@ -959,7 +959,7 @@ module Aws::IoTSiteWise
|
|
959
959
|
# @!attribute [rw] arn
|
960
960
|
# The [ARN][1] of the asset model, which has the following format.
|
961
961
|
#
|
962
|
-
# `arn
|
962
|
+
# `arn:${Partition}:iotsitewise:${Region}:${Account}:asset-model/${AssetModelId}`
|
963
963
|
#
|
964
964
|
#
|
965
965
|
#
|
@@ -1248,7 +1248,7 @@ module Aws::IoTSiteWise
|
|
1248
1248
|
# @!attribute [rw] arn
|
1249
1249
|
# The [ARN][1] of the asset, which has the following format.
|
1250
1250
|
#
|
1251
|
-
# `arn
|
1251
|
+
# `arn:${Partition}:iotsitewise:${Region}:${Account}:asset/${AssetId}`
|
1252
1252
|
#
|
1253
1253
|
#
|
1254
1254
|
#
|
@@ -1418,7 +1418,7 @@ module Aws::IoTSiteWise
|
|
1418
1418
|
# @!attribute [rw] arn
|
1419
1419
|
# The [ARN][1] of the asset, which has the following format.
|
1420
1420
|
#
|
1421
|
-
# `arn
|
1421
|
+
# `arn:${Partition}:iotsitewise:${Region}:${Account}:asset/${AssetId}`
|
1422
1422
|
#
|
1423
1423
|
#
|
1424
1424
|
#
|
@@ -2537,7 +2537,7 @@ module Aws::IoTSiteWise
|
|
2537
2537
|
# @!attribute [rw] access_policy_arn
|
2538
2538
|
# The [ARN][1] of the access policy, which has the following format.
|
2539
2539
|
#
|
2540
|
-
# `arn
|
2540
|
+
# `arn:${Partition}:iotsitewise:${Region}:${Account}:access-policy/${AccessPolicyId}`
|
2541
2541
|
#
|
2542
2542
|
#
|
2543
2543
|
#
|
@@ -2817,7 +2817,7 @@ module Aws::IoTSiteWise
|
|
2817
2817
|
# @!attribute [rw] asset_model_arn
|
2818
2818
|
# The [ARN][1] of the asset model, which has the following format.
|
2819
2819
|
#
|
2820
|
-
# `arn
|
2820
|
+
# `arn:${Partition}:iotsitewise:${Region}:${Account}:asset-model/${AssetModelId}`
|
2821
2821
|
#
|
2822
2822
|
#
|
2823
2823
|
#
|
@@ -2916,7 +2916,7 @@ module Aws::IoTSiteWise
|
|
2916
2916
|
# @!attribute [rw] asset_arn
|
2917
2917
|
# The [ARN][1] of the asset, which has the following format.
|
2918
2918
|
#
|
2919
|
-
# `arn
|
2919
|
+
# `arn:${Partition}:iotsitewise:${Region}:${Account}:asset/${AssetId}`
|
2920
2920
|
#
|
2921
2921
|
#
|
2922
2922
|
#
|
@@ -3086,7 +3086,7 @@ module Aws::IoTSiteWise
|
|
3086
3086
|
# @!attribute [rw] dashboard_arn
|
3087
3087
|
# The [ARN][1] of the dashboard, which has the following format.
|
3088
3088
|
#
|
3089
|
-
# `arn
|
3089
|
+
# `arn:${Partition}:iotsitewise:${Region}:${Account}:dashboard/${DashboardId}`
|
3090
3090
|
#
|
3091
3091
|
#
|
3092
3092
|
#
|
@@ -3135,7 +3135,7 @@ module Aws::IoTSiteWise
|
|
3135
3135
|
# @!attribute [rw] gateway_arn
|
3136
3136
|
# The [ARN][1] of the gateway, which has the following format.
|
3137
3137
|
#
|
3138
|
-
# `arn
|
3138
|
+
# `arn:${Partition}:iotsitewise:${Region}:${Account}:gateway/${GatewayId}`
|
3139
3139
|
#
|
3140
3140
|
#
|
3141
3141
|
#
|
@@ -3267,7 +3267,7 @@ module Aws::IoTSiteWise
|
|
3267
3267
|
# @!attribute [rw] portal_arn
|
3268
3268
|
# The [ARN][1] of the portal, which has the following format.
|
3269
3269
|
#
|
3270
|
-
# `arn
|
3270
|
+
# `arn:${Partition}:iotsitewise:${Region}:${Account}:portal/${PortalId}`
|
3271
3271
|
#
|
3272
3272
|
#
|
3273
3273
|
#
|
@@ -3349,7 +3349,7 @@ module Aws::IoTSiteWise
|
|
3349
3349
|
# @!attribute [rw] project_arn
|
3350
3350
|
# The [ARN][1] of the project, which has the following format.
|
3351
3351
|
#
|
3352
|
-
# `arn
|
3352
|
+
# `arn:${Partition}:iotsitewise:${Region}:${Account}:project/${ProjectId}`
|
3353
3353
|
#
|
3354
3354
|
#
|
3355
3355
|
#
|
@@ -3804,7 +3804,7 @@ module Aws::IoTSiteWise
|
|
3804
3804
|
# @!attribute [rw] access_policy_arn
|
3805
3805
|
# The [ARN][1] of the access policy, which has the following format.
|
3806
3806
|
#
|
3807
|
-
# `arn
|
3807
|
+
# `arn:${Partition}:iotsitewise:${Region}:${Account}:access-policy/${AccessPolicyId}`
|
3808
3808
|
#
|
3809
3809
|
#
|
3810
3810
|
#
|
@@ -4133,7 +4133,7 @@ module Aws::IoTSiteWise
|
|
4133
4133
|
# @!attribute [rw] asset_model_arn
|
4134
4134
|
# The [ARN][1] of the asset model, which has the following format.
|
4135
4135
|
#
|
4136
|
-
# `arn
|
4136
|
+
# `arn:${Partition}:iotsitewise:${Region}:${Account}:asset-model/${AssetModelId}`
|
4137
4137
|
#
|
4138
4138
|
#
|
4139
4139
|
#
|
@@ -4344,7 +4344,7 @@ module Aws::IoTSiteWise
|
|
4344
4344
|
# @!attribute [rw] asset_arn
|
4345
4345
|
# The [ARN][1] of the asset, which has the following format.
|
4346
4346
|
#
|
4347
|
-
# `arn
|
4347
|
+
# `arn:${Partition}:iotsitewise:${Region}:${Account}:asset/${AssetId}`
|
4348
4348
|
#
|
4349
4349
|
#
|
4350
4350
|
#
|
@@ -4538,7 +4538,7 @@ module Aws::IoTSiteWise
|
|
4538
4538
|
# @!attribute [rw] dashboard_arn
|
4539
4539
|
# The [ARN][1] of the dashboard, which has the following format.
|
4540
4540
|
#
|
4541
|
-
# `arn
|
4541
|
+
# `arn:${Partition}:iotsitewise:${Region}:${Account}:dashboard/${DashboardId}`
|
4542
4542
|
#
|
4543
4543
|
#
|
4544
4544
|
#
|
@@ -4693,7 +4693,7 @@ module Aws::IoTSiteWise
|
|
4693
4693
|
# @!attribute [rw] gateway_arn
|
4694
4694
|
# The [ARN][1] of the gateway, which has the following format.
|
4695
4695
|
#
|
4696
|
-
# `arn
|
4696
|
+
# `arn:${Partition}:iotsitewise:${Region}:${Account}:gateway/${GatewayId}`
|
4697
4697
|
#
|
4698
4698
|
#
|
4699
4699
|
#
|
@@ -4766,7 +4766,7 @@ module Aws::IoTSiteWise
|
|
4766
4766
|
# @!attribute [rw] portal_arn
|
4767
4767
|
# The [ARN][1] of the portal, which has the following format.
|
4768
4768
|
#
|
4769
|
-
# `arn
|
4769
|
+
# `arn:${Partition}:iotsitewise:${Region}:${Account}:portal/${PortalId}`
|
4770
4770
|
#
|
4771
4771
|
#
|
4772
4772
|
#
|
@@ -4878,7 +4878,7 @@ module Aws::IoTSiteWise
|
|
4878
4878
|
# @!attribute [rw] project_arn
|
4879
4879
|
# The [ARN][1] of the project, which has the following format.
|
4880
4880
|
#
|
4881
|
-
# `arn
|
4881
|
+
# `arn:${Partition}:iotsitewise:${Region}:${Account}:project/${ProjectId}`
|
4882
4882
|
#
|
4883
4883
|
#
|
4884
4884
|
#
|
@@ -5077,7 +5077,7 @@ module Aws::IoTSiteWise
|
|
5077
5077
|
# @!attribute [rw] time_series_arn
|
5078
5078
|
# The [ARN][1] of the time series, which has the following format.
|
5079
5079
|
#
|
5080
|
-
# `arn
|
5080
|
+
# `arn:${Partition}:iotsitewise:${Region}:${Account}:time-series/${TimeSeriesId}`
|
5081
5081
|
#
|
5082
5082
|
#
|
5083
5083
|
#
|
@@ -8055,7 +8055,7 @@ module Aws::IoTSiteWise
|
|
8055
8055
|
# @!attribute [rw] time_series_arn
|
8056
8056
|
# The [ARN][1] of the time series, which has the following format.
|
8057
8057
|
#
|
8058
|
-
# `arn
|
8058
|
+
# `arn:${Partition}:iotsitewise:${Region}:${Account}:time-series/${TimeSeriesId}`
|
8059
8059
|
#
|
8060
8060
|
#
|
8061
8061
|
#
|
data/lib/aws-sdk-iotsitewise.rb
CHANGED
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.77.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: 2024-
|
11
|
+
date: 2024-11-06 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.210.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.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|