aws-sdk-workspaces 1.127.0 → 1.129.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: af9095887877c1fa68aea2212f5f90d13c46e0cf8f1be0725740cf21a0066bd9
4
- data.tar.gz: 82058d6fe52d34f712663c9e710968891fe69b6a9de896d2fe9f488e86cd4a56
3
+ metadata.gz: 409436d66331c52fd55230593961f62bda6070f2a14ed2aa10ad91ab618a87ee
4
+ data.tar.gz: 06ef6715a3d6c29edb35b3403b0b537b8218507111ec5da854f0b4e997cda40d
5
5
  SHA512:
6
- metadata.gz: 18016104f17707cbd437f9a30bfcdab87f44ab1fb6de46cd863108bce64178d1ab1a95879e6a611098ca75800d0ea9a29d7525e51b6827e5debbc4a2988a2e8a
7
- data.tar.gz: 95314bb6a4cd667eb65f9188c76f5ce6b2a089b7291d78f8f5164dac3b83b5cb5646a044a4dc5790729cb8faa6b1bce99b011afa0d9303260b1921ca5b4f53d1
6
+ metadata.gz: c6ad46bbaba13c5eeee3737b7552268aa59e8f3d5dd81a5d43f3e0440137ef126dfe6ad4486eb99181e465f257ef30c8dd142bcf9c8ca70a393074f9446c716e
7
+ data.tar.gz: c3726e8b6df35d07ab2f1e08e55d3e38f2e9f0170f113d81b93801d66381ae4766c67f29ed3969c439d96843c35c737fbd3263562ca70fbafbc21da2a443bc77
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.129.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Added GeneralPurpose.4xlarge & GeneralPurpose.8xlarge ComputeTypes.
8
+
9
+ 1.128.0 (2024-12-19)
10
+ ------------------
11
+
12
+ * Feature - Added AWS Global Accelerator (AGA) support for WorkSpaces Personal.
13
+
4
14
  1.127.0 (2024-12-09)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.127.0
1
+ 1.129.0
@@ -257,11 +257,34 @@ module Aws::WorkSpaces
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -1110,7 +1133,7 @@ module Aws::WorkSpaces
1110
1133
  # bundle_description: "WorkspaceBundleDescription", # required
1111
1134
  # image_id: "WorkspaceImageId", # required
1112
1135
  # compute_type: { # required
1113
- # name: "VALUE", # accepts VALUE, STANDARD, PERFORMANCE, POWER, GRAPHICS, POWERPRO, GRAPHICSPRO, GRAPHICS_G4DN, GRAPHICSPRO_G4DN
1136
+ # name: "VALUE", # accepts VALUE, STANDARD, PERFORMANCE, POWER, GRAPHICS, POWERPRO, GENERALPURPOSE_4XLARGE, GENERALPURPOSE_8XLARGE, GRAPHICSPRO, GRAPHICS_G4DN, GRAPHICSPRO_G4DN
1114
1137
  # },
1115
1138
  # user_storage: { # required
1116
1139
  # capacity: "NonEmptyString", # required
@@ -1135,7 +1158,7 @@ module Aws::WorkSpaces
1135
1158
  # resp.workspace_bundle.image_id #=> String
1136
1159
  # resp.workspace_bundle.root_storage.capacity #=> String
1137
1160
  # resp.workspace_bundle.user_storage.capacity #=> String
1138
- # resp.workspace_bundle.compute_type.name #=> String, one of "VALUE", "STANDARD", "PERFORMANCE", "POWER", "GRAPHICS", "POWERPRO", "GRAPHICSPRO", "GRAPHICS_G4DN", "GRAPHICSPRO_G4DN"
1161
+ # resp.workspace_bundle.compute_type.name #=> String, one of "VALUE", "STANDARD", "PERFORMANCE", "POWER", "GRAPHICS", "POWERPRO", "GENERALPURPOSE_4XLARGE", "GENERALPURPOSE_8XLARGE", "GRAPHICSPRO", "GRAPHICS_G4DN", "GRAPHICSPRO_G4DN"
1139
1162
  # resp.workspace_bundle.last_updated_time #=> Time
1140
1163
  # resp.workspace_bundle.creation_time #=> Time
1141
1164
  # resp.workspace_bundle.state #=> String, one of "AVAILABLE", "PENDING", "ERROR"
@@ -1262,9 +1285,13 @@ module Aws::WorkSpaces
1262
1285
  # running_mode_auto_stop_timeout_in_minutes: 1,
1263
1286
  # root_volume_size_gib: 1,
1264
1287
  # user_volume_size_gib: 1,
1265
- # compute_type_name: "VALUE", # accepts VALUE, STANDARD, PERFORMANCE, POWER, GRAPHICS, POWERPRO, GRAPHICSPRO, GRAPHICS_G4DN, GRAPHICSPRO_G4DN
1288
+ # compute_type_name: "VALUE", # accepts VALUE, STANDARD, PERFORMANCE, POWER, GRAPHICS, POWERPRO, GENERALPURPOSE_4XLARGE, GENERALPURPOSE_8XLARGE, GRAPHICSPRO, GRAPHICS_G4DN, GRAPHICSPRO_G4DN
1266
1289
  # protocols: ["PCOIP"], # accepts PCOIP, WSP
1267
1290
  # operating_system_name: "AMAZON_LINUX_2", # accepts AMAZON_LINUX_2, UBUNTU_18_04, UBUNTU_20_04, UBUNTU_22_04, UNKNOWN, WINDOWS_10, WINDOWS_11, WINDOWS_7, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, WINDOWS_SERVER_2022, RHEL_8, ROCKY_8
1291
+ # global_accelerator: {
1292
+ # mode: "ENABLED_AUTO", # required, accepts ENABLED_AUTO, DISABLED, INHERITED
1293
+ # preferred_protocol: "TCP", # accepts TCP, NONE, INHERITED
1294
+ # },
1268
1295
  # },
1269
1296
  # tags: [
1270
1297
  # {
@@ -1290,10 +1317,12 @@ module Aws::WorkSpaces
1290
1317
  # resp.failed_requests[0].workspace_request.workspace_properties.running_mode_auto_stop_timeout_in_minutes #=> Integer
1291
1318
  # resp.failed_requests[0].workspace_request.workspace_properties.root_volume_size_gib #=> Integer
1292
1319
  # resp.failed_requests[0].workspace_request.workspace_properties.user_volume_size_gib #=> Integer
1293
- # resp.failed_requests[0].workspace_request.workspace_properties.compute_type_name #=> String, one of "VALUE", "STANDARD", "PERFORMANCE", "POWER", "GRAPHICS", "POWERPRO", "GRAPHICSPRO", "GRAPHICS_G4DN", "GRAPHICSPRO_G4DN"
1320
+ # resp.failed_requests[0].workspace_request.workspace_properties.compute_type_name #=> String, one of "VALUE", "STANDARD", "PERFORMANCE", "POWER", "GRAPHICS", "POWERPRO", "GENERALPURPOSE_4XLARGE", "GENERALPURPOSE_8XLARGE", "GRAPHICSPRO", "GRAPHICS_G4DN", "GRAPHICSPRO_G4DN"
1294
1321
  # resp.failed_requests[0].workspace_request.workspace_properties.protocols #=> Array
1295
1322
  # resp.failed_requests[0].workspace_request.workspace_properties.protocols[0] #=> String, one of "PCOIP", "WSP"
1296
1323
  # resp.failed_requests[0].workspace_request.workspace_properties.operating_system_name #=> String, one of "AMAZON_LINUX_2", "UBUNTU_18_04", "UBUNTU_20_04", "UBUNTU_22_04", "UNKNOWN", "WINDOWS_10", "WINDOWS_11", "WINDOWS_7", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "RHEL_8", "ROCKY_8"
1324
+ # resp.failed_requests[0].workspace_request.workspace_properties.global_accelerator.mode #=> String, one of "ENABLED_AUTO", "DISABLED", "INHERITED"
1325
+ # resp.failed_requests[0].workspace_request.workspace_properties.global_accelerator.preferred_protocol #=> String, one of "TCP", "NONE", "INHERITED"
1297
1326
  # resp.failed_requests[0].workspace_request.tags #=> Array
1298
1327
  # resp.failed_requests[0].workspace_request.tags[0].key #=> String
1299
1328
  # resp.failed_requests[0].workspace_request.tags[0].value #=> String
@@ -1319,10 +1348,12 @@ module Aws::WorkSpaces
1319
1348
  # resp.pending_requests[0].workspace_properties.running_mode_auto_stop_timeout_in_minutes #=> Integer
1320
1349
  # resp.pending_requests[0].workspace_properties.root_volume_size_gib #=> Integer
1321
1350
  # resp.pending_requests[0].workspace_properties.user_volume_size_gib #=> Integer
1322
- # resp.pending_requests[0].workspace_properties.compute_type_name #=> String, one of "VALUE", "STANDARD", "PERFORMANCE", "POWER", "GRAPHICS", "POWERPRO", "GRAPHICSPRO", "GRAPHICS_G4DN", "GRAPHICSPRO_G4DN"
1351
+ # resp.pending_requests[0].workspace_properties.compute_type_name #=> String, one of "VALUE", "STANDARD", "PERFORMANCE", "POWER", "GRAPHICS", "POWERPRO", "GENERALPURPOSE_4XLARGE", "GENERALPURPOSE_8XLARGE", "GRAPHICSPRO", "GRAPHICS_G4DN", "GRAPHICSPRO_G4DN"
1323
1352
  # resp.pending_requests[0].workspace_properties.protocols #=> Array
1324
1353
  # resp.pending_requests[0].workspace_properties.protocols[0] #=> String, one of "PCOIP", "WSP"
1325
1354
  # resp.pending_requests[0].workspace_properties.operating_system_name #=> String, one of "AMAZON_LINUX_2", "UBUNTU_18_04", "UBUNTU_20_04", "UBUNTU_22_04", "UNKNOWN", "WINDOWS_10", "WINDOWS_11", "WINDOWS_7", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "RHEL_8", "ROCKY_8"
1355
+ # resp.pending_requests[0].workspace_properties.global_accelerator.mode #=> String, one of "ENABLED_AUTO", "DISABLED", "INHERITED"
1356
+ # resp.pending_requests[0].workspace_properties.global_accelerator.preferred_protocol #=> String, one of "TCP", "NONE", "INHERITED"
1326
1357
  # resp.pending_requests[0].modification_states #=> Array
1327
1358
  # resp.pending_requests[0].modification_states[0].resource #=> String, one of "ROOT_VOLUME", "USER_VOLUME", "COMPUTE_TYPE"
1328
1359
  # resp.pending_requests[0].modification_states[0].state #=> String, one of "UPDATE_INITIATED", "UPDATE_IN_PROGRESS"
@@ -1923,7 +1954,7 @@ module Aws::WorkSpaces
1923
1954
  #
1924
1955
  # resp = client.describe_applications({
1925
1956
  # application_ids: ["WorkSpaceApplicationId"],
1926
- # compute_type_names: ["VALUE"], # accepts VALUE, STANDARD, PERFORMANCE, POWER, GRAPHICS, POWERPRO, GRAPHICSPRO, GRAPHICS_G4DN, GRAPHICSPRO_G4DN
1957
+ # compute_type_names: ["VALUE"], # accepts VALUE, STANDARD, PERFORMANCE, POWER, GRAPHICS, POWERPRO, GENERALPURPOSE_4XLARGE, GENERALPURPOSE_8XLARGE, GRAPHICSPRO, GRAPHICS_G4DN, GRAPHICSPRO_G4DN
1927
1958
  # license_type: "LICENSED", # accepts LICENSED, UNLICENSED
1928
1959
  # operating_system_names: ["AMAZON_LINUX_2"], # accepts AMAZON_LINUX_2, UBUNTU_18_04, UBUNTU_20_04, UBUNTU_22_04, UNKNOWN, WINDOWS_10, WINDOWS_11, WINDOWS_7, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, WINDOWS_SERVER_2022, RHEL_8, ROCKY_8
1929
1960
  # owner: "WorkSpaceApplicationOwner",
@@ -1942,7 +1973,7 @@ module Aws::WorkSpaces
1942
1973
  # resp.applications[0].owner #=> String
1943
1974
  # resp.applications[0].state #=> String, one of "PENDING", "ERROR", "AVAILABLE", "UNINSTALL_ONLY"
1944
1975
  # resp.applications[0].supported_compute_type_names #=> Array
1945
- # resp.applications[0].supported_compute_type_names[0] #=> String, one of "VALUE", "STANDARD", "PERFORMANCE", "POWER", "GRAPHICS", "POWERPRO", "GRAPHICSPRO", "GRAPHICS_G4DN", "GRAPHICSPRO_G4DN"
1976
+ # resp.applications[0].supported_compute_type_names[0] #=> String, one of "VALUE", "STANDARD", "PERFORMANCE", "POWER", "GRAPHICS", "POWERPRO", "GENERALPURPOSE_4XLARGE", "GENERALPURPOSE_8XLARGE", "GRAPHICSPRO", "GRAPHICS_G4DN", "GRAPHICSPRO_G4DN"
1946
1977
  # resp.applications[0].supported_operating_system_names #=> Array
1947
1978
  # resp.applications[0].supported_operating_system_names[0] #=> String, one of "AMAZON_LINUX_2", "UBUNTU_18_04", "UBUNTU_20_04", "UBUNTU_22_04", "UNKNOWN", "WINDOWS_10", "WINDOWS_11", "WINDOWS_7", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "RHEL_8", "ROCKY_8"
1948
1979
  # resp.next_token #=> String
@@ -2466,7 +2497,7 @@ module Aws::WorkSpaces
2466
2497
  # resp.bundles[0].image_id #=> String
2467
2498
  # resp.bundles[0].root_storage.capacity #=> String
2468
2499
  # resp.bundles[0].user_storage.capacity #=> String
2469
- # resp.bundles[0].compute_type.name #=> String, one of "VALUE", "STANDARD", "PERFORMANCE", "POWER", "GRAPHICS", "POWERPRO", "GRAPHICSPRO", "GRAPHICS_G4DN", "GRAPHICSPRO_G4DN"
2500
+ # resp.bundles[0].compute_type.name #=> String, one of "VALUE", "STANDARD", "PERFORMANCE", "POWER", "GRAPHICS", "POWERPRO", "GENERALPURPOSE_4XLARGE", "GENERALPURPOSE_8XLARGE", "GRAPHICSPRO", "GRAPHICS_G4DN", "GRAPHICSPRO_G4DN"
2470
2501
  # resp.bundles[0].last_updated_time #=> Time
2471
2502
  # resp.bundles[0].creation_time #=> Time
2472
2503
  # resp.bundles[0].state #=> String, one of "AVAILABLE", "PENDING", "ERROR"
@@ -2586,6 +2617,8 @@ module Aws::WorkSpaces
2586
2617
  # resp.directories[0].streaming_properties.storage_connectors #=> Array
2587
2618
  # resp.directories[0].streaming_properties.storage_connectors[0].connector_type #=> String, one of "HOME_FOLDER"
2588
2619
  # resp.directories[0].streaming_properties.storage_connectors[0].status #=> String, one of "ENABLED", "DISABLED"
2620
+ # resp.directories[0].streaming_properties.global_accelerator.mode #=> String, one of "ENABLED_AUTO", "DISABLED"
2621
+ # resp.directories[0].streaming_properties.global_accelerator.preferred_protocol #=> String, one of "TCP", "NONE"
2589
2622
  # resp.directories[0].error_message #=> String
2590
2623
  # resp.next_token #=> String
2591
2624
  #
@@ -2810,10 +2843,12 @@ module Aws::WorkSpaces
2810
2843
  # resp.workspaces[0].workspace_properties.running_mode_auto_stop_timeout_in_minutes #=> Integer
2811
2844
  # resp.workspaces[0].workspace_properties.root_volume_size_gib #=> Integer
2812
2845
  # resp.workspaces[0].workspace_properties.user_volume_size_gib #=> Integer
2813
- # resp.workspaces[0].workspace_properties.compute_type_name #=> String, one of "VALUE", "STANDARD", "PERFORMANCE", "POWER", "GRAPHICS", "POWERPRO", "GRAPHICSPRO", "GRAPHICS_G4DN", "GRAPHICSPRO_G4DN"
2846
+ # resp.workspaces[0].workspace_properties.compute_type_name #=> String, one of "VALUE", "STANDARD", "PERFORMANCE", "POWER", "GRAPHICS", "POWERPRO", "GENERALPURPOSE_4XLARGE", "GENERALPURPOSE_8XLARGE", "GRAPHICSPRO", "GRAPHICS_G4DN", "GRAPHICSPRO_G4DN"
2814
2847
  # resp.workspaces[0].workspace_properties.protocols #=> Array
2815
2848
  # resp.workspaces[0].workspace_properties.protocols[0] #=> String, one of "PCOIP", "WSP"
2816
2849
  # resp.workspaces[0].workspace_properties.operating_system_name #=> String, one of "AMAZON_LINUX_2", "UBUNTU_18_04", "UBUNTU_20_04", "UBUNTU_22_04", "UNKNOWN", "WINDOWS_10", "WINDOWS_11", "WINDOWS_7", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "RHEL_8", "ROCKY_8"
2850
+ # resp.workspaces[0].workspace_properties.global_accelerator.mode #=> String, one of "ENABLED_AUTO", "DISABLED", "INHERITED"
2851
+ # resp.workspaces[0].workspace_properties.global_accelerator.preferred_protocol #=> String, one of "TCP", "NONE", "INHERITED"
2817
2852
  # resp.workspaces[0].modification_states #=> Array
2818
2853
  # resp.workspaces[0].modification_states[0].resource #=> String, one of "ROOT_VOLUME", "USER_VOLUME", "COMPUTE_TYPE"
2819
2854
  # resp.workspaces[0].modification_states[0].state #=> String, one of "UPDATE_INITIATED", "UPDATE_IN_PROGRESS"
@@ -3761,6 +3796,10 @@ module Aws::WorkSpaces
3761
3796
  # status: "ENABLED", # required, accepts ENABLED, DISABLED
3762
3797
  # },
3763
3798
  # ],
3799
+ # global_accelerator: {
3800
+ # mode: "ENABLED_AUTO", # required, accepts ENABLED_AUTO, DISABLED
3801
+ # preferred_protocol: "TCP", # accepts TCP, NONE
3802
+ # },
3764
3803
  # },
3765
3804
  # })
3766
3805
  #
@@ -3884,9 +3923,13 @@ module Aws::WorkSpaces
3884
3923
  # running_mode_auto_stop_timeout_in_minutes: 1,
3885
3924
  # root_volume_size_gib: 1,
3886
3925
  # user_volume_size_gib: 1,
3887
- # compute_type_name: "VALUE", # accepts VALUE, STANDARD, PERFORMANCE, POWER, GRAPHICS, POWERPRO, GRAPHICSPRO, GRAPHICS_G4DN, GRAPHICSPRO_G4DN
3926
+ # compute_type_name: "VALUE", # accepts VALUE, STANDARD, PERFORMANCE, POWER, GRAPHICS, POWERPRO, GENERALPURPOSE_4XLARGE, GENERALPURPOSE_8XLARGE, GRAPHICSPRO, GRAPHICS_G4DN, GRAPHICSPRO_G4DN
3888
3927
  # protocols: ["PCOIP"], # accepts PCOIP, WSP
3889
3928
  # operating_system_name: "AMAZON_LINUX_2", # accepts AMAZON_LINUX_2, UBUNTU_18_04, UBUNTU_20_04, UBUNTU_22_04, UNKNOWN, WINDOWS_10, WINDOWS_11, WINDOWS_7, WINDOWS_SERVER_2016, WINDOWS_SERVER_2019, WINDOWS_SERVER_2022, RHEL_8, ROCKY_8
3929
+ # global_accelerator: {
3930
+ # mode: "ENABLED_AUTO", # required, accepts ENABLED_AUTO, DISABLED, INHERITED
3931
+ # preferred_protocol: "TCP", # accepts TCP, NONE, INHERITED
3932
+ # },
3890
3933
  # },
3891
3934
  # data_replication: "NO_REPLICATION", # accepts NO_REPLICATION, PRIMARY_AS_SOURCE
3892
3935
  # })
@@ -4807,7 +4850,7 @@ module Aws::WorkSpaces
4807
4850
  tracer: tracer
4808
4851
  )
4809
4852
  context[:gem_name] = 'aws-sdk-workspaces'
4810
- context[:gem_version] = '1.127.0'
4853
+ context[:gem_version] = '1.129.0'
4811
4854
  Seahorse::Client::Request.new(handlers, context)
4812
4855
  end
4813
4856
 
@@ -14,6 +14,10 @@ module Aws::WorkSpaces
14
14
 
15
15
  include Seahorse::Model
16
16
 
17
+ AGAModeForDirectoryEnum = Shapes::StringShape.new(name: 'AGAModeForDirectoryEnum')
18
+ AGAModeForWorkSpaceEnum = Shapes::StringShape.new(name: 'AGAModeForWorkSpaceEnum')
19
+ AGAPreferredProtocolForDirectory = Shapes::StringShape.new(name: 'AGAPreferredProtocolForDirectory')
20
+ AGAPreferredProtocolForWorkSpace = Shapes::StringShape.new(name: 'AGAPreferredProtocolForWorkSpace')
17
21
  ARN = Shapes::StringShape.new(name: 'ARN')
18
22
  AcceptAccountLinkInvitationRequest = Shapes::StructureShape.new(name: 'AcceptAccountLinkInvitationRequest')
19
23
  AcceptAccountLinkInvitationResult = Shapes::StructureShape.new(name: 'AcceptAccountLinkInvitationResult')
@@ -253,6 +257,8 @@ module Aws::WorkSpaces
253
257
  FailedWorkspaceChangeRequest = Shapes::StructureShape.new(name: 'FailedWorkspaceChangeRequest')
254
258
  GetAccountLinkRequest = Shapes::StructureShape.new(name: 'GetAccountLinkRequest')
255
259
  GetAccountLinkResult = Shapes::StructureShape.new(name: 'GetAccountLinkResult')
260
+ GlobalAcceleratorForDirectory = Shapes::StructureShape.new(name: 'GlobalAcceleratorForDirectory')
261
+ GlobalAcceleratorForWorkSpace = Shapes::StructureShape.new(name: 'GlobalAcceleratorForWorkSpace')
256
262
  IDCConfig = Shapes::StructureShape.new(name: 'IDCConfig')
257
263
  IdleDisconnectTimeoutInSeconds = Shapes::IntegerShape.new(name: 'IdleDisconnectTimeoutInSeconds')
258
264
  ImageAssociatedResourceType = Shapes::StringShape.new(name: 'ImageAssociatedResourceType')
@@ -1184,6 +1190,14 @@ module Aws::WorkSpaces
1184
1190
  GetAccountLinkResult.add_member(:account_link, Shapes::ShapeRef.new(shape: AccountLink, location_name: "AccountLink"))
1185
1191
  GetAccountLinkResult.struct_class = Types::GetAccountLinkResult
1186
1192
 
1193
+ GlobalAcceleratorForDirectory.add_member(:mode, Shapes::ShapeRef.new(shape: AGAModeForDirectoryEnum, required: true, location_name: "Mode"))
1194
+ GlobalAcceleratorForDirectory.add_member(:preferred_protocol, Shapes::ShapeRef.new(shape: AGAPreferredProtocolForDirectory, location_name: "PreferredProtocol"))
1195
+ GlobalAcceleratorForDirectory.struct_class = Types::GlobalAcceleratorForDirectory
1196
+
1197
+ GlobalAcceleratorForWorkSpace.add_member(:mode, Shapes::ShapeRef.new(shape: AGAModeForWorkSpaceEnum, required: true, location_name: "Mode"))
1198
+ GlobalAcceleratorForWorkSpace.add_member(:preferred_protocol, Shapes::ShapeRef.new(shape: AGAPreferredProtocolForWorkSpace, location_name: "PreferredProtocol"))
1199
+ GlobalAcceleratorForWorkSpace.struct_class = Types::GlobalAcceleratorForWorkSpace
1200
+
1187
1201
  IDCConfig.add_member(:instance_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "InstanceArn"))
1188
1202
  IDCConfig.add_member(:application_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "ApplicationArn"))
1189
1203
  IDCConfig.struct_class = Types::IDCConfig
@@ -1575,6 +1589,7 @@ module Aws::WorkSpaces
1575
1589
  StreamingProperties.add_member(:streaming_experience_preferred_protocol, Shapes::ShapeRef.new(shape: StreamingExperiencePreferredProtocolEnum, location_name: "StreamingExperiencePreferredProtocol"))
1576
1590
  StreamingProperties.add_member(:user_settings, Shapes::ShapeRef.new(shape: UserSettings, location_name: "UserSettings"))
1577
1591
  StreamingProperties.add_member(:storage_connectors, Shapes::ShapeRef.new(shape: StorageConnectors, location_name: "StorageConnectors"))
1592
+ StreamingProperties.add_member(:global_accelerator, Shapes::ShapeRef.new(shape: GlobalAcceleratorForDirectory, location_name: "GlobalAccelerator"))
1578
1593
  StreamingProperties.struct_class = Types::StreamingProperties
1579
1594
 
1580
1595
  SubnetIds.member = Shapes::ShapeRef.new(shape: SubnetId)
@@ -1823,6 +1838,7 @@ module Aws::WorkSpaces
1823
1838
  WorkspaceProperties.add_member(:compute_type_name, Shapes::ShapeRef.new(shape: Compute, location_name: "ComputeTypeName"))
1824
1839
  WorkspaceProperties.add_member(:protocols, Shapes::ShapeRef.new(shape: ProtocolList, location_name: "Protocols"))
1825
1840
  WorkspaceProperties.add_member(:operating_system_name, Shapes::ShapeRef.new(shape: OperatingSystemName, location_name: "OperatingSystemName"))
1841
+ WorkspaceProperties.add_member(:global_accelerator, Shapes::ShapeRef.new(shape: GlobalAcceleratorForWorkSpace, location_name: "GlobalAccelerator"))
1826
1842
  WorkspaceProperties.struct_class = Types::WorkspaceProperties
1827
1843
 
1828
1844
  WorkspaceRequest.add_member(:directory_id, Shapes::ShapeRef.new(shape: DirectoryId, required: true, location_name: "DirectoryId"))
@@ -2861,6 +2861,46 @@ module Aws::WorkSpaces
2861
2861
  include Aws::Structure
2862
2862
  end
2863
2863
 
2864
+ # Describes the Global Accelerator for directory
2865
+ #
2866
+ # @!attribute [rw] mode
2867
+ # Indicates if Global Accelerator for directory is enabled or
2868
+ # disabled.
2869
+ # @return [String]
2870
+ #
2871
+ # @!attribute [rw] preferred_protocol
2872
+ # Indicates the preferred protocol for Global Accelerator.
2873
+ # @return [String]
2874
+ #
2875
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/GlobalAcceleratorForDirectory AWS API Documentation
2876
+ #
2877
+ class GlobalAcceleratorForDirectory < Struct.new(
2878
+ :mode,
2879
+ :preferred_protocol)
2880
+ SENSITIVE = []
2881
+ include Aws::Structure
2882
+ end
2883
+
2884
+ # Describes the Global Accelerator for WorkSpaces.
2885
+ #
2886
+ # @!attribute [rw] mode
2887
+ # Indicates if Global Accelerator for WorkSpaces is enabled, disabled,
2888
+ # or the same mode as the associated directory.
2889
+ # @return [String]
2890
+ #
2891
+ # @!attribute [rw] preferred_protocol
2892
+ # Indicates the preferred protocol for Global Accelerator.
2893
+ # @return [String]
2894
+ #
2895
+ # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/GlobalAcceleratorForWorkSpace AWS API Documentation
2896
+ #
2897
+ class GlobalAcceleratorForWorkSpace < Struct.new(
2898
+ :mode,
2899
+ :preferred_protocol)
2900
+ SENSITIVE = []
2901
+ include Aws::Structure
2902
+ end
2903
+
2864
2904
  # Specifies the configurations of the identity center.
2865
2905
  #
2866
2906
  # @!attribute [rw] instance_arn
@@ -4611,12 +4651,17 @@ module Aws::WorkSpaces
4611
4651
  # Indicates the storage connector used
4612
4652
  # @return [Array<Types::StorageConnector>]
4613
4653
  #
4654
+ # @!attribute [rw] global_accelerator
4655
+ # Indicates the Global Accelerator properties.
4656
+ # @return [Types::GlobalAcceleratorForDirectory]
4657
+ #
4614
4658
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/StreamingProperties AWS API Documentation
4615
4659
  #
4616
4660
  class StreamingProperties < Struct.new(
4617
4661
  :streaming_experience_preferred_protocol,
4618
4662
  :user_settings,
4619
- :storage_connectors)
4663
+ :storage_connectors,
4664
+ :global_accelerator)
4620
4665
  SENSITIVE = []
4621
4666
  include Aws::Structure
4622
4667
  end
@@ -5874,6 +5919,10 @@ module Aws::WorkSpaces
5874
5919
  # The name of the operating system.
5875
5920
  # @return [String]
5876
5921
  #
5922
+ # @!attribute [rw] global_accelerator
5923
+ # Indicates the Global Accelerator properties.
5924
+ # @return [Types::GlobalAcceleratorForWorkSpace]
5925
+ #
5877
5926
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/WorkspaceProperties AWS API Documentation
5878
5927
  #
5879
5928
  class WorkspaceProperties < Struct.new(
@@ -5883,7 +5932,8 @@ module Aws::WorkSpaces
5883
5932
  :user_volume_size_gib,
5884
5933
  :compute_type_name,
5885
5934
  :protocols,
5886
- :operating_system_name)
5935
+ :operating_system_name,
5936
+ :global_accelerator)
5887
5937
  SENSITIVE = []
5888
5938
  include Aws::Structure
5889
5939
  end
@@ -54,7 +54,7 @@ module Aws::WorkSpaces
54
54
  autoload :EndpointProvider, 'aws-sdk-workspaces/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-workspaces/endpoints'
56
56
 
57
- GEM_VERSION = '1.127.0'
57
+ GEM_VERSION = '1.129.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -283,7 +285,7 @@ module Aws
283
285
  bundle_description: ::String,
284
286
  image_id: ::String,
285
287
  compute_type: {
286
- name: ("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")?
288
+ name: ("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GENERALPURPOSE_4XLARGE" | "GENERALPURPOSE_8XLARGE" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")?
287
289
  },
288
290
  user_storage: {
289
291
  capacity: ::String
@@ -345,9 +347,13 @@ module Aws
345
347
  running_mode_auto_stop_timeout_in_minutes: ::Integer?,
346
348
  root_volume_size_gib: ::Integer?,
347
349
  user_volume_size_gib: ::Integer?,
348
- compute_type_name: ("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")?,
350
+ compute_type_name: ("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GENERALPURPOSE_4XLARGE" | "GENERALPURPOSE_8XLARGE" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")?,
349
351
  protocols: Array[("PCOIP" | "WSP")]?,
350
- operating_system_name: ("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "RHEL_8" | "ROCKY_8")?
352
+ operating_system_name: ("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "RHEL_8" | "ROCKY_8")?,
353
+ global_accelerator: {
354
+ mode: ("ENABLED_AUTO" | "DISABLED" | "INHERITED"),
355
+ preferred_protocol: ("TCP" | "NONE" | "INHERITED")?
356
+ }?
351
357
  }?,
352
358
  tags: Array[
353
359
  {
@@ -533,7 +539,7 @@ module Aws
533
539
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpaces/Client.html#describe_applications-instance_method
534
540
  def describe_applications: (
535
541
  ?application_ids: Array[::String],
536
- ?compute_type_names: Array[("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")],
542
+ ?compute_type_names: Array[("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GENERALPURPOSE_4XLARGE" | "GENERALPURPOSE_8XLARGE" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")],
537
543
  ?license_type: ("LICENSED" | "UNLICENSED"),
538
544
  ?operating_system_names: Array[("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "RHEL_8" | "ROCKY_8")],
539
545
  ?owner: ::String,
@@ -1045,7 +1051,11 @@ module Aws
1045
1051
  connector_type: ("HOME_FOLDER"),
1046
1052
  status: ("ENABLED" | "DISABLED")
1047
1053
  },
1048
- ]?
1054
+ ]?,
1055
+ global_accelerator: {
1056
+ mode: ("ENABLED_AUTO" | "DISABLED"),
1057
+ preferred_protocol: ("TCP" | "NONE")?
1058
+ }?
1049
1059
  }
1050
1060
  ) -> _ModifyStreamingPropertiesResponseSuccess
1051
1061
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyStreamingPropertiesResponseSuccess
@@ -1098,9 +1108,13 @@ module Aws
1098
1108
  running_mode_auto_stop_timeout_in_minutes: ::Integer?,
1099
1109
  root_volume_size_gib: ::Integer?,
1100
1110
  user_volume_size_gib: ::Integer?,
1101
- compute_type_name: ("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")?,
1111
+ compute_type_name: ("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GENERALPURPOSE_4XLARGE" | "GENERALPURPOSE_8XLARGE" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")?,
1102
1112
  protocols: Array[("PCOIP" | "WSP")]?,
1103
- operating_system_name: ("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "RHEL_8" | "ROCKY_8")?
1113
+ operating_system_name: ("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "RHEL_8" | "ROCKY_8")?,
1114
+ global_accelerator: {
1115
+ mode: ("ENABLED_AUTO" | "DISABLED" | "INHERITED"),
1116
+ preferred_protocol: ("TCP" | "NONE" | "INHERITED")?
1117
+ }?
1104
1118
  },
1105
1119
  ?data_replication: ("NO_REPLICATION" | "PRIMARY_AS_SOURCE")
1106
1120
  ) -> _ModifyWorkspacePropertiesResponseSuccess
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/types.rbs CHANGED
@@ -167,7 +167,7 @@ module Aws::WorkSpaces
167
167
  end
168
168
 
169
169
  class ComputeType
170
- attr_accessor name: ("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")
170
+ attr_accessor name: ("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GENERALPURPOSE_4XLARGE" | "GENERALPURPOSE_8XLARGE" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")
171
171
  SENSITIVE: []
172
172
  end
173
173
 
@@ -527,7 +527,7 @@ module Aws::WorkSpaces
527
527
 
528
528
  class DescribeApplicationsRequest
529
529
  attr_accessor application_ids: ::Array[::String]
530
- attr_accessor compute_type_names: ::Array[("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")]
530
+ attr_accessor compute_type_names: ::Array[("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GENERALPURPOSE_4XLARGE" | "GENERALPURPOSE_8XLARGE" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")]
531
531
  attr_accessor license_type: ("LICENSED" | "UNLICENSED")
532
532
  attr_accessor operating_system_names: ::Array[("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "RHEL_8" | "ROCKY_8")]
533
533
  attr_accessor owner: ::String
@@ -867,6 +867,18 @@ module Aws::WorkSpaces
867
867
  SENSITIVE: []
868
868
  end
869
869
 
870
+ class GlobalAcceleratorForDirectory
871
+ attr_accessor mode: ("ENABLED_AUTO" | "DISABLED")
872
+ attr_accessor preferred_protocol: ("TCP" | "NONE")
873
+ SENSITIVE: []
874
+ end
875
+
876
+ class GlobalAcceleratorForWorkSpace
877
+ attr_accessor mode: ("ENABLED_AUTO" | "DISABLED" | "INHERITED")
878
+ attr_accessor preferred_protocol: ("TCP" | "NONE" | "INHERITED")
879
+ SENSITIVE: []
880
+ end
881
+
870
882
  class IDCConfig
871
883
  attr_accessor instance_arn: ::String
872
884
  attr_accessor application_arn: ::String
@@ -1372,6 +1384,7 @@ module Aws::WorkSpaces
1372
1384
  attr_accessor streaming_experience_preferred_protocol: ("TCP" | "UDP")
1373
1385
  attr_accessor user_settings: ::Array[Types::UserSetting]
1374
1386
  attr_accessor storage_connectors: ::Array[Types::StorageConnector]
1387
+ attr_accessor global_accelerator: Types::GlobalAcceleratorForDirectory
1375
1388
  SENSITIVE: []
1376
1389
  end
1377
1390
 
@@ -1524,7 +1537,7 @@ module Aws::WorkSpaces
1524
1537
  attr_accessor name: ::String
1525
1538
  attr_accessor owner: ::String
1526
1539
  attr_accessor state: ("PENDING" | "ERROR" | "AVAILABLE" | "UNINSTALL_ONLY")
1527
- attr_accessor supported_compute_type_names: ::Array[("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")]
1540
+ attr_accessor supported_compute_type_names: ::Array[("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GENERALPURPOSE_4XLARGE" | "GENERALPURPOSE_8XLARGE" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")]
1528
1541
  attr_accessor supported_operating_system_names: ::Array[("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "RHEL_8" | "ROCKY_8")]
1529
1542
  SENSITIVE: []
1530
1543
  end
@@ -1656,9 +1669,10 @@ module Aws::WorkSpaces
1656
1669
  attr_accessor running_mode_auto_stop_timeout_in_minutes: ::Integer
1657
1670
  attr_accessor root_volume_size_gib: ::Integer
1658
1671
  attr_accessor user_volume_size_gib: ::Integer
1659
- attr_accessor compute_type_name: ("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")
1672
+ attr_accessor compute_type_name: ("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GENERALPURPOSE_4XLARGE" | "GENERALPURPOSE_8XLARGE" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")
1660
1673
  attr_accessor protocols: ::Array[("PCOIP" | "WSP")]
1661
1674
  attr_accessor operating_system_name: ("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "RHEL_8" | "ROCKY_8")
1675
+ attr_accessor global_accelerator: Types::GlobalAcceleratorForWorkSpace
1662
1676
  SENSITIVE: []
1663
1677
  end
1664
1678
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-workspaces
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.127.0
4
+ version: 1.129.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-12-09 00:00:00.000000000 Z
11
+ date: 2025-01-15 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.210.0
22
+ version: 3.216.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.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement